/* ─── TOKENS ─── */
  :root {
    --ink:         #0f1115;
    --ink-soft:    #1c2028;
    --cream:       #F5F0E8;
    --white:       #ffffff;
    --amber:       #F9773B;
    --amber-lt:    #FA8E57;
    --amber-text:  #b84000; /* darker amber — passes AA (7:1) on white/cream */
    --amber-dim:   rgba(249,119,59,0.10);
    --text:        #18202e;
    --text-soft:   #424d5f; /* AA on white: 7.2:1 */
    --text-muted:  #5e6878; /* AA on white: 5.1:1 — was #8a8e98 which failed */
    --border:      rgba(28,32,40,0.10);
    --border-dk:   rgba(255,255,255,0.10);
    --radius:      8px;
    --shadow-sm:   0 1px 4px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.06);
    --shadow-md:   0 4px 8px rgba(0,0,0,.06), 0 12px 40px rgba(0,0,0,.10);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  /* Skip nav — keyboard-only visible */
  .skip-nav {
    position: absolute; top: -100%; left: 16px;
    padding: 10px 18px; background: var(--amber); color: var(--ink);
    font-weight: 700; font-size: 14px; border-radius: 0 0 var(--radius) var(--radius);
    z-index: 9999; transition: top .15s;
  }
  .skip-nav:focus { top: 0; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  a { color: inherit; text-decoration: none; }
  ul { list-style: none; }

  /* Global focus ring */
  :focus-visible {
    outline: 2px solid var(--amber);
    outline-offset: 3px;
    border-radius: 3px;
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
  }

  /* ─── NAV ─── */
  #nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px; height: 64px;
    background: rgba(15,17,21,0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: box-shadow .3s;
  }
  #nav.scrolled { box-shadow: 0 2px 32px rgba(0,0,0,.5); }

  .nav-logo { display: flex; align-items: center; }
  .nav-logo img { height: 48px; width: auto; }

  .nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
  .nav-links a {
    font-size: 12px; font-weight: 500;
    color: rgba(255,255,255,.80);
    letter-spacing: .07em; text-transform: uppercase; transition: color .2s;
  }
  .nav-links a:hover { color: #fff; }

  .nav-cta {
    background: var(--amber); color: var(--ink) !important;
    padding: 10px 20px; border-radius: var(--radius);
    font-weight: 700 !important; font-size: 12px !important;
    letter-spacing: .05em !important; text-transform: uppercase !important;
    transition: background .2s, box-shadow .2s;
  }
  .nav-cta:hover { background: var(--amber-lt) !important; box-shadow: 0 2px 16px rgba(249,119,59,.35); }

  @media(max-width:768px) { .nav-links { display: none; } #nav { padding: 0 24px; } }

  /* ─── BUTTONS ─── */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 14px;
    padding: 14px 28px; border-radius: var(--radius);
    cursor: pointer; border: none; white-space: nowrap;
    min-height: 48px; /* WCAG touch target */
    transition: background .2s, transform .15s, box-shadow .15s;
  }
  .btn:hover { transform: translateY(-1px); }
  .btn svg { width: 14px; height: 14px; flex-shrink: 0; transition: transform .18s; }
  .btn:hover svg { transform: translateX(3px); }

  .btn-amber { background: var(--amber); color: var(--ink); box-shadow: 0 2px 14px rgba(249,119,59,.28); }
  .btn-amber:hover { background: var(--amber-lt); box-shadow: 0 6px 24px rgba(249,119,59,.40); }

  .btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.32); }
  .btn-outline-light:hover { border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.06); }

  .btn-dark { background: var(--ink); color: #fff; }
  .btn-dark:hover { background: var(--ink-soft); box-shadow: 0 4px 20px rgba(0,0,0,.3); }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    background:
      var(--ink)
      url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1800&q=80&fit=crop&auto=format')
      center / cover no-repeat;
    display: flex; flex-direction: column; justify-content: space-between;
    padding: 104px 48px 88px;
    position: relative; overflow: hidden;
  }

  /* Dark overlay — sits between photo and canvas so routes stay visible */
  .hero::before {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background: rgba(10,13,18,0.78);
  }

