
    /* ================================================
       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;
      }
    }

  
/* =====================================================
   Home hero redesign — image-led authority layout
   Added to match the requested homepage design concept.
===================================================== */
.hero-redesign {
  isolation: isolate;
  min-height: 0;
  margin: 0 auto;
  padding: 56px 0 72px;
  background: #ffffff;
  overflow: hidden;
}

.hero-redesign .hero-image-bg,
.hero-redesign .hero-image-wash,
.hero-redesign .hero-image-vignette {
  position: absolute;
  inset: 56px clamp(24px, 6vw, 86px) 72px;
  border-radius: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-redesign .hero-image-bg {
  z-index: 0;
  background: #dfe7ec;
}

.hero-redesign .hero-image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(100%) saturate(80%) contrast(1.02) brightness(1.06);
  transform: scale(1.01);
}

.hero-redesign .hero-image-wash {
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(245,248,249,0.96) 0%,
      rgba(245,248,249,0.90) 28%,
      rgba(245,248,249,0.62) 48%,
      rgba(245,248,249,0.18) 66%,
      rgba(245,248,249,0.02) 100%),
    linear-gradient(180deg,
      rgba(255,255,255,0.14) 0%,
      rgba(15,33,64,0.05) 100%);
}

.hero-redesign .hero-image-vignette {
  z-index: 1;
  box-shadow: inset 0 0 0 1px rgba(15,33,64,0.04), inset 0 -120px 160px rgba(15,33,64,0.12);
}

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

.hero-redesign .hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  min-height: 574px;
  padding: 96px 32px 84px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 72px;
}

.hero-redesign .hero-left {
  max-width: 520px;
}

.hero-redesign .hero-kicker {
  background: rgba(255,255,255,0.52);
  border: 1px solid rgba(15,33,64,0.08);
  box-shadow: 0 10px 35px rgba(15,33,64,0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--navy);
  margin-bottom: 20px;
}

.hero-redesign .hero-kicker-dot {
  background: var(--teal);
}

