
    /* ============================================================
       CSS CUSTOM PROPERTIES — DESIGN TOKENS
    ============================================================ */
    :root {
      /* Parent brand dark theme */
      --black:       #0a0a0a;
      --black-mid:   #111111;
      --card-bg:     #141414;
      --card-bg-2:   #1a1a1a;
      --dark-border: rgba(255,255,255,0.07);
      --dark-border-hover: rgba(255,255,255,0.15);

      /* Kept for backwards compat — now mapped to dark */
      --navy:        #0a0a0a;
      --navy-deep:   #060606;
      --navy-footer: #050505;

      /* Primary gradient (purple→blue, matches parent) */
      --grad:        linear-gradient(135deg, #7d328a 0%, #324c9c 100%);
      --grad-hover:  linear-gradient(135deg, #8f3d9e 0%, #3a5ab0 100%);
      --purple:      #7d328a;
      --blue-accent: #324c9c;

      /* Publishing teal accent */
      --teal:        #40B497;
      --teal-20:     rgba(64, 180, 151, 0.15);
      --teal-30:     rgba(64, 180, 151, 0.25);

      /* Text */
      --white:       #FFFFFF;
      --text-body:   #cccccc;
      --text-muted:  #888888;
      --muted:       #888888;

      /* Legacy light — now dark equivalents */
      --gray-light:  #161616;
      --border:      rgba(255,255,255,0.07);

      --max-w:       1200px;
      --pad-x:       32px;
      --pad-section: 100px;
    }

    /* ============================================================
       RESET & BASE
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    
    body {
      font-family: 'Montserrat', sans-serif;
      font-size: 15px;
      font-weight: 400;
      line-height: 1.8;
      color: var(--text-body);
      background: var(--black);
      -webkit-font-smoothing: antialiased;
    }

    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    /* ============================================================
       TYPOGRAPHY SYSTEM
    ============================================================ */
    .micro-label {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: 'Montserrat', sans-serif;
      font-size: 10.5px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.22em;
      color: var(--teal);
      margin-bottom: 20px;
    }
    .micro-label::before {
      content: '';
      display: inline-block;
      width: 0px;
      height: 1px;
      background: var(--teal);
      transition: width 0.6s ease;
    }
    .micro-label.revealed::before { width: 40px; }

    h1, h2, h3 {
      font-family: 'Cormorant Garamond', serif;
      color: var(--white);
      line-height: 1.1;
    }
    h1 {
      font-size: clamp(36px, 5.5vw, 68px);
      font-weight: 300;
      line-height: 1.08;
      color: var(--white);
    }
    h2 {
      font-size: clamp(28px, 3.2vw, 42px);
      font-weight: 400;
      line-height: 1.15;
      color: var(--white);
    }
    h2.on-dark { color: var(--white); }

    p { color: var(--text-body); line-height: 1.8; }
    p.on-dark { color: rgba(255,255,255,0.68); }

    /* ============================================================
       LAYOUT UTILITIES
    ============================================================ */
    .container {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 var(--pad-x);
    }

    .section {
      padding: var(--pad-section) 0;
    }
    .section-bg-white   { background: var(--black-mid); }
    .section-bg-gray    { background: var(--card-bg); }
    .section-bg-navy    { background: var(--black); }

    /* ============================================================
       BUTTONS
    ============================================================ */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      padding: 16px 36px;
      border-radius: 4px;
      cursor: pointer;
      transition: all 0.25s ease;
      border: none;
    }
    .btn-primary {
      background: var(--grad);
      color: var(--white);
      border: none;
    }
    .btn-primary:hover {
      background: var(--grad-hover);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(125,50,138,0.45);
    }
    .btn-ghost {
      background: transparent;
      color: var(--white);
      border: 1px solid rgba(255,255,255,0.2);
    }
    .btn-ghost:hover {
      border-color: rgba(255,255,255,0.5);
      background: rgba(255,255,255,0.06);
      transform: translateY(-2px);
    }
    .btn-faq {
      background: transparent;
      color: var(--teal);
      border: 1px solid rgba(95,210,180,0.35);
      font-size: 12px;
      padding: 10px 20px;
      letter-spacing: 0.06em;
    }
    .btn-faq:hover {
      background: rgba(95,210,180,0.1);
      border-color: var(--teal);
      transform: translateY(-2px);
    }
    .btn-full { width: 100%; font-size: 13px; }

    /* ============================================================
       NAVIGATION
    ============================================================ */
    #navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      height: 72px;
      background: transparent;
      transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
    }
    #navbar.scrolled {
      background: rgba(10,10,10,0.97);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 1px 0 rgba(255,255,255,0.06);
    }
    .nav-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 var(--pad-x);
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    /* Logo */
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
      text-decoration: none;
    }
    .nav-logo-mark {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1.5px solid var(--teal);
      object-fit: cover;
      display: block;
    }
    .nav-logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.15;
    }
    .nav-logo-main {
      font-family: 'Montserrat', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: var(--white);
      letter-spacing: 0.04em;
    }
    .nav-logo-sub {
      font-family: 'Montserrat', sans-serif;
      font-size: 9.5px;
      font-weight: 400;
      color: var(--teal);
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    /* Nav Links */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      font-family: 'Montserrat', sans-serif;
      font-size: 12.5px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.78);
      transition: color 0.2s;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0; right: 0;
      height: 1px;
      background: var(--teal);
      transform: scaleX(0);
      transition: transform 0.2s ease;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-links a:hover::after { transform: scaleX(1); }

    /* Hamburger */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      background: none;
      border: none;
    }
    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      transition: all 0.3s ease;
      border-radius: 2px;
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Language toggle button */
    .lang-toggle {
      display: flex;
      align-items: center;
      gap: 5px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 20px;
      padding: 5px 12px;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s;
      flex-shrink: 0;
    }
    .lang-toggle:hover {
      background: rgba(255,255,255,0.12);
      border-color: rgba(255,255,255,0.3);
    }
    .lang-opt {
      font-family: 'Montserrat', sans-serif;
      font-size: 10.5px;
      font-weight: 500;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.45);
      transition: color 0.2s;
    }
    .lang-opt-active {
      color: var(--teal);
      font-weight: 700;
    }
    .lang-divider {
      font-size: 10px;
      color: rgba(255,255,255,0.25);
    }

    /* Mobile menu */
    .nav-mobile {
      display: none;
      position: fixed;
      top: 72px;
      left: 0; right: 0;
      background: rgba(10,10,10,0.98);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      padding: 24px var(--pad-x) 32px;
      border-top: 1px solid rgba(255,255,255,0.08);
      z-index: 999;
      flex-direction: column;
      gap: 8px;
    }
    .nav-mobile.open { display: flex; }
    .nav-mobile a {
      font-family: 'Montserrat', sans-serif;
      font-size: 13px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.78);
      padding: 12px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      transition: color 0.2s;
    }
    .nav-mobile a:hover { color: var(--teal); }
    .nav-mobile .btn { margin-top: 16px; width: 100%; }

    /* ============================================================
       HERO SECTION
    ============================================================ */
    #hero {
      min-height: 100vh;
      background: var(--black);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 140px var(--pad-x) 80px;
    }

    /* Subtle radial purple glow at bottom-left, matching parent site */
    #hero .hero-glow {
      position: absolute;
      bottom: -10%;
      left: -5%;
      width: 60vw;
      height: 60vw;
      max-width: 700px;
      max-height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(125,50,138,0.12) 0%, rgba(50,76,156,0.08) 45%, transparent 70%);
      pointer-events: none;
    }
    #hero .hero-glow-right {
      position: absolute;
      top: -5%;
      right: -5%;
      width: 50vw;
      height: 50vw;
      max-width: 600px;
      max-height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(50,76,156,0.10) 0%, transparent 65%);
      pointer-events: none;
    }

    /* Orbital geometric decoration */
    #hero::before {
      content: '';
      position: absolute;
      top: 50%;
      right: -10%;
      width: 65vw;
      height: 65vw;
      max-width: 800px;
      max-height: 800px;
      border-radius: 50%;
      border: 1px solid rgba(125,50,138,0.07);
      transform: translateY(-50%);
      pointer-events: none;
    }
    #hero::after {
      content: '';
      position: absolute;
      top: 50%;
      right: -3%;
      width: 48vw;
      height: 48vw;
      max-width: 620px;
      max-height: 620px;
      border-radius: 50%;
      border: 1px solid rgba(50,76,156,0.06);
      transform: translateY(-50%) rotate(18deg);
      pointer-events: none;
    }
    .hero-orbital-ring {
      position: absolute;
      top: 50%;
      right: 5%;
      width: 36vw;
      height: 36vw;
      max-width: 500px;
      max-height: 500px;
      border-radius: 50%;
      border: 1px solid rgba(64,180,151,0.05);
      transform: translateY(-50%) rotate(-12deg);
      pointer-events: none;
    }
    .hero-orbital-line {
      position: absolute;
      top: 40%;
      right: 0;
      width: 55vw;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(125,50,138,0.06), transparent);
      transform: rotate(-18deg);
      pointer-events: none;
    }

    .hero-content {
      max-width: var(--max-w);
      width: 100%;
      margin: 0 auto;
      position: relative;
      z-index: 2;
      max-width: 780px;
    }

    .hero-micro {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 32px;
    }
    .hero-micro-line {
      width: 40px;
      height: 1px;
      background: var(--teal);
    }
    .hero-micro-text {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.28em;
      color: var(--teal);
    }

    #hero h1 {
      margin-bottom: 28px;
    }
    .hero-body {
      font-size: 16px;
      line-height: 1.75;
      color: rgba(255,255,255,0.68);
      max-width: 580px;
      margin-bottom: 44px;
    }
    .hero-ctas {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    /* ============================================================
       TRUST STRIP
    ============================================================ */
    #trust {
      background: var(--card-bg);
      padding: 48px 0;
      border-bottom: 1px solid var(--dark-border);
      border-top: 1px solid var(--dark-border);
    }
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .trust-item {
      text-align: center;
      padding: 24px 32px;
      position: relative;
    }
    .trust-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0; top: 20%; bottom: 20%;
      width: 1px;
      background: var(--dark-border);
    }
    .trust-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 38px;
      font-weight: 400;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
      margin-bottom: 6px;
    }
    .trust-label {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--text-muted);
    }

    /* ============================================================
       ABOUT SECTION
    ============================================================ */
    #about .two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    .about-body p + p { margin-top: 20px; }
    .value-pillars {
      background: var(--card-bg-2);
      border: 1px solid var(--dark-border);
      border-radius: 8px;
      padding: 40px 36px;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .pillar-item {
      padding-left: 20px;
      border-left: 2px solid var(--teal);
    }
    .pillar-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 6px;
      letter-spacing: 0.02em;
    }
    .pillar-desc {
      font-size: 13px;
      line-height: 1.65;
      color: rgba(255,255,255,0.55);
    }

    /* ============================================================
       SERVICES SECTION
    ============================================================ */
    #services {
      background: var(--card-bg);
    }
    .section-intro { max-width: 640px; margin-bottom: 56px; }
    .section-intro p { margin-top: 16px; }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
    }
    .service-card {
      background: var(--card-bg-2);
      border: 1px solid var(--dark-border);
      border-radius: 6px;
      padding: 0 0 32px;
      overflow: hidden;
      transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
      cursor: default;
    }
    .service-card:hover {
      box-shadow: 0 8px 32px rgba(0,0,0,0.5);
      transform: translateY(-4px);
      border-color: rgba(125,50,138,0.3);
    }
    .service-card-bar {
      height: 3px;
      background: var(--grad);
      width: 40px;
      margin: 32px 32px 24px;
      border-radius: 2px;
    }
    .service-card-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 15px;
      font-weight: 600;
      color: var(--white);
      padding: 0 32px;
      margin-bottom: 12px;
    }
    .service-card-desc {
      font-size: 13.5px;
      line-height: 1.7;
      color: var(--text-muted);
      padding: 0 32px;
    }

    /* ============================================================
       WHY WILDTONE
    ============================================================ */
    #why {
      background: var(--black-mid);
    }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
      margin-top: 56px;
    }
    .pillar-card {
      background: var(--card-bg-2);
      border: 1px solid var(--dark-border);
      border-radius: 6px;
      padding: 40px 32px;
      transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
    }
    .pillar-card:hover {
      background: #1f1f1f;
      transform: translateY(-3px);
      border-color: rgba(125,50,138,0.3);
    }
    .pillar-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 42px;
      font-weight: 400;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      opacity: 0.55;
      line-height: 1;
      margin-bottom: 20px;
    }
    .pillar-card-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 12px;
      letter-spacing: 0.02em;
    }
    .pillar-card-desc {
      font-size: 13.5px;
      line-height: 1.7;
      color: var(--text-muted);
    }

    /* ============================================================
       GLOBAL ADMINISTRATION
    ============================================================ */
    #global .two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    .global-body p + p { margin-top: 20px; }
    .territory-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 32px;
    }
    .territory-tag {
      font-family: 'Montserrat', sans-serif;
      font-size: 11.5px;
      font-weight: 500;
      color: rgba(255,255,255,0.72);
      background: var(--card-bg-2);
      border: 1px solid var(--dark-border);
      border-radius: 100px;
      padding: 6px 16px;
      white-space: nowrap;
      transition: all 0.2s ease;
    }
    .territory-tag:hover {
      background: var(--grad);
      color: var(--white);
      border-color: transparent;
    }
    .global-quote {
      border-left: 2px solid var(--teal);
      padding: 20px 24px;
      background: var(--card-bg-2);
      border: 1px solid var(--dark-border);
      border-left: 2px solid var(--teal);
      border-radius: 0 6px 6px 0;
    }
    .global-quote p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 17px;
      font-style: italic;
      font-weight: 400;
      color: rgba(255,255,255,0.82);
      line-height: 1.55;
    }

    /* ============================================================
       WHO WE WORK WITH
    ============================================================ */
    #audience {
      background: var(--black);
    }
    .audience-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
      margin-top: 48px;
    }
    .audience-card {
      background: var(--card-bg-2);
      border: 1px solid var(--dark-border);
      border-top: 2px solid transparent;
      border-image: var(--grad) 1;
      border-radius: 6px;
      padding: 32px 28px;
      transition: box-shadow 0.25s ease, transform 0.25s ease;
    }
    .audience-card:hover {
      box-shadow: 0 8px 32px rgba(0,0,0,0.6);
      transform: translateY(-3px);
    }
    .audience-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 12px;
      letter-spacing: 0.02em;
    }
    .audience-desc {
      font-size: 13.5px;
      line-height: 1.7;
      color: var(--text-muted);
    }

    /* ============================================================
       HOW WE WORK — TIMELINE
    ============================================================ */
    #workflow {
      background: var(--card-bg);
    }
    .timeline {
      position: relative;
      margin-top: 56px;
      max-width: 760px;
      margin-left: auto;
      margin-right: auto;
    }
    .timeline::before {
      content: '';
      position: absolute;
      left: 28px;
      top: 28px;
      bottom: 28px;
      width: 2px;
      background: linear-gradient(to bottom, #7d328a, #324c9c, rgba(50,76,156,0.15));
    }
    .timeline-item {
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 32px;
      align-items: start;
      margin-bottom: 40px;
      position: relative;
      z-index: 1;
    }
    .timeline-item:last-child { margin-bottom: 0; }
    .timeline-circle {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--grad);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 4px 16px rgba(125,50,138,0.35);
    }
    .timeline-num {
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      font-weight: 600;
      color: var(--white);
      letter-spacing: 0.05em;
    }
    .timeline-content { padding-top: 14px; }
    .timeline-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 15px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 8px;
    }
    .timeline-desc { font-size: 14px; line-height: 1.7; color: var(--text-muted); }

    /* ============================================================
       CATALOG ADVISORY
    ============================================================ */
    #advisory {
      background: var(--black-mid);
    }
    #advisory .two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    .advisory-body p + p { margin-top: 20px; }
    .capability-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .capability-card {
      background: var(--card-bg-2);
      border: 1px solid var(--dark-border);
      border-radius: 6px;
      padding: 20px;
      font-family: 'Montserrat', sans-serif;
      font-size: 13px;
      font-weight: 500;
      color: rgba(255,255,255,0.75);
      line-height: 1.4;
      transition: background 0.2s ease, border-color 0.2s ease;
    }
    .capability-card:hover {
      background: rgba(125,50,138,0.12);
      border-color: rgba(125,50,138,0.35);
    }

    /* ============================================================
       GLOBAL STAT BANNER (130+ territories)
    ============================================================ */
    .global-stat-banner {
      display: flex;
      align-items: center;
      gap: 40px;
      background: var(--card-bg-2);
      border: 1px solid var(--dark-border);
      border-left: 3px solid transparent;
      border-image: var(--grad) 1;
      border-radius: 0 8px 8px 0;
      padding: 36px 48px;
      margin-bottom: 0;
    }
    .global-stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(72px, 8vw, 110px);
      font-weight: 300;
      line-height: 1;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      flex-shrink: 0;
    }
    .global-stat-plus {
      font-size: 0.6em;
      font-weight: 400;
    }
    .global-stat-label {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--teal);
      margin-bottom: 10px;
    }
    .global-stat-desc {
      font-size: 14px;
      line-height: 1.7;
      color: var(--text-body);
    }
    .global-stat-desc em { color: rgba(255,255,255,0.5); font-style: italic; font-size: 13px; }

    /* WMG Division Badge */
    .global-division-badge {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 20px 24px;
      background: rgba(125,50,138,0.06);
      border: 1px solid rgba(125,50,138,0.2);
      border-radius: 6px;
    }
    .global-div-icon {
      font-size: 14px;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .global-div-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      font-weight: 600;
      color: var(--white);
      letter-spacing: 0.05em;
      margin-bottom: 6px;
    }
    .global-div-sub {
      font-size: 12.5px;
      line-height: 1.65;
      color: rgba(255,255,255,0.55);
    }
    .global-div-sub em { color: rgba(255,255,255,0.4); }

    /* Territory tag variant for the "+ X more" */
    .territory-tag-more {
      background: var(--grad) !important;
      border-color: transparent !important;
      color: var(--white) !important;
      font-weight: 600 !important;
    }

    /* Footer email stack */
    .footer-connect-email {
      display: block;
    }

    /* ============================================================
       FAQ ACCORDION
    ============================================================ */
    #faq {
      background: var(--black);
    }
    .faq-list {
      max-width: 800px;
      margin: 16px auto 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .faq-category-label {
      max-width: 800px;
      margin: 32px auto 0;
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--teal);
      font-weight: 600;
      padding-bottom: 8px;
      border-bottom: 1px solid rgba(95,210,180,0.2);
    }
    .faq-item {
      background: var(--card-bg-2);
      border: 1px solid var(--dark-border);
      border-radius: 6px;
      overflow: hidden;
      transition: border-color 0.25s ease;
    }
    .faq-item.open { border-color: rgba(125,50,138,0.5); }
    .faq-question {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      cursor: pointer;
      padding: 22px 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .faq-question-text {
      font-family: 'Montserrat', sans-serif;
      font-size: 14.5px;
      font-weight: 600;
      color: var(--white);
      line-height: 1.4;
      text-align: left;
    }
    .faq-icon {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
      border: 1.5px solid var(--dark-border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }
    .faq-icon::before {
      content: '+';
      font-size: 16px;
      font-weight: 300;
      color: rgba(255,255,255,0.6);
      line-height: 1;
      transition: transform 0.3s ease;
    }
    .faq-item.open .faq-icon {
      background: var(--grad);
      border-color: transparent;
    }
    .faq-item.open .faq-icon::before {
      color: var(--white);
      transform: rotate(45deg);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
    }
    .faq-item.open .faq-answer {
      max-height: 400px;
    }
    .faq-answer-inner {
      padding: 0 28px 24px;
      font-size: 14px;
      line-height: 1.75;
      color: var(--text-muted);
      border-top: 1px solid var(--dark-border);
      padding-top: 16px;
    }

    /* ============================================================
       FINAL CTA
    ============================================================ */
    #final-cta {
      background: var(--black);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    /* Bottom purple glow for final CTA */
    #final-cta::before {
      content: '';
      position: absolute;
      bottom: -30%;
      left: 50%;
      transform: translateX(-50%);
      width: 80vw;
      height: 60vw;
      max-width: 900px;
      max-height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(125,50,138,0.18) 0%, rgba(50,76,156,0.10) 45%, transparent 70%);
      pointer-events: none;
    }
    #final-cta h2 {
      font-size: clamp(28px, 3.5vw, 46px);
      color: var(--white);
      margin-bottom: 20px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      z-index: 1;
    }
    #final-cta p {
      color: rgba(255,255,255,0.60);
      max-width: 540px;
      margin: 0 auto 40px;
      font-size: 15.5px;
      position: relative;
      z-index: 1;
    }
    #final-cta .btn {
      position: relative;
      z-index: 1;
    }

    /* ============================================================
       CONTACT SECTION
    ============================================================ */
    #contact {
      background: var(--card-bg);
    }
    #contact .two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    .contact-body p + p { margin-top: 20px; }
    .contact-detail {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-top: 32px;
      padding: 20px 0;
      border-top: 1px solid var(--dark-border);
    }
    .contact-detail:first-of-type { margin-top: 40px; }
    .contact-detail-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid var(--dark-border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .contact-detail-icon svg { width: 16px; height: 16px; stroke: var(--teal); fill: none; }
    .contact-detail-label {
      font-family: 'Montserrat', sans-serif;
      font-size: 10.5px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--teal);
      margin-bottom: 4px;
    }
    .contact-detail-value {
      font-size: 14.5px;
      color: var(--white);
      font-weight: 500;
    }
    .contact-detail-value a { color: var(--teal); }

    .contact-form-card {
      background: var(--card-bg-2);
      border: 1px solid var(--dark-border);
      border-radius: 8px;
      padding: 40px 36px;
    }
    .form-group { margin-bottom: 20px; }
    .form-label {
      display: block;
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: rgba(255,255,255,0.65);
      margin-bottom: 8px;
    }
    .form-input, .form-select, .form-textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid var(--dark-border);
      border-radius: 4px;
      background: var(--black-mid);
      font-family: 'Montserrat', sans-serif;
      font-size: 13.5px;
      color: var(--white);
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
      outline: none;
      -webkit-appearance: none;
    }
    .form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.25); }
    .form-input:focus, .form-select:focus, .form-textarea:focus {
      border-color: rgba(125,50,138,0.6);
      box-shadow: 0 0 0 3px rgba(125,50,138,0.12);
    }
    .form-select { cursor: pointer; }
    .form-select option { background: var(--card-bg-2); color: var(--white); }
    .form-textarea { resize: vertical; min-height: 100px; }
    .form-trust {
      text-align: center;
      margin-top: 14px;
      font-size: 11.5px;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }
    .form-trust::before {
      content: '🔒';
      font-size: 11px;
    }

    /* ============================================================
       FOOTER
    ============================================================ */
    footer {
      background: var(--navy-footer);
    }
    .footer-main {
      padding: 72px 0 48px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
    }
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }
    .footer-logo-mark {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      object-fit: cover;
    }
    .footer-brand-text {
      display: flex;
      flex-direction: column;
    }
    .footer-brand-main {
      font-family: 'Montserrat', sans-serif;
      font-size: 12.5px;
      font-weight: 600;
      color: var(--white);
      letter-spacing: 0.04em;
    }
    .footer-brand-sub {
      font-size: 9.5px;
      font-weight: 400;
      color: var(--teal);
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .footer-desc {
      font-size: 13px;
      line-height: 1.75;
      color: rgba(255,255,255,0.45);
    }
    .footer-col-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: rgba(255,255,255,0.35);
      margin-bottom: 20px;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
      list-style: none;
    }
    .footer-links a {
      font-size: 13px;
      color: rgba(255,255,255,0.55);
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--white); }
    .footer-connect-email {
      font-size: 13px;
      color: var(--teal);
      display: block;
      margin-bottom: 16px;
      transition: opacity 0.2s;
    }
    .footer-connect-email:hover { opacity: 0.8; }
    .footer-connect-location {
      font-size: 13px;
      color: rgba(255,255,255,0.45);
      line-height: 1.6;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.07);
      padding: 24px 0;
    }
    .footer-bottom-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }
    .footer-copyright {
      font-size: 12px;
      color: rgba(255,255,255,0.30);
    }
    .footer-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-size: 14px;
      font-style: italic;
      color: rgba(255,255,255,0.25);
    }

    /* ============================================================
       SCROLL REVEAL ANIMATIONS
    ============================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.06s; }
    .reveal-delay-2 { transition-delay: 0.12s; }
    .reveal-delay-3 { transition-delay: 0.18s; }
    .reveal-delay-4 { transition-delay: 0.24s; }
    .reveal-delay-5 { transition-delay: 0.30s; }
    .reveal-delay-6 { transition-delay: 0.36s; }
    .reveal-delay-7 { transition-delay: 0.42s; }
    .reveal-delay-8 { transition-delay: 0.48s; }

    /* ============================================================
       RESPONSIVE — 900px
    ============================================================ */
    @media (max-width: 900px) {
      .nav-links, .nav-cta-desktop { display: none; }
      .nav-hamburger { display: flex; }

      .trust-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .trust-item:nth-child(2)::after { display: none; }
      .trust-item:nth-child(odd)::after { display: block; }
      .trust-item:nth-child(2n)::after { display: none; }
    }

    /* ============================================================
       RESPONSIVE — 768px
    ============================================================ */
    @media (max-width: 768px) {
      :root {
        --pad-x: 20px;
        --pad-section: 72px;
      }

      #about .two-col,
      #global .two-col,
      #advisory .two-col,
      #contact .two-col { grid-template-columns: 1fr; gap: 40px; }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
      }
    }

    /* ============================================================
       RESPONSIVE — 480px
    ============================================================ */
    @media (max-width: 480px) {
      .trust-grid { grid-template-columns: 1fr 1fr; }
      .trust-item::after { display: none !important; }

      .services-grid, .why-grid, .audience-grid { grid-template-columns: 1fr; }

      .hero-ctas { flex-direction: column; }
      .hero-ctas .btn { width: 100%; text-align: center; }

      .footer-grid { grid-template-columns: 1fr; }

      .capability-grid { grid-template-columns: 1fr; }
    }

    /* Form submit button success state */
    .btn-success {
      background: #2d9e84 !important;
      pointer-events: none;
    }


/* ---- Page hero (inner pages) ---- */
.page-hero {
  background: var(--black);
  padding: 140px var(--pad-x) 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-glow {
  position: absolute; bottom: -10%; left: -5%;
  width: 60vw; height: 60vw; max-width: 700px; max-height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125,50,138,0.12) 0%, rgba(50,76,156,0.08) 45%, transparent 70%);
  pointer-events: none;
}
.page-hero .micro-label { margin-bottom: 20px; }
.page-hero h1 { max-width: 760px; margin-bottom: 24px; }
.page-hero-body {
  font-size: 16px; line-height: 1.75;
  color: rgba(255,255,255,0.68); max-width: 580px;
}

/* ---- Active nav link ---- */
.nav-active { color: var(--teal) !important; }
.nav-active::after { transform: scaleX(1) !important; }

/* ---- sr-only ---- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---- Form message ---- */
#form-message { margin-top: 12px; text-align: center; font-size: 13px; min-height: 20px; }