.hero-tag {
    position: relative; z-index: 2;
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 600; letter-spacing: .14em;
    text-transform: uppercase; color: var(--amber);
  }
  .hero-tag::before {
    content: ''; display: block; width: 24px; height: 2px;
    background: var(--amber); border-radius: 1px; flex-shrink: 0;
  }

  .hero-content { position: relative; z-index: 2; max-width: 780px; }

  .hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(40px, 5.5vw, 74px);
    font-weight: 800; line-height: 1.03;
    letter-spacing: -0.03em; color: #fff; margin-bottom: 24px;
  }
  .hero h1 em { font-style: normal; color: var(--amber); }

  .hero-body {
    font-size: clamp(15px, 1.5vw, 17px); font-weight: 400;
    color: rgba(255,255,255,.80); /* was .55 — improved contrast to ~9:1 */
    max-width: 560px; line-height: 1.78; margin-bottom: 40px;
  }

  .hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

  @media(max-width:600px) { .hero { padding: 96px 24px 72px; } }

  /* ─── SECTION BASE ─── */
  .section-light { background: var(--cream); padding: 104px 48px; }
  .section-white { background: var(--white); padding: 104px 48px; border-top: 1px solid var(--border); }
  .section-dark  { background: var(--ink);   padding: 104px 48px; }

  .container { max-width: 1080px; margin: 0 auto; }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 10.5px; font-weight: 700; letter-spacing: .13em;
    text-transform: uppercase; color: var(--amber-text); /* AA on cream/white */
    margin-bottom: 16px;
  }
  .eyebrow::before { content: ''; width: 16px; height: 2px; background: currentColor; border-radius: 1px; flex-shrink: 0; }
  .eyebrow.dk { color: var(--amber); } /* amber on dark passes (6.6:1) */

  h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(28px, 3.4vw, 44px);
    font-weight: 700; letter-spacing: -0.030em;
    line-height: 1.08; color: var(--text); margin-bottom: 20px;
  }
  h2.on-dark { color: #fff; }
  h2 em { font-style: normal; color: var(--amber); }

  .lead { font-size: 16px; font-weight: 400; color: var(--text-soft); line-height: 1.80; max-width: 520px; }
  .lead.on-dark { color: rgba(255,255,255,.74); } /* was .50 — improved contrast */

  /* ─── WHY ─── */
  .why-grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
    margin-top: 52px;
  }
  .why-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 12px; padding: 32px 28px;
    transition: box-shadow .25s, transform .25s;
  }
  .why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

  .why-card .card-icon { margin-bottom: 20px; }

  .why-card h3 {
    font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700;
    letter-spacing: -0.018em; color: var(--text); margin-bottom: 10px; line-height: 1.25;
  }
  .why-card p { font-size: 13.5px; color: var(--text-soft); line-height: 1.72; }
  @media(max-width:700px) { .why-grid { grid-template-columns: 1fr; } }

  /* ─── SERVICES ─── */
  .services-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 52px; }
  @media(max-width:820px) { .services-intro { grid-template-columns: 1fr; gap: 24px; } }

  .svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  @media(max-width:700px) { .svc-grid { grid-template-columns: 1fr; } }

  .svc-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 12px; padding: 36px 32px;
    display: flex; flex-direction: column; gap: 14px;
    transition: box-shadow .25s, transform .25s, border-color .25s;
  }
  .svc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: rgba(249,119,59,.22); }

  .svc-tag {
    font-size: 10px; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--amber-text);
    background: var(--amber-dim); display: inline-block;
    padding: 4px 10px; border-radius: 100px; align-self: flex-start;
  }
  .svc-card h3 {
    font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700;
    letter-spacing: -0.018em; color: var(--text); margin: 0; line-height: 1.25;
  }
  .svc-card > p { font-size: 13.5px; color: var(--text-soft); line-height: 1.75; }
  .svc-meta { display: flex; flex-direction: column; gap: 8px; border-top: 1px solid var(--border); padding-top: 16px; margin-top: 4px; }
  .meta-row { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
  .meta-key { color: var(--text-muted); text-transform: uppercase; letter-spacing: .07em; font-size: 10.5px; font-weight: 600; white-space: nowrap; flex-shrink: 0; }
  .meta-val { color: var(--text-soft); font-weight: 400; font-size: 13px; text-align: right; }

  /* ─── WHO WE SERVE ─── */
  .serve-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-bottom: 56px; }
  @media(max-width:820px) { .serve-intro { grid-template-columns: 1fr; gap: 28px; } }

  .serve-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1px; background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.09); border-radius: 12px; overflow: hidden;
  }
  @media(max-width:600px) { .serve-grid { grid-template-columns: 1fr; } }

  .serve-card {
    background: rgba(255,255,255,.03); padding: 40px 36px;
    position: relative; overflow: hidden; transition: background .25s;
  }
  .serve-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 3px; height: 0; background: var(--amber);
    transition: height .3s ease; border-radius: 0 2px 2px 0;
  }
  .serve-card:hover { background: rgba(249,119,59,.06); }
  .serve-card:hover::before { height: 100%; }
  .serve-card h4 {
    font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700;
    color: #fff; margin-bottom: 10px; letter-spacing: -0.01em; line-height: 1.3;
  }
  .serve-card p {
    font-size: 13.5px;
    color: rgba(255,255,255,.68); /* was .42 — improved contrast */
    line-height: 1.72; font-weight: 400;
  }

  /* ─── HOW IT WORKS ─── */
  .how-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 56px; }
  @media(max-width:820px) { .how-intro { grid-template-columns: 1fr; gap: 28px; } }

  .steps { display: flex; flex-direction: column; }
  .step {
    display: grid; grid-template-columns: 60px 1fr; gap: 24px;
    padding: 28px 0; border-top: 1px solid var(--border); align-items: start;
  }
  .step:last-child { border-bottom: 1px solid var(--border); }

  .step-num {
    display: flex; align-items: flex-start; justify-content: flex-start; padding-top: 1px;
  }
  .step-badge {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--amber-dim); border: 1px solid rgba(249,119,59,.22);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700;
    color: var(--amber-text); letter-spacing: .06em; flex-shrink: 0;
  }
  .step-body h3 {
    font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700;
    color: var(--text); margin-bottom: 8px; line-height: 1.3;
  }
  .step-body p { font-size: 13.5px; color: var(--text-soft); line-height: 1.75; }

  /* ─── VISAS ─── */
  .visa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 56px; }
  @media(max-width:700px) { .visa-grid { grid-template-columns: 1fr; } }

  .visa-card {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10);
    border-radius: 12px; padding: 48px;
    transition: border-color .25s, background .25s;
  }
  .visa-card:hover { background: rgba(255,255,255,.07); border-color: rgba(249,119,59,.28); }
  .visa-card.tn  { border-color: rgba(249,119,59,.22); }
  .visa-card.tn:hover  { border-color: rgba(249,119,59,.45); }
  .visa-card.h1b1 { border-color: rgba(80,140,220,.25); }
  .visa-card.h1b1:hover { border-color: rgba(80,140,220,.50); }
  .visa-card.h1b1 .visa-badge { background: rgba(80,140,220,.28); color: #a8c8f0; }
  .visa-card.h1b1 .fact-dot { background: #5b8fc8; }

  .visa-badge {
    display: inline-block; font-size: 10px; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--ink); background: var(--amber);
    padding: 5px 12px; border-radius: var(--radius); margin-bottom: 20px;
  }
  .visa-card h3 {
    font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700;
    color: #fff; margin-bottom: 6px; letter-spacing: -0.022em; line-height: 1.2;
  }
  .visa-subtitle {
    font-size: 13.5px; color: rgba(255,255,255,.55); /* was .35 — improved contrast */
    margin-bottom: 28px; font-weight: 400; line-height: 1.55;
  }
  .visa-facts { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
  .fact {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 14px; color: rgba(255,255,255,.75); /* was .55 — improved contrast */
    line-height: 1.62; font-weight: 400;
  }
  .fact-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--amber); flex-shrink: 0; margin-top: 9px; opacity: .8; }
  .visa-note {
    font-size: 13px; color: rgba(255,255,255,.55); /* was .28 — improved contrast */
    border-top: 1px solid rgba(255,255,255,.09); padding-top: 18px; line-height: 1.65;
  }

  /* ─── CTA ─── */
  .cta-section {
    position: relative;
    padding: 88px 48px;
    background: url('jacek-dylag-nhCPOp4A2Xo-unsplash.jpg') center center / cover no-repeat;
  }
  .cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(10,13,18,0.68);
  }
  .cta-inner {
    position: relative;
    max-width: 1080px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
  }
  @media(max-width:680px) { .cta-inner { grid-template-columns: 1fr; } }

  .cta-section h2 { color: #ffffff; font-size: clamp(26px, 3.2vw, 40px); margin-bottom: 12px; }
  .cta-section p { color: rgba(255,255,255,.75); font-size: 16px; font-weight: 400; max-width: 440px; line-height: 1.72; }
  .cta-actions { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
  .cta-email {
    font-size: 13px; font-weight: 500;
    color: rgba(255,255,255,.65);
    transition: color .2s;
  }
  .cta-email:hover { color: #ffffff; }

  /* ─── INDEX ROLES GRID ─── */
  .roles-industry-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 48px; }
  .roles-industry-col { padding: 28px 24px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10); border-radius: 10px; }
  .roles-industry-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .10em; color: var(--amber); margin-bottom: 20px; }
  .roles-industry-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
  .roles-industry-list li { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.75); line-height: 1.3; }
  @media(max-width:780px) { .roles-industry-grid { grid-template-columns: 1fr 1fr; } }
  @media(max-width:460px) { .roles-industry-grid { grid-template-columns: 1fr; } }

  /* ─── INDUSTRY TABS — on dark section ─── */
  .industry-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
  .industry-tab {
    padding: 9px 22px; border-radius: 100px; border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.07); color: rgba(255,255,255,.65);
    font-size: 14px; font-weight: 500; cursor: pointer;
    transition: background .18s, border-color .18s, color .18s;
    font-family: 'DM Sans', sans-serif;
  }
  .industry-tab:hover { border-color: rgba(249,119,59,.5); color: #FAA478; background: rgba(249,119,59,.08); }
  .industry-tab.active { background: var(--amber); color: var(--ink); border-color: var(--amber); font-weight: 600; }
  .industry-panel[hidden] { display: none; }
  .role-badge-group { display: flex; gap: 4px; flex-shrink: 0; }
  /* On dark section — badge light variants */
  .role-badge.h1b1 { background: rgba(80,140,220,.22); color: #a8c8f0; border: 1px solid rgba(80,140,220,.38); }

  /* Panel — no container, flows directly on dark section */
  .industry-panel-header { margin-bottom: 32px; }
  .industry-hero-tags { display: flex; gap: 6px; margin-bottom: 14px; }
  .industry-panel-header .role-badge.tn { background: rgba(249,119,59,.22); color: #FAA478; border-color: rgba(249,119,59,.40); }
  .industry-panel-header h2 {
    font-family: 'Syne', sans-serif; font-size: clamp(22px,2.8vw,30px);
    font-weight: 800; color: #ffffff; letter-spacing: -0.03em; margin-bottom: 8px;
  }
  .industry-panel-header p { font-size: 14px; color: rgba(255,255,255,.60); line-height: 1.6; max-width: 600px; margin: 0; }

  /* Role cards — white on dark, maximum contrast */
  .role-card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
  @media(max-width:860px) { .role-card-grid { grid-template-columns: repeat(2,1fr); } }
  @media(max-width:560px) { .role-card-grid { grid-template-columns: 1fr; } }
  .role-card {
    background: var(--white); border: 1px solid transparent;
    border-radius: 10px; padding: 22px 24px;
    display: flex; flex-direction: column; gap: 8px;
    transition: box-shadow .2s, transform .2s;
  }
  .role-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,.25); transform: translateY(-2px); }
  .role-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
  .role-card h4 { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--text); letter-spacing: -0.01em; line-height: 1.25; }
  .role-card p  { font-size: 13px; color: var(--text-soft); line-height: 1.6; margin: 0; }

  /* ─── VISA REQUIREMENTS ─── */
  .req-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
  @media(max-width:860px) { .req-grid { grid-template-columns: 1fr; } }
  .req-card { border-radius: 12px; padding: 32px; border: 1px solid var(--border); background: var(--white); }
  .req-card.tn   { border-color: rgba(249,119,59,.22); }
  .req-card.h1b1 { border-color: rgba(80,140,220,.22); }
  .req-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
  .req-card-sub { font-size: 13px; color: var(--text-muted); }
  .req-split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  @media(max-width:600px) { .req-split { grid-template-columns: 1fr; gap: 20px; } }
  .req-col-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 4px 10px; border-radius: 100px; display: inline-block; margin-bottom: 14px; }
  .req-col-label.you { background: rgba(28,32,40,.07); color: var(--text-soft); }
  .req-col-label.we  { background: var(--amber-dim); color: var(--amber-text); }
  .req-card.h1b1 .req-col-label.we { background: rgba(80,140,220,.12); color: #2d5a8e; }
  .req-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .req-list li { font-size: 13.5px; color: var(--text-soft); line-height: 1.55; padding-left: 16px; position: relative; }
  .req-list li::before { content: '—'; position: absolute; left: 0; color: var(--text-muted); font-size: 11px; top: 3px; }
  .req-footer { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
  .req-time { font-size: 13px; color: var(--text-muted); font-weight: 500; }

  /* ─── VISA FAQ ACCORDION ─── */
  .faq-accordion { margin-top: 48px; border-top: 1px solid var(--border); }
  .faq-accordion details { border-bottom: 1px solid var(--border); }
  .faq-accordion summary {
    font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 600;
    color: var(--text); padding: 22px 0; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    list-style: none; gap: 16px; user-select: none;
  }
  .faq-accordion summary::-webkit-details-marker { display: none; }
  .faq-accordion summary::after {
    content: '+'; font-size: 22px; color: var(--amber-text);
    flex-shrink: 0; font-family: 'DM Sans', sans-serif; font-weight: 300; line-height: 1;
  }
  .faq-accordion details[open] summary { color: var(--amber-text); }
  .faq-accordion details[open] summary::after { content: '−'; }
  .faq-body { padding-bottom: 24px; }
  .faq-body p { font-size: 14px; color: var(--text-soft); line-height: 1.72; max-width: 680px; }

  .step-details { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
  .step-details li { font-size: 13.5px; color: var(--text-muted); padding-left: 18px; position: relative; line-height: 1.55; }
  .step-details li::before { content: '·'; position: absolute; left: 0; color: var(--amber-text); font-size: 18px; line-height: 1.05; }

  /* ─── PROCESS TIMELINE ─── */
  .timeline-tracks { display: flex; flex-direction: column; gap: 20px; margin-top: 48px; }
  .timeline-track { border-radius: 12px; padding: 24px 28px 28px; border: 1px solid var(--border); }
  .timeline-track.tn   { background: rgba(249,119,59,.04); border-color: rgba(249,119,59,.18); }
  .timeline-track.h1b1 { background: rgba(80,140,220,.04); border-color: rgba(80,140,220,.16); }
  .timeline-track-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
  .timeline-total { font-size: 13px; font-weight: 600; margin-left: auto; }
  .timeline-track.tn   .timeline-total { color: var(--amber-text); }
  .timeline-track.h1b1 .timeline-total { color: #2d5a8e; }
  .timeline-bar { display: flex; gap: 3px; border-radius: 8px; overflow: hidden; }
  .timeline-seg { flex: var(--w, 1); display: flex; flex-direction: column; justify-content: flex-end; padding: 14px 14px 14px; min-width: 0; }
  .timeline-seg-week { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .timeline-seg-name  { font-size: 12px; font-weight: 600; line-height: 1.3; }
  .timeline-track.tn .timeline-seg           { background: rgba(249,119,59,.10); color: var(--ink); }
  .timeline-track.tn .timeline-seg-week      { color: var(--amber-text); }
  .timeline-track.tn .timeline-seg.final     { background: var(--amber); }
  .timeline-track.tn .timeline-seg.final .timeline-seg-week { color: var(--ink); opacity: .7; }
  .timeline-track.h1b1 .timeline-seg         { background: rgba(80,140,220,.10); color: var(--ink); }
  .timeline-track.h1b1 .timeline-seg-week    { color: #2d5a8e; }
  .timeline-track.h1b1 .timeline-seg.final   { background: #3d6fa0; color: #fff; }
  .timeline-track.h1b1 .timeline-seg.final .timeline-seg-week { color: #fff; opacity: .75; }
  .timeline-footnote { font-size: 13px; color: var(--text-muted); margin-top: 16px; font-style: italic; }
  @media (max-width: 640px) {
    .timeline-bar { flex-direction: column; }
    .timeline-seg { flex: none; padding: 10px 14px; }
  }

  /* ─── FOOTER ─── */
  footer { background: var(--ink); border-top: 1px solid rgba(255,255,255,.07); padding: 64px 48px 0; }
  .footer-inner {
    max-width: 1080px; margin: 0 auto;
    display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 64px;
    padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.07);
  }
  @media(max-width:900px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; } }
  @media(max-width:600px) { .footer-inner { grid-template-columns: 1fr; gap: 36px; } }
  .footer-brand { display: flex; flex-direction: column; gap: 6px; }
  .footer-logo { display: flex; align-items: center; }
  .footer-logo img { height: 44px; width: auto; }
  .footer-tagline { font-size: 13px; color: rgba(255,255,255,.65); font-weight: 500; margin-top: 2px; }
  .footer-desc { font-size: 13px; color: rgba(255,255,255,.58); line-height: 1.65; max-width: 260px; margin-top: 8px; }
  .footer-nav-label {
    font-size: 9.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: rgba(255,255,255,.50); margin-bottom: 16px;
  }
  .footer-nav ul { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 28px; }
  .footer-nav a { font-size: 13px; font-weight: 400; color: rgba(255,255,255,.68); transition: color .2s; }
  .footer-nav a:hover { color: #fff; }
  .footer-contact { display: flex; flex-direction: column; }
  .footer-email { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.85); transition: color .2s; }
  .footer-email:hover { color: var(--amber); }
  .footer-contact-note { font-size: 12px; color: rgba(255,255,255,.58); margin-top: 8px; line-height: 1.5; }
  .footer-bottom { max-width: 1080px; margin: 0 auto; padding: 22px 0; }
  .footer-copy { font-size: 12px; color: rgba(255,255,255,.52); }
  .footer-social { display: flex; gap: 10px; margin-top: 16px; }
  .footer-social a {
    display: flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 7px;
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.52); transition: color .2s, border-color .2s;
  }
  .footer-social a:hover { color: #fff; border-color: rgba(255,255,255,.32); }
  .footer-social svg { width: 15px; height: 15px; }
  .footer-social a:first-child svg { fill: currentColor; }
  .footer-social a:last-child svg { fill: none; stroke: currentColor; stroke-width: 2; }

  /* ─── ROLES SLIDER ─── */
  .roles-track {
    display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
    padding: 4px 0 16px; margin-top: 48px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.15) transparent;
  }
  .roles-track::-webkit-scrollbar { height: 6px; }
  .roles-track::-webkit-scrollbar-track { background: transparent; }
  .roles-track::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 3px; }

  .role-card {
    min-width: 260px; max-width: 280px; flex-shrink: 0;
    scroll-snap-align: start;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10);
    border-radius: 12px; padding: 32px 28px;
    display: flex; flex-direction: column; gap: 12px;
    transition: border-color .25s, background .25s;
  }
  .role-card:hover { background: rgba(249,119,59,.06); border-color: rgba(249,119,59,.22); }

  .role-card h4 {
    font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700;
    color: #fff; letter-spacing: -0.01em; line-height: 1.3; margin: 0;
  }
  .role-card p {
    font-size: 13px; color: rgba(255,255,255,.68); line-height: 1.72; font-weight: 400; margin: 0;
  }
  .role-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
  .role-tag {
    font-size: 9px; font-weight: 600; letter-spacing: .10em; text-transform: uppercase;
    color: var(--amber); background: rgba(249,119,59,.12);
    padding: 3px 8px; border-radius: 100px; white-space: nowrap;
  }

  .serve-grid .serve-card:last-child:nth-child(odd) { grid-column: 1 / -1; }

  .visa-bottom-note {
    margin-top: 32px; font-size: 14px; color: rgba(255,255,255,.68);
    line-height: 1.72; text-align: center; max-width: 600px; margin-left: auto; margin-right: auto;
  }

  /* ─── PHOTO BREAK ─── */
  .photo-break {
    height: 480px; position: relative;
    background: url('https://images.unsplash.com/photo-1517581177682-a085bb7ffb15?w=1800&q=80&fit=crop&auto=format')
      center / cover no-repeat fixed;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .photo-break::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(10,13,18,0.68);
  }
  .photo-break-inner {
    position: relative; z-index: 1;
    text-align: center; max-width: 800px; padding: 0 48px;
  }
  .photo-break-inner blockquote {
    font-family: 'Syne', sans-serif;
    font-size: clamp(24px, 3.2vw, 42px);
    font-weight: 700; color: #fff;
    letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 24px;
  }
  .photo-break-inner blockquote em { font-style: normal; color: var(--amber); }
  .photo-break-inner cite {
    font-size: 12px; font-weight: 600; color: rgba(255,255,255,.65);
    letter-spacing: .12em; text-transform: uppercase; font-style: normal;
  }
  @media(max-width:600px) { .photo-break { height: 380px; background-attachment: scroll; } }

  /* ─── INTERIOR PAGE HEADER (PHOTO) ─── */
  .page-header {
    background: var(--ink) center / cover no-repeat;
    padding: 148px 48px 88px;
    position: relative;
  }
  .page-header::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(10,13,18,0.78);
  }
  .page-header .container { max-width: 1080px; margin: 0 auto; position: relative; z-index: 1; }
  .page-header .eyebrow { color: var(--amber); }
  .page-header h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(32px, 4vw, 54px); font-weight: 800;
    letter-spacing: -0.03em; line-height: 1.05; color: #fff; margin-bottom: 20px;
  }
  .page-header h1 em { font-style: normal; color: var(--amber); }
  .page-header p {
    font-size: 17px; color: rgba(255,255,255,.72);
    max-width: 580px; line-height: 1.75; font-weight: 400;
  }
  @media(max-width:600px) { .page-header { padding: 120px 24px 72px; } }

  /* ─── ARTICLE CARD PHOTO ─── */
  .article-thumb {
    width: 100%; aspect-ratio: 16/9; object-fit: cover;
    border-radius: 6px; display: block; margin-bottom: 4px;
    background: var(--cream);
  }

  /* ─── FADE IN ─── */
  .r { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
  .r.v { opacity: 1; transform: none; }
  .d1 { transition-delay: .10s; } .d2 { transition-delay: .20s; } .d3 { transition-delay: .30s; }
  /* ─── ICONOGRAPHY ─── */
  .card-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px; margin-bottom: 18px;
    background: var(--amber-dim);
    border: 1px solid rgba(249,119,59,0.18);
  }
  .card-icon svg {
    width: 20px; height: 20px;
    stroke: var(--amber-text); fill: none;
    stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
  }

  /* On dark sections — amber glow tint */
  .section-dark .card-icon {
    background: rgba(249,119,59,0.12);
    border-color: rgba(249,119,59,0.22);
  }
  .section-dark .card-icon svg { stroke: var(--amber); }

  /* Serve-cards — icon sits above h4, tighter margin */
  .serve-card .card-icon { margin-bottom: 12px; }

  /* ─── EVENTS ─── */
  .events-intro { max-width: 560px; margin-bottom: 52px; }
  .events-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .event-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 12px; overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column;
    transition: box-shadow .2s, transform .2s;
  }
  .event-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
  .event-cal {
    background: var(--ink); padding: 28px 28px 22px;
    display: flex; justify-content: space-between; align-items: flex-end;
  }
  .ev-cal-left { display: flex; flex-direction: column; }
  .ev-month {
    font-size: 10px; font-weight: 700; letter-spacing: .20em; text-transform: uppercase;
    color: var(--amber); margin-bottom: 6px;
  }
  .ev-day {
    font-family: 'Syne', sans-serif; font-size: 60px; font-weight: 800;
    color: #fff; line-height: 1;
  }
  .ev-type {
    font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    padding: 5px 10px; border-radius: 4px; white-space: nowrap; align-self: flex-end;
  }
  .ev-type--mixer {
    background: rgba(249,119,59,.18); color: #F9773B;
    border: 1px solid rgba(249,119,59,.30);
  }
  .ev-type--wic {
    background: rgba(190,90,90,.18); color: #d97070;
    border: 1px solid rgba(190,90,90,.30);
  }
  .event-body { padding: 24px 28px 28px; display: flex; flex-direction: column; flex: 1; }
  .ev-city {
    font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700;
    color: var(--ink); margin-bottom: 3px; line-height: 1.2;
  }
  .ev-state {
    font-size: 12px; color: var(--text-muted); margin-bottom: 16px;
    letter-spacing: .03em;
  }
  .ev-desc {
    font-size: 13.5px; color: var(--text-soft); line-height: 1.70;
    margin-bottom: 18px; flex: 1;
  }
  .ev-venue {
    font-size: 12px; color: var(--text-muted); margin-bottom: 22px;
    display: flex; align-items: center; gap: 5px;
  }
  .ev-venue::before {
    content: ''; display: inline-block; width: 12px; height: 12px; flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235e6878' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
    background-size: contain; background-repeat: no-repeat;
  }
  .event-card .btn {
    font-size: 12px; padding: 10px 18px; width: 100%; justify-content: center;
  }
  .events-footer {
    margin-top: 40px; text-align: center;
    font-size: 14px; color: var(--text-muted);
  }
  .events-footer a { color: var(--amber-text); text-decoration: none; font-weight: 500; }
  .events-footer a:hover { text-decoration: underline; }

  @media (max-width: 960px) {
    .events-grid { grid-template-columns: 1fr 1fr; }
    .event-card:nth-child(3) { grid-column: span 2; max-width: 420px; margin: 0 auto; width: 100%; }
  }
  @media (max-width: 600px) {
    .events-grid { grid-template-columns: 1fr; }
    .event-card:nth-child(3) { grid-column: span 1; max-width: 100%; }
    .ev-day { font-size: 48px; }
  }

  /* ─── ARTICLE PAGES ─── */
  .article-back {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
    color: rgba(255,255,255,.68); text-decoration: none; margin-bottom: 32px;
    transition: color .2s;
  }
  .article-back:hover { color: var(--amber); }
  .article-back::before { content: '←'; }
  .article-pillar-tag {
    font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: var(--ink); background: var(--amber);
    padding: 4px 10px; border-radius: 4px; display: inline-block; margin-bottom: 20px;
  }
  .article-byline {
    font-size: 13px; color: rgba(255,255,255,.65); margin-top: 20px;
  }
  .article-body { padding: 80px 48px; background: var(--white); }
  .article-container { max-width: 740px; margin: 0 auto; }
  .article-lead {
    font-size: 19px; color: var(--text-soft); line-height: 1.78; font-weight: 300;
    margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border);
  }
  .article-container h2 {
    font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700;
    color: var(--text); letter-spacing: -0.02em; margin: 48px 0 14px; line-height: 1.25;
  }
  .article-container h3 {
    font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700;
    color: var(--text); letter-spacing: -0.01em; margin: 28px 0 10px;
  }
  .article-container p {
    font-size: 16px; color: var(--text-soft); line-height: 1.82; margin-bottom: 20px;
  }
  .article-container ul, .article-container ol {
    padding-left: 22px; margin-bottom: 24px;
  }
  .article-container li {
    font-size: 16px; color: var(--text-soft); line-height: 1.72; margin-bottom: 10px;
  }
  .article-callout {
    background: var(--cream); border-left: 3px solid var(--amber-text);
    padding: 20px 24px; border-radius: 0 8px 8px 0; margin: 32px 0;
  }
  .article-callout p { margin: 0; font-size: 15px; line-height: 1.65; }
  .compare-table {
    width: 100%; border-collapse: collapse; margin: 32px 0; font-size: 14px;
    border-radius: 8px; overflow: hidden;
  }
  .compare-table th {
    background: var(--ink); color: #fff;
    font-family: 'Syne', sans-serif; font-weight: 600; font-size: 11px;
    letter-spacing: .07em; text-transform: uppercase; padding: 12px 16px; text-align: left;
  }
  .compare-table td {
    padding: 13px 16px; border-bottom: 1px solid var(--border);
    color: var(--text-soft); vertical-align: top; line-height: 1.55;
  }
  .compare-table tr:last-child td { border-bottom: none; }
  .compare-table tr:nth-child(even) td { background: var(--cream); }
  .compare-table td:first-child { font-weight: 600; color: var(--text); white-space: nowrap; }
  .article-cta-box {
    background: var(--ink); border-radius: 12px; padding: 40px; margin-top: 56px;
  }
  .article-cta-box h3 {
    font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700;
    color: #fff; letter-spacing: -0.02em; margin-bottom: 10px;
  }
  .article-cta-box p { color: rgba(255,255,255,.60); font-size: 15px; margin-bottom: 24px; line-height: 1.65; }
  @media(max-width:600px) { .article-body { padding: 56px 24px; } }

  /* ─── ROLES PAGE ─── */
  .pathway-overview { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
  @media(max-width:680px) { .pathway-overview { grid-template-columns: 1fr; } }
  .pathway-card {
    border-radius: 10px; padding: 32px 28px;
    display: flex; flex-direction: column; gap: 14px;
  }
  .pathway-card.tn { background: rgba(249,119,59,.07); border: 1px solid rgba(249,119,59,.18); }
  .pathway-card.h1b1 { background: rgba(80,140,220,.06); border: 1px solid rgba(80,140,220,.16); }
  .pathway-card-label {
    font-size: 9.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    padding: 3px 10px; border-radius: 100px; align-self: flex-start;
  }
  .pathway-card.tn .pathway-card-label { background: rgba(249,119,59,.16); color: var(--amber-text); }
  .pathway-card.h1b1 .pathway-card-label { background: rgba(80,140,220,.14); color: #3d6fa0; }
  .pathway-card h3 {
    font-family: 'Syne', sans-serif; font-size: 19px; font-weight: 700;
    color: var(--text); letter-spacing: -0.018em; line-height: 1.2;
  }
  .pathway-card > p { font-size: 14px; color: var(--text-soft); line-height: 1.65; }
  .pathway-card-facts { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
  .pathway-card-facts span {
    font-size: 12.5px; color: var(--text-muted);
    display: flex; gap: 8px; align-items: center;
  }
  .pathway-card.tn .pathway-card-facts span::before { content: '·'; color: var(--amber-text); font-size: 20px; line-height: 1; }
  .pathway-card.h1b1 .pathway-card-facts span::before { content: '·'; color: #5b8fc8; font-size: 20px; line-height: 1; }

  .visa-section-head {
    padding: 28px 32px; border-radius: 10px;
    margin-bottom: 28px; border-left: 3px solid;
  }
  .visa-section-head.tn { background: rgba(249,119,59,.05); border-color: var(--amber); }
  .visa-section-head.h2b { background: rgba(80,140,220,.05); border-color: #5b9bd5; }
  .visa-section-tag {
    font-size: 9.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    display: block; margin-bottom: 8px;
  }
  .visa-section-head.tn .visa-section-tag { color: var(--amber-text); }
  .visa-section-head.h2b .visa-section-tag { color: #3d6fa0; }
  .visa-section-head h2 {
    font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700;
    color: var(--text); letter-spacing: -0.02em; margin-bottom: 6px;
  }
  .visa-section-head p { font-size: 13.5px; color: var(--text-soft); line-height: 1.6; }

  .role-compact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  @media(max-width:900px) { .role-compact-grid { grid-template-columns: 1fr 1fr; } }
  @media(max-width:560px) { .role-compact-grid { grid-template-columns: 1fr; } }

  .role-compact-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 10px; padding: 22px;
    display: flex; flex-direction: column; gap: 12px;
    transition: box-shadow .2s, border-color .2s, transform .2s;
  }
  .role-compact-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
  .section-engineering .role-compact-card:hover { border-color: rgba(249,119,59,.30); }
  .section-trades .role-compact-card:hover { border-color: rgba(80,140,220,.30); }

  .role-compact-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
  .role-compact-top h4 {
    font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700;
    color: var(--text); letter-spacing: -0.01em; line-height: 1.25; margin: 0;
  }
  .role-compact-card > p {
    font-size: 13px; color: var(--text-soft); line-height: 1.65; margin: 0; flex: 1;
  }
  .role-screen-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 5px; }
  .role-screen-list li {
    font-size: 12px; color: var(--text-muted);
    display: flex; gap: 6px; align-items: flex-start; line-height: 1.45;
  }
  .section-engineering .role-screen-list li::before { content: '—'; color: rgba(249,119,59,.65); flex-shrink: 0; }
  .section-trades .role-screen-list li::before { content: '—'; color: rgba(80,140,220,.65); flex-shrink: 0; }

  .role-badge {
    font-size: 9px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
    padding: 3px 8px; border-radius: 100px; white-space: nowrap; flex-shrink: 0; margin-top: 1px;
  }
  .role-badge.tn { background: rgba(249,119,59,.22); color: #FAA478; border: 1px solid rgba(249,119,59,.40); }
  .role-badge.h2b { background: rgba(80,140,220,.10); color: #3d6fa0; border: 1px solid rgba(80,140,220,.20); }

  .role-compact-footer {
    display: flex; flex-wrap: wrap; gap: 5px;
    margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border);
  }

  .vetting-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px;
  }
  @media(max-width:800px) { .vetting-grid { grid-template-columns: 1fr 1fr; } }
  @media(max-width:500px) { .vetting-grid { grid-template-columns: 1fr; } }
  .vetting-card {
    padding: 32px 28px; background: var(--white); border: 1px solid var(--border);
    border-radius: 10px;
  }
  .vetting-step {
    font-family: 'Syne', sans-serif; font-size: 34px; font-weight: 800;
    color: var(--amber-dim); letter-spacing: -0.04em; line-height: 1; margin-bottom: 14px;
    border-bottom: 1px solid var(--border); padding-bottom: 14px;
  }
  .vetting-card h4 {
    font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700;
    color: var(--text); letter-spacing: -0.01em; margin-bottom: 8px;
  }
  .vetting-card p {
    font-size: 13.5px; color: var(--text-soft); line-height: 1.65; margin: 0;
  }

  /* ─── MOBILE NAV TOGGLE ─── */
  .nav-toggle {
    display: none;
    flex-direction: column; justify-content: space-between;
    width: 22px; height: 16px;
    background: none; border: none; cursor: pointer; padding: 0;
    flex-shrink: 0; z-index: 200;
  }
  .nav-toggle span {
    display: block; height: 2px; width: 100%;
    background: rgba(255,255,255,.85); border-radius: 1px;
    transition: transform .25s, opacity .25s, width .25s;
  }
  @media(max-width:768px) {
    .nav-toggle { display: flex; }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  }

  /* ─── MOBILE NAV OVERLAY ─── */
  .mobile-nav {
    position: fixed; inset: 64px 0 0 0; z-index: 98;
    background: rgba(12,15,20,0.99); backdrop-filter: blur(16px);
    display: flex; flex-direction: column;
    padding: 36px 32px 60px;
    opacity: 0; pointer-events: none;
    transition: opacity .25s;
    overflow-y: auto;
  }
  .mobile-nav.open { opacity: 1; pointer-events: all; }
  .mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
  .mobile-nav li a {
    display: block; padding: 16px 0;
    font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 700;
    color: rgba(255,255,255,.70); letter-spacing: -0.02em;
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: color .2s;
  }
  .mobile-nav li a:hover, .mobile-nav li a:focus { color: #fff; }
  .mobile-nav .mobile-cta {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 36px; align-self: flex-start;
    background: var(--amber); color: var(--ink);
    padding: 14px 28px; border-radius: var(--radius);
    font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 14px;
    letter-spacing: .03em; text-transform: uppercase;
    transition: background .2s;
  }
  .mobile-nav .mobile-cta:hover { background: var(--amber-lt); }

  /* ─── RESPONSIVE SECTION PADDING ─── */
  @media(max-width:768px) {
    .section-light, .section-white, .section-dark { padding: 72px 24px; }
    .cta-section { padding: 72px 24px; }
    footer { padding: 48px 24px 0; }
    .visa-card { padding: 28px; }
    .industry-tabs { gap: 6px; }
    .industry-tab { font-size: 13px; padding: 8px 16px; }
  }