.hero-redesign .hero-kicker span {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-redesign .hero-h1 {
  max-width: 470px;
  color: var(--navy);
  font-size: clamp(42px, 4.2vw, 62px);
  line-height: 0.99;
  letter-spacing: -0.07em;
  margin-bottom: 22px;
}

.hero-redesign .hero-body {
  max-width: 510px;
  color: rgba(15,33,64,0.72);
  font-size: 1rem;
  line-height: 1.72;
  margin-bottom: 28px;
}

.hero-redesign .hero-actions {
  gap: 14px;
}

.hero-redesign .btn-primary-dark {
  background: var(--navy);
  border-color: var(--navy);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(15,33,64,0.18);
}

.hero-redesign .btn-primary-dark:hover {
  background: #152b52;
  transform: translateY(-2px);
}

.hero-redesign .btn-outline-light {
  background: rgba(255,255,255,0.82);
  border-color: rgba(255,255,255,0.78);
  color: rgba(15,33,64,0.78);
  box-shadow: 0 12px 28px rgba(15,33,64,0.06);
}

.hero-redesign .btn-outline-light:hover {
  color: var(--navy);
  background: #ffffff;
  border-color: #ffffff;
}

.hero-redesign .hero-trust {
  margin-top: 30px;
  gap: 24px;
}

.hero-redesign .hero-trust-num {
  font-size: 0.94rem;
  color: var(--navy);
}

.hero-redesign .hero-trust-label {
  color: rgba(15,33,64,0.38);
  font-size: 0.7rem;
}

.hero-redesign .hero-trust-divider {
  background: rgba(15,33,64,0.10);
  height: 34px;
}

.hero-redesign .hero-right {
  align-self: center;
  display: block;
}

.hero-redesign .hero-card {
  width: min(100%, 372px);
  margin-left: auto;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(255,255,255,0.84);
  border-radius: 24px;
  box-shadow: 0 26px 70px rgba(15,33,64,0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-redesign .hero-card-label {
  padding: 26px 26px 0;
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
}

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

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

.hero-redesign .hero-svc-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(30,155,143,0.09);
}

.hero-redesign .hero-svc-icon svg {
  color: var(--teal);
}

.hero-redesign .hero-svc-name {
  color: var(--navy);
  font-size: 0.94rem;
  letter-spacing: -0.02em;
}

.hero-redesign .hero-svc-sub {
  color: rgba(15,33,64,0.52);
  font-size: 0.74rem;
}

.hero-redesign .hero-svc-arr {
  color: rgba(15,33,64,0.36);
}

@media (min-width: 1280px) {
  .hero-redesign .hero-content {
    max-width: 1010px;
  }
}

@media (max-width: 980px) {
  .hero-redesign {
    padding: 32px 0 44px;
  }

  .hero-redesign .hero-image-bg,
  .hero-redesign .hero-image-wash,
  .hero-redesign .hero-image-vignette {
    inset: 32px 24px 44px;
  }

  .hero-redesign .hero-image-bg img {
    object-position: 58% center;
  }

  .hero-redesign .hero-image-wash {
    background:
      linear-gradient(180deg,
        rgba(245,248,249,0.96) 0%,
        rgba(245,248,249,0.88) 48%,
        rgba(245,248,249,0.68) 100%),
      linear-gradient(90deg,
        rgba(245,248,249,0.94) 0%,
        rgba(245,248,249,0.66) 100%);
  }

  .hero-redesign .hero-content {
    max-width: none;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 86px 48px 58px;
  }

  .hero-redesign .hero-left {
    max-width: 660px;
  }

  .hero-redesign .hero-card {
    margin-left: 0;
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  .hero-redesign {
    padding: 0 0 24px;
    background: #f6f8f9;
  }

  .hero-redesign .hero-image-bg,
  .hero-redesign .hero-image-wash,
  .hero-redesign .hero-image-vignette {
    inset: 0;
  }

  .hero-redesign .hero-image-bg img {
    object-position: 63% center;
  }

  .hero-redesign .hero-image-wash {
    background: linear-gradient(180deg,
      rgba(246,248,249,0.98) 0%,
      rgba(246,248,249,0.94) 43%,
      rgba(246,248,249,0.76) 100%);
  }

  .hero-redesign .hero-content {
    padding: 92px 24px 42px;
    gap: 26px;
  }

  .hero-redesign .hero-kicker {
    margin-bottom: 18px;
  }

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

  .hero-redesign .hero-h1 {
    font-size: clamp(40px, 12vw, 54px);
    line-height: 1;
  }

  .hero-redesign .hero-body {
    font-size: 0.98rem;
    line-height: 1.66;
  }

  .hero-redesign .hero-actions {
    align-items: stretch;
  }

  .hero-redesign .hero-actions a {
    justify-content: center;
  }

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

  .hero-redesign .hero-trust-item {
    background: rgba(255,255,255,0.70);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-color: rgba(255,255,255,0.72);
  }

  .hero-redesign .hero-card {
    width: 100%;
    border-radius: 22px;
  }
}

/* =====================================================
   GROVISOR ONE-PAGE v2.1 — FINAL OVERRIDES
   Full-width hero + safe logo header + single-page rhythm
===================================================== */
:root {
  --nav-h: 96px;
  --onepage-max: 1200px;
}

html {
  scroll-padding-top: 110px;
}

body.admin-bar .onepage-nav {
  top: 32px;
}

/* Header: same contained logo treatment everywhere */
.onepage-nav.nav {
  position: sticky;
  top: 0;
  left: auto;
  right: auto;
  height: var(--nav-h);
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid rgba(15,33,64,0.10);
  box-shadow: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: visible;
}

.onepage-nav.nav.scrolled {
  background: rgba(255,255,255,0.97);
  border-color: rgba(15,33,64,0.12);
  box-shadow: 0 10px 34px rgba(15,33,64,0.06);
}

.onepage-nav .nav-inner {
  max-width: var(--onepage-max);
  height: var(--nav-h);
  padding: 0 32px;
  overflow: visible;
}

.onepage-nav .nav-logo-image {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 118px;
  height: 100%;
  padding: 0;
  flex: 0 0 auto;
  overflow: visible;
}

.onepage-nav .nav-logo-image img {
  display: block;
  width: auto;
  height: 58px;
  max-width: 112px;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.onepage-nav .nav-links a.active,
.onepage-nav .mobile-menu-panel a.active {
  color: var(--amber);
}

.onepage-nav .nav-cta:hover {
  background: #183460;
  color: #fff;
}

/* Hero: edge-to-edge image, content/card overlaid within centered inner grid */
.hero-redesign.hero-fullwidth {
  position: relative;
  width: 100%;
  min-height: 650px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  background: #dfe7ec;
}

.hero-redesign.hero-fullwidth .hero-image-bg,
.hero-redesign.hero-fullwidth .hero-image-wash,
.hero-redesign.hero-fullwidth .hero-image-vignette {
  position: absolute;
  inset: 0;
  border-radius: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-redesign.hero-fullwidth .hero-image-bg {
  z-index: -3;
}

.hero-redesign.hero-fullwidth .hero-image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: grayscale(100%) saturate(75%) contrast(1.02) brightness(1.05);
  transform: none;
}

.hero-redesign.hero-fullwidth .hero-image-wash {
  z-index: -2;
  background:
    linear-gradient(90deg,
      rgba(247,249,250,.97) 0%,
      rgba(247,249,250,.93) 29%,
      rgba(247,249,250,.70) 46%,
      rgba(247,249,250,.24) 67%,
      rgba(247,249,250,.06) 100%),
    linear-gradient(180deg,rgba(255,255,255,.06),rgba(15,33,64,.10));
}

.hero-redesign.hero-fullwidth .hero-image-vignette {
  z-index: -1;
  box-shadow: inset 0 -100px 160px rgba(15,33,64,.12);
}

.hero-redesign.hero-fullwidth .hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--onepage-max), calc(100% - 64px));
  max-width: none;
  min-height: 650px;
  margin: 0 auto;
  padding: 82px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 72px;
  align-items: center;
}

.hero-redesign.hero-fullwidth .hero-left {
  max-width: 560px;
}

.hero-redesign.hero-fullwidth .hero-h1 {
  max-width: 560px;
  font-size: clamp(46px, 4.7vw, 64px);
  line-height: 1.03;
  letter-spacing: -0.055em;
  margin: 20px 0 18px;
}

.hero-redesign.hero-fullwidth .hero-body {
  max-width: 560px;
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 28px;
}

.hero-redesign.hero-fullwidth .hero-kicker {
  margin-bottom: 0;
}

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

.hero-redesign.hero-fullwidth .hero-card {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  border-radius: 20px;
  padding: 0;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(15,33,64,.08);
  box-shadow: 0 24px 64px rgba(15,33,64,.16);
}

/* Landing section rhythm */
.landing-section,
.landing-section-alt {
  scroll-margin-top: 108px;
}

.landing-section-alt {
  background: #f3f6f8;
}

.service-details-section {
  border-top: 1px solid rgba(15,33,64,0.05);
  border-bottom: 1px solid rgba(15,33,64,0.05);
}

#tax,
#accounting,
#setup,
#erp,
#icv,
#about,
#contact {
  scroll-margin-top: 116px;
}

