
        :root {
            --bg: #ffffff;
            --surface: rgba(255, 255, 255, 0.8);
            --surface-solid: #ffffff;
            --surface-soft: #f8f8f8;
            --surface-dark: #111316;
            --surface-deep: #0a0c0e;
            --ink: #121417;
            --ink-soft: #4c5360;
            --ink-faint: #7b8391;
            --line: rgba(18, 20, 23, 0.08);
            --line-strong: rgba(18, 20, 23, 0.16);
            --accent: #3669B2;
            --accent-deep: #40B0E5;
            --accent-soft: rgba(54, 105, 178, 0.14);
            --shadow-soft: 0 20px 60px rgba(15, 22, 32, 0.08);
            --shadow-lift: 0 24px 70px rgba(15, 22, 32, 0.12);
            --radius-xs: 18px;
            --radius-sm: 24px;
            --radius-md: 32px;
            --radius-lg: 40px;
            --radius-xl: 56px;
            --content-max: 1440px;
            --gutter: clamp(22px, 3vw, 40px);
            --section-space: clamp(88px, 12vw, 180px);
            --header-height: 92px;
            --header-height-scrolled: 68px;
            --ease-smooth: cubic-bezier(0.2, 0.8, 0.2, 1);
            --ease-refined: cubic-bezier(0.16, 1, 0.3, 1);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Manrope", "Segoe UI", sans-serif;
            background:
                radial-gradient(circle at top left, rgba(54, 105, 178, 0.08), transparent 32%),
                radial-gradient(circle at 82% 10%, rgba(64, 176, 229, 0.06), transparent 28%),
                #ffffff;
            color: var(--ink);
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            background-image:
                linear-gradient(rgba(54, 105, 178, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(54, 105, 178, 0.04) 1px, transparent 1px);
            background-size: 120px 120px;
            mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 72%);
            pointer-events: none;
            z-index: -2;
        }

        body::after {
            content: "";
            position: fixed;
            inset: 0;
            background: radial-gradient(circle at center, rgba(54, 105, 178, 0.03), transparent 68%);
            mix-blend-mode: multiply;
            pointer-events: none;
            z-index: -1;
        }

        img {
            display: block;
            max-width: 100%;
        }

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

        button,
        input,
        textarea {
            font: inherit;
        }

        body.has-custom-cursor,
        body.has-custom-cursor a,
        body.has-custom-cursor button,
        body.has-custom-cursor input,
        body.has-custom-cursor textarea,
        body.has-custom-cursor label,
        body.has-custom-cursor [role="button"] {
            cursor: none;
        }

        .custom-cursor {
            position: fixed;
            top: 0;
            left: 0;
            pointer-events: none;
            opacity: 0;
            z-index: 120;
            transition: opacity 0.28s var(--ease-refined);
        }

        .custom-cursor-ring {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 1px solid rgba(54, 105, 178, 0.34);
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            box-shadow: 0 10px 24px rgba(15, 22, 32, 0.12);
        }

        .custom-cursor-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), var(--accent-deep));
            box-shadow: 0 0 0 8px rgba(54, 105, 178, 0.08);
        }

        body.cursor-visible .custom-cursor {
            opacity: 1;
        }

        @media (pointer: coarse), (prefers-reduced-motion: reduce) {
            .custom-cursor {
                display: none !important;
            }
        }

        .scroll-top {
            position: fixed;
            right: clamp(18px, 3vw, 28px);
            bottom: clamp(18px, 3vw, 28px);
            width: 48px;
            height: 48px;
            border: 1px solid rgba(18, 20, 23, 0.1);
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.76);
            color: var(--ink);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 12px 28px rgba(15, 22, 32, 0.12);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition:
                opacity 0.28s var(--ease-refined),
                transform 0.28s var(--ease-refined),
                visibility 0.28s var(--ease-refined),
                background-color 0.28s var(--ease-refined),
                border-color 0.28s var(--ease-refined);
            z-index: 90;
        }

        .scroll-top.is-visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-top:hover {
            background: rgba(255, 255, 255, 0.92);
            border-color: rgba(54, 105, 178, 0.16);
        }

        .scroll-top svg {
            width: 16px;
            height: 16px;
        }

        .cookie-widget {
            position: fixed;
            left: clamp(18px, 3vw, 28px);
            bottom: clamp(18px, 3vw, 28px);
            min-height: 48px;
            padding: 0 16px;
            border: 1px solid rgba(18, 20, 23, 0.1);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.76);
            color: var(--ink);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 12px 28px rgba(15, 22, 32, 0.12);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            transition:
                opacity 0.28s var(--ease-refined),
                transform 0.28s var(--ease-refined),
                background-color 0.28s var(--ease-refined),
                border-color 0.28s var(--ease-refined);
            z-index: 90;
        }

        .cookie-widget:hover {
            background: rgba(255, 255, 255, 0.92);
            border-color: rgba(54, 105, 178, 0.16);
        }

        .cookie-widget svg {
            width: 15px;
            height: 15px;
            flex-shrink: 0;
        }

        .cookie-widget span {
            font-size: 0.84rem;
            letter-spacing: 0.04em;
        }

        body.cookie-banner-open .cookie-widget {
            opacity: 0;
            transform: translateY(10px);
            pointer-events: none;
        }

        .cookie-banner {
            position: fixed;
            left: 50%;
            bottom: clamp(18px, 3vw, 28px);
            width: min(calc(100% - 32px), 760px);
            padding: 22px 22px 20px;
            border-radius: 28px;
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 247, 249, 0.94)),
                linear-gradient(135deg, rgba(54, 105, 178, 0.05), transparent 72%);
            border: 1px solid rgba(18, 20, 23, 0.08);
            box-shadow: 0 26px 60px rgba(15, 22, 32, 0.14);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            opacity: 0;
            visibility: hidden;
            transform: translate(-50%, 18px);
            transition:
                opacity 0.3s var(--ease-refined),
                transform 0.3s var(--ease-refined),
                visibility 0.3s var(--ease-refined);
            z-index: 95;
        }

        .cookie-banner.is-visible {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, 0);
        }

        .cookie-banner-header {
            display: grid;
            gap: 8px;
            margin-bottom: 10px;
        }

        .cookie-banner-kicker {
            font-size: 0.72rem;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--ink-faint);
            font-weight: 600;
        }

        .cookie-banner-title {
            font-family: "Sora", "Segoe UI", sans-serif;
            font-size: clamp(1.1rem, 2vw, 1.35rem);
            letter-spacing: -0.03em;
            color: var(--ink);
        }

        .cookie-banner-copy {
            color: var(--ink-soft);
            line-height: 1.72;
            font-size: 0.95rem;
            max-width: 56rem;
        }

        .cookie-banner-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 18px;
        }

        .cookie-banner-btn {
            min-height: 44px;
            padding: 0 16px;
            border-radius: 999px;
            border: 1px solid rgba(18, 20, 23, 0.08);
            background: rgba(255, 255, 255, 0.78);
            color: var(--ink);
            transition:
                transform 0.28s var(--ease-refined),
                background-color 0.28s var(--ease-refined),
                border-color 0.28s var(--ease-refined);
        }

        .cookie-banner-btn:hover {
            transform: translateY(-1px);
            border-color: rgba(54, 105, 178, 0.16);
        }

        .cookie-banner-btn.primary {
            background: linear-gradient(135deg, var(--accent), #2d5a9f);
            border-color: transparent;
            color: #ffffff;
        }

        .cookie-banner-btn.secondary {
            background: rgba(54, 105, 178, 0.08);
            color: var(--accent);
            border-color: rgba(54, 105, 178, 0.18);
        }

        .cookie-banner-btn.ghost {
            background: transparent;
        }

        .cookie-preferences {
            margin-top: 18px;
            padding-top: 18px;
            border-top: 1px solid rgba(18, 20, 23, 0.08);
            display: grid;
            gap: 12px;
        }

        .cookie-option {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            padding: 14px 16px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.68);
            border: 1px solid rgba(18, 20, 23, 0.06);
        }

        .cookie-option strong {
            display: block;
            margin-bottom: 6px;
            color: var(--ink);
            font-size: 0.95rem;
        }

        .cookie-option span {
            color: var(--ink-soft);
            font-size: 0.88rem;
            line-height: 1.6;
        }

        .cookie-option-state {
            color: var(--ink-faint);
            font-size: 0.82rem;
            white-space: nowrap;
        }

        .cookie-switch {
            appearance: none;
            -webkit-appearance: none;
            width: 48px;
            height: 28px;
            border-radius: 999px;
            background: rgba(18, 20, 23, 0.12);
            position: relative;
            border: 0;
            flex-shrink: 0;
            transition: background-color 0.24s var(--ease-refined);
        }

        .cookie-switch::after {
            content: "";
            position: absolute;
            top: 3px;
            left: 3px;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: #ffffff;
            box-shadow: 0 2px 8px rgba(15, 22, 32, 0.18);
            transition: transform 0.24s var(--ease-refined);
        }

        .cookie-switch:checked {
            background: var(--accent);
        }

        .cookie-switch:checked::after {
            transform: translateX(20px);
        }

        .cookie-preferences-actions {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
        }

        .cookie-banner-link {
            color: var(--accent);
            font-size: 0.9rem;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .page-shell {
            position: relative;
            overflow-x: hidden;
        }

        .container {
            width: min(calc(100% - (var(--gutter) * 2)), var(--content-max));
            margin: 0 auto;
        }

        .grid-12 {
            display: grid;
            grid-template-columns: repeat(12, minmax(0, 1fr));
            gap: clamp(18px, 2vw, 28px);
        }

        .section {
            padding: var(--section-space) 0;
            position: relative;
        }

        .section-kicker {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 0.72rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--ink-faint);
            margin-bottom: 22px;
            font-weight: 500;
        }

        .section-kicker::before {
            content: "";
            width: 28px;
            height: 1px;
            background: rgba(18, 20, 23, 0.2);
        }

        .display {
            font-family: "Sora", "Segoe UI", sans-serif;
            font-weight: 400;
            letter-spacing: -0.04em;
            line-height: 1.0;
        }

        .display-xl {
            font-size: clamp(2.6rem, 7vw, 7.2rem);
            line-height: 1.04;
        }

        .display-lg {
            font-size: clamp(2.4rem, 4.2vw, 4.4rem);
            line-height: 1.08;
        }

        .display-md {
            font-size: clamp(1.5rem, 2.6vw, 2.2rem);
            line-height: 1.22;
        }

        .lead {
            font-size: clamp(1.02rem, 1.4vw, 1.2rem);
            line-height: 1.82;
            color: var(--ink-soft);
            max-width: 44rem;
            letter-spacing: 0.01em;
        }

        .mono {
            font-family: "Sora", "Segoe UI", sans-serif;
            font-size: 0.82rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .site-header {
            position: fixed;
            inset: 0 0 auto;
            height: var(--header-height);
            z-index: 40;
            background: transparent;
            border-bottom: 1px solid transparent;
            transition:
                height 0.55s var(--ease-refined),
                background 0.55s var(--ease-refined),
                border-color 0.55s var(--ease-refined),
                box-shadow 0.55s var(--ease-refined),
                backdrop-filter 0.55s var(--ease-refined);
        }

        .site-header.is-scrolled {
            height: var(--header-height-scrolled);
            background: rgba(255, 255, 255, 0.9);
            border-color: rgba(54, 105, 178, 0.08);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            box-shadow: 0 1px 0 rgba(54, 105, 178, 0.06), 0 8px 32px rgba(54, 105, 178, 0.07);
        }

        .header-inner {
            position: relative;
            z-index: 1;
            height: 100%;
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 28px;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 16px;
        }

        .brand-logo {
            height: 32px;
            width: auto;
            display: block;
            filter: brightness(0);
            opacity: 0.92;
            transition: opacity 0.35s var(--ease-refined);
        }

        .brand:hover .brand-logo {
            opacity: 1;
        }

        .footer-logo {
            height: 28px;
            width: auto;
            display: block;
            filter: brightness(0) invert(0);
            margin-bottom: 20px;
        }

        .nav {
            justify-self: center;
            display: inline-flex;
            align-items: center;
            gap: clamp(18px, 2vw, 34px);
        }

        .nav a {
            position: relative;
            font-size: 0.9rem;
            font-weight: 500;
            color: rgba(18, 20, 23, 0.84);
            padding: 10px 0;
            transition: color 0.4s var(--ease-refined), opacity 0.4s var(--ease-refined);
        }

        .nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 4px;
            width: 100%;
            height: 1px;
            background: currentColor;
            transform: scaleX(0);
            transform-origin: left center;
            transition: transform 0.45s var(--ease-refined);
            opacity: 0.68;
        }

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

        .nav a:hover::after {
            transform: scaleX(1);
        }

        .header-actions {
            display: inline-flex;
            align-items: center;
            gap: 14px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            min-height: 52px;
            padding: 0 24px;
            border-radius: 999px;
            border: 1px solid transparent;
            transition:
                transform 0.45s var(--ease-refined),
                box-shadow 0.45s var(--ease-refined),
                background-color 0.45s var(--ease-refined),
                border-color 0.45s var(--ease-refined),
                color 0.45s var(--ease-refined);
            will-change: transform;
        }

        .btn .btn-arrow {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            transition: transform 0.45s var(--ease-refined), background-color 0.45s var(--ease-refined);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent), #2d5a9f);
            color: #ffffff;
            box-shadow: 0 12px 32px rgba(54, 105, 178, 0.24);
        }

        .btn-primary:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 18px 44px rgba(54, 105, 178, 0.32);
        }

        .btn-primary:hover .btn-arrow {
            transform: translateX(4px);
            background: rgba(255, 255, 255, 0.18);
        }

        .btn-secondary {
            background: rgba(54, 105, 178, 0.08);
            color: var(--accent);
            border-color: rgba(54, 105, 178, 0.24);
        }

        .btn-secondary:hover {
            transform: translateY(-2px);
            background: rgba(54, 105, 178, 0.14);
            border-color: rgba(54, 105, 178, 0.36);
            box-shadow: 0 12px 28px rgba(54, 105, 178, 0.14);
        }

        .menu-toggle {
            display: none;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            border: 1px solid rgba(18, 20, 23, 0.1);
            background: rgba(255, 255, 255, 0.52);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
        }

        .menu-toggle span,
        .menu-toggle span::before,
        .menu-toggle span::after {
            display: block;
            width: 18px;
            height: 1.5px;
            background: var(--ink);
            border-radius: 999px;
            transition: transform 0.35s var(--ease-refined), opacity 0.35s var(--ease-refined);
            margin: 0 auto;
            content: "";
        }

        .menu-toggle span::before {
            transform: translateY(-6px);
        }

        .menu-toggle span::after {
            transform: translateY(4.5px);
        }

        .hero {
            padding-top: calc(var(--header-height) + clamp(32px, 6vw, 72px));
            padding-bottom: clamp(48px, 8vw, 96px);
            min-height: 100svh;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 70% 30%, rgba(54, 105, 178, 0.12), transparent 30%),
                radial-gradient(circle at 20% 15%, rgba(64, 176, 229, 0.06), transparent 20%);
            pointer-events: none;
        }

        .hero-copy {
            grid-column: 1 / span 8;
            display: grid;
            align-content: center;
            gap: 28px;
            padding: clamp(32px, 5vw, 72px) 0;
            position: relative;
            z-index: 2;
            max-width: 820px;
        }

        .hero-heading {
            max-width: 12ch;
        }

        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 8px;
        }

        .meta-chip {
            padding: 11px 16px;
            border-radius: 999px;
            border: 1px solid rgba(18, 20, 23, 0.1);
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            font-size: 0.82rem;
            color: var(--ink-soft);
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 10px;
        }

        .hero-note {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
            margin-top: 24px;
        }

        .hero-note-card {
            padding: 18px 18px 20px;
            border-radius: var(--radius-sm);
            background: rgba(255, 255, 255, 0.52);
            border: 1px solid rgba(18, 20, 23, 0.08);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            box-shadow: var(--shadow-soft);
            transform: translateY(0);
            transition: transform 0.55s var(--ease-refined), box-shadow 0.55s var(--ease-refined);
        }

        .hero-note-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 42px rgba(15, 22, 32, 0.12);
        }

        .hero-note-card strong {
            display: block;
            font-family: "Sora", "Segoe UI", sans-serif;
            font-size: 1.4rem;
            font-weight: 500;
            letter-spacing: -0.04em;
            margin-bottom: 8px;
        }

        .hero-note-card span {
            color: var(--ink-soft);
            font-size: 0.88rem;
            line-height: 1.5;
        }

        .metrics-strip {
            padding-top: 22px;
        }

        .metrics-board {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-lg);
            background:
                linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(242, 239, 233, 0.84)),
                linear-gradient(120deg, rgba(54, 105, 178, 0.08), transparent 62%);
            border: 1px solid rgba(18, 20, 23, 0.08);
            box-shadow: 0 24px 68px rgba(15, 22, 32, 0.09);
            padding: clamp(30px, 4vw, 48px);
        }

        .metrics-board::before {
            content: "";
            position: absolute;
            inset: -12% auto auto -4%;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(54, 105, 178, 0.12), transparent 72%);
            filter: blur(12px);
        }

        .metrics-board::after {
            content: "";
            position: absolute;
            inset: auto -4% -18% auto;
            width: 240px;
            height: 240px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(64, 176, 229, 0.12), transparent 72%);
            filter: blur(18px);
        }

        .metrics-intro {
            grid-column: 1 / span 4;
            position: relative;
            z-index: 1;
            display: grid;
            align-content: start;
            gap: 18px;
            padding-right: 28px;
            border-right: 1px solid rgba(18, 20, 23, 0.08);
        }

        .metrics-grid {
            grid-column: 5 / span 8;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
            position: relative;
            z-index: 1;
        }

        .metric-card {
            min-height: 178px;
            padding: 22px 22px 20px;
            border-radius: 26px;
            border: 1px solid rgba(18, 20, 23, 0.07);
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.62)),
                rgba(255, 255, 255, 0.7);
            box-shadow:
                0 1px 0 rgba(255, 255, 255, 0.88) inset,
                0 14px 34px rgba(15, 22, 32, 0.06);
            display: grid;
            align-content: space-between;
            gap: 24px;
            transition:
                transform 0.55s var(--ease-refined),
                box-shadow 0.55s var(--ease-refined),
                border-color 0.55s var(--ease-refined);
        }

        .metric-card:hover {
            transform: translateY(-4px);
            border-color: rgba(54, 105, 178, 0.16);
            box-shadow:
                0 1px 0 rgba(255, 255, 255, 0.88) inset,
                0 18px 40px rgba(15, 22, 32, 0.08);
        }

        .metric-kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.72rem;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--ink-faint);
            font-weight: 600;
        }

        .metric-kicker::before {
            content: "";
            width: 18px;
            height: 1px;
            background: rgba(54, 105, 178, 0.28);
        }

        .metric-value {
            font-family: "Sora", "Segoe UI", sans-serif;
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            font-weight: 500;
            letter-spacing: -0.06em;
            line-height: 1;
        }

        .metric-label {
            color: var(--ink-soft);
            line-height: 1.62;
            font-size: 0.94rem;
            max-width: 18rem;
        }

        .metrics-lead {
            color: var(--ink-soft);
            line-height: 1.72;
            max-width: 24rem;
        }

        .metrics-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            padding-top: 6px;
        }

        .metrics-meta span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 36px;
            padding: 0 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.72);
            border: 1px solid rgba(18, 20, 23, 0.07);
            color: var(--ink-soft);
            font-size: 0.8rem;
            letter-spacing: 0.04em;
        }

        .services-head {
            grid-column: 1 / span 5;
            position: sticky;
            top: calc(var(--header-height-scrolled) + 36px);
            align-self: start;
            padding-right: clamp(8px, 2vw, 24px);
        }

        .services-grid {
            grid-column: 6 / span 7;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: clamp(18px, 2vw, 26px);
        }

        .service-card {
            position: relative;
            min-height: 320px;
            border-radius: var(--radius-md);
            overflow: hidden;
            padding: 28px;
            background:
                linear-gradient(165deg, rgba(255, 255, 255, 0.92), rgba(243, 239, 232, 0.8)),
                linear-gradient(180deg, rgba(54, 105, 178, 0.06), transparent 55%);
            border: 1px solid rgba(18, 20, 23, 0.08);
            box-shadow: var(--shadow-soft);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition:
                transform 0.65s var(--ease-refined),
                box-shadow 0.65s var(--ease-refined),
                border-color 0.65s var(--ease-refined);
            isolation: isolate;
        }

        .service-card::before {
            content: "";
            position: absolute;
            inset: auto -10% -25% auto;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(54, 105, 178, 0.14), transparent 72%);
            opacity: 0;
            transition: opacity 0.65s var(--ease-refined), transform 0.65s var(--ease-refined);
            transform: translateY(28px);
            z-index: 0;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lift);
            border-color: rgba(54, 105, 178, 0.12);
        }

        .service-card:hover::before {
            opacity: 1;
            transform: translateY(0);
        }

        .service-card:nth-child(2n) {
            margin-top: clamp(18px, 4vw, 48px);
        }

        .service-top,
        .service-bottom {
            position: relative;
            z-index: 1;
        }

        .service-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            border-radius: 999px;
            border: 1px solid rgba(18, 20, 23, 0.08);
            background: rgba(255, 255, 255, 0.58);
            color: var(--ink-soft);
            font-size: 0.78rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .service-number {
            position: absolute;
            right: 24px;
            top: 24px;
            font-family: "Sora", "Segoe UI", sans-serif;
            font-size: clamp(4rem, 8vw, 6rem);
            font-weight: 500;
            line-height: 0.9;
            letter-spacing: -0.08em;
            color: rgba(18, 20, 23, 0.04);
            transition: transform 0.65s var(--ease-refined), color 0.65s var(--ease-refined);
        }

        .service-card:hover .service-number {
            transform: translate(-6px, 8px) scale(0.97);
            color: rgba(54, 105, 178, 0.08);
        }

        .service-title {
            max-width: 10ch;
            margin-top: 44px;
            margin-bottom: 14px;
        }

        .service-copy {
            max-width: 16rem;
            color: var(--ink-soft);
            font-size: 0.96rem;
            line-height: 1.7;
        }

        .service-arrow {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            color: var(--ink);
            font-size: 0.85rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .service-arrow svg {
            transition: transform 0.45s var(--ease-refined);
        }

        .service-card:hover .service-arrow svg {
            transform: translateX(6px);
        }

        .segment-panel {
            position: relative;
            border-radius: var(--radius-xl);
            background: linear-gradient(180deg, rgba(12, 14, 17, 0.98), rgba(20, 24, 31, 0.96));
            color: rgba(255, 255, 255, 0.96);
            padding: clamp(30px, 4vw, 48px);
            overflow: hidden;
        }

        .segment-panel::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 80% 18%, rgba(54, 105, 178, 0.16), transparent 24%),
                radial-gradient(circle at 22% 78%, rgba(255, 255, 255, 0.08), transparent 28%);
            pointer-events: none;
        }

        .segment-head {
            grid-column: 1 / span 12;
            margin-bottom: clamp(24px, 4vw, 40px);
            position: relative;
            z-index: 1;
        }

        .segment-grid {
            display: grid;
            grid-template-columns: repeat(12, minmax(0, 1fr));
            grid-auto-rows: minmax(150px, auto);
            gap: 18px;
            position: relative;
            z-index: 1;
        }

        .segment-card {
            position: relative;
            overflow: hidden;
            border-radius: 28px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background:
                linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
                linear-gradient(180deg, rgba(54, 105, 178, 0.06), transparent 65%);
            padding: 24px;
            min-height: 180px;
            transition:
                transform 0.6s var(--ease-refined),
                border-color 0.6s var(--ease-refined),
                background-color 0.6s var(--ease-refined),
                box-shadow 0.6s var(--ease-refined);
        }

        .segment-card:hover {
            transform: translateY(-8px);
            border-color: rgba(64, 176, 229, 0.18);
            box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
        }

        .segment-card::before {
            content: "";
            position: absolute;
            inset: auto -16% -22% auto;
            width: 170px;
            height: 170px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(54, 105, 178, 0.18), transparent 72%);
            opacity: 0.4;
            transition: transform 0.6s var(--ease-refined), opacity 0.6s var(--ease-refined);
        }

        .segment-card:hover::before {
            transform: scale(1.1);
            opacity: 0.7;
        }

        .segment-card.large {
            grid-column: span 5;
            grid-row: span 2;
            min-height: 390px;
        }

        .segment-card.tall {
            grid-column: span 3;
            grid-row: span 2;
            min-height: 390px;
        }

        .segment-card.medium {
            grid-column: span 4;
        }

        .segment-card.wide {
            grid-column: span 7;
        }

        .segment-inner {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
            gap: 18px;
        }

        .segment-index {
            color: rgba(255, 255, 255, 0.48);
            font-size: 0.8rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .segment-title {
            max-width: 12ch;
        }

        .segment-copy {
            max-width: 18rem;
            color: rgba(255, 255, 255, 0.68);
            font-size: 0.95rem;
            line-height: 1.72;
        }

        .process-header {
            max-width: 42rem;
            display: grid;
            gap: 18px;
            margin-bottom: clamp(40px, 5vw, 64px);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: clamp(16px, 2.5vw, 32px);
        }

        .process-step {
            position: relative;
            min-height: 100%;
            padding: 28px 24px 26px;
            border-radius: 30px;
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 248, 250, 0.9)),
                linear-gradient(135deg, rgba(54, 105, 178, 0.04), transparent 72%);
            border: 1px solid rgba(18, 20, 23, 0.08);
            box-shadow:
                0 1px 0 rgba(255, 255, 255, 0.84) inset,
                0 20px 44px rgba(15, 22, 32, 0.06);
            transition:
                transform 0.45s var(--ease-refined),
                box-shadow 0.45s var(--ease-refined),
                border-color 0.45s var(--ease-refined);
        }

        .process-step:hover {
            transform: translateY(-6px);
            border-color: rgba(54, 105, 178, 0.14);
            box-shadow:
                0 1px 0 rgba(255, 255, 255, 0.84) inset,
                0 24px 54px rgba(15, 22, 32, 0.08);
        }

        .process-step--animate {
            opacity: 0;
            transform: translateY(22px);
            transition:
                opacity 0.62s var(--ease-refined),
                transform 0.62s var(--ease-refined),
                box-shadow 0.45s var(--ease-refined),
                border-color 0.45s var(--ease-refined);
        }

        .process-step--animate.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .step-number {
            position: relative;
            font-family: "Sora", "Segoe UI", sans-serif;
            font-size: clamp(3.2rem, 6vw, 5.6rem);
            font-weight: 300;
            letter-spacing: -0.05em;
            line-height: 1;
            color: rgba(18, 20, 23, 0.08);
            margin-bottom: 18px;
            user-select: none;
            transition: color 0.4s var(--ease-refined);
        }

        .process-step:hover .step-number,
        .process-step.is-visible .step-number {
            color: rgba(54, 105, 178, 0.12);
        }

        .step-body {
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding-right: 0;
        }

        .step-body .mono {
            color: var(--ink-faint);
            margin-bottom: 2px;
        }

        .step-body h3 {
            line-height: 1.15;
            max-width: 12ch;
        }

        .step-body p {
            color: var(--ink-soft);
            line-height: 1.72;
            font-size: 0.94rem;
            margin-top: 2px;
        }

        .proof-block {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-xl);
            background:
                linear-gradient(160deg, rgba(10, 12, 15, 0.98), rgba(18, 23, 30, 0.96)),
                linear-gradient(135deg, rgba(54, 105, 178, 0.06), transparent 60%);
            color: rgba(255, 255, 255, 0.96);
            padding: clamp(34px, 5vw, 56px);
        }

        .proof-block::before {
            content: "";
            position: absolute;
            inset: auto 4% -8% auto;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(54, 105, 178, 0.12), transparent 70%);
            filter: blur(12px);
        }

        .proof-block::after {
            content: "";
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
            background-size: 88px 88px;
            mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 82%);
            pointer-events: none;
        }

        .proof-copy {
            grid-column: 1 / span 6;
            position: relative;
            z-index: 1;
            display: grid;
            gap: 18px;
            padding-right: clamp(10px, 3vw, 34px);
        }

        .proof-copy .section-kicker {
            color: rgba(255, 255, 255, 0.64);
        }

        .proof-copy .section-kicker::before {
            background: rgba(255, 255, 255, 0.22);
        }

        .proof-lead {
            color: rgba(255, 255, 255, 0.72);
            max-width: 35rem;
        }

        .proof-stats {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
            margin-top: 36px;
        }

        .proof-stat {
            padding: 18px 16px 20px;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .proof-stat strong {
            display: block;
            font-family: "Sora", "Segoe UI", sans-serif;
            font-size: 1.8rem;
            font-weight: 500;
            letter-spacing: -0.05em;
            margin-bottom: 8px;
        }

        .proof-stat span {
            color: rgba(255, 255, 255, 0.64);
            font-size: 0.88rem;
            line-height: 1.55;
        }

        .cta-shell {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-xl);
            border: 1px solid rgba(54, 105, 178, 0.14);
            background:
                linear-gradient(155deg, #ffffff 0%, rgba(54, 105, 178, 0.04) 100%);
            box-shadow:
                0 1px 0 rgba(255,255,255,0.8) inset,
                0 20px 60px rgba(54, 105, 178, 0.08);
            padding: clamp(48px, 6vw, 72px);
        }

        .cta-shell::before {
            content: "";
            position: absolute;
            inset: auto auto -18% 8%;
            width: 380px;
            height: 380px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(64, 176, 229, 0.12), transparent 70%);
            filter: blur(26px);
            pointer-events: none;
        }

        .cta-shell::after {
            content: "";
            position: absolute;
            top: -10%;
            right: 42%;
            width: 240px;
            height: 240px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(54, 105, 178, 0.06), transparent 72%);
            filter: blur(28px);
            pointer-events: none;
        }

        .cta-copy {
            grid-column: 1 / span 5;
            position: relative;
            z-index: 1;
            padding-right: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .cta-copy .section-kicker {
            color: var(--accent);
            margin-bottom: 20px;
        }

        .cta-detail {
            display: grid;
            gap: 18px;
            margin-top: 38px;
        }

        .cta-detail-item {
            display: grid;
            grid-template-columns: 20px 1fr;
            gap: 14px;
            align-items: start;
            color: var(--ink-soft);
            line-height: 1.74;
            font-size: 0.97rem;
            letter-spacing: 0.003em;
        }

        .cta-detail-item::before {
            content: "";
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent);
            margin-top: 0.6rem;
            justify-self: center;
        }

        .contact-panel {
            grid-column: 6 / span 7;
            position: relative;
            z-index: 1;
            border-radius: var(--radius-lg);
            padding: clamp(32px, 4vw, 48px);
            background: rgba(255, 255, 255, 0.96);
            color: var(--ink);
            box-shadow:
                0 1px 0 rgba(255,255,255,0.6) inset,
                0 16px 48px rgba(54, 105, 178, 0.09);
            border: 1px solid rgba(54, 105, 178, 0.1);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 20px;
        }

        .field {
            position: relative;
        }

        .field.full {
            grid-column: 1 / -1;
        }

        .field label {
            display: block;
            font-size: 0.7rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--ink-faint);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .field input,
        .field textarea {
            width: 100%;
            border: 1px solid rgba(54, 105, 178, 0.12);
            border-radius: 12px;
            background: rgba(54, 105, 178, 0.03);
            color: var(--ink);
            padding: 14px 16px;
            font-size: 0.98rem;
            transition:
                border-color 0.3s var(--ease-refined),
                background-color 0.3s var(--ease-refined),
                box-shadow 0.3s var(--ease-refined);
        }

        .field textarea {
            min-height: 120px;
            resize: vertical;
            font-family: inherit;
        }

        .field input::placeholder,
        .field textarea::placeholder {
            color: var(--ink-faint);
            opacity: 0.6;
        }

        .field input:focus,
        .field textarea:focus {
            outline: none;
            border-color: var(--accent);
            background: rgba(54, 105, 178, 0.06);
            box-shadow: 0 0 0 4px rgba(54, 105, 178, 0.08);
        }

        .field input[aria-invalid="true"],
        .field textarea[aria-invalid="true"] {
            border-color: #c45b5b;
            background: rgba(196, 91, 91, 0.06);
            box-shadow: 0 0 0 4px rgba(196, 91, 91, 0.12);
        }

        .contact-form {
            display: grid;
        }

        .contact-meta {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 18px;
            margin-top: 28px;
            padding-top: 24px;
            border-top: 1px solid rgba(54, 105, 178, 0.1);
        }

        .contact-meta p {
            color: var(--ink-faint);
            font-size: 0.85rem;
            letter-spacing: 0.01em;
        }

        .contact-meta-copy {
            display: grid;
            gap: 8px;
        }

        .contact-meta-copy a {
            color: var(--accent);
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .contact-actions {
            display: grid;
            justify-items: end;
            gap: 10px;
        }

        .contact-status {
            min-height: 1.25rem;
            color: var(--ink-faint);
            font-size: 0.84rem;
            text-align: right;
        }

        .contact-status.is-error {
            color: #a94a4a;
        }

        .contact-status.is-success {
            color: #2f7e5a;
        }

        .footer {
            padding: clamp(72px, 10vw, 120px) 0 42px;
        }

        .footer-shell {
            border-top: 1px solid rgba(18, 20, 23, 0.08);
            padding-top: 34px;
        }

        .footer-grid {
            align-items: start;
        }

        .footer-brand {
            grid-column: 1 / span 4;
        }

        .footer-brand .footer-logo {
            height: 28px;
            width: auto;
            margin-bottom: 24px;
        }

        .footer-note {
            color: var(--ink-soft);
            max-width: 24rem;
            line-height: 1.75;
        }

        .footer-col {
            grid-column: span 2;
        }

        .footer-col h3 {
            font-size: 0.78rem;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--ink-faint);
            margin-bottom: 18px;
        }

        .footer-links {
            display: grid;
            gap: 12px;
        }

        .footer-links a,
        .footer-links span {
            width: fit-content;
            position: relative;
            color: var(--ink-soft);
            transition: color 0.4s var(--ease-refined), opacity 0.4s var(--ease-refined);
        }

        .footer-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 100%;
            height: 1px;
            background: currentColor;
            transform: scaleX(0);
            transform-origin: left center;
            transition: transform 0.4s var(--ease-refined);
        }

        .footer-links a:hover {
            color: var(--ink);
        }

        .footer-links a:hover::after {
            transform: scaleX(1);
        }

        .footer-base {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 18px;
            margin-top: 42px;
            padding-top: 20px;
            border-top: 1px solid rgba(18, 20, 23, 0.08);
            color: var(--ink-faint);
            font-size: 0.84rem;
        }

        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition:
                opacity 0.7s var(--ease-refined),
                transform 0.7s var(--ease-refined);
            transition-delay: var(--delay, 0ms);
        }

        .reveal.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-mask {
            clip-path: inset(0 0 100% 0 round 30px);
            transition:
                clip-path 1.1s var(--ease-refined),
                opacity 0.8s var(--ease-refined);
        }

        .reveal-mask.is-visible {
            clip-path: inset(0 0 0 0 round 30px);
        }

        [data-parallax] {
            transform: translate3d(0, 0, 0);
            transition: transform 0.08s linear;
            will-change: transform;
        }

        /* ── 1180px: tablet landscape ─────────────────────────────── */
        @media (max-width: 1180px) {
            .hero-copy,
            .metrics-intro,
            .metrics-grid,
            .services-head,
            .services-grid,
            .proof-copy,
            .cta-copy {
                grid-column: 1 / -1;
                padding-right: 0;
            }

            .contact-panel {
                grid-column: 1 / -1;
            }

            .hero { min-height: auto; }
            .hero-copy { max-width: 100%; margin-bottom: 0; }

            .hero-note {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            .metrics-intro {
                margin-bottom: 24px;
                border-right: 0;
                border-bottom: 1px solid rgba(18, 20, 23, 0.08);
                padding-bottom: 24px;
            }

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

            .services-head {
                position: static;
                margin-bottom: 8px;
            }

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

            .service-card:nth-child(2n) { margin-top: 0; }

            .segment-card.large,
            .segment-card.tall { grid-row: span 1; min-height: 240px; }
            .segment-card.large { grid-column: span 6; }
            .segment-card.tall  { grid-column: span 6; }
            .segment-card.medium { grid-column: span 6; }
            .segment-card.wide  { grid-column: span 6; }

            .process-steps {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 28px;
            }

            .cta-copy { margin-bottom: 32px; }

            .proof-stats {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        /* ── 920px: tablet portrait / large phone ───────────────── */
        @media (max-width: 920px) {
            .header-actions .btn-primary,
            .header-actions .btn-secondary { display: none; }

            .menu-toggle { display: grid; place-items: center; }

            .header-inner { gap: 16px; display: flex; justify-content: space-between; }

            /* ── mobile nav overlay ── */
            .nav {
                position: fixed;
                top: 0;
                left: 0;
                width: 100vw;
                height: 100dvh;
                z-index: 50;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 0;
                padding: 0 var(--gutter);
                background: #ffffff;
                clip-path: circle(0% at calc(100% - var(--gutter) - 26px) 46px);
                transition: clip-path 0.55s var(--ease-refined);
                pointer-events: none;
            }

            .site-header.is-menu-open .nav {
                clip-path: circle(150% at calc(100% - var(--gutter) - 26px) 46px);
                pointer-events: auto;
            }

            .nav a {
                display: block;
                width: 100%;
                max-width: 400px;
                text-align: center;
                padding: 20px 0 !important;
                font-size: 1.5rem !important;
                font-weight: 600 !important;
                color: var(--ink) !important;
                letter-spacing: -0.02em;
                opacity: 0;
                transform: translateY(24px) scale(0.96);
                transition:
                    opacity 0.45s var(--ease-refined),
                    transform 0.45s var(--ease-refined);
            }

            .nav a::after { display: none !important; }

            .site-header.is-menu-open .nav a {
                opacity: 1;
                transform: translateY(0) scale(1);
            }

            .site-header.is-menu-open .nav a:nth-child(1) { transition-delay: 0.12s; }
            .site-header.is-menu-open .nav a:nth-child(2) { transition-delay: 0.18s; }
            .site-header.is-menu-open .nav a:nth-child(3) { transition-delay: 0.24s; }
            .site-header.is-menu-open .nav a:nth-child(4) { transition-delay: 0.30s; }
            .site-header.is-menu-open .nav a:nth-child(5) { transition-delay: 0.36s; }

            /* reset delays when closing */
            .nav a { transition-delay: 0s; }

            /* hamburger → X stays above overlay */
            .menu-toggle { position: relative; z-index: 52; }
            .menu-toggle.is-active span { background: transparent; }
            .menu-toggle.is-active span::before { transform: translateY(0) rotate(45deg); }
            .menu-toggle.is-active span::after  { transform: translateY(-1.5px) rotate(-45deg); }

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

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

            .segment-card.large,
            .segment-card.tall,
            .segment-card.medium,
            .segment-card.wide { grid-column: span 12; min-height: 200px; }

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

            .process-step {
                padding: 26px 22px 24px;
                border-radius: 26px;
            }

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

            .footer-brand,
            .footer-col { grid-column: span 6; }

            .footer-base { flex-direction: column; align-items: flex-start; gap: 8px; }
        }

        /* ── 640px: mobile ──────────────────────────────────────── */
        @media (max-width: 640px) {
            :root {
                --gutter: 20px;
                --section-space: clamp(60px, 14vw, 100px);
                --header-height: 76px;
                --header-height-scrolled: 60px;
            }

            .brand-logo { height: 26px; }

            .hero {
                min-height: 0;
                padding-top: calc(var(--header-height) + 24px);
                padding-bottom: 48px;
                align-items: flex-start;
            }

            .hero-copy { gap: 20px; }

            /* collapse 12-col grid to single column on mobile */
            .grid-12 { grid-template-columns: 1fr; gap: 0; }

            .hero-copy { grid-column: 1 / -1; }

            .hero-meta { display: none; }

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

            .hero-note-card { padding: 14px 16px; }

            .display-xl { font-size: clamp(1.9rem, 8.5vw, 3rem); line-height: 1.08; }
            .display-lg { font-size: clamp(1.8rem, 8vw, 2.6rem); line-height: 1.1; }
            .display-md { font-size: clamp(1.2rem, 5vw, 1.6rem); }

            .hero-heading { max-width: 100%; overflow-wrap: break-word; hyphens: auto; }

            .section-kicker { margin-bottom: 14px; }

            .lead { font-size: 0.97rem; line-height: 1.7; max-width: 100%; }

            .btn { min-height: 46px; padding: 0 20px; font-size: 0.92rem; }

            .hero-actions { gap: 10px; }

            .metrics-board {
                padding: 22px 18px;
                border-radius: 28px;
            }

            .metrics-intro {
                gap: 14px;
                margin-bottom: 18px;
                padding-bottom: 18px;
            }

            .metrics-meta {
                gap: 8px;
            }

            .metrics-meta span {
                width: 100%;
                justify-content: flex-start;
                min-height: 34px;
            }

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

            .metric-card {
                min-height: 0;
                padding: 18px 18px 16px;
                gap: 16px;
            }

            .metric-kicker {
                font-size: 0.68rem;
            }

            .metric-value {
                font-size: clamp(2rem, 10vw, 2.7rem);
            }

            .metric-label {
                max-width: none;
                font-size: 0.9rem;
            }

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

            .service-card { min-height: 240px; }
            .service-card:nth-child(2n) { margin-top: 0; }

            .segment-panel { padding: clamp(20px, 6vw, 32px); border-radius: 28px; }

            .segment-card { border-radius: 20px; min-height: 160px; }

            .process-header {
                gap: 14px;
                margin-bottom: 28px;
            }

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

            .process-step {
                padding: 24px 18px 20px;
                border-radius: 24px;
            }

            .step-number { font-size: clamp(2.8rem, 12vw, 4rem); }

            .step-body h3 {
                max-width: none;
            }

            .proof-block {
                padding: 26px 20px 20px;
                border-radius: 30px;
            }

            .proof-block::before {
                inset: auto -16% -10% auto;
                width: 220px;
                height: 220px;
                opacity: 0.9;
            }

            .proof-block::after {
                background-size: 52px 52px;
                mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 88%);
            }

            .proof-copy {
                gap: 14px;
            }

            .proof-copy .section-kicker {
                margin-bottom: 4px;
            }

            .proof-copy .display-lg {
                font-size: clamp(1.9rem, 8vw, 2.8rem);
                line-height: 1.08;
                max-width: 10ch;
            }

            .proof-lead {
                max-width: none;
                font-size: 0.98rem;
                line-height: 1.72;
            }

            .proof-stats {
                grid-template-columns: 1fr;
                gap: 12px;
                margin-top: 8px;
            }

            .proof-stat {
                display: grid;
                grid-template-columns: minmax(72px, 88px) 1fr;
                align-items: center;
                gap: 14px;
                padding: 16px 16px 16px 18px;
                border-radius: 20px;
                border: 1px solid rgba(255, 255, 255, 0.1);
                background:
                    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
                    rgba(255, 255, 255, 0.03);
                box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
            }

            .proof-stat strong {
                margin-bottom: 0;
                font-size: 1.55rem;
                line-height: 1;
            }

            .proof-stat span {
                font-size: 0.89rem;
                line-height: 1.6;
            }

            .cta-shell { padding: clamp(24px, 7vw, 40px); border-radius: 28px; }

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

            .contact-panel { padding: clamp(20px, 6vw, 32px); border-radius: 24px; }

            .footer {
                padding: 56px 0 28px;
            }

            .footer-shell {
                padding-top: 0;
                border-top: 0;
            }

            .footer-grid {
                gap: 14px;
            }

            .footer-brand,
            .footer-col { grid-column: 1 / -1; }

            .footer-brand,
            .footer-col {
                margin-top: 0;
                padding: 22px 20px;
                border-radius: 24px;
                background:
                    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 250, 0.92)),
                    linear-gradient(135deg, rgba(54, 105, 178, 0.06), transparent 72%);
                border: 1px solid rgba(18, 20, 23, 0.07);
                box-shadow: 0 18px 42px rgba(15, 22, 32, 0.08);
            }

            .footer-brand .footer-logo {
                margin-bottom: 18px;
            }

            .footer-note {
                max-width: none;
                font-size: 0.94rem;
                line-height: 1.7;
            }

            .footer-col h3 {
                margin-bottom: 14px;
            }

            .footer-links {
                gap: 0;
            }

            .footer-links > * {
                width: 100%;
                padding: 12px 0;
                border-bottom: 1px solid rgba(18, 20, 23, 0.08);
            }

            .footer-links > *:last-child {
                border-bottom: 0;
                padding-bottom: 0;
            }

            .footer-links > *:first-child {
                padding-top: 0;
            }

            .footer-links a::after {
                display: none;
            }

            .footer-base {
                margin-top: 14px;
                padding: 18px 20px;
                border-top: 0;
                border-radius: 20px;
                background: rgba(248, 249, 251, 0.92);
                border: 1px solid rgba(18, 20, 23, 0.07);
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }

            .cookie-widget {
                left: 14px;
                bottom: 14px;
                min-height: 44px;
                padding: 0 14px;
            }

            .cookie-widget span {
                font-size: 0.8rem;
            }

            .cookie-banner {
                width: calc(100% - 20px);
                bottom: 10px;
                padding: 18px 16px 16px;
                border-radius: 24px;
            }

            .cookie-banner-actions,
            .cookie-preferences-actions {
                display: grid;
                grid-template-columns: 1fr;
            }

            .cookie-banner-btn {
                width: 100%;
                justify-content: center;
            }

            .cookie-option {
                padding: 12px 14px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }

            *,
            *::before,
            *::after {
                animation: none !important;
                transition-duration: 0.01ms !important;
                transition-delay: 0ms !important;
                scroll-behavior: auto !important;
            }

            .reveal,
            .reveal-mask {
                opacity: 1 !important;
                transform: none !important;
                filter: none !important;
                clip-path: none !important;
            }
        }
    