
    /* =============================================
       DESIGN TOKENS & RESET
    ============================================= */
    :root {
      /* ── Emigre Law Chamber Identity ── */

      /* Dark backgrounds */
      --navy-primary:  #1C2539;
      --navy-deep:     #162842;
      --navy-darkest:  #1B1B1B;
      --navy-royal:    #00257C;

      /* Teal — primary accent */
      --teal-500:      #008083;
      --teal-600:      #0E7073;
      --teal-700:      #047C7F;
      --teal-400:      #148D8F;
      --teal-300:      #00B3B6;
      --teal-200:      #40BAC5;
      --teal-100:      #BEE7E0;
      --teal-dim:      rgba(0,128,131,0.10);
      --teal-border:   rgba(0,128,131,0.25);
      --teal-border-strong: rgba(0,128,131,0.5);
      --teal-glow:     rgba(0,128,131,0.15);

      /* Red — urgency / secondary CTA */
      --red-500:       #E13833;
      --red-100:       #FFEEF0;
      --red-200:       #F5CFD1;

      /* Text */
      --text-primary:   #2B2926;
      --text-secondary: #3F3C39;
      --text-muted:     #5D666F;
      --text-disabled:  #777777;
      --text-white:     #FFFFFF;
      --text-white-muted: rgba(255,255,255,0.65);
      --text-white-dim:   rgba(255,255,255,0.35);

      /* Backgrounds */
      --bg-white:      #FFFFFF;
      --bg-off:        #F8F8F8;
      --bg-section:    #F5F5F5;
      --bg-teal-wash:  #BEE7E0;

      /* Borders */
      --border-light:  #E7E6E6;
      --border-mid:    #CCCCCC;

      /* Green (keep for success states) */
      --green:         #2E9E6B;
      --green-dim:     rgba(46,158,107,0.12);
      --amber:         #FFAB00;

      /* ── Legacy variable remaps — existing CSS keeps working ── */
      --sky:           #008083;
      --sky-dark:      #0E7073;
      --sky-dim:       rgba(0,128,131,0.10);
      --sky-border:    rgba(0,128,131,0.25);
      --purple:        #1C2539;
      --purple-light:  #008083;
      --purple-dim:    rgba(0,128,131,0.08);
      --bg-deep:       #1C2539;
      --bg-dark:       #162842;
      --bg-card:       #1C2539;
      --bg-card-hover: #243050;
      --border:        rgba(0,128,131,0.15);
      --border-sky:    rgba(0,128,131,0.25);
      --shadow-sky:    0 0 0 3px rgba(0,128,131,0.25);
      --red:           #E13833;

      /* Flag Visa Colors */
      --usa: #B22234;
      --usa-bg: rgba(178,34,52,0.08);
      --canada: #FF0000;
      --canada-bg: rgba(255,0,0,0.07);
      --eu: #003399;
      --eu-bg: rgba(0,51,153,0.08);
      --aus: #00008B;
      --aus-bg: rgba(0,0,139,0.08);
      --uk: #012169;
      --uk-bg: rgba(1,33,105,0.08);
      --niw: #C41E3A;
      --niw-bg: rgba(196,30,58,0.07);

      /* Typography */
      --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
      --font-mono: 'DM Mono', 'Fira Code', monospace;

      /* 8px Spacing Grid */
      --space-025: 2px;
      --space-050: 4px;
      --space-100: 8px;
      --space-150: 12px;
      --space-200: 16px;
      --space-250: 20px;
      --space-300: 24px;
      --space-400: 32px;
      --space-500: 40px;
      --space-600: 48px;
      --space-800: 64px;
      --space-1000: 80px;
      --space-1200: 96px;
      --space-1600: 128px;

      /* Radius */
      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 12px;
      --radius-xl: 16px;
      --radius-pill: 999px;

      /* Shadows */
      --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
      --shadow-md: 0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
      --shadow-lg: 0 12px 40px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.08);

      /* Transitions */
      --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-out: cubic-bezier(0.2, 0, 0, 1);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
    body {
      font-family: var(--font-body);
      color: var(--text-primary);
      background: var(--bg-white);
      line-height: 1.6;
      font-size: 16px;
      overflow-x: hidden;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }
    ul, ol { list-style: none; }

    /* Typography Scale */
    h1 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(3rem, 6vw, 5.5rem);
      font-weight: 600;
      letter-spacing: -0.01em;
      line-height: 1.05;
    }
    h2 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(2.2rem, 4vw, 3.6rem);
      font-weight: 600;
      letter-spacing: -0.01em;
      line-height: 1.1;
    }
    h3 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(1.3rem, 2vw, 1.7rem);
      font-weight: 600;
      letter-spacing: -0.01em;
      line-height: 1.2;
    }
    p { line-height: 1.7; }

    .mono {
      font-family: var(--font-mono);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: var(--space-100);
      font-family: var(--font-mono);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--sky);
      margin-bottom: var(--space-200);
    }
    .eyebrow::before {
      content: '';
      display: block;
      width: 20px;
      height: 2px;
      background: var(--sky);
      border-radius: 2px;
    }

    /* Layout */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-300); }
    .section-pad { padding: var(--space-1000) 0; }

    /* Scroll Reveal */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-100);
      padding: var(--space-150) var(--space-300);
      border-radius: var(--radius-md);
      font-weight: 600;
      font-size: 15px;
      transition: all 0.2s var(--ease-out);
      white-space: nowrap;
      cursor: pointer;
      border: none;
      font-family: var(--font-body);
    }
    .btn-primary {
      background: var(--sky);
      color: var(--bg-deep);
    }
    .btn-primary:hover { background: var(--sky-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
    .btn-ghost {
      background: transparent;
      color: var(--text-white);
      border: 1.5px solid rgba(255,255,255,0.3);
    }
    .btn-ghost:hover { border-color: var(--sky); color: var(--sky); }
    .btn-wa {
      background: #25D366;
      color: #fff;
      border-radius: var(--radius-pill);
      padding: var(--space-200) var(--space-400);
      font-size: 15px;
      font-weight: 700;
      gap: var(--space-150);
      animation: wa-pulse 2.5s ease-in-out infinite;
    }
    .btn-wa:hover { background: #1EBE5D; transform: scale(1.03); }
    @keyframes wa-pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
      60% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
    }
    .btn-sky {
      background: var(--sky);
      color: var(--bg-deep);
      font-weight: 700;
      padding: var(--space-150) var(--space-300);
      border-radius: var(--radius-md);
    }
    .btn-sky:hover { background: var(--sky-dark); }
    .btn-sky:disabled { opacity: 0.4; pointer-events: none; }

    /* =============================================
       NAV
    ============================================= */
    #nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: 64px;
      z-index: 9000;
      display: flex;
      align-items: center;
      transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
    }
    #nav.scrolled {
      background: rgba(26,26,46,0.92);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 1px 0 rgba(255,255,255,0.07);
      border-bottom: 1px solid rgba(0,128,131,0.18); /* Sleek teal edge line */
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--space-300);
    }
    .nav-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--text-white);
      text-decoration: none;
      line-height: 1;
    }
    .nav-logo .logo-seal {
      flex-shrink: 0;
      color: #00B3B6; /* default — on dark hero */
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
    }
    .nav-logo:hover .logo-seal {
      transform: rotate(8deg);
    }
    .nav-logo .logo-text {
      display: flex;
      flex-direction: column;
      gap: 2px;
      line-height: 1;
    }
    .nav-logo .logo-name {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 22px;
      font-weight: 600;
      letter-spacing: -0.01em;
      line-height: 1;
      color: var(--text-white);
    }
    .nav-logo .logo-accent { color: #00B3B6; font-style: italic; }
    .nav-logo .logo-sub {
      font-family: var(--font-mono);
      font-size: 8.5px;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      margin-left: 2px;
    }
    /* .nav-logo-dot removed — replaced by arch SVG */
    @keyframes pulse-dot {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.5); opacity: 0.7; }
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: var(--space-050);
    }
    .nav-links a {
      color: rgba(255,255,255,0.75);
      font-size: 14px;
      font-weight: 500;
      padding: var(--space-100) var(--space-150);
      border-radius: var(--radius-md);
      transition: color 0.2s, background 0.2s, box-shadow 0.2s;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 50%;
      width: 0;
      height: 2px;
      background: var(--sky);
      border-radius: 2px;
      transform: translateX(-50%);
      transition: width 0.3s var(--ease-spring);
    }
    .nav-links a.active {
      color: var(--text-white);
    }
    .nav-links a.active::after {
      width: 16px;
    }
    .nav-links a:hover { color: var(--text-white); background: rgba(255,255,255,0.08); }
    .nav-cta { display: flex; align-items: center; gap: var(--space-150); }
    .nav-wa {
      display: flex; align-items: center; gap: var(--space-100);
      background: #25D366;
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      padding: var(--space-100) var(--space-200);
      border-radius: var(--radius-pill);
      transition: transform 0.2s, background 0.2s;
    }
    .nav-wa:hover { background: #1EBE5D; transform: scale(1.03); }
    .nav-wa svg { width: 16px; height: 16px; flex-shrink: 0; }

    /* Mobile nav hamburger */
    .hamburger-btn {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 44px; height: 44px;
      border-radius: var(--radius-md);
      background: rgba(255,255,255,0.08);
    }
    .hamburger-btn span {
      display: block; width: 20px; height: 2px;
      background: #fff; border-radius: 2px;
      transition: all 0.3s var(--ease-spring);
    }
    .hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger-btn.open span:nth-child(2) { opacity: 0; }
    .hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile overlay */
    #mobile-nav {
      position: fixed;
      inset: 0;
      background: #BEE7E0;
      z-index: 8999;
      transform: translateY(-100%);
      transition: transform 0.4s var(--ease-spring);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: var(--space-100);
      padding: var(--space-1000) var(--space-300) var(--space-600);
    }
    #mobile-nav.open { transform: translateY(0); }
    #mobile-nav a {
      font-size: 2rem;
      font-weight: 800;
      color: #1C2539;
      letter-spacing: -0.03em;
      padding: var(--space-150) 0;
      border-bottom: 1px solid rgba(0,128,131,0.15);
      width: 100%;
      text-align: center;
    }
    #mobile-nav a:last-of-type { border-bottom: none; }
    #mobile-nav .mobile-wa {
      margin-top: var(--space-400);
      background: #25D366;
      color: #fff;
      font-size: 1rem;
      font-weight: 700;
      border-radius: var(--radius-pill);
      padding: var(--space-200) var(--space-600);
      display: flex; align-items: center; gap: var(--space-150);
    }

    /* =============================================
       HERO
    ============================================= */
    #hero {
      min-height: 100svh;
      background: var(--bg-deep);
      display: flex;
      align-items: center;
      padding: calc(64px + var(--space-800)) 0 var(--space-800);
      position: relative;
      overflow: hidden;
    }
    /* Background grid lines — replaced by SVG world map inline element */
    /* Radial glow updated */
    #hero::after {
      content: '';
      position: absolute;
      top: -10%;
      left: 50%;
      transform: translateX(-50%);
      width: 800px; height: 600px;
      background: radial-gradient(ellipse at center,
        rgba(0,128,131,0.18) 0%,
        rgba(0,37,92,0.35) 45%,
        transparent 75%);
      pointer-events: none;
      z-index: 0;
    }
    .hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: var(--space-100);
      background: var(--purple-dim);
      border: 1px solid var(--purple-light);
      color: var(--purple-light);
      font-family: var(--font-mono);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: var(--space-050) var(--space-200);
      border-radius: var(--radius-pill);
      margin-bottom: var(--space-400);
      animation: hero-badge-pop 0.6s var(--ease-spring) both;
    }
    .hero-badge::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--green);
      border-radius: 50%;
      animation: pulse-dot 2s ease-in-out infinite;
    }
    @keyframes hero-badge-pop {
      from { opacity: 0; transform: scale(0.85) translateY(8px); }
      to { opacity: 1; transform: scale(1) translateY(0); }
    }

    .hero-h1 {
      color: var(--text-white);
      margin-bottom: var(--space-300);
      animation: hero-h1-rise 0.7s var(--ease-spring) 0.1s both;
    }
    .hero-h1 .sky { color: var(--sky); }
    @keyframes hero-h1-rise {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .hero-sub {
      color: var(--text-white-muted);
      font-size: 1.15rem;
      max-width: 600px;
      margin: 0 auto var(--space-500);
      animation: hero-h1-rise 0.7s var(--ease-spring) 0.2s both;
    }

    .hero-ctas {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-200);
      flex-wrap: wrap;
      margin-bottom: var(--space-800);
      animation: hero-h1-rise 0.7s var(--ease-spring) 0.3s both;
    }

    /* Flag bubbles */
    .hero-flags-hint {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin: var(--space-200) auto var(--space-150);
      padding: 6px 14px;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.78);
      background: rgba(0,128,131,0.14);
      border: 1px solid rgba(0,179,182,0.35);
      border-radius: var(--radius-pill);
      animation: hero-h1-rise 0.7s var(--ease-spring) 0.32s both, hint-pulse 2.6s ease-in-out 1.2s infinite;
    }
    .hero-flags-hint .hint-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: #00B3B6;
      box-shadow: 0 0 0 0 rgba(0,179,182,0.6);
      animation: hint-dot-pulse 1.8s ease-out infinite;
    }
    .hero-flags-hint svg { color: #00B3B6; transition: transform 0.3s var(--ease-spring); }
    @keyframes hint-pulse {
      0%, 100% { border-color: rgba(0,179,182,0.35); }
      50%      { border-color: rgba(0,179,182,0.7); }
    }
    @keyframes hint-dot-pulse {
      0%   { box-shadow: 0 0 0 0 rgba(0,179,182,0.55); }
      70%  { box-shadow: 0 0 0 8px rgba(0,179,182,0); }
      100% { box-shadow: 0 0 0 0 rgba(0,179,182,0); }
    }
    .hero-flags {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-150);
      flex-wrap: wrap;
      animation: hero-h1-rise 0.7s var(--ease-spring) 0.4s both;
    }
    .flag-bubble {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      background: rgba(255,255,255,0.08);
      border: 1.5px solid rgba(0,179,182,0.32);
      border-radius: var(--radius-xl);
      padding: var(--space-150) var(--space-250);
      transition: all 0.25s var(--ease-spring);
      cursor: pointer;
      text-decoration: none;
      box-shadow: 0 4px 14px rgba(0,0,0,0.18);
      overflow: hidden;
    }
    .flag-bubble::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0,128,131,0.18), rgba(0,179,182,0.06) 60%, transparent);
      opacity: 0.55;
      pointer-events: none;
      transition: opacity 0.25s;
    }
    .flag-bubble > * { position: relative; z-index: 1; }
    .flag-bubble:hover {
      background: rgba(0,128,131,0.22);
      border-color: rgba(0,179,182,0.85);
      transform: translateY(-6px);
      box-shadow: 0 14px 32px rgba(0,128,131,0.35);
    }
    .flag-bubble:hover::before { opacity: 1; }
    .flag-bubble:active { transform: translateY(-3px); }
    .flag-bubble:focus-visible {
      outline: 2px solid #00B3B6;
      outline-offset: 3px;
    }
    .flag-bubble .flag { font-size: 28px; }
    .flag-bubble .flag-label {
      font-family: var(--font-mono);
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.85);
      font-weight: 600;
    }
    .flag-bubble .flag-count {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--sky);
      font-weight: 500;
    }
    .flag-arrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      margin-top: 2px;
      border-radius: 50%;
      background: rgba(0,179,182,0.18);
      border: 1px solid rgba(0,179,182,0.5);
      color: #00B3B6;
      transition: transform 0.25s var(--ease-spring), background 0.25s, border-color 0.25s;
    }
    .flag-arrow svg { width: 11px; height: 11px; transition: transform 0.25s var(--ease-spring); }
    .flag-bubble:hover .flag-arrow {
      background: #00B3B6;
      border-color: #00B3B6;
      color: #0A1628;
    }
    .flag-bubble:hover .flag-arrow svg { transform: translateX(2px); }

    .hero-trust {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-400);
      flex-wrap: wrap;
      margin-top: var(--space-600);
      animation: hero-h1-rise 0.7s var(--ease-spring) 0.5s both;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: var(--space-100);
      color: var(--text-white-muted);
      font-size: 13px;
      font-weight: 500;
    }
    .trust-item svg { color: var(--green); width: 16px; height: 16px; flex-shrink: 0; }

    /* =============================================
       MARQUEE
    ============================================= */
    #marquee {
      height: 44px;
      background: var(--purple);
      overflow: hidden;
      display: flex;
      align-items: center;
      position: relative;
    }
    #marquee::before, #marquee::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 80px;
      z-index: 2;
      pointer-events: none;
    }
    #marquee::before {
      left: 0;
      background: linear-gradient(90deg, var(--purple) 0%, transparent 100%);
    }
    #marquee::after {
      right: 0;
      background: linear-gradient(270deg, var(--purple) 0%, transparent 100%);
    }
    .marquee-track {
      display: flex;
      width: max-content;
      animation: marquee-scroll 28s linear infinite;
    }
    #marquee:hover .marquee-track { animation-play-state: paused; }
    .marquee-set {
      display: flex;
      align-items: center;
      gap: var(--space-200);
      padding-right: var(--space-200);
    }
    .marquee-item {
      display: flex;
      align-items: center;
      gap: var(--space-200);
      font-family: var(--font-mono);
      font-size: 12px;
      color: rgba(255,255,255,0.9);
      white-space: nowrap;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }
    .marquee-sep { color: rgba(255,255,255,0.4); font-size: 8px; }
    @keyframes marquee-scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    @keyframes flight-pulse {
      0%, 100% { r: 2; opacity: 1; }
      50% { r: 3.5; opacity: 0.6; }
    }
    .flight-dot { animation: flight-pulse 2s ease-in-out infinite; }

    /* =============================================
       COUNTRY STRIP
    ============================================= */
    #countries {
      background: var(--bg-white);
      padding: var(--space-600) 0;
      border-bottom: 1px solid var(--border);
    }
    .country-label {
      text-align: center;
      font-family: var(--font-mono);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      margin-bottom: var(--space-300);
    }
    .country-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: var(--space-150);
    }
    .country-chip {
      display: flex;
      align-items: center;
      gap: var(--space-100);
      padding: var(--space-100) var(--space-200);
      background: var(--bg-off);
      border: 1px solid var(--border);
      border-radius: var(--radius-pill);
      font-size: 13px;
      font-weight: 500;
      color: var(--text-secondary);
      transition: all 0.2s;
    }
    .country-chip:hover {
      border-color: var(--sky);
      color: var(--sky-dark);
      background: var(--sky-dim);
      transform: translateY(-2px);
    }
    .country-chip .flag { font-size: 18px; }

    /* =============================================
       SERVICES
    ============================================= */
    #services {
      background: var(--bg-white);
      padding: var(--space-1000) 0;
    }
    .section-header {
      text-align: center;
      margin-bottom: var(--space-800);
    }
    .section-header h2 { color: var(--text-primary); margin-bottom: var(--space-200); }
    .section-header p { color: var(--text-muted); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-300);
    }
    .service-card-wrap {
      perspective: 1200px;
      height: 300px;
    }
    .service-card-inner {
      position: relative;
      width: 100%; height: 100%;
      transform-style: preserve-3d;
      transition: transform 0.6s var(--ease-spring);
    }
    .service-card-wrap:hover .service-card-inner { transform: rotateY(180deg); }
    .service-front, .service-back {
      position: absolute;
      inset: 0;
      border-radius: var(--radius-xl);
      backface-visibility: hidden;
      display: flex;
      flex-direction: column;
    }
    .service-front {
      background: var(--bg-white);
      border: 1.5px solid var(--border);
      padding: var(--space-400) var(--space-300);
      box-shadow: var(--shadow-sm);
      transition: box-shadow 0.3s, border-color 0.3s;
      position: relative;
      overflow: hidden;
    }
    .service-card-wrap:hover .service-front {
      box-shadow: var(--shadow-lg);
      border-color: transparent;
    }
    .service-back {
      transform: rotateY(180deg);
      padding: var(--space-400) var(--space-300);
      color: var(--text-white);
    }
    /* Flag-specific colors for service card tops */
    .svc-usa .service-front { border-top: 3px solid var(--usa); }
    .svc-usa .service-back { background: linear-gradient(135deg, #B22234 0%, #3C3B6E 100%); }
    .svc-niw .service-front { border-top: 3px solid var(--niw); }
    .svc-niw .service-back { background: linear-gradient(135deg, #C41E3A 0%, #4B0082 100%); }
    .svc-can .service-front { border-top: 3px solid var(--canada); }
    .svc-can .service-back { background: linear-gradient(135deg, #CC0000 0%, #A00000 100%); }
    .svc-sch .service-front { border-top: 3px solid var(--eu); }
    .svc-sch .service-back { background: linear-gradient(135deg, #003399 0%, #001D6E 100%); }
    .svc-aus .service-front { border-top: 3px solid #00008B; }
    .svc-aus .service-back { background: linear-gradient(135deg, #00008B 0%, #002080 100%); }
    .svc-uk .service-front { border-top: 3px solid #012169; }
    .svc-uk .service-back { background: linear-gradient(135deg, #012169 0%, #C8102E 100%); }

    .service-icon-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: var(--space-300);
    }
    .service-icon {
      width: 40px; height: 40px;
      border-radius: var(--radius-lg);
      display: flex; align-items: center; justify-content: center;
      font-size: 22px;
    }
    .service-flag { font-size: 32px; }
    .service-badge {
      font-family: var(--font-mono);
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      padding: 3px 10px;
      border-radius: var(--radius-pill);
      font-weight: 500;
    }
    .badge-popular { background: rgba(0,128,131,0.08); color: #047C7F; border: 1px solid rgba(0,128,131,0.25); }
    .badge-fast { background: var(--green-dim); color: var(--green); border: 1px solid rgba(54,179,126,0.25); }
    .badge-success { background: rgba(0,128,131,0.08); color: #047C7F; border: 1px solid rgba(0,128,131,0.2); }
    .service-h3 { font-size: 1.1rem; color: var(--text-primary); margin-bottom: var(--space-100); }
    .service-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; flex: 1; }
    .service-time {
      margin-top: var(--space-200);
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--text-muted);
      display: flex; align-items: center; gap: var(--space-050);
    }
    .service-time svg { width: 12px; height: 12px; }
    .service-hint { font-size: 11px; color: var(--text-muted); margin-top: var(--space-050); }

    .service-back h4 { font-size: 14px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: var(--space-200); font-family: var(--font-mono); }
    .service-back ul { flex: 1; }
    .service-back li {
      font-size: 13px;
      color: rgba(255,255,255,0.9);
      padding: var(--space-050) 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      display: flex; align-items: center; gap: var(--space-100);
    }
    .service-back li::before { content: '→'; color: rgba(255,255,255,0.4); flex-shrink: 0; }
    .service-back .btn-wa-card {
      display: flex; align-items: center; justify-content: center; gap: var(--space-100);
      background: rgba(37,211,102,0.9);
      color: #fff;
      border-radius: var(--radius-md);
      padding: var(--space-150) var(--space-200);
      font-size: 13px;
      font-weight: 700;
      margin-top: var(--space-300);
      transition: background 0.2s;
    }
    .service-back .btn-wa-card:hover { background: #25D366; }

    @media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

    /* =============================================
       SCROLL-LOCKED PROCESS
    ============================================= */
    #process {
      background: var(--bg-section);
    }
    .process-header {
      text-align: center;
      padding: var(--space-1000) var(--space-300) var(--space-800);
    }
    .process-header h2 { color: var(--text-primary); margin-bottom: var(--space-200); }
    .process-header p { color: var(--text-muted); max-width: 520px; margin: 0 auto; }

    /* Desktop sticky scroll explainer */
    .process-sticky-wrap {
      height: 400vh;
      position: relative;
    }
    .process-sticky {
      position: sticky;
      top: 64px;
      height: calc(100vh - 64px);
      display: flex;
      overflow: hidden;
    }
    .process-left {
      width: 38%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: var(--space-600) var(--space-600) var(--space-600) var(--space-400);
      position: relative;
    }
    .process-steps-nav {
      position: relative;
    }
    .process-step-nav {
      display: flex;
      align-items: flex-start;
      gap: var(--space-200);
      padding: var(--space-300) 0;
      cursor: pointer;
      transition: opacity 0.3s;
    }
    .process-step-nav:not(.active) { opacity: 0.4; }
    .process-step-nav.active { opacity: 1; }
    .ps-bead {
      width: 36px; height: 36px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-mono);
      font-size: 13px;
      font-weight: 500;
      flex-shrink: 0;
      border: 2px solid var(--border);
      color: var(--text-muted);
      background: var(--bg-white);
      transition: all 0.4s var(--ease-spring);
    }
    @keyframes bead-breathe {
      0%, 100% { box-shadow: 0 0 0 4px rgba(0,128,131,0.25); }
      50% { box-shadow: 0 0 0 10px rgba(0,128,131,0.06); }
    }
    .process-step-nav.active .ps-bead {
      background: var(--sky);
      border-color: var(--sky);
      color: var(--bg-deep);
      animation: bead-breathe 2s ease-in-out infinite;
    }
    .process-step-nav.done .ps-bead {
      background: var(--green);
      border-color: var(--green);
      color: #fff;
    }
    .ps-connector {
      position: absolute;
      left: 17px;
      top: calc(var(--space-300) + 36px);
      width: 2px;
      background: var(--border);
      transition: background 0.4s;
    }
    @keyframes fiber-flow {
      0% { background-position: 0 0; }
      100% { background-position: 0 40px; }
    }
    .ps-connector.filled {
      background: linear-gradient(180deg, var(--sky) 0%, var(--purple-light) 50%, var(--sky) 100%);
      background-size: 100% 40px;
      animation: fiber-flow 1.5s linear infinite;
    }
    .ps-text {}
    .ps-num {
      font-family: var(--font-mono);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-muted);
      margin-bottom: 4px;
    }
    .ps-title { font-weight: 700; font-size: 15px; color: var(--text-primary); }

    /* Right panel */
    .process-right {
      width: 62%;
      position: relative;
      overflow: hidden;
    }
    .process-panel {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: var(--space-600) var(--space-800) var(--space-600) var(--space-500);
      opacity: 0;
      transform: translateX(40px);
      transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
      pointer-events: none;
    }
    .process-panel.active {
      opacity: 1;
      transform: translateX(0);
      pointer-events: auto;
    }
    .panel-watermark {
      font-size: 180px;
      font-weight: 900;
      letter-spacing: -0.05em;
      line-height: 1;
      color: rgba(0,128,131,0.07);
      position: absolute;
      top: 0; right: var(--space-300);
      pointer-events: none;
      user-select: none;
    }
    .panel-eyebrow { margin-bottom: var(--space-200); }
    .panel-h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -0.03em; color: var(--text-primary); margin-bottom: var(--space-300); line-height: 1.1; }
    .panel-desc { font-size: 1.05rem; color: var(--text-secondary); margin-bottom: var(--space-400); max-width: 500px; line-height: 1.7; }
    .panel-details {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-150);
      margin-bottom: var(--space-400);
    }
    .panel-detail-item {
      display: flex;
      align-items: center;
      gap: var(--space-100);
      font-size: 14px;
      color: var(--text-secondary);
    }
    .panel-detail-item::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--sky);
      border-radius: 50%;
      flex-shrink: 0;
    }
    .panel-progress {
      display: flex;
      align-items: center;
      gap: var(--space-200);
      margin-bottom: var(--space-400);
    }
    .panel-progress-bar {
      flex: 1; height: 4px;
      background: var(--border);
      border-radius: 2px;
      overflow: hidden;
    }
    .panel-progress-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--sky), var(--purple));
      border-radius: 2px;
      transition: width 0.6s var(--ease-spring);
    }
    .panel-progress-label {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--text-muted);
      white-space: nowrap;
    }

    /* Mobile accordion (hidden on desktop) */
    .process-accordion { display: none; }
    .pa-item {
      background: var(--bg-white);
      border: 1.5px solid var(--border);
      border-radius: var(--radius-xl);
      margin-bottom: var(--space-150);
      overflow: hidden;
      transition: border-color 0.3s;
    }
    .pa-item.open { border-color: var(--sky-border); }
    .pa-header {
      display: flex;
      align-items: center;
      gap: var(--space-200);
      padding: var(--space-300) var(--space-300);
      cursor: pointer;
    }
    .pa-bead {
      width: 36px; height: 36px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-mono);
      font-size: 13px;
      background: var(--bg-section);
      color: var(--text-muted);
      font-weight: 700;
      flex-shrink: 0;
      transition: all 0.3s;
    }
    .pa-item.open .pa-bead { background: var(--sky); color: var(--bg-deep); }
    .pa-title-wrap { flex: 1; }
    .pa-step-label { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
    .pa-step-title { font-weight: 700; font-size: 16px; color: var(--text-primary); }
    .pa-chevron {
      width: 20px; height: 20px;
      color: var(--text-muted);
      transition: transform 0.3s;
      flex-shrink: 0;
    }
    .pa-item.open .pa-chevron { transform: rotate(180deg); }
    .pa-body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-spring); }
    .pa-body-inner { padding: 0 var(--space-300) var(--space-300); }
    .pa-desc { color: var(--text-secondary); font-size: 15px; line-height: 1.7; margin-bottom: var(--space-200); }
    .pa-details-list { display: flex; flex-direction: column; gap: var(--space-050); }
    .pa-detail {
      font-size: 14px; color: var(--text-muted);
      display: flex; align-items: center; gap: var(--space-100);
    }
    .pa-detail::before { content: '→'; color: var(--sky); flex-shrink: 0; }

    /* =============================================
       STATS
    ============================================= */
    #stats {
      background: var(--bg-deep);
      padding: var(--space-1000) 0;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--space-200);
    }
    .stat-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-xl);
      padding: var(--space-500) var(--space-400);
      text-align: center;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    /* Flag/country chip image sizing */
    .flag-chip img, .country-chip img {
      border-radius: 2px;
      object-fit: cover;
      flex-shrink: 0;
      box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    }
    .stat-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
    }
    .stat-card:nth-child(1)::before { background: var(--sky); }
    .stat-card:nth-child(2)::before { background: var(--green); }
    .stat-card:nth-child(3)::before { background: var(--purple-light); }
    .stat-card:nth-child(4)::before { background: var(--amber); }
    .stat-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }
    .stat-num {
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 900;
      letter-spacing: -0.04em;
      line-height: 1;
      margin-bottom: var(--space-100);
    }
    .stat-card:nth-child(1) .stat-num { color: var(--sky); }
    .stat-card:nth-child(2) .stat-num { color: var(--green); }
    .stat-card:nth-child(3) .stat-num { color: var(--purple-light); }
    .stat-card:nth-child(4) .stat-num { color: var(--amber); }
    .stat-label {
      font-family: var(--font-mono);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.5);
    }
    @media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

    /* =============================================
       TOOLS
    ============================================= */
    #tools {
      background: var(--bg-white);
      padding: var(--space-1000) 0;
    }
    .tools-tabs-wrap { text-align: center; margin-bottom: var(--space-500); }
    .tools-tabs {
      display: inline-flex;
      background: var(--bg-off);
      border: 1.5px solid var(--border);
      border-radius: var(--radius-pill);
      padding: 4px;
      position: relative;
      gap: 2px;
    }
    .tool-tab-btn {
      padding: var(--space-100) var(--space-300);
      border-radius: var(--radius-pill);
      font-size: 14px;
      font-weight: 600;
      color: var(--text-muted);
      position: relative;
      z-index: 1;
      transition: color 0.25s;
      cursor: pointer;
      white-space: nowrap;
    }
    .tool-tab-btn.active { color: var(--text-white); }
    .tab-pill {
      position: absolute;
      background: var(--purple);
      border-radius: var(--radius-pill);
      height: calc(100% - 8px);
      top: 4px;
      transition: left 0.3s var(--ease-spring), width 0.3s var(--ease-spring);
      z-index: 0;
    }
    .tools-panels { position: relative; }
    .tool-panel {
      opacity: 0;
      pointer-events: none;
      position: absolute;
      inset: 0;
      transition: opacity 0.25s;
    }
    .tool-panel.active { opacity: 1; pointer-events: all; position: relative; }

    /* Wizard */
    .wizard-step-track {
      display: flex;
      align-items: center;
      margin-bottom: var(--space-400);
    }
    .wiz-step-item { display: flex; align-items: center; flex: 1; }
    .wiz-step-item:last-child { flex: 0; }
    .wiz-circle {
      width: 32px; height: 32px;
      border-radius: 50%;
      border: 2px solid var(--border);
      color: var(--text-muted);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-mono);
      font-size: 13px;
      flex-shrink: 0;
      transition: all 0.3s;
    }
    .wiz-step-item.active .wiz-circle { border-color: var(--purple); color: var(--purple); }
    .wiz-step-item.done .wiz-circle { background: var(--purple); border-color: var(--purple); color: #fff; }
    .wiz-connector { flex: 1; height: 2px; background: var(--border); margin: 0 4px; transition: background 0.3s; }
    .wiz-step-item.done .wiz-connector { background: var(--purple); }
    .wizard-q { font-size: 1.2rem; font-weight: 700; color: var(--text-primary); margin-bottom: var(--space-300); }
    .wizard-opts { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-150); margin-bottom: var(--space-400); }
    .wiz-tile {
      display: flex; align-items: center; gap: var(--space-150);
      border: 1.5px solid var(--border);
      border-radius: var(--radius-lg);
      padding: var(--space-200) var(--space-200);
      cursor: pointer;
      font-size: 14px; font-weight: 500;
      color: var(--text-primary);
      transition: all 0.25s var(--ease-spring);
      background: var(--bg-white);
      position: relative;
    }
    .wiz-tile:hover {
      border-color: var(--purple);
      background: var(--purple-dim);
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
    }
    .wiz-tile.selected { border-color: var(--purple); background: var(--purple-dim); }
    .wiz-tile-icon { font-size: 20px; }
    .wiz-tile-check {
      position: absolute; top: 10px; right: 10px;
      width: 18px; height: 18px; border-radius: 50%;
      background: var(--purple); display: none; align-items: center; justify-content: center;
    }
    .wiz-tile-check svg { width: 10px; height: 10px; color: #fff; }
    .wiz-tile.selected .wiz-tile-check { display: flex; }
    .wizard-step-content { display: none; }
    .wizard-step-content.active { display: block; animation: fadeUp 0.35s var(--ease-out); }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
    .wizard-result-box { text-align: center; }
    .wizard-result-title { font-size: 2rem; font-weight: 900; color: var(--purple); letter-spacing: -0.03em; margin-bottom: var(--space-300); }
    .wiz-result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-200); max-width: 500px; margin: 0 auto var(--space-400); text-align: left; }
    .wiz-result-cell { background: var(--bg-off); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-200); }
    .wiz-result-label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: var(--space-050); }
    .wiz-result-val { font-weight: 700; font-size: 1.1rem; color: var(--text-primary); }

    /* Processing times */
    .pt-select {
      width: 100%; padding: var(--space-200) var(--space-200);
      border: 1.5px solid var(--border);
      border-radius: var(--radius-lg);
      font-family: var(--font-body);
      font-size: 16px;
      color: var(--text-primary);
      appearance: none;
      background: var(--bg-white) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%23008083' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>") no-repeat right 16px center;
      margin-bottom: var(--space-400);
      cursor: pointer;
    }
    .pt-bars { display: none; }
    .pt-bars.active { display: block; animation: fadeUp 0.4s; }
    .pt-row { margin-bottom: var(--space-300); }
    .pt-row-top { display: flex; justify-content: space-between; margin-bottom: var(--space-100); }
    .pt-row-label { font-weight: 600; color: var(--text-primary); font-size: 14px; }
    .pt-row-val { font-family: var(--font-mono); font-size: 13px; color: var(--text-muted); }
    .pt-track { height: 10px; background: var(--bg-section); border-radius: var(--radius-pill); overflow: hidden; }
    @keyframes pt-glow {
      0% { background-position: -200px 0; }
      100% { background-position: 200px 0; }
    }
    .pt-fill {
      height: 100%; width: 0; border-radius: var(--radius-pill);
      transition: width 0.9s var(--ease-spring);
      background-size: 200px 100% !important;
      position: relative;
    }
    .pt-fill::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0) 100%);
      animation: pt-glow 1.8s infinite linear;
      background-size: 200% 100%;
    }
    .pt-fill.fast { background: linear-gradient(90deg, #2E9E6B, #3ED598); }
    .pt-fill.avg { background: linear-gradient(90deg, #008083, #00B3B6); }
    .pt-fill.slow { background: linear-gradient(90deg, #FFAB00, #FFC72C); }
    .pt-note { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); margin-top: var(--space-300); }

    /* Cost Calculator */
    .calc-inputs { display: grid; grid-template-columns: 2fr 1fr; gap: var(--space-200); margin-bottom: var(--space-400); }
    .calc-input {
      width: 100%; padding: var(--space-200);
      border: 1.5px solid var(--border);
      border-radius: var(--radius-lg);
      font-family: var(--font-body);
      font-size: 16px; color: var(--text-primary);
      background: var(--bg-white);
    }
    .calc-table {
      width: 100%;
      border-collapse: collapse;
      display: none;
      background: var(--bg-white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border);
    }
    .calc-table.active { display: table; animation: fadeUp 0.4s; }
    .calc-table th, .calc-table td { padding: var(--space-200); text-align: left; border-bottom: 1px dashed var(--border); font-size: 14px; }
    .calc-table th { background: var(--bg-off); border-bottom: 2px dashed var(--border); color: var(--text-muted); font-weight: 600; }
    .calc-table td.val { text-align: right; font-family: var(--font-mono); font-weight: 600; color: var(--text-primary); }
    .calc-total { background: linear-gradient(90deg, var(--purple), var(--navy-deep)); }
    .calc-total td { color: #fff; font-weight: 700; font-size: 16px; border-bottom: none; }
    .calc-total td.val { font-size: 18px; }

    /* Elegant Section Divider Rule */
    .section-divider {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, var(--border) 15%, var(--border) 85%, transparent 100%);
    }
    .section-divider::after {
      content: '';
      position: absolute;
      width: 6px; height: 6px;
      background: var(--sky);
      transform: rotate(45deg);
      border: 1px solid var(--bg-white);
    }

    /* =============================================
       SOCIAL PROOF
    ============================================= */
    #reviews {
      background: var(--bg-off);
      padding: var(--space-1000) 0;
    }
    .google-badge-wrap { text-align: center; margin-bottom: var(--space-800); }
    .google-badge {
      display: inline-flex;
      align-items: center;
      gap: 18px;
      background: var(--bg-white);
      border: 1.5px solid rgba(0,128,131,0.18);
      border-radius: 16px;
      padding: 18px 28px;
      box-shadow: 0 8px 28px rgba(0,128,131,0.10), 0 2px 6px rgba(0,0,0,0.04);
      flex-wrap: wrap;
      justify-content: center;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .google-badge:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 36px rgba(0,128,131,0.15), 0 4px 12px rgba(0,0,0,0.06);
    }
    .google-badge .g-divider {
      width: 1px;
      height: 28px;
      background: rgba(0,128,131,0.15);
    }
    .g-logo { font-weight: 900; font-size: 22px; color: #4285F4; }
    .g-score { font-weight: 800; font-size: 18px; color: var(--text-primary); }
    .g-stars { display: flex; gap: 3px; }
    .g-stars svg { width: 18px; height: 18px; fill: #FBBC05; }
    .g-reviews { font-size: 14px; color: var(--text-muted); }
    .g-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #008083;
      color: #FFFFFF !important;
      font-weight: 600;
      font-size: 13px;
      padding: 10px 18px;
      border-radius: 999px;
      transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
      box-shadow: 0 4px 12px rgba(0,128,131,0.25);
      white-space: nowrap;
    }
    .g-link:hover {
      background: #0E7073;
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(0,128,131,0.35);
    }
    .g-link::after {
      content: '→';
      display: inline-block;
      transition: transform 0.2s ease;
    }
    .g-link:hover::after {
      transform: translateX(3px);
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-300);
      margin-bottom: var(--space-800);
    }
    .review-card {
      background: var(--bg-white);
      border-radius: var(--radius-xl);
      padding: var(--space-400) var(--space-300);
      border: 1.5px solid var(--border);
      box-shadow: var(--shadow-sm);
      transition: all 0.25s;
    }
    .review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-sky); }
    .review-quote { font-size: 56px; line-height: 0.6; color: var(--purple-light); opacity: 0.4; font-weight: 900; margin-bottom: var(--space-200); }
    .review-text { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: var(--space-300); font-style: italic; }
    .review-author { font-weight: 700; color: var(--text-primary); font-size: 14px; }
    .review-loc { font-size: 12px; color: var(--text-muted); margin-bottom: var(--space-150); }
    .review-stars { display: flex; gap: 2px; }
    .review-stars svg { width: 14px; height: 14px; fill: #FBBC05; }
    .review-flag-accent { height: 3px; border-radius: 0 0 var(--radius-sm) var(--radius-sm); margin: 0 -var(--space-300); margin-top: var(--space-300); }
    .rf-usa { background: linear-gradient(90deg, #B22234, #3C3B6E); }
    .rf-can { background: linear-gradient(90deg, #CC0000, #FF0000); }
    .rf-sch { background: linear-gradient(90deg, #003399, #FFDD00); }

    /* Case studies */
    .cs-wrap { max-width: 800px; margin: 0 auto; }
    .cs-header-row { text-align: center; margin-bottom: var(--space-500); }
    .cs-item {
      background: var(--bg-white);
      border: 1.5px solid var(--border);
      border-radius: var(--radius-xl);
      margin-bottom: var(--space-200);
      overflow: hidden;
      transition: border-color 0.3s;
    }
    .cs-item.open { border-color: var(--sky-border); }
    .cs-trigger {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: var(--space-300) var(--space-300);
      cursor: pointer;
      font-weight: 600;
      font-size: 15px;
      color: var(--text-primary);
    }
    .cs-trigger:hover { background: var(--bg-off); }
    .cs-chevron { width: 20px; height: 20px; color: var(--text-muted); transition: transform 0.3s; flex-shrink: 0; }
    .cs-item.open .cs-chevron { transform: rotate(180deg); }
    .cs-body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-spring); }
    .cs-body-inner { padding: 0 var(--space-300) var(--space-300); border-top: 1px solid var(--border); margin-top: 0; padding-top: var(--space-300); }
    .cs-section-label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--sky-dark); margin-bottom: var(--space-050); }
    .cs-text { font-size: 14px; color: var(--text-muted); margin-bottom: var(--space-200); }
    .cs-timeline { display: flex; gap: var(--space-150); flex-wrap: wrap; }
    .cs-tag {
      background: var(--green-dim);
      color: var(--green);
      border: 1px solid rgba(54,179,126,0.2);
      padding: var(--space-050) var(--space-150);
      border-radius: var(--radius-md);
      font-family: var(--font-mono);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    @media (max-width: 768px) { .reviews-grid { grid-template-columns: 1fr; } }

    /* =============================================
       TEAM
    ============================================= */
    #team {
      background: var(--bg-white);
      padding: var(--space-1000) 0;
    }
    .team-grid {
      display: flex;
      justify-content: center;
      gap: var(--space-500);
      flex-wrap: wrap;
      margin-bottom: var(--space-800);
    }
    .team-card { width: 280px; text-align: center; }
    .team-avatar {
      width: 100px; height: 100px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--purple), var(--sky));
      color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: 28px; letter-spacing: -0.03em;
      margin: 0 auto var(--space-300);
      transition: transform 0.3s var(--ease-spring);
    }
    .team-card:hover .team-avatar {
      transform: scale(1.06);
      box-shadow: 0 0 0 4px rgba(0,128,131,0.2), 0 0 0 8px rgba(0,128,131,0.08);
    }
    .team-name { font-weight: 800; font-size: 1.15rem; color: var(--text-primary); margin-bottom: 4px; }
    .team-role { font-size: 13px; color: var(--text-muted); margin-bottom: var(--space-150); }
    .team-credential {
      display: inline-block;
      font-family: var(--font-mono);
      font-size: 11px;
      padding: 3px 12px;
      border-radius: var(--radius-pill);
      background: var(--purple-dim);
      color: var(--purple);
      border: 1px solid rgba(0,128,131,0.2);
      margin-bottom: var(--space-200);
    }
    .team-bio { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

    .oisc-banner {
      text-align: center;
      border-top: 1px solid var(--border);
      padding-top: var(--space-400);
      color: var(--text-muted);
      font-size: 14px;
      max-width: 600px;
      margin: 0 auto;
    }
    .oisc-badge {
      display: inline-flex; align-items: center; gap: var(--space-150);
      background: var(--green-dim);
      border: 1px solid rgba(54,179,126,0.25);
      border-radius: var(--radius-lg);
      padding: var(--space-150) var(--space-300);
      margin-top: var(--space-200);
      font-weight: 700;
      color: var(--green);
    }
    .oisc-badge svg { width: 20px; height: 20px; flex-shrink: 0; }

    /* =============================================
       FAQ
    ============================================= */
    #faq {
      background: var(--bg-section);
      padding: var(--space-1000) 0;
    }
    .faq-list { max-width: 800px; margin: 0 auto; }
    .faq-item {
      background: var(--bg-white);
      border: 1.5px solid var(--border);
      border-radius: var(--radius-xl);
      margin-bottom: var(--space-150);
      overflow: hidden;
      transition: border-color 0.3s;
    }
    .faq-item.open { border-color: var(--sky-border); }
    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: var(--space-300) var(--space-300);
      cursor: pointer;
      font-weight: 600;
      font-size: 15px;
      color: var(--text-primary);
      gap: var(--space-200);
    }
    .faq-question:hover { background: var(--bg-off); }
    .faq-chevron { width: 20px; height: 20px; color: var(--text-muted); transition: transform 0.3s; flex-shrink: 0; }
    .faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--sky); }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-spring); }
    .faq-answer-inner { padding: 0 var(--space-300) var(--space-300); font-size: 14px; color: var(--text-muted); line-height: 1.7; border-top: 1px solid var(--border); padding-top: var(--space-200); }
    .faq-answer-inner a { color: var(--sky-dark); font-weight: 600; }

    /* =============================================
       RESOURCES
    ============================================= */
    #resources {
      background: var(--bg-white);
      padding: var(--space-1000) 0;
    }
    .res-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-300);
      margin-bottom: var(--space-500);
    }
    .res-card {
      display: flex; flex-direction: column;
      background: var(--bg-white);
      border: 1.5px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 28px 26px;
      transition: all 0.25s;
      position: relative;
    }
    .res-title { flex-shrink: 0; }
    .res-link  { margin-top: auto; }
    .res-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-sky); }
    .res-tag {
      display: inline-block;
      font-family: var(--font-mono);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      padding: 3px 12px;
      border-radius: var(--radius-pill);
      background: var(--purple-dim);
      color: var(--purple);
      border: 1px solid rgba(0,128,131,0.18);
      margin-bottom: var(--space-200);
      width: max-content;
    }
    .res-tag.tag-checklist { background: var(--green-dim); color: var(--green); border-color: rgba(54,179,126,0.25); }
    .res-tag.tag-update { background: rgba(0,128,131,0.08); color: #047C7F; border-color: rgba(0,128,131,0.25); }
    .res-title { font-weight: 700; font-size: 16px; color: var(--text-primary); line-height: 1.4; margin-bottom: var(--space-200); flex: 1; }
    .res-meta { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); margin-bottom: var(--space-200); text-transform: uppercase; letter-spacing: 0.06em; }
    .res-link {
      display: flex; align-items: center; gap: var(--space-100);
      color: var(--purple);
      font-weight: 600;
      font-size: 14px;
    }
    .res-link svg { transition: transform 0.2s; width: 16px; height: 16px; }
    .res-card:hover .res-link svg { transform: translateX(4px); }
    @media (max-width: 768px) { .res-grid { grid-template-columns: 1fr; } }

    /* =============================================
       CTA BANNER
    ============================================= */
    #cta {
      background: var(--bg-deep);
      padding: var(--space-1000) 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    #cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 100%, rgba(0,128,131,0.12) 0%, transparent 65%);
      pointer-events: none;
    }
    .cta-content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
    .cta-h2 { color: var(--text-white); margin-bottom: var(--space-200); }
    .cta-sub { color: var(--text-white-muted); font-size: 1.05rem; margin-bottom: var(--space-500); }
    .cta-btns { display: flex; align-items: center; justify-content: center; gap: var(--space-200); flex-wrap: wrap; margin-bottom: var(--space-300); }
    .cta-phone { font-family: var(--font-mono); color: var(--sky); font-size: 14px; display: block; margin-bottom: var(--space-100); }
    .cta-hours { font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; }

    /* =============================================
       FOOTER
    ============================================= */
    #footer {
      background: var(--bg-dark);
      color: rgba(255,255,255,0.5);
      padding: var(--space-800) 0 var(--space-400);
      font-size: 14px;
      position: relative;
      overflow: hidden;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: var(--space-600);
      margin-bottom: var(--space-600);
    }
    .footer-logo { font-size: 18px; font-weight: 800; color: var(--text-white); letter-spacing: -0.03em; margin-bottom: var(--space-150); display: block; }
    .footer-tagline { color: rgba(255,255,255,0.7); margin-bottom: var(--space-200); font-weight: 500; }
    .footer-text { line-height: 1.7; }
    .footer-col h4 { font-size: 13px; color: var(--text-white); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--space-300); }
    .footer-links li { margin-bottom: var(--space-150); }
    .footer-links a { transition: color 0.2s; }
    .footer-links a:hover { color: var(--sky); }
    .footer-contact p { margin-bottom: var(--space-150); display: flex; align-items: flex-start; gap: var(--space-100); }
    .footer-contact a { color: var(--sky); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: var(--space-300); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-200); font-size: 13px; }
    .footer-oisc { color: var(--green); font-weight: 600; font-family: var(--font-mono); font-size: 12px; }
    @media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: var(--space-400); } }

    /* =============================================
       FLOATING BUTTONS
    ============================================= */
    .floating-wa {
      position: fixed;
      bottom: var(--space-400);
      right: var(--space-400);
      width: 56px; height: 56px;
      border-radius: 50%;
      background: #25D366;
      color: #fff;
      display: flex; align-items: center; justify-content: center;
      z-index: 8000;
      box-shadow: var(--shadow-lg);
      animation: wa-pulse 2.5s ease-in-out infinite;
      transition: transform 0.2s;
    }
    .floating-wa:hover { transform: scale(1.08); }
    .floating-wa svg { width: 26px; height: 26px; }
    .floating-wa-tooltip {
      position: absolute;
      right: calc(100% + 14px);
      background: var(--bg-white);
      color: var(--text-primary);
      font-size: 13px;
      font-weight: 600;
      padding: var(--space-100) var(--space-150);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-md);
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transform: translateX(8px);
      transition: opacity 0.2s, transform 0.2s;
    }
    .floating-wa:hover .floating-wa-tooltip { opacity: 1; transform: translateX(0); }
    .scroll-top {
      position: fixed;
      bottom: calc(var(--space-400) + 68px);
      right: var(--space-400);
      width: 40px; height: 40px;
      border-radius: 50%;
      background: rgba(26,26,46,0.85);
      border: 1px solid rgba(255,255,255,0.1);
      color: #fff;
      display: flex; align-items: center; justify-content: center;
      z-index: 8000;
      opacity: 0; pointer-events: none;
      transition: opacity 0.3s, background 0.2s;
      cursor: pointer;
    }
    .scroll-top.show { opacity: 1; pointer-events: auto; }
    .scroll-top:hover { background: var(--purple); }

    /* =============================================
       MOBILE OVERRIDES
    ============================================= */
    @media (max-width: 768px) {
      * { box-sizing: border-box !important; }
      body { overflow-x: hidden !important; }

      .nav-links { display: none !important; }
      .nav-cta .nav-wa { display: none !important; }
      .hamburger-btn { display: flex !important; }

      #hero { padding: calc(64px + var(--space-500)) var(--space-300) var(--space-600) !important; }
      .hero-content { padding: 0; }
      .hero-ctas { flex-direction: column !important; width: 100% !important; }
      .hero-ctas .btn { width: 100% !important; border-radius: var(--radius-pill) !important; padding: var(--space-200) !important; }
      .hero-trust { gap: var(--space-200) !important; }

      .services-grid { grid-template-columns: 1fr !important; }
      .service-card-wrap { height: 260px !important; }
      .service-card-wrap:hover .service-card-inner { transform: none !important; }
      .service-card-wrap.flipped .service-card-inner { transform: rotateY(180deg) !important; }
      .service-hint { font-size: 11px !important; }
      .service-hint::after { content: " — tap to flip"; }

      /* Process: hide sticky, show accordion */
      .process-accordion { display: none !important; }

      .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
      .stat-card { padding: var(--space-300) var(--space-200) !important; }

      .tools-tabs { flex-direction: column !important; background: transparent !important; border: none !important; padding: 0 !important; gap: var(--space-100) !important; }
      .tool-tab-btn { width: 100% !important; background: var(--bg-off) !important; border: 1.5px solid var(--border) !important; border-radius: var(--radius-lg) !important; text-align: left !important; padding: var(--space-200) var(--space-300) !important; color: var(--text-secondary) !important; }
      .tool-tab-btn.active { background: var(--purple-dim) !important; border-color: var(--purple) !important; color: var(--purple) !important; }
      .tab-pill { display: none !important; }
      .wizard-opts { grid-template-columns: 1fr !important; }
      .calc-inputs { grid-template-columns: 1fr !important; }

      .reviews-grid { grid-template-columns: 1fr !important; }
      .res-grid { grid-template-columns: 1fr !important; }

      .cta-btns { flex-direction: column !important; width: 100%; }
      .cta-btns .btn { width: 100% !important; }

      .footer-grid { grid-template-columns: 1fr !important; }
      .footer-bottom { flex-direction: column !important; text-align: center; }

      .floating-wa { bottom: 20px !important; right: 20px !important; }
      .scroll-top { bottom: 86px !important; right: 20px !important; }

      section, .section-pad { padding-top: var(--space-800) !important; padding-bottom: var(--space-800) !important; }
      .section-header { margin-bottom: var(--space-500) !important; }

      /* Touch targets */
      button, a, select, input { min-height: 44px !important; }
      * { -webkit-tap-highlight-color: transparent !important; }

      .team-grid { flex-direction: column !important; align-items: center; }

      .panel-details { grid-template-columns: 1fr !important; }
      .wiz-result-grid { grid-template-columns: 1fr !important; }
    }

    @media (max-width: 480px) {
      h1 { font-size: clamp(2rem, 9vw, 2.6rem) !important; }
      h2 { font-size: clamp(1.6rem, 7vw, 2rem) !important; }
      .hero-flags { gap: var(--space-100) !important; }
      .flag-bubble { padding: var(--space-100) var(--space-150) !important; }
      .flag-bubble .flag { font-size: 22px !important; }
    }

    /* Ensure process sticky only shows on desktop */
    @media (min-width: 769px) {
      .process-accordion { display: none !important; }
    }

    /* =============================================
       UTILITY
    ============================================= */
    .text-center { text-align: center; }
    .wa-svg { flex-shrink: 0; }

    /* =============================================
       EMIGRE LAW CHAMBER — VISUAL REDESIGN LAYER
    ============================================= */

    /* Section background overrides — light teal wash theme */
    #hero     { background: #BEE7E0 !important; }
    #marquee  { background: #008083 !important; }
    #countries { background: #FFFFFF !important; }
    #services { background: #BEE7E0 !important; }
    #process  { background: #FFFFFF !important; }
    #stats    { background: #BEE7E0 !important; }
    #tools    { background: #FFFFFF !important; }
    #reviews  { background: #BEE7E0 !important; }
    #team     { background: #FFFFFF !important; }
    #faq      { background: #BEE7E0 !important; }
    #resources { background: #FFFFFF !important; }
    #cta      { background: #BEE7E0 !important; }
    #footer   { background: #1C2539 !important; border-top: 1px solid rgba(0,128,131,0.2); }

    /* Teal rule divider */
    .teal-rule {
      width: 56px;
      height: 2px;
      background: linear-gradient(90deg, #008083, #00B3B6);
      margin: 20px 0 28px;
      border-radius: 2px;
    }
    .teal-rule.centered { margin: 20px auto 28px; }

    /* Hero corner ornaments */
    .hero-corner {
      position: absolute;
      width: 100px;
      height: 100px;
      pointer-events: none;
    }
    .hero-corner-tl {
      top: 80px; left: 40px;
      border-top: 1px solid rgba(0,128,131,0.25);
      border-left: 1px solid rgba(0,128,131,0.25);
    }
    .hero-corner-br {
      bottom: 40px; right: 40px;
      border-bottom: 1px solid rgba(0,128,131,0.25);
      border-right: 1px solid rgba(0,128,131,0.25);
    }
    /* Hero watermark */
    .hero-watermark {
      position: absolute;
      right: -40px; top: 50%;
      transform: translateY(-50%);
      font-family: 'Cormorant Garamond', serif;
      font-size: 28vw;
      font-weight: 700;
      line-height: 1;
      color: transparent;
      -webkit-text-stroke: 1px rgba(0,128,131,0.06);
      pointer-events: none;
      user-select: none;
      letter-spacing: -0.05em;
    }

    /* All heading display font */
    h1, h2, h3,
    .hero-h1, .panel-h2, .wizard-q, .wizard-result-title,
    .nav-logo, .team-name, .footer-logo,
    .review-quote, .cs-trigger, .service-h3 {
      font-family: 'Cormorant Garamond', Georgia, serif !important;
    }

    /* Stat numbers */
    .stat-num {
      font-family: 'Cormorant Garamond', Georgia, serif !important;
      color: #1C2539 !important;
    }
    .stat-card:nth-child(1) .stat-num,
    .stat-card:nth-child(2) .stat-num,
    .stat-card:nth-child(3) .stat-num,
    .stat-card:nth-child(4) .stat-num { color: #1C2539 !important; }

    /* Stats section layout */
    #stats .stat-card { background: transparent !important; border: none !important; border-right: 1px solid rgba(0,128,131,0.25) !important; border-radius: 0 !important; transform: none !important; }
    #stats .stat-card:last-child { border-right: none !important; }
    #stats .stat-card:hover { background: rgba(0,128,131,0.08) !important; transform: none !important; }
    #stats .stat-card::before { display: none !important; }
    #stats .stat-label { color: #1C2539 !important; opacity: 0.65; }

    /* Eyebrow — #008083 for good contrast on both white and #BEE7E0 */
    .eyebrow { color: #008083 !important; }
    .eyebrow::before { background: #008083 !important; }

    /* Nav — light theme */
    #nav { background: transparent !important; }
    #nav.scrolled {
      background: rgba(255,255,255,0.95) !important;
      backdrop-filter: blur(20px) !important;
      -webkit-backdrop-filter: blur(20px) !important;
      box-shadow: 0 1px 0 rgba(0,128,131,0.15) !important;
    }
    /* .nav-logo styles are now defined in the main block — kept as flex container */
    /* old nav-logo-dot override removed */
    .nav-links a { color: rgba(28,37,57,0.75) !important; }
    .nav-links a:hover { color: #008083 !important; background: rgba(0,128,131,0.08) !important; }

    /* Mobile nav */
    #mobile-nav a:hover { color: #008083 !important; }
    .hamburger-btn { background: rgba(0,128,131,0.12) !important; }
    .hamburger-btn span { background: #1C2539 !important; }

    /* Hero — teal wash bg, glow removed */
    #hero::after { display: none !important; }
    #hero::before {
      content: '' !important;
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
      opacity: 0.025;
      pointer-events: none;
      z-index: 0;
      mix-blend-mode: overlay;
    }

    /* Noise grain texture for dark/teal sections */
    #process::before,
    #cta::before,
    #stats::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
      opacity: 0.018;
      pointer-events: none;
      z-index: 0;
      mix-blend-mode: overlay;
    }

    /* Nav scrolled logo accent */
    #nav.scrolled .nav-logo .logo-name { color: #1C2539; }
    #nav.scrolled .nav-logo .logo-sub { color: #5D666F; }
    #nav.scrolled .nav-logo .logo-seal { color: #008083; }
    #nav.scrolled .nav-logo .logo-accent { color: #008083; }
    .hero-h1 { color: #1C2539 !important; }
    .hero-h1 .sky { color: #008083 !important; font-style: italic; }
    .hero-sub { color: rgba(28,37,57,0.65) !important; }
    .hero-badge {
      border-radius: 3px !important;
      background: rgba(255,255,255,0.55) !important;
      border: 1px solid rgba(0,128,131,0.3) !important;
      color: #008083 !important;
    }
    .hero-badge::before { background: #008083 !important; }
    .hero-trust { border-top: 1px solid rgba(0,128,131,0.2); padding-top: 24px; }
    .trust-item { color: #1C2539 !important; }
    .trust-item svg { color: #008083 !important; }
    .flag-bubble {
      background: rgba(255,255,255,0.75) !important;
      border: 1.5px solid rgba(0,128,131,0.35) !important;
      box-shadow: 0 4px 14px rgba(0,128,131,0.08) !important;
    }
    .flag-bubble::before {
      background: linear-gradient(135deg, rgba(0,128,131,0.10), rgba(0,179,182,0.04) 60%, transparent) !important;
    }
    .flag-bubble:hover {
      background: rgba(255,255,255,0.95) !important;
      border-color: #008083 !important;
      box-shadow: 0 14px 32px rgba(0,128,131,0.22) !important;
    }
    .flag-bubble .flag-label { color: #1C2539 !important; font-weight: 700 !important; }
    .flag-bubble .flag-count { color: #008083 !important; }
    .flag-bubble .flag-arrow {
      background: rgba(0,128,131,0.10) !important;
      border-color: rgba(0,128,131,0.4) !important;
      color: #008083 !important;
    }
    .flag-bubble:hover .flag-arrow {
      background: #008083 !important;
      border-color: #008083 !important;
      color: #FFFFFF !important;
    }
    .hero-flags-hint {
      color: #FFFFFF !important;
      background: #1C2539 !important;
      border: 1.5px solid #008083 !important;
      padding: 8px 18px !important;
      font-weight: 600 !important;
      box-shadow: 0 6px 20px rgba(0,0,0,0.25), 0 0 0 4px rgba(0,128,131,0.12) !important;
    }
    .hero-flags-hint .hint-dot {
      background: #00E5C5 !important;
      box-shadow: 0 0 0 0 rgba(0,229,197,0.6) !important;
    }
    .hero-flags-hint svg { color: #00E5C5 !important; }
    .btn-ghost { color: #1C2539 !important; border-color: rgba(28,37,57,0.35) !important; }
    .btn-ghost:hover { border-color: #008083 !important; color: #008083 !important; background: rgba(0,128,131,0.06) !important; }

    /* Country chips */
    .country-chip { background: #FFFFFF !important; border: 1px solid #E7E6E6 !important; color: #3F3C39; }
    .country-chip:hover { border-color: #008083 !important; color: #3F3C39 !important; background: #FFFFFF !important; box-shadow: 0 0 0 3px rgba(0,128,131,0.1) !important; transform: translateY(-2px); }

    /* Service cards */
    .svc-usa .service-front, .svc-niw .service-front, .svc-can .service-front,
    .svc-sch .service-front, .svc-aus .service-front, .svc-uk .service-front {
      border-top: 2px solid #008083 !important;
    }
    .service-card-wrap:hover .service-front { box-shadow: 0 8px 32px rgba(0,128,131,0.12) !important; }
    .service-hint { color: #008083 !important; opacity: 0.8; }

    /* Process section on white bg */
    .process-header h2 { color: #1C2539 !important; }
    .process-header p  { color: #5D666F !important; }
    .panel-h2    { color: #1C2539 !important; }
    .panel-desc  { color: #3F3C39 !important; }
    .panel-detail-item { color: #3F3C39 !important; }
    .panel-detail-item::before { background: #008083 !important; }
    .panel-progress-fill { background: linear-gradient(90deg, #008083, #00B3B6) !important; }
    .panel-progress-label { color: #5D666F !important; }
    .panel-watermark { color: transparent !important; -webkit-text-stroke: 1px rgba(0,128,131,0.07) !important; }

    /* Process step nav on white */
    .ps-bead { background: #F5F5F5; border-color: rgba(0,128,131,0.25); color: #5D666F; }
    .ps-title { color: #1C2539 !important; }
    .ps-num   { color: #5D666F !important; }
    .process-step-nav.active .ps-bead { background: #008083; border-color: #008083; color: #FFFFFF; box-shadow: 0 0 0 4px rgba(0,128,131,0.15); }
    .process-step-nav.done  .ps-bead { background: #2E9E6B; border-color: #2E9E6B; color: #FFFFFF; }
    .ps-connector.filled { background: #008083; }

    /* Mobile accordion on teal wash bg */
    .pa-item { background: #FFFFFF !important; border: 1.5px solid rgba(0,128,131,0.18) !important; }
    .pa-item.open { border-color: rgba(0,128,131,0.5) !important; }
    .pa-bead { background: #F0F9F8; color: #5D666F; }
    .pa-item.open .pa-bead { background: #008083 !important; color: #FFFFFF !important; }
    .pa-step-title { color: #1C2539 !important; }
    .pa-step-label, .pa-desc, .pa-detail { color: #5D666F !important; }
    .pa-detail::before { color: #008083 !important; }
    .pa-chevron { color: #5D666F !important; }
    .pa-item.open .pa-chevron { color: #008083 !important; }

    /* Tools section */
    .tab-pill { background: #1C2539 !important; }
    .wiz-tile:hover   { border-color: #008083 !important; background: rgba(0,128,131,0.05) !important; }
    .wiz-tile.selected { border-color: #008083 !important; background: rgba(0,128,131,0.07) !important; }
    .wiz-tile-check  { background: #008083 !important; }
    .wiz-step-item.active .wiz-circle { border-color: #008083 !important; color: #008083 !important; }
    .wiz-step-item.done   .wiz-circle { background: #008083 !important; border-color: #008083 !important; color: #FFFFFF !important; }
    .wiz-step-item.done   .wiz-connector { background: #008083 !important; }
    .wizard-result-title  { font-family: 'Cormorant Garamond', Georgia, serif !important; }
    .wiz-result-cell  { background: #F5F5F5 !important; border: 1px solid rgba(0,128,131,0.2) !important; }
    .pt-fill.avg { background: linear-gradient(90deg, #008083, #00B3B6) !important; }
    .calc-total { background: rgba(0,128,131,0.06) !important; }
    .calc-total td { color: #1C2539 !important; }
    .btn-sky { background: #008083 !important; color: #FFFFFF !important; }
    .btn-sky:hover { background: #0E7073 !important; }

    /* Reviews */
    .review-quote { font-family: 'Cormorant Garamond', serif !important; font-size: 64px !important; color: #008083 !important; opacity: 0.3 !important; }
    .review-card  { position: relative; overflow: hidden; }
    .review-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, #008083, #00B3B6);
    }
    .review-card:hover { box-shadow: 0 8px 32px rgba(0,128,131,0.10) !important; }
    .g-link { color: #FFFFFF !important; }
    .cs-item.open { border-color: rgba(0,128,131,0.5) !important; }
    .cs-item.open .cs-chevron { color: #008083 !important; }
    .cs-section-label { color: #008083 !important; }

    /* Team section — white bg */
    #team .section-header h2 { color: #1C2539 !important; }
    #team .section-header p  { color: #5D666F !important; }
    .team-avatar { background: #BEE7E0 !important; border: 2px solid rgba(0,128,131,0.3) !important; color: #008083 !important; }
    .team-card:hover .team-avatar { box-shadow: 0 0 0 6px rgba(0,128,131,0.12) !important; }
    .team-name  { color: #1C2539 !important; }
    .team-role  { color: #5D666F !important; }
    .team-bio   { color: #5D666F !important; }
    .team-credential { background: rgba(0,128,131,0.08) !important; color: #008083 !important; border: 1px solid rgba(0,128,131,0.25) !important; }
    .oisc-banner { color: #5D666F !important; border-top: 1px solid rgba(0,128,131,0.15) !important; }

    /* FAQ */
    .faq-item.open { border-color: rgba(0,128,131,0.5) !important; }
    .faq-item.open .faq-chevron { color: #008083 !important; }
    .faq-question:hover { background: #F8F8F8 !important; }
    .faq-answer-inner a { color: #008083 !important; }

    /* Resources */
    .res-card  { position: relative; overflow: hidden; min-height: 240px; }
    .res-card:hover { box-shadow: 0 8px 32px rgba(0,128,131,0.10) !important; }
    .res-desc {
      font-size: 13.5px;
      color: #5D666F;
      line-height: 1.6;
      margin: 6px 0 16px;
      flex: 1;
    }
    .res-tag.tag-tips {
      background: rgba(225,56,51,0.08) !important;
      color: #C42B27 !important;
      border-color: rgba(225,56,51,0.25) !important;
    }
    /* "Looking for something specific?" CTA panel */
    .res-cta {
      margin-top: 40px;
      background: linear-gradient(135deg, #1C2539 0%, #162842 100%);
      border-radius: 18px;
      padding: 32px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      box-shadow: 0 8px 28px rgba(0,128,131,0.10);
    }
    .res-cta-text strong {
      display: block;
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 1.4rem;
      font-weight: 600;
      color: #FFFFFF;
      margin-bottom: 6px;
    }
    .res-cta-text p {
      color: rgba(255,255,255,0.7) !important;
      font-size: 14px;
      line-height: 1.6;
      margin: 0;
      max-width: 560px;
    }
    .res-cta .btn-sky {
      flex-shrink: 0;
      padding: 14px 24px !important;
      font-size: 14px !important;
    }
    @media (max-width: 768px) {
      .res-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 22px;
        gap: 18px;
        text-align: left;
      }
      .res-cta .btn-sky { width: 100%; text-align: center; justify-content: center; }
      .res-desc { font-size: 13px; }
    }
    .res-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, #008083, #00B3B6);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s var(--ease-spring);
    }
    .res-card:hover::after { transform: scaleX(1); }
    .res-link { color: #008083 !important; }
    .res-tag { background: rgba(0,128,131,0.08) !important; color: #047C7F !important; border: 1px solid rgba(0,128,131,0.25) !important; }

    /* =============================================
       RES-CARD · expand-in-place guide reader
    ============================================= */
    .res-card { cursor: pointer; }
    .res-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      width: 100%;
    }
    .res-body-inner {
      padding-top: 28px;
      margin-top: 24px;
      border-top: 1.5px solid rgba(0,128,131,0.18);
      color: #2A3550;
      max-width: 760px;
    }
    .res-body-inner h4 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 24px;
      font-weight: 600;
      line-height: 1.25;
      letter-spacing: -0.01em;
      color: #1C2539;
      margin: 28px 0 12px;
    }
    .res-body-inner h4:first-child { margin-top: 0; }
    .res-body-inner p {
      font-size: 16px;
      line-height: 1.75;
      color: #2A3550;
      margin: 0 0 16px;
    }
    .res-body-inner p:last-child { margin-bottom: 0; }
    .res-chev {
      width: 16px;
      height: 16px;
      transition: transform 0.3s ease;
    }
    .res-card.open .res-chev { transform: rotate(180deg); }
    .res-card.open {
      grid-column: 1 / -1;
      background: #FFFFFF;
      border-color: rgba(0,128,131,0.4) !important;
      box-shadow: 0 16px 48px rgba(0,128,131,0.12) !important;
      cursor: default;
    }
    .res-card.open .res-desc { font-size: 15px; color: #4A5568; }
    .res-card.open::after { transform: scaleX(1); height: 3px; }
    @media (max-width: 768px) {
      .res-body-inner { padding-top: 20px; margin-top: 20px; }
      .res-body-inner h4 { font-size: 20px; margin: 20px 0 10px; }
      .res-body-inner p { font-size: 15px; line-height: 1.7; }
    }

    /* CTA section — teal wash bg, dark text */
    #cta h2 { color: #1C2539 !important; }
    #cta .cta-sub { color: rgba(28,37,57,0.65) !important; }
    #cta .cta-phone { color: #008083 !important; }
    #cta .cta-hours { color: rgba(28,37,57,0.45) !important; }
    #cta .btn-ghost { color: #1C2539 !important; border-color: rgba(28,37,57,0.3) !important; }
    #cta .btn-ghost:hover { border-color: #008083 !important; color: #008083 !important; background: rgba(0,128,131,0.06) !important; }
    #cta::before { display: none !important; } /* remove dark radial overlay */

    /* Footer */
    #footer .footer-logo { font-family: 'Cormorant Garamond', Georgia, serif !important; font-size: 20px !important; }
    #footer .footer-col h4 { color: #00B3B6 !important; font-family: var(--font-mono) !important; font-size: 10px !important; text-transform: uppercase !important; letter-spacing: 0.12em !important; }
    #footer h4 { color: #00B3B6 !important; font-family: var(--font-mono) !important; font-size: 10px !important; text-transform: uppercase !important; letter-spacing: 0.12em !important; }
    #footer .footer-tagline { color: rgba(255,255,255,0.35) !important; }
    #footer .footer-text  { color: rgba(255,255,255,0.4) !important; }
    #footer .footer-links a { color: rgba(255,255,255,0.5) !important; }
    #footer .footer-links a:hover { color: #00B3B6 !important; }
    #footer .footer-bottom { color: rgba(255,255,255,0.3) !important; border-top: 1px solid rgba(255,255,255,0.07) !important; }
    #footer .footer-oisc { color: #008083 !important; }
    #footer .footer-contact a { color: #00B3B6 !important; }

    /* Floating scroll-to-top */
    .scroll-top { background: #FFFFFF !important; border: 1px solid rgba(0,128,131,0.3) !important; color: #008083 !important; }
    .scroll-top:hover { background: #BEE7E0 !important; }


    /* Hero background video */
    #hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      z-index: 0;
      pointer-events: none;
      background: #BEE7E0;
    }
    #hero-video-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background:
        linear-gradient(180deg, rgba(190,231,224,0.55) 0%, rgba(190,231,224,0.15) 40%, rgba(190,231,224,0.55) 100%),
        linear-gradient(90deg, rgba(190,231,224,0.35) 0%, rgba(190,231,224,0) 50%, rgba(190,231,224,0.35) 100%);
    }
    /* Make sure hero content sits above video + overlay */
    #hero .hero-content { position: relative; z-index: 2; }
    #hero .hero-corner,
    #hero .hero-watermark { z-index: 2; }
    @media (max-width: 768px) {
      #hero-video-overlay {
        background:
          linear-gradient(180deg, rgba(190,231,224,0.7) 0%, rgba(190,231,224,0.4) 50%, rgba(190,231,224,0.75) 100%);
      }
    }
    /* Flight arc dot styling */
    .flight-dot {
      width: 8px; height: 8px;
      background: #008083;
      border: 2px solid #BEE7E0;
      border-radius: 50%;
      box-shadow: 0 0 8px rgba(0,128,131,0.7), 0 0 16px rgba(0,179,182,0.4);
    }
    .flight-arc {
      stroke: #008083;
      stroke-width: 1.6;
      stroke-dasharray: 4 4;
      fill: none;
      opacity: 0.7;
    }
    /* City pin markers */
    .city-pin {
      width: 10px; height: 10px;
      background: #008083;
      border: 2px solid #fff;
      border-radius: 50%;
      box-shadow: 0 0 0 3px rgba(0,128,131,0.25), 0 2px 6px rgba(0,0,0,0.2);
    }
    .city-pin.origin {
      width: 14px; height: 14px;
      background: #00B3B6;
      box-shadow: 0 0 0 5px rgba(0,179,182,0.3), 0 0 14px rgba(0,179,182,0.6);
      animation: cityPulse 2.4s ease-in-out infinite;
    }
    @keyframes cityPulse {
      0%, 100% { box-shadow: 0 0 0 5px rgba(0,179,182,0.3), 0 0 14px rgba(0,179,182,0.6); }
      50% { box-shadow: 0 0 0 14px rgba(0,179,182,0), 0 0 22px rgba(0,179,182,0.8); }
    }






    /* ── INTRO section ── */
    #intro {
      background: #FFFFFF;
      position: relative;
      overflow: hidden;
    }
    .intro-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-800);
      align-items: center;
    }
    .intro-text h2 em {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-style: italic;
      color: #008083;
      font-weight: 600;
    }
    .intro-lead {
      color: #3F3C39;
      font-size: 1.05rem;
      line-height: 1.75;
      margin: 24px 0 40px;
      max-width: 480px;
    }
    .intro-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-400);
      border-top: 1px solid rgba(0,128,131,0.18);
      padding-top: var(--space-400);
      max-width: 480px;
    }
    .intro-stat-num {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 2rem;
      font-weight: 600;
      color: #1C2539;
      line-height: 1;
      margin-bottom: 6px;
    }
    .intro-stat-label {
      font-family: var(--font-mono);
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #5D666F;
    }
    .intro-image-wrap {
      position: relative;
      min-height: 360px;
      overflow: visible;
    }
    #us-img {
      position: absolute;
      top: 50%;
      right: 0;
      width: 85%;
      max-width: 380px;
      height: auto;
      pointer-events: none;
      transform: translate(110%, -50%) rotate(-14deg);
      transform-origin: center center;
      filter: drop-shadow(0 20px 36px rgba(0,128,131,0.22))
              drop-shadow(0 8px 16px rgba(0,0,0,0.12));
      will-change: transform;
    }
    @media (max-width: 968px) {
      .intro-grid { grid-template-columns: 1fr; gap: var(--space-400); text-align: center; }
      .intro-text { display: flex; flex-direction: column; align-items: center; }
      .intro-lead { margin: 16px auto 28px; text-align: center; }
      .intro-stats { max-width: 100%; }
      .teal-rule { margin-left: auto; margin-right: auto; }
      .intro-image-wrap {
        min-height: 280px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        overflow: visible;
      }
      /* Soft teal glow halo behind the passport */
      .intro-image-wrap::before {
        content: '';
        position: absolute;
        top: 50%; left: 50%;
        width: 260px; height: 260px;
        border-radius: 50%;
        background: radial-gradient(ellipse at center, rgba(0,128,131,0.18) 0%, transparent 70%);
        transform: translate(-50%, -50%) scale(0.6);
        z-index: 0;
        opacity: 0;
        transition: opacity 1.4s ease-out, transform 1.4s ease-out;
      }
      .intro-image-wrap.in-view::before {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
        transition-delay: 0.2s;
      }
      @keyframes passportGlow {
        0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.6); }
        100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
      }

      #us-img {
        position: relative !important;
        top: auto !important; right: auto !important;
        width: 75% !important;
        max-width: 300px !important;
        opacity: 0;
        z-index: 1;
        transform: translateX(130%) rotate(-22deg);
        will-change: transform, opacity;
        filter: drop-shadow(0 14px 28px rgba(0,128,131,0.28))
                drop-shadow(0 6px 14px rgba(0,0,0,0.18));
        transition: filter 0.4s ease;
        /* No CSS animation — JS drives transform from scroll position */
      }
      @keyframes passportSlideIn {
        0%   { opacity: 0; transform: translateX(140%) rotate(-22deg); }
        70%  { opacity: 1; transform: translateX(-6%) rotate(-3deg); }
        100% { opacity: 1; transform: translateX(0) rotate(-8deg); }
      }
      @keyframes passportFloat {
        0%, 100% { transform: translate(0, 0) rotate(-8deg); }
        50%      { transform: translate(0, -10px) rotate(-5deg); }
      }
    }
    /* Pause animation when user prefers reduced motion */
    @media (max-width: 968px) and (prefers-reduced-motion: reduce) {
      #us-img {
        animation: none !important;
        opacity: 1 !important;
        transform: rotate(-8deg) !important;
      }
      .intro-image-wrap::before { animation: none !important; opacity: 1; }
    }


    /* === PROCESS: horizontal cinema-scroll with flight path & parallax === */
    .process-sticky-wrap {
      height: 500vh !important;
      position: relative;
    }
    .process-sticky {
      position: sticky !important;
      top: 0 !important;
      height: 100vh !important;
      width: 100% !important;
      overflow: hidden !important;
      display: block !important;
      background: #162842;
    }
    .process-sticky::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse at 30% 80%, rgba(0,128,131,0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 20%, rgba(0,179,182,0.10) 0%, transparent 55%);
      pointer-events: none; z-index: 0;
    }
    .process-progress-top {
      position: absolute; top: 0; left: 0; right: 0;
      height: 3px;
      background: rgba(255,255,255,0.08);
      z-index: 20;
    }
    .process-progress-fill-top {
      height: 100%; width: 0;
      background: linear-gradient(90deg, #008083, #00B3B6);
      transition: width 0.1s linear;
      box-shadow: 0 0 8px rgba(0,179,182,0.5);
    }
    .process-dots {
      position: absolute; top: 32px; left: 50%;
      transform: translateX(-50%);
      display: flex; gap: 56px;
      z-index: 20;
    }
    .pd {
      display: flex; flex-direction: column; align-items: center; gap: 4px;
      cursor: pointer; opacity: 0.35;
      transition: opacity 0.4s ease;
    }
    .pd.active { opacity: 1; }
    .pd:hover { opacity: 0.8; }
    .pd-num {
      font-family: var(--font-mono);
      font-size: 11px; color: #00B3B6 !important;
      letter-spacing: 0.15em;
    }
    .pd-label {
      font-family: var(--font-mono);
      font-size: 10px; color: rgba(255,255,255,0.65);
      text-transform: uppercase; letter-spacing: 0.12em;
    }
    .flight-overlay {
      position: absolute;
      top: 90px; left: 0; right: 0;
      width: 100%; height: 200px;
      pointer-events: none; z-index: 10;
    }
    .flight-pin {
      fill: rgba(0,128,131,0.5);
      stroke: #00B3B6; stroke-width: 1.5;
      transition: fill 0.3s, r 0.3s;
    }
    .flight-pin.reached {
      fill: #00B3B6;
      r: 9;
      filter: drop-shadow(0 0 6px rgba(0,179,182,0.7));
    }
    #airplane {
      transition: none;
      filter: drop-shadow(0 0 6px rgba(0,179,182,0.6));
    }
    .process-track {
      display: flex;
      width: 400vw;
      height: 100vh;
      will-change: transform;
      position: relative; z-index: 1;
    }
    .process-panel-h {
      width: 100vw; height: 100vh;
      flex-shrink: 0;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 160px var(--space-800) 80px;
    }
    .panel-bg-num {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(280px, 42vw, 640px);
      font-weight: 700;
      color: transparent;
      -webkit-text-stroke: 1.5px rgba(0,179,182,0.14);
      pointer-events: none;
      user-select: none;
      line-height: 1; letter-spacing: -0.05em;
      z-index: 0; will-change: transform;
    }
    .panel-illustration {
      position: absolute;
      top: 50%; right: 8%;
      transform: translateY(-50%);
      width: 220px; height: 220px;
      opacity: 0.55; pointer-events: none;
      z-index: 1; will-change: transform;
    }
    .panel-illustration svg { width: 100%; height: 100%; }
    .process-panel-h .panel-content {
      position: relative; z-index: 2;
      max-width: 640px;
      width: 100%;
    }
    .process-panel-h .panel-eyebrow { display: inline-flex; color: #00B3B6 !important; }
    .process-panel-h .panel-eyebrow::before { background: #00B3B6 !important; }
    .process-panel-h .panel-h2 {
      font-family: 'Cormorant Garamond', Georgia, serif !important;
      font-size: clamp(2rem, 4.5vw, 3.6rem) !important;
      font-weight: 600 !important;
      color: #FFFFFF !important;
      margin: 18px 0 24px;
      line-height: 1.1;
    }
    .process-panel-h .panel-desc {
      color: rgba(255,255,255,0.7) !important;
      font-size: 1.05rem; line-height: 1.7;
      margin-bottom: 32px; max-width: 540px;
    }
    .process-panel-h .panel-details {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 12px; margin-bottom: 36px; max-width: 540px;
    }
    .process-panel-h .panel-detail-item {
      color: rgba(255,255,255,0.7) !important;
      font-size: 14px;
      display: flex; align-items: center; gap: 10px;
    }
    .process-panel-h .panel-detail-item::before {
      content: ''; width: 6px; height: 6px;
      background: #00B3B6 !important; border-radius: 50%;
      flex-shrink: 0;
    }
/* cinema-scroll now ENABLED on mobile */

    /* ── Global safety net: dark text on all light sections ── */
    #hero .hero-h1,
    #services .section-header h2,
    #process .section-header h2, .process-header h2,
    #tools .section-header h2,
    #reviews .section-header h2,
    #team .section-header h2,
    #faq .section-header h2,
    #resources .section-header h2,
    #cta .cta-h2 { color: #1C2539 !important; }

    #hero p, #services p, #process p, #tools p,
    #reviews p, #team p, #faq p, #resources p, #cta p {
      color: #3F3C39;
    }

    /* Stat card on teal wash — ensure dark text */
    #stats .stat-num { color: #1C2539 !important; }
    #stats .stat-label { color: rgba(28,37,57,0.6) !important; opacity: 1 !important; }

    /* Service card fronts — allow landmark SVG positioning */
    .service-front { position: relative !important; overflow: hidden !important; }

    /* Stat cards — allow decorative SVG positioning */
    #stats .stat-card { position: relative !important; overflow: hidden !important; }

    /* Hero content layers */
    .hero-content { position: relative; z-index: 2; }

    /* Animated travelling dot */
    @keyframes pulse-travel {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.6; }
    }

    /* Nav scrolled logo accent */
    #nav.scrolled .nav-logo {
      padding-left: 14px;
      border-left: 2px solid #008083;
      transition: all 0.3s ease;
    }

    /* Team avatar hover glow */
    .team-card:hover .team-avatar {
      transform: scale(1.06);
      box-shadow: 0 0 0 4px rgba(0,128,131,0.2), 0 0 0 8px rgba(0,128,131,0.08) !important;
    }

    /* Flag images in chips/bubbles */
    .flag-bubble img, .country-chip img, .wiz-tile img {
      border-radius: 2px;
      object-fit: cover;
      flex-shrink: 0;
      box-shadow: 0 1px 3px rgba(0,0,0,0.2);
      display: inline-block;
      vertical-align: middle;
    }

    /* Red urgency badge */
    .badge-urgent {
      background: #FFEEF0;
      color: #C42B27;
      border: 1px solid rgba(225,56,51,0.25);
      font-family: var(--font-mono);
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 3px 10px;
      border-radius: 999px;
    }
  
    /* === Process cinema-scroll: mobile-friendly tuning === */
    @media (max-width: 768px) {
      .process-sticky-wrap { height: 420vh !important; }
      .process-sticky { background: #162842; }
      .process-dots {
        top: 18px !important;
        gap: 22px !important;
      }
      .pd-num { font-size: 9px !important; letter-spacing: 0.12em !important; }
      .pd-label { font-size: 8px !important; }
      .flight-overlay {
        top: 70px !important;
        height: 120px !important;
      }
      .process-panel-h {
        padding: 200px var(--space-300) 60px !important;
        align-items: flex-start !important;
      }
      .panel-bg-num {
        font-size: clamp(180px, 65vw, 320px) !important;
        opacity: 0.7;
      }
      .panel-illustration {
        width: 120px !important;
        height: 120px !important;
        right: 6% !important;
        top: 38% !important;
        opacity: 0.35 !important;
      }
      .process-panel-h .panel-content {
        max-width: 100% !important;
        padding: 0 !important;
      }
      .process-panel-h .panel-h2 {
        font-size: clamp(1.6rem, 7vw, 2.4rem) !important;
        margin: 14px 0 18px !important;
      }
      .process-panel-h .panel-desc {
        font-size: 0.95rem !important;
        margin-bottom: 22px !important;
      }
      .process-panel-h .panel-details {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
        margin-bottom: 24px !important;
      }
      .process-panel-h .panel-detail-item {
        font-size: 13px !important;
      }
    }
    @media (max-width: 480px) {
      .process-dots { gap: 16px !important; }
      .pd-label { display: none !important; }
      .process-panel-h { padding-top: 160px !important; }
    }

  
    /* ============================================================
       PROCESS — MOBILE: native swipe carousel (replaces broken
       cinema-scroll on phones). Smooth touch UX, no JS glitches.
    ============================================================ */
    @media (max-width: 768px) {
      /* Convert sticky-wrap into a normal vertical flow on mobile */
      .process-sticky-wrap {
        height: auto !important;
        position: relative !important;
        padding: 16px 0 32px;
      }
      .process-sticky {
        position: relative !important;
        top: auto !important;
        height: auto !important;
        width: 100% !important;
        overflow: visible !important;
        background: #162842;
        padding: 32px 0 24px;
      }
      .process-sticky::before { display: none !important; }

      /* Flight overlay scaled & repositioned for mobile */
      .flight-overlay {
        position: absolute !important;
        top: 56px !important;
        height: 90px !important;
        z-index: 5;
      }
      .flight-pin { r: 5 !important; }
      .flight-pin.reached { r: 7 !important; }
      #airplane g g path { stroke-width: 0.6 !important; }

      /* Progress bar moves to bottom of dots row on mobile */
      .process-progress-top {
        top: auto !important; bottom: -16px !important;
        height: 2px !important;
      }

      /* Dots become a normal centered row */
      .process-dots {
        position: relative !important;
        top: auto !important; left: auto !important;
        transform: none !important;
        gap: 12px !important;
        justify-content: center;
        margin-bottom: 20px;
        padding: 0 16px;
      }
      .pd {
        flex-direction: row !important;
        gap: 6px !important;
        padding: 6px 12px;
        border-radius: 999px;
        background: rgba(0,128,131,0.12);
        opacity: 0.55 !important;
        transition: all 0.25s;
      }
      .pd.active {
        opacity: 1 !important;
        background: #008083;
      }
      .pd-num { font-size: 10px !important; }
      .pd-label { font-size: 10px !important; }
      .pd.active .pd-num,
      .pd.active .pd-label { color: #FFFFFF !important; }

      /* Convert track into horizontal scroll-snap carousel */
      .process-track {
        display: flex !important;
        width: 100% !important;
        height: auto !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        transform: none !important;
        will-change: scroll-position !important;
      }
      .process-track::-webkit-scrollbar { display: none !important; }

      .process-panel-h {
        width: 100vw !important;
        height: auto !important;
        min-height: 520px !important;
        flex-shrink: 0 !important;
        scroll-snap-align: center !important;
        scroll-snap-stop: always !important;
        padding: 130px 24px 32px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        will-change: transform;
      }
      /* Inner content needs an extra wrapper-less transform for parallax */
      .process-panel-h .panel-content { will-change: transform, opacity; }
      .process-panel-h .panel-bg-num { will-change: transform; }
      .process-panel-h .panel-illustration { will-change: transform; }
      /* Illustration: top-right, animated via JS for parallax */
      .panel-illustration {
        position: absolute !important;
        top: 24px !important; right: 20px !important;
        width: 70px !important; height: 70px !important;
        opacity: 0.45 !important;
      }
      .panel-bg-num {
        font-size: clamp(160px, 55vw, 280px) !important;
        opacity: 0.55 !important;
        /* JS will set transform for parallax */
      }
      .process-panel-h .panel-content {
        max-width: 100% !important;
        padding: 0 !important;
        opacity: 1 !important;
        transform: none !important;
      }
      .process-panel-h .panel-h2 {
        font-size: 1.7rem !important;
        margin: 12px 0 14px !important;
      }
      .process-panel-h .panel-desc {
        font-size: 0.95rem !important;
        margin-bottom: 18px !important;
      }
      .process-panel-h .panel-details {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
        margin-bottom: 22px !important;
      }
      .process-panel-h .panel-detail-item {
        font-size: 13px !important;
      }
      .process-panel-h .panel-eyebrow {
        font-size: 10px !important;
      }

      /* Swipe hint */
      .process-sticky-wrap::after {
        content: "← swipe →";
        display: block;
        text-align: center;
        color: rgba(255,255,255,0.4);
        font-family: var(--font-mono);
        font-size: 10px;
        letter-spacing: 0.15em;
        margin-top: 16px;
        text-transform: uppercase;
      }
    }

  
    /* ============================================================
       TOOLS — mobile improvements: bigger tap targets, better
       segmented tabs, larger inputs, easier wizard tiles.
    ============================================================ */
    @media (max-width: 768px) {
      /* Segmented tab control look on mobile */
      .tools-tabs {
        display: flex !important;
        flex-direction: column !important;
        background: var(--bg-white) !important;
        border: 1.5px solid rgba(0,128,131,0.18) !important;
        border-radius: 14px !important;
        padding: 6px !important;
        gap: 4px !important;
        width: 100%;
      }
      .tool-tab-btn {
        width: 100% !important;
        text-align: center !important;
        padding: 16px 18px !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        border-radius: 10px !important;
        min-height: 52px !important;
        background: transparent !important;
        border: none !important;
        color: #5D666F !important;
        position: relative;
      }
      .tool-tab-btn.active {
        background: #008083 !important;
        color: #FFFFFF !important;
        border: none !important;
        box-shadow: 0 4px 14px rgba(0,128,131,0.25);
      }
      .tab-pill { display: none !important; }

      /* Tool panels: more breathing room on mobile */
      .tool-panel {
        padding: 24px !important;
        border-radius: 14px !important;
      }

      /* Wizard tiles: full-width, 56px tap target */
      .wizard-opts {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        margin-bottom: 24px !important;
      }
      .wiz-tile {
        min-height: 56px !important;
        padding: 14px 16px !important;
        font-size: 15px !important;
        gap: 12px !important;
      }
      .wiz-tile-icon { font-size: 22px !important; }
      .wiz-tile img { width: 28px !important; height: 18px !important; }

      /* Wizard step circles — make them tappable */
      .wizard-step-track {
        margin-bottom: 24px !important;
      }
      .wiz-circle {
        width: 36px !important; height: 36px !important;
        font-size: 14px !important;
      }

      .wizard-q {
        font-size: 1.05rem !important;
        margin-bottom: 18px !important;
      }

      /* Buttons inside tool panels need to be wide and tappable */
      .tool-panel .btn-sky,
      .tool-panel .btn-wa {
        width: 100% !important;
        padding: 16px !important;
        font-size: 15px !important;
        min-height: 52px !important;
        margin-top: 12px !important;
      }

      /* Processing times select */
      .pt-select {
        padding: 16px 20px !important;
        font-size: 16px !important;
        min-height: 52px !important;
        border-radius: 12px !important;
        margin-bottom: 28px !important;
      }
      .pt-row { margin-bottom: 20px !important; }
      .pt-row-label { font-size: 14px !important; }

      /* Cost calculator inputs */
      .calc-inputs {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-bottom: 24px !important;
      }
      .calc-input {
        padding: 16px 20px !important;
        font-size: 16px !important;
        min-height: 52px !important;
        border-radius: 12px !important;
      }
      .calc-table th, .calc-table td {
        padding: 14px 8px !important;
        font-size: 13px !important;
      }
      .calc-total td { font-size: 15px !important; }
      .calc-total td.val { font-size: 17px !important; }

      /* Wizard result on mobile */
      .wizard-result-title {
        font-size: 1.6rem !important;
        margin-bottom: 20px !important;
      }
      .wiz-result-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        margin-bottom: 24px !important;
      }
      .wiz-result-cell {
        padding: 16px !important;
        text-align: center;
      }
    }

  
    /* ============================================================
       HERO — mobile polish
    ============================================================ */
    @media (max-width: 768px) {
      #hero {
        padding: 88px 20px 48px !important;
        min-height: auto !important;
      }
      .hero-content { padding: 0; }
      .hero-badge {
        font-size: 9px !important;
        padding: 5px 12px !important;
        margin-bottom: 24px !important;
        letter-spacing: 0.08em !important;
      }
      .hero-h1 {
        font-size: clamp(2.2rem, 9vw, 3rem) !important;
        margin-bottom: 18px !important;
        line-height: 1.05 !important;
      }
      .hero-sub {
        font-size: 1rem !important;
        margin: 0 auto 28px !important;
        max-width: 95% !important;
        line-height: 1.55 !important;
      }
      .hero-ctas {
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
        margin-bottom: 36px !important;
      }
      .hero-ctas .btn {
        width: 100% !important;
        padding: 16px !important;
        font-size: 15px !important;
        min-height: 52px !important;
      }
      .hero-flags-hint {
        font-size: 10px !important;
        letter-spacing: 0.14em !important;
        padding: 6px 14px !important;
        margin: 12px auto 14px !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.18), 0 0 0 3px rgba(0,128,131,0.10) !important;
        max-width: calc(100% - 32px);
      }
      .hero-flags-hint svg { width: 12px !important; height: 12px !important; }
      .hero-flags-hint .hint-dot { width: 5px !important; height: 5px !important; }
      .hero-flags {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        margin: 0 auto 28px !important;
        padding: 0 20px;
        max-width: 340px;
      }
      .flag-bubble {
        padding: 14px 12px !important;
        gap: 6px !important;
        min-width: 0;
      }
      .flag-bubble img { width: 30px !important; height: 20px !important; }
      .flag-bubble .flag-label { font-size: 11px !important; }
      .flag-bubble .flag-count { font-size: 11px !important; white-space: nowrap; }
      .flag-arrow {
        width: 20px !important;
        height: 20px !important;
        margin-top: 4px !important;
      }
      .flag-arrow svg { width: 10px !important; height: 10px !important; }
      .hero-trust {
        gap: 14px 18px !important;
        padding-top: 20px !important;
        margin-top: 28px !important;
      }
      .trust-item { font-size: 12px !important; gap: 6px !important; }
      .trust-item svg { width: 14px !important; height: 14px !important; }
      /* Hide corner ornaments on small phones — they crowd the layout */
      #hero > div[style*="border-top"][style*="border-left"],
      #hero > div[style*="border-top"][style*="border-right"],
      #hero > div[style*="border-bottom"][style*="border-left"],
      #hero > div[style*="border-bottom"][style*="border-right"] {
        display: none !important;
      }
      /* Hide hero watermark "98" on mobile */
      #hero > div[style*="font-size:clamp(180px"] { display: none !important; }
    }

  
    /* ============================================================
       GENERAL MOBILE POLISH
    ============================================================ */
    @media (max-width: 768px) {
      /* Tighten section padding everywhere */
      section, .section-pad {
        padding-top: 56px !important;
        padding-bottom: 56px !important;
      }
      .container { padding: 0 20px !important; }

      /* Section headers */
      .section-header h2 {
        font-size: clamp(1.7rem, 7vw, 2.4rem) !important;
        line-height: 1.15 !important;
      }
      .section-header p {
        font-size: 0.95rem !important;
        padding: 0 8px;
      }
      .section-header { margin-bottom: 32px !important; }

      /* Service cards: full width, tap-friendly */
      .services-grid { gap: 14px !important; }
      .service-card-wrap {
        height: 280px !important;
        border-radius: 14px !important;
      }
      .service-h3 { font-size: 1.25rem !important; }
      .service-desc { font-size: 14px !important; line-height: 1.55 !important; }
      .service-hint { font-size: 11px !important; }

      /* Country chips wrap nicely */
      .country-grid { gap: 8px !important; }
      .country-chip {
        padding: 8px 12px !important;
        font-size: 12px !important;
      }
      .country-chip img { width: 18px !important; height: 12px !important; }

      /* Stats: 2x2 grid with breathing room */
      .stats-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 14px !important;
      }
      #stats .stat-card {
        border-right: 1px solid rgba(0,128,131,0.15) !important;
        padding: 24px 12px !important;
      }
      #stats .stat-card:nth-child(2),
      #stats .stat-card:nth-child(4) { border-right: none !important; }
      #stats .stat-card:nth-child(1),
      #stats .stat-card:nth-child(2) {
        border-bottom: 1px solid rgba(0,128,131,0.15);
      }
      .stat-num { font-size: 2.3rem !important; margin-bottom: 4px !important; }
      .stat-label { font-size: 10px !important; }

      /* Reviews */
      .reviews-grid { gap: 14px !important; }
      .review-card { padding: 24px 20px !important; border-radius: 14px !important; }
      .review-text { font-size: 14px !important; line-height: 1.6 !important; }
      .google-badge {
        padding: 14px 20px !important;
        gap: 12px !important;
      }
      .g-score { font-size: 16px !important; }
      .g-reviews { font-size: 12px !important; }

      /* Case studies */
      .cs-trigger { font-size: 14px !important; padding: 16px 18px !important; }
      .cs-body-inner { padding: 0 18px 18px !important; }

      /* FAQ */
      .faq-question {
        font-size: 14px !important;
        padding: 18px 18px !important;
        min-height: 56px;
      }
      .faq-answer-inner { padding: 0 18px 18px !important; font-size: 14px !important; }

      /* Team */
      .team-grid { gap: 24px !important; }
      .team-card { width: 100% !important; max-width: 320px; }
      .team-avatar { width: 80px !important; height: 80px !important; font-size: 22px !important; }
      .team-name { font-size: 1.1rem !important; }

      /* OISC banner */
      .oisc-banner { font-size: 13px !important; }
      .oisc-badge { font-size: 13px !important; padding: 10px 18px !important; }

      /* Resources */
      .res-grid { gap: 12px !important; }
      .res-card { padding: 20px !important; }
      .res-title { font-size: 15px !important; line-height: 1.4 !important; }

      /* CTA */
      .cta-h2 { font-size: clamp(1.9rem, 8vw, 2.6rem) !important; }
      .cta-sub { font-size: 0.95rem !important; padding: 0 8px; }
      .cta-btns { width: 100%; gap: 10px !important; }
      .cta-btns .btn {
        width: 100% !important;
        padding: 16px !important;
        min-height: 52px;
      }

      /* Footer */
      .footer-grid { gap: 28px !important; }
      .footer-col h4, #footer h4 { margin-bottom: 14px !important; }
      .footer-links li { margin-bottom: 10px !important; }
      .footer-contact p { margin-bottom: 14px !important; font-size: 13px !important; }
      .footer-bottom { font-size: 12px !important; gap: 12px !important; }

      /* Floating WhatsApp — slightly smaller, more out of the way */
      .floating-wa {
        width: 52px !important; height: 52px !important;
        bottom: 16px !important; right: 16px !important;
      }
      .floating-wa svg { width: 24px !important; height: 24px !important; }
      .scroll-top {
        width: 38px !important; height: 38px !important;
        bottom: 78px !important; right: 16px !important;
      }

      /* Marquee shrinks slightly */
      .marquee-item { font-size: 11px !important; }
    }
    @media (max-width: 400px) {
      .hero-h1 { font-size: 1.95rem !important; }
      .hero-sub { font-size: 0.92rem !important; }
      .section-header h2 { font-size: 1.65rem !important; }
      .stats-grid { gap: 10px !important; }
      .stat-num { font-size: 2rem !important; }
    }
    /* === New Google Reviews badge styles === */
    .google-badge .g-brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .g-logo-svg { width: 22px; height: 22px; flex-shrink: 0; }
    .g-brand-name {
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 700;
      color: #1C2539;
      letter-spacing: -0.01em;
    }
    .g-rating {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0 18px;
      border-left: 1px solid rgba(0,128,131,0.18);
      border-right: 1px solid rgba(0,128,131,0.18);
    }
    .g-score {
      font-family: 'Cormorant Garamond', Georgia, serif !important;
      font-size: 22px !important;
      font-weight: 700 !important;
      color: #1C2539 !important;
      line-height: 1;
    }
    .g-stars { display: flex; gap: 2px; }
    .g-stars svg { width: 16px; height: 16px; fill: #FBBC05; }
    .g-count {
      font-family: var(--font-mono);
      font-size: 11px;
      color: #5D666F;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      white-space: nowrap;
    }

    @media (max-width: 768px) {
      .google-badge {
        flex-direction: column;
        gap: 14px !important;
        padding: 20px 22px !important;
        border-radius: 16px !important;
      }
      .google-badge .g-rating {
        padding: 12px 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(0,128,131,0.15);
        border-bottom: 1px solid rgba(0,128,131,0.15);
        width: 100%;
        justify-content: center;
      }
      .g-link { width: 100%; justify-content: center; padding: 12px 18px; font-size: 14px; }
    }

  
    /* Failsafe: any .reveal element not yet .visible after 3s gets shown. */
    @keyframes revealFailsafe { to { opacity: 1; transform: translateY(0); } }
    .reveal { animation: revealFailsafe 0.001s 3s forwards; }

    /* Footer logo with passport seal */
    .footer-logo {
      display: inline-flex;
      flex-direction: row;
      align-items: center;
      gap: 14px;
      margin-bottom: var(--space-200);
    }
    .footer-logo .logo-seal { display: block; flex-shrink: 0; }
    .footer-logo-text {
      display: flex;
      flex-direction: column;
      gap: 3px;
      line-height: 1;
    }
    .footer-logo-name {
      font-family: 'Cormorant Garamond', Georgia, serif !important;
      font-size: 26px !important;
      font-weight: 600;
      color: #FFFFFF;
      letter-spacing: -0.01em;
    }
    .footer-logo-sub {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-left: 2px;
    }

  
    @media (max-width: 768px) {
      .nav-logo .logo-name { font-size: 18px !important; }
      .nav-logo .logo-sub { font-size: 7.5px !important; letter-spacing: 0.28em !important; }
      .nav-logo .logo-seal { width: 36px !important; height: 36px !important; }
      .footer-logo-name { font-size: 22px !important; }
      .footer-logo-sub { font-size: 9px !important; }
      .footer-logo .logo-seal { width: 48px !important; height: 48px !important; }
    }

    /* =============================================
       EUROPE SETTLEMENT SPOTLIGHT
    ============================================= */
    #europe-spotlight {
      position: relative;
      background:
        radial-gradient(ellipse at 30% 20%, rgba(0,179,182,0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 80%, rgba(0,128,131,0.10) 0%, transparent 55%),
        linear-gradient(180deg, #0F1A2E 0%, #142440 100%);
      overflow: hidden;
    }
    .es-bg-map {
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0.35;
      z-index: 0;
    }
    .es-bg-map svg {
      width: 100%;
      height: 100%;
      display: block;
    }
    #europe-spotlight .container { position: relative; z-index: 1; }

    .es-content {
      max-width: 1180px;
      margin: 0 auto;
    }
    .es-header {
      text-align: center;
      max-width: 780px;
      margin: 0 auto 56px;
    }
    .es-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-mono);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: #7FE0DE;
      padding: 6px 14px;
      border: 1px solid rgba(0,179,182,0.35);
      border-radius: var(--radius-pill);
      background: rgba(0,179,182,0.08);
      margin-bottom: 24px;
    }
    .es-eyebrow-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #00E5C5;
      box-shadow: 0 0 0 0 rgba(0,229,197,0.55);
      animation: es-dot-pulse 1.8s ease-out infinite;
    }
    @keyframes es-dot-pulse {
      0%   { box-shadow: 0 0 0 0 rgba(0,229,197,0.55); }
      70%  { box-shadow: 0 0 0 8px rgba(0,229,197,0); }
      100% { box-shadow: 0 0 0 0 rgba(0,229,197,0); }
    }
    .es-h2 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-weight: 600;
      font-size: clamp(2.4rem, 5vw, 3.6rem);
      line-height: 1.12;
      letter-spacing: -0.02em;
      color: #FFFFFF;
      margin-bottom: 20px;
    }
    .es-em {
      color: #00E5C5;
      font-style: italic;
      font-weight: 500;
    }
    #europe-spotlight .teal-rule {
      width: 60px;
      height: 2px;
      background: linear-gradient(90deg, #00B3B6, #00E5C5);
      margin: 0 auto 24px;
    }
    .es-lead {
      font-size: 1.05rem;
      line-height: 1.75;
      color: rgba(255,255,255,0.78);
      margin-bottom: 28px;
    }
    .es-signals {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px 18px;
    }
    .es-signal {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-family: var(--font-mono);
      font-size: 11.5px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.72);
    }
    .es-signal svg { width: 14px; height: 14px; color: #00E5C5; }

    .es-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
      margin-bottom: 48px;
    }
    .es-card {
      position: relative;
      background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
      border: 1.5px solid rgba(0,179,182,0.28);
      border-radius: 20px;
      padding: 32px 32px 28px;
      backdrop-filter: blur(6px);
      transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
      display: flex;
      flex-direction: column;
    }
    .es-card::before {
      content: '';
      position: absolute;
      top: 0; left: 24px; right: 24px;
      height: 2px;
      background: linear-gradient(90deg, transparent, #00E5C5, transparent);
      opacity: 0.55;
    }
    .es-card:hover {
      border-color: rgba(0,229,197,0.55);
      transform: translateY(-4px);
      box-shadow: 0 20px 44px rgba(0,229,197,0.14);
    }
    .es-card-head {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 22px;
    }
    .es-flag { flex-shrink: 0; }
    .es-card-badge {
      display: inline-block;
      font-family: var(--font-mono);
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #00E5C5;
      padding: 3px 10px;
      border: 1px solid rgba(0,229,197,0.35);
      border-radius: var(--radius-pill);
      background: rgba(0,229,197,0.08);
      margin-bottom: 8px;
    }
    .es-card-h3 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-weight: 600;
      font-size: 1.75rem;
      line-height: 1.15;
      color: #FFFFFF;
      letter-spacing: -0.01em;
      margin-bottom: 3px;
    }
    .es-card-native {
      font-family: var(--font-mono);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: rgba(127,224,222,0.75);
    }
    .es-card-desc {
      color: rgba(255,255,255,0.72);
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .es-card-list {
      list-style: none;
      padding: 0;
      margin: 0 0 24px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .es-card-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: rgba(255,255,255,0.88);
      font-size: 14.5px;
      line-height: 1.55;
    }
    .es-check {
      flex-shrink: 0;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: rgba(0,229,197,0.15);
      border: 1px solid rgba(0,229,197,0.5);
      margin-top: 2px;
      position: relative;
    }
    .es-check::after {
      content: '';
      position: absolute;
      left: 5px; top: 3px;
      width: 5px; height: 9px;
      border: solid #00E5C5;
      border-width: 0 2px 2px 0;
      transform: rotate(45deg);
    }
    .es-card-foot {
      margin-top: auto;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.09);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }
    .es-card-meta {
      display: flex;
      gap: 22px;
    }
    .es-card-meta > div {
      font-family: var(--font-mono);
      font-size: 10.5px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.55);
    }
    .es-meta-num {
      display: block;
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-weight: 600;
      font-size: 1.5rem;
      color: #00E5C5;
      letter-spacing: -0.02em;
      text-transform: none;
      line-height: 1;
      margin-bottom: 4px;
    }
    .es-card-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #00B3B6;
      color: #0F1A2E;
      font-family: var(--font-sans);
      font-weight: 600;
      font-size: 13.5px;
      padding: 11px 18px;
      border-radius: var(--radius-pill);
      transition: background 0.25s, transform 0.25s;
      text-decoration: none;
    }
    .es-card-btn:hover {
      background: #00E5C5;
      transform: translateX(2px);
    }
    .es-card-btn svg { width: 15px; height: 15px; transition: transform 0.25s; }
    .es-card-btn:hover svg { transform: translateX(3px); }

    .es-cta-strip {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      padding: 28px 36px;
      background: linear-gradient(90deg, rgba(0,179,182,0.14) 0%, rgba(0,229,197,0.06) 100%);
      border: 1px solid rgba(0,229,197,0.32);
      border-radius: 18px;
      flex-wrap: wrap;
    }
    .es-cta-copy { flex: 1; min-width: 280px; }
    .es-cta-copy strong {
      display: block;
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-weight: 600;
      font-size: 1.5rem;
      color: #FFFFFF;
      margin-bottom: 6px;
    }
    .es-cta-copy p {
      color: rgba(255,255,255,0.72);
      font-size: 14.5px;
      line-height: 1.6;
      margin: 0;
    }
    .es-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #25D366;
      color: #FFFFFF;
      font-weight: 600;
      font-size: 14.5px;
      padding: 14px 24px;
      border-radius: var(--radius-pill);
      box-shadow: 0 10px 26px rgba(37,211,102,0.35);
      transition: transform 0.25s, box-shadow 0.25s;
      text-decoration: none;
      flex-shrink: 0;
    }
    .es-cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 32px rgba(37,211,102,0.5);
    }

    @media (max-width: 900px) {
      .es-grid { grid-template-columns: 1fr; gap: 20px; }
      .es-card { padding: 26px 22px 22px; }
      .es-card-h3 { font-size: 1.5rem; }
      .es-cta-strip { padding: 22px 22px; gap: 18px; }
      .es-cta-btn { width: 100%; justify-content: center; }
      .es-signals { gap: 8px 14px; }
      .es-header { margin-bottom: 36px !important; }
    }
    @media (max-width: 560px) {
      #europe-spotlight { padding: 44px 0 !important; }
      #europe-spotlight .container { padding: 0 16px !important; }
      .es-header { margin-bottom: 28px !important; max-width: 100% !important; }
      .es-eyebrow {
        font-size: 10px !important;
        letter-spacing: 0.14em !important;
        padding: 5px 12px !important;
        margin-bottom: 18px !important;
      }
      .es-h2 {
        font-size: 1.75rem !important;
        line-height: 1.18 !important;
        margin-bottom: 16px !important;
      }
      .es-h2 br { display: none; }
      #europe-spotlight .teal-rule { margin-bottom: 18px !important; width: 40px; }
      .es-lead {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
      }
      .es-signals { gap: 6px 12px !important; }
      .es-signal { font-size: 10.5px !important; }
      .es-signal svg { width: 12px !important; height: 12px !important; }

      .es-grid { gap: 16px !important; margin-bottom: 28px !important; }
      .es-card {
        padding: 22px 20px 20px !important;
        border-radius: 16px !important;
      }
      .es-card-head {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
        margin-bottom: 16px !important;
      }
      .es-flag img { width: 44px !important; height: 28px !important; }
      .es-card-badge {
        font-size: 9.5px !important;
        padding: 3px 10px !important;
        margin-bottom: 8px !important;
        letter-spacing: 0.1em !important;
      }
      .es-card-h3 {
        font-size: 1.4rem !important;
        line-height: 1.2 !important;
        margin-bottom: 4px !important;
      }
      .es-card-native {
        font-size: 10px !important;
        display: block !important;
        letter-spacing: 0.12em !important;
      }
      .es-card-desc {
        font-size: 14px !important;
        line-height: 1.65 !important;
        margin-bottom: 18px !important;
      }
      .es-card-list { margin-bottom: 22px !important; gap: 10px !important; }
      .es-card-list li {
        font-size: 13.5px !important;
        line-height: 1.55 !important;
        align-items: center !important;
      }
      .es-check {
        width: 14px !important;
        height: 14px !important;
        background: transparent !important;
        border: none !important;
        margin-top: 0 !important;
      }
      .es-check::after {
        left: 2px !important;
        top: 1px !important;
        width: 5px !important;
        height: 9px !important;
        border-width: 0 1.8px 1.8px 0 !important;
        border-color: #00E5C5 !important;
      }

      .es-card-foot {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 16px !important;
        padding-top: 16px !important;
      }
      .es-card-meta { gap: 18px !important; }
      .es-card-meta > div { font-size: 9.5px !important; }
      .es-meta-num { font-size: 1.3rem !important; margin-bottom: 3px !important; }
      .es-card-btn {
        justify-content: center !important;
        font-size: 13px !important;
        padding: 12px 16px !important;
      }

      .es-cta-strip {
        padding: 20px 18px !important;
        gap: 16px !important;
        border-radius: 14px !important;
      }
      .es-cta-copy strong { font-size: 1.25rem !important; }
      .es-cta-copy p { font-size: 13.5px !important; }
      .es-cta-btn { font-size: 13.5px !important; padding: 12px 20px !important; }
    }