.contact-panel-title,
.consultation-card h3 {
  font-family: var(--ff-display);
  color: var(--navy);
  letter-spacing: -0.035em;
}

.contact-panel-title {
  margin-top: 12px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.08;
}

.contact-panel-copy {
  margin-top: 14px;
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.68;
}

.contact-method {
  color: inherit;
}

.contact-method:hover {
  border-color: rgba(30,155,143,0.28);
  background: #fff;
}

.consultation-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.consultation-card h3 {
  margin: 14px 0 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
}

.consultation-card > p {
  color: var(--text-2);
  line-height: 1.7;
  max-width: 580px;
}

.consultation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.common-enquiries {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.common-enquiries > div {
  display: grid;
  gap: 2px;
  padding: 10px 0;
}

.common-enquiries strong {
  color: var(--navy);
  font-size: 0.92rem;
}

.common-enquiries span {
  color: var(--text-2);
  font-size: 0.86rem;
  line-height: 1.55;
}

.footer-nav a:hover,
.footer-contact-text a:hover {
  color: #fff;
}

@media (max-width: 900px) {
  :root { --nav-h: 86px; }

  body.admin-bar .onepage-nav { top: 46px; }

  .onepage-nav.nav,
  .onepage-nav .nav-inner {
    height: var(--nav-h);
  }

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

  .onepage-nav .nav-logo-image {
    width: 108px;
    height: 100%;
  }

  .onepage-nav .nav-logo-image img {
    width: auto;
    height: 52px;
    max-width: 102px;
    max-height: 52px;
  }

  .onepage-nav .mobile-menu-panel {
    top: calc(var(--nav-h) + 8px);
  }

  .hero-redesign.hero-fullwidth {
    min-height: 610px;
    padding: 0;
  }

  .hero-redesign.hero-fullwidth .hero-content {
    width: min(100% - 40px, var(--onepage-max));
    min-height: 610px;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 70px 0;
  }

  .hero-redesign.hero-fullwidth .hero-image-bg img {
    object-position: 58% center;
  }

  .hero-redesign.hero-fullwidth .hero-image-wash {
    background: linear-gradient(90deg,rgba(247,249,250,.96),rgba(247,249,250,.80) 68%,rgba(247,249,250,.32));
  }

  .hero-redesign.hero-fullwidth .hero-h1 {
    font-size: clamp(42px, 8vw, 54px);
  }

  .hero-redesign.hero-fullwidth .hero-card {
    display: none;
  }

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

@media (max-width: 782px) {
  body.admin-bar .onepage-nav { top: 46px; }
}

@media (max-width: 640px) {
  :root { --nav-h: 82px; }

  .onepage-nav .nav-inner {
    padding: 0 18px;
  }

  .onepage-nav .nav-logo-image {
    width: 98px;
    height: 100%;
  }

  .onepage-nav .nav-logo-image img {
    width: auto;
    height: 48px;
    max-width: 94px;
    max-height: 48px;
  }

  .hero-redesign.hero-fullwidth {
    min-height: 590px;
  }

  .hero-redesign.hero-fullwidth .hero-content {
    width: calc(100% - 36px);
    min-height: 590px;
    padding: 62px 0 54px;
  }

  .hero-redesign.hero-fullwidth .hero-image-bg img {
    object-position: 63% center;
  }

  .hero-redesign.hero-fullwidth .hero-image-wash {
    background: linear-gradient(90deg,rgba(247,249,250,.97) 0%,rgba(247,249,250,.90) 66%,rgba(247,249,250,.44) 100%);
  }

  .hero-redesign.hero-fullwidth .hero-h1 {
    font-size: clamp(38px, 11.5vw, 50px);
    line-height: 1.02;
  }

  .hero-redesign.hero-fullwidth .hero-body {
    font-size: 15px;
    line-height: 1.68;
  }

  .hero-redesign.hero-fullwidth .hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .hero-redesign.hero-fullwidth .hero-trust-item {
    background: rgba(255,255,255,.72);
  }

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

  .consultation-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .consultation-actions a {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .onepage-nav .nav-logo-image {
    width: 90px;
  }

  .onepage-nav .nav-logo-image img {
    width: auto;
    height: 44px;
    max-width: 86px;
    max-height: 44px;
  }
}

/* ==============================================================
   Grovisor v2.3 — Concept 1 rebuilt from v2.1
   Headerless hero overlay: logo top-left + navigation top-right.
   The navigation is part of the hero composition, not a header bar.
================================================================ */

/* Remove the traditional header container completely. */
.onepage-nav.nav,
.onepage-nav.nav.scrolled,
.concept-one-nav.nav,
.concept-one-nav.nav.scrolled {
  position: absolute !important;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 96px !important;
  margin: 0;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  overflow: visible !important;
  pointer-events: none;
}

body.admin-bar .onepage-nav,
body.admin-bar .concept-one-nav {
  top: 32px;
}

.onepage-nav .nav-inner,
.concept-one-nav .nav-inner {
  width: min(1280px, calc(100% - 72px));
  max-width: none;
  height: 96px !important;
  margin: 0 auto;
  padding: 0 !important;
  display: flex;
  align-items: center;
  gap: 28px;
  overflow: visible;
  pointer-events: none;
}

/* Brand sits directly on the hero, with no card or header background. */
.onepage-nav .nav-logo-image,
.onepage-nav.nav.scrolled .nav-logo-image,
.concept-one-nav .nav-logo-image,
.concept-one-nav.nav.scrolled .nav-logo-image {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 116px;
  width: 116px !important;
  height: 72px !important;
  margin: 0;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  overflow: visible;
  pointer-events: auto;
}

.onepage-nav .nav-logo-image img,
.onepage-nav.nav.scrolled .nav-logo-image img,
.concept-one-nav .nav-logo-image img,
.concept-one-nav.nav.scrolled .nav-logo-image img {
  display: block;
  width: auto !important;
  height: 60px !important;
  max-width: 112px !important;
  max-height: 60px !important;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 2px 10px rgba(255,255,255,.48));
}

/* Navigation is simply aligned to the right over the hero. */
.onepage-nav .nav-links,
.onepage-nav.nav.scrolled .nav-links,
.concept-one-nav .nav-links,
.concept-one-nav.nav.scrolled .nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  pointer-events: auto;
}

.onepage-nav .nav-links li a,
.concept-one-nav .nav-links li a {
  position: relative;
  padding: 10px 0;
  color: #0F2140 !important;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .015em;
  text-shadow: 0 1px 12px rgba(255,255,255,.86);
}

.onepage-nav .nav-links li a::after,
.concept-one-nav .nav-links li a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: #1E9B8F;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.onepage-nav .nav-links li a:hover,
.onepage-nav .nav-links li a.active,
.concept-one-nav .nav-links li a:hover,
.concept-one-nav .nav-links li a.active {
  color: #0F2140 !important;
}

.onepage-nav .nav-links li a:hover::after,
.onepage-nav .nav-links li a.active::after,
.concept-one-nav .nav-links li a:hover::after,
.concept-one-nav .nav-links li a.active::after {
  transform: scaleX(1);
}

.onepage-nav .nav-cta,
.concept-one-nav .nav-cta {
  flex: 0 0 auto;
  min-height: 44px;
  margin-left: 4px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15,33,64,.08);
  border-radius: 12px;
  background: #0F2140 !important;
  color: #fff !important;
  font-size: 12.5px;
  font-weight: 750;
  box-shadow: 0 10px 28px rgba(15,33,64,.18);
  pointer-events: auto;
}

