
    /* ================================================
       DESIGN TOKENS
    ================================================ */
    :root {
      --navy:        #0F2140;
      --navy-mid:    #183460;
      --navy-light:  #1E4080;
      --amber:       #1E9B8F;
      --amber-light: #38B2A6;
      --amber-faint: rgba(217,123,42,0.10);
      --amber-pale:  rgba(217,123,42,0.06);
      --slate:       #445571;
      --slate-light: #8298B8;
      --bg:          #F7F9FB;
      --bg-warm:     #FFFFFF;
      --surface:     #FFFFFF;
      --surface-2:   #EEF1F6;
      --text:        #0F2140;
      --text-2:      #445571;
      --text-3:      #8298B8;
      --border:      rgba(15,33,64,0.10);
      --border-2:    rgba(15,33,64,0.06);
      --ff-display:  'Manrope', Inter, system-ui, sans-serif;
      --ff-serif:    'Manrope', Inter, system-ui, sans-serif;
      --ff-body:     'Inter', system-ui, sans-serif;
      --nav-h:       68px;
      --max-w:       1200px;
      --ease:        cubic-bezier(0.16, 1, 0.3, 1);
      --r:           10px;
    }

    /* ================================================
       RESET
    ================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--ff-body);
      font-weight: 400;
      line-height: 1.65;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    button { cursor: pointer; font-family: inherit; border: none; background: none; }

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

    /* ================================================
       REVEAL ANIMATIONS
    ================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    }
    .reveal.in-view { opacity: 1; transform: none; }
    .d1 { transition-delay: 0.1s !important; }
    .d2 { transition-delay: 0.2s !important; }
    .d3 { transition-delay: 0.3s !important; }
    .d4 { transition-delay: 0.4s !important; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: none; }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    /* ================================================
       NAV
    ================================================ */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: var(--nav-h);
      z-index: 200;
      background: rgba(245,247,250,0.0);
      border-bottom: 1px solid transparent;
      transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    }
    .nav.scrolled {
      background: rgba(245,247,250,0.96);
      border-color: var(--border);
      box-shadow: 0 1px 24px rgba(15,33,64,0.07);
      backdrop-filter: blur(12px);
    }
    .nav-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 48px;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }
    .nav-logo {
      display: flex;
      align-items: baseline;
      gap: 8px;
      flex-shrink: 0;
    }
    .nav-logo-wordmark {
      font-family: var(--ff-display);
      font-weight: 800;
      font-size: 1.3rem;
      letter-spacing: -0.01em;
      color: var(--navy);
      line-height: 1;
    }
    .nav-logo-wordmark .dot { color: var(--amber); }
    .nav-logo-tag {
      font-size: 0.6rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--slate-light);
      font-weight: 500;
      padding: 3px 7px;
      border: 1px solid var(--border);
      border-radius: 2px;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }
    .nav-links li a {
      font-family: var(--ff-display);
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      color: var(--slate);
      transition: color 0.2s;
    }
    .nav-links li a:hover { color: var(--navy); }
    .nav-cta {
      display: inline-flex;
      align-items: center;
      padding: 10px 22px;
      background: var(--navy);
      color: white;
      font-family: var(--ff-display);
      font-size: 0.74rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      border-radius: var(--r);
      flex-shrink: 0;
      transition: background 0.2s, transform 0.15s;
    }
    .nav-cta:hover { background: var(--surface); transform: translateY(-1px); }

    /* ================================================
       HERO
    ================================================ */
    .hero {
      position: relative;
      min-height: 88vh;
      background: linear-gradient(180deg, #FFFFFF 0%, var(--bg) 100%);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    /* Subtle geometric pattern bg */
    .hero-pattern {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(15,33,64,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,33,64,0.035) 1px, transparent 1px);
      background-size: 56px 56px;
      mask-image: radial-gradient(ellipse 80% 80% at 20% 60%, transparent 0%, black 70%);
      -webkit-mask-image: radial-gradient(ellipse 80% 80% at 20% 60%, transparent 0%, black 70%);
      pointer-events: none;
    }

    /* Amber accent shape */
    .hero-accent {
      position: absolute;
      top: 0; right: 0;
      width: 48%;
      height: 100%;
      background: linear-gradient(135deg, rgba(30,155,143,0.10) 0%, rgba(30,155,143,0.04) 50%, transparent 70%);
      pointer-events: none;
    }
    .hero-accent-bar {
      position: absolute;
      top: 0; right: 0;
      width: 5px;
      height: 45%;
      background: linear-gradient(to bottom, var(--amber), transparent);
    }

    /* UAE skyline silhouette SVG strip */
    .hero-skyline {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 180px;
      pointer-events: none;
      opacity: 0.035;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: var(--max-w);
      margin: 0 auto;
      padding: calc(var(--nav-h) + 80px) 48px 120px;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 80px;
      align-items: center;
    }
    .hero-left {}
    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(217,123,42,0.15);
      border: 1px solid rgba(217,123,42,0.3);
      padding: 6px 14px;
      border-radius: 2px;
      margin-bottom: 32px;
      animation: fadeUp 0.8s var(--ease) 0.1s both;
    }
    .hero-kicker-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--amber-light);
      flex-shrink: 0;
    }
    .hero-kicker span {
      font-family: var(--ff-display);
      font-size: 0.65rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--amber-light);
      font-weight: 600;
    }
    .hero-h1 {
      font-family: var(--ff-display);
      font-size: clamp(44px, 5.5vw, 74px);
      font-weight: 800;
      line-height: 1.03;
      letter-spacing: -0.025em;
      color: var(--navy);
      margin-bottom: 28px;
      animation: fadeUp 1s var(--ease) 0.25s both;
    }
    .hero-h1 .highlight {
      color: var(--amber-light);
    }
    .hero-h1 .serif-word {
      font-family: var(--ff-serif);
      font-weight: 400;
      font-style: italic;
    }
    .hero-body {
      font-size: 1rem;
      line-height: 1.75;
      color: var(--text-2);
      max-width: 500px;
      margin-bottom: 44px;
      font-weight: 400;
      animation: fadeUp 0.8s var(--ease) 0.4s both;
    }
    .hero-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      animation: fadeUp 0.8s var(--ease) 0.55s both;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 15px 32px;
      background: var(--teal);
      color: white;
      font-family: var(--ff-display);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      border-radius: var(--r);
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }
    .btn-primary:hover {
      background: var(--amber-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(217,123,42,0.35);
    }
    .btn-outline-light {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 15px 28px;
      background: transparent;
      color: var(--slate);
      font-family: var(--ff-display);
      font-size: 0.82rem;
      font-weight: 500;
      border: 1px solid var(--border);
      border-radius: var(--r);
      transition: color 0.2s, border-color 0.2s;
    }
    .btn-outline-light:hover {
      color: var(--navy);
      border-color: rgba(15,33,64,0.25);
    }

    /* Trust row */
    .hero-trust {
      margin-top: 52px;
      display: flex;
      align-items: center;
      gap: 24px;
      animation: fadeUp 0.8s var(--ease) 0.7s both;
    }
    .hero-trust-divider {
      width: 1px;
      height: 40px;
      background: rgba(15,33,64,0.12);
    }
    .hero-trust-item {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }
    .hero-trust-num {
      font-family: var(--ff-display);
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--navy);
      line-height: 1;
    }
    .hero-trust-label {
      font-size: 0.68rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-3);
    }

    /* Hero right — card */
    .hero-right {
      animation: fadeIn 1s var(--ease) 0.5s both;
    }
    .hero-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 16px 45px rgba(15,33,64,0.10);
    }
    .hero-card-label {
      font-family: var(--ff-display);
      font-size: 0.62rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--amber-light);
      font-weight: 600;
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .hero-card-label::before {
      content: '';
      display: block;
      width: 20px;
      height: 1px;
      background: var(--amber);
    }
    .hero-services-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .hero-svc-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 16px;
      border-radius: 4px;
      transition: background 0.2s;
      cursor: default;
    }
    .hero-svc-item:hover {
      background: var(--surface-2);
    }
    .hero-svc-icon {
      width: 32px;
      height: 32px;
      border-radius: 6px;
      background: var(--amber-faint);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .hero-svc-icon svg {
      width: 16px; height: 16px;
      color: var(--amber-light);
    }
    .hero-svc-name {
      font-family: var(--ff-display);
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--navy);
    }
    .hero-svc-sub {
      font-size: 0.74rem;
      color: var(--text-3);
      line-height: 1.3;
    }
    .hero-svc-arr {
      margin-left: auto;
      color: var(--text-3);
      transition: color 0.2s, transform 0.2s;
    }
    .hero-svc-item:hover .hero-svc-arr {
      color: var(--amber-light);
      transform: translateX(3px);
    }

    /* ================================================
       MARQUEE
    ================================================ */
    .marquee-strip {
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
      padding: 14px 0;
    }
    .marquee-track {
      display: flex;
      white-space: nowrap;
      animation: marqueeScroll 40s linear infinite;
    }
    .marquee-item {
      display: inline-flex;
      align-items: center;
      gap: 18px;
      padding: 0 28px;
      font-family: var(--ff-display);
      font-size: 0.62rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-3);
      flex-shrink: 0;
      font-weight: 500;
    }
    .marquee-sep {
      width: 4px; height: 4px;
      border-radius: 50%;
      background: var(--amber);
      opacity: 0.6;
      flex-shrink: 0;
    }
    @keyframes marqueeScroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ================================================
       SECTION LABELS
    ================================================ */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--ff-display);
      font-size: 0.62rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--amber);
      font-weight: 700;
      margin-bottom: 18px;
    }
    .eyebrow::before {
      content: '';
      display: block;
      width: 24px;
      height: 2px;
      background: var(--amber);
      border-radius: 1px;
    }

    /* ================================================
       SERVICES
    ================================================ */
    .services {
      padding: 120px 0;
      background: var(--bg-warm);
    }
    .services-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: end;
      margin-bottom: 64px;
    }
    .services-h2 {
      font-family: var(--ff-display);
      font-size: clamp(30px, 3.5vw, 48px);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: var(--navy);
    }
    .services-h2 em {
      font-family: var(--ff-serif);
      font-weight: 400;
      font-style: italic;
      color: var(--amber);
    }
    .services-intro {
      font-size: 0.93rem;
      color: var(--text-2);
      line-height: 1.8;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .svc-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 40px 36px;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
      transition: border-color 0.3s, box-shadow 0.3s, transform 0.25s;
    }
    .svc-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--amber), var(--amber-light));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s var(--ease);
      border-radius: 8px 8px 0 0;
    }
    .svc-card:hover {
      border-color: rgba(217,123,42,0.25);
      box-shadow: 0 8px 40px rgba(15,33,64,0.10);
      transform: translateY(-3px);
    }
    .svc-card:hover::before { transform: scaleX(1); }
    .svc-icon-wrap {
      width: 48px; height: 48px;
      border-radius: 10px;
      background: var(--amber-faint);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      transition: background 0.3s;
    }
    .svc-card:hover .svc-icon-wrap { background: rgba(217,123,42,0.16); }
    .svc-icon-wrap svg {
      width: 22px; height: 22px;
      color: var(--amber);
    }
    .svc-title {
      font-family: var(--ff-display);
      font-size: 1.15rem;
      font-weight: 700;
      line-height: 1.2;
      color: var(--navy);
      margin-bottom: 12px;
    }
    .svc-desc {
      font-size: 0.87rem;
      color: var(--text-2);
      line-height: 1.8;
      flex: 1;
      margin-bottom: 28px;
    }
    .svc-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 28px;
    }
    .svc-tag {
      font-family: var(--ff-display);
      font-size: 0.58rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--slate);
      background: var(--surface-2);
      padding: 4px 10px;
      border-radius: 2px;
      font-weight: 600;
    }
    .svc-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--ff-display);
      font-size: 0.74rem;
      font-weight: 700;
      color: var(--amber);
      letter-spacing: 0.02em;
      transition: gap 0.2s;
    }
    .svc-link:hover { gap: 14px; }

    /* ================================================
       STATS
    ================================================ */
    .stats {
      background: var(--surface);
      padding: 56px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }
    .stat-cell {
      padding: 40px 32px;
      text-align: center;
      border-right: 1px solid var(--border);
    }
    .stat-cell:last-child { border-right: none; }
    .stat-val {
      font-family: var(--ff-display);
      font-size: 3.2rem;
      font-weight: 800;
      color: var(--navy);
      line-height: 1;
      margin-bottom: 10px;
      letter-spacing: -0.03em;
    }
    .stat-label {
      font-family: var(--ff-display);
      font-size: 0.66rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-3);
      font-weight: 500;
    }

    /* ================================================
       WHY US
    ================================================ */
    .why {
      padding: 120px 0;
      background: var(--bg);
    }
    .why-header {
      max-width: 620px;
      margin-bottom: 64px;
    }
    .why-h2 {
      font-family: var(--ff-display);
      font-size: clamp(28px, 3vw, 44px);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: var(--navy);
      margin-bottom: 18px;
    }
    .why-intro {
      font-size: 0.93rem;
      color: var(--text-2);
      line-height: 1.8;
    }
    .why-pillars {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .pillar {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 36px 32px;
      transition: border-color 0.3s, box-shadow 0.3s;
    }
    .pillar:hover {
      border-color: rgba(217,123,42,0.2);
      box-shadow: 0 4px 24px rgba(15,33,64,0.08);
    }
    .pillar-num {
      font-family: var(--ff-display);
      font-size: 0.62rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--amber);
      font-weight: 700;
      margin-bottom: 16px;
    }
    .pillar-icon-wrap {
      width: 44px; height: 44px;
      border-radius: 8px;
      background: var(--amber-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    .pillar-icon-wrap svg { width: 20px; height: 20px; color: var(--amber); }
    .pillar-title {
      font-family: var(--ff-display);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 12px;
    }
    .pillar-desc {
      font-size: 0.86rem;
      color: var(--text-2);
      line-height: 1.8;
    }

    /* ================================================
       PROCESS
    ================================================ */
    .process {
      padding: 120px 0;
      background: linear-gradient(180deg, #FFFFFF 0%, var(--bg) 100%);
      overflow: hidden;
      position: relative;
    }
    .process::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 48px;
      right: 48px;
      height: 1px;
      background: var(--surface-2);
      transform: translateY(-50%);
    }
    .process-header {
      margin-bottom: 72px;
      position: relative;
      z-index: 1;
    }
    .process-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--ff-display);
      font-size: 0.62rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--amber-light);
      font-weight: 700;
      margin-bottom: 18px;
    }
    .process-eyebrow::before {
      content: '';
      display: block;
      width: 24px;
      height: 2px;
      background: var(--amber);
      border-radius: 1px;
    }
    .process-h2 {
      font-family: var(--ff-display);
      font-size: clamp(28px, 3vw, 44px);
      font-weight: 800;
      color: var(--navy);
      letter-spacing: -0.02em;
    }
    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      position: relative;
      z-index: 1;
    }
    .process-step {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 32px 28px;
      transition: background 0.3s, border-color 0.3s;
    }
    .process-step:hover {
      background: var(--surface-2);
      border-color: rgba(217,123,42,0.25);
    }
    .step-num {
      font-family: var(--ff-display);
      font-size: 2.4rem;
      font-weight: 800;
      color: rgba(217,123,42,0.2);
      line-height: 1;
      margin-bottom: 20px;
      letter-spacing: -0.03em;
    }
    .step-title {
      font-family: var(--ff-display);
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px;
    }
    .step-desc {
      font-size: 0.84rem;
      color: var(--text-3);
      line-height: 1.75;
    }

    /* ================================================
       ABOUT
    ================================================ */
    .about {
      padding: 120px 0;
      background: var(--bg-warm);
    }
    .about-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about-h2 {
      font-family: var(--ff-display);
      font-size: clamp(28px, 3.5vw, 46px);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: var(--navy);
      margin-bottom: 24px;
    }
    .about-h2 em {
      font-family: var(--ff-serif);
      font-weight: 400;
      font-style: italic;
      color: var(--amber);
    }
    .about-body {
      font-size: 0.92rem;
      color: var(--text-2);
      line-height: 1.85;
      margin-bottom: 20px;
    }
    .about-values {
      display: flex;
      gap: 12px;
      margin-top: 36px;
      flex-wrap: wrap;
    }
    .about-value {
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 8px 16px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r);
    }
    .about-value::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--amber);
      flex-shrink: 0;
    }
    .about-value span {
      font-family: var(--ff-display);
      font-size: 0.76rem;
      font-weight: 600;
      color: var(--slate);
    }
    .about-right {
      position: relative;
    }
    .about-quote-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 48px;
      position: relative;
      overflow: hidden;
    }
    .about-quote-card::after {
      content: '"';
      position: absolute;
      top: -10px; right: 24px;
      font-family: var(--ff-serif);
      font-size: 160px;
      color: rgba(217,123,42,0.1);
      line-height: 1;
      pointer-events: none;
    }
    .about-quote-text {
      font-family: var(--ff-serif);
      font-size: 1.3rem;
      font-weight: 400;
      font-style: italic;
      color: var(--navy);
      line-height: 1.65;
      margin-bottom: 28px;
      position: relative;
      z-index: 1;
    }
    .about-quote-sig {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .about-quote-sig-bar {
      width: 28px; height: 2px;
      background: var(--amber);
      border-radius: 1px;
    }
    .about-quote-sig-text {
      font-family: var(--ff-display);
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
    }
    .about-floating-badge {
      position: absolute;
      top: -18px;
      right: -18px;
      background: var(--teal);
      color: white;
      border-radius: 8px;
      padding: 14px 20px;
      text-align: center;
      box-shadow: 0 8px 32px rgba(217,123,42,0.4);
    }
    .badge-num {
      font-family: var(--ff-display);
      font-size: 1.7rem;
      font-weight: 800;
      line-height: 1;
    }
    .badge-label {
      font-family: var(--ff-display);
      font-size: 0.58rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 600;
      opacity: 0.85;
    }

    /* ================================================
       CTA SECTION
    ================================================ */
    .cta-section {
      padding: 120px 0;
      background: var(--bg);
      position: relative;
      overflow: hidden;
    }
    .cta-bg-shape {
      position: absolute;
      top: 50%; right: -120px;
      transform: translateY(-50%);
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(217,123,42,0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-inner {
      max-width: 720px;
      position: relative;
      z-index: 1;
    }
    .cta-h2 {
      font-family: var(--ff-display);
      font-size: clamp(32px, 4vw, 54px);
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -0.025em;
      color: var(--navy);
      margin-bottom: 20px;
    }
    .cta-h2 em {
      font-family: var(--ff-serif);
      font-weight: 400;
      font-style: italic;
      color: var(--amber);
    }
    .cta-sub {
      font-size: 0.97rem;
      color: var(--text-2);
      line-height: 1.8;
      max-width: 560px;
      margin-bottom: 44px;
    }
    .cta-btns {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }
    .btn-primary-dark {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 16px 36px;
      background: var(--navy);
      color: white;
      font-family: var(--ff-display);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      border-radius: var(--r);
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }
    .btn-primary-dark:hover {
      background: var(--surface);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(15,33,64,0.25);
    }
    .btn-outline-dark {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 16px 28px;
      background: transparent;
      color: var(--slate);
      font-family: var(--ff-display);
      font-size: 0.82rem;
      font-weight: 500;
      border: 1px solid var(--border);
      border-radius: var(--r);
      transition: color 0.2s, border-color 0.2s;
    }
    .btn-outline-dark:hover {
      color: var(--navy);
      border-color: rgba(15,33,64,0.25);
    }
    .cta-contact-row {
      margin-top: 48px;
      display: flex;
      align-items: center;
      gap: 32px;
      padding-top: 40px;
      border-top: 1px solid var(--border);
    }
    .cta-contact-item {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .cta-contact-icon {
      width: 36px; height: 36px;
      border-radius: 8px;
      background: var(--amber-faint);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .cta-contact-icon svg { width: 16px; height: 16px; color: var(--amber); }
    .cta-contact-info { display: flex; flex-direction: column; gap: 2px; }
    .cta-contact-type {
      font-family: var(--ff-display);
      font-size: 0.6rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-3);
      font-weight: 600;
    }
    .cta-contact-val {
      font-family: var(--ff-display);
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--navy);
    }
    .cta-contact-val a { transition: color 0.2s; }
    .cta-contact-val a:hover { color: var(--amber); }

    /* ================================================
       FOOTER
    ================================================ */
    .footer {
      background: var(--navy);
      padding: 80px 0 0;
    }
    .footer-upper {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 64px;
      border-bottom: 1px solid var(--border);
    }
    .footer-brand-wordmark {
      font-family: var(--ff-display);
      font-size: 1.5rem;
      font-weight: 800;
      color: white;
      letter-spacing: -0.01em;
      margin-bottom: 4px;
    }
    .footer-brand-wordmark .dot { color: var(--amber); }
    .footer-brand-tagline {
      font-family: var(--ff-display);
      font-size: 0.62rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-3);
      font-weight: 500;
      margin-bottom: 20px;
    }
    .footer-brand-desc {
      font-size: 0.85rem;
      color: var(--text-3);
      line-height: 1.8;
      max-width: 280px;
    }
    .footer-col-hd {
      font-family: var(--ff-display);
      font-size: 0.65rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      font-weight: 700;
      margin-bottom: 20px;
    }
    .footer-nav { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-nav li a {
      font-size: 0.86rem;
      color: rgba(255,255,255,0.5);
      transition: color 0.2s;
    }
    .footer-nav li a:hover { color: white; }
    .footer-contact-text {
      font-size: 0.86rem;
      color: rgba(255,255,255,0.5);
      line-height: 1.9;
    }
    .footer-contact-text a { transition: color 0.2s; }
    .footer-contact-text a:hover { color: var(--amber-light); }
    .footer-lower {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 0;
    }
    .footer-copy {
      font-family: var(--ff-display);
      font-size: 0.74rem;
      color: rgba(255,255,255,0.25);
    }
    .footer-legal {
      display: flex;
      gap: 24px;
    }
    .footer-legal a {
      font-family: var(--ff-display);
      font-size: 0.74rem;
      color: rgba(255,255,255,0.25);
      transition: color 0.2s;
    }
    .footer-legal a:hover { color: rgba(255,255,255,0.6); }

    /* ================================================
       RESPONSIVE
    ================================================ */
    @media (max-width: 900px) {
      .container { padding: 0 24px; }
      .nav-inner { padding: 0 24px; }
      .nav-links { display: none; }
      .hero-content { grid-template-columns: 1fr; gap: 48px; padding-bottom: 80px; }
      .hero-right { display: none; }
      .services-header { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .why-pillars { grid-template-columns: 1fr; }
      .process-steps { grid-template-columns: repeat(2, 1fr); }
      .about-layout { grid-template-columns: 1fr; }
      .footer-upper { grid-template-columns: 1fr 1fr; }
      .cta-contact-row { flex-direction: column; align-items: flex-start; }
    }

    /* Minimal SME-accessible refinements */
    .hero-h1 .serif-word {
      font-family: inherit;
      font-style: normal;
      font-weight: 800;
    }
    .hero-h1 .highlight {
      color: var(--teal);
    }
    .hero-kicker {
      background: var(--teal-soft);
      border-color: rgba(30,155,143,0.18);
    }
    .hero-kicker span {
      color: var(--teal-dark);
    }
    .btn-outline-light {
      color: var(--navy);
      border-color: var(--border);
      background: var(--surface);
    }
    .hero-trust-divider {
      background: var(--border);
    }
    .hero-svc-item:hover {
      background: var(--surface-2);
    }
    .hero-svc-name {
      color: var(--navy);
    }
    .marquee-track {
      animation-duration: 60s;
    }
    .marquee-strip {
      display: none;
    }
    .process-step {
      background: var(--surface);
    }
    .process-step:hover {
      background: var(--surface);
      border-color: rgba(30,155,143,0.22);
    }
    .step-title {
      color: var(--navy);
    }
    .step-desc {
      color: var(--text-2);
    }
    .process-h2 {
      color: var(--navy);
    }
    .about-quote-card::after {
      color: rgba(30,155,143,0.08);
    }
    .about-quote-sig-text {
      color: var(--text-3);
    }
    .footer-brand-wordmark {
      text-transform: none;
    }


    /* ================================================
       PRODUCTION UI REFINEMENTS
       Minimal, SME-accessible, calmer component system
    ================================================ */
    :root {
      --r-card: 22px;
      --r-panel: 28px;
      --r-button: 999px;
      --shadow-sm: 0 10px 28px rgba(15,33,64,0.06);
      --shadow-md: 0 18px 50px rgba(15,33,64,0.09);
    }

    body {
      letter-spacing: -0.006em;
    }

    .top-strip {
      font-size: 13px;
    }

    .top-strip-inner {
      min-height: 38px;
    }

    .nav {
      --nav-h: 66px;
    }

    .nav-inner {
      height: 66px;
    }

    .nav-logo-wordmark,
    .footer-brand-wordmark {
      text-transform: none;
      letter-spacing: -0.04em;
    }

    .nav-logo-tag {
      display: none;
    }

    .nav-links li a,
    .nav-cta,
    .btn-primary,
    .btn-primary-dark,
    .btn-outline-light,
    .btn-outline-dark,
    .svc-link {
      letter-spacing: 0;
      text-transform: none;
    }

    .nav-links li a {
      font-size: 0.9rem;
      font-family: var(--ff-body);
      font-weight: 600;
    }

    .nav-cta {
      border-radius: var(--r-button);
      padding: 10px 18px;
      font-size: 0.86rem;
    }

    .container,
    .nav-inner,
    .hero-content {
      padding-left: 40px;
      padding-right: 40px;
    }

    .hero {
      min-height: auto;
      padding: 86px 0 72px;
    }

    .hero-content {
      padding-top: 86px;
      padding-bottom: 0;
      gap: 96px;
      grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
    }

    .hero-kicker,
    .eyebrow,
    .process-eyebrow {
      letter-spacing: 0.02em;
      text-transform: none;
      border-radius: var(--r-button);
      font-size: 0.86rem;
      font-family: var(--ff-body);
      font-weight: 700;
    }

    .hero-kicker {
      padding: 7px 12px;
      margin-bottom: 24px;
    }

    .hero-kicker span {
      letter-spacing: 0;
      text-transform: none;
      font-size: 0.86rem;
      font-family: var(--ff-body);
    }

    .hero-h1 {
      font-size: clamp(44px, 5.2vw, 68px);
      line-height: 1.04;
      letter-spacing: -0.055em;
      margin-bottom: 22px;
    }

    .hero-body {
      font-size: 1.08rem;
      line-height: 1.72;
      max-width: 620px;
      margin-bottom: 32px;
    }

    .hero-actions {
      gap: 12px;
    }

    .btn-primary,
    .btn-primary-dark,
    .btn-outline-light,
    .btn-outline-dark {
      border-radius: var(--r-button);
      padding: 13px 24px;
      font-size: 0.94rem;
      font-family: var(--ff-body);
    }

    .hero-trust {
      margin-top: 32px;
      gap: 18px;
    }

    .hero-trust-num {
      font-size: 1.04rem;
      font-weight: 800;
    }

    .hero-trust-label {
      font-family: var(--ff-body);
      font-size: 0.78rem;
      letter-spacing: 0;
      text-transform: none;
    }

    .hero-right {
      align-self: center;
    }

    /* Simplified single-layer hero card */
    .hero-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-panel);
      padding: 0;
      box-shadow: var(--shadow-md);
      overflow: hidden;
      max-width: 460px;
      margin-left: auto;
    }

    .hero-card-label {
      padding: 24px 24px 0;
      margin-bottom: 18px;
      color: var(--teal-dark);
      font-family: var(--ff-body);
      font-size: 0.82rem;
      letter-spacing: 0;
      text-transform: none;
      font-weight: 800;
    }

    .hero-card-label::before {
      display: none;
    }

    .hero-services-list {
      gap: 0;
      padding: 0 14px 14px;
    }

    .hero-svc-item {
      padding: 16px 14px;
      border-radius: 16px;
      gap: 14px;
    }

    .hero-svc-icon {
      width: 40px;
      height: 40px;
      border-radius: 13px;
    }

    .hero-svc-name {
      font-family: var(--ff-display);
      font-size: 1rem;
      letter-spacing: -0.02em;
    }

    .hero-svc-sub {
      font-size: 0.82rem;
      color: var(--muted);
    }

    .hero-pattern,
    .hero-skyline,
    .hero-accent-bar {
      display: none;
    }

    .hero-accent {
      opacity: 0.75;
    }

    /* Trust strip: replace table feel with card feel */
    .stats {
      background: var(--bg);
      border: 0;
      padding: 34px 0 18px;
    }

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

    .stat-cell {
      background: var(--surface);
      border: 1px solid var(--border) !important;
      border-radius: 18px;
      padding: 22px 18px;
      text-align: left;
      box-shadow: var(--shadow-sm);
    }

    .stat-val {
      font-size: 1.45rem;
      margin-bottom: 6px;
      color: var(--teal-dark);
    }

    .stat-label {
      font-family: var(--ff-body);
      font-size: 0.86rem;
      letter-spacing: 0;
      text-transform: none;
      color: var(--muted);
    }

    /* Section rhythm */
    .services,
    .why,
    .about,
    .cta-section {
      padding: 96px 0;
    }

    .process {
      padding: 96px 0;
    }

    .services-header,
    .why-header,
    .process-header {
      margin-bottom: 44px;
    }

    .services-h2,
    .why-h2,
    .process-h2,
    .about-h2,
    .cta-h2 {
      letter-spacing: -0.05em;
    }

    .services-intro,
    .why-intro,
    .about-body,
    .cta-sub {
      font-size: 1rem;
      line-height: 1.72;
    }

    /* Service cards: cleaner hierarchy and less heaviness */
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .svc-card {
      border-radius: var(--r-card);
      padding: 26px;
      box-shadow: none;
      min-height: 0;
    }

    .svc-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
    }

    .svc-card::before {
      display: none;
    }

    .svc-icon-wrap {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      margin-bottom: 18px;
    }

    .svc-title {
      font-size: 1.12rem;
      letter-spacing: -0.02em;
      margin-bottom: 8px;
    }

    .svc-desc {
      font-size: 0.92rem;
      line-height: 1.66;
      margin-bottom: 18px;
    }

    .svc-tags {
      margin-bottom: 20px;
      gap: 7px;
    }

    .svc-tag {
      border-radius: var(--r-button);
      padding: 5px 10px;
      font-size: 0.7rem;
      letter-spacing: 0;
      text-transform: none;
      font-family: var(--ff-body);
      font-weight: 600;
      color: var(--muted);
    }

    .svc-link {
      width: fit-content;
      background: var(--teal-soft);
      color: var(--teal-dark);
      padding: 8px 12px;
      border-radius: var(--r-button);
      font-size: 0.86rem;
    }

    /* Why/process cards */
    .pillar,
    .process-step {
      border-radius: var(--r-card);
      box-shadow: none;
    }

    .pillar {
      padding: 28px;
    }

    .pillar-num,
    .process-eyebrow,
    .eyebrow {
      letter-spacing: 0;
      text-transform: none;
    }

    .pillar-title,
    .step-title {
      font-size: 1.08rem;
      letter-spacing: -0.02em;
    }

    .pillar-desc,
    .step-desc {
      font-size: 0.93rem;
      line-height: 1.66;
    }

    .process::before {
      display: none;
    }

    .process-steps {
      gap: 16px;
    }

    .process-step {
      padding: 26px;
    }

    .step-num {
      font-size: 1.5rem;
      color: var(--teal-dark);
      opacity: 1;
      margin-bottom: 22px;
    }

    /* About: lighter, cleaner quote */
    .about-layout {
      gap: 64px;
    }

    .about-quote-card {
      border-radius: var(--r-panel);
      padding: 42px;
      box-shadow: var(--shadow-sm);
    }

    .about-floating-badge {
      display: none;
    }

    .about-quote-text {
      font-family: var(--ff-display);
      font-style: normal;
      font-size: 1.28rem;
      line-height: 1.55;
      letter-spacing: -0.03em;
    }

    .about-values {
      gap: 10px;
      margin-top: 28px;
    }

    .about-value {
      border-radius: var(--r-button);
      padding: 8px 14px;
    }

    /* CTA: contained block instead of full loose section */
    .cta-section {
      background: var(--bg);
    }

    .cta-inner {
      max-width: none;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-panel);
      padding: 46px;
      box-shadow: var(--shadow-sm);
    }

    .cta-contact-row {
      margin-top: 34px;
      padding-top: 28px;
      gap: 24px;
    }

    .cta-contact-icon {
      border-radius: 13px;
    }

    .cta-contact-type {
      font-family: var(--ff-body);
      letter-spacing: 0;
      text-transform: none;
      font-size: 0.76rem;
    }

    .cta-contact-val {
      font-family: var(--ff-body);
      font-size: 0.94rem;
    }

    .cta-bg-shape {
      display: none;
    }

    /* Footer polish */
    .footer {
      padding-top: 64px;
    }

    .footer-upper {
      gap: 36px;
      padding-bottom: 48px;
    }

    .footer-col-hd,
    .footer-brand-tagline,
    .footer-copy,
    .footer-legal a {
      font-family: var(--ff-body);
      letter-spacing: 0;
      text-transform: none;
    }

    @media (max-width: 900px) {
      .container,
      .nav-inner,
      .hero-content {
        padding-left: 24px;
        padding-right: 24px;
      }

      .hero {
        padding-top: 72px;
      }

      .hero-content {
        padding-top: 64px;
        gap: 36px;
      }

      .hero-right {
        display: block;
      }

      .hero-card {
        margin-left: 0;
        max-width: none;
      }

      .stats-grid,
      .services-grid,
      .process-steps,
      .why-pillars,
      .footer-upper {
        grid-template-columns: 1fr 1fr;
      }

      .services-header {
        gap: 20px;
      }

      .cta-inner {
        padding: 32px;
      }
    }

    @media (max-width: 640px) {
      .top-strip {
        display: none;
      }

      .nav,
      .nav-inner {
        height: 64px;
      }

      .nav-cta {
        display: none;
      }

      .hero-h1 {
        font-size: clamp(38px, 12vw, 52px);
      }

      .hero-body {
        font-size: 1rem;
      }

      .hero-trust {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .hero-trust-divider {
        display: none;
      }

      .hero-trust-item {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 12px 14px;
      }

      .hero-card {
        border-radius: 22px;
      }

      .stats-grid,
      .services-grid,
      .process-steps,
      .why-pillars,
      .footer-upper {
        grid-template-columns: 1fr;
      }

      .stats {
        padding-top: 20px;
      }

      .services,
      .why,
      .process,
      .about,
      .cta-section {
        padding: 68px 0;
      }

      .services-header,
      .about-layout {
        gap: 28px;
      }

      .svc-card,
      .pillar,
      .process-step {
        padding: 22px;
      }

      .cta-inner {
        padding: 26px;
      }

      .cta-btns {
        align-items: stretch;
      }

      .cta-contact-row {
        gap: 16px;
      }

      .footer-lower {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }
    }


    /* ================================================
       MOBILE LAYOUT FIX
       Prevent oversized/off-canvas hero and card overlap
    ================================================ */
    @media (max-width: 900px) {
      html,
      body {
        overflow-x: hidden;
      }

      .nav {
        position: sticky;
        height: 64px;
        background: rgba(247,249,251,0.98);
        border-bottom: 1px solid var(--border);
        box-shadow: none;
      }

      .nav-inner {
        height: 64px;
        padding: 0 20px;
      }

      .nav-logo {
        align-items: center;
      }

      .nav-logo-wordmark {
        font-size: 1.55rem;
      }

      .hero {
        min-height: auto;
        padding: 0;
        background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
      }

      .hero-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 54px 20px 48px;
      }

      .hero-left,
      .hero-right {
        width: 100%;
        min-width: 0;
      }

      .hero-h1 {
        max-width: 100%;
        font-size: clamp(42px, 13vw, 58px);
        line-height: 1.02;
        letter-spacing: -0.065em;
        margin-bottom: 20px;
      }

      .hero-body {
        max-width: 100%;
        font-size: 1.02rem;
        line-height: 1.65;
        margin-bottom: 26px;
      }

      .hero-kicker {
        max-width: 100%;
        margin-bottom: 20px;
      }

      .hero-trust {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 24px;
      }

      .hero-trust-divider {
        display: none;
      }

      .hero-trust-item {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 12px 14px;
      }

      .hero-card {
        max-width: 100%;
        width: 100%;
        margin: 0;
        border-radius: 22px;
        box-shadow: 0 14px 36px rgba(15,33,64,0.08);
      }

      .hero-card-label {
        padding: 22px 20px 0;
        margin-bottom: 14px;
      }

      .hero-services-list {
        padding: 0 12px 12px;
      }

      .hero-svc-item {
        display: grid;
        grid-template-columns: 40px 1fr;
        gap: 12px;
        padding: 14px 12px;
        align-items: start;
      }

      .hero-svc-arr {
        display: none;
      }

      .hero-svc-icon {
        width: 40px;
        height: 40px;
      }

      .hero-svc-name {
        font-size: 0.98rem;
      }

      .hero-svc-sub {
        font-size: 0.82rem;
        line-height: 1.4;
      }

      .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .hero-actions a,
      .cta-btns a {
        width: 100%;
        justify-content: center;
      }

      .stats-grid,
      .services-grid,
      .why-pillars,
      .process-steps,
      .about-layout,
      .footer-upper {
        grid-template-columns: 1fr;
      }

      .services-header {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .container {
        padding-left: 20px;
        padding-right: 20px;
      }

      .services,
      .why,
      .process,
      .about,
      .cta-section {
        padding: 62px 0;
      }
    }

    @media (max-width: 520px) {
      .nav-inner {
        padding: 0 18px;
      }

      .nav-logo-wordmark {
        font-size: 1.42rem;
      }

      .hero-content {
        padding: 44px 18px 42px;
      }

      .hero-h1 {
        font-size: clamp(38px, 12.4vw, 50px);
        line-height: 1.04;
      }

      .hero-body {
        font-size: 0.98rem;
      }

      .hero-kicker {
        font-size: 0.78rem;
        padding: 6px 10px;
      }

      .hero-kicker span {
        font-size: 0.78rem;
      }

      .btn-primary,
      .btn-primary-dark,
      .btn-outline-light,
      .btn-outline-dark {
        padding: 12px 18px;
        min-height: 46px;
      }

      .stat-cell,
      .svc-card,
      .pillar,
      .process-step,
      .cta-inner {
        padding: 22px;
      }

      .about-quote-card {
        padding: 28px;
      }

      .about-quote-text {
        font-size: 1.08rem;
      }

      .footer-upper {
        gap: 28px;
      }
    }

  

    /* ===================== FOUR-PAGE SITE REFINEMENTS ===================== */
    .nav-links a.active {
      color: var(--amber);
    }

    .mobile-menu-btn {
      display: none;
      width: 42px;
      height: 42px;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: var(--surface);
      color: var(--navy);
      position: relative;
      z-index: 240;
    }

    .mobile-menu-btn span {
      width: 17px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      transition: transform 0.22s ease, opacity 0.22s ease;
    }

    .mobile-menu-btn.is-open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-btn.is-open span:nth-child(2) {
      opacity: 0;
    }

    .mobile-menu-btn.is-open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu-panel {
      display: none;
    }

    .page-hero .hero-content {
      padding-bottom: 0;
    }

    .page-hero .hero-card {
      max-width: 460px;
    }

    .page-hero .hero-services-list {
      padding-bottom: 10px;
    }

    .page-hero .hero-svc-item {
      min-height: auto;
    }

    .page-hero .hero-h1 {
      max-width: 760px;
    }

    .compact-hero .hero-actions {
      display: none;
    }

    .about-story-grid,
    .services-feature-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .service-detail-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .service-detail-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-card);
      padding: 26px;
      min-height: 230px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .service-detail-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
    }

    .service-detail-card h3 {
      font-family: var(--ff-display);
      color: var(--navy);
      font-size: 1.14rem;
      letter-spacing: -0.02em;
      margin-bottom: 10px;
    }

    .service-detail-card p {
      color: var(--text-2);
      font-size: 0.94rem;
      line-height: 1.68;
      margin-bottom: 18px;
    }

    .service-detail-list {
      list-style: none;
      display: grid;
      gap: 8px;
    }

    .service-detail-list li {
      color: var(--text-2);
      font-size: 0.9rem;
      padding-left: 18px;
      position: relative;
    }

    .service-detail-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.72em;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--amber);
    }

    .story-tags-hidden .svc-tags {
      display: none;
    }

    .redesigned-quote {
      display: grid;
      gap: 16px;
    }

    .quote-line-one {
      display: block;
      color: var(--navy);
      opacity: 0.92;
      font-size: clamp(1.35rem, 3vw, 2.1rem);
      line-height: 1.14;
      letter-spacing: -0.04em;
      font-weight: 650;
    }

    .quote-line-two {
      display: block;
      color: var(--navy);
      font-size: clamp(2rem, 4.4vw, 3.4rem);
      line-height: 0.98;
      letter-spacing: -0.065em;
      font-weight: 800;
    }

    .about-quote-card .about-quote-sig-text {
      color: var(--text-3);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 18px;
      align-items: start;
    }

    .contact-panel {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-panel);
      padding: 34px;
      box-shadow: var(--shadow-sm);
    }

    .contact-methods {
      display: grid;
      gap: 12px;
      margin-top: 26px;
    }

    .contact-method {
      display: grid;
      grid-template-columns: 46px 1fr;
      gap: 14px;
      align-items: start;
      background: var(--surface-2);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 15px;
    }

    .contact-icon {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      background: var(--amber-faint);
      color: var(--amber);
      display: grid;
      place-items: center;
    }

    .contact-method strong {
      display: block;
      color: var(--navy);
      font-size: 0.96rem;
      margin-bottom: 3px;
    }

    .contact-method span,
    .contact-method a {
      color: var(--text-2);
      font-size: 0.9rem;
    }

    .form-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-panel);
      padding: 34px;
      box-shadow: var(--shadow-sm);
    }

    .form-grid {
      display: grid;
      gap: 14px;
    }

    .field label {
      display: block;
      color: var(--navy);
      font-size: 0.84rem;
      font-weight: 700;
      margin-bottom: 7px;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      border: 1px solid var(--border);
      border-radius: 14px;
      background: var(--bg);
      color: var(--navy);
      font: inherit;
      padding: 13px 14px;
      outline: none;
      transition: border-color 0.2s ease, background 0.2s ease;
    }

    .field textarea {
      min-height: 128px;
      resize: vertical;
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      border-color: rgba(30,155,143,0.42);
      background: var(--surface);
    }

    @media (max-width: 900px) {
      .nav-links,
      .nav-cta {
        display: none;
      }

      .mobile-menu-btn {
        display: inline-flex;
      }

      .mobile-menu-panel {
        display: grid;
        position: fixed;
        top: var(--nav-h);
        left: 16px;
        right: 16px;
        padding: 12px;
        background: rgba(255,255,255,0.98);
        border: 1px solid var(--border);
        border-radius: 18px;
        box-shadow: 0 18px 50px rgba(15,33,64,0.14);
        opacity: 0;
        transform: translateY(-12px);
        pointer-events: none;
        transition: opacity 0.22s ease, transform 0.22s ease;
        z-index: 230;
      }

      .mobile-menu-panel.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
      }

      .mobile-menu-panel a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 46px;
        padding: 11px 13px;
        border-radius: 12px;
        color: var(--navy);
        font-family: var(--ff-body);
        font-size: 0.95rem;
        font-weight: 650;
      }

      .mobile-menu-panel a:hover,
      .mobile-menu-panel a.active {
        background: var(--surface-2);
        color: var(--amber);
      }

      .mobile-menu-panel .mobile-menu-cta {
        margin-top: 6px;
        justify-content: center;
        color: white;
        background: var(--amber);
      }

      .about-story-grid,
      .services-feature-grid,
      .service-detail-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .quote-line-one {
        font-size: 1.24rem;
        line-height: 1.22;
      }

      .quote-line-two {
        font-size: 2.15rem;
        line-height: 1.02;
        letter-spacing: -0.06em;
      }

      .contact-panel,
      .form-card {
        padding: 24px;
      }
    }

    /* =====================================================
       FINAL MOBILE MENU OVERRIDE — must remain last
       Matches About page mobile menu CTA style across all pages
    ===================================================== */
    @media screen and (max-width: 900px) {
      html body nav.nav a.nav-cta,
      html body .nav a.nav-cta,
      html body a.nav-cta {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        width: 0 !important;
        min-width: 0 !important;
        max-width: 0 !important;
        height: 0 !important;
        min-height: 0 !important;
        max-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
      }

      html body .mobile-menu-panel a.mobile-menu-cta,
      html body .mobile-menu-panel a.mobile-menu-cta:link,
      html body .mobile-menu-panel a.mobile-menu-cta:visited,
      html body .mobile-menu-panel a.mobile-menu-cta:hover,
      html body .mobile-menu-panel a.mobile-menu-cta:focus,
      html body .mobile-menu-panel a.mobile-menu-cta:active {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        min-height: 56px !important;
        margin: 6px 0 0 !important;
        padding: 14px 18px !important;
        border-radius: 14px !important;
        background: #0F2140 !important;
        background-color: #0F2140 !important;
        background-image: none !important;
        border: 1px solid #0F2140 !important;
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
        font-family: var(--ff-body) !important;
        font-size: 0.95rem !important;
        font-weight: 800 !important;
        line-height: 1.2 !important;
        text-align: center !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        transform: none !important;
      }
    }

  
    /* Hide header CTA on mobile; keep menu CTA visible */
    @media screen and (max-width: 900px) {
      html body .nav-inner > a.nav-cta,
      html body nav.nav .nav-inner > a.nav-cta,
      html body .nav .nav-inner > a.nav-cta {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
      }
    }

  