/* Self-hosted Plus Jakarta Sans — latin subset only */
        @font-face {
            font-family: 'Plus Jakarta Sans';
            font-style: normal;
            font-weight: 400 800;
            font-display: optional;
            src: url('../fonts/plus-jakarta-sans-latin.woff2') format('woff2');
            unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { background: #0d2137; }
        body {
            font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
            background: #fafafa;
            color: #1a1a1a;
            padding-top: 48px;
            opacity: 1;
        }

        /* ========================================
           C22: BURGUNDY + GREEN PALETTE
           ======================================== */
        :root {
            --primary: #0d2137;
            --primary-light: #1a3a5c;
            --accent: #722f37;
            --accent-light: #d4a5a9;
            --accent-dark: #5a252c;
            --accent2: #2d8a4e;
            --accent2-dark: #247a42;
            --accent2-light: #e8f5ec;
            /* Path-specific colors */
            --path-live: #468199;
            --path-live-dark: #356d83;
            --path-rent: #2d8a4e;
            --path-rent-dark: #247a42;
            --path-sell: #9b6374;
            --path-sell-dark: #835061;
            --accent-bg: #f9f0f1;
            --text: #1a1a1a;
            --text-muted: #5a6a7a;
            --bg: #fafafa;
        }

        /* ========================================
           HEADER - Dark glass, integrated with hero
           ======================================== */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 40px;
            height: 48px;
            background: linear-gradient(
                165deg,
                rgba(13, 33, 55, 0.72) 0%,
                rgba(20, 48, 78, 0.65) 40%,
                rgba(15, 38, 62, 0.68) 70%,
                rgba(13, 33, 55, 0.72) 100%
            );
            backdrop-filter: blur(24px) saturate(1.4);
            -webkit-backdrop-filter: blur(24px) saturate(1.4);
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(255, 255, 255, 0.06);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.35s ease;
        }
        .header.header-hidden {
            transform: translateY(-100%);
            opacity: 0;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }
        .logo-img {
            height: 34px;
            width: auto;
        }
        .logo-text .brand {
            font-weight: 700;
            font-size: 14px;
            color: #ffffff;
            letter-spacing: 0.3px;
        }
        .nav {
            display: flex;
            gap: 24px;
        }
        .nav a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            transition: color 0.2s ease;
        }
        .nav a:hover {
            color: #ffffff;
        }
        .header-cta {
            display: flex;
            align-items: center;
        }
        .header-phone {
            display: flex;
            align-items: center;
            gap: 6px;
            background: linear-gradient(
                165deg,
                rgba(45, 138, 78, 0.85) 0%,
                rgba(45, 138, 78, 0.92) 50%,
                rgba(36, 122, 66, 1) 100%
            );
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            color: white;
            padding: 7px 14px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 12px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-bottom-color: rgba(0, 0, 0, 0.12);
            border-right-color: rgba(0, 0, 0, 0.08);
            box-shadow:
                0 3px 12px rgba(45, 138, 78, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.08);
        }
        .header-phone:hover {
            transform: translateY(-1px);
            box-shadow:
                0 5px 18px rgba(45, 138, 78, 0.45),
                inset 0 1px 0 rgba(255, 255, 255, 0.35),
                inset 0 -1px 0 rgba(0, 0, 0, 0.08);
            border-color: rgba(255, 255, 255, 0.35);
        }
        .header-phone svg {
            width: 14px;
            height: 14px;
        }

        /* ========================================
           MOBILE BURGER MENU
           ======================================== */
        .header__menu-btn {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 32px;
            height: 32px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            gap: 5px;
            z-index: 1001;
        }
        .header__menu-btn span {
            display: flex;
            flex-direction: column;
            width: 20px;
            height: 2px;
            background: rgba(255, 255, 255, 0.85);
            border-radius: 2px;
            transition: all 0.3s;
        }
        .header__menu-btn.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .header__menu-btn.active span:nth-child(2) {
            opacity: 0;
        }
        .header__menu-btn.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* Mobile nav dropdown */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 99;
            pointer-events: none;
        }
        .mobile-nav.open {
            pointer-events: auto;
        }
        .mobile-nav__backdrop {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }
        .mobile-nav.open .mobile-nav__backdrop {
            opacity: 1;
            pointer-events: auto;
        }
        .mobile-nav__panel {
            position: relative;
            width: 100%;
            background: rgba(13, 33, 55, 0.96);
            backdrop-filter: blur(24px) saturate(1.4);
            -webkit-backdrop-filter: blur(24px) saturate(1.4);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            padding: 52px 24px 20px;
            transform: translateY(-100%);
            transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border-radius: 0 0 20px 20px;
        }
        .mobile-nav.open .mobile-nav__panel {
            transform: translateY(0);
        }
        .mobile-nav__links {
            display: flex;
            flex-direction: column;
        }
        .mobile-nav__links a {
            display: flex;
            flex-direction: column;
            text-align: center;
            padding: 13px 4px;
            font-size: 13px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
            transition: color 0.2s;
        }
        .mobile-nav__links a:last-child {
            border-bottom: none;
        }
        .mobile-nav__links a:active {
            color: var(--accent2);
        }
        .mobile-nav__actions {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding-top: 16px;
        }
        .mobile-nav__call {
            display: flex;
            flex-direction: column;
            text-align: center;
            padding: 13px 16px;
            font-size: 13px;
            font-weight: 700;
            color: #fff;
            background: linear-gradient(165deg, rgba(45,138,78,0.9) 0%, rgba(45,138,78,0.95) 50%, rgba(36,122,66,1) 100%);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255,255,255,0.3);
            border-bottom-color: rgba(0,0,0,0.15);
            border-right-color: rgba(0,0,0,0.1);
            border-radius: 14px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 6px 24px rgba(45,138,78,0.45), 0 0 40px rgba(45,138,78,0.2),
                inset 0 1px 0 rgba(255,255,255,0.35), inset 0 -1px 0 rgba(0,0,0,0.1);
        }
        .mobile-nav__call:active {
            transform: scale(0.97);
            box-shadow: 0 3px 12px rgba(45,138,78,0.35),
                inset 0 1px 0 rgba(255,255,255,0.25), inset 0 -1px 0 rgba(0,0,0,0.1);
        }
        .mobile-nav__quote {
            display: flex;
            flex-direction: column;
            text-align: center;
            padding: 12px 16px;
            font-size: 13px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.95);
            background: linear-gradient(165deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.05) 100%);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255,255,255,0.35);
            border-bottom-color: rgba(255,255,255,0.15);
            border-radius: 14px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 4px 20px rgba(255,255,255,0.1), inset 0 1px 0 rgba(255,255,255,0.25), inset 0 -1px 0 rgba(0,0,0,0.05);
        }
        .mobile-nav__quote:active {
            transform: scale(0.97);
            box-shadow: 0 2px 10px rgba(255,255,255,0.08), inset 0 1px 0 rgba(255,255,255,0.2);
        }

        /* ========================================
           HERO WITH BACKGROUND IMAGE
           Aesthetic: Golden hour sunset warmth
           ======================================== */
        .hero {
            position: relative;
            min-height: 100vh;
            margin-top: -48px;
            padding-top: 48px;
            display: flex;
            align-items: stretch;
            justify-content: center;
            text-align: center;
            overflow: hidden;
        }
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
            overflow: hidden;
            /* Subtle zoom animation on load */
            animation: heroZoom 20s ease-out forwards;
        }
        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 60%;
        }
        @keyframes heroZoom {
            from { transform: scale(1.05); }
            to { transform: scale(1); }
        }
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* Lighter overlay preserving sunset warmth */
            background: linear-gradient(
                180deg,
                rgba(13, 33, 55, 0.6) 0%,
                rgba(13, 33, 55, 0.35) 40%,
                rgba(114, 47, 55, 0.25) 70%,
                rgba(13, 33, 55, 0.7) 100%
            );
            z-index: 2;
        }
        .hero-content {
            position: relative;
            z-index: 3;
            padding: 120px 48px 60px;
            max-width: 900px;
            min-height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            /* Staggered fade-in animation */
            animation: fadeInUp 0.8s ease-out;
        }
        .hero-text {
            /* Text block - upper area */
        }
        .hero-actions {
            /* CTA block - bottom area */
            margin-top: auto;
            padding-top: 60px;
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg,
                var(--accent) 0%,
                var(--accent2) 50%,
                var(--accent) 100%
            );
            z-index: 10;
        }

        /* Mobile CTA bar — hidden on desktop */
        .mobile-cta-bar { display: none; }

        /* Label - subtle, minimal */
        .hero .label {
            display: inline-block;
            font-size: 11px;
            color: rgba(255,255,255,0.7);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 20px;
            font-weight: 500;
            animation: fadeInUp 0.8s ease-out 0.1s backwards;
        }

        /* Main heading */
        .hero h1 {
            font-size: 56px;
            font-weight: 800;
            line-height: 1.08;
            margin-bottom: 24px;
            color: white;
            text-shadow: 0 4px 30px rgba(0,0,0,0.3);
            animation: fadeInUp 0.8s ease-out 0.2s backwards;
        }
        .hero h1 span {
            color: var(--accent2-light);
            position: relative;
        }
        .hero h1 span::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--accent2);
            border-radius: 2px;
            opacity: 0.5;
        }

        /* Subtitle */
        .hero-subtitle {
            font-size: 20px;
            color: rgba(255,255,255,0.9);
            max-width: 580px;
            margin: 0 auto;
            line-height: 1.7;
            font-weight: 400;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
            animation: fadeInUp 0.8s ease-out 0.3s backwards;
        }

        /* CTA buttons */
        .hero-cta {
            display: flex;
            gap: 16px;
            justify-content: center;
            animation: fadeInUp 0.8s ease-out 0.4s backwards;
        }

        /* Hero Buttons - Liquid Glass Style */
        .btn {
            padding: 16px 32px;
            border-radius: 14px;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
            transition: left 0.6s ease;
        }
        .btn:hover::before {
            left: 100%;
        }

        /* Primary Button - Green Liquid Glass */
        .btn-primary {
            background: linear-gradient(
                165deg,
                rgba(45, 138, 78, 0.9) 0%,
                rgba(45, 138, 78, 0.95) 50%,
                rgba(36, 122, 66, 1) 100%
            );
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            color: white;
            /* Glass borders */
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-bottom-color: rgba(0, 0, 0, 0.15);
            border-right-color: rgba(0, 0, 0, 0.1);
            /* Glow effect */
            box-shadow:
                0 6px 24px rgba(45, 138, 78, 0.45),
                0 0 40px rgba(45, 138, 78, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.35),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
        }
        .btn-primary:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow:
                0 12px 40px rgba(45, 138, 78, 0.55),
                0 0 60px rgba(45, 138, 78, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.45),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
            border-color: rgba(255, 255, 255, 0.4);
        }

        /* Outline Button - Frosted Glass */
        .btn-outline {
            background: linear-gradient(
                165deg,
                rgba(255, 255, 255, 0.15) 0%,
                rgba(255, 255, 255, 0.08) 50%,
                rgba(255, 255, 255, 0.05) 100%
            );
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            color: white;
            /* Glass borders - light top */
            border: 1px solid rgba(255, 255, 255, 0.35);
            border-bottom-color: rgba(255, 255, 255, 0.15);
            border-right-color: rgba(255, 255, 255, 0.2);
            /* Soft glow */
            box-shadow:
                0 4px 20px rgba(255, 255, 255, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.25),
                inset 0 -1px 0 rgba(0, 0, 0, 0.05);
        }
        .btn-outline:hover {
            background: linear-gradient(
                165deg,
                rgba(255, 255, 255, 0.25) 0%,
                rgba(255, 255, 255, 0.15) 50%,
                rgba(255, 255, 255, 0.1) 100%
            );
            transform: translateY(-4px) scale(1.02);
            border-color: rgba(255, 255, 255, 0.5);
            box-shadow:
                0 8px 32px rgba(255, 255, 255, 0.15),
                0 0 40px rgba(255, 255, 255, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.35),
                inset 0 -1px 0 rgba(0, 0, 0, 0.05);
        }

        /* Reinforcement text */
        .hero-reinforcement {
            margin-top: 24px;
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            animation: fadeInUp 0.8s ease-out 0.5s backwards;
        }

        /* ========================================
           THREE PATHS - Choose Your Path
           SUNSET GRADIENT BACKGROUND
           ======================================== */
        .paths {
            /* Sunset gradient: warm gold → soft pink → lavender */
            background: linear-gradient(
                135deg,
                #fef9e7 0%,
                #fdf2e9 20%,
                #fce4d6 40%,
                #f5d5c8 60%,
                #ebccd1 80%,
                #e8d5e0 100%
            );
            padding: 56px 48px;
            text-align: center;
            position: relative;
        }
        .section-label {
            display: inline-block;
            font-size: 12px;
            color: var(--accent2);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 16px;
            font-weight: 600;
            background: rgba(255,255,255,0.7);
            padding: 6px 14px;
            border-radius: 20px;
            border: 1px solid transparent;
        }
        .paths h2 {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary);
            margin-top: 0;
            margin-bottom: 12px;
        }
        .paths .subtitle {
            font-size: 15px;
            color: #5a6a7a;
            margin-top: 0;
            margin-bottom: 0;
        }
        .paths-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1100px;
            margin: 40px auto 0;
        }
        .path-card {
            /* Soft cream/warm background instead of stark white */
            background: rgba(255, 253, 250, 0.85);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 16px;
            overflow: hidden;
            text-align: left;
            /* Subtle warm border */
            border: 1px solid rgba(255, 255, 255, 0.6);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: flex;
            flex-direction: column;
            /* Soft shadow */
            box-shadow:
                0 4px 20px rgba(139, 90, 90, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
        }
        .path-card:hover {
            transform: translateY(-8px);
            /* Warm glow on hover */
            box-shadow:
                0 20px 40px rgba(139, 90, 90, 0.15),
                0 0 0 2px rgba(45, 138, 78, 0.3),
                0 0 30px rgba(45, 138, 78, 0.1);
            border-color: rgba(45, 138, 78, 0.4);
            background: rgba(255, 255, 255, 0.95);
        }
        /* Image header - compact */
        .path-image {
            width: 100%;
            height: 110px;
            overflow: hidden;
        }
        .path-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .path-card:hover .path-image img {
            transform: scale(1.05);
        }
        /* Card content - compact */
        .path-content {
            padding: 16px 20px 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        .path-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 4px;
        }
        .path-card > .path-content > p:first-of-type {
            font-size: 13px;
            margin-bottom: 12px;
            color: var(--text-muted);
            line-height: 1.5;
        }
        /* Highlight - glass bubble style */
        .path-highlight {
            margin-bottom: 14px;
            padding: 16px 18px;
            /* Gradient for convex/bubble effect - light on top */
            background: linear-gradient(
                165deg,
                rgba(255, 255, 255, 0.5) 0%,
                rgba(45, 138, 78, 0.08) 40%,
                rgba(45, 138, 78, 0.12) 100%
            );
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 14px;
            /* Top border lighter (highlight), bottom darker */
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-bottom-color: rgba(45, 138, 78, 0.2);
            border-right-color: rgba(45, 138, 78, 0.15);
            /* Soft shadow for depth */
            box-shadow:
                0 4px 16px rgba(45, 138, 78, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.6),
                inset 0 -1px 0 rgba(45, 138, 78, 0.1);
        }
        .path-highlight .label {
            font-size: 10px;
            color: var(--accent2-dark);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
            display: flex;
            flex-direction: column;
            margin-bottom: 2px;
        }
        .path-highlight .value {
            font-size: 24px;
            font-weight: 800;
            color: var(--accent2);
            letter-spacing: -0.5px;
        }
        .path-list {
            list-style: none;
            margin-bottom: 16px;
            flex-grow: 1;
        }
        .path-list li {
            padding: 4px 0;
            font-size: 12px;
            color: #555;
            display: flex;
            align-items: flex-start;
            gap: 6px;
            line-height: 1.4;
        }
        .path-list li::before {
            content: '✓';
            color: var(--accent2);
            font-weight: 600;
            flex-shrink: 0;
        }
        /* Path CTA - Liquid Glass Style */
        .path-cta {
            display: flex;
            flex-direction: column;
            text-align: center;
            padding: 14px 20px;
            /* Liquid glass gradient */
            background: linear-gradient(
                165deg,
                rgba(45, 138, 78, 0.88) 0%,
                rgba(45, 138, 78, 0.95) 50%,
                rgba(36, 122, 66, 1) 100%
            );
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            color: white;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            margin-top: auto;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            /* Glass borders */
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-bottom-color: rgba(0, 0, 0, 0.12);
            border-right-color: rgba(0, 0, 0, 0.08);
            /* Soft glow + inset */
            box-shadow:
                0 4px 16px rgba(45, 138, 78, 0.3),
                0 0 24px rgba(45, 138, 78, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.08);
        }
        .path-cta:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow:
                0 8px 28px rgba(45, 138, 78, 0.4),
                0 0 40px rgba(45, 138, 78, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.4),
                inset 0 -1px 0 rgba(0, 0, 0, 0.08);
            border-color: rgba(255, 255, 255, 0.35);
        }

        /* ========================================
           PATH COLOR SCHEMES
           Live = Mediterranean Blue | Rent = Brand Green | Sell = Rich Rose
           ======================================== */

        /* --- BUILD TO LIVE — Dusty Teal (70, 129, 153) --- */
        .path-card[data-segment="live"]:hover {
            box-shadow:
                0 20px 40px rgba(70, 129, 153, 0.18),
                0 0 0 1.5px rgba(70, 129, 153, 0.25),
                0 0 30px rgba(70, 129, 153, 0.08);
            border-color: rgba(70, 129, 153, 0.35);
        }
        .path-card[data-segment="live"] .path-highlight {
            background: linear-gradient(
                165deg,
                rgba(255, 255, 255, 0.5) 0%,
                rgba(70, 129, 153, 0.07) 40%,
                rgba(70, 129, 153, 0.11) 100%
            );
            border-bottom-color: rgba(70, 129, 153, 0.18);
            border-right-color: rgba(70, 129, 153, 0.12);
            box-shadow:
                0 4px 16px rgba(70, 129, 153, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.6),
                inset 0 -1px 0 rgba(70, 129, 153, 0.08);
        }
        .path-card[data-segment="live"] .path-highlight .label {
            color: var(--path-live-dark);
        }
        .path-card[data-segment="live"] .path-highlight .value {
            color: var(--path-live);
        }
        .path-card[data-segment="live"] .path-list li::before {
            color: var(--path-live);
        }
        .path-card[data-segment="live"] .path-cta {
            background: linear-gradient(
                165deg,
                rgba(70, 129, 153, 0.9) 0%,
                rgba(70, 129, 153, 0.95) 50%,
                rgba(53, 109, 131, 1) 100%
            );
            box-shadow:
                0 4px 16px rgba(70, 129, 153, 0.25),
                0 0 20px rgba(70, 129, 153, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.08);
        }
        .path-card[data-segment="live"] .path-cta:hover {
            box-shadow:
                0 8px 28px rgba(70, 129, 153, 0.35),
                0 0 36px rgba(70, 129, 153, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.4),
                inset 0 -1px 0 rgba(0, 0, 0, 0.08);
        }

        /* --- BUILD TO RENT — Brand Green (uses default accent2, same as header/hero) --- */

        /* --- BUILD TO SELL — Dusty Rose (155, 99, 116) --- */
        .path-card[data-segment="sell"]:hover {
            box-shadow:
                0 20px 40px rgba(155, 99, 116, 0.18),
                0 0 0 1.5px rgba(155, 99, 116, 0.25),
                0 0 30px rgba(155, 99, 116, 0.08);
            border-color: rgba(155, 99, 116, 0.35);
        }
        .path-card[data-segment="sell"] .path-highlight {
            background: linear-gradient(
                165deg,
                rgba(255, 255, 255, 0.5) 0%,
                rgba(155, 99, 116, 0.07) 40%,
                rgba(155, 99, 116, 0.11) 100%
            );
            border-bottom-color: rgba(155, 99, 116, 0.18);
            border-right-color: rgba(155, 99, 116, 0.12);
            box-shadow:
                0 4px 16px rgba(155, 99, 116, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.6),
                inset 0 -1px 0 rgba(155, 99, 116, 0.08);
        }
        .path-card[data-segment="sell"] .path-highlight .label {
            color: var(--path-sell-dark);
        }
        .path-card[data-segment="sell"] .path-highlight .value {
            color: var(--path-sell);
        }
        .path-card[data-segment="sell"] .path-list li::before {
            color: var(--path-sell);
        }
        .path-card[data-segment="sell"] .path-cta {
            background: linear-gradient(
                165deg,
                rgba(155, 99, 116, 0.9) 0%,
                rgba(155, 99, 116, 0.95) 50%,
                rgba(131, 80, 97, 1) 100%
            );
            box-shadow:
                0 4px 16px rgba(155, 99, 116, 0.25),
                0 0 20px rgba(155, 99, 116, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.08);
        }
        .path-card[data-segment="sell"] .path-cta:hover {
            box-shadow:
                0 8px 28px rgba(155, 99, 116, 0.35),
                0 0 36px rgba(155, 99, 116, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.4),
                inset 0 -1px 0 rgba(0, 0, 0, 0.08);
        }

        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }
        .section-header .tag {
            display: inline-block;
            background: var(--accent-light);
            color: var(--accent-dark);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 16px;
        }
        .section-header h2 {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
        }
        .section-header p {
            color: var(--text-muted);
            font-size: 15px;
            max-width: 400px;
            margin: 0 auto;
        }

        /* ========================================
           WHY WE'RE DIFFERENT - V8 Pro Accordion
           ======================================== */
        .benefits-v8 {
            background: var(--primary);
            padding: 56px 0;
            position: relative;
            overflow: hidden;
        }
        .benefits-v8::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background:
                linear-gradient(135deg, transparent 0%, rgba(26, 58, 92, 0.4) 25%, transparent 50%, rgba(18, 44, 71, 0.35) 75%, transparent 100%),
                radial-gradient(ellipse 600px 400px at 85% 15%, rgba(45, 138, 78, 0.08) 0%, transparent 70%),
                radial-gradient(ellipse 500px 350px at 10% 85%, rgba(114, 47, 55, 0.07) 0%, transparent 70%),
                radial-gradient(ellipse 400px 400px at 50% 50%, rgba(255, 255, 255, 0.015) 0%, transparent 70%);
            pointer-events: none;
        }
        .benefits-v8::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent));
        }
        .benefits-v8-inner {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 48px;
            position: relative;
            z-index: 2;
        }
        .benefits-v8-header { margin-bottom: 28px; }
        .benefits-v8-label {
            display: inline-block;
            font-size: 12px;
            color: var(--accent2);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            margin-bottom: 16px;
            padding: 6px 14px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
        }
        .benefits-v8-header h2 {
            font-size: 32px;
            font-weight: 700;
            color: white;
            margin-top: 0;
            margin-bottom: 12px;
        }
        .benefits-v8-header p {
            font-size: 15px;
            color: rgba(255,255,255,0.6);
            margin-top: 0;
            max-width: 400px;
        }
        .benefits-v8-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            align-items: stretch;
        }
        .v8p-accordion {
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        .v8p-item {
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            flex: 0 0 auto;
        }
        .v8p-item.active { flex: 1 1 auto; }
        .v8p-item-header {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 16px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            transition: all 0.3s ease;
            margin-bottom: 3px;
        }
        .v8p-item:hover .v8p-item-header {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.08);
        }
        .v8p-item.active .v8p-item-header {
            background: rgba(45, 138, 78, 0.1);
            border-color: rgba(45, 138, 78, 0.2);
            border-radius: 10px 10px 0 0;
            margin-bottom: 0;
            padding: 10px 16px;
        }
        .v8p-badge {
            display: none;
        }
        .v8p-title {
            flex-grow: 1;
            font-size: 14px; font-weight: 600;
            color: rgba(255, 255, 255, 0.5);
            transition: color 0.3s;
        }
        .v8p-item:hover .v8p-title { color: rgba(255, 255, 255, 0.7); }
        .v8p-item.active .v8p-title { color: white; font-weight: 700; }
        .v8p-arrow {
            width: 20px; height: 20px;
            display: flex; align-items: center; justify-content: center;
            transition: all 0.3s;
            color: rgba(255, 255, 255, 0.2);
        }
        .v8p-arrow svg { width: 14px; height: 14px; transition: transform 0.3s; }
        .v8p-item.active .v8p-arrow { color: var(--accent2); }
        .v8p-item.active .v8p-arrow svg { transform: rotate(180deg); }
        .v8p-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .v8p-item.active .v8p-body { max-height: 160px; }
        .v8p-body-inner {
            padding: 10px 16px 14px;
            background: rgba(45, 138, 78, 0.05);
            border: 1px solid rgba(45, 138, 78, 0.12);
            border-top: none;
            border-radius: 0 0 10px 10px;
            margin-bottom: 3px;
        }
        .v8p-body-inner p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.6;
        }
        .v8p-metric {
            display: inline-flex; align-items: center; gap: 6px;
            margin-top: 8px; padding: 3px 9px;
            background: rgba(45, 138, 78, 0.12);
            border-radius: 6px;
            font-size: 11px; font-weight: 700;
            color: var(--accent2);
        }
        .v8p-photo-panel {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.06);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.02);
            min-height: 360px;
        }
        .v8p-photo-slide {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            opacity: 0;
            transition: opacity 0.5s ease, transform 0.5s ease;
            transform: scale(1.03);
        }
        .v8p-photo-slide.active { opacity: 1; transform: scale(1); }
        .v8p-photo-slide img { width: 100%; height: 100%; object-fit: cover; }
        .v8p-photo-slide::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(15deg, rgba(13, 33, 55, 0.8) 0%, rgba(13, 33, 55, 0.25) 40%, rgba(13, 33, 55, 0.05) 70%, transparent 100%);
        }
        .v8p-photo-label {
            position: absolute;
            bottom: 24px; left: 24px; z-index: 3;
            opacity: 0; transform: translateY(8px);
            transition: all 0.4s ease 0.15s;
        }
        .v8p-photo-slide.active .v8p-photo-label { opacity: 1; transform: translateY(0); }
        .v8p-photo-label h3 {
            font-size: 22px; font-weight: 800; color: white;
            margin-bottom: 4px;
            text-shadow: 0 2px 12px rgba(0,0,0,0.3);
        }
        .v8p-photo-label span { font-size: 12px; color: rgba(255,255,255,0.6); font-weight: 500; }
        .v8p-photo-counter {
            position: absolute; top: 16px; right: 16px; z-index: 3;
            background: rgba(0,0,0,0.35);
            backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
            padding: 5px 12px; border-radius: 20px;
            font-size: 11px; font-weight: 600;
            color: rgba(255,255,255,0.65);
            border: 1px solid rgba(255,255,255,0.08);
        }

        /* ========================================
           MODELS — Our Floor Plans
           Warm gradient, glass cards, liquid glass buttons
           ======================================== */
        .models {
            background: linear-gradient(
                135deg,
                #e8f5ec 0%,
                #e8f0f5 20%,
                #eee8f5 40%,
                #f5e8f0 60%,
                #f5ece8 80%,
                #fef9e7 100%
            );
            padding: 56px 48px;
            text-align: center;
            position: relative;
        }

        .models h2 {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary);
            margin-top: 0;
            margin-bottom: 12px;
        }
        .models .subtitle {
            font-size: 15px;
            color: #5a6a7a;
            margin-top: 0;
            margin-bottom: 0;
        }
        .models-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1100px;
            margin: 40px auto 0;
        }
        .model-card {
            background: rgba(255, 253, 250, 0.85);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 16px;
            overflow: hidden;
            text-align: left;
            border: 1px solid rgba(255, 255, 255, 0.6);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
            box-shadow:
                0 4px 20px rgba(45, 138, 78, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
        }
        .model-card:hover {
            transform: translateY(-8px);
            box-shadow:
                0 20px 40px rgba(45, 138, 78, 0.12),
                0 0 0 1.5px rgba(45, 138, 78, 0.25),
                0 0 30px rgba(45, 138, 78, 0.06);
            border-color: rgba(45, 138, 78, 0.3);
            background: rgba(255, 255, 255, 0.95);
        }
        .model-img {
            width: 100%;
            height: 150px;
            overflow: hidden;
            position: relative;
        }
        .model-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .model-card:hover .model-img img {
            transform: scale(1.08);
        }
        .model-img::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 40px;
            background: linear-gradient(transparent, rgba(255, 253, 250, 0.3));
            pointer-events: none;
        }
        .model-info {
            padding: 12px 16px 14px;
            display: grid;
            grid-template-columns: 1fr auto;
            grid-template-rows: auto auto;
            gap: 2px 12px;
            align-items: baseline;
        }
        .model-name {
            grid-column: 1;
            grid-row: 1;
            font-size: 15px;
            font-weight: 700;
            color: var(--primary);
        }
        .model-price-row {
            grid-column: 2;
            grid-row: 1;
            display: flex;
            align-items: baseline;
            gap: 4px;
            white-space: nowrap;
        }
        .model-specs {
            grid-column: 1 / -1;
            grid-row: 2;
            font-size: 12px;
            color: var(--text-muted);
        }
        .model-price-row .from-label {
            font-size: 11px;
            color: var(--text-muted);
            font-weight: 500;
        }
        .model-price {
            font-size: 16px;
            font-weight: 800;
            color: var(--accent2);
            letter-spacing: -0.3px;
        }
        /* Show more / hide */
        .models-grid .model-card:nth-child(n+7) {
            display: none;
        }
        .models-grid.show-all .model-card {
            display: flex;
            flex-direction: column;
        }
        .models-cta {
            margin-top: 40px;
            text-align: center;
        }
        .models-cta .btn-show-more,
        .models-cta .btn-explore {
            display: inline-block;
            padding: 14px 32px;
            background: linear-gradient(165deg, rgba(45,138,78,0.08) 0%, rgba(45,138,78,0.05) 50%, rgba(45,138,78,0.03) 100%);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(45,138,78,0.4);
            border-bottom-color: rgba(45,138,78,0.2);
            border-radius: 14px;
            color: var(--accent2);
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 4px 20px rgba(45,138,78,0.1),
                inset 0 1px 0 rgba(255,255,255,0.4), inset 0 -1px 0 rgba(0,0,0,0.03);
            margin-bottom: 16px;
            position: relative;
            overflow: hidden;
        }
        .models-cta .btn-show-more::before,
        .models-cta .btn-explore::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(45,138,78,0.08), transparent);
            transition: left 0.6s ease;
        }
        .models-cta .btn-show-more:hover::before,
        .models-cta .btn-explore:hover::before {
            left: 100%;
        }
        .models-cta .btn-show-more:hover,
        .models-cta .btn-explore:hover {
            transform: translateY(-3px);
            border-color: rgba(45,138,78,0.55);
            box-shadow: 0 8px 28px rgba(45,138,78,0.18),
                inset 0 1px 0 rgba(255,255,255,0.5), inset 0 -1px 0 rgba(0,0,0,0.03);
        }
        .models-cta .btn-explore.hidden,
        .models-cta .btn-show-more.hidden {
            display: none;
        }
        .models-cta-note {
            margin-top: 12px;
            font-size: 14px;
            color: #8a8a9a;
            font-style: italic;
        }

        /* ========================================
           PROCESS — Spirit Level Animation
           ======================================== */
        .process {
            width: 100%;
            padding: 56px 48px;
            background: linear-gradient(135deg, #e8d5e0 0%, #ebccd1 20%, #f5d5c8 40%, #fce4d6 60%, #fdf2e9 80%, #fef9e7 100%);
        }
        .process .section-header { margin-bottom: 28px; }
        /* .process .section-label inherits base */
        .process .section-header h2 {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary);
            margin-top: 0;
            margin-bottom: 8px;
        }
        .process .subtitle {
            font-size: 15px;
            color: #5a6a7a;
            margin-top: 0;
        }

        /* Spirit Level */
        .level-wrapper {
            max-width: 920px;
            margin: 0 auto 28px;
            position: relative;
            cursor: none;
        }
        .level-body {
            position: relative;
            height: 52px;
            border-radius: 6px;
            background: linear-gradient(180deg, #c8ccd0 0%, #bfc4c8 8%, #b5bbc0 20%, #adb4ba 40%, #a8b0b6 55%, #adb4ba 70%, #b8bfc5 85%, #c5cacd 95%, #cdd1d5 100%);
            box-shadow: 0 6px 20px rgba(0,0,0,0.18), 0 2px 6px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.5), inset 0 -1px 0 rgba(0,0,0,0.1);
        }
        .level-body::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 6px;
            background: repeating-linear-gradient(90deg, transparent 0px, rgba(255,255,255,0.03) 1px, transparent 2px, rgba(0,0,0,0.015) 3px, transparent 4px);
            pointer-events: none;
        }
        .level-body::after {
            content: '';
            position: absolute;
            top: 2px; left: 24px; right: 24px;
            height: 6px;
            border-radius: 3px;
            background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 20%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0.2) 80%, rgba(255,255,255,0) 100%);
            pointer-events: none;
        }
        .end-cap {
            position: absolute;
            top: -2px;
            width: 22px;
            height: 56px;
            border-radius: 4px;
            background: linear-gradient(180deg, #3d3d3d 0%, #2e2e2e 30%, #222 60%, #2a2a2a 100%);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 2px 6px rgba(0,0,0,0.25);
        }
        .end-cap-left { left: -4px; }
        .end-cap-right { right: -4px; }
        .end-cap::after {
            content: '';
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 8px; height: 8px;
            border-radius: 50%;
            background: radial-gradient(circle, #1a1a1a 30%, #333 70%);
            box-shadow: inset 0 1px 2px rgba(255,255,255,0.08);
        }

        /* Glass Tube */
        .glass-tube {
            position: absolute;
            top: 10px; left: 30px; right: 30px;
            height: 32px;
            border-radius: 16px;
            background: linear-gradient(180deg, rgba(180,210,40,0.45) 0%, rgba(170,200,30,0.55) 20%, rgba(160,195,25,0.6) 40%, rgba(155,190,20,0.65) 50%, rgba(160,195,25,0.6) 60%, rgba(170,200,30,0.55) 80%, rgba(180,210,40,0.45) 100%);
            border: 1.5px solid rgba(90,110,20,0.2);
            box-shadow: inset 0 4px 10px rgba(0,0,0,0.1), inset 0 -3px 8px rgba(0,0,0,0.06), 0 1px 0 rgba(255,255,255,0.3), inset 0 0 16px rgba(180,210,40,0.08);
            overflow: hidden;
        }
        .glass-tube::before {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 55%;
            background: linear-gradient(180deg, rgba(170,200,30,0.03) 0%, rgba(160,190,20,0.12) 100%);
            border-radius: 0 0 16px 16px;
        }
        .glass-tube::after {
            content: '';
            position: absolute;
            top: 3px; left: 30px; right: 30px;
            height: 7px;
            border-radius: 4px;
            background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.25) 15%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0.25) 85%, rgba(255,255,255,0) 100%);
        }
        .tube-marks {
            position: absolute;
            top: 0; left: 0; right: 0; height: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 3%;
            align-items: flex-end;
            pointer-events: none;
        }
        .tube-mark { width: 1px; background: rgba(0,0,0,0.05); flex-shrink: 0; }
        .tube-mark.small { height: 6px; }
        .tube-mark.large { height: 10px; background: rgba(0,0,0,0.08); }
        .center-mark {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 30px; height: 100%;
            pointer-events: none;
        }
        .center-mark::before, .center-mark::after {
            content: '';
            position: absolute;
            background: rgba(0,0,0,0.07);
        }
        .center-mark::before { top: 6px; bottom: 6px; left: 0; width: 1px; }
        .center-mark::after { top: 6px; bottom: 6px; right: 0; width: 1px; }

        /* Bubble */
        .bubble {
            position: absolute;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 56px; height: 18px;
            border-radius: 9px;
            background: radial-gradient(ellipse at 50% 35%, rgba(250,255,240,0.95) 0%, rgba(240,250,200,0.85) 25%, rgba(225,245,160,0.72) 50%, rgba(210,238,120,0.6) 75%, rgba(200,230,100,0.5) 100%);
            border: 1px solid rgba(150,190,30,0.18);
            box-shadow: 0 1px 4px rgba(0,0,0,0.08), inset 0 3px 8px rgba(255,255,255,0.7), inset 0 -2px 5px rgba(120,160,20,0.08), inset 3px 0 5px rgba(255,255,255,0.2), inset -3px 0 5px rgba(255,255,255,0.2);
            transition: left 0.8s cubic-bezier(0.22, 1, 0.36, 1), border-radius 0.6s ease, width 0.6s ease;
            left: 50%;
            z-index: 2;
        }
        .bubble::before {
            content: '';
            position: absolute;
            top: 3px; left: 10px;
            width: 18px; height: 6px;
            border-radius: 3px;
            background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.15) 100%);
            transition: all 0.3s ease;
        }
        .bubble::after {
            content: '';
            position: absolute;
            bottom: 3px; right: 10px;
            width: 10px; height: 3px;
            border-radius: 2px;
            background: rgba(255,255,255,0.18);
        }
        /* Bubble stretches in direction of travel */
        .bubble.moving-right {
            animation: bubbleMoveRight 0.8s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .bubble.moving-left {
            animation: bubbleMoveLeft 0.8s cubic-bezier(0.22, 1, 0.36, 1);
        }
        @keyframes bubbleMoveRight {
            0% { border-radius: 9px; width: 56px; }
            15% { border-radius: 9px 15px 15px 9px; width: 66px; }
            40% { border-radius: 10px 12px 12px 10px; width: 60px; }
            70% { border-radius: 8px 10px 10px 8px; width: 57px; }
            85% { border-radius: 10px 8px 8px 10px; width: 54px; }
            100% { border-radius: 9px; width: 56px; }
        }
        @keyframes bubbleMoveLeft {
            0% { border-radius: 9px; width: 56px; }
            15% { border-radius: 15px 9px 9px 15px; width: 66px; }
            40% { border-radius: 12px 10px 10px 12px; width: 60px; }
            70% { border-radius: 10px 8px 8px 10px; width: 57px; }
            85% { border-radius: 8px 10px 10px 8px; width: 54px; }
            100% { border-radius: 9px; width: 56px; }
        }
        /* Vertical bubble animations (mobile) */
        @keyframes bubbleMoveDown {
            0% { border-radius: 6px; height: 28px; }
            15% { border-radius: 6px 6px 10px 10px; height: 36px; }
            40% { border-radius: 7px; height: 31px; }
            70% { border-radius: 6px 6px 7px 7px; height: 29px; }
            100% { border-radius: 6px; height: 28px; }
        }
        @keyframes bubbleMoveUp {
            0% { border-radius: 6px; height: 28px; }
            15% { border-radius: 10px 10px 6px 6px; height: 36px; }
            40% { border-radius: 7px; height: 31px; }
            70% { border-radius: 7px 7px 6px 6px; height: 29px; }
            100% { border-radius: 6px; height: 28px; }
        }

        /* Step dots on tube */
        .step-dots {
            position: absolute;
            top: 0; left: 0; right: 0; height: 100%;
            pointer-events: none;
            z-index: 1;
        }
        .step-dot {
            position: absolute;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 5px; height: 5px;
            border-radius: 50%;
            background: rgba(140,170,30,0.2);
            border: 1px solid rgba(140,170,30,0.25);
            transition: all 0.4s ease;
        }
        .step-dot:nth-child(1) { left: 20%; }
        .step-dot:nth-child(2) { left: 50%; }
        .step-dot:nth-child(3) { left: 80%; }
        .step-dot.active {
            background: rgba(170,200,40,0.5);
            border-color: rgba(170,200,40,0.6);
            width: 7px; height: 7px;
            box-shadow: 0 0 6px rgba(170,200,40,0.35);
        }

        /* Step Cards */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 920px;
            margin: 0 auto;
        }
        .process-step {
            background: rgba(255,255,255,0.32);
            backdrop-filter: blur(24px) saturate(1.3);
            -webkit-backdrop-filter: blur(24px) saturate(1.3);
            border-radius: 20px;
            padding: 32px 28px 28px 32px;
            border: 1px solid rgba(255,255,255,0.5);
            border-top: 1px solid rgba(255,255,255,0.7);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: default;
            position: relative;
            box-shadow:
                0 8px 32px rgba(0,0,0,0.08),
                0 2px 8px rgba(0,0,0,0.04),
                inset 0 1px 0 rgba(255,255,255,0.8),
                inset 0 -1px 0 rgba(0,0,0,0.03);
        }
        /* Glass sheen — curved light reflection */
        .process-step::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 50%;
            background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.08) 60%, transparent 100%);
            border-radius: 20px 20px 0 0;
            pointer-events: none;
            z-index: 0;
        }
        .process-step:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.42);
            box-shadow:
                0 20px 48px rgba(0,0,0,0.1),
                0 4px 12px rgba(0,0,0,0.06),
                inset 0 1px 0 rgba(255,255,255,0.9),
                inset 0 -1px 0 rgba(0,0,0,0.02);
            border-color: rgba(255,255,255,0.7);
        }
        .process-step.active {
            transform: translateY(-6px);
            background: rgba(255,255,255,0.48);
            border-color: rgba(255,255,255,0.75);
        }
        .process-step:nth-child(1).active { box-shadow: 0 20px 48px rgba(114,47,55,0.1), 0 4px 12px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.9); }
        .process-step:nth-child(2).active { box-shadow: 0 20px 48px rgba(45,138,78,0.12), 0 4px 12px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.9); }
        .process-step:nth-child(3).active { box-shadow: 0 20px 48px rgba(13,33,55,0.1), 0 4px 12px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.9); }

        /* Step tag — glass pill badge */
        .step-tag {
            position: absolute;
            top: 14px; right: 14px;
            font-size: 9px; font-weight: 700;
            letter-spacing: 1.8px;
            padding: 4px 10px;
            border-radius: 8px;
            background: rgba(255,255,255,0.35);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.45);
            color: var(--text-muted);
            opacity: 0.6;
            transition: all 0.3s ease;
            box-shadow: 0 2px 6px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.6);
            z-index: 1;
        }
        .process-step:hover .step-tag { opacity: 0.8; background: rgba(255,255,255,0.45); }
        .process-step.active .step-tag { opacity: 1; background: rgba(255,255,255,0.5); }
        .process-step:nth-child(1).active .step-tag { color: var(--accent); border-color: rgba(114,47,55,0.2); }
        .process-step:nth-child(2).active .step-tag { color: var(--accent2); border-color: rgba(45,138,78,0.2); }
        .process-step:nth-child(3).active .step-tag { color: var(--primary); border-color: rgba(13,33,55,0.2); }
        .step-icon {
            width: 56px; height: 56px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            transition: all 0.4s ease;
            background: rgba(255,255,255,0.4);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255,255,255,0.55);
            box-shadow: 0 4px 16px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.8), inset 0 -1px 0 rgba(0,0,0,0.03);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        .step-icon::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 50%;
            background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 100%);
            border-radius: 16px 16px 0 0;
            pointer-events: none;
        }
        .step-icon svg { width: 28px; height: 28px; stroke-width: 1.6; fill: none; transition: all 0.3s ease; position: relative; z-index: 1; }
        .process-step:nth-child(1) .step-icon {
            background: rgba(114,47,55,0.08);
            border-color: rgba(114,47,55,0.15);
        }
        .process-step:nth-child(1) .step-icon svg { color: var(--accent); stroke: var(--accent); }
        .process-step:nth-child(2) .step-icon {
            background: rgba(45,138,78,0.08);
            border-color: rgba(45,138,78,0.15);
        }
        .process-step:nth-child(2) .step-icon svg { color: var(--accent2); stroke: var(--accent2); }
        .process-step:nth-child(3) .step-icon {
            background: rgba(13,33,55,0.08);
            border-color: rgba(13,33,55,0.15);
        }
        .process-step:nth-child(3) .step-icon svg { color: var(--primary); stroke: var(--primary); }
        .process-step.active .step-icon {
            transform: scale(1.1);
            box-shadow: 0 8px 24px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.9);
        }
        .process-step:nth-child(1).active .step-icon { background: rgba(114,47,55,0.12); border-color: rgba(114,47,55,0.25); }
        .process-step:nth-child(2).active .step-icon { background: rgba(45,138,78,0.12); border-color: rgba(45,138,78,0.25); }
        .process-step:nth-child(3).active .step-icon { background: rgba(13,33,55,0.12); border-color: rgba(13,33,55,0.25); }
        .process-step h3 {
            font-size: 18px; font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
            transition: color 0.3s ease;
            position: relative; z-index: 1;
        }
        .process-step:nth-child(1).active h3 { color: var(--accent); }
        .process-step:nth-child(2).active h3 { color: var(--accent2); }
        .process-step:nth-child(3).active h3 { color: var(--primary); }
        .process-step p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.65;
            position: relative; z-index: 1;
        }
        .process-step.active p { color: #3a4a5a; }

        /* ========================================
           FAQ — Pill Dropdown
           ======================================== */
        .faq {
            padding: 56px 48px;
            background: linear-gradient(135deg, #fef9e7 0%, #fdf2e9 20%, #faf5f0 40%, #f8f3ee 60%, #faf5f0 80%, var(--bg) 100%);
            text-align: center;
            position: relative;
        }
        .faq-pill-container { display: flex; justify-content: center; position: relative; }
        .faq-pill { position: relative; z-index: 10; display: flex; flex-direction: column; align-items: center; }
        .faq-pill-toggle {
            display: inline-flex; align-items: center; justify-content: center; gap: 12px;
            background: rgba(255,253,250,0.85); backdrop-filter: blur(12px) saturate(1.3); -webkit-backdrop-filter: blur(12px) saturate(1.3);
            border: 1px solid rgba(255,255,255,0.6); padding: 14px 24px; border-radius: 100px;
            cursor: pointer; font-family: inherit; outline: none; width: auto;
            box-shadow: 0 4px 20px rgba(139,90,90,0.06), inset 0 1px 0 rgba(255,255,255,0.8);
            transition: width 0.35s cubic-bezier(0.4,0,0.2,1) 0.15s, max-width 0.35s cubic-bezier(0.4,0,0.2,1) 0.15s,
                padding 0.35s cubic-bezier(0.4,0,0.2,1) 0.15s, border-radius 0.3s cubic-bezier(0.4,0,0.2,1) 0.2s,
                border-color 0.2s ease, background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
        }
        .faq-pill-toggle:hover {
            border-color: rgba(45,138,78,0.4);
            box-shadow: 0 6px 24px rgba(45,138,78,0.1), inset 0 1px 0 rgba(255,255,255,0.9);
            transform: translateY(-2px);
        }
        .faq-pill-toggle.active {
            border-color: var(--primary); border-bottom-color: transparent;
            box-shadow: 0 -4px 20px rgba(13,33,55,0.08); border-radius: 20px 20px 0 0;
            background: rgba(255,253,250,0.95); position: relative; z-index: 2;
            width: 720px; max-width: 92vw; padding: 16px 28px;
            transition: width 0.35s cubic-bezier(0.4,0,0.2,1), max-width 0.35s cubic-bezier(0.4,0,0.2,1),
                padding 0.35s cubic-bezier(0.4,0,0.2,1), border-radius 0.2s cubic-bezier(0.4,0,0.2,1),
                border-color 0.2s ease, background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
        }
        .faq-pill-icon {
            width: 32px; height: 32px; border-radius: 50%;
            background: linear-gradient(165deg, rgba(13,33,55,0.85) 0%, rgba(26,58,92,0.92) 100%);
            display: flex; align-items: center; justify-content: center;
            color: white; font-weight: 700; font-size: 16px;
            box-shadow: 0 2px 8px rgba(13,33,55,0.25), inset 0 1px 0 rgba(255,255,255,0.15);
        }
        .faq-pill-text { font-size: 15px; font-weight: 600; color: var(--primary); }
        .faq-pill-count { background: var(--accent2-light); color: var(--accent2); padding: 4px 10px; border-radius: 100px; font-size: 12px; font-weight: 600; }
        .faq-pill-chevron { color: var(--text-muted); transition: transform 0.3s ease; font-size: 12px; }
        .faq-pill-toggle.active .faq-pill-chevron { transform: rotate(180deg); }

        .faq-dropdown {
            position: absolute; top: calc(100% - 1px); left: 50%; transform: translateX(-50%);
            width: 720px; max-width: 92vw;
            background: rgba(255,253,250,0.95); backdrop-filter: blur(20px) saturate(1.4); -webkit-backdrop-filter: blur(20px) saturate(1.4);
            border: 1px solid var(--primary); border-top: none; border-radius: 0 0 20px 20px;
            max-height: 0; overflow: hidden; opacity: 0; z-index: 1;
            box-shadow: 0 12px 40px rgba(13,33,55,0.15);
            transition: max-height 0.25s cubic-bezier(0.4,0,0.2,1), opacity 0.15s ease, padding 0.25s cubic-bezier(0.4,0,0.2,1);
        }
        .faq-dropdown.expanded {
            max-height: 80vh; opacity: 1; padding: 24px; overflow-y: auto;
            transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1) 0.1s, opacity 0.3s ease 0.12s, padding 0.35s cubic-bezier(0.4,0,0.2,1) 0.1s;
        }

        .faq-categories { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
        .faq-category {
            padding: 16px; background: rgba(255,255,255,0.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
            border-radius: 12px; border: 1px solid rgba(255,255,255,0.6);
            box-shadow: 0 2px 8px rgba(0,0,0,0.03), inset 0 1px 0 rgba(255,255,255,0.8); transition: all 0.3s ease;
        }
        .faq-category:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.9); }
        .faq-category-header { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid rgba(0,0,0,0.05); }
        .faq-category-icon { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; }
        .faq-category-icon svg { width: 16px; height: 16px; }
        .faq-category[data-cat="costs"] .faq-category-icon svg { color: var(--accent2); }
        .faq-category[data-cat="costs"] .faq-category-title { color: var(--accent2-dark); }
        .faq-category[data-cat="process"] .faq-category-icon svg { color: var(--primary-light); }
        .faq-category[data-cat="process"] .faq-category-title { color: var(--primary-light); }
        .faq-category[data-cat="quality"] .faq-category-icon svg { color: var(--accent); }
        .faq-category[data-cat="quality"] .faq-category-title { color: var(--accent-dark); }
        .faq-category[data-cat="comms"] .faq-category-icon svg { color: #468199; }
        .faq-category[data-cat="comms"] .faq-category-title { color: #356d83; }
        .faq-category-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
        .faq-category-count { margin-left: auto; font-size: 11px; color: var(--text-muted); }

        .faq-items { display: flex; flex-direction: column; gap: 2px; }
        .faq-item { border-radius: 8px; overflow: hidden; }
        .faq-question {
            display: flex; align-items: center; justify-content: space-between; padding: 10px 12px;
            background: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.2s ease; border-radius: 8px;
        }
        .faq-question:hover { background: var(--accent2-light); }
        .faq-question-text { font-size: 13px; font-weight: 500; color: var(--text); }
        .faq-question-icon { font-size: 14px; color: var(--text-muted); transition: transform 0.2s ease, color 0.2s ease; flex-shrink: 0; margin-left: 8px; }
        .faq-item.active .faq-question { background: var(--accent2-light); border-radius: 8px 8px 0 0; }
        .faq-item.active .faq-question-icon { transform: rotate(45deg); color: var(--accent2); }
        .faq-item.active .faq-question-text { color: var(--accent2-dark); font-weight: 600; }
        .faq-answer { max-height: 0; overflow: hidden; opacity: 0; transition: all 0.3s ease; background: rgba(255,255,255,0.4); }
        .faq-item.active .faq-answer { max-height: 400px; opacity: 1; padding: 10px 12px; border-radius: 0 0 8px 8px; }
        .faq-answer p { font-size: 13px; line-height: 1.6; color: var(--text-muted); }

        @media (max-width: 768px) {
            .faq { padding: 32px 20px; }
            .faq-dropdown { width: calc(100vw - 32px); }
            .faq-categories { grid-template-columns: 1fr; }
            .faq-dropdown.expanded { max-height: 70vh; overflow-y: auto; padding: 16px; }
            .faq-pill-toggle { padding: 12px 18px; gap: 10px; }
            .faq-pill-text { font-size: 14px; }
            .faq-pill-toggle.active { width: calc(100vw - 32px); max-width: none; }
        }

        /* ========================================
           CTA BANNER
           ======================================== */
        .cta-banner {
            padding: 60px 48px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent2-dark) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--accent);
        }
        .cta-banner h2 {
            font-size: 28px;
            font-weight: 700;
            color: white;
            margin-bottom: 12px;
        }
        .cta-banner p {
            color: rgba(255,255,255,0.6);
            font-size: 15px;
            margin-bottom: 28px;
        }
        .cta-banner .buttons { display: flex; gap: 12px; justify-content: center; }
        .cta-banner .btn-secondary {
            border: 2px solid rgba(255,255,255,0.6);
            color: white;
            background: transparent;
        }
        .cta-banner .btn-secondary:hover {
            background: rgba(255,255,255,0.15);
            border-color: white;
        }
        .cta-inline-form { display: none; }
        .cta-buttons-desktop { display: flex; gap: 12px; justify-content: center; }

        /* ========================================
           FOOTER
           ======================================== */
        .footer {
            background: #091a2a;
            padding: 24px 48px 14px;
            color: white;
        }
        .footer-content {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
            gap: 36px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .footer-brand .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
            text-decoration: none;
        }
        .footer-brand .logo-img {
            height: 30px;
            width: auto;
            border-radius: 50%;
        }
        .footer-brand .logo-text {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .footer-brand .logo-text .brand {
            color: white;
            font-size: 13.5px;
            font-weight: 700;
        }
        .footer-brand .logo-text .tagline {
            color: rgba(255,255,255,0.5);
            font-size: 10px;
        }
        .footer-brand p {
            font-size: 12px;
            color: rgba(255,255,255,0.45);
            line-height: 1.5;
        }
        .footer-col h4 {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 10px;
            color: rgba(255,255,255,0.35);
        }
        .footer-col a {
            display: flex;
            flex-direction: column;
            color: rgba(255,255,255,0.65);
            text-decoration: none;
            font-size: 12.5px;
            margin-bottom: 5px;
            transition: color 0.2s;
        }
        .footer-col a:hover { color: var(--accent2-light); }
        .footer-col a.footer-nav-extra { display: none; }
        .footer-contact-item {
            position: relative;
            margin-bottom: 8px;
        }
        .footer-contact-item svg {
            position: absolute;
            left: -22px;
            top: 1px;
            width: 13px;
            height: 13px;
            stroke: var(--accent2);
            fill: none;
        }
        .footer-contact-item a,
        .footer-contact-item span {
            color: rgba(255,255,255,0.65);
            text-decoration: none;
            font-size: 12.5px;
            line-height: 1.4;
        }
        .footer-contact-item a:hover { color: var(--accent2-light); }
        .footer-social { display: flex; gap: 12px; margin-top: 14px; }
        .footer-social a {
            width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
            border-radius: 8px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5);
            transition: all 0.2s ease;
        }
        .footer-social a:hover { background: rgba(255,255,255,0.15); color: #fff; transform: translateY(-2px); }
        .footer-social svg { width: 16px; height: 16px; }
        .footer-bottom {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
            gap: 36px;
            font-size: 10px;
            color: rgba(255,255,255,0.2);
            max-width: 1100px;
            margin: 14px auto 0;
            padding-top: 10px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }
        .footer-bottom span:first-child {
            grid-column: 1;
        }
        .footer-bottom span:last-child {
            grid-column: 4;
        }

        /* ========================================
           GALLERY LIGHTBOX
           ======================================== */
        .gallery-lightbox {
            position: fixed;
            inset: 0;
            z-index: 10000;
            background: rgba(0,0,0,0.92);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        .gallery-lightbox.active { opacity: 1; visibility: visible; }
        .gallery-lightbox img {
            max-width: 88vw;
            max-height: 82vh;
            object-fit: contain;
            border-radius: 8px;
            transition: opacity 0.25s;
        }
        .gallery-lightbox .lb-close {
            position: absolute;
            top: 20px; right: 24px;
            width: 40px; height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            border: none;
            color: white;
            font-size: 22px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }
        .gallery-lightbox .lb-close:hover { background: rgba(255,255,255,0.2); }
        .gallery-lightbox .lb-nav {
            position: absolute;
            top: 50%; transform: translateY(-50%);
            width: 44px; height: 44px;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.12);
            color: white;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }
        .gallery-lightbox .lb-nav:hover { background: rgba(255,255,255,0.18); }
        .gallery-lightbox .lb-prev { left: 20px; }
        .gallery-lightbox .lb-next { right: 20px; }
        .gallery-lightbox .lb-counter {
            position: absolute;
            bottom: 20px;
            left: 50%; transform: translateX(-50%);
            color: rgba(255,255,255,0.5);
            font-size: 13px;
        }

        /* ========================================
           RESPONSIVE
           ======================================== */
        @media (max-width: 768px) {
            body { padding-top: 44px; }
            .header {
                padding: 0 16px;
                height: 44px;
                position: fixed;
            }
            .logo-img {
                height: 26px;
            }
            .logo-text .brand {
                font-size: 13px;
            }
            .nav { display: none; }
            .header-cta { display: none; }
            .header__menu-btn {
                display: flex;
                position: absolute;
                right: 16px;
                top: 50%;
                transform: translateY(-50%);
                z-index: 10;
            }

            /* Hero mobile — vertical image + centered content */
            .hero-bg img {
                object-position: center center;
            }
            .hero {
                min-height: 100vh;
                min-height: 100dvh;
                margin-top: -44px;
                padding-top: 44px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                overflow: hidden;
            }
            .hero-content {
                padding: 16px 24px 80px;
                max-width: 100%;
                min-height: auto;
                flex: 1;
                display: flex;
                flex-direction: column;
                text-align: center;
            }
            .hero .label {
                font-size: 8.5px;
                letter-spacing: 1.5px;
                margin-bottom: 10px;
            }
            .hero-text {
                flex: 1;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 12vh;
            }
            .hero-actions {
                margin-top: 0;
                padding-top: 16px;
            }
            .hero-cta {
                display: none;
            }
            .hero h1 {
                font-size: 28px;
                line-height: 1.25;
                margin-bottom: 0;
                letter-spacing: -0.02em;
                font-weight: 800;
            }
            .hero h1 br { display: none; }
            .hero h1 span::after { height: 2px; }
            .hero-subtitle {
                font-size: 16px;
                line-height: 1.5;
                margin-bottom: 0;
                margin-top: 6px;
            }
            .hero-reinforcement {
                display: flex;
            flex-direction: column;
                font-size: 11px;
                white-space: nowrap;
                color: rgba(255,255,255,0.5);
                margin-top: 12px;
            }

            /* Mobile fixed CTA bar */
            .mobile-cta-bar {
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                display: flex;
                gap: 10px;
                padding: 0 16px 20px;
                padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
                z-index: 97;
                background: transparent;
                pointer-events: none;
                justify-content: center;
                transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
            }
            .mobile-cta-bar.cta-hidden {
                transform: translateY(120px);
            }
            .mobile-cta-bar a {
                pointer-events: auto;
                -webkit-tap-highlight-color: transparent;
            }
            .mobile-cta-action {
                flex: 1;
                padding: 14px 16px;
                font-size: 0.875rem;
                font-weight: 600;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 14px;
                background: rgba(44, 110, 73, 0.88);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                border: 0.5px solid rgba(255, 255, 255, 0.2);
                color: #fff;
                text-decoration: none;
                box-shadow:
                    0 2px 12px rgba(44, 110, 73, 0.25),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
                transition: all 0.2s ease;
            }
            .mobile-cta-action:active {
                transform: scale(0.95);
                background: rgba(44, 110, 73, 0.95);
            }
            .mobile-cta-phone {
                flex: 1;
                padding: 14px 16px;
                font-size: 0.875rem;
                font-weight: 600;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 6px;
                border-radius: 14px;
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                border: 0.5px solid rgba(255, 255, 255, 0.15);
                color: rgba(255, 255, 255, 0.8);
                text-decoration: none;
                box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
                transition: all 0.2s ease;
            }
            .mobile-cta-phone:active {
                transform: scale(0.95);
                color: #fff;
                background: rgba(255, 255, 255, 0.18);
            }

            /* Paths mobile — horizontal cards with stat overlay on image */
            .paths { padding: 32px 16px; }
            .paths h2 { font-size: 26px; margin-bottom: 8px; }
            .paths .subtitle { font-size: 14px; margin-bottom: 0; }
            .paths-grid {
                grid-template-columns: 1fr;
                gap: 12px;
                max-width: 100%;
                margin-top: 20px;
            }
            .path-card {
                flex-direction: row;
                border-radius: 12px;
                position: relative;
            }
            .path-card:hover { transform: none; }
            .path-image {
                flex: 0 0 150px;
                height: auto;
                min-height: 100%;
                position: relative;
            }
            /* Subtle gradient on image for text readability */
            .path-image::after {
                content: '';
                position: absolute;
                inset: 0;
                background: linear-gradient(
                    to bottom,
                    rgba(10, 30, 20, 0.45) 0%,
                    rgba(10, 30, 20, 0.1) 55%,
                    transparent 100%
                );
                pointer-events: none;
                border-radius: 12px 0 0 12px;
            }
            .path-content {
                padding: 12px 14px;
                flex: 1;
            }
            .path-card h3 { font-size: 15px; margin-bottom: 2px; }
            .path-card > .path-content > p:first-of-type {
                font-size: 11px;
                margin-bottom: 8px;
                line-height: 1.4;
            }
            /* Highlight — text on image, no background, popup-style */
            .path-highlight {
                position: absolute;
                top: 8px;
                left: 10px;
                width: auto;
                z-index: 2;
                padding: 0 !important;
                margin-bottom: 0;
                border-radius: 0;
                background: none !important;
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
                border: none !important;
                box-shadow: none !important;
            }
            .path-highlight .label {
                font-size: 8px;
                letter-spacing: 1px;
                margin-bottom: 1px;
                color: rgba(255, 255, 255, 0.75) !important;
                line-height: 1.2;
                text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
            }
            .path-highlight .value {
                font-size: 20px;
                font-weight: 800;
                letter-spacing: -0.5px;
                color: #fff !important;
                line-height: 1.1;
                text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
            }
            .path-list { display: none; }
            .path-cta {
                font-size: 12px;
                padding: 12px 14px;
                border-radius: 14px;
                white-space: nowrap;
            }
            /* Benefits V8 Pro mobile — compact side-by-side */
            .benefits-v8 { padding: 32px 0; }
            .benefits-v8-inner { padding: 0 16px; }
            .benefits-v8-header { margin-bottom: 16px; text-align: center; }
            .benefits-v8-header h2 { font-size: 26px; margin-bottom: 8px; }
            .benefits-v8-header p { margin-top: 0; font-size: 14px; }
            .benefits-v8-split {
                display: flex;
                flex-direction: row;
                gap: 12px;
                align-items: stretch;
            }
            /* Photo — left side */
            .v8p-photo-panel {
                flex: 0 0 42%;
                min-height: 0;
                height: auto;
                order: -1;
                border-radius: 12px;
                overflow: hidden;
            }
            .v8p-photo-counter { display: none; }
            .v8p-photo-slide { border-radius: 12px; }
            .v8p-photo-slide img { height: 100%; object-fit: cover; }
            .v8p-photo-label { display: none; }
            /* Accordion — compact list, right side */
            .v8p-accordion {
                flex: 1;
                display: flex;
                flex-direction: column;
                gap: 0;
                justify-content: center;
            }
            .v8p-item { cursor: pointer; }
            .v8p-item.active { flex: 0 0 auto; }
            .v8p-item-header {
                padding: 7px 8px;
                gap: 8px;
                margin-bottom: 2px;
                border-radius: 8px;
            }
            .v8p-item.active .v8p-item-header {
                border-radius: 8px;
                margin-bottom: 2px;
            }
            .v8p-badge {
                display: flex;
                align-items: center;
                justify-content: center;
                min-width: 28px;
                height: 28px;
                padding: 0 5px;
                background: rgba(45, 138, 78, 0.12);
                border-radius: 7px;
                font-size: 9px;
                font-weight: 800;
                color: var(--accent2);
                letter-spacing: 0;
            }
            .v8p-title { font-size: 12px; }
            .v8p-item.active .v8p-title { font-size: 12px; }
            .v8p-arrow { display: none; }
            .v8p-body { display: none; }
            .v8p-item.active .v8p-body { display: none; }
            /* Models mobile */
            .models { padding: 32px 20px; }
            .models h2 { font-size: 26px; margin-bottom: 8px; }
            .models .subtitle { font-size: 14px; }
            .models-grid {
                grid-template-columns: 1fr;
                gap: 16px;
                max-width: 380px;
            }
            .models-grid .model-card:nth-child(n+5) { display: none; }
            .models-grid.show-all .model-card { display: block; }
            .model-img { height: 200px; }
            .models-cta { margin-top: 24px; }
            .models-cta .btn-show-more,
            .models-cta .btn-explore { margin-bottom: 6px; font-size: 14px; padding: 14px 32px; border-radius: 14px; }
            .models-cta-note { margin-top: 4px; font-size: 13px; }
            /* Process: vertical level layout */
            .process {
                display: grid;
                grid-template-columns: 1fr 32px;
                grid-template-rows: auto 1fr;
                gap: 0 16px;
                padding: 32px 16px 28px 18px;
            }
            .process .section-header { grid-column: 1 / -1; margin-bottom: 16px; }
            .process .section-header h2 { font-size: 26px; margin-bottom: 8px; }
            .process .subtitle { font-size: 14px; }

            /* Vertical level — left column */
            .level-wrapper {
                grid-column: 2; grid-row: 2;
                margin: 0; width: 32px;
                align-self: stretch;
                cursor: default;
            }
            .level-body {
                width: 100%; height: 100%;
                background: linear-gradient(90deg, #c8ccd0 0%, #bfc4c8 8%, #b5bbc0 20%, #adb4ba 40%, #a8b0b6 55%, #adb4ba 70%, #b8bfc5 85%, #c5cacd 95%, #cdd1d5 100%);
            }
            .level-body::before {
                background: repeating-linear-gradient(180deg, transparent 0px, rgba(255,255,255,0.03) 1px, transparent 2px, rgba(0,0,0,0.015) 3px, transparent 4px);
            }
            .level-body::after {
                top: 18px; bottom: 18px; left: 2px; right: auto;
                width: 5px; height: auto;
                background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 20%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0.2) 80%, rgba(255,255,255,0) 100%);
            }
            .end-cap {
                width: calc(100% + 4px); height: 14px;
                left: -2px; right: auto; top: auto;
            }
            .end-cap-left { top: -4px; }
            .end-cap-right { bottom: -4px; top: auto; }
            .end-cap::after { width: 6px; height: 6px; }

            /* Vertical glass tube */
            .glass-tube {
                top: 14px; bottom: 14px;
                left: 4px; right: 4px;
                height: auto;
                background: linear-gradient(90deg, rgba(180,210,40,0.45) 0%, rgba(170,200,30,0.55) 20%, rgba(160,195,25,0.6) 40%, rgba(155,190,20,0.65) 50%, rgba(160,195,25,0.6) 60%, rgba(170,200,30,0.55) 80%, rgba(180,210,40,0.45) 100%);
                border-radius: 10px;
            }
            .glass-tube::before {
                bottom: auto; top: 0; right: 0; left: auto;
                width: 55%; height: 100%;
                background: linear-gradient(90deg, rgba(170,200,30,0.03) 0%, rgba(160,190,20,0.12) 100%);
                border-radius: 0 10px 10px 0;
            }
            .glass-tube::after {
                top: 16px; bottom: 16px; left: 2px; right: auto;
                width: 4px; height: auto;
                background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.25) 15%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0.25) 85%, rgba(255,255,255,0) 100%);
                border-radius: 2px;
            }

            /* Vertical tube marks */
            .tube-marks {
                flex-direction: column;
                align-items: flex-end;
                padding: 3% 0;
            }
            .tube-mark { height: 1px; width: auto; }
            .tube-mark.small { width: 5px; height: 1px; }
            .tube-mark.large { width: 8px; height: 1px; }

            /* Vertical center mark */
            .center-mark {
                width: 100%; height: 20px;
                top: 50%; left: 0;
                transform: translate(0, -50%);
            }
            .center-mark::before {
                top: 0; left: 4px; right: 4px;
                width: auto; height: 1px; bottom: auto;
            }
            .center-mark::after {
                bottom: 0; left: 4px; right: 4px;
                width: auto; height: 1px; top: auto;
            }

            /* Vertical bubble */
            .bubble {
                width: 14px; height: 28px;
                border-radius: 7px;
                left: 50% !important;
                top: 50%;
                transform: translate(-50%, -50%);
                transition: top 0.8s cubic-bezier(0.22, 1, 0.36, 1), border-radius 0.6s ease, height 0.6s ease;
            }
            .bubble::before {
                top: 4px; left: 2px;
                width: 5px; height: 10px;
                border-radius: 3px;
            }
            .bubble::after {
                bottom: 4px; right: 2px;
                width: 4px; height: 6px;
                border-radius: 2px;
            }
            .bubble.moving-down { animation: bubbleMoveDown 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
            .bubble.moving-up { animation: bubbleMoveUp 0.8s cubic-bezier(0.22, 1, 0.36, 1); }

            /* Vertical step dots */
            .step-dots { width: 100%; height: 100%; }
            .step-dot { left: 50% !important; top: auto; transform: translate(-50%, -50%); }
            .step-dot:nth-child(1) { top: 20%; }
            .step-dot:nth-child(2) { top: 50%; }
            .step-dot:nth-child(3) { top: 80%; }

            /* Cards — left column */
            .process-steps {
                grid-column: 1; grid-row: 2;
                grid-template-columns: 1fr;
                gap: 10px;
                max-width: 100%;
            }
            .process-step {
                padding: 14px 16px;
                display: flex;
                align-items: flex-start;
                gap: 12px;
            }
            .process-step h3 { font-size: 16px; }
            .process-step p { font-size: 13px; }
            .step-icon { min-width: 36px; width: 36px; height: 36px; margin: 0; }
            .step-icon svg { width: 20px; height: 20px; }
            .step-tag { font-size: 8px; top: 10px; right: 10px; padding: 3px 8px; }
            .cta-banner { padding: 32px 20px; }
            .cta-banner h2 { font-size: 26px; margin-bottom: 8px; }
            .cta-banner p { font-size: 14px; margin-bottom: 20px; }
            .cta-buttons-desktop { display: none; }
            .cta-inline-form { display: block; }
            .glass-form {
                background: rgba(255,255,255,0.07);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                border: 1px solid rgba(255,255,255,0.12);
                border-radius: 20px;
                padding: 20px;
                display: flex;
                flex-direction: column;
                gap: 10px;
            }
            .glass-field input,
            .glass-field textarea {
                width: 100%;
                padding: 11px 14px;
                background: rgba(255,255,255,0.18);
                border: 1px solid rgba(255,255,255,0.25);
                border-radius: 12px;
                color: white;
                font-size: 14px;
                font-family: inherit;
                outline: none;
                transition: border-color 0.2s, background 0.2s;
                box-sizing: border-box;
            }
            .glass-field input::placeholder,
            .glass-field textarea::placeholder {
                color: rgba(255,255,255,0.45);
            }
            .glass-field input:focus,
            .glass-field textarea:focus {
                border-color: rgba(45,138,78,0.6);
                background: rgba(255,255,255,0.22);
            }
            .glass-field textarea { resize: none; min-height: 60px; }
            .glass-submit {
                width: 100%;
                padding: 14px;
                background: rgba(44, 110, 73, 0.88);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                color: white;
                border: 0.5px solid rgba(255, 255, 255, 0.2);
                border-radius: 14px;
                font-size: 14px;
                font-weight: 700;
                font-family: inherit;
                cursor: pointer;
                margin-top: 4px;
                box-shadow:
                    0 2px 12px rgba(44, 110, 73, 0.25),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
            }
            .glass-submit:active { background: #1e6b34; }
            .glass-phone {
                display: flex;
            flex-direction: column;
                text-align: center;
                margin-top: 16px;
                color: rgba(255,255,255,0.5);
                font-size: 14px;
                text-decoration: none;
            }
            .glass-phone span { color: rgba(255,255,255,0.4); }
            .glass-form-thank-you { display: none; text-align: center; padding: 32px 20px; }
            .glass-form-thank-you.active { display: block; }
            .glass-form-thank-you .ty-icon { font-size: 36px; margin-bottom: 12px; }
            .glass-form-thank-you p { color: rgba(255,255,255,0.8); }
            .footer { padding: 20px 16px 16px; }
            .footer-content {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 0;
            }
            /* Row 1: Brand — centered */
            .footer-brand {
                padding-bottom: 10px;
                border-bottom: none;
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            .footer-brand p { display: none; }
            .footer-brand .logo { gap: 7px; margin-bottom: 0; }
            .footer-brand .logo-img { height: 26px; }
            .footer-brand .logo-text .brand { font-size: 12.5px; }
            .footer-brand .logo-text .tagline { font-size: 9px; }
            /* Hide Services */
            .footer-col:nth-child(2) { display: none; }
            /* Row 2: Contact — centered, with separator */
            .footer-col:last-child {
                order: 1;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                gap: 14px;
                padding: 10px 0;
                width: 100%;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            /* Row 3: Nav links — centered, horizontal */
            .footer-nav {
                order: 2;
                display: flex !important;
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                align-items: center;
                gap: 2px 0;
                padding-top: 10px;
                width: 100%;
            }
            .footer-nav h4 { display: none; }
            .footer-nav-extra { display: inline !important; }
            .footer-nav a {
                display: inline;
                margin: 0;
                font-size: 9px;
                padding: 1px 0;
                line-height: 1.4;
                border-right: none;
                white-space: nowrap;
            }
            .footer-nav a:not(:last-child)::after {
                content: "·";
                margin: 0 2px;
                color: rgba(255,255,255,0.4);
                font-weight: bold;
                font-size: 11px;
            }
            .footer-col:last-child h4 { display: none; }
            .footer-contact-item { margin-bottom: 0; padding-left: 0; display: flex; align-items: center; gap: 5px; }
            .footer-col:last-child > :nth-child(2) { order: 1; }
            .footer-col:last-child > :nth-child(3) { order: 2; border-left: 1px solid rgba(255,255,255,0.15); padding-left: 14px; }
            .footer-contact-item svg { position: static; flex-shrink: 0; width: 12px; height: 12px; margin-top: 0; opacity: 0.45; }
            .footer-contact-item a,
            .footer-contact-item span { font-size: 10.5px; line-height: 1.3; }
            .footer-contact-item span br { display: block; }
            .footer-bottom {
                flex-direction: column;
                gap: 2px;
                text-align: center;
                margin-top: 10px;
            }
        }

        /* ========================================
           REVIEWS — Liquid Glass Cards
           ======================================== */
        .reviews {
            background: linear-gradient(
                135deg,
                #0d2137 0%,
                #112a44 25%,
                #0f2640 50%,
                #132d48 75%,
                #0d2137 100%
            );
            padding: 56px 48px;
            position: relative;
            overflow: hidden;
        }
        .reviews::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent2), var(--accent), var(--accent2));
        }
        .reviews-inner {
            max-width: 1100px;
            margin: 0 auto;
        }
        .reviews-header {
            text-align: center;
            margin-bottom: 48px;
        }
        .reviews-header .section-label {
            background: rgba(255,255,255,0.08);
            color: var(--accent2);
            border: 1px solid rgba(255,255,255,0.1);
        }
        .mobile-br { display: none; }
        .reviews-header h2 {
            font-size: 32px;
            font-weight: 700;
            color: #ffffff;
            margin-top: 0;
            margin-bottom: 12px;
        }
        .reviews-header p {
            color: rgba(255,255,255,0.6);
            font-size: 15px;
            margin-top: 0;
        }

        /* Slider container */
        .reviews-slider-wrap {
            position: relative;
            overflow: hidden;
            margin-bottom: 32px;
        }
        .reviews-track {
            display: flex;
            gap: 20px;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            padding: 8px 0 12px;
        }

        /* Review card — liquid glass */
        .review-card {
            flex: 0 0 calc(33.333% - 14px);
            min-width: calc(33.333% - 14px);
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 16px;
            padding: 28px 24px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow:
                0 4px 20px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            text-decoration: none;
            display: flex;
            flex-direction: column;
            cursor: pointer;
        }
        .review-card:hover {
            transform: translateY(-6px);
            box-shadow:
                0 16px 40px rgba(0, 0, 0, 0.25),
                0 0 0 1.5px rgba(45, 138, 78, 0.25);
            border-color: rgba(45, 138, 78, 0.3);
            background: rgba(255, 255, 255, 0.1);
        }
        .review-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }
        .review-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
            border: 2px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        .review-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .review-avatar-letter {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 700;
            color: #fff;
        }
        .review-author-name {
            font-size: 14px;
            font-weight: 700;
            color: #ffffff;
        }
        .review-stars {
            font-size: 12px;
            color: #f59e0b;
            letter-spacing: 2px;
            margin-top: 2px;
        }
        .review-text {
            font-size: 14px;
            color: rgba(255,255,255,0.65);
            line-height: 1.7;
            font-style: italic;
        }
        .review-date {
            margin-left: auto;
            font-size: 11px;
            color: rgba(255,255,255,0.35);
            flex-shrink: 0;
            white-space: nowrap;
        }
        .review-card-footer {
            display: flex;
            align-items: flex-end;
            margin-top: auto;
        }
        .review-source {
            font-size: 10px;
            color: rgba(255,255,255,0.25);
            margin-left: auto;
            line-height: 1;
        }

        /* Slider navigation */
        .reviews-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 16px;
            margin-bottom: 32px;
        }
        .reviews-nav-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow:
                0 2px 10px rgba(0,0,0,0.15),
                inset 0 1px 0 rgba(255,255,255,0.05);
            color: rgba(255,255,255,0.8);
        }
        .reviews-nav-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 16px rgba(45, 138, 78, 0.25);
            border-color: rgba(45, 138, 78, 0.4);
            background: rgba(255, 255, 255, 0.1);
        }
        .reviews-nav-btn:disabled {
            opacity: 0.3;
            cursor: default;
            transform: none;
        }
        .reviews-dots {
            display: flex;
            gap: 8px;
        }
        .reviews-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }
        .reviews-dot.active {
            background: var(--accent2);
            width: 24px;
            border-radius: 4px;
        }

        /* Google badge — liquid glass */
        .reviews-google-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 28px;
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 100px;
            width: fit-content;
            margin: 0 auto;
            text-decoration: none;
            color: #ffffff;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow:
                0 4px 16px rgba(0,0,0,0.15),
                inset 0 1px 0 rgba(255,255,255,0.04);
        }
        .reviews-google-badge:hover {
            transform: translateY(-3px);
            box-shadow:
                0 8px 24px rgba(45, 138, 78, 0.2);
            border-color: rgba(45, 138, 78, 0.4);
            background: rgba(255, 255, 255, 0.1);
        }
        .reviews-google-badge svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

        /* ========================================
           SERVICE AREAS — Map + Tags (Liquid Glass)
           ======================================== */
        .areas {
            padding: 56px 48px;
            background: var(--bg);
            position: relative;
        }
        /* .areas .section-label inherits base */
        .areas-inner {
            max-width: 1100px;
            margin: 0 auto;
        }
        .areas-header {
            text-align: center;
            margin-bottom: 28px;
        }
        .areas-header h2 {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary);
            margin-top: 0;
            margin-bottom: 12px;
        }
        .areas-header p {
            color: var(--text-muted);
            font-size: 15px;
            margin-top: 0;
        }
        .areas-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            align-items: stretch;
        }
        .areas-map {
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.6);
            box-shadow:
                0 4px 20px rgba(0,0,0,0.06),
                inset 0 1px 0 rgba(255,255,255,0.8);
            background: rgba(255, 253, 250, 0.85);
        }
        .areas-map iframe {
            width: 100%;
            height: 100%;
            min-height: 260px;
            border: 0;
            display: flex;
            flex-direction: column;
        }
        .areas-tags-section {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .areas-tag-group {
            padding: 14px 16px;
            background: rgba(255, 253, 250, 0.65);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.5);
            box-shadow:
                0 2px 12px rgba(0,0,0,0.03),
                inset 0 1px 0 rgba(255,255,255,0.7);
        }
        .areas-tag-label {
            font-size: 10px;
            font-weight: 700;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
            display: flex;
            flex-direction: column;
        }
        .areas-tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .areas-tag-list.expandable .area-tag.hidden {
            display: none;
        }
        .areas-tag-list.expandable.expanded .area-tag.hidden {
            display: inline-flex;
        }
        .area-tag {
            display: inline-flex;
            align-items: center;
            padding: 5px 12px;
            background: linear-gradient(
                135deg,
                rgba(255, 255, 255, 0.45) 0%,
                rgba(255, 255, 255, 0.15) 50%,
                rgba(255, 255, 255, 0.3) 100%
            );
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.55);
            border-bottom-color: rgba(0, 0, 0, 0.04);
            border-right-color: rgba(0, 0, 0, 0.03);
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow:
                0 2px 8px rgba(0,0,0,0.04),
                0 0.5px 0 rgba(255,255,255,0.7) inset,
                0 -0.5px 0 rgba(0,0,0,0.03) inset;
        }
        .area-tag:hover {
            transform: translateY(-1px);
            background: linear-gradient(
                135deg,
                rgba(255, 255, 255, 0.6) 0%,
                rgba(255, 255, 255, 0.3) 50%,
                rgba(255, 255, 255, 0.5) 100%
            );
            border-color: rgba(45, 138, 78, 0.25);
            box-shadow:
                0 4px 16px rgba(45, 138, 78, 0.08),
                0 0.5px 0 rgba(255,255,255,0.8) inset;
        }
        .areas-show-more {
            display: none;
            align-items: center;
            padding: 5px 12px;
            background: linear-gradient(
                135deg,
                rgba(255, 255, 255, 0.3) 0%,
                rgba(255, 255, 255, 0.1) 50%,
                rgba(255, 255, 255, 0.2) 100%
            );
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(45, 138, 78, 0.3);
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            color: var(--accent2);
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow:
                0 2px 8px rgba(0,0,0,0.04),
                0 0.5px 0 rgba(255,255,255,0.7) inset;
        }
        .areas-show-more:hover {
            background: linear-gradient(
                135deg,
                rgba(255, 255, 255, 0.45) 0%,
                rgba(255, 255, 255, 0.2) 50%,
                rgba(255, 255, 255, 0.35) 100%
            );
            border-color: rgba(45, 138, 78, 0.4);
            box-shadow: 0 4px 16px rgba(45,138,78,0.08), 0 0.5px 0 rgba(255,255,255,0.8) inset;
        }

        /* Reviews & Areas mobile */
        @media (max-width: 768px) {
            .reviews { padding: 32px 16px 24px; }
            .reviews-header { margin-bottom: 18px; }
            .reviews-header .section-label { margin-bottom: 16px; }
            .reviews-header h2 { font-size: 26px; margin-bottom: 8px; }
            .mobile-br { display: inline; }
            .reviews-header p { font-size: 14px; }
            .reviews-slider-wrap { margin-bottom: 16px; overflow: hidden; }
            .reviews-track { padding: 4px 0 8px; gap: 16px; align-items: stretch; }
            .review-card {
                flex: 0 0 100%;
                min-width: 100%;
                padding: 20px 18px;
                border-radius: 14px;
                box-sizing: border-box;
                display: flex;
                flex-direction: column;
            }
            .review-card-header { margin-bottom: 10px; }
            .review-text { font-size: 14px; line-height: 1.5; flex: 1; }
            .review-card-footer { margin-top: 10px; }
            .review-source { font-size: 9px; }
            .review-date { font-size: 10px; }
            .reviews-nav { margin-bottom: 16px; gap: 12px; }
            .reviews-nav-btn { width: 34px; height: 34px; }
            .reviews-google-badge { padding: 14px 24px; font-size: 14px; border-radius: 14px; }
            .areas { padding: 32px 20px; }
            .areas-header h2 { font-size: 26px; margin-bottom: 8px; }
            .areas-header p { font-size: 14px; }
            .areas-cities { display: none; }
            .areas-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .areas-map iframe { height: 260px; }
            #locations-list .area-tag:nth-child(n+6) { display: none; }
            #locations-list .areas-show-more { display: inline-flex; }
            #locations-list.show-all .area-tag { display: inline-flex !important; }
            #locations-list.show-all .areas-show-more { display: none; }
        }

        /* Reviews & Areas tablet */
        @media (max-width: 1024px) and (min-width: 769px) {
            .review-card {
                flex: 0 0 calc(50% - 10px);
                min-width: calc(50% - 10px);
            }
        }

        /* ========================================
           ABOUT + GALLERY: Asymmetric Split
           60/40 layout (original from index.html)
           ======================================== */
        #gallery { scroll-margin-top: 80px; }
        .split-section {
            display: grid;
            grid-template-columns: 60% 40%;
            min-height: 100vh;
            background: var(--primary);
        }
        .split-gallery { position: relative; background: var(--primary); }
        .split-gallery-inner { display: flex; flex-direction: column; }
        .split-photo {
            height: 39vh; min-height: 280px;
            background-size: cover; background-position: center;
            position: relative;
        }
        .split-photo img {
            width: 100%; height: 100%; object-fit: cover;
            filter: contrast(1.08) saturate(0.82) brightness(0.93);
        }
        .split-photo-label {
            position: absolute; bottom: 16px; left: 16px;
            background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
            padding: 8px 16px; border-radius: 6px;
            font-size: 12px; color: rgba(255,255,255,0.8);
        }
        .split-photo-more {
            position: absolute; top: 0; left: 0; right: 0; bottom: 0;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            background: rgba(13, 33, 55, 0.7); backdrop-filter: blur(2px);
            cursor: pointer; transition: background 0.3s;
            text-decoration: none; z-index: 2;
        }
        .split-photo-more:hover { background: rgba(13, 33, 55, 0.55); }
        .split-photo-more svg { width: 40px; height: 40px; color: white; margin-bottom: 10px; opacity: 0.9; }
        .split-photo-more span {
            font-size: 15px; font-weight: 600; color: white; letter-spacing: 0.5px;
        }
        .split-photo-more small {
            font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 4px;
        }
        .split-gallery-cta {
            display: flex; gap: 16px; justify-content: center;
            padding: 24px; background: var(--primary);
        }
        .split-content {
            background: var(--primary); padding: 56px 40px 24px;
            display: flex; flex-direction: column; justify-content: center;
            position: sticky; top: 48px; height: calc(100vh - 48px); overflow-y: auto;
        }
        .split-kicker {
            display: inline-block;
            font-size: 12px; font-weight: 600; letter-spacing: 2px;
            color: var(--accent2); margin-bottom: 16px; text-transform: uppercase;
            background: rgba(255,255,255,0.08);
            padding: 6px 14px;
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.1);
            width: fit-content;
        }
        .split-title {
            font-size: 32px; font-weight: 700;
            margin-top: 0; margin-bottom: 12px;
            background: linear-gradient(135deg, #ffffff 0%, #b8dcc8 50%, #d4a5a9 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .split-desc { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.7; margin-top: 0; margin-bottom: 24px; }
        .split-facts {
            display: grid; grid-template-columns: repeat(3, 1fr);
            gap: 12px; margin-bottom: 24px; padding: 16px;
            background: rgba(255,255,255,0.05); border-radius: 10px;
        }
        .split-fact { text-align: center; }
        .split-fact-num { font-size: 24px; font-weight: 700; color: var(--accent2); line-height: 1; }
        .split-fact-label { font-size: 10px; color: rgba(255,255,255,0.45); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }
        .split-benefits-title { font-size: 10px; letter-spacing: 2px; color: rgba(255,255,255,0.35); margin-bottom: 12px; text-transform: uppercase; }
        .split-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
        .split-benefit {
            background: rgba(255,255,255,0.05); padding: 10px 12px; border-radius: 8px;
            font-size: 12px; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 8px;
        }
        .split-benefit::before { content: "\2713"; color: var(--accent2); font-weight: 700; font-size: 11px; }
        .split-languages {
            margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 13px; color: rgba(255,255,255,0.45); text-align: center;
        }

        @media (max-width: 768px) {
            /* Who We Are mobile */
            .split-section {
                grid-template-columns: 1fr;
                display: flex;
                flex-direction: column;
                background: var(--primary);
            }
            .split-content {
                order: -1;
                position: static;
                height: auto;
                padding: 32px 20px 24px;
                align-items: center;
                text-align: center;
            }
            .split-gallery { order: 1; overflow: hidden; background: var(--primary); }
            .split-gallery-inner {
                display: flex;
                flex-direction: row;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                gap: 10px;
                padding: 0 20px 16px;
                scrollbar-width: none;
            }
            .split-gallery-inner::-webkit-scrollbar { display: none; }
            .split-photo {
                flex: 0 0 80%;
                height: 52vw;
                min-height: 190px;
                scroll-snap-align: center;
                border-radius: 16px;
                overflow: hidden;
                border: none;
                background: var(--primary);
                box-shadow:
                    0 8px 32px rgba(0,0,0,0.4),
                    0 2px 8px rgba(0,0,0,0.2);
            }
            .split-photo::after { display: none; }
            .split-photo img { border-radius: 0; }
            .split-photo-label {
                font-size: 11px;
                bottom: 10px; left: 12px;
                padding: 4px 10px;
                border-radius: 8px;
                backdrop-filter: blur(12px);
                -webkit-backdrop-filter: blur(12px);
                background: rgba(0,0,0,0.3);
                z-index: 3;
            }
            .split-photo-more { border-radius: 16px; }
            .split-gallery-cta {
                padding: 12px 20px 24px;
                background: transparent;
                position: static;
            }
            .split-gallery-cta .btn-primary { display: none; }
            .split-gallery-cta .btn-outline {
                width: 100%;
                text-align: center;
                padding: 14px 32px;
                font-size: 14px;
                border-radius: 14px;
            }
            .split-title { font-size: 26px; margin-bottom: 8px; }
            .split-desc { font-size: 14px; }
            .split-facts { padding: 12px; gap: 8px; }
            .split-fact-num { font-size: 20px; }
            .split-fact-label { font-size: 9px; }
            .split-benefits { grid-template-columns: 1fr 1fr; gap: 6px; }
            .split-benefit { font-size: 11px; padding: 8px 10px; gap: 6px; }
            .split-benefit::before { font-size: 10px; }
            .split-languages { margin-top: 12px; padding-top: 10px; }
        }

        /* Tablet adjustments */
        @media (max-width: 1024px) and (min-width: 769px) {
            .hero h1 { font-size: 46px; }
            .models-grid { grid-template-columns: repeat(2, 1fr); }
        }

        /* ========================================
           SEGMENT POPUPS & FORM POPUP
           Premium Dark-Split Liquid Glass
           ======================================== */

        /* Overlay — atmospheric depth */
        .popup-overlay {
            position: fixed;
            inset: 0;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            background: radial-gradient(ellipse at 50% 30%, rgba(13,33,55,0.5) 0%, rgba(13,33,55,0.72) 50%, rgba(0,0,0,0.78) 100%);
            backdrop-filter: blur(10px) saturate(1.2);
            -webkit-backdrop-filter: blur(10px) saturate(1.2);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease;
            padding: 24px;
        }
        .popup-overlay.active { opacity: 1; visibility: visible; }

        /* Popup shell */
        .popup-content {
            background: #fff;
            border-radius: 24px;
            max-width: 880px;
            width: 100%;
            max-height: 90vh;
            overflow: hidden;
            box-shadow: 0 48px 120px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.06);
            transform: scale(0.88) translateY(40px);
            opacity: 0;
            transition: all 0.55s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
        }
        .popup-overlay.active .popup-content {
            transform: scale(1) translateY(0);
            opacity: 1;
        }
        .popup-content-small { max-width: 460px; }

        /* Close — frosted glass circle */
        .popup-close {
            position: absolute;
            top: 16px;
            right: 16px;
            z-index: 10;
            width: 40px;
            height: 40px;
            border: 1px solid rgba(255,255,255,0.18);
            border-radius: 50%;
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            color: white;
            font-size: 22px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
            line-height: 1;
        }
        .popup-close:hover {
            background: rgba(255,255,255,0.22);
            transform: rotate(90deg) scale(1.1);
            border-color: rgba(255,255,255,0.3);
        }

        /* ---- TWO-COLUMN LAYOUT ---- */
        .popup-segment {
            display: grid;
            grid-template-columns: 320px 1fr;
            min-height: 500px;
        }

        /* LEFT — Dark immersive panel */
        .popup-segment-left {
            background: linear-gradient(165deg, var(--primary) 0%, var(--primary-light) 65%, rgba(45,138,78,0.35) 160%);
            padding: 44px 32px 36px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            position: relative;
            overflow: hidden;
            border-radius: 24px 0 0 24px;
        }
        /* Accent line top */
        .popup-segment-left::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent2), transparent);
            border-radius: 24px 0 0 0;
        }
        /* Corner glow */
        .popup-segment-left::after {
            content: '';
            position: absolute;
            bottom: -100px; right: -100px;
            width: 260px; height: 260px;
            background: radial-gradient(circle, rgba(45,138,78,0.18) 0%, transparent 70%);
            pointer-events: none;
        }

        /* Segment-specific left themes */
        #popup-live .popup-segment-left {
            background: linear-gradient(165deg, var(--primary) 0%, var(--primary-light) 60%, rgba(70,129,153,0.35) 160%);
        }
        #popup-live .popup-segment-left::before { background: linear-gradient(90deg, var(--path-live), transparent); }
        #popup-live .popup-segment-left::after { background: radial-gradient(circle, rgba(70,129,153,0.2) 0%, transparent 70%); }

        #popup-sell .popup-segment-left {
            background: linear-gradient(165deg, var(--primary) 0%, var(--primary-light) 60%, rgba(155,99,116,0.35) 160%);
        }
        #popup-sell .popup-segment-left::before { background: linear-gradient(90deg, var(--path-sell), transparent); }
        #popup-sell .popup-segment-left::after { background: radial-gradient(circle, rgba(155,99,116,0.2) 0%, transparent 70%); }

        /* Stat hero in left column */
        .popup-stat { padding-top: 4px; }
        .popup-stat-number {
            font-size: 64px;
            font-weight: 800;
            line-height: 1;
            letter-spacing: -3px;
            background: linear-gradient(135deg, #fff 40%, rgba(45,138,78,0.6));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        #popup-live .popup-stat-number {
            background: linear-gradient(135deg, #fff 40%, rgba(70,129,153,0.7));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }
        #popup-sell .popup-stat-number {
            background: linear-gradient(135deg, #fff 40%, rgba(155,99,116,0.7));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }
        .popup-stat-label {
            font-size: 13px;
            font-weight: 600;
            color: rgba(255,255,255,0.5);
            margin-top: 6px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Trust list — frosted glass on dark */
        .popup-trust-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: auto;
        }
        .popup-trust-list li {
            font-size: 13px;
            font-weight: 600;
            color: rgba(255,255,255,0.92);
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            background: rgba(255,255,255,0.07);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s ease;
        }
        .popup-trust-list li:hover {
            background: rgba(255,255,255,0.13);
            border-color: rgba(255,255,255,0.2);
            transform: translateX(4px);
        }
        .popup-trust-list li .trust-icon {
            font-size: 18px;
            flex-shrink: 0;
            width: 24px;
            text-align: center;
        }

        /* Math block on dark (Rent) */
        .popup-math-block {
            background: rgba(255,255,255,0.06);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 16px;
            padding: 24px;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .popup-math-block .math-label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: rgba(255,255,255,0.45);
            font-weight: 600;
            margin-bottom: 12px;
        }
        .popup-math-block .math-row {
            display: flex;
            justify-content: space-between;
            padding: 6px 0;
            color: rgba(255,255,255,0.65);
            font-size: 13px;
        }
        .popup-math-block .math-row.total {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 8px;
            padding-top: 10px;
            color: white;
            font-weight: 700;
        }
        .popup-math-block .math-row.highlight {
            color: var(--accent2-light);
            font-weight: 700;
            font-size: 15px;
        }

        /* Locations on dark (Sell) */
        .popup-locations {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .popup-locations li {
            font-size: 13px;
            font-weight: 500;
            color: rgba(255,255,255,0.88);
            padding: 10px 14px;
            background: rgba(255,255,255,0.06);
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.08);
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }
        .popup-locations li:hover {
            background: rgba(255,255,255,0.11);
            transform: translateX(4px);
        }
        .popup-locations li .loc-icon { font-size: 16px; flex-shrink: 0; }

        /* ---- RIGHT COLUMN ---- */
        .popup-segment-right {
            padding: 44px 40px 36px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            overflow-y: auto;
            max-height: 90vh;
        }
        .popup-segment-right .popup-label {
            display: inline-block;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 700;
            color: var(--accent2);
            background: var(--accent2-light);
            padding: 5px 14px;
            border-radius: 20px;
            width: fit-content;
        }
        #popup-live .popup-segment-right .popup-label {
            color: var(--path-live-dark);
            background: rgba(70,129,153,0.1);
        }
        #popup-sell .popup-segment-right .popup-label {
            color: var(--path-sell-dark);
            background: rgba(155,99,116,0.1);
        }
        .popup-segment-right h2 {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.2;
            letter-spacing: -0.5px;
            margin-top: -8px;
        }
        .popup-segment-right .popup-subtitle {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-top: -12px;
        }

        /* Feature block with accent border */
        .popup-feature {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 20px;
            background: linear-gradient(165deg, rgba(255,255,255,0.6) 0%, rgba(45,138,78,0.04) 100%);
            border-radius: 16px;
            border: 1px solid rgba(45,138,78,0.08);
            position: relative;
            overflow: hidden;
        }
        .popup-feature::before {
            content: '';
            position: absolute;
            left: 0; top: 0; bottom: 0;
            width: 3px;
            background: var(--accent2);
            border-radius: 3px;
        }
        #popup-live .popup-feature::before { background: var(--path-live); }
        #popup-live .popup-feature { border-color: rgba(70,129,153,0.1); background: linear-gradient(165deg, rgba(255,255,255,0.6) 0%, rgba(70,129,153,0.04) 100%); }
        .popup-feature-icon { font-size: 28px; flex-shrink: 0; }
        .popup-feature h4 { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
        .popup-feature p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

        /* Value grid — glass cards */
        .popup-value-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }
        .popup-value-item {
            padding: 18px 16px;
            background: linear-gradient(165deg, #fafbfc, #f5f7f9);
            border-radius: 14px;
            text-align: center;
            border: 1px solid rgba(0,0,0,0.04);
            transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
        }
        .popup-value-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.06);
            border-color: rgba(45,138,78,0.12);
        }
        .popup-value-item .val-icon { font-size: 26px; margin-bottom: 8px; display: block; }
        .popup-value-item .val-label { font-size: 12px; font-weight: 700; color: var(--primary); letter-spacing: 0.2px; }

        /* Warranty banner */
        .popup-warranty {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px 20px;
            background: linear-gradient(135deg, rgba(45,138,78,0.06), rgba(45,138,78,0.12));
            border-radius: 14px;
            border: 1px solid rgba(45,138,78,0.12);
        }
        .popup-warranty-icon { font-size: 26px; flex-shrink: 0; }
        .popup-warranty span { font-size: 14px; font-weight: 700; color: var(--accent2-dark); }

        /* ROI cards (Rent) */
        .popup-roi-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }
        .popup-roi-card {
            padding: 22px 14px;
            border-radius: 16px;
            text-align: center;
            background: linear-gradient(165deg, #fafbfc, #f5f7f9);
            border: 1px solid rgba(0,0,0,0.05);
            transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
        }
        .popup-roi-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.08);
        }
        .popup-roi-card.highlight {
            background: linear-gradient(165deg, rgba(45,138,78,0.08), rgba(45,138,78,0.16));
            border-color: rgba(45,138,78,0.2);
            box-shadow: 0 6px 24px rgba(45,138,78,0.12);
        }
        .popup-roi-card.highlight:hover {
            box-shadow: 0 12px 40px rgba(45,138,78,0.22);
        }
        .popup-roi-card .roi-value {
            font-size: 30px;
            font-weight: 800;
            color: var(--accent2);
            line-height: 1;
            letter-spacing: -1px;
        }
        .popup-roi-card .roi-label {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 6px;
            font-weight: 500;
            line-height: 1.3;
        }

        /* Comparison block */
        .popup-comparison {
            padding: 18px 20px;
            background: linear-gradient(165deg, rgba(13,33,55,0.03), rgba(13,33,55,0.06));
            border-radius: 14px;
            display: flex;
            align-items: center;
            gap: 14px;
            border: 1px solid rgba(13,33,55,0.05);
        }
        .popup-comparison .cmp-icon { font-size: 22px; flex-shrink: 0; }
        .popup-comparison p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
        .popup-comparison strong { color: var(--primary); }

        /* Flip calc (Sell) */
        .popup-flip-calc { display: flex; flex-direction: column; gap: 6px; }
        .popup-flip-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 13px 18px;
            border-radius: 12px;
            font-size: 14px;
            transition: transform 0.25s ease;
        }
        .popup-flip-row:hover { transform: translateX(3px); }
        .popup-flip-row.cost {
            background: #f8f9fa;
            color: var(--text-muted);
            border: 1px solid rgba(0,0,0,0.04);
        }
        .popup-flip-row.sale {
            background: #f8f9fa;
            color: var(--primary);
            font-weight: 600;
            border: 1px solid rgba(0,0,0,0.04);
        }
        .popup-flip-row.profit {
            background: linear-gradient(165deg, rgba(45,138,78,0.08), rgba(45,138,78,0.15));
            color: var(--accent2);
            font-weight: 800;
            font-size: 16px;
            border: 1px solid rgba(45,138,78,0.18);
            box-shadow: 0 4px 16px rgba(45,138,78,0.08);
        }
        .popup-flip-row .flip-label { flex: 1; }
        .popup-flip-row .flip-value { font-weight: 700; }

        /* CTA button — liquid glass */
        .popup-cta-btn {
            display: flex;
            flex-direction: column;
            width: 100%;
            text-align: center;
            padding: 18px 28px;
            background: linear-gradient(165deg, rgba(45,138,78,0.9) 0%, rgba(45,138,78,0.95) 50%, rgba(36,122,66,1) 100%);
            backdrop-filter: blur(12px);
            color: white;
            border-radius: 16px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            border: 1px solid rgba(255,255,255,0.25);
            border-bottom-color: rgba(0,0,0,0.12);
            border-right-color: rgba(0,0,0,0.08);
            box-shadow: 0 8px 32px rgba(45,138,78,0.35), 0 0 48px rgba(45,138,78,0.15), inset 0 1px 0 rgba(255,255,255,0.35), inset 0 -1px 0 rgba(0,0,0,0.08);
            cursor: pointer;
            transition: all 0.45s cubic-bezier(0.16,1,0.3,1);
            position: relative;
            overflow: hidden;
            margin-top: auto;
        }
        .popup-cta-btn::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
            transition: left 0.6s ease;
        }
        .popup-cta-btn:hover::before { left: 100%; }
        .popup-cta-btn:hover {
            transform: translateY(-3px) scale(1.01);
            box-shadow: 0 16px 48px rgba(45,138,78,0.45), 0 0 64px rgba(45,138,78,0.2), inset 0 1px 0 rgba(255,255,255,0.45), inset 0 -1px 0 rgba(0,0,0,0.08);
        }
        /* Segment CTA colors */
        .popup-cta-btn.cta-live {
            background: linear-gradient(165deg, rgba(70,129,153,0.9) 0%, rgba(70,129,153,0.95) 50%, rgba(53,109,131,1) 100%);
            box-shadow: 0 8px 32px rgba(70,129,153,0.35), 0 0 48px rgba(70,129,153,0.15), inset 0 1px 0 rgba(255,255,255,0.35), inset 0 -1px 0 rgba(0,0,0,0.08);
        }
        .popup-cta-btn.cta-live:hover {
            box-shadow: 0 16px 48px rgba(70,129,153,0.45), 0 0 64px rgba(70,129,153,0.2), inset 0 1px 0 rgba(255,255,255,0.45), inset 0 -1px 0 rgba(0,0,0,0.08);
        }
        .popup-cta-btn.cta-sell {
            background: linear-gradient(165deg, rgba(155,99,116,0.9) 0%, rgba(155,99,116,0.95) 50%, rgba(131,80,97,1) 100%);
            box-shadow: 0 8px 32px rgba(155,99,116,0.35), 0 0 48px rgba(155,99,116,0.15), inset 0 1px 0 rgba(255,255,255,0.35), inset 0 -1px 0 rgba(0,0,0,0.08);
        }
        .popup-cta-btn.cta-sell:hover {
            box-shadow: 0 16px 48px rgba(155,99,116,0.45), 0 0 64px rgba(155,99,116,0.2), inset 0 1px 0 rgba(255,255,255,0.45), inset 0 -1px 0 rgba(0,0,0,0.08);
        }

        /* Phone note under CTA */
        .popup-phone-note {
            text-align: center;
            font-size: 13px;
            color: var(--text-muted);
            margin-top: -8px;
        }
        .popup-phone-note a { color: var(--accent2); font-weight: 700; text-decoration: none; }
        .popup-phone-note small { display: block; font-size: 11px; color: #999; margin-top: 2px; }

        /* ========================================
           NEW POPUP v3 — Horizontal Photo Split
           Compact sizes from path cards
           ======================================== */
        .popup-shell {
            border-radius: 16px;
            max-width: 840px;
            width: 100%;
            max-height: 88vh;
            overflow: hidden;
            box-shadow: 0 48px 120px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.06);
            transform: scale(0.88) translateY(40px);
            opacity: 0;
            transition: all 0.55s cubic-bezier(0.16, 1, 0.3, 1);
            display: grid;
            grid-template-columns: 300px 1fr;
            position: relative;
        }
        .popup-overlay.active .popup-shell {
            transform: scale(1) translateY(0);
            opacity: 1;
        }
        .popup-shell .popup-close {
            top: 10px; right: 10px;
            width: 32px; height: 32px;
            font-size: 18px;
            background: rgba(0,0,0,0.25);
            border-color: rgba(255,255,255,0.15);
        }

        /* Left panel — photo + overlay */
        .popup-shell .popup-left {
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }
        .popup-left-bg { position: absolute; inset: 0; }
        .popup-left-bg img { width: 100%; height: 100%; object-fit: cover; }
        .popup-left-bg::after {
            content: '';
            position: absolute; inset: 0;
            background: linear-gradient(180deg,
                rgba(13,33,55,0) 0%, rgba(13,33,55,0.05) 40%,
                rgba(13,33,55,0.55) 65%, rgba(13,33,55,0.92) 100%);
        }
        .popup-left::before {
            content: '';
            position: absolute; top: 0; left: 0; right: 0;
            height: 3px; z-index: 3;
        }
        #popup-sell .popup-left::before { background: linear-gradient(90deg, var(--path-sell), transparent); }
        #popup-live .popup-left::before { background: linear-gradient(90deg, var(--path-live), transparent); }
        #popup-rent .popup-left::before { background: linear-gradient(90deg, var(--path-rent), transparent); }

        .popup-left-content {
            position: relative; z-index: 2;
            padding: 20px 20px 18px;
            display: flex; flex-direction: column;
            gap: 10px;
        }
        .pl-stat-value {
            font-size: 36px; font-weight: 800;
            color: white; letter-spacing: -1.5px; line-height: 1;
            text-shadow: 0 3px 16px rgba(0,0,0,0.3);
        }
        .pl-stat-label {
            font-size: 10px; color: rgba(255,255,255,0.45);
            text-transform: uppercase; letter-spacing: 1.5px;
            font-weight: 600; margin-top: 1px;
        }

        /* Locations inline text */
        .pl-locations {
            font-size: 10px; color: rgba(255,255,255,0.55); line-height: 1.6;
        }
        .pl-locations strong {
            display: flex;
            flex-direction: column; font-size: 9px; text-transform: uppercase;
            letter-spacing: 1.2px; color: rgba(255,255,255,0.35);
            margin-bottom: 3px; font-weight: 600;
        }
        .pl-locations span { color: rgba(255,255,255,0.7); }
        .pl-locations .sep { color: rgba(155,99,116,0.5); margin: 0 2px; }

        /* Right panel — dark compact */
        .popup-shell .popup-right {
            background: var(--primary);
            color: rgba(255,255,255,0.7);
            padding: 20px 24px 18px;
            display: flex; flex-direction: column;
            gap: 10px; overflow-y: auto;
            position: relative;
        }
        .pr-audience {
            display: inline-flex; align-items: center; gap: 5px;
            padding: 3px 8px; border-radius: 14px; width: fit-content;
            font-size: 9px; font-weight: 700;
            text-transform: uppercase; letter-spacing: 1px;
        }
        .pr-audience svg { width: 11px; height: 11px; }
        #popup-sell .pr-audience { background: rgba(155,99,116,0.15); border: 1px solid rgba(155,99,116,0.25); color: #e8b4bf; }
        #popup-live .pr-audience { background: rgba(70,129,153,0.15); border: 1px solid rgba(70,129,153,0.25); color: #a8d4e6; }
        #popup-rent .pr-audience { background: rgba(45,138,78,0.15); border: 1px solid rgba(45,138,78,0.25); color: #a8e6bf; }

        .popup-right h2 {
            font-size: 18px; font-weight: 800;
            color: white; line-height: 1.2;
            letter-spacing: -0.3px; margin-top: -2px;
        }
        .popup-right .pr-subtitle {
            font-size: 12px; color: rgba(255,255,255,0.5);
            line-height: 1.5; margin-top: -4px;
        }
        .pr-label {
            font-size: 9px; text-transform: uppercase;
            letter-spacing: 1.5px; font-weight: 700;
            margin-bottom: -4px; display: block;
        }
        #popup-sell .pr-label { color: var(--path-sell); }
        #popup-live .pr-label { color: var(--path-live); }
        #popup-rent .pr-label { color: var(--path-rent); }

        /* Flip calc rows */
        .pr-flip { display: flex; flex-direction: column; gap: 3px; }
        .pr-fr {
            display: flex; justify-content: space-between;
            padding: 7px 12px; border-radius: 6px; font-size: 12px;
            transition: transform 0.2s ease;
        }
        .pr-fr:hover { transform: translateX(2px); }
        .pr-fr.cost { background: rgba(255,255,255,0.03); color: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.04); }
        .pr-fr.sale { background: rgba(255,255,255,0.05); color: white; font-weight: 600; border: 1px solid rgba(255,255,255,0.06); }
        .pr-fr.profit { background: rgba(45,138,78,0.12); color: #6fd98e; font-weight: 800; font-size: 13px; border: 1px solid rgba(45,138,78,0.2); }
        .pr-fr .fl { flex: 1; }
        .pr-fr .fv { font-weight: 700; }

        /* Comparison block */
        .pr-cmp {
            display: flex; align-items: center; gap: 8px;
            padding: 8px 12px; background: rgba(255,255,255,0.03);
            border-radius: 6px; border: 1px solid rgba(255,255,255,0.04);
        }
        .pr-cmp .ci { flex-shrink: 0; width: 16px; height: 16px; }
        .pr-cmp .ci svg { width: 100%; height: 100%; }
        #popup-sell .pr-cmp .ci { color: var(--path-sell); }
        #popup-live .pr-cmp .ci { color: var(--path-live); }
        #popup-rent .pr-cmp .ci { color: var(--path-rent); }
        .pr-cmp p { font-size: 11px; color: rgba(255,255,255,0.45); line-height: 1.4; }
        .pr-cmp strong { color: white; }

        /* CTA button */
        .pr-cta {
            display: flex;
            flex-direction: column; width: 100%; text-align: center;
            padding: 12px 20px; border-radius: 10px;
            font-weight: 700; font-size: 13px;
            border: 1px solid rgba(255,255,255,0.2);
            cursor: pointer; color: white;
            transition: all 0.35s ease;
            position: relative; overflow: hidden;
            margin-top: auto;
        }
        .pr-cta::before {
            content: ''; position: absolute; top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
            transition: left 0.5s ease;
        }
        .pr-cta:hover::before { left: 100%; }
        #popup-sell .pr-cta { background: linear-gradient(165deg, var(--path-sell), var(--path-sell-dark)); box-shadow: 0 6px 20px rgba(155,99,116,0.35); }
        #popup-sell .pr-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(155,99,116,0.5); }
        #popup-live .pr-cta { background: linear-gradient(165deg, var(--path-live), var(--path-live-dark)); box-shadow: 0 6px 20px rgba(70,129,153,0.35); }
        #popup-live .pr-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(70,129,153,0.5); }
        #popup-rent .pr-cta { background: linear-gradient(165deg, var(--path-rent), var(--path-rent-dark)); box-shadow: 0 6px 20px rgba(45,138,78,0.35); }
        #popup-rent .pr-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(45,138,78,0.5); }

        /* Phone note */
        .pr-phone {
            text-align: center; font-size: 11px;
            color: rgba(255,255,255,0.35); margin-top: -2px;
        }
        .pr-phone a { font-weight: 700; text-decoration: none; }
        #popup-sell .pr-phone a { color: #e8b4bf; }
        #popup-live .pr-phone a { color: #a8d4e6; }
        #popup-rent .pr-phone a { color: #a8e6bf; }
        .pr-phone small { display: block; font-size: 9px; color: rgba(255,255,255,0.25); margin-top: 1px; }

        /* Math block on photo (Rent left) */
        .pl-math {
            background: rgba(0,0,0,0.25);
            backdrop-filter: blur(6px);
            border-radius: 8px;
            padding: 12px 14px;
            border: 1px solid rgba(255,255,255,0.06);
        }
        .pl-math .ml { font-size: 9px; text-transform: uppercase; letter-spacing: 1.2px; color: rgba(255,255,255,0.35); font-weight: 600; margin-bottom: 6px; }
        .pl-math .mr { display: flex; justify-content: space-between; padding: 3px 0; color: rgba(255,255,255,0.55); font-size: 11px; }
        .pl-math .mr.total { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 3px; padding-top: 6px; color: white; font-weight: 700; font-size: 12px; }
        .pl-math .mr.hl { color: #6fd98e; font-weight: 700; }

        /* ROI cards (Rent right) */
        .pr-roi-cards {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
        }
        .pr-roi {
            padding: 8px 6px; border-radius: 7px; text-align: center;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.05);
            transition: all 0.3s ease;
        }
        .pr-roi:hover { transform: translateY(-2px); background: rgba(255,255,255,0.06); }
        .pr-roi.hl {
            background: rgba(45,138,78,0.12);
            border-color: rgba(45,138,78,0.25);
        }
        .pr-roi .rv { font-size: 16px; font-weight: 800; color: var(--path-rent); line-height: 1; letter-spacing: -0.3px; }
        .pr-roi.hl .rv { color: #6fd98e; }
        .pr-roi .rl { font-size: 9px; color: rgba(255,255,255,0.4); margin-top: 2px; font-weight: 500; }

        /* Trust list on photo (Live left) */
        .pl-trust-list {
            list-style: none;
            display: flex; flex-direction: column; gap: 4px;
        }
        .pl-trust-list li {
            font-size: 11px; font-weight: 600;
            color: rgba(255,255,255,0.85);
            display: flex; align-items: center; gap: 7px;
            padding: 7px 10px;
            background: rgba(255,255,255,0.07);
            backdrop-filter: blur(6px);
            border-radius: 6px;
            border: 1px solid rgba(255,255,255,0.08);
        }
        .pl-trust-list li .icon { font-size: 13px; flex-shrink: 0; }

        /* Feature block (Live right) */
        .pr-feature {
            display: flex; align-items: flex-start; gap: 10px;
            padding: 10px 12px;
            background: rgba(255,255,255,0.03);
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.05);
            position: relative; overflow: hidden;
        }
        .pr-feature::before {
            content: ''; position: absolute; left: 0; top: 0; bottom: 0;
            width: 2px; border-radius: 2px;
        }
        #popup-live .pr-feature::before { background: var(--path-live); }
        .pr-feature .fi { font-size: 18px; flex-shrink: 0; }
        .pr-feature h4 { font-size: 12px; font-weight: 700; color: white; margin-bottom: 1px; }
        .pr-feature p { font-size: 11px; color: rgba(255,255,255,0.45); line-height: 1.4; }

        /* Value grid 2x2 (Live right) */
        .pr-values { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
        .pr-val {
            padding: 8px 8px; background: rgba(255,255,255,0.03);
            border-radius: 6px; text-align: center;
            border: 1px solid rgba(255,255,255,0.04);
        }
        .pr-val .vi { font-size: 16px; margin-bottom: 2px; display: block; }
        .pr-val .vl { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.8); }

        /* Warranty (Live right) */
        .pr-warranty {
            display: flex; align-items: center; gap: 8px;
            padding: 8px 12px; border-radius: 6px;
        }
        #popup-live .pr-warranty { background: rgba(70,129,153,0.1); border: 1px solid rgba(70,129,153,0.15); }
        .pr-warranty .wi { font-size: 16px; flex-shrink: 0; }
        .pr-warranty span { font-size: 11px; font-weight: 700; }
        #popup-live .pr-warranty span { color: #a8d4e6; }

        /* Responsive — new popup */
        @media (max-width: 768px) {
            .popup-overlay { padding: 12px; }
            .popup-shell {
                grid-template-columns: 1fr;
                max-height: 92vh;
                border-radius: 14px;
            }
            .popup-shell .popup-close {
                top: 8px; right: 8px;
                width: 28px; height: 28px;
                font-size: 16px;
                z-index: 10;
            }
            /* Image panel — compact strip */
            .popup-shell .popup-left {
                min-height: 120px;
                max-height: 130px;
            }
            .popup-left-content {
                padding: 12px 14px;
                flex-direction: row;
                align-items: flex-end;
                gap: 8px;
            }
            .pl-stat-value {
                font-size: 26px;
                letter-spacing: -1px;
            }
            .pl-stat-label {
                font-size: 9px;
                letter-spacing: 1px;
            }
            /* Hide trust list & math on mobile — info is in right panel */
            .pl-trust-list { display: none; }
            .pl-math { display: none; }
            .pl-locations { display: none; }
            /* Right panel */
            .popup-shell .popup-right {
                padding: 14px 16px 16px;
                gap: 8px;
            }
            .popup-right h2 { font-size: 17px; }
            .popup-right .pr-subtitle { font-size: 11px; }
            .pr-feature { padding: 8px 10px; }
            .pr-feature h4 { font-size: 12px; }
            .pr-feature p { font-size: 11px; }
            .pr-values { gap: 6px; }
            .pr-val { padding: 8px 6px; }
            .pr-val .vl { font-size: 10px; }
            .pr-cta { padding: 11px 16px; font-size: 13px; }
            .pr-phone { font-size: 10px; }
        }

        /* ========================================
           FORM POPUP — Premium
           ======================================== */
        .popup-content-small .popup-close {
            background: rgba(13,33,55,0.07);
            color: var(--primary);
            border-color: rgba(0,0,0,0.06);
        }
        .popup-content-small .popup-close:hover {
            background: rgba(13,33,55,0.14);
            color: var(--primary);
        }
        .form-accent-stripe {
            height: 4px;
            background: linear-gradient(90deg, var(--accent2), var(--accent2-light), transparent);
            border-radius: 24px 24px 0 0;
        }
        .form-accent-stripe.stripe-live { background: linear-gradient(90deg, var(--path-live), rgba(70,129,153,0.3), transparent); }
        .form-accent-stripe.stripe-sell { background: linear-gradient(90deg, var(--path-sell), rgba(155,99,116,0.3), transparent); }

        .form-popup-header {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 32px 32px 0;
        }
        .form-popup-icon { font-size: 42px; line-height: 1; }
        .form-popup-header h3 {
            font-size: 22px;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.25;
            letter-spacing: -0.3px;
        }
        .form-popup-body { padding: 24px 32px 32px; }
        .form-popup-body .form-group { margin-bottom: 16px; }
        .form-popup-body label {
            display: flex;
            flex-direction: column;
            font-size: 12px;
            font-weight: 700;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 6px;
        }
        .form-popup-body input,
        .form-popup-body textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1.5px solid rgba(0,0,0,0.06);
            border-radius: 14px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 15px;
            color: var(--primary);
            background: #fafbfc;
            transition: all 0.3s ease;
            outline: none;
        }
        .form-popup-body input:focus,
        .form-popup-body textarea:focus {
            border-color: var(--accent2);
            box-shadow: 0 0 0 4px rgba(45,138,78,0.08);
            background: #fff;
        }
        .form-popup-body textarea { resize: vertical; min-height: 80px; }
        .form-popup-body .form-submit-btn {
            display: flex;
            flex-direction: column;
            width: 100%;
            text-align: center;
            padding: 16px 24px;
            background: linear-gradient(165deg, rgba(45,138,78,0.9) 0%, rgba(45,138,78,0.95) 50%, rgba(36,122,66,1) 100%);
            color: white;
            border: 1px solid rgba(255,255,255,0.25);
            border-bottom-color: rgba(0,0,0,0.12);
            border-right-color: rgba(0,0,0,0.08);
            border-radius: 14px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
            box-shadow: 0 6px 24px rgba(45,138,78,0.35), 0 0 32px rgba(45,138,78,0.15), inset 0 1px 0 rgba(255,255,255,0.3), inset 0 -1px 0 rgba(0,0,0,0.08);
            position: relative;
            overflow: hidden;
            margin-top: 4px;
        }
        .form-popup-body .form-submit-btn::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s ease;
        }
        .form-popup-body .form-submit-btn:hover::before { left: 100%; }
        .form-popup-body .form-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 36px rgba(45,138,78,0.45), 0 0 48px rgba(45,138,78,0.2), inset 0 1px 0 rgba(255,255,255,0.4), inset 0 -1px 0 rgba(0,0,0,0.08);
        }
        .form-phone-note { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 18px; }
        .form-phone-note a { color: var(--accent2); font-weight: 700; text-decoration: none; }

        /* Thank you */
        .form-thank-you { display: none; text-align: center; padding: 52px 32px; }
        .form-thank-you.active { display: block; }
        .form-thank-you .ty-icon { font-size: 56px; margin-bottom: 16px; }
        .form-thank-you h3 { font-size: 24px; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
        .form-thank-you p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

        /* ========================================
           POPUP RESPONSIVE
           ======================================== */
        @media (max-width: 768px) {
            .popup-overlay { padding: 0; align-items: flex-end; }
            .popup-content {
                max-width: 100%;
                max-height: 92vh;
                border-radius: 24px 24px 0 0;
                transform: translateY(100%);
                opacity: 1;
            }
            .popup-overlay.active .popup-content { transform: translateY(0); }
            .popup-segment { grid-template-columns: 1fr; min-height: auto; }
            .popup-segment-left {
                border-radius: 24px 24px 0 0;
                padding: 28px 24px 20px;
                flex-direction: row;
                flex-wrap: wrap;
                align-items: flex-start;
                gap: 12px;
            }
            .popup-segment-left::before { border-radius: 24px 24px 0 0; }
            .popup-stat { width: 100%; }
            .popup-stat-number { font-size: 44px; }
            .popup-stat-label { font-size: 11px; letter-spacing: 1.5px; }
            .popup-trust-list { width: 100%; flex-direction: row; flex-wrap: wrap; gap: 6px; }
            .popup-trust-list li { font-size: 11px; padding: 8px 12px; }
            .popup-trust-list li .trust-icon { font-size: 14px; width: auto; }
            .popup-math-block { width: 100%; padding: 16px; }
            .popup-locations { width: 100%; flex-direction: row; flex-wrap: wrap; }
            .popup-locations li { font-size: 12px; padding: 8px 12px; }
            .popup-segment-right { padding: 24px; max-height: none; }
            .popup-segment-right h2 { font-size: 22px; }
            .popup-roi-cards { gap: 8px; }
            .popup-roi-card { padding: 16px 10px; }
            .popup-roi-card .roi-value { font-size: 22px; }
            .popup-value-grid { gap: 8px; }
            .popup-close { top: 12px; right: 12px; width: 36px; height: 36px; }
            .form-popup-header { padding: 24px 24px 0; }
            .form-popup-body { padding: 20px 24px 24px; }
            .form-popup-header h3 { font-size: 18px; }
        }

        /* ========================================
           MODEL POPUP — Premium Two-Column Detail
           ======================================== */

        /* Content shell — wider for model details */
        .popup-content-model {
            max-width: 880px;
            overflow: hidden;
            border-radius: 16px;
        }
        .popup-content-model .popup-close {
            z-index: 20;
            width: 32px; height: 32px;
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 50%;
            background: rgba(0,0,0,0.25);
            backdrop-filter: blur(8px);
            color: white; font-size: 18px;
        }

        .model-popup-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 440px;
        }

        /* LEFT — Photo/Media Area */
        .mp-media {
            background: linear-gradient(165deg, #0a1a2e 0%, #0d2137 60%, #142d4a 100%);
            position: relative;
            display: flex;
            flex-direction: column;
            border-radius: 16px 0 0 16px;
            overflow: hidden;
        }

        /* Tabs */
        .mp-tabs {
            display: flex;
            gap: 0;
            padding: 20px 24px 0;
            position: relative;
            z-index: 5;
        }
        .mp-tab {
            background: none;
            border: none;
            color: rgba(255,255,255,0.5);
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 13px;
            font-weight: 600;
            padding: 10px 18px;
            cursor: pointer;
            position: relative;
            transition: color 0.3s ease;
        }
        .mp-tab:hover {
            color: rgba(255,255,255,0.8);
        }
        .mp-tab.active {
            color: #fff;
        }
        .mp-tab.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 18px;
            right: 18px;
            height: 2px;
            background: var(--accent2);
            border-radius: 2px;
            animation: tabSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }
        @keyframes tabSlideIn {
            from { transform: scaleX(0); opacity: 0; }
            to { transform: scaleX(1); opacity: 1; }
        }
        .mp-tabs-line {
            height: 1px;
            background: rgba(255,255,255,0.08);
            margin: 0 24px;
        }

        /* Photo viewer */
        .mp-photo-area {
            flex: 1;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
            min-height: 340px;
        }
        .mp-photo-area img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 12px;
            opacity: 0;
            animation: mpFadeIn 0.4s ease forwards;
        }
        @keyframes mpFadeIn {
            to { opacity: 1; }
        }

        /* Photo placeholder */
        .mp-photo-placeholder {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            color: rgba(255,255,255,0.3);
            text-align: center;
        }
        .mp-photo-placeholder svg {
            width: 48px;
            height: 48px;
            opacity: 0.4;
        }
        .mp-photo-placeholder span {
            font-size: 13px;
            font-weight: 500;
        }

        /* Video container */
        .mp-video-container {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .mp-video-container iframe {
            width: 100%;
            aspect-ratio: 16/9;
            border-radius: 12px;
            border: none;
        }
        .mp-video-soon {
            color: rgba(255,255,255,0.4);
            font-size: 14px;
            font-weight: 500;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        .mp-video-soon svg {
            width: 40px;
            height: 40px;
            opacity: 0.3;
        }

        /* Photo navigation arrows */
        .mp-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.15);
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            color: rgba(255,255,255,0.7);
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
            z-index: 5;
        }
        .mp-nav:hover {
            background: rgba(255,255,255,0.18);
            border-color: rgba(255,255,255,0.3);
            color: #fff;
            transform: translateY(-50%) scale(1.08);
        }
        .mp-nav-prev { left: 12px; }
        .mp-nav-next { right: 12px; }

        /* Photo counter */
        .mp-counter {
            position: absolute;
            bottom: 16px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            color: rgba(255,255,255,0.8);
            z-index: 5;
            border: 1px solid rgba(255,255,255,0.1);
        }

        /* Tab content panels */
        .mp-tab-content {
            display: none;
            width: 100%;
            height: 100%;
        }
        .mp-tab-content.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* RIGHT — Info Panel (dark, compact — matching Choose Your Path popups) */
        .mp-info {
            background: var(--primary);
            color: rgba(255,255,255,0.7);
            padding: 20px 24px 18px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            overflow-y: auto;
        }

        .mp-model-name {
            font-size: 18px;
            font-weight: 800;
            color: white;
            letter-spacing: -0.3px;
            line-height: 1.2;
        }
        .mp-model-name.mp-copyable {
            cursor: pointer;
            position: relative;
            transition: color 0.2s;
        }
        .mp-model-name.mp-copyable:hover {
            color: #81c784;
        }
        .mp-model-name.mp-copyable::after {
            content: '🔗';
            font-size: 12px;
            margin-left: 6px;
            opacity: 0;
            transition: opacity 0.2s;
        }
        .mp-model-name.mp-copyable:hover::after {
            opacity: 0.7;
        }
        .mp-copied-toast {
            display: inline-block;
            font-size: 11px;
            color: #81c784;
            opacity: 0;
            transform: translateY(-4px);
            transition: opacity 0.3s, transform 0.3s;
            pointer-events: none;
        }
        .mp-copied-toast.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .mp-description {
            font-size: 12px;
            color: rgba(255,255,255,0.5);
            line-height: 1.5;
            margin-top: -2px;
        }

        /* Specs line — inline text */
        .mp-specs-line {
            font-size: 13px;
            color: rgba(255,255,255,0.5);
            font-weight: 500;
        }
        .mp-specs-line span {
            font-weight: 800;
            color: white;
        }

        /* SqFt Breakdown Table */
        .mp-sqft-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 12px;
        }
        .mp-sqft-table tr {
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
        .mp-sqft-table tr:last-child {
            border-bottom: none;
        }
        .mp-sqft-table td {
            padding: 5px 0;
        }
        .mp-sqft-table td:first-child {
            color: rgba(255,255,255,0.45);
            font-weight: 500;
        }
        .mp-sqft-table td:last-child {
            text-align: right;
            font-weight: 700;
            color: rgba(255,255,255,0.8);
        }

        /* Feature tags */
        .mp-features {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            padding-bottom: 4px;
        }
        .mp-feature-tag {
            padding: 4px 10px;
            border-radius: 14px;
            font-size: 10px;
            font-weight: 600;
            background: rgba(255,255,255,0.04);
            color: rgba(255,255,255,0.6);
            border: 1px solid rgba(255,255,255,0.08);
            transition: all 0.2s ease;
        }
        .mp-feature-tag.highlight {
            background: rgba(255,255,255,0.06);
            border-color: rgba(255,255,255,0.12);
            color: rgba(255,255,255,0.8);
        }

        /* Price block */
        .mp-price-block {
            margin-top: auto;
            padding-top: 10px;
            border-top: 1px solid rgba(255,255,255,0.06);
        }
        .mp-price-label {
            font-size: 9px;
            color: rgba(255,255,255,0.4);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 2px;
        }
        .mp-price-value {
            font-size: 22px;
            font-weight: 800;
            color: white;
            letter-spacing: -0.5px;
            line-height: 1.1;
            margin-bottom: 10px;
        }

        /* CTA Button — matches .pr-cta style */
        .mp-cta-btn {
            display: flex;
            flex-direction: column;
            width: 100%;
            padding: 12px 20px;
            background: linear-gradient(165deg, var(--accent2) 0%, var(--accent2-dark) 100%);
            color: #fff;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 13px;
            font-weight: 700;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 10px;
            cursor: pointer;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.35s ease;
            box-shadow: 0 6px 20px rgba(45,138,78,0.35);
        }
        .mp-cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
            transition: left 0.5s ease;
        }
        .mp-cta-btn:hover::before { left: 100%; }
        .mp-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 32px rgba(45,138,78,0.5);
        }

        /* ========================================
           MODEL POPUP — Light Theme Variant
           ======================================== */
        .mp-light .mp-info {
            background: #f8f8f8;
            color: rgba(0,0,0,0.55);
        }
        .mp-light .mp-model-name {
            color: var(--primary);
        }
        .mp-light .mp-description {
            color: rgba(0,0,0,0.45);
        }
        .mp-light .mp-specs-line {
            color: rgba(0,0,0,0.45);
        }
        .mp-light .mp-specs-line span {
            color: var(--primary);
        }
        .mp-light .mp-sqft-table tr {
            border-bottom-color: rgba(0,0,0,0.07);
        }
        .mp-light .mp-sqft-table td:first-child {
            color: rgba(0,0,0,0.45);
        }
        .mp-light .mp-sqft-table td:last-child {
            color: rgba(0,0,0,0.75);
        }
        .mp-light .mp-feature-tag {
            background: rgba(0,0,0,0.03);
            color: rgba(0,0,0,0.5);
            border-color: rgba(0,0,0,0.08);
        }
        .mp-light .mp-feature-tag.highlight {
            background: rgba(0,0,0,0.05);
            border-color: rgba(0,0,0,0.12);
            color: rgba(0,0,0,0.7);
        }
        .mp-light .mp-price-block {
            border-top-color: rgba(0,0,0,0.08);
        }
        .mp-light .mp-price-label {
            color: rgba(0,0,0,0.4);
        }
        .mp-light .mp-price-value {
            color: var(--primary);
        }
        .mp-light .mp-cta-btn {
            border-color: rgba(0,0,0,0.1);
        }
        .mp-light .popup-close {
            background: rgba(0,0,0,0.06);
            border-color: rgba(0,0,0,0.1);
            color: rgba(0,0,0,0.5);
            backdrop-filter: blur(8px);
        }
        .mp-light .popup-close:hover {
            background: rgba(0,0,0,0.12);
            color: rgba(0,0,0,0.8);
        }
        .mp-light .mp-model-name.mp-copyable:hover {
            color: #2d8a4e;
        }
        .mp-light .mp-copied-toast {
            color: #2d8a4e;
        }

        /* ========================================
           CATALOG POPUP — Explore All Floor Plans
           ======================================== */
        .catalog-popup-inner {
            padding: 40px 32px;
            text-align: center;
        }
        .catalog-popup-inner h2 {
            font-size: 24px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 8px;
        }
        .catalog-popup-inner p {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 24px;
            line-height: 1.6;
        }
        .catalog-popup-inner .form-group {
            text-align: left;
            margin-bottom: 16px;
        }
        .catalog-popup-inner label {
            display: flex;
            flex-direction: column;
            font-size: 12px;
            font-weight: 700;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 6px;
        }
        .catalog-popup-inner input {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid rgba(0,0,0,0.06);
            border-radius: 14px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 15px;
            color: var(--primary);
            background: #fafbfc;
            transition: all 0.3s ease;
            outline: none;
            box-sizing: border-box;
        }
        .catalog-popup-inner input:focus {
            border-color: var(--accent2);
            box-shadow: 0 0 0 4px rgba(45,138,78,0.08);
            background: #fff;
        }
        .catalog-popup-inner .form-submit-btn {
            display: flex;
            flex-direction: column;
            width: 100%;
            text-align: center;
            padding: 16px 24px;
            background: linear-gradient(165deg, rgba(45,138,78,0.9) 0%, rgba(45,138,78,0.95) 50%, rgba(36,122,66,1) 100%);
            color: white;
            border: 1px solid rgba(255,255,255,0.25);
            border-bottom-color: rgba(0,0,0,0.12);
            border-right-color: rgba(0,0,0,0.08);
            border-radius: 14px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
            box-shadow: 0 6px 24px rgba(45,138,78,0.35), 0 0 32px rgba(45,138,78,0.15), inset 0 1px 0 rgba(255,255,255,0.3);
            margin-top: 4px;
        }

        /* ========================================
           MODEL POPUP RESPONSIVE
           ======================================== */
        @media (max-width: 768px) {
            .popup-content-model {
                max-width: 100%;
                max-height: 95vh;
                border-radius: 16px 16px 0 0;
            }
            .model-popup-inner {
                grid-template-columns: 1fr;
                min-height: auto;
            }
            .mp-media {
                border-radius: 16px 16px 0 0;
                min-height: 220px;
                max-height: 280px;
            }
            .mp-photo-area {
                min-height: 180px;
                padding: 16px;
            }
            .mp-tabs {
                padding: 12px 16px 0;
            }
            .mp-tab {
                font-size: 11px;
                padding: 8px 12px;
            }
            .mp-tabs-line {
                margin: 0 16px;
            }
            .mp-info {
                padding: 16px;
                max-height: calc(95vh - 280px);
            }
            .mp-model-name {
                font-size: 16px;
            }
            .mp-specs-row {
                gap: 4px;
            }
            .mp-spec-icon {
                width: 24px;
                height: 24px;
            }
            .mp-spec-value {
                font-size: 13px;
            }
            .mp-price-value {
                font-size: 20px;
            }
            .mp-nav {
                width: 34px;
                height: 34px;
                font-size: 15px;
            }
            .mp-nav-prev { left: 8px; }
            .mp-nav-next { right: 8px; }
            .catalog-popup-inner {
                padding: 28px 20px;
            }
            .catalog-popup-inner h2 { font-size: 20px; }
            .catalog-popup-inner p { font-size: 13px; margin-bottom: 18px; }
            .catalog-popup-inner input { padding: 12px 14px; font-size: 14px; }
            .catalog-popup-inner .form-submit-btn { padding: 14px 20px; font-size: 15px; }
            /* Center catalog popup on mobile */
            .popup-content-small {
                max-width: 92%;
                max-height: 90vh;
                overflow-y: auto;
                border-radius: 18px;
                align-self: center;
            }
        }