.onepage-nav .nav-cta:hover,
.concept-one-nav .nav-cta:hover {
  background: #183460 !important;
  color: #fff !important;
  transform: translateY(-1px);
}

/* Hero starts at the top of the viewport; extra top padding protects copy
   from the overlaid logo/navigation without creating a header band. */
.hero-redesign.hero-fullwidth {
  margin-top: 0 !important;
}

.hero-redesign.hero-fullwidth .hero-content {
  padding-top: 132px !important;
  padding-bottom: 82px !important;
}

/* No sticky-header offset is needed for section anchors. */
.landing-section,
.landing-section-alt,
#tax,
#accounting,
#setup,
#erp,
#icv,
#about,
#contact {
  scroll-margin-top: 24px !important;
}

/* Mobile: logo + menu button float over hero; menu becomes a compact card. */
.onepage-nav .mobile-menu-btn,
.concept-one-nav .mobile-menu-btn {
  pointer-events: auto;
}

@media (max-width: 900px) {
  .onepage-nav.nav,
  .onepage-nav.nav.scrolled,
  .concept-one-nav.nav,
  .concept-one-nav.nav.scrolled,
  .onepage-nav .nav-inner,
  .concept-one-nav .nav-inner {
    height: 82px !important;
  }

  body.admin-bar .onepage-nav,
  body.admin-bar .concept-one-nav {
    top: 46px;
  }

  .onepage-nav .nav-inner,
  .concept-one-nav .nav-inner {
    width: calc(100% - 40px);
    gap: 16px;
  }

  .onepage-nav .nav-links,
  .concept-one-nav .nav-links,
  .onepage-nav .nav-cta,
  .concept-one-nav .nav-cta {
    display: none !important;
  }

  .onepage-nav .nav-logo-image,
  .onepage-nav.nav.scrolled .nav-logo-image,
  .concept-one-nav .nav-logo-image,
  .concept-one-nav.nav.scrolled .nav-logo-image {
    flex-basis: 102px;
    width: 102px !important;
    height: 64px !important;
  }

  .onepage-nav .nav-logo-image img,
  .onepage-nav.nav.scrolled .nav-logo-image img,
  .concept-one-nav .nav-logo-image img,
  .concept-one-nav.nav.scrolled .nav-logo-image img {
    height: 52px !important;
    max-width: 98px !important;
    max-height: 52px !important;
  }

  .onepage-nav .mobile-menu-btn,
  .concept-one-nav .mobile-menu-btn {
    margin-left: auto;
    width: 46px;
    height: 46px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(15,33,64,.10);
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(15,33,64,.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .onepage-nav .mobile-menu-panel,
  .concept-one-nav .mobile-menu-panel {
    position: absolute;
    top: 78px !important;
    left: auto !important;
    right: 20px !important;
    width: min(320px, calc(100vw - 40px));
    margin: 0 !important;
    padding: 12px;
    border: 1px solid rgba(15,33,64,.10);
    border-radius: 16px;
    background: rgba(255,255,255,.97);
    box-shadow: 0 22px 52px rgba(15,33,64,.16);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    pointer-events: auto;
  }

  .hero-redesign.hero-fullwidth .hero-content {
    padding-top: 116px !important;
    padding-bottom: 64px !important;
  }
}

@media (max-width: 640px) {
  .onepage-nav.nav,
  .onepage-nav.nav.scrolled,
  .concept-one-nav.nav,
  .concept-one-nav.nav.scrolled,
  .onepage-nav .nav-inner,
  .concept-one-nav .nav-inner {
    height: 76px !important;
  }

  .onepage-nav .nav-inner,
  .concept-one-nav .nav-inner {
    width: calc(100% - 32px);
  }

  .onepage-nav .nav-logo-image,
  .onepage-nav.nav.scrolled .nav-logo-image,
  .concept-one-nav .nav-logo-image,
  .concept-one-nav.nav.scrolled .nav-logo-image {
    flex-basis: 94px;
    width: 94px !important;
    height: 58px !important;
  }

  .onepage-nav .nav-logo-image img,
  .onepage-nav.nav.scrolled .nav-logo-image img,
  .concept-one-nav .nav-logo-image img,
  .concept-one-nav.nav.scrolled .nav-logo-image img {
    height: 47px !important;
    max-width: 90px !important;
    max-height: 47px !important;
  }

  .onepage-nav .mobile-menu-btn,
  .concept-one-nav .mobile-menu-btn {
    width: 44px;
    height: 44px;
  }

  .onepage-nav .mobile-menu-panel,
  .concept-one-nav .mobile-menu-panel {
    top: 72px !important;
    right: 16px !important;
    width: min(310px, calc(100vw - 32px));
  }

  .hero-redesign.hero-fullwidth .hero-content {
    padding-top: 106px !important;
    padding-bottom: 54px !important;
  }
}

@media (max-width: 360px) {
  .onepage-nav .nav-logo-image,
  .onepage-nav.nav.scrolled .nav-logo-image,
  .concept-one-nav .nav-logo-image,
  .concept-one-nav.nav.scrolled .nav-logo-image {
    flex-basis: 88px;
    width: 88px !important;
  }

  .onepage-nav .nav-logo-image img,
  .onepage-nav.nav.scrolled .nav-logo-image img,
  .concept-one-nav .nav-logo-image img,
  .concept-one-nav.nav.scrolled .nav-logo-image img {
    height: 44px !important;
    max-width: 84px !important;
    max-height: 44px !important;
  }
}


/* ==============================================================
   Grovisor v2.5 — navigation CTA removal + back-to-top control
================================================================ */

/* Desktop navigation intentionally has no consultation CTA. */
.concept-one-nav .nav-links,
.onepage-nav .nav-links {
  margin-left: auto;
}

.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 1200;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15,33,64,.12);
  border-radius: 50%;
  background: #0F2140;
  color: #fff;
  box-shadow: 0 12px 30px rgba(15,33,64,.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(.94);
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease, background .18s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: #183460;
  transform: translateY(-2px) scale(1);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(30,155,143,.34);
  outline-offset: 3px;
}

.back-to-top svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 640px) {
  .back-to-top {
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: none;
  }
}


