        /* ========================================
           CSS VARIABLES
           ======================================== */
        :root {
            --navy: #1a2b3c;
            --navy-deep: #0f1a24;
            --navy-light: #2a3f52;
            --teal: #018593;
            --teal-light: #00c6ce;
            --teal-ice: #e6f7f8;
            --coral: #e8614d;
            --coral-dark: #d14f3d;
            --white: #ffffff;
            --off-white: #f5f7fa;
            --gray-100: #e8ebef;
            --gray-200: #d1d7de;
            --gray-300: #b4bcc6;
            --gray-400: #8a9299;
            --gray-500: #5a6570;
            --gray-600: #4a5560;
            --gray-700: #374151;
            --font-display: 'Plus Jakarta Sans', sans-serif;
            --font-body: 'DM Sans', sans-serif;
            --font-mono: 'IBM Plex Mono', monospace;
        }

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

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
        }

        body {
            font-family: var(--font-body);
            font-size: 18px;
            line-height: 1.7;
            color: var(--gray-700);
            background: var(--white);
        }

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

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

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

        .eyebrow--light {
            color: var(--teal-light);
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: var(--font-display);
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -0.02em;
            color: var(--navy);
        }

        h1 {
            font-size: clamp(32px, 5vw, 64px);
        }

        h2 {
            font-size: clamp(34px, 5vw, 48px);
        }

        h3 {
            font-size: clamp(24px, 3vw, 30px);
        }

        h4 {
            font-size: 20px;
            font-weight: 600;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .container--wide {
            max-width: 1100px;
        }

        @media (min-width: 1400px) {
            .container {
                padding: 0 48px;
            }
        }

        .section {
            padding: clamp(80px, 10vw, 120px) 0;
        }

        .section--compact {
            padding: clamp(60px, 8vw, 100px) 0;
        }

        /* Responsive visibility utilities */
        .desktop-only {
            display: block;
        }

        .mobile-only {
            display: none;
        }

        @media (max-width: 768px) {
            .desktop-only {
                display: none;
            }

            .mobile-only {
                display: block;
            }
        }

        .btn {
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 16px;
            padding: 5px 24px;
            border-radius: 4px;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.2s ease;
        }

        .btn--primary {
            background: var(--coral);
            color: var(--white);
        }

        .btn--primary:hover {
            background: var(--coral-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(232, 97, 77, 0.3);
        }

        .btn--secondary {
            background: transparent;
            color: var(--navy);
            border: 2px solid var(--gray-200);
        }

        .btn--secondary:hover {
            border-color: var(--navy);
            background: var(--off-white);
        }

        .btn__arrow {
            transition: transform 0.2s;
        }

        .btn:hover .btn__arrow {
            transform: translateX(4px);
        }

        /* ========================================
           NAVIGATION
           ======================================== */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--gray-100);
        }

        .nav__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .nav__logo img {
            height: 28px;
        }

        .nav__links {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .nav__link {
            font-size: 16px;
            font-weight: 500;
            color: var(--gray-500);
            transition: color 0.2s;
        }

        .nav__link:hover {
            color: var(--navy);
        }

        .nav__actions {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .nav__actions .btn {
            padding: 5px 24px;
        }

        @media (max-width: 768px) {
            .nav__links {
                display: none;
            }
        }

        /* Hamburger Menu */
        .nav__hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 32px;
            height: 32px;
            cursor: pointer;
            z-index: 1001;
        }

        .nav__hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--navy);
            transition: all 0.3s ease;
        }

        .nav__hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .nav__hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .nav__hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        @media (max-width: 768px) {
            .nav__hamburger {
                display: flex;
            }

            .nav__actions .nav__link,
            .nav__actions .btn {
                display: none;
            }
        }

        /* Mobile Menu Overlay */
        .nav__mobile {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--white);
            z-index: 999;
            padding: 100px 24px 40px;
            flex-direction: column;
            align-items: center;
            gap: 32px;
        }

        .nav__mobile.active {
            display: flex;
        }

        .nav__mobile a {
            font-size: 20px;
            font-weight: 600;
            color: var(--navy);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .nav__mobile a:hover {
            color: var(--teal);
        }

        .nav__mobile .btn {
            margin-top: 16px;
        }

        /* Desktop Dropdown Navigation */
        .nav__dropdown {
            position: relative;
        }

        .nav__link--dropdown {
            display: flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
        }

        .nav__dropdown-arrow {
            transition: transform 0.2s ease;
        }

        .nav__dropdown:hover .nav__dropdown-arrow {
            transform: rotate(180deg);
        }

        .nav__dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            min-width: 220px;
            background: var(--white);
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
            padding: 12px 0;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
            transform: translateX(-50%) translateY(8px);
            z-index: 100;
        }

        .nav__dropdown:hover .nav__dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .nav__dropdown-item {
            display: block;
            padding: 10px 20px;
            font-size: 15px;
            font-weight: 500;
            color: var(--gray-500);
            transition: background 0.15s ease, color 0.15s ease;
            white-space: nowrap;
        }

        .nav__dropdown-item:hover {
            background: var(--gray-50);
            color: var(--navy);
        }

        /* Mobile Menu Groups */
        .nav__mobile-group {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        .nav__mobile-toggle {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }

        .nav__mobile-arrow {
            transition: transform 0.2s ease;
        }

        .nav__mobile-group.active .nav__mobile-arrow {
            transform: rotate(180deg);
        }

        .nav__mobile-submenu {
            display: none;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            padding: 16px 0;
            width: 100%;
        }

        .nav__mobile-group.active .nav__mobile-submenu {
            display: flex;
        }

        .nav__mobile-submenu a {
            font-size: 16px;
            font-weight: 500;
            color: var(--gray-500);
        }

        .nav__mobile-submenu a:hover {
            color: var(--teal);
        }

        /* ========================================
           HERO — INTEGRATED 22 vs 117
           ======================================== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: var(--white);
            padding-top: 140px;
            overflow: hidden;
        }

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

        .hero__content {
            max-width: 580px;
        }

        .hero__eyebrow {
            margin-bottom: 20px;
        }

        .hero__title {
            margin-bottom: 24px;
        }

        .hero__title span {
            color: var(--coral);
        }

        .hero__subtitle {
            font-size: 20px;
            color: var(--gray-500);
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .hero__actions {
            display: flex;
            gap: 16px;
            margin-bottom: 56px;
        }

        .hero__proof {
            display: flex;
            gap: 48px;
            padding-top: 32px;
            border-top: 1px solid var(--gray-100);
            flex-wrap: wrap;
        }

        .hero__stat-value {
            font-family: var(--font-display);
            font-size: 34px;
            font-weight: 800;
            color: var(--navy);
            line-height: 1;
            margin-bottom: 6px;
        }

        .hero__stat-label {
            font-size: 15px;
            color: var(--gray-500);
        }

        /* Hero Visual — Vertical Comparison (Navy Background) */
        .hero__visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-comparison {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 56px 72px 48px;
            background: var(--navy);
            border-radius: 16px;
            box-shadow: 0 24px 64px rgba(26, 43, 60, 0.25);
        }

        .hero-comparison__block {
            text-align: center;
        }

        .hero-comparison__block--primary .hero-comparison__number {
            color: var(--teal-light);
            text-shadow: 0 4px 24px rgba(0, 198, 206, 0.4);
        }

        .hero-comparison__block--secondary .hero-comparison__number {
            color: rgba(255, 255, 255, 0.25);
        }

        .hero-comparison__number {
            font-family: var(--font-display);
            font-size: 120px;
            font-weight: 800;
            line-height: 0.9;
            letter-spacing: -0.04em;
        }

        .hero-comparison__label {
            font-family: var(--font-mono);
            font-size: 11px;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-top: 12px;
        }

        .hero-comparison__block--primary .hero-comparison__label {
            color: var(--teal-light);
        }

        .hero-comparison__block--secondary .hero-comparison__label {
            color: rgba(255, 255, 255, 0.4);
        }

        .hero-comparison__divider {
            display: flex;
            align-items: center;
            gap: 16px;
            margin: 20px 0;
            width: 100%;
        }

        .hero-comparison__line {
            flex: 1;
            height: 1px;
            background: rgba(255, 255, 255, 0.15);
        }

        .hero-comparison__vs {
            font-family: var(--font-mono);
            font-size: 12px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .hero-comparison__context {
            text-align: center;
            margin-top: 28px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            width: 100%;
        }

        .hero-comparison__tagline {
            font-family: var(--font-display);
            font-size: 16px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 4px;
        }

        .hero-comparison__subtext {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 20px;
        }

        .hero-comparison__cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 5px 24px;
            background: var(--coral);
            color: var(--white);
            font-family: var(--font-display);
            font-size: 14px;
            font-weight: 600;
            border-radius: 6px;
            transition: all 0.2s ease;
        }

        .hero-comparison__cta:hover {
            background: var(--coral-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(232, 97, 77, 0.4);
        }

        .hero-comparison__cta svg {
            width: 16px;
            height: 16px;
        }

        @media (max-width: 1024px) {
            .hero {
                padding-top: 120px;
                min-height: auto;
            }

            .hero__inner {
                grid-template-columns: 1fr;
                gap: 48px;
                text-align: center;
            }

            .hero__content {
                max-width: 100%;
            }

            .hero__actions {
                justify-content: center;
            }

            .hero__proof {
                justify-content: center;
                gap: 24px;
            }

            .hero-comparison {
                padding: 48px 56px 40px;
            }

            .hero-comparison__number {
                font-size: 100px;
            }
        }

        @media (max-width: 600px) {
            .hero-comparison {
                padding: 40px 32px 32px;
            }

            .hero-comparison__number {
                font-size: 72px;
            }
        }

        /* ========================================
           PROBLEM SECTION — NAVY BACKGROUND
           ======================================== */
        .problem {
            background: var(--navy);
            color: var(--white);
        }

        .problem__header {
            text-align: center;
            max-width: 750px;
            margin: 0 auto 72px;
        }

        .problem__title {
            color: var(--white);
            margin-bottom: 16px;
        }

        .problem__subtitle {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.7);
        }

        .problem__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .problem__card {
            padding: 32px;
            border-top: 3px solid var(--coral);
            background: rgba(255, 255, 255, 0.05);
            border-radius: 0 0 8px 8px;
        }

        .problem__card-number {
            font-family: var(--font-mono);
            font-size: 13px;
            color: var(--coral);
            margin-bottom: 16px;
        }

        .problem__card-text {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
        }

        .problem__shift {
            text-align: center;
            margin-top: 64px;
        }

        .problem__shift-text {
            font-family: var(--font-display);
            font-size: clamp(20px, 2.5vw, 24px);
            font-weight: 600;
            color: var(--white);
        }

        @media (max-width: 900px) {
            .problem__grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========================================
           FOUNDER VIDEO SECTION
           ======================================== */
        .founder-video {
            background: var(--off-white);
            border-bottom: 1px solid var(--gray-100);
        }

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

        .founder-video__content {
            max-width: 480px;
        }

        .founder-video__eyebrow {
            margin-bottom: 16px;
        }

        .founder-video__title {
            margin-bottom: 20px;
        }

        .founder-video__text {
            font-size: 18px;
            color: var(--gray-600);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .founder-video__author {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .founder-video__avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--gray-200);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 20px;
            font-weight: 700;
            color: var(--navy);
        }

        .founder-video__author-name {
            font-family: var(--font-display);
            font-size: 17px;
            font-weight: 600;
            color: var(--navy);
        }

        .founder-video__author-title {
            font-size: 14px;
            color: var(--gray-500);
        }

        /* Video Player */
        .founder-video__player {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            background: var(--navy);
            aspect-ratio: 16 / 9;
            box-shadow: 0 24px 80px rgba(26, 43, 60, 0.2);
        }

        .founder-video__placeholder {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--navy);
            /* Fallback */
            overflow: hidden;
        }

        .founder-video__bg-video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .founder-video__play-btn {
            width: 88px;
            height: 88px;
            border-radius: 50%;
            background: var(--coral);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(232, 97, 77, 0.4);
            position: relative;
            z-index: 2;
        }

        .founder-video__play-btn:hover {
            transform: scale(1.08);
            box-shadow: 0 12px 40px rgba(232, 97, 77, 0.5);
        }

        .founder-video__play-btn svg {
            width: 32px;
            height: 32px;
            color: var(--white);
            margin-left: 4px;
        }

        .founder-video__duration {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.6);
            color: var(--white);
            font-family: var(--font-mono);
            font-size: 12px;
            padding: 6px 12px;
            border-radius: 4px;
            z-index: 2;
        }

        @media (max-width: 1024px) {
            .founder-video__inner {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .founder-video__content {
                max-width: 100%;
                text-align: center;
            }

            .founder-video__author {
                justify-content: center;
            }
        }

        /* ========================================
           SOLUTION SECTION
           ======================================== */
        .solution {
            background: var(--white);
        }

        .solution__header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 72px;
        }

        .solution__title {
            margin-bottom: 16px;
        }

        .solution__subtitle {
            font-size: 20px;
            color: var(--gray-500);
        }

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

        .solution__steps.grid-3 {
            grid-template-columns: repeat(3, 1fr);
        }

        .solution__step {
            text-align: center;
            padding: 40px 28px;
            background: var(--off-white);
            border: 1px solid var(--gray-100);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .solution__step:hover {
            background: var(--white);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            transform: translateY(-4px);
        }

        .solution__step-icon {
            width: 56px;
            height: 56px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--teal-ice);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .solution__step-icon svg {
            width: 28px;
            height: 28px;
            color: var(--teal);
            transition: all 0.3s ease;
        }

        .solution__step:hover .solution__step-icon {
            background: var(--teal);
        }

        .solution__step:hover .solution__step-icon svg {
            color: var(--white);
        }

        .solution__step-number {
            font-family: var(--font-mono);
            font-size: 12px;
            font-weight: 500;
            color: var(--gray-400);
            letter-spacing: 0.1em;
            margin-bottom: 12px;
        }

        .solution__step-title {
            font-family: var(--font-display);
            font-size: 22px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 12px;
        }

        .solution__step-text {
            color: var(--gray-600);
            font-size: 16px;
            line-height: 1.7;
        }

        @media (max-width: 1024px) {
            .solution__steps {
                grid-template-columns: repeat(2, 1fr);
            }

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

        @media (max-width: 768px) {
            .solution__steps,
            .solution__steps.grid-3 {
                grid-template-columns: 1fr;
            }
        }

        /* ========================================
           CASE STUDY
           ======================================== */
        .case-study {
            background: var(--teal-ice);
            border-top: 1px solid rgba(1, 133, 147, 0.15);
            border-bottom: 1px solid rgba(1, 133, 147, 0.15);
        }

        /* Case Study - Clean Editorial Design */
        .case-study__eyebrow {
            text-align: center;
            margin-bottom: 40px;
        }

        .case-study__eyebrow .eyebrow {
            font-size: 13px;
        }

        /* Big Numbers */
        .case-study__hero {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 32px;
            margin-bottom: 48px;
        }

        .case-study__number {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: clamp(100px, 15vw, 180px);
            line-height: 0.85;
            letter-spacing: -0.04em;
        }

        .case-study__number--highlight {
            color: var(--coral);
        }

        .case-study__number--muted {
            color: var(--gray-300);
        }

        .case-study__vs {
            font-family: var(--font-mono);
            font-size: 18px;
            font-weight: 500;
            color: var(--gray-400);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            padding-bottom: 24px;
        }

        /* Proof Points - Horizontal Strip */
        .case-study__proof {
            display: flex;
            justify-content: center;
            margin-bottom: 56px;
            background: var(--white);
            border-radius: 12px;
            max-width: 720px;
            margin-left: auto;
            margin-right: auto;
            box-shadow: 0 4px 24px rgba(1, 133, 147, 0.08);
        }

        .case-study__point {
            flex: 1;
            text-align: center;
            padding: 28px 24px;
            border-right: 1px solid var(--gray-100);
        }

        .case-study__point:last-child {
            border-right: none;
        }

        .case-study__point-value {
            font-family: var(--font-display);
            font-size: 32px;
            font-weight: 800;
            color: var(--teal);
            margin-bottom: 6px;
        }

        .case-study__point-label {
            font-size: 14px;
            font-weight: 500;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        /* Quote */
        .case-study__quote {
            max-width: 720px;
            margin: 0 auto;
            text-align: center;
            padding-top: 48px;
            border-top: 1px solid rgba(1, 133, 147, 0.2);
        }

        .case-study__quote blockquote {
            font-family: var(--font-display);
            font-size: clamp(22px, 3vw, 28px);
            font-weight: 500;
            color: var(--navy);
            line-height: 1.4;
            margin-bottom: 20px;
        }

        .case-study__quote blockquote::before,
        .case-study__quote blockquote::after {
            color: var(--teal);
        }

        .case-study__quote blockquote::before {
            content: '"';
        }

        .case-study__quote blockquote::after {
            content: '"';
        }

        .case-study__quote cite {
            font-style: normal;
            font-size: 16px;
            color: var(--gray-500);
        }

        .case-study__quote cite strong {
            color: var(--navy);
        }

        @media (max-width: 600px) {
            .case-study__hero {
                gap: 20px;
            }

            .case-study__proof {
                flex-direction: column;
            }

            .case-study__point {
                border-right: none;
                border-bottom: 1px solid var(--gray-100);
                padding: 20px 24px;
            }

            .case-study__point:last-child {
                border-bottom: none;
            }
        }

        /* ========================================
           TECHNOLOGY
           ======================================== */
        .tech {
            background: var(--off-white);
        }

        .tech__header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 56px;
        }

        .tech__title {
            margin-bottom: 16px;
        }

        .tech__subtitle {
            font-size: 20px;
            color: var(--gray-500);
        }

        /* Photo Placeholder */
        .tech__image-placeholder {
            margin-bottom: 56px;
            height: 400px;
            background: var(--white);
            border: 2px dashed var(--gray-200);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-400);
            font-family: var(--font-mono);
            font-size: 14px;
        }

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

        .tech__product {
            padding: 36px 28px;
            background: var(--white);
            border: 1px solid var(--gray-100);
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .tech__product:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        }

        .tech__product-name {
            font-family: var(--font-display);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.02em;
            margin-bottom: 20px;
        }

        .tech__product-name span {
            display: block;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            color: var(--teal);
            margin-bottom: -2px;
        }

        .tech__product-name strong {
            display: block;
            font-size: 30px;
            color: var(--navy);
        }

        .tech__product-name sup {
            font-size: 10px;
            font-weight: 500;
            color: var(--gray-400);
            vertical-align: super;
            margin-left: 2px;
        }

        .tech__product-desc {
            font-size: 16px;
            color: var(--gray-600);
            line-height: 1.6;
        }

        @media (max-width: 900px) {
            .tech__products {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .tech__image-placeholder {
                height: 280px;
            }
        }

        /* ========================================
           SECURITY
           ======================================== */
        .security {
            background: var(--white);
            border-top: 1px solid var(--gray-100);
        }

        .security__inner {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 64px;
            align-items: center;
        }

        .security__content h2 {
            margin-bottom: 16px;
        }

        .security__content p {
            font-size: 18px;
            color: var(--gray-600);
            line-height: 1.7;
        }

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

        .security__item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 24px;
            background: var(--off-white);
            border: 1px solid var(--gray-100);
            border-radius: 8px;
        }

        .security__icon {
            width: 24px;
            height: 24px;
            color: var(--teal);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .security__item-title {
            font-family: var(--font-display);
            font-size: 17px;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 4px;
        }

        .security__item-text {
            font-size: 15px;
            color: var(--gray-500);
            line-height: 1.6;
        }

        @media (max-width: 900px) {
            .security__inner {
                grid-template-columns: 1fr;
                gap: 40px;
            }

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

        /* ========================================
           TESTIMONIAL
           ======================================== */
        .testimonial {
            background: var(--navy);
        }

        .testimonial__inner {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .testimonial__quote {
            font-family: var(--font-display);
            font-size: clamp(24px, 4vw, 36px);
            font-weight: 500;
            color: var(--white);
            line-height: 1.4;
            margin-bottom: 32px;
        }

        .testimonial__quote::before,
        .testimonial__quote::after {
            color: var(--teal-light);
        }

        .testimonial__quote::before {
            content: '"';
        }

        .testimonial__quote::after {
            content: '"';
        }

        .testimonial__attribution {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.6);
        }

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

        /* ========================================
           SERVICES
           ======================================== */
        .services {
            background: var(--navy);
            color: var(--white);
        }

        .services__header {
            margin-bottom: 64px;
        }

        .services__header .eyebrow {
            margin-bottom: 12px;
            color: var(--teal-light);
        }

        .services__header h2 {
            color: var(--white);
        }

        .services__list {
            display: flex;
            flex-direction: column;
        }

        .services__item {
            display: grid;
            grid-template-columns: 120px 1fr;
            gap: 40px;
            padding: 48px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            align-items: start;
        }

        .services__item:last-child {
            border-bottom: none;
        }

        .services__number {
            font-family: var(--font-display);
            font-size: 64px;
            font-weight: 800;
            color: var(--teal-light);
            line-height: 1;
            letter-spacing: -0.02em;
        }

        .services__content h3 {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 12px;
        }

        .services__content p {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            line-height: 1.7;
        }

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

            .services__number {
                font-size: 48px;
            }
        }

        /* ========================================
           AUDIENCE
           ======================================== */
        .audience {
            background: var(--white);
        }

        .audience__header {
            text-align: center;
            margin-bottom: 56px;
        }

        .audience__header .eyebrow {
            margin-bottom: 12px;
        }

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

        .audience__card {
            padding: 40px 32px;
            background: var(--white);
            border: 1px solid var(--gray-100);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .audience__card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        }

        .audience__card--featured {
            border-top: 3px solid var(--coral);
        }

        .audience__card h3 {
            font-family: var(--font-display);
            font-size: 22px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 12px;
        }

        .audience__card p {
            font-size: 16px;
            color: var(--gray-600);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .audience__link {
            font-family: var(--font-display);
            font-size: 15px;
            font-weight: 600;
            color: var(--teal);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: all 0.2s;
        }

        .audience__link:hover {
            gap: 10px;
            color: var(--coral);
        }

        @media (max-width: 900px) {
            .audience__grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========================================
           CTA
           ======================================== */
        .cta {
            background: var(--teal-ice);
            text-align: center;
            border-top: 1px solid rgba(1, 133, 147, 0.15);
            border-bottom: 1px solid rgba(1, 133, 147, 0.15);
        }

        .cta__inner {
            max-width: 700px;
            margin: 0 auto;
        }

        .cta__eyebrow {
            margin-bottom: 16px;
        }

        .cta__title {
            margin-bottom: 20px;
        }

        .cta__text {
            font-size: 20px;
            color: var(--gray-500);
            margin-bottom: 40px;
        }

        .cta__actions {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 28px;
        }

        .cta__contact {
            font-family: var(--font-mono);
            font-size: 14px;
            color: var(--gray-500);
        }

        .cta__contact a {
            color: var(--gray-700);
            transition: color 0.2s;
        }

        .cta__contact a:hover {
            color: var(--coral);
        }

        /* ========================================
           FOOTER
           ======================================== */
        .footer {
            background: var(--navy);
            color: var(--white);
            padding: 72px 0 36px;
        }

        .footer__inner {
            display: grid;
            grid-template-columns: 1.5fr repeat(3, 1fr);
            gap: 48px;
            margin-bottom: 56px;
        }

        .footer__brand p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.5);
            margin-top: 20px;
            max-width: 280px;
            line-height: 1.7;
        }

        .footer__col h4 {
            font-family: var(--font-mono);
            font-size: 12px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 20px;
        }

        .footer__col a {
            display: block;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 12px;
            transition: color 0.2s;
        }

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

        .footer__bottom {
            padding-top: 28px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.4);
        }

        .footer__legal {
            display: flex;
            gap: 24px;
        }

        .footer__legal a {
            color: rgba(255, 255, 255, 0.4);
            transition: color 0.2s;
        }

        .footer__legal a:hover {
            color: rgba(255, 255, 255, 0.7);
        }

        @media (max-width: 900px) {
            .footer__inner {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 600px) {
            .footer__inner {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }

        /* ========================================
   LEGAL PAGES
   ======================================== */
        .legal-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 4rem 0 8rem;
        }

        .legal-content h1 {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 3rem;
            line-height: 1.2;
            color: var(--navy);
            margin-bottom: 2rem;
            letter-spacing: -0.02em;
        }

        .legal-content h2 {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.75rem;
            line-height: 1.3;
            color: var(--navy);
            margin-top: 3rem;
            margin-bottom: 1rem;
        }

        .legal-content h3 {
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 1.25rem;
            line-height: 1.4;
            color: var(--navy);
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }

        .legal-content p {
            font-family: var(--font-body);
            font-size: 1.125rem;
            line-height: 1.7;
            color: var(--gray-600);
            margin-bottom: 1.5rem;
        }

        .legal-content ul,
        .legal-content ol {
            padding-left: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .legal-content li {
            font-family: var(--font-body);
            font-size: 1.125rem;
            line-height: 1.7;
            color: var(--gray-600);
            margin-bottom: 0.5rem;
            padding-left: 0.5rem;
        }

        .legal-content a {
            color: var(--teal);
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .legal-content a:hover {
            color: var(--teal-light);
        }

        /* ========================================
           GENERIC LAYOUTS
           ======================================== */
        .split-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        @media (max-width: 900px) {
            .split-section {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .split-section .hero__actions,
            .split-section .btn-group {
                justify-content: center;
            }
        }

        .text-content h2 {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .text-content p {
            font-size: 1.125rem;
            line-height: 1.7;
            color: var(--gray-600);
            margin-bottom: 1.5rem;
        }

        .text-content ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .text-content li {
            position: relative;
            padding-left: 24px;
            margin-bottom: 12px;
            font-size: 1.125rem;
            color: var(--gray-600);
            line-height: 1.6;
        }

        .text-content li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 8px;
            height: 8px;
            background: var(--teal);
            border-radius: 50%;
        }

        /* Light text variant for dark backgrounds */
        .text-content--light li {
            color: #f5f7fa;
        }

        .text-content--light li::before {
            background: var(--teal-light);
        }

        /* Feature Grid (for "One Standard") */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            margin-top: 56px;
        }

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

        .feature-card {
            background: var(--white);
            padding: 40px;
            border-radius: 12px;
            border: 1px solid var(--gray-100);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
        }

        .feature-card h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 16px;
        }

        .feature-card p {
            font-size: 1rem;
            color: var(--gray-600);
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .feature-grid {
                grid-template-columns: 1fr;
            }

            .feature-grid.grid-3 {
                grid-template-columns: 1fr;
            }
        }

        /* Process Steps (for Validation Flow) */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 24px;
            margin-top: 64px;
            counter-reset: step;
        }

        .process-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
        }

        .process-step::after {
            content: '';
            position: absolute;
            top: 24px;
            right: -50%;
            width: 100%;
            height: 2px;
            background: var(--gray-100);
            z-index: 0;
        }

        .process-step:last-child::after {
            display: none;
        }

        .step-number {
            width: 48px;
            height: 48px;
            background: var(--teal-ice);
            color: var(--teal);
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
            border: 4px solid var(--white);
        }

        .process-step h4 {
            font-family: var(--font-display);
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 12px;
        }

        .process-step p {
            font-size: 0.9375rem;
            color: var(--gray-500);
            line-height: 1.5;
        }

        @media (max-width: 900px) {
            .process-steps {
                grid-template-columns: 1fr;
                gap: 40px;
                padding-left: 24px;
            }

            .process-step {
                flex-direction: row;
                align-items: flex-start;
                text-align: left;
                gap: 20px;
            }

            .process-step::after {
                top: 24px;
                left: 22px;
                right: auto;
                width: 2px;
                height: 100%;
            }

            .step-number {
                margin-bottom: 0;
                flex-shrink: 0;
            }
        }

        /* Update section padding for these pages */
        .section--legal {
            padding-top: 140px;
            /* Account for fixed header */
            background-color: var(--white);
        }

        /* ========================================
           CONTACT PROTECTION (Anti-scraper)
           ======================================== */
        .contact-reveal {
            cursor: pointer;
            text-decoration: underline;
        }

        .contact-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
        }

        .contact-modal__box {
            background: var(--white);
            padding: 32px;
            border-radius: 12px;
            max-width: 400px;
            width: 90%;
            text-align: center;
        }

        .contact-modal__title {
            font-family: var(--font-display);
            font-size: 20px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 12px;
        }

        .contact-modal__text {
            color: var(--gray-600);
            margin-bottom: 20px;
            font-size: 16px;
        }

        .contact-modal__input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid var(--gray-200);
            border-radius: 6px;
            font-size: 16px;
            margin-bottom: 16px;
            text-align: center;
        }

        .contact-modal__input:focus {
            outline: none;
            border-color: var(--teal);
        }

        .contact-modal__buttons {
            display: flex;
            gap: 12px;
            justify-content: center;
        }

        .contact-modal__btn {
            padding: 10px 24px;
            border-radius: 6px;
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
        }

        .contact-modal__btn--primary {
            background: var(--coral);
            color: white;
        }

        .contact-modal__btn--secondary {
            background: var(--gray-100);
            color: var(--gray-600);
        }

        .contact-modal__result {
            display: block;
            font-size: 20px;
            color: var(--teal);
            font-weight: 600;
            margin: 24px 0;
            word-break: break-all;
        }