        /* =========================================================
   TOKENS
   ========================================================= */
        :root {
            --ink: #0b1b2f;
            --ink-2: #4a5a72;
            --ink-3: #8896a8;
            --line: #e6ebf2;
            --line-2: #eef2f7;
            --bg: #ffffff;
            --bg-alt: #f4f7fb;
            --bg-deep: #eef3f9;
            --brand: #0b3a6f; /* deep river blue */
            --brand-2: #0e4f99;
            --brand-soft: #e7eef8;
            --accent: #18a6c9; /* water cyan, used sparingly */
            --dark: #0a1726;
            --dark-2: #0e1f33;
            --radius: 14px;
            --radius-lg: 20px;
            --radius-sm: 10px;
            --shadow-sm: 0 1px 2px rgba(11, 27, 47, .06), 0 2px 8px rgba(11, 27, 47, .04);
            --shadow-md: 0 10px 30px rgba(11, 27, 47, .08);
            --shadow-lg: 0 24px 60px rgba(11, 27, 47, .14);
            --container: 1240px;
            --header-h: 76px;
        }

        * {
            box-sizing: border-box
        }

        html, body {
            margin: 0;
            padding: 0
        }

        html {
            scroll-behavior: smooth
        }

        body {
            font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
            color: var(--ink);
            background: var(--bg);
            font-size: 16px;
            line-height: 1.55;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
            padding-top: 0;
        }

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

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

        button {
            font-family: inherit;
            cursor: pointer;
            border: 0;
            background: none;
            color: inherit
        }

        input, select, textarea {
            font-family: inherit;
            font-size: inherit;
            color: inherit
        }

        .container {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 32px
        }

        /* =========================================================
   TYPOGRAPHY
   ========================================================= */
        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'JetBrains Mono', ui-monospace, monospace;
            font-size: 13px;
            letter-spacing: .08em;
            text-transform: uppercase;
            color: var(--brand);
            font-weight: 500;
        }

        .eyebrow::before {
            content: "";
            width: 24px;
            height: 1px;
            background: var(--brand);
            display: inline-block
        }

        .h1, h1.h1 {
            font-size: clamp(40px, 5.6vw, 76px);
            line-height: 1.04;
            letter-spacing: -.02em;
            font-weight: 700;
            margin: 0;
            text-wrap: balance;
        }

        .h2, h2.h2 {
            font-size: clamp(32px, 3.6vw, 54px);
            line-height: 1.08;
            letter-spacing: -.018em;
            font-weight: 700;
            margin: 0;
            text-wrap: balance;
        }

        .h3 {
            font-size: clamp(22px, 2vw, 28px);
            line-height: 1.2;
            letter-spacing: -.01em;
            font-weight: 700;
            margin: 0;
        }

        .lead {
            font-size: clamp(16px, 1.15vw, 19px);
            color: var(--ink-2);
            line-height: 1.55;
            max-width: 620px;
            margin: 0;
        }

        .muted {
            color: var(--ink-2)
        }

        /* =========================================================
   BUTTONS
   ========================================================= */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            height: 54px;
            padding: 0 26px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 15px;
            letter-spacing: .005em;
            transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
            white-space: nowrap;
        }

        .btn-primary {
            background: var(--brand);
            color: #fff;
            box-shadow: 0 8px 24px rgba(11, 58, 111, .25)
        }

        .btn-primary:hover {
            background: var(--brand-2);
            transform: translateY(-1px)
        }

        .btn-outline {
            background: transparent;
            color: var(--ink);
            border: 1px solid var(--line)
        }

        .btn-outline:hover {
            border-color: var(--ink);
            background: #fff
        }

        .btn-ghost {
            background: transparent;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, .35)
        }

        .btn-ghost:hover {
            background: rgba(255, 255, 255, .1);
            border-color: rgba(255, 255, 255, .7)
        }

        .btn-sm {
            height: 44px;
            padding: 0 20px;
            font-size: 14px
        }

        .btn-block {
            width: 100%
        }

        /* =========================================================
   HEADER — full-width liquid glass over hero
   ========================================================= */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            transform: none;
            width: 100%;
            max-width: none;
            height: 72px;
            border-radius: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.10);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: none;
            transition: background .3s ease, backdrop-filter .3s ease, box-shadow .3s ease, border-color .3s ease;
        }

        /* Scrolled past hero → dense light glass (text switches to dark below) */
        .header.is-scrolled {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(24px) saturate(180%);
            -webkit-backdrop-filter: blur(24px) saturate(180%);
            border-bottom: 1px solid rgba(11, 27, 47, 0.08);
            box-shadow: 0 6px 24px rgba(11, 27, 47, 0.10);
        }

        .header-row {
            display: flex;
            align-items: center;
            gap: 32px;
            height: 100%;
            padding: 0 24px;
        }

        .logo {
            display: inline-flex;
            align-items: center;
            height: 32px
        }

        .logo img {
            height: 24px;
            width: auto
        }

        /* Default (over hero): light logo */
        .header .logo-dark {
            display: none
        }

        .header .logo-light {
            display: inline-block
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 24px;
            margin-left: 8px
        }

        .nav a {
            font-size: 14px;
            color: #fff;
            font-weight: 500;
            position: relative;
            transition: color .2s ease
        }

        .nav a::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -4px;
            height: 1.5px;
            background: currentColor;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .2s ease;
            opacity: .8
        }

        .nav a:hover {
            color: #fff
        }

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

        .header-cta {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-left: auto
        }

        .header-phone {
            font-weight: 600;
            font-size: 14px;
            color: #fff;
            white-space: nowrap;
            transition: color .2s ease
        }

        .header-phone:hover {
            color: #fff;
            opacity: .8
        }

        .header-cta .btn.btn-sm {
            height: 40px;
            padding: 0 20px;
            border-radius: 100px;
            background: #0B1C30;
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            box-shadow: none;
        }

        .header-cta .btn.btn-sm:hover {
            background: #173456;
            transform: none
        }

        .burger {
            display: none;
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, .30);
            background: rgba(255, 255, 255, .10)
        }

        .burger img {
            width: 18px;
            height: 18px;
            filter: brightness(0) invert(1)
        }

        /* Desktop/tablet scrolled → dark content on the light glass */
        @media (min-width: 721px) {
            .header.is-scrolled .logo-dark {
                display: inline-block
            }

            .header.is-scrolled .logo-light {
                display: none
            }

            .header.is-scrolled .nav a {
                color: var(--ink)
            }

            .header.is-scrolled .nav a:hover {
                color: var(--brand)
            }

            .header.is-scrolled .header-phone {
                color: var(--ink)
            }

            .header.is-scrolled .header-phone:hover {
                color: var(--brand);
                opacity: 1
            }

            .header.is-scrolled .burger {
                border-color: rgba(11, 27, 47, .12);
                background: rgba(255, 255, 255, .4)
            }

            .header.is-scrolled .burger img {
                filter: none
            }
        }

        @media (max-width: 720px) {
            /* Mobile header: flush full-width liquid glass over the hero image */
            body {
                padding-top: 0
            }

            .header {
                top: 0;
                left: 0;
                transform: none;
                width: 100%;
                max-width: none;
                height: 64px;
                border-radius: 0;
                background: rgba(255, 255, 255, 0.10);
                backdrop-filter: blur(20px) saturate(180%);
                -webkit-backdrop-filter: blur(20px) saturate(180%);
                border: 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.15);
                box-shadow: none;
            }

            .header.is-scrolled {
                background: rgba(11, 28, 48, 0.62);
                backdrop-filter: blur(22px) saturate(180%);
                -webkit-backdrop-filter: blur(22px) saturate(180%);
                border-bottom: 1px solid rgba(255, 255, 255, 0.12);
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
            }

            .header-row {
                padding: 0 16px;
                gap: 16px
            }

            /* Light logo + burger because they sit on a dark hero photo */
            .header .logo-dark {
                display: none
            }

            .header .logo-light {
                display: inline-block
            }

            .burger {
                border-color: rgba(255, 255, 255, 0.30);
                background: rgba(255, 255, 255, 0.10);
            }

            .burger img {
                filter: brightness(0) invert(1)
            }
        }

        /* mobile menu — dark navy liquid-glass drawer + overlay */
        .mobile-menu {
            position: fixed;
            inset: 0;
            z-index: 120;
            visibility: hidden;
            pointer-events: none;
        }

        .mobile-menu.open {
            visibility: visible;
            pointer-events: auto
        }

        .mobile-menu-overlay {
            position: absolute;
            inset: 0;
            background: rgba(6, 16, 28, 0.55);
            -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
            opacity: 0;
            transition: opacity .3s ease;
        }

        .mobile-menu.open .mobile-menu-overlay {
            opacity: 1
        }

        .mobile-menu-panel {
            position: absolute;
            top: 0;
            right: 0;
            height: 100%;
            width: min(86vw, 360px);
            background: rgba(14, 42, 74, 0.88);
            -webkit-backdrop-filter: blur(26px) saturate(160%);
            backdrop-filter: blur(26px) saturate(160%);
            border-left: 1px solid rgba(255, 255, 255, 0.14);
            box-shadow: -24px 0 60px rgba(0, 0, 0, 0.45);
            display: flex;
            flex-direction: column;
            transform: translateX(100%);
            transition: transform .35s cubic-bezier(.4, 0, .2, 1);
        }

        .mobile-menu.open .mobile-menu-panel {
            transform: translateX(0)
        }

        .mobile-menu-top {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
            padding: 0 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        }

        .mobile-menu-top .logo {
            height: auto
        }

        .mobile-menu-top .logo img {
            height: 22px
        }

        .mobile-menu-close {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            background: rgba(255, 255, 255, 0.06);
        }

        .mobile-menu-close img {
            width: 16px;
            height: 16px;
            filter: brightness(0) invert(1)
        }

        .mobile-menu nav {
            flex: 1 1 auto;
            overflow-y: auto;
            padding: 14px 22px;
            display: flex;
            flex-direction: column
        }

        .mobile-menu nav a {
            display: flex;
            align-items: center;
            min-height: 54px;
            font-size: 19px;
            font-weight: 600;
            color: #fff;
            letter-spacing: -.01em;
            border-bottom: 1px solid rgba(255, 255, 255, 0.09);
            transition: color .15s ease, padding-left .15s ease;
        }

        .mobile-menu nav a:last-child {
            border-bottom: 0
        }

        .mobile-menu nav a:active {
            color: rgba(255, 255, 255, 0.55);
            padding-left: 6px
        }

        .mobile-menu-foot {
            flex: 0 0 auto;
            padding: 20px 22px calc(20px + env(safe-area-inset-bottom));
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .mobile-menu-foot .btn-primary {
            width: 100%;
            background: #fff;
            color: #0B1C30;
            box-shadow: none
        }

        .mobile-menu-foot .btn-primary:hover {
            background: rgba(255, 255, 255, .9);
            transform: none
        }

        .mobile-menu-foot .phone-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 44px;
            font-size: 16px;
            font-weight: 600;
            color: #fff
        }

        .mobile-menu-foot .phone-row img {
            width: 16px;
            height: 16px;
            filter: brightness(0) invert(1)
        }

        @supports not ((backdrop-filter: blur(20px)) or (-webkit-backdrop-filter: blur(20px))) {
            .mobile-menu-panel {
                background: #0e2a4a
            }
        }

        /* =========================================================
   HERO
   ========================================================= */
        .hero {
            position: relative;
            overflow: hidden;
            color: #fff;
            isolation: isolate;
            padding: 96px 0 0;
            min-height: calc(100vh - var(--header-h));
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: -2;
            background: #0a1726 url('../images/hero-bg.png') center / cover no-repeat;
        }

        .hero-bg::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10, 23, 38, .55) 0%, rgba(10, 23, 38, .35) 40%, rgba(10, 23, 38, .85) 100%);
        }

        .hero-bg {
            position: absolute
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -1;
            background: linear-gradient(180deg, rgba(10, 23, 38, .55) 0%, rgba(10, 23, 38, .28) 38%, rgba(10, 23, 38, .85) 100%);
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 13px;
            letter-spacing: .06em;
            color: rgba(255, 255, 255, .85);
            padding: 8px 14px;
            border: 1px solid rgba(255, 255, 255, .3);
            border-radius: 999px;
            backdrop-filter: blur(8px);
            background: rgba(255, 255, 255, .05);
        }

        .hero h1 {
            color: #fff;
            margin-top: 24px;
            max-width: 14ch
        }

        .hero-lead {
            color: rgba(255, 255, 255, .82);
            font-size: clamp(16px, 1.2vw, 19px);
            max-width: 560px;
            margin-top: 24px;
            line-height: 1.6
        }

        .hero-ctas {
            display: flex;
            gap: 14px;
            margin-top: 36px;
            flex-wrap: wrap
        }

        .hero-stats {
            display: grid;
            grid-template-columns:repeat(3, 1fr);
            gap: 32px;
            margin-top: auto;
            padding: 48px 0 56px;
            border-top: 1px solid rgba(255, 255, 255, .18);
        }

        .hero-stats {
            margin-top: 96px
        }

        .hero-stat .stat-num {
            font-size: clamp(36px, 3.6vw, 52px);
            font-weight: 700;
            letter-spacing: -.02em;
            line-height: 1;
            color: #fff
        }

        .hero-stat .stat-label {
            color: rgba(255, 255, 255, .7);
            font-size: 14px;
            margin-top: 10px;
            max-width: 200px;
            line-height: 1.4
        }

        /* =========================================================
   SECTIONS
   ========================================================= */
        section {
            padding: 120px 0;
            position: relative
        }

        .section-head {
            display: flex;
            flex-direction: column;
            gap: 18px;
            max-width: 880px;
            margin-bottom: 64px
        }

        .section-head .lead {
            margin-top: 6px
        }

        /* =========================================================
   MODELS
   ========================================================= */
        .models-grid {
            display: grid;
            grid-template-columns:repeat(3, 1fr);
            gap: 24px
        }

        .pool-card {
            background: var(--bg-alt);
            border-radius: var(--radius-lg);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: transform .25s ease, box-shadow .25s ease;
        }

        .pool-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md)
        }

        /* — Unified pool image area (block: #models) — */
        .pool-card .img-wrap {
            position: relative;
            height: 260px; /* fixed for all 6 cards on desktop */
            overflow: hidden;
            background: transparent; /* no outer frame — image fills edge to edge */
        }

        .pool-card .img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            transition: transform .6s ease;
        }

        .pool-card:hover .img-wrap img {
            transform: scale(1.04)
        }

        /* Tint overlay — unifies the 6 different PNG background tones */
        .pool-card .img-wrap::after {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: linear-gradient(180deg, rgba(58, 92, 130, 0.18) 0%, rgba(58, 92, 130, 0.28) 100%);
        }

        @media (max-width: 720px) {
            .pool-card .img-wrap {
                height: 200px
            }
        }

        .pool-card .body {
            padding: 28px 28px 32px;
            display: flex;
            flex-direction: column;
            gap: 6px
        }

        .pool-card h3 {
            font-size: 26px;
            font-weight: 700;
            letter-spacing: -.01em;
            margin: 0
        }

        .pool-card .price-label {
            color: var(--ink-3);
            font-size: 13px;
            margin-top: 14px;
            font-family: 'JetBrains Mono', monospace
        }

        .pool-card .price-row {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            gap: 14px;
            margin-top: 4px
        }

        .pool-card .price {
            font-size: 22px;
            font-weight: 700;
            letter-spacing: -.01em
        }

        .pool-card .price-more {
            color: var(--brand);
            font-weight: 600;
            font-size: 14px;
            white-space: nowrap
        }

        .pool-card .price-more:hover {
            text-decoration: underline
        }

        .pool-card .price-note {
            font-size: 12px;
            color: var(--ink-3);
            opacity: .6;
            margin-left: 8px;
            font-weight: 500;
            letter-spacing: .005em;
            white-space: nowrap
        }

        /* =========================================================
   QUIZ — 3 steps, Liquid Glass on photo background
   ========================================================= */
        .quiz-section {
            position: relative;
            background: #0B1C30;
            padding: 80px 0;
            min-height: 720px;
            overflow: hidden;
            transition: background-image .6s ease;
        }

        .quiz-section[data-step="1"] {
            background: url('../images/quiz-bg-step-1.webp') center/cover no-repeat
        }

        .quiz-section[data-step="2"] {
            background: url('../images/quiz-bg-step-2.webp') center/cover no-repeat
        }

        .quiz-section[data-step="3"] {
            background: url('../images/quiz-bg-step-3.webp') center/cover no-repeat
        }

        .quiz-section::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background: linear-gradient(135deg,
            rgba(11, 28, 48, 0.72) 0%,
            rgba(11, 28, 48, 0.55) 50%,
            rgba(11, 28, 48, 0.40) 100%);
        }

        .quiz-section > .container {
            position: relative;
            z-index: 1
        }

        .quiz-section .section-head .eyebrow {
            color: rgba(255, 255, 255, .85)
        }

        .quiz-section .section-head .eyebrow::before {
            background: rgba(255, 255, 255, .85)
        }

        .quiz-section .section-head h2.h2 {
            color: #fff
        }

        .quiz-section .section-head .lead {
            color: rgba(255, 255, 255, .78)
        }

        .quiz-card {
            background: transparent;
            border-radius: 0;
            box-shadow: none;
            display: grid;
            grid-template-columns:340px 1fr;
            gap: 24px;
            overflow: visible;
        }

        /* Left dark glass aside */
        .selection__aside {
            background: rgba(11, 28, 48, 0.42);
            backdrop-filter: blur(28px) saturate(180%);
            -webkit-backdrop-filter: blur(28px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-top: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 24px;
            padding: 32px;
            color: #fff;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .quiz-step-tag {
            font-family: 'JetBrains Mono', monospace;
            font-size: 13px;
            color: rgba(255, 255, 255, .65);
            letter-spacing: .06em
        }

        .selection__aside h3 {
            color: #fff;
            font-size: 28px;
            line-height: 1.18;
            font-weight: 700;
            letter-spacing: -.01em;
            margin: 0
        }

        .selection__aside p {
            color: rgba(255, 255, 255, .78);
            font-size: 15px;
            line-height: 1.55;
            margin: 6px 0 0
        }

        .selection__aside .progress {
            margin-top: auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding-top: 24px
        }

        .progress-bar {
            height: 4px;
            background: rgba(255, 255, 255, .15);
            border-radius: 999px;
            overflow: hidden
        }

        .progress-bar > span {
            display: block;
            height: 100%;
            width: 33%;
            background: rgba(255, 255, 255, .9);
            border-radius: 999px;
            transition: width .4s ease
        }

        .progress-meta {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            color: rgba(255, 255, 255, .7);
            font-family: 'JetBrains Mono', monospace
        }

        /* Right side body */
        .selection__body {
            display: flex;
            flex-direction: column;
            gap: 20px;
            min-height: 480px
        }

        .selection__body h4 {
            color: #fff;
            font-size: 24px;
            font-weight: 700;
            letter-spacing: -.01em;
            margin: 0;
            line-height: 1.25
        }

        /* Options grid */
        .quiz-options {
            display: grid;
            gap: 14px
        }

        .quiz-options[data-cols="3"] {
            grid-template-columns:repeat(3, 1fr)
        }

        .quiz-options[data-cols="2"] {
            grid-template-columns:repeat(2, 1fr)
        }

        /* Light glass option card */
        .quiz-option {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(24px) saturate(180%);
            -webkit-backdrop-filter: blur(24px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.22);
            border-top: 1px solid rgba(255, 255, 255, 0.4);
            border-radius: 20px;
            padding: 24px;
            color: #fff;
            cursor: pointer;
            transition: background .3s ease, transform .3s ease, box-shadow .3s ease, border-color .3s ease;
            min-height: 140px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            text-align: left;
            gap: 8px;
        }

        .quiz-option:hover {
            background: rgba(255, 255, 255, 0.18);
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
        }

        .quiz-option.is-selected {
            background: rgba(255, 255, 255, 0.28);
            border: 2px solid rgba(255, 255, 255, 0.75);
            box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12), 0 16px 40px rgba(0, 0, 0, 0.35);
            transform: scale(1.02);
            padding: 23px;
        }

        .quiz-option .icon {
            width: 64px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            margin-bottom: 2px
        }

        .quiz-option .icon svg {
            width: auto;
            max-width: 64px;
            height: 40px;
            stroke: rgba(255, 255, 255, 0.9);
            stroke-width: 1.5;
            fill: none;
            stroke-linejoin: round;
            stroke-linecap: round
        }

        .quiz-option strong {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            display: block;
            line-height: 1.25
        }

        .quiz-option .sub {
            font-size: 13px;
            color: rgba(255, 255, 255, .7);
            font-weight: 400;
            line-height: 1.4
        }

        .quiz-option .price {
            font-family: 'JetBrains Mono', monospace;
            font-size: 13px;
            color: rgba(255, 255, 255, .85);
            letter-spacing: .01em;
            margin-top: 6px
        }

        /* Step 3 — channel cards smaller */
        .quiz-channel-cards .quiz-option {
            min-height: 120px
        }

        .quiz-channel-cards .quiz-option .icon {
            height: 36px;
            width: 36px
        }

        .quiz-channel-cards .quiz-option .icon svg {
            height: 32px;
            width: 32px;
            max-width: 32px
        }

        /* Step 3 — contact form, light glass */
        .quiz-form {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(30px) saturate(180%);
            -webkit-backdrop-filter: blur(30px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-top: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 24px;
            padding: 28px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .quiz-form .form-field {
            display: flex;
            flex-direction: column;
            gap: 6px
        }

        .quiz-form label {
            color: rgba(255, 255, 255, 0.85);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: .05em;
            font-family: 'JetBrains Mono', monospace;
            font-weight: 500;
        }

        .quiz-form input[type="text"],
        .quiz-form input[type="tel"] {
            background: rgba(255, 255, 255, 0.10);
            border: 1px solid rgba(255, 255, 255, 0.25);
            color: #fff;
            border-radius: 12px;
            padding: 14px 16px;
            font-size: 15px;
            width: 100%;
            font-family: inherit;
            height: auto;
            transition: background .2s ease, border-color .2s ease;
        }

        .quiz-form input::placeholder {
            color: rgba(255, 255, 255, 0.5)
        }

        .quiz-form input:focus {
            background: rgba(255, 255, 255, 0.18);
            border-color: rgba(255, 255, 255, 0.6);
            outline: none;
            box-shadow: none;
        }

        .quiz-form .consent-row {
            color: rgba(255, 255, 255, 0.75);
            font-size: 13px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            line-height: 1.45;
        }

        .quiz-form .consent-row input {
            accent-color: #fff;
            margin-top: 3px;
            flex: 0 0 auto
        }

        .quiz-form .consent-row a {
            color: #fff;
            text-decoration: underline
        }

        /* Navigation */
        .quiz-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
            padding-top: 12px;
            gap: 14px;
        }

        .quiz-back {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: transparent;
            color: rgba(255, 255, 255, .75);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 100px;
            padding: 12px 22px;
            font-size: 13px;
            font-weight: 500;
            transition: background .2s ease, color .2s ease, border-color .2s ease;
        }

        .quiz-back:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            border-color: rgba(255, 255, 255, .55)
        }

        .quiz-back[hidden] {
            display: none
        }

        .quiz-actions .spacer {
            flex: 1
        }

        .btn-next {
            background: rgba(255, 255, 255, 0.95);
            color: #0B1C30;
            border-radius: 100px;
            padding: 14px 32px;
            font-weight: 600;
            font-size: 15px;
            transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
            font-family: inherit;
        }

        .btn-next:hover {
            background: #fff;
            transform: translateY(-1px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25)
        }

        .btn-next:disabled {
            opacity: .4;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
            background: rgba(255, 255, 255, 0.6)
        }

        /* Success state */
        .selection__success {
            grid-column: 1 / -1;
            text-align: center;
            color: #fff;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(30px) saturate(180%);
            -webkit-backdrop-filter: blur(30px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-top: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 24px;
            padding: 56px 32px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 14px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
        }

        .selection__success .check {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 8px;
        }

        .selection__success .check::after {
            content: "";
            width: 30px;
            height: 14px;
            border-left: 3px solid #fff;
            border-bottom: 3px solid #fff;
            transform: rotate(-45deg) translateY(-3px);
        }

        .selection__success h3 {
            font-size: 28px;
            font-weight: 700;
            letter-spacing: -.01em;
            color: #fff;
            margin: 0
        }

        .selection__success p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
            max-width: 46ch;
            margin: 0;
            line-height: 1.5
        }

        /* Fallback for browsers without backdrop-filter */
        @supports not ((backdrop-filter: blur(20px)) or (-webkit-backdrop-filter: blur(20px))) {
            .quiz-option {
                background: rgba(255, 255, 255, 0.22)
            }

            .quiz-option.is-selected {
                background: rgba(255, 255, 255, 0.38)
            }

            .quiz-form {
                background: rgba(255, 255, 255, 0.25)
            }

            .selection__aside {
                background: rgba(11, 28, 48, 0.82)
            }

            .selection__success {
                background: rgba(255, 255, 255, 0.25)
            }
        }

        /* =========================================================
   ENGINEER
   ========================================================= */
        .engineer {
            background: var(--bg);
            padding-top: 0
        }

        .engineer-grid {
            display: grid;
            grid-template-columns:1.05fr .95fr;
            gap: 64px;
            align-items: stretch
        }

        .engineer-photo {
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: var(--bg-alt);
            position: relative;
            min-height: 520px;
        }

        .engineer-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            inset: 0
        }

        .engineer-photo .caption {
            position: absolute;
            left: 24px;
            bottom: 24px;
            right: 24px;
            z-index: 2;
            color: #fff;
            display: flex;
            flex-direction: column;
            gap: 4px;
            text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
        }

        .engineer-photo .caption .role {
            font-size: 13px;
            font-family: 'JetBrains Mono', monospace;
            letter-spacing: .06em;
            text-transform: uppercase;
            opacity: .85
        }

        .engineer-photo .caption .name {
            font-size: 24px;
            font-weight: 700;
            letter-spacing: -.01em
        }

        .engineer-photo::after {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .55) 100%);
        }

        .engineer-right {
            display: flex;
            flex-direction: column;
            gap: 36px
        }

        .engineer-list {
            list-style: none;
            padding: 0;
            margin: 8px 0 0;
            display: grid;
            grid-template-columns:1fr 1fr;
            gap: 14px 28px
        }

        .engineer-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 15px;
            color: var(--ink);
            line-height: 1.4
        }

        .engineer-list li::before {
            content: "";
            flex: 0 0 auto;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: var(--brand-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='%230b3a6f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M3.5 8.5l3 3 6-7'/></svg>") center / 14px no-repeat;
            margin-top: 1px;
        }

        .form-card {
            background: var(--bg-alt);
            border-radius: var(--radius-lg);
            padding: 32px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .form-field {
            display: flex;
            flex-direction: column;
            gap: 6px
        }

        .form-field label {
            font-size: 13px;
            color: var(--ink-3);
            font-family: 'JetBrains Mono', monospace;
            letter-spacing: .04em
        }

        .form-control {
            height: 52px;
            padding: 0 16px;
            border-radius: 12px;
            border: 1px solid var(--line);
            background: #fff;
            font-size: 15px;
            color: var(--ink);
            outline: none;
            transition: border-color .15s ease, box-shadow .15s ease;
        }

        .form-control:focus {
            border-color: var(--brand);
            box-shadow: 0 0 0 4px rgba(11, 58, 111, .08)
        }

        select.form-control {
            appearance: none;
            background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%234a5a72' stroke-width='1.6' d='M1 1.5l5 5 5-5'/></svg>") right 18px center no-repeat
        }

        .form-policy {
            font-size: 12px;
            color: var(--ink-3);
            line-height: 1.5;
            display: flex;
            align-items: flex-start;
            gap: 8px
        }

        .form-policy a {
            color: var(--brand);
            text-decoration: underline
        }

        .checkbox {
            display: inline-flex;
            align-items: flex-start;
            gap: 8px;
            cursor: pointer;
            font-size: 12px;
            color: var(--ink-3);
            line-height: 1.5
        }

        .checkbox input {
            margin-top: 3px;
            accent-color: var(--brand)
        }

        /* =========================================================
   OBJECTS GALLERY
   ========================================================= */
        .objects-grid {
            display: grid;
            grid-template-columns:repeat(6, 1fr);
            grid-auto-rows: 200px;
            grid-auto-flow: dense;
            gap: 16px;
        }

        .objects-grid .tile {
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: var(--bg-alt);
            position: relative;
        }

        .objects-grid .tile img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .6s ease
        }

        .objects-grid .tile:hover img {
            transform: scale(1.04)
        }

        /* 6-col mosaic, 11 tiles — packs into a clean rectangle, no holes.
   Portrait photos span 2 rows (tall); landscape span wider; diptych = full-width banner. */
        /* rows 1-2 */
        .objects-grid .t1 {
            grid-column: span 3;
            grid-row: span 2
        }

        /* object-1  landscape — feature */
        .objects-grid .t2 {
            grid-column: span 3;
            grid-row: span 1
        }

        /* object-8  landscape */
        .objects-grid .t3 {
            grid-column: span 3;
            grid-row: span 1
        }

        /* object-9  landscape */
        /* rows 3-4 */
        .objects-grid .t4 {
            grid-column: span 2;
            grid-row: span 2
        }

        /* object-11 portrait */
        .objects-grid .t5 {
            grid-column: span 2;
            grid-row: span 2
        }

        /* object-13 portrait */
        .objects-grid .t6 {
            grid-column: span 2;
            grid-row: span 1
        }

        /* object-10 landscape */
        .objects-grid .t7 {
            grid-column: span 2;
            grid-row: span 1
        }

        /* object-3  landscape (aerial) */
        /* rows 5-6 */
        .objects-grid .t8 {
            grid-column: span 2;
            grid-row: span 2
        }

        /* object-12 portrait */
        .objects-grid .t9 {
            grid-column: span 2;
            grid-row: span 2
        }

        /* object-4  aerial — square crop */
        .objects-grid .t10 {
            grid-column: span 2;
            grid-row: span 2
        }

        /* object-14 portrait */
        /* row 7 — full-width closer */
        .objects-grid .t11 {
            grid-column: span 6;
            grid-row: span 1
        }

        /* object-7  diptych day/night banner */
        .objects-cta {
            display: flex;
            justify-content: center;
            margin-top: 48px
        }

        /* =========================================================
   STAGES
   ========================================================= */
        .stages-section {
            background: var(--bg-alt)
        }

        .stages-list {
            display: flex;
            flex-direction: column;
            gap: 24px
        }

        .stage-row {
            background: #fff;
            border-radius: var(--radius-lg);
            overflow: hidden;
            display: grid;
            grid-template-columns:.55fr .45fr;
            align-items: stretch;
            box-shadow: var(--shadow-sm);
        }

        .stage-row:nth-child(even) {
            grid-template-columns:.45fr .55fr
        }

        .stage-row:nth-child(even) .stage-text {
            order: 2
        }

        .stage-row:nth-child(even) .stage-img {
            order: 1
        }

        .stage-text {
            padding: 48px;
            display: flex;
            flex-direction: column;
            gap: 18px
        }

        .stage-tag {
            font-family: 'JetBrains Mono', monospace;
            font-size: 13px;
            letter-spacing: .06em;
            color: var(--brand);
            display: flex;
            align-items: center;
            gap: 8px
        }

        .stage-tag::before {
            content: "";
            width: 24px;
            height: 1px;
            background: var(--brand)
        }

        .stage-text h3 {
            font-size: 34px;
            line-height: 1.1;
            letter-spacing: -.018em;
            font-weight: 700;
            margin: 0;
            text-wrap: balance
        }

        .stage-text p {
            color: var(--ink-2);
            font-size: 16px;
            line-height: 1.55;
            margin: 0;
            max-width: 42ch
        }

        .stage-meta {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-top: auto;
            padding-top: 24px;
            border-top: 1px solid var(--line);
            gap: 24px
        }

        .stage-meta .days {
            font-size: 48px;
            font-weight: 700;
            line-height: 1;
            letter-spacing: -.02em;
            color: var(--ink)
        }

        .stage-meta .days small {
            font-size: 14px;
            font-weight: 500;
            color: var(--ink-3);
            margin-left: 8px;
            font-family: 'JetBrains Mono', monospace
        }

        .stage-meta .count {
            font-size: 13px;
            color: var(--ink-3);
            font-family: 'JetBrains Mono', monospace;
            letter-spacing: .04em
        }

        .stage-img {
            background: var(--bg-deep);
            position: relative;
            min-height: 360px
        }

        .stage-img img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover
        }

        .stages-total {
            margin-top: 32px;
            background: var(--dark);
            color: #fff;
            border-radius: var(--radius-lg);
            padding: 32px 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .stages-total .label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 14px;
            color: rgba(255, 255, 255, .7);
            letter-spacing: .06em;
            text-transform: uppercase
        }

        .stages-total .value {
            font-size: 48px;
            font-weight: 700;
            letter-spacing: -.02em
        }

        /* =========================================================
   REVIEWS
   ========================================================= */
        .reviews-grid {
            display: grid;
            grid-template-columns:repeat(3, 1fr);
            gap: 24px
        }

        .review-card {
            background: var(--bg-alt);
            border-radius: var(--radius-lg);
            padding: 32px;
            display: flex;
            flex-direction: column;
            gap: 28px;
            min-height: 340px;
        }

        .review-card .quote {
            font-size: 17px;
            line-height: 1.55;
            color: var(--ink);
            margin: 0;
            flex: 1
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 14px
        }

        .review-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--brand);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 15px;
            letter-spacing: .02em;
            flex: 0 0 auto;
        }

        .review-info {
            display: flex;
            flex-direction: column;
            gap: 2px
        }

        .review-info .name {
            font-weight: 600;
            font-size: 15px;
            color: var(--ink)
        }

        .review-info .meta {
            font-size: 13px;
            color: var(--ink-3);
            font-family: 'JetBrains Mono', monospace;
            letter-spacing: .02em
        }

        /* =========================================================
   FEATURES (Почему мы) — large photo cards 3×2
   ========================================================= */
        .features-grid {
            display: grid;
            grid-template-columns:repeat(3, 1fr);
            gap: 24px
        }

        .feature-card {
            background: #fff;
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 20px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
            padding: 0;
            min-height: 0;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
            border-color: rgba(0, 0, 0, 0.1);
        }

        .feature-photo {
            aspect-ratio: 4/3;
            overflow: hidden;
            background: var(--bg-deep)
        }

        .feature-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .6s ease
        }

        .feature-card:hover .feature-photo img {
            transform: scale(1.04)
        }

        .feature-body {
            padding: 32px;
            display: flex;
            flex-direction: column;
            gap: 0
        }

        .feature-num {
            font-family: 'JetBrains Mono', monospace;
            font-size: 12px;
            letter-spacing: .08em;
            color: var(--brand);
            opacity: .5;
            text-transform: uppercase;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .feature-num::before {
            content: "—";
            opacity: 1
        }

        .feature-card h3 {
            font-size: 22px;
            font-weight: 600;
            letter-spacing: -.01em;
            line-height: 1.25;
            color: #0B1C30;
            margin: 12px 0 0
        }

        .feature-card p {
            font-size: 15px;
            line-height: 1.5;
            color: rgba(0, 0, 0, 0.6);
            margin: 12px 0 0
        }

        /* =========================================================
   FAQ
   ========================================================= */
        .faq-section {
            background: var(--bg-alt)
        }

        .faq-wrap {
            display: grid;
            grid-template-columns:.85fr 1.15fr;
            gap: 64px;
            align-items: start
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px
        }

        .faq-item {
            background: #fff;
            border-radius: 14px;
            border: 1px solid var(--line);
            overflow: hidden;
            transition: border-color .2s ease;
        }

        .faq-item.open {
            border-color: var(--brand)
        }

        .faq-q {
            width: 100%;
            padding: 24px 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            font-size: 17px;
            font-weight: 600;
            text-align: left;
            color: var(--ink);
            line-height: 1.4;
        }

        .faq-q .plus {
            flex: 0 0 auto;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--bg-alt);
            position: relative;
            transition: background .2s ease, transform .25s ease;
        }

        .faq-q .plus::before, .faq-q .plus::after {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            background: var(--ink);
        }

        .faq-q .plus::before {
            width: 14px;
            height: 2px
        }

        .faq-q .plus::after {
            width: 2px;
            height: 14px;
            transition: transform .25s ease
        }

        .faq-item.open .faq-q .plus {
            background: var(--brand)
        }

        .faq-item.open .faq-q .plus::before {
            background: #fff
        }

        .faq-item.open .faq-q .plus::after {
            background: #fff;
            transform: translate(-50%, -50%) rotate(90deg)
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height .35s ease;
        }

        .faq-a-inner {
            padding: 0 28px 24px;
            color: var(--ink-2);
            font-size: 15px;
            line-height: 1.6
        }

        /* =========================================================
   FINAL CTA
   ========================================================= */
        .final-section {
            background: var(--dark);
            color: #fff;
            padding: 120px 0
        }

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

        .final-left .eyebrow {
            color: #fff
        }

        .final-left .eyebrow::before {
            background: #fff
        }

        .final-left h2 {
            color: #fff;
            margin-top: 18px
        }

        .final-left .lead {
            color: rgba(255, 255, 255, .75);
            margin-top: 20px;
            max-width: 520px
        }

        .final-checks {
            list-style: none;
            padding: 0;
            margin: 36px 0 0;
            display: flex;
            flex-direction: column;
            gap: 16px
        }

        .final-checks li {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 16px;
            color: rgba(255, 255, 255, .92)
        }

        .final-checks li .num {
            font-family: 'JetBrains Mono', monospace;
            font-size: 13px;
            color: rgba(255, 255, 255, .5);
            width: 28px;
            flex: 0 0 auto;
            letter-spacing: .06em;
        }

        .final-form-card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 40px;
            color: var(--ink);
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .final-form-card .form-tag {
            font-family: 'JetBrains Mono', monospace;
            font-size: 13px;
            color: var(--brand);
            letter-spacing: .06em;
            text-transform: uppercase
        }

        .final-form-card h3 {
            font-size: 24px;
            font-weight: 700;
            letter-spacing: -.01em;
            margin: 4px 0 16px;
            line-height: 1.2
        }

        /* =========================================================
   FOOTER
   ========================================================= */
        /* =========================================================
   FOOTER — dark liquid glass
   ========================================================= */
        .footer-wrap {
            position: relative;
            background: #0B1C30;
            padding: 24px;
            overflow: hidden;
        }

        .footer-wrap::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 20% 30%, rgba(60, 110, 200, 0.25), transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(180, 100, 200, 0.15), transparent 50%);
            filter: blur(80px);
            z-index: 0;
            pointer-events: none;
        }

        .footer.footer-glass {
            position: relative;
            z-index: 1;
            max-width: 1320px;
            margin: 0 auto;
            border-radius: 32px;
            padding: 48px 56px;
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(40px) saturate(160%);
            -webkit-backdrop-filter: blur(40px) saturate(160%);
            border: 1px solid rgba(255, 255, 255, 0.10);
            border-top: 1px solid rgba(255, 255, 255, 0.18);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
            0 1px 0 rgba(255, 255, 255, 0.12) inset;
            color: rgba(255, 255, 255, .85);
        }

        .footer.footer-glass .container {
            max-width: 100%;
            padding: 0
        }

        .footer.footer-glass .footer-col h5 {
            color: rgba(255, 255, 255, .5);
            letter-spacing: .08em
        }

        .footer.footer-glass .footer-col ul a,
        .footer.footer-glass .footer-col address,
        .footer.footer-glass .footer-bottom a {
            color: rgba(255, 255, 255, .85)
        }

        @media (max-width: 720px) {
            .footer-wrap {
                padding: 12px
            }

            .footer.footer-glass {
                padding: 32px 22px;
                border-radius: 24px
            }
        }

        .footer {
            background: var(--dark-2);
            color: rgba(255, 255, 255, .7);
            padding: 80px 0 32px
        }

        .footer-grid {
            display: grid;
            grid-template-columns:1.4fr .8fr 1fr;
            gap: 48px;
            padding-bottom: 48px;
            border-bottom: 1px solid rgba(255, 255, 255, .1)
        }

        .footer-brand img {
            height: 30px;
            width: auto
        }

        .footer-brand p {
            margin: 18px 0 0;
            font-size: 14px;
            color: rgba(255, 255, 255, .6);
            line-height: 1.55;
            max-width: 280px
        }

        .footer-col h5 {
            font-size: 13px;
            font-family: 'JetBrains Mono', monospace;
            letter-spacing: .06em;
            color: rgba(255, 255, 255, .5);
            text-transform: uppercase;
            margin: 0 0 18px;
            font-weight: 500
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 10px
        }

        .footer-col ul a {
            color: rgba(255, 255, 255, .85);
            font-size: 15px
        }

        .footer-col ul a:hover {
            color: #fff
        }

        .footer-col address {
            font-style: normal;
            color: rgba(255, 255, 255, .85);
            font-size: 15px;
            line-height: 1.5
        }

        .footer-bottom {
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            font-size: 13px;
            color: rgba(255, 255, 255, .5)
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, .7)
        }

        .footer-bottom a:hover {
            color: #fff
        }

        /* =========================================================
   FINAL CTA — photo bg + glassmorphism + stats
   ========================================================= */
        .final-section {
            position: relative;
            isolation: isolate;
            background: linear-gradient(135deg, rgba(11, 28, 48, 0.93) 0%, rgba(11, 28, 48, 0.80) 45%, rgba(11, 28, 48, 0.55) 100%),
            url('../images/cta-final-bg.webp') center / cover no-repeat;
            color: #fff;
            padding: 120px 0;
            overflow: hidden;
        }

        .final-stats {
            display: grid;
            grid-template-columns:repeat(3, 1fr);
            gap: 32px;
            margin-top: 48px;
            padding-top: 36px;
            border-top: 1px solid rgba(255, 255, 255, .14);
        }

        .final-stat {
            display: flex;
            flex-direction: column;
            gap: 8px;
            position: relative
        }

        .final-stat:not(:last-child)::after {
            content: "";
            position: absolute;
            right: 0;
            top: 6px;
            bottom: 6px;
            width: 1px;
            background: rgba(255, 255, 255, .12);
        }

        .final-stat .num {
            font-size: clamp(32px, 3.2vw, 42px);
            font-weight: 700;
            letter-spacing: -.02em;
            line-height: 1;
            color: #B8D4F0;
        }

        .final-stat .lbl {
            font-size: 12px;
            letter-spacing: .06em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .7);
            font-family: 'JetBrains Mono', monospace;
            line-height: 1.35;
        }

        /* Glassmorphism form */
        .final-form-card {
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
            border-radius: 20px;
        }

        .final-form-card .btn {
            height: 56px;
            transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
        }

        .final-form-card .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 36px rgba(11, 58, 111, .42);
        }

        /* =========================================================
   FOOTER — top strip, map, payments
   ========================================================= */
        .footer-top {
            display: grid;
            grid-template-columns:1fr 1fr 1fr;
            gap: 32px;
            align-items: center;
            padding: 0 0 32px;
            margin-bottom: 48px;
            border-bottom: 1px solid rgba(255, 255, 255, .08);
        }

        .footer-top .ft-block {
            display: flex;
            flex-direction: column;
            gap: 8px
        }

        .footer-top .ft-block .label {
            font-size: 11px;
            letter-spacing: .08em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .4);
            font-family: 'JetBrains Mono', monospace;
            font-weight: 500;
        }

        .footer-top .ft-block .value {
            color: rgba(255, 255, 255, .85);
            font-size: 15px;
            line-height: 1.4
        }

        .footer-socials {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 2px
        }

        .footer-socials a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, .16);
            color: rgba(255, 255, 255, .7);
            background: transparent;
            transition: color .2s ease, background .2s ease, border-color .2s ease, opacity .2s ease;
        }

        .footer-socials a:hover {
            color: #fff;
            opacity: 1;
            background: rgba(255, 255, 255, .06);
            border-color: rgba(255, 255, 255, .32)
        }

        .footer-socials svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
            display: block
        }

        .footer-map {
            margin-top: 14px;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, .08)
        }

        .footer-map iframe {
            display: block;
            width: 100%;
            height: 180px;
            border: 0;
            filter: grayscale(20%) brightness(.9)
        }

        .footer-pay {
            display: flex;
            align-items: center;
            gap: 14px;
            opacity: .55
        }

        .footer-pay svg {
            display: block;
            height: 20px;
            width: auto
        }

        .footer-pay .pay-card {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 22px;
            padding: 0 8px;
            border-radius: 4px;
            border: 1px solid rgba(255, 255, 255, .4);
            color: rgba(255, 255, 255, .9);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .04em;
            font-family: 'JetBrains Mono', monospace;
            text-transform: uppercase;
        }

        @media (max-width: 1080px) {
            .footer-top {
                grid-template-columns:1fr;
                gap: 20px;
                padding: 0 0 24px;
                margin-bottom: 32px
            }

            .final-stats {
                grid-template-columns:1fr 1fr 1fr;
                gap: 20px
            }

            .final-stat:not(:last-child)::after {
                display: none
            }
        }

        @media (max-width: 720px) {
            .final-stats {
                grid-template-columns:1fr;
                gap: 18px;
                margin-top: 36px;
                padding-top: 28px
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 14px
            }

            .footer-map iframe {
                height: 160px
            }

            .footer-pay {
                flex-wrap: wrap
            }
        }

        /* =========================================================
   POPUPS
   ========================================================= */
        .popup-overlay {
            position: fixed;
            inset: 0;
            z-index: 90;
            background: rgba(10, 23, 38, .6);
            display: none;
            align-items: center;
            justify-content: center;
            padding: 24px;
            backdrop-filter: blur(6px);
        }

        .popup-overlay.open {
            display: flex
        }

        .popup {
            background: #fff;
            border-radius: var(--radius-lg);
            max-width: 520px;
            width: 100%;
            padding: 48px;
            position: relative;
            box-shadow: var(--shadow-lg);
            display: flex;
            flex-direction: column;
            gap: 14px;
            overflow: hidden;
            isolation: isolate;
        }

        .popup-close {
            position: absolute;
            top: 18px;
            right: 18px;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--bg-alt);
        }

        .popup-close::before, .popup-close::after {
            content: "";
            position: absolute;
            width: 14px;
            height: 2px;
            background: var(--ink);
        }

        .popup-close::before {
            transform: rotate(45deg)
        }

        .popup-close::after {
            transform: rotate(-45deg)
        }

        .popup h3 {
            font-size: 26px;
            font-weight: 700;
            letter-spacing: -.01em;
            margin: 0;
            line-height: 1.2;
            text-wrap: balance
        }

        .popup p {
            color: var(--ink-2);
            font-size: 15px;
            line-height: 1.55;
            margin: 0 0 10px
        }

        .popup-phone-row {
            display: flex;
            gap: 8px;
            align-items: stretch
        }

        .popup-phone-row .prefix {
            flex: 0 0 auto;
            width: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-alt);
            border-radius: 12px;
            font-weight: 600;
            color: var(--ink);
            font-size: 15px;
        }

        .popup-tile {
            position: absolute;
            right: 0;
            bottom: 0;
            width: 220px;
            height: 220px;
            object-fit: contain;
            object-position: bottom right;
            opacity: .12;
            pointer-events: none;
            z-index: -1;
        }

        .popup.success {
            text-align: center;
            align-items: center
        }

        .popup.success h3 {
            margin-top: 8px
        }

        .popup.success .check {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--brand-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 6px;
        }

        .popup.success .check::after {
            content: "";
            width: 36px;
            height: 18px;
            border-left: 3px solid var(--brand);
            border-bottom: 3px solid var(--brand);
            transform: rotate(-45deg) translateY(-4px);
            border-radius: 2px;
        }

        /* =========================================================
   MODEL POPUP (Luxor + future per-model modals)
   ========================================================= */
        .popup.popup-model {
            max-width: 960px;
            width: 100%;
            padding: 0;
            max-height: 90vh;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            border-radius: var(--radius-lg);
            gap: 0;
        }

        .popup-model .popup-close {
            top: 20px;
            right: 20px;
            z-index: 5;
            background: #fff;
            box-shadow: var(--shadow-sm)
        }

        .pm-head {
            padding: 36px 48px 24px;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 24px;
            flex: 0 0 auto;
        }

        .pm-head .pm-eyebrow {
            font-family: 'JetBrains Mono', monospace;
            font-size: 12px;
            letter-spacing: .08em;
            text-transform: uppercase;
            color: var(--brand);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .pm-head .pm-eyebrow::before {
            content: "";
            width: 20px;
            height: 1px;
            background: var(--brand)
        }

        .pm-head .pm-title {
            font-size: 44px;
            font-weight: 700;
            letter-spacing: -.02em;
            line-height: 1;
            margin: 14px 0 8px;
        }

        .pm-head .pm-sub {
            font-size: 15px;
            color: var(--ink-2);
            margin: 0;
            max-width: 48ch;
            line-height: 1.5
        }

        .pm-badge {
            flex: 0 0 auto;
            align-self: flex-start;
            margin-right: 48px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--brand-soft);
            color: var(--brand);
            padding: 8px 14px;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .01em;
            white-space: nowrap;
        }

        .pm-badge::before {
            content: "";
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--brand);
        }

        .pm-scroll {
            flex: 1 1 auto;
            overflow-y: auto;
            padding: 24px 48px 8px;
            display: flex;
            flex-direction: column;
            gap: 56px;
        }

        .pm-scroll::-webkit-scrollbar {
            width: 8px
        }

        .pm-scroll::-webkit-scrollbar-thumb {
            background: var(--line);
            border-radius: 4px
        }

        .pm-section {
            padding: 0;
            margin: 0
        }

        .pm-section h4 {
            font-size: 24px;
            font-weight: 700;
            letter-spacing: -.01em;
            line-height: 1.2;
            margin: 0 0 24px;
        }

        .pm-section > p {
            color: var(--ink-2);
            font-size: 15px;
            line-height: 1.55;
            margin: 0 0 20px;
            max-width: 60ch
        }

        /* Hero image inside popup */
        .pm-hero {
            position: relative;
            width: 100%;
            margin: 0;
            flex: 0 0 auto;
            border-radius: 16px;
            overflow: hidden;
            aspect-ratio: 16/9;
            background: var(--bg-deep);
            box-shadow: 0 14px 36px rgba(11, 27, 47, .14);
            display: block;
        }

        .pm-hero img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .pm-hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.35) 100%);
            pointer-events: none;
        }

        .pm-hero .pm-badge {
            position: absolute;
            right: 20px;
            bottom: 20px;
            z-index: 2;
            background: rgba(255, 255, 255, .95);
            backdrop-filter: blur(8px);
            box-shadow: 0 8px 20px rgba(11, 27, 47, .18);
            margin: 0;
        }

        .pm-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 8px;
            font-size: 15px;
        }

        .pm-table thead th {
            font-family: 'JetBrains Mono', monospace;
            font-size: 12px;
            letter-spacing: .06em;
            text-transform: uppercase;
            color: var(--ink-3);
            font-weight: 500;
            text-align: left;
            padding: 0 14px 12px;
            border-bottom: 1px solid var(--line);
        }

        .pm-table thead th:last-child {
            text-align: right
        }

        .pm-table tbody td {
            padding: 18px 14px;
            border-bottom: 1px solid var(--line-2);
            vertical-align: middle
        }

        .pm-table tbody tr:last-child td {
            border-bottom: 0
        }

        .pm-table tbody tr:hover {
            background: var(--bg-alt)
        }

        .pm-table .col-model {
            font-weight: 600;
            color: var(--ink);
            white-space: nowrap
        }

        .pm-table .col-price {
            text-align: right;
            white-space: nowrap
        }

        .pm-table .col-price .old {
            display: block;
            font-size: 13px;
            color: var(--ink-3);
            text-decoration: line-through;
            font-weight: 400
        }

        .pm-table .col-price .new {
            display: block;
            font-size: 17px;
            font-weight: 700;
            color: var(--brand);
            letter-spacing: -.005em;
            margin-top: 2px
        }

        /* Color swatches — real photo textures */
        .pm-swatches {
            display: grid;
            grid-template-columns:repeat(3, 1fr);
            gap: 28px 18px;
            margin-top: 14px;
            justify-items: center;
        }

        .pm-swatch {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            background: none;
            border: 0;
            padding: 0;
            cursor: pointer;
            text-align: center;
            width: 100%;
        }

        .pm-swatch .chip {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            display: block;
            box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12), 0 6px 16px rgba(0, 0, 0, 0.10);
            transition: transform .25s ease, box-shadow .25s ease;
            position: relative;
        }

        .pm-swatch .chip img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .pm-swatch:hover .chip {
            transform: scale(1.06);
            box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.14), 0 14px 28px rgba(11, 27, 47, .18);
        }

        .pm-swatch.active .chip {
            outline: 2px solid var(--brand);
            outline-offset: 4px;
        }

        .pm-swatch .name {
            font-size: 14px;
            font-weight: 600;
            color: var(--ink);
            line-height: 1.3
        }

        .pm-swatch .kind {
            font-size: 11px;
            color: var(--ink-3);
            font-family: 'JetBrains Mono', monospace;
            letter-spacing: .08em;
            text-transform: uppercase
        }

        /* Tech grid */
        .pm-tech-grid {
            display: grid;
            grid-template-columns:1fr 1fr;
            gap: 16px;
            margin-top: 4px
        }

        .pm-tech {
            background: var(--bg-alt);
            border-radius: 14px;
            padding: 0;
            overflow: hidden;
            display: grid;
            grid-template-columns:38% 1fr;
            gap: 0;
            min-height: 200px;
        }

        .pm-tech .tech-img {
            position: relative;
            overflow: hidden;
            background: var(--bg-deep);
        }

        .pm-tech .tech-img img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }

        .pm-tech .tech-body {
            padding: 22px 24px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            justify-content: center;
        }

        .pm-tech .tech-name {
            font-family: 'JetBrains Mono', monospace;
            font-size: 12px;
            letter-spacing: .08em;
            color: var(--brand);
            font-weight: 600;
            text-transform: uppercase;
        }

        .pm-tech h5 {
            font-size: 17px;
            font-weight: 700;
            letter-spacing: -.01em;
            margin: 0;
            line-height: 1.25
        }

        .pm-tech p {
            font-size: 14px;
            color: var(--ink-2);
            line-height: 1.5;
            margin: 4px 0 0
        }

        /* Cycle block */
        .pm-cycle {
            background: var(--bg-alt);
            border-radius: 14px;
            padding: 28px 32px;
        }

        .pm-cycle p {
            margin: 0;
            font-size: 16px;
            line-height: 1.6;
            color: var(--ink)
        }

        /* Sticky footer */
        .pm-footer {
            flex: 0 0 auto;
            padding: 20px 48px;
            border-top: 1px solid var(--line);
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .pm-cta {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap
        }

        .pm-cta .btn {
            height: 48px;
            padding: 0 22px;
            font-size: 14px
        }

        .pm-link {
            font-size: 14px;
            font-weight: 600;
            color: var(--ink);
            text-decoration: underline;
            text-underline-offset: 3px;
            background: none;
            padding: 0 8px;
            cursor: pointer;
        }

        .pm-link:hover {
            color: var(--brand)
        }

        .pm-contacts {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: var(--ink-3);
            white-space: nowrap
        }

        .pm-contacts a {
            color: var(--ink-2)
        }

        .pm-contacts a:hover {
            color: var(--brand)
        }

        @media (max-width: 900px) {
            .pm-swatches {
                grid-template-columns:repeat(3, 1fr);
                gap: 22px 12px
            }

            .pm-tech-grid {
                grid-template-columns:1fr
            }

            .pm-tech {
                grid-template-columns:1fr;
                min-height: 0
            }

            .pm-tech .tech-img {
                aspect-ratio: 16/9
            }
        }

        @media (max-width: 720px) {
            .popup-overlay:has(.popup-model) {
                padding: 0
            }

            .popup.popup-model {
                max-width: none;
                width: 100%;
                height: 100vh;
                max-height: 100vh;
                border-radius: 0;
            }

            .pm-head {
                padding: 24px 20px 20px;
                flex-direction: column;
                gap: 14px
            }

            .pm-head .pm-title {
                font-size: 32px;
                margin-top: 6px
            }

            .pm-badge {
                margin-right: 0
            }

            .popup-model .popup-close {
                top: 14px;
                right: 14px
            }

            .pm-scroll {
                padding: 20px 20px 8px;
                gap: 40px
            }

            .pm-section h4 {
                font-size: 20px
            }

            .pm-table thead {
                display: none
            }

            .pm-table tbody tr {
                display: grid;
                grid-template-columns:1fr auto;
                gap: 4px 12px;
                padding: 14px 0;
                border-bottom: 1px solid var(--line-2);
            }

            .pm-table tbody td {
                padding: 0;
                border: 0;
                font-size: 14px
            }

            .pm-table .col-model {
                grid-column: 1 / -1;
                font-size: 15px;
                margin-bottom: 4px
            }

            .pm-table .col-len, .pm-table .col-w, .pm-table .col-depth {
                color: var(--ink-2);
                font-size: 13px
            }

            .pm-table .col-len::before {
                content: "Д: "
            }

            .pm-table .col-w::before {
                content: "Ш: "
            }

            .pm-table .col-depth::before {
                content: "Гл: "
            }

            .pm-table .col-price {
                grid-row: 1 / span 2;
                grid-column: 2;
                text-align: right;
                align-self: center
            }

            .pm-swatches {
                grid-template-columns:repeat(3, 1fr);
                gap: 18px 8px
            }

            .pm-swatch .chip {
                width: 88px;
                height: 88px
            }

            .pm-hero {
                border-radius: 12px
            }

            .pm-hero .pm-badge {
                right: 12px;
                bottom: 12px;
                padding: 6px 10px;
                font-size: 12px
            }

            .pm-cycle {
                padding: 20px
            }

            .pm-footer {
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
                padding: 16px 20px;
            }

            .pm-cta {
                flex-direction: column;
                align-items: stretch;
                width: 100%
            }

            .pm-cta .btn {
                width: 100%
            }

            .pm-link {
                align-self: center
            }

            .pm-contacts {
                justify-content: center
            }
        }

        /* =========================================================
   RESPONSIVE
   ========================================================= */
        @media (max-width: 1080px) {
            .nav {
                display: none
            }

            .header-cta .btn:not(.burger) {
                display: none
            }

            .burger {
                display: flex
            }

            section {
                padding: 88px 0
            }

            .models-grid, .features-grid, .reviews-grid {
                grid-template-columns:repeat(2, 1fr)
            }

            .quiz-card {
                grid-template-columns:1fr
            }

            .quiz-aside {
                padding: 32px
            }

            .quiz-body {
                padding: 32px
            }

            .engineer-grid, .faq-wrap, .final-grid {
                grid-template-columns:1fr;
                gap: 40px
            }

            .engineer-photo {
                min-height: 360px
            }

            .stage-row, .stage-row:nth-child(even) {
                grid-template-columns:1fr
            }

            .stage-row:nth-child(even) .stage-text {
                order: 0
            }

            .stage-row:nth-child(even) .stage-img {
                order: 0
            }

            .stage-img {
                min-height: 260px
            }

            .footer-grid {
                grid-template-columns:1fr 1fr;
                gap: 32px
            }

            .objects-grid {
                grid-auto-rows: 160px
            }
        }

        @media (max-width: 720px) {
            .container {
                padding: 0 20px
            }

            :root {
                --header-h: 64px
            }

            .header-cta {
                gap: 8px
            }

            .header-phone {
                display: none
            }

            section {
                padding: 64px 0
            }

            .section-head {
                margin-bottom: 40px;
                gap: 14px
            }

            .hero {
                padding: 88px 0 0;
                min-height: 100vh
            }

            .hero h1 {
                margin-top: 20px
            }

            .hero-ctas {
                flex-direction: column;
                width: 100%
            }

            .hero-ctas .btn {
                width: 100%
            }

            .hero-stats {
                grid-template-columns:1fr;
                gap: 24px;
                padding: 32px 0 40px;
                margin-top: 48px
            }

            .models-grid, .features-grid, .reviews-grid {
                grid-template-columns:1fr;
                gap: 16px
            }

            .quiz-options {
                grid-template-columns:1fr
            }

            .quiz-body, .quiz-aside {
                padding: 28px 24px
            }

            .engineer-list {
                grid-template-columns:1fr
            }

            .form-card, .final-form-card {
                padding: 24px
            }

            .objects-grid {
                grid-template-columns:repeat(2, 1fr);
                grid-auto-rows: 150px
            }

            .objects-grid .tile {
                grid-column: span 1;
                grid-row: span 1
            }

            /* feature full-width; everything else uniform squares — no holes on 2-col */
            .objects-grid .t1 {
                grid-column: span 2;
                grid-row: span 2
            }

            .stage-text {
                padding: 32px 24px
            }

            .stage-text h3 {
                font-size: 26px
            }

            .stages-total {
                padding: 24px;
                flex-direction: column;
                align-items: flex-start;
                gap: 8px
            }

            .stages-total .value {
                font-size: 36px
            }

            .final-section {
                padding: 64px 0
            }

            .footer-grid {
                grid-template-columns:1fr;
                gap: 32px
            }

            .popup {
                padding: 32px 24px
            }

            .popup-tile {
                width: 160px;
                height: 160px;
                right: 0;
                bottom: 0
            }
        }
