/* =============================================
       RESET & BASE
    ============================================= */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --navy:       hsl(220, 25%, 6%);
      --navy-mid:   hsl(220, 22%, 10%);
      --navy-light: hsl(218, 20%, 16%);
      --teal:       hsl(200, 80%, 60%);
      --teal-dark:  hsl(200, 80%, 45%);
      --teal-light: hsl(200, 80%, 72%);
      --white:      #ffffff;
      --off-white:  #f4f6f9;
      --gray-100:   #e8ecf2;
      --gray-200:   #ccd4e0;
      --gray-400:   #8494ad;
      --gray-600:   #4a5568;
      --gray-800:   #1a2234;
      --font:       'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      --nav-height: 72px;
      --radius:     8px;
      --radius-lg:  16px;
      --shadow:     0 4px 20px hsla(220, 25%, 6%, 0.12);
      --shadow-lg:  0 8px 40px hsla(220, 25%, 6%, 0.18);
      --transition: 0.25s ease;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: var(--font);
      color: var(--gray-800);
      background: var(--white);
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2 {
      font-family: 'DM Serif Display', serif;
      font-weight: 400;
    }

    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul, ol { list-style: none; }

    /* =============================================
       NOISE OVERLAY
    ============================================= */
    .noise-overlay {
      position: relative;
    }
    .noise-overlay::after {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0.03;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 1;
    }

    /* =============================================
       SECTION DIVIDERS
    ============================================= */
    .section, .section-sm {
      position: relative;
    }

/* =============================================
       SCROLL ANIMATION
    ============================================= */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Staggered children */
    .reveal-stagger > * {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }
    .reveal-stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:0s; }
    .reveal-stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:0.1s; }
    .reveal-stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:0.2s; }
    .reveal-stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:0.3s; }
    .reveal-stagger.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay:0.4s; }

    /* =============================================
       LAYOUT UTILITIES
    ============================================= */
    .container {
      width: 100%;
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .section {
      padding: 96px 0;
    }

    .section-sm {
      padding: 72px 0;
    }

    .section-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 12px;
    }

    .section-title {
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 800;
      line-height: 1.15;
      color: var(--white);
      margin-bottom: 20px;
    }

    .section-subtitle {
      font-size: 18px;
      color: rgba(255,255,255,0.65);
      max-width: 620px;
      line-height: 1.7;
    }

    .section-header {
      margin-bottom: 56px;
    }

    .section-header.centered {
      text-align: center;
    }

    .section-header.centered .section-subtitle {
      margin: 0 auto;
    }

    .text-teal { color: var(--teal); }
    .text-white { color: var(--white); }
    .text-navy { color: var(--navy); }

    /* =============================================
       BUTTONS
    ============================================= */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: var(--radius);
      font-weight: 600;
      font-size: 15px;
      cursor: pointer;
      transition: all var(--transition);
      border: 2px solid transparent;
      white-space: nowrap;
      font-family: var(--font);
    }

    @keyframes btn-glow {
      0%, 100% { box-shadow: 0 0 8px hsla(200, 80%, 60%, 0.35); }
      50%       { box-shadow: 0 0 22px hsla(200, 80%, 60%, 0.65); }
    }
    .btn-glow {
      animation: btn-glow 3s ease-in-out infinite;
    }

    .btn-primary {
      background: var(--teal);
      color: var(--white);
      border-color: var(--teal);
    }
    .btn-primary:hover {
      background: var(--teal-dark);
      border-color: var(--teal-dark);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px hsla(200, 80%, 60%, 0.35);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border-color: rgba(255,255,255,0.5);
    }
    .btn-outline:hover {
      background: rgba(255,255,255,0.12);
      border-color: rgba(255,255,255,0.8);
      transform: translateY(-1px);
    }

    .btn-outline-navy {
      background: transparent;
      color: var(--white);
      border-color: rgba(255,255,255,0.35);
    }
    .btn-outline-navy:hover {
      background: transparent;
      color: var(--teal);
      border-color: var(--teal);
      box-shadow: 0 0 14px hsla(200, 80%, 60%, 0.45);
      transform: translateY(-1px);
    }

    .btn-lg {
      padding: 16px 36px;
      font-size: 16px;
    }

    .btn-sm {
      padding: 10px 20px;
      font-size: 14px;
    }

    .btn-arrow::after {
      content: '→';
      font-size: 16px;
    }

    /* =============================================
       NAVIGATION
    ============================================= */
    #nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      height: var(--nav-height);
      background: transparent;
      transition: background 0.3s ease, box-shadow 0.3s ease;
    }

    #nav.scrolled {
      background: var(--navy);
      box-shadow: 0 2px 24px hsla(220, 25%, 6%, 0.25);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: var(--nav-height);
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .nav-logo {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 10px;
    }

    .nav-logo-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .nav-logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }

    .nav-logo-name {
      font-size: 18px;
      font-weight: 800;
      color: var(--white);
      letter-spacing: -0.01em;
    }

    .nav-logo-tagline {
      font-size: 11px;
      font-weight: 500;
      color: rgba(255,255,255,0.55);
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: rgba(255,255,255,0.8);
      transition: color var(--transition);
    }

    .nav-links a:hover {
      color: var(--white);
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      border: none;
      background: transparent;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      transition: all 0.3s ease;
      border-radius: 2px;
    }

    .hamburger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .hamburger.open span:nth-child(2) {
      opacity: 0;
    }
    .hamburger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-nav {
      display: none;
      position: fixed;
      top: var(--nav-height);
      left: 0;
      right: 0;
      background: hsla(220, 25%, 6%, 0.96);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      padding: 24px;
      flex-direction: column;
      gap: 20px;
      z-index: 999;
      border-top: 1px solid rgba(255,255,255,0.1);
      box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    }

    .mobile-nav.open {
      display: flex;
    }

    .mobile-nav a {
      font-size: 16px;
      font-weight: 600;
      color: rgba(255,255,255,0.85);
      padding: 8px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .mobile-nav a:last-child {
      border-bottom: none;
    }

    /* =============================================
       HERO
    ============================================= */
    #hero {
      min-height: 85vh;
      background: var(--navy);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding-top: var(--nav-height);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
      background: url('/hero-cartographer.png') center right / cover no-repeat;
    }

    .hero-overlay-h {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg,
        hsla(220,25%,4%,0.97) 0%,
        hsla(220,25%,4%,0.88) 35%,
        hsla(220,25%,4%,0.45) 60%,
        hsla(220,25%,4%,0.05) 100%);
    }

    .hero-overlay-v {
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg,
        hsla(220,25%,6%,0.95) 0%,
        transparent 45%,
        hsla(220,25%,4%,0.38) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 1;
      padding: 80px 0 80px;
      max-width: 580px;
      margin: 0;
      text-align: left;
    }

    .hero-eyebrow {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 12px;
      margin-bottom: 28px;
    }

    .hero-eyebrow-line {
      width: 32px;
      height: 2px;
      background: var(--teal);
    }

    .hero-eyebrow-text {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--teal);
    }

    .hero-headline {
      font-size: clamp(36px, 5.5vw, 64px);
      font-weight: 800;
      line-height: 1.08;
      color: var(--white);
      margin-bottom: 24px;
      letter-spacing: -0.02em;
    }

    .hero-headline .accent {
      color: var(--teal);
      white-space: nowrap;
    }

    .hero-subheadline {
      font-size: clamp(17px, 2.2vw, 20px);
      color: rgba(255,255,255,0.72);
      line-height: 1.65;
      margin-bottom: 44px;
      max-width: 520px;
      margin-left: 0;
      margin-right: 0;
    }

    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
      gap: 14px;
      margin-bottom: 56px;
    }

    .capability-badges {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
      gap: 10px;
    }

    .badge {
      display: inline-block;
      padding: 6px 14px;
      border-radius: 100px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.04em;
      background: rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.75);
      border: 1px solid rgba(255,255,255,0.15);
      transition: all var(--transition);
    }

    .badge:hover {
      background: hsla(200, 80%, 60%, 0.2);
      border-color: var(--teal);
      color: var(--white);
    }

    .badge-teal {
      background: hsla(200, 80%, 60%, 0.15);
      border-color: hsla(200, 80%, 60%, 0.5);
      color: var(--teal-light);
    }

    /* =============================================
       PROBLEM / HOOK
    ============================================= */
    #problem {
      background: var(--navy-mid);
    }

    .problem-block {
      max-width: 820px;
      margin: 0 auto;
    }

    .problem-quote {
      font-size: clamp(20px, 3vw, 28px);
      font-weight: 700;
      line-height: 1.45;
      color: var(--white);
      margin-bottom: 32px;
      padding-left: 24px;
      border-left: 4px solid var(--teal);
    }

    .problem-body {
      font-size: 17px;
      color: rgba(255,255,255,0.65);
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .problem-body strong {
      color: var(--white);
      font-weight: 600;
    }

    .problem-subtext {
      font-size: 17px;
      font-weight: 600;
      color: var(--teal);
      margin-bottom: 40px;
      font-style: italic;
    }

    .trigger-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .trigger-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 18px;
      border-radius: 100px;
      font-size: 14px;
      font-weight: 600;
      background: rgba(255,255,255,0.06);
      color: rgba(255,255,255,0.85);
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow: none;
      transition: all var(--transition);
    }

    .trigger-pill:hover {
      border-color: var(--teal);
      color: var(--teal);
      background: hsla(200, 80%, 60%, 0.1);
      box-shadow: 0 4px 16px hsla(200, 80%, 60%, 0.15);
      transform: translateY(-1px);
    }

    .trigger-pill-icon {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--teal);
      flex-shrink: 0;
    }

    .trigger-pills-label {
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      margin-bottom: 16px;
    }

    /* =============================================
       SERVICES
    ============================================= */
    #services {
      background: var(--navy);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 24px;
    }

    /* Top row: 3 cards */
    .service-card:nth-child(1),
    .service-card:nth-child(2),
    .service-card:nth-child(3) {
      grid-column: span 4;
    }

    /* Bottom row: 2 cards centered */
    .service-card:nth-child(4) {
      grid-column: 1 / span 6;
    }
    .service-card:nth-child(5) {
      grid-column: 7 / span 6;
    }

    .service-card {
      display: flex;
      flex-direction: column;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-lg);
      padding: 32px;
      position: relative;
      transition: all var(--transition);
      box-shadow: none;
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 0 0 1px hsla(200, 80%, 60%, 0.25), 0 8px 32px hsla(200, 80%, 60%, 0.12);
      border-color: hsla(200, 80%, 60%, 0.3);
    }

    .service-card.featured {
      border-left: 4px solid var(--teal);
    }

    .service-card > .btn {
      margin-top: 12px;
    }

    .service-badge {
      display: inline-block;
      padding: 4px 12px;
      border-radius: 100px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 20px;
      background: hsla(200, 80%, 60%, 0.1);
      color: var(--teal-dark);
    }

    .service-badge.entry { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
    .service-badge.channel { background: hsla(200, 80%, 60%, 0.1); color: var(--teal-dark); }
    .service-badge.expanding { background: linear-gradient(135deg, hsla(200, 80%, 60%, 0.15), hsla(200, 80%, 60%, 0.05)); color: var(--teal-dark); border: 1px solid hsla(200, 80%, 60%, 0.3); }

    .service-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: hsla(200, 80%, 60%, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-size: 22px;
    }

    .service-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .service-desc {
      font-size: 14px;
      color: rgba(255,255,255,0.65);
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .service-cta-note {
      font-size: 13px;
      color: rgba(255,255,255,0.5);
      line-height: 1.65;
      margin-top: auto;
      padding-top: 12px;
      border-top: 1px solid rgba(255,255,255,0.1);
    }

    .service-deliverables {
      margin-bottom: 16px;
    }

    .service-deliverables-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      margin-bottom: 8px;
    }

    .service-deliverable-list {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .service-deliverable-item {
      font-size: 12px;
      font-weight: 500;
      background: rgba(255,255,255,0.07);
      color: rgba(255,255,255,0.7);
      padding: 4px 10px;
      border-radius: 4px;
    }

    /* vCISO Tiers Table */
    .vciso-tiers {
      margin-top: 16px;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.1);
    }

    .vciso-tier {
      display: flex;
      flex-direction: column;
      padding: 12px 14px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      gap: 4px;
    }

    .vciso-tier:last-child {
      border-bottom: none;
    }

    .vciso-tier:nth-child(odd) {
      background: rgba(255,255,255,0.04);
    }

    .vciso-tier-name {
      font-size: 13px;
      font-weight: 700;
      color: var(--white);
    }

    .vciso-tier-desc {
      font-size: 12px;
      color: rgba(255,255,255,0.55);
      line-height: 1.55;
    }

    /* Business Process Sub-services */
    .bp-bridge {
      font-size: 14px;
      font-weight: 600;
      color: var(--teal);
      font-style: italic;
      margin-bottom: 16px;
      padding: 10px 14px;
      background: hsla(200, 80%, 60%, 0.08);
      border-radius: var(--radius);
      border-left: 3px solid var(--teal);
    }

    .bp-subservices {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 20px;
    }

    .bp-subservice {
      padding: 10px 14px;
      background: rgba(255,255,255,0.05);
      border-radius: var(--radius);
      font-size: 13px;
    }

    .bp-subservice strong {
      display: block;
      font-size: 13px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 3px;
    }

    .bp-subservice p {
      color: rgba(255,255,255,0.6);
      line-height: 1.5;
    }

    /* Dark section typography overrides */
    .section-dark .section-label { color: var(--teal-light); }
    .section-dark .section-title  { color: var(--white); }
    .section-dark .section-subtitle { color: rgba(255,255,255,0.65); }

    /* =============================================
       WHY TECH CARTOGRAPHER
    ============================================= */
    #why {
      background: var(--navy);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }

    .why-card {
      padding: 36px;
      border-radius: var(--radius-lg);
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      transition: all var(--transition);
    }

    .why-card:hover {
      background: rgba(255,255,255,0.07);
      border-color: hsla(200, 80%, 60%, 0.4);
      transform: translateY(-3px);
    }

    .why-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: hsla(200, 80%, 60%, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 20px;
    }

    .why-title {
      font-size: 17px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 12px;
      line-height: 1.4;
    }

    .why-desc {
      font-size: 14px;
      color: rgba(255,255,255,0.65);
      line-height: 1.75;
    }

    /* =============================================
       INDUSTRIES
    ============================================= */
    #industries {
      background: var(--navy-mid);
    }

    .industries-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .industry-card {
      background: rgba(255,255,255,0.04);
      border-radius: var(--radius-lg);
      padding: 32px 28px;
      border: 1px solid rgba(255,255,255,0.1);
      transition: all var(--transition);
      box-shadow: none;
    }

    .industry-card:hover {
      transform: translateY(-4px);
      border-color: hsla(200, 80%, 60%, 0.4);
      box-shadow: 0 0 0 1px hsla(200, 80%, 60%, 0.15), 0 8px 32px hsla(200, 80%, 60%, 0.1);
    }

    .industry-icon {
      font-size: 32px;
      margin-bottom: 16px;
    }

    .industry-name {
      font-size: 17px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .industry-trigger {
      font-size: 13px;
      color: rgba(255,255,255,0.6);
      line-height: 1.65;
    }

    .industry-trigger strong {
      color: var(--teal);
      font-weight: 600;
    }

    /* =============================================
       ABOUT / CREDIBILITY
    ============================================= */
    #about {
      background: var(--navy);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-text p {
      font-size: 16px;
      color: rgba(255,255,255,0.65);
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .about-text p:last-child {
      margin-bottom: 0;
    }

    .about-text strong {
      color: var(--white);
      font-weight: 600;
    }

    .about-frameworks {
      margin-top: 28px;
    }

    .about-frameworks-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      margin-bottom: 12px;
    }

    .framework-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .framework-badge {
      padding: 6px 14px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 100px;
      font-size: 12px;
      font-weight: 600;
      color: rgba(255,255,255,0.75);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }

    .stat-card {
      text-align: center;
      padding: 36px 24px;
      background: rgba(255,255,255,0.04);
      border-radius: var(--radius-lg);
      border: 1px solid rgba(255,255,255,0.1);
      transition: all var(--transition);
    }

    .stat-card:hover {
      border-color: hsla(200, 80%, 60%, 0.4);
      transform: translateY(-3px);
      box-shadow: 0 8px 32px hsla(200, 80%, 60%, 0.1);
    }

    .stat-number {
      font-size: clamp(34px, 4vw, 48px);
      font-weight: 800;
      color: var(--teal);
      line-height: 1;
      margin-bottom: 8px;
    }

    .stat-number .stat-accent {
      color: var(--teal-light);
    }

    .stat-label {
      font-size: 13px;
      font-weight: 600;
      color: rgba(255,255,255,0.6);
      line-height: 1.4;
    }

    /* =============================================
       PROCESS
    ============================================= */
    #process {
      background: var(--navy);
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      position: relative;
    }

    .process-steps::before {
      content: '';
      position: absolute;
      top: 28px;
      left: calc(33.33% + 20px);
      right: calc(33.33% + 20px);
      height: 1px;
      background: linear-gradient(90deg, hsla(200, 80%, 60%, 0.4), hsla(200, 80%, 60%, 0.4));
      pointer-events: none;
    }

    .process-step {
      text-align: center;
    }

    .process-number {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: hsla(200, 80%, 60%, 0.15);
      border: 2px solid var(--teal);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: 800;
      color: var(--teal);
      margin: 0 auto 24px;
      position: relative;
      z-index: 1;
    }

    .process-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 14px;
    }

    .process-desc {
      font-size: 14px;
      color: rgba(255,255,255,0.62);
      line-height: 1.75;
    }

    .process-accent {
      font-size: 13px;
      font-weight: 600;
      color: var(--teal);
      margin-top: 10px;
    }

    /* =============================================
       CONTACT
    ============================================= */
    #contact {
      background: var(--navy-mid);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 440px;
      gap: 80px;
      align-items: start;
    }

    .contact-form-wrap {
      background: rgba(255,255,255,0.04);
      border-radius: var(--radius-lg);
      padding: 44px;
      box-shadow: none;
      border: 1px solid rgba(255,255,255,0.1);
    }

    .contact-form-title {
      font-size: 24px;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 6px;
    }

    .contact-no-pitch {
      font-size: 15px;
      font-weight: 600;
      color: var(--teal);
      margin-bottom: 32px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-style: italic;
    }

    .contact-no-pitch::before {
      content: '';
      width: 20px;
      height: 2px;
      background: var(--teal);
      flex-shrink: 0;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: rgba(255,255,255,0.75);
      margin-bottom: 7px;
      letter-spacing: 0.01em;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: var(--radius);
      font-family: var(--font);
      font-size: 15px;
      color: var(--white);
      background: rgba(255,255,255,0.06);
      transition: border-color var(--transition), box-shadow var(--transition);
      outline: none;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--teal);
      box-shadow: 0 0 0 3px hsla(200, 80%, 60%, 0.12);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .form-submit {
      width: 100%;
      padding: 16px;
      background: var(--teal);
      color: var(--white);
      border: none;
      border-radius: var(--radius);
      font-family: var(--font);
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      transition: all var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .form-submit:hover {
      background: var(--teal-dark);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px hsla(200, 80%, 60%, 0.35);
    }

    .form-submit:disabled {
      opacity: 0.6;
      cursor: not-allowed;
      transform: none;
    }

    .form-success {
      display: none;
      text-align: center;
      padding: 24px;
      background: hsla(200, 80%, 60%, 0.08);
      border-radius: var(--radius);
      border: 1px solid hsla(200, 80%, 60%, 0.25);
      margin-top: 16px;
    }

    .form-success.visible {
      display: block;
    }

    .form-success p {
      font-size: 15px;
      font-weight: 600;
      color: var(--teal);
    }

    .contact-info {
      padding-top: 8px;
    }

    .contact-tagline-box {
      padding: 24px;
      background: hsla(200, 80%, 60%, 0.08);
      border: 1px solid hsla(200, 80%, 60%, 0.2);
      border-radius: var(--radius-lg);
      color: var(--white);
    }

    .contact-tagline-box-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 6px;
    }

    .contact-tagline-box-desc {
      font-size: 13px;
      color: rgba(255,255,255,0.6);
      line-height: 1.6;
    }

    .contact-info-title {
      font-size: 28px;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 16px;
      line-height: 1.2;
    }

    .contact-info-sub {
      font-size: 16px;
      color: rgba(255,255,255,0.65);
      line-height: 1.7;
      margin-bottom: 40px;
    }

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 40px;
    }

    .contact-detail {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .contact-detail-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }

    .contact-detail-content {
      display: flex;
      flex-direction: column;
    }

    .contact-detail-label {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--gray-400);
      margin-bottom: 4px;
    }

    .contact-detail-value {
      font-size: 15px;
      font-weight: 600;
      color: var(--white);
    }

    .contact-detail-value a {
      color: var(--white);
      transition: color var(--transition);
    }

    .contact-detail-value a:hover {
      color: var(--teal);
    }

    /* =============================================
       FOOTER
    ============================================= */
    #footer {
      background-color: var(--gray-800);
      background-image:
        radial-gradient(1px 1px at 20% 30%, hsla(200, 80%, 60%, 0.15), transparent),
        radial-gradient(1px 1px at 40% 70%, hsla(200, 80%, 60%, 0.10), transparent),
        radial-gradient(1px 1px at 80% 20%, hsla(200, 80%, 60%, 0.12), transparent),
        radial-gradient(1px 1px at 60% 85%, hsla(200, 80%, 60%, 0.08), transparent);
      background-size: 200px 200px, 150px 150px, 180px 180px, 250px 250px;
      padding: 48px 0 32px;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 48px;
      margin-bottom: 40px;
    }

    .footer-logo-name {
      font-size: 20px;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 6px;
    }

    .footer-tagline {
      font-size: 13px;
      font-weight: 500;
      color: var(--teal-light);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .footer-contact-line {
      font-size: 13px;
      color: rgba(255,255,255,0.45);
      line-height: 1.7;
    }

    .footer-contact-line a {
      color: rgba(255,255,255,0.55);
      transition: color var(--transition);
    }

    .footer-contact-line a:hover {
      color: var(--teal-light);
    }

    .footer-nav {
      display: flex;
      gap: 56px;
    }

    .footer-nav-col h4 {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      margin-bottom: 16px;
    }

    .footer-nav-col ul {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-nav-col ul li a {
      font-size: 14px;
      color: rgba(255,255,255,0.6);
      transition: color var(--transition);
    }

    .footer-nav-col ul li a:hover {
      color: var(--white);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-bottom-text {
      font-size: 13px;
      color: rgba(255,255,255,0.35);
    }

    .footer-bottom-text a {
      color: rgba(255,255,255,0.45);
      transition: color var(--transition);
    }

    .footer-bottom-text a:hover {
      color: var(--teal-light);
    }

    /* =============================================
       FAQ
    ============================================= */
    #faq {
      background: var(--navy);
    }

    .faq-list {
      max-width: 760px;
      margin: 0 auto;
    }

    .faq-item {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 12px;
      margin-bottom: 12px;
      overflow: hidden;
      transition: border-color var(--transition), box-shadow var(--transition);
    }

    .faq-item.open {
      border-left: 4px solid var(--teal);
      box-shadow: 0 4px 24px hsla(200, 80%, 60%, 0.1);
    }

    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 28px;
      background: transparent;
      border: none;
      cursor: pointer;
      text-align: left;
      font-family: var(--font);
      font-size: 16px;
      font-weight: 700;
      color: var(--white);
      gap: 16px;
    }

    .faq-question:hover {
      color: var(--teal);
    }

    .faq-chevron {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      transition: transform 0.3s ease;
      color: var(--teal);
    }

    .faq-item.open .faq-chevron {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }

    .faq-answer-inner {
      padding: 0 28px 24px;
      font-size: 15px;
      color: rgba(255,255,255,0.65);
      line-height: 1.8;
    }

    .faq-item.open .faq-answer {
      max-height: 400px;
    }

    /* =============================================
       RESPONSIVE
    ============================================= */
    @media (max-width: 1024px) {
      .service-card:nth-child(1),
      .service-card:nth-child(2),
      .service-card:nth-child(3) {
        grid-column: span 6;
      }
      .service-card:nth-child(4) {
        grid-column: span 6;
      }
      .service-card:nth-child(5) {
        grid-column: span 12;
      }

      .industries-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .about-grid {
        gap: 48px;
      }

      .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .contact-form-wrap {
        order: 2;
      }

      .contact-info {
        order: 1;
      }
    }

    @media (max-width: 768px) {
      .section {
        padding: 72px 0;
      }

      .hero-overlay-h {
        background: hsla(220, 25%, 4%, 0.90);
      }

      .nav-links,
      .nav-cta .btn {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .service-card:nth-child(1),
      .service-card:nth-child(2),
      .service-card:nth-child(3),
      .service-card:nth-child(4),
      .service-card:nth-child(5) {
        grid-column: 1 / -1;
      }

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

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

      .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }

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

      .process-steps {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .process-steps::before {
        display: none;
      }

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

      .form-row {
        grid-template-columns: 1fr;
      }

      .footer-inner {
        flex-direction: column;
        gap: 40px;
      }

      .footer-nav {
        flex-wrap: wrap;
        gap: 32px;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }

      .hero-ctas {
        flex-direction: column;
        gap: 12px;
      }

      .hero-ctas .btn {
        width: 100%;
        justify-content: center;
      }

      .hero-content {
        max-width: 100%;
        text-align: center;
      }

      .hero-eyebrow {
        justify-content: center;
      }

      .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
      }

      .hero-ctas {
        justify-content: center;
      }

      .capability-badges {
        justify-content: center;
      }
    }

    @media (max-width: 480px) {
      .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
      }

      .contact-form-wrap {
        padding: 28px 20px;
      }
    }