/* ==============================================================
   Grovisor v2.6 — hero presentation refinements
================================================================ */

/* Brand mark is intentionally informational, not a navigation link. */
.onepage-nav .nav-logo-image,
.concept-one-nav .nav-logo-image {
  cursor: default;
}

/* Hero growth-advisor line sits directly on the hero image. */
.hero-redesign.hero-fullwidth .hero-kicker,
.hero-redesign .hero-kicker {
  padding: 0 !important;
  margin-bottom: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.hero-redesign.hero-fullwidth .hero-kicker-dot,
.hero-redesign .hero-kicker-dot {
  width: 7px;
  height: 7px;
  background: var(--teal);
}

.hero-redesign.hero-fullwidth .hero-kicker span,
.hero-redesign .hero-kicker span {
  color: var(--navy) !important;
  font-family: var(--ff-body);
  font-size: 1.05rem !important;
  font-style: italic;
  font-weight: 400 !important;
  line-height: 1.45;
  letter-spacing: 0 !important;
  text-transform: none !important;
  text-shadow: 0 1px 12px rgba(255,255,255,.58);
}

/* Make the How We Help panel less transparent / more solid. */
.hero-redesign.hero-fullwidth .hero-card,
.hero-redesign .hero-card {
  background: rgba(255,255,255,.985) !important;
  border-color: rgba(255,255,255,.96) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* The three hero services are static information, not interactive rows. */
.hero-redesign .hero-svc-item,
.hero-redesign .hero-svc-item:hover {
  cursor: default !important;
  background: transparent !important;
  transform: none !important;
}

.hero-redesign .hero-svc-arr {
  display: none !important;
}

@media (max-width: 640px) {
  .hero-redesign.hero-fullwidth .hero-kicker span,
  .hero-redesign .hero-kicker span {
    font-size: .96rem !important;
  }
}


/* ==============================================================
   Grovisor v2.7 — hero quote alignment + softer glass help panel
================================================================ */

/* Align the growth-advisor quote exactly with the hero heading. */
.hero-redesign.hero-fullwidth .hero-kicker,
.hero-redesign .hero-kicker {
  display: block !important;
  width: 100%;
  text-align: left !important;
  gap: 0 !important;
  margin-bottom: 18px !important;
}

.hero-redesign.hero-fullwidth .hero-kicker-dot,
.hero-redesign .hero-kicker-dot {
  display: none !important;
}

.hero-redesign.hero-fullwidth .hero-kicker span,
.hero-redesign .hero-kicker span {
  display: block;
  width: 100%;
  text-align: left !important;
}

/* Let the hero image read through the How We Help panel. */
.hero-redesign.hero-fullwidth .hero-card,
.hero-redesign .hero-card {
  background: rgba(255,255,255,.68) !important;
  border-color: rgba(255,255,255,.62) !important;
  backdrop-filter: blur(5px) saturate(112%);
  -webkit-backdrop-filter: blur(5px) saturate(112%);
  box-shadow: 0 16px 45px rgba(15,33,64,.08) !important;
}
