:root {
        --bg-0: #f4f7ff;
        --bg-1: #ffffff;
        --bg-2: #eaf0ff;
        --bg-3: #d8e3ff;

        --text-1: #14172a;
        --text-2: #2f3655;
        --text-3: #55608b;
        --text-4: #6f7aa5;

        --brand: #5e6ad2;
        --brand-bright: #7170ff;
        --brand-hover: #828fff;

        --border-soft: rgba(20, 23, 42, 0.08);
        --border: rgba(20, 23, 42, 0.14);
        --surface: rgba(255, 255, 255, 0.86);
        --surface-2: rgba(255, 255, 255, 0.96);

        --radius-sm: 6px;
        --radius-md: 10px;
        --radius-lg: 14px;
        --radius-xl: 20px;

        --nav-h: 64px;
        --max-w: 1140px;
        --page-gutter: 2.5rem;

        --stack-tight: 0.55rem;
        --stack-base: 0.75rem;
        --stack-loose: 1rem;
      }

      * {
        box-sizing: border-box;
      }

      html {
        height: 100%;
        scroll-behavior: smooth;
        scroll-snap-type: y mandatory;
        overflow-y: scroll;
        background: var(--bg-0);
      }

      html.hash-load {
        scroll-behavior: auto;
      }

      body {
        margin: 0;
        color: var(--text-2);
        background: radial-gradient(circle at 15% 10%, rgba(113, 112, 255, 0.18), transparent 34%),
          radial-gradient(circle at 88% 84%, rgba(94, 106, 210, 0.14), transparent 36%), var(--bg-0);
        font-family: "Inter", "DM Sans", -apple-system, system-ui, sans-serif;
        font-optical-sizing: auto;
        font-feature-settings: "cv01", "ss03";
      }

      a {
        color: inherit;
        text-decoration: none;
      }

      main {
        width: 100%;
      }

      section {
        scroll-snap-align: start;
        height: 100svh;
        min-height: 100svh;
        overflow: hidden;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: calc(var(--nav-h) + 0.9rem) var(--page-gutter) 1rem;
      }

      .section-shell {
        width: 100%;
        max-width: var(--max-w);
        margin: 0 auto;
      }

      .reveal {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease, transform 0.6s ease;
      }

      .reveal.in {
        opacity: 1;
        transform: translateY(0);
      }

      .site-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        height: var(--nav-h);
        border-bottom: 1px solid var(--border-soft);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
        background: rgba(244, 247, 255, 0.9);
      }

      .site-nav-inner {
        max-width: calc(var(--max-w) + (var(--page-gutter) * 2));
        margin: 0 auto;
        height: 100%;
        padding: 0 var(--page-gutter);
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 1rem;
      }

      .brand {
        font-size: 2rem;
        font-weight: 600;
        letter-spacing: -0.2px;
        color: var(--text-1);
        display: inline-flex;
        align-items: flex-end;
      }

      .brand-en {
        color: var(--text-3);
        font-weight: 400;
      }

      .brand-era {
        color: var(--brand-bright);
        font-weight: 700;
      }

      .brand-soft {
        color: var(--text-2);
        font-weight: 500;
      }

      .nav-links {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
      }

      .nav-links a {
        color: var(--text-3);
        font-size: 0.86rem;
        font-weight: 500;
        transition: color 0.2s ease, text-decoration-color 0.2s ease;
      }

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

      .nav-links a.active {
        color: var(--brand-bright);
        text-decoration: underline;
        text-decoration-color: var(--brand-bright);
        text-underline-offset: 0.28rem;
        text-decoration-thickness: 2px;
      }

      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        border-radius: var(--radius-sm);
        border: 1px solid var(--border);
        padding: 0.68rem 1rem;
        font-size: 0.9rem;
        font-weight: 600;
        line-height: 1;
        cursor: pointer;
        transition: 0.2s ease;
        white-space: nowrap;
      }

      .btn-primary {
        background: var(--brand);
        color: #ffffff;
        border-color: rgba(130, 143, 255, 0.35);
      }

      .btn-primary:hover {
        background: var(--brand-hover);
      }

      .consult-btn-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 1rem;
        height: 1rem;
      }

      .consult-btn-icon svg {
        width: 100%;
        height: 100%;
      }

      .consult-btn-text-mobile {
        display: none;
      }

      .btn-ghost {
        background: var(--surface);
        color: var(--text-2);
      }

      .btn-ghost:hover {
        background: var(--surface-2);
        border-color: rgba(20, 23, 42, 0.2);
      }

      .mobile-menu-toggle {
        display: none;
        background: transparent;
        border: 1px solid var(--border);
        color: var(--text-2);
        border-radius: var(--radius-sm);
        width: 36px;
        height: 36px;
      }

      .mobile-menu {
        display: none;
      }

      .api-status-banner {
        position: fixed;
        top: var(--nav-h);
        left: 50%;
        transform: translateX(-50%);
        z-index: 110;
        border: 1px solid rgba(255, 154, 166, 0.5);
        background: rgba(78, 18, 28, 0.92);
        color: #ffd8de;
        border-radius: 999px;
        padding: 0.42rem 0.8rem;
        font-size: 0.78rem;
        display: none;
      }

      .api-status-banner.show {
        display: block;
      }

      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        border: 1px solid var(--border);
        background: var(--surface);
        color: var(--text-2);
        border-radius: 999px;
        padding: 0.34rem 0.75rem;
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin-bottom: var(--stack-base);
      }

      .pulse-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--brand-bright);
        animation: pulse 2s ease infinite;
      }

      @keyframes pulse {
        0%,
        100% {
          opacity: 0.4;
          transform: scale(1);
        }
        50% {
          opacity: 1;
          transform: scale(1.2);
        }
      }

      .hero-grid {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 1.8rem;
        align-items: center;
      }

      h1,
      h2,
      h3,
      h4,
      p {
        margin: 0;
      }

      h1 {
        font-size: clamp(2.1rem, 5vw, 4rem);
        line-height: 1.02;
        letter-spacing: clamp(-0.5px, -0.13vw, -1.2px);
        font-weight: 600;
        color: var(--text-1);
      }

      h2 {
        font-size: clamp(1.7rem, 4vw, 3rem);
        line-height: 1.05;
        letter-spacing: clamp(-0.4px, -0.09vw, -1px);
        font-weight: 600;
        color: var(--text-1);
      }

      h3 {
        font-size: 1.1rem;
        color: var(--text-1);
        font-weight: 600;
      }

      .accent-text {
        color: var(--brand-bright);
      }

      .hero-copy p {
        margin-top: 0;
        max-width: 60ch;
        color: var(--text-2);
        line-height: 1.65;
        font-size: clamp(0.95rem, 1.4vw, 1.08rem);
      }

      .hero-copy h1 {
        margin-bottom: var(--stack-base);
      }

      .hero-actions {
        margin-top: 1.4rem;
        display: flex;
        gap: 0.8rem;
      }

      /* ── Hero Outcomes Dashboard ── */
      .hero-metrics {
        position: relative;
        border-radius: 18px;
        padding: 1.1rem;
        border: 1px solid rgba(113, 112, 255, 0.2);
        background: linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(234, 240, 255, 0.65));
        box-shadow: 0 18px 42px rgba(45, 57, 126, 0.12);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
      }

      .hm-glow {
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
      }

      .hm-glow-a {
        width: 220px;
        height: 220px;
        top: -70px;
        right: -30px;
        background: radial-gradient(circle, rgba(113, 112, 255, 0.26), transparent 70%);
      }

      .hm-glow-b {
        width: 180px;
        height: 180px;
        bottom: -50px;
        left: -30px;
        background: radial-gradient(circle, rgba(94, 106, 210, 0.2), transparent 72%);
      }

      .hm-badge {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        gap: 0.42rem;
        font-size: 0.72rem;
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--brand);
      }

      .hm-pulse-dot {
        flex: 0 0 auto;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--brand-bright);
        box-shadow: 0 0 8px rgba(113, 112, 255, 0.6);
        animation: hm-pulse 2s ease-in-out infinite;
      }

      @keyframes hm-pulse {
        0%, 100% { box-shadow: 0 0 8px rgba(113, 112, 255, 0.6); }
        50% { box-shadow: 0 0 18px rgba(113, 112, 255, 0.95); }
      }

      .hm-grid {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
      }

      .hm-card {
        background: rgba(255, 255, 255, 0.78);
        border: 1px solid rgba(113, 112, 255, 0.14);
        border-radius: 12px;
        padding: 0.82rem 0.92rem;
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
      }

      .hm-icon {
        width: 28px;
        height: 28px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
        font-weight: 700;
        margin-bottom: 0.26rem;
      }

      .hm-icon-v { background: rgba(113, 112, 255, 0.12); color: var(--brand-bright); }
      .hm-icon-c { background: rgba(34, 197, 94, 0.13); color: #16a34a; }
      .hm-icon-q { background: rgba(245, 158, 11, 0.13); color: #d97706; }
      .hm-icon-e { background: rgba(59, 130, 246, 0.13); color: #2563eb; }

      .hm-value {
        font-size: 1.6rem;
        font-weight: 800;
        line-height: 1;
        color: var(--text-1);
        letter-spacing: -0.02em;
      }

      .hm-label {
        font-size: 0.68rem;
        color: var(--text-3);
        font-weight: 500;
      }

      .hm-bar {
        height: 3px;
        border-radius: 999px;
        background: rgba(113, 112, 255, 0.08);
        margin-top: 0.46rem;
        overflow: hidden;
      }

      .hm-fill {
        height: 100%;
        border-radius: 999px;
        animation: hm-fill-bar 1.8s ease-out forwards;
        transform-origin: left;
        transform: scaleX(0);
      }

      .hm-fill-v { width: 80%; background: var(--brand-bright); }
      .hm-fill-c { width: 60%; background: #22c55e; }
      .hm-fill-q { width: 96%; background: #f59e0b; }
      .hm-fill-e { width: 96%; background: #3b82f6; }

      @keyframes hm-fill-bar {
        from { transform: scaleX(0); }
        to   { transform: scaleX(1); }
      }

      .hm-coverage {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        gap: 0.55rem;
        background: rgba(255, 255, 255, 0.78);
        border: 1px solid rgba(113, 112, 255, 0.14);
        border-radius: 10px;
        padding: 0.6rem 0.85rem;
      }

      .hm-cov-icon {
        flex: 0 0 auto;
        width: 22px;
        height: 22px;
        border-radius: 6px;
        background: rgba(113, 112, 255, 0.12);
        color: var(--brand-bright);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.72rem;
        font-weight: 700;
      }

      .hm-cov-label {
        font-size: 0.7rem;
        font-weight: 600;
        color: var(--text-2);
        white-space: nowrap;
      }

      .hm-cov-track {
        flex: 1;
        height: 6px;
        border-radius: 999px;
        background: rgba(113, 112, 255, 0.1);
        overflow: hidden;
      }

      .hm-cov-fill {
        height: 100%;
        border-radius: 999px;
        width: 92%;
        background: linear-gradient(90deg, var(--brand), var(--brand-bright));
        animation: hm-fill-bar 2.4s ease-out forwards;
        transform-origin: left;
        transform: scaleX(0);
      }

      .hm-cov-pct {
        font-size: 0.72rem;
        font-weight: 700;
        color: var(--brand-bright);
        white-space: nowrap;
      }

      .section-head {
        margin-bottom: 1rem;
      }

      .section-tag {
        display: inline-block;
        margin-bottom: var(--stack-base);
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.09em;
        color: var(--brand-bright);
      }

      .section-sub {
        margin-top: var(--stack-base);
        color: var(--text-3);
        line-height: 1.6;
        max-width: 70ch;
        font-size: 0.96rem;
      }

      .section-index {
        display: block;
        font-size: clamp(2.2rem, 6.4vw, 4.4rem);
        line-height: 1;
        letter-spacing: -0.03em;
        color: rgba(113, 112, 255, 0.2);
        font-weight: 600;
        margin-bottom: 0.45rem;
      }

      .services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.4rem;
        align-items: center;
      }

      .services-copy p {
        color: var(--text-2);
        line-height: 1.62;
        margin-top: 0;
        font-size: 0.95rem;
      }

      .services-copy h2 + p {
        margin-top: var(--stack-base);
      }

      .services-copy p + p {
        margin-top: var(--stack-base);
      }

      .pillars {
        margin-top: 1rem;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
      }

      .card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        padding: 0.82rem;
      }

      .pillar-card {
        position: relative;
        overflow: hidden;
        background: linear-gradient(165deg, #ffffff 0%, #f7f9ff 100%);
        border: 1px solid rgba(113, 112, 255, 0.28);
        box-shadow: 0 10px 26px rgba(36, 48, 114, 0.08);
        transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
      }

      .pillar-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(180deg, rgba(113, 112, 255, 0.85), rgba(113, 112, 255, 0.2));
      }

      .pillar-card:hover {
        transform: translateY(-4px);
        border-color: rgba(113, 112, 255, 0.42);
        box-shadow: 0 16px 34px rgba(36, 48, 114, 0.16);
        background: linear-gradient(165deg, #ffffff 0%, #f3f6ff 100%);
      }

      .pillar-icon {
        width: 30px;
        height: 30px;
        border-radius: 8px;
        display: grid;
        place-items: center;
        margin-bottom: 0.55rem;
        color: var(--brand-bright);
        border: 1px solid rgba(113, 112, 255, 0.35);
        background: rgba(113, 112, 255, 0.12);
      }

      .pillar-icon svg {
        width: 18px;
        height: 18px;
        color: currentColor;
      }

      .pillar-card .pillar-icon {
        box-shadow: 0 6px 16px rgba(71, 80, 168, 0.18);
        border-color: rgba(113, 112, 255, 0.45);
      }

      .pillar-card h3 {
        font-weight: 650;
      }

      .card h3 {
        margin-bottom: 0.35rem;
        color: var(--text-1);
        font-size: 0.95rem;
      }

      .pillar-card p {
        color: var(--text-2);
        font-size: 0.84rem;
        line-height: 1.58;
        margin: 0.35rem 0 0;
        padding-left: 0;
        text-indent: 0;
      }

      .process-strip .card p {
        color: var(--text-3);
        font-size: 0.82rem;
        line-height: 1.55;
        padding-left: 1em;
        text-indent: -0.75em;
        margin: 0.35rem 0;
      }

      .process-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        display: grid;
        place-items: center;
        margin-bottom: 0.55rem;
        color: var(--brand-bright);
        border: 1px solid rgba(113, 112, 255, 0.35);
        background: rgba(113, 112, 255, 0.12);
      }

      .process-icon svg {
        width: 100%;
        height: 100%;
        color: currentColor;
      }

      .process-strip {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.7rem;
        margin-top: 1rem;
      }

      .step {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        padding: 0.85rem;
        position: relative;
      }

      .step-num {
        font-size: 0.68rem;
        letter-spacing: 0.14em;
        color: var(--brand-bright);
        margin-bottom: 0.5rem;
      }

      .step h3 {
        margin-bottom: 0.35rem;
        color: var(--text-1);
        font-size: 0.95rem;
      }

      .step p {
        color: var(--text-3);
        font-size: 0.82rem;
        line-height: 1.55;
        margin-top: 0.4rem;
      }

      .arrow {
        position: absolute;
        right: -0.58rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--brand-bright);
        font-weight: 600;
      }

      .timeline-highlight {
        margin-top: 0.95rem;
        padding: 0.8rem;
        border-radius: var(--radius-md);
        border: 1px solid rgba(113, 112, 255, 0.28);
        background: linear-gradient(135deg, rgba(113, 112, 255, 0.14), rgba(113, 112, 255, 0.05));
        box-shadow: 0 8px 24px rgba(71, 80, 168, 0.12);
      }

      .timeline-title {
        margin: 0 0 0.55rem;
        color: var(--brand-bright);
        font-size: 0.72rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        font-weight: 700;
      }

      .metrics-strip {
        margin-top: 0;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.7rem;
      }

      .metric-tile {
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(113, 112, 255, 0.2);
        border-radius: var(--radius-md);
        padding: 0.72rem;
      }

      .metric-label {
        display: block;
        color: var(--text-4);
        font-size: 0.68rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }

      .metric-tile strong {
        display: block;
        margin-top: 0.25rem;
        color: var(--brand-bright);
        font-size: 0.9rem;
      }


      .industries-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.7rem;
        margin-top: 0.95rem;
      }

      .industry-card {
        transition: border-color 0.2s ease;
      }

      .industry-card:hover {
        border-color: rgba(113, 112, 255, 0.55);
      }

      .industry-card p {
        color: var(--text-2);
        font-size: 0.84rem;
        line-height: 1.58;
        margin: 0.35rem 0 0;
      }

      .badge {
        display: inline-block;
        border-radius: 999px;
        border: 1px solid rgba(113, 112, 255, 0.35);
        background: rgba(113, 112, 255, 0.14);
        color: var(--brand-bright);
        padding: 0.2rem 0.55rem;
        font-size: 0.62rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-bottom: 0.45rem;
      }

      .case-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.7rem;
        margin-top: 0.95rem;
      }

      .case-grid .card > p {
        color: var(--text-2);
        font-size: 0.84rem;
        line-height: 1.58;
        margin: 0.35rem 0 0;
      }

      .case-head {
        display: flex;
        align-items: center;
        gap: 0.65rem;
        margin-bottom: 0.55rem;
      }

      .avatar-square {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        display: grid;
        place-items: center;
        font-weight: 600;
        color: var(--brand-bright);
        background: rgba(113, 112, 255, 0.16);
        border: 1px solid rgba(113, 112, 255, 0.35);
      }

      .case-meta b {
        display: block;
        color: var(--text-1);
        font-size: 0.86rem;
      }

      .case-meta span {
        color: var(--text-4);
        font-size: 0.76rem;
      }

      .metrics {
        margin-top: 0.55rem;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.4rem;
      }

      .metric strong {
        display: block;
        color: var(--brand-bright);
        font-size: 0.83rem;
      }

      .metric span {
        color: var(--text-4);
        font-size: 0.66rem;
        text-transform: uppercase;
        letter-spacing: 0.06em;
      }

      .testi-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.7rem;
        margin-top: 0.95rem;
      }

      .stars {
        display: flex;
        gap: 0.22rem;
        margin-bottom: 0.5rem;
      }

      .star {
        width: 12px;
        height: 12px;
        background: var(--brand-bright);
        clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
      }

      .quote {
        color: var(--text-3);
        font-style: italic;
        font-size: 0.84rem;
        line-height: 1.58;
      }

      .author {
        margin-top: 0.75rem;
        display: flex;
        align-items: center;
        gap: 0.55rem;
      }

      .author > div:last-child {
        display: grid;
        gap: 0.08rem;
        align-content: center;
      }

      .author br {
        display: none;
      }

      .author strong {
        display: block;
        color: var(--text-1);
        font-size: 0.84rem;
        line-height: 1.22;
      }

      .author span {
        color: var(--text-2);
        font-size: 0.8rem;
        line-height: 1.3;
      }

      .avatar-round {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        font-weight: 600;
        color: var(--brand-bright);
        background: rgba(113, 112, 255, 0.16);
        border: 1px solid rgba(113, 112, 255, 0.35);
      }

      .contact-shell {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: var(--radius-xl);
        padding: 1.1rem;
      }

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

      .info-rows {
        margin-top: 0.9rem;
        display: grid;
        gap: 0.6rem;
      }

      .info-row {
        display: flex;
        align-items: center;
        gap: 0.55rem;
        color: var(--text-2);
        font-size: 0.9rem;
      }

      .icon-box {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        display: grid;
        place-items: center;
        border: 1px solid rgba(113, 112, 255, 0.35);
        background: rgba(113, 112, 255, 0.14);
        color: var(--brand-bright);
      }

      form {
        display: grid;
        gap: 0.56rem;
      }

      .row-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.56rem;
      }

      label {
        display: block;
        margin-bottom: 0.2rem;
        font-size: 0.75rem;
        color: var(--text-3);
      }

      input,
      textarea,
      select {
        width: 100%;
        background: var(--surface-2);
        border: 1px solid var(--border);
        border-radius: 8px;
        color: var(--text-1);
        padding: 0.56rem 0.7rem;
        font-family: "DM Sans", "Inter", sans-serif;
        font-size: 0.88rem;
        transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
      }

      select {
        -moz-appearance: none;
        -webkit-appearance: none;
        appearance: none;
        padding-right: 2.2rem;
        cursor: pointer;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23606f8d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 0.72rem center;
        background-size: 14px 14px;
      }

      select:invalid {
        color: var(--text-3);
      }

      textarea {
        min-height: 78px;
        resize: vertical;
      }

      input:focus,
      textarea:focus,
      select:focus {
        outline: none;
        border-color: rgba(130, 143, 255, 0.5);
        box-shadow: 0 0 0 3px rgba(130, 143, 255, 0.18);
      }

      select option {
        background: var(--surface);
        color: var(--text-1);
      }

      .submit-btn {
        margin-top: 0.2rem;
        width: 100%;
      }

      .form-status {
        margin-top: 0.45rem;
        min-height: 1.1rem;
        color: var(--text-3);
        font-size: 0.78rem;
      }

      .form-status.error {
        color: #ff9aa6;
      }

      .form-status.success {
        color: #8fe5a2;
      }

      footer {
        margin-top: 0.9rem;
        border-top: 1px solid var(--border-soft);
        padding-top: 0.7rem;
        color: var(--text-4);
        font-size: 0.74rem;
        display: flex;
        justify-content: space-between;
        gap: 0.4rem;
        flex-wrap: wrap;
      }

      @media (max-width: 1180px), (max-height: 820px) {
        :root {
          --page-gutter: 1.2rem;
        }

        section {
          padding-inline: var(--page-gutter);
        }

        .hero-grid {
          gap: 1.1rem;
        }

        .hero-metrics {
          padding: 0.9rem;
        }

        .hm-value {
          font-size: 1.45rem;
        }

      }

      @media (max-width: 980px) {
        html {
          scroll-snap-type: none;
        }

        section {
          height: auto;
          min-height: 100svh;
          overflow: visible;
          padding-top: calc(var(--nav-h) + 1rem);
          padding-bottom: 1.4rem;
        }

        .site-nav-inner {
          grid-template-columns: 1fr auto auto;
          padding-inline: 1rem;
          gap: 0.55rem;
        }

        .brand {
          font-size: 1.7rem;
        }

        .mobile-menu-toggle {
          display: inline-grid;
          place-items: center;
          order: 3;
          justify-self: end;
        }

        .nav-links {
          display: none;
        }

        .site-nav .consult-btn {
          display: inline-flex;
          order: 2;
          justify-self: end;
          padding: 0.64rem 0.9rem;
          font-size: 0.78rem;
          white-space: nowrap;
          max-width: 55vw;
          overflow: hidden;
        }

        .site-nav .consult-btn-text {
          overflow: hidden;
          text-overflow: ellipsis;
        }

        .site-nav .consult-btn-text-desktop {
          display: none;
        }

        .site-nav .consult-btn-text-mobile {
          display: inline;
        }

        .site-nav .consult-btn-icon {
          display: none;
        }

        .mobile-menu {
          position: fixed;
          top: var(--nav-h);
          left: 0;
          right: 0;
          display: none;
          flex-direction: column;
          background: rgba(244, 247, 255, 0.96);
          border-bottom: 1px solid var(--border-soft);
          padding: 0.8rem 1rem 1rem;
          gap: 0.52rem;
          max-height: calc(100svh - var(--nav-h));
          overflow-y: auto;
          z-index: 98;
        }

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

        @media (max-width: 360px) {
          .site-nav-inner {
            gap: 0.65rem;
          }

          .site-nav .consult-btn {
            min-width: 36px;
            width: 36px;
            height: 36px;
            padding: 0;
            border-radius: 999px;
          }

          .site-nav .consult-btn-text {
            display: none;
          }

          .site-nav .consult-btn-icon {
            display: inline-flex;
          }
        }

        .mobile-menu a {
          color: var(--text-2);
          font-size: 0.94rem;
        }

        .hero-grid {
          grid-template-columns: 1.02fr 0.98fr;
          gap: 1rem;
          align-items: start;
        }

        .hero-actions {
          flex-wrap: wrap;
        }

        .hero-actions .btn {
          flex: 1 1 220px;
          min-width: 0;
        }

        .eyebrow {
          margin-bottom: 0.7rem;
        }

        .section-index {
          font-size: clamp(1.9rem, 11vw, 2.8rem);
          margin-bottom: 0.4rem;
        }

        input,
        textarea,
        select {
          font-size: 16px;
        }

        .arrow {
          display: none;
        }

        .hero-metrics {
          max-width: 480px;
          margin-inline: auto;
        }
      }

      @media (max-width: 720px) {
        .hero-actions {
          flex-direction: column;
          gap: 0.6rem;
        }

        .hero-actions .btn {
          width: 100%;
          flex: 0 0 auto;
          white-space: normal;
          text-align: center;
        }

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

        .contact-grid,
        .row-2,
        .pillars,
        .metrics-strip,
        .industries-grid,
        .case-grid,
        .testi-grid,
        .process-strip {
          grid-template-columns: 1fr;
        }

        .hero-metrics {
          width: 100%;
          max-width: none;
          margin-inline: 0;
          padding: 0.65rem;
          gap: 0.52rem;
          border-radius: 12px;
        }

        .industry-card h3,
        .case-grid .card h3 {
          font-size: 0.88rem;
        }

        .industry-card p,
        .case-grid .card p {
          font-size: 0.8rem;
          line-height: 1.5;
        }

        .badge {
          font-size: 0.58rem;
          padding: 0.18rem 0.5rem;
          margin-bottom: 0.38rem;
        }

        .case-head {
          gap: 0.55rem;
          margin-bottom: 0.45rem;
        }

        .avatar-square {
          width: 32px;
          height: 32px;
          font-size: 0.74rem;
        }

        .case-meta b {
          font-size: 0.8rem;
        }

        .case-meta span {
          font-size: 0.7rem;
        }

        .metrics {
          gap: 0.32rem;
        }

        .metric strong {
          font-size: 0.78rem;
        }

        .metric span {
          font-size: 0.62rem;
        }

        .hm-badge {
          font-size: 0.6rem;
          gap: 0.32rem;
        }

        .hm-grid {
          gap: 0.4rem;
        }

        .hm-card {
          padding: 0.6rem 0.7rem;
          border-radius: 10px;
          gap: 0.14rem;
        }

        .hm-icon {
          width: 22px;
          height: 22px;
          border-radius: 6px;
          font-size: 0.7rem;
          margin-bottom: 0.18rem;
        }

        .hm-value {
          font-size: 1.22rem;
        }

        .hm-label {
          font-size: 0.58rem;
        }

        .hm-bar {
          margin-top: 0.34rem;
        }

        .hm-coverage {
          padding: 0.48rem 0.65rem;
          gap: 0.38rem;
          border-radius: 8px;
        }

        .hm-cov-icon {
          width: 18px;
          height: 18px;
          font-size: 0.6rem;
        }

        .hm-cov-label {
          font-size: 0.6rem;
        }

        .hm-cov-pct {
          font-size: 0.6rem;
        }
      }

      @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
          animation: none !important;
          transition: none !important;
          scroll-behavior: auto !important;
        }
      }