        :root {
            --black: #16181B;
            --black-light: #1E2024;
            --black-lighter: #2A2D32;
            --white: #FFFFFF;
            --gray-50: #FAFAFA;
            --gray-100: #F4F4F5;
            --gray-200: #E4E4E7;
            --gray-300: #D4D4D8;
            --gray-400: #A1A1AA;
            --gray-500: #71717A;
            --gray-600: #52525B;
            --gray-700: #3f3f46;
            --red: #E63329;
            --red-dark: #C41E14;
            --red-light: #FF4438;
            
            --font-display: 'Outfit', sans-serif;
            --font-body: 'Inter', -apple-system, sans-serif;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: var(--black);
            background: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3 {
            font-family: var(--font-display);
            font-weight: 300;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        h4, h5, h6 {
            font-family: var(--font-display);
            font-weight: 600;
            line-height: 1.2;
        }

        .thin { font-weight: 300; }
        .bold { font-weight: 700; }

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

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 15px;
            padding: 16px 32px;
            text-decoration: none;
            transition: all 0.2s ease;
            cursor: pointer;
            border: none;
            letter-spacing: 0.01em;
        }

        .btn-primary {
            background: var(--black);
            color: var(--white);
            border-radius: 8px;
        }

        .btn-primary:hover,
        .btn-primary:focus,
        .btn-primary:active {
            background: var(--gray-800);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        .nav-right .btn-primary:hover,
        .nav-right .btn-primary:focus,
        .nav-right .btn-primary:active {
            background: var(--gray-800);
            color: var(--white);
        }

        .btn svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--white);
            border-bottom: 1px solid var(--gray-200);
        }

        nav {
            display: flex;
            align-items: center;
            height: 80px;
            gap: 48px;
        }

        .logo {
            height: 36px;
            width: auto;
        }

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

        .nav-phone {
            font-size: 14px;
            font-weight: 500;
            color: var(--gray-500);
        }

        .nav-phone strong {
            color: var(--black);
        }

        .nav-phone a {
            color: inherit;
            text-decoration: none;
        }

        /* Hero Section */
        .hero {
            padding-top: 80px;
            min-height: 90vh;
            position: relative;
            overflow: hidden;
            background: linear-gradient(180deg, #f5f5f5 0%, #ebebeb 40%, #e0e0e0 100%);
        }

        .hero-3d-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, #f5f5f5 0%, #ebebeb 40%, #e0e0e0 100%);
            z-index: 0;
            transform: translateX(calc(15% + 20px));
        }

        .hero-3d-bg canvas {
            width: 100% !important;
            height: 100% !important;
            touch-action: pan-y;
        }

        @media (max-width: 1024px) {
            .hero-3d-bg canvas {
                touch-action: none;
            }

            .configurator-loading,
            #loading {
                left: 50%;
            }
        }

        /* Loading Indicator */
        .configurator-loading,
        #loading {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 50;
            background: none;
            padding: 0;
            border-radius: 0;
            box-shadow: none;
            transition: opacity 0.6s ease;
        }

        .configurator-loading.hidden,
        #loading.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .loading-spinner {
            width: 10px;
            height: 10px;
            background: #c0392b;
            border-radius: 50%;
            animation: pulse-dot 1.2s ease-in-out infinite;
        }

        .loading-progress-bar,
        #loading span {
            display: none;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 0.3; transform: scale(0.8); }
            50% { opacity: 1; transform: scale(1.3); }
        }

        .model-hover-tooltip {
            position: absolute;
            background: rgba(0, 0, 0, 0.75);
            color: white;
            padding: 12px 20px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            pointer-events: none;
            opacity: 0;
            transform: translate(-50%, -100%) translateY(-15px);
            transition: opacity 0.2s ease;
            z-index: 100;
            white-space: nowrap;
        }

        .model-hover-tooltip.visible {
            opacity: 1;
        }

        /* Hero Zoom Controls */
        .hero-zoom-controls {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 8px;
            z-index: 100;
        }

        .hero-zoom-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--white);
            border: 1px solid var(--gray-200);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--gray-600);
            transition: all 0.15s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .hero-zoom-btn:hover {
            background: var(--gray-50);
            border-color: var(--gray-300);
            color: var(--black);
            transform: scale(1.05);
        }

        .hero-zoom-btn:active {
            transform: scale(0.95);
        }

        .hero-zoom-btn svg {
            width: 20px;
            height: 20px;
        }

        @media (max-width: 768px) {
            .hero-zoom-btn {
                width: 40px;
                height: 40px;
            }

            .hero-zoom-btn svg {
                width: 18px;
                height: 18px;
            }
        }

        /* Model Switcher */
        .model-switcher {
            position: absolute;
            left: calc(50% + 15% + 20px);
            top: 90px;
            transform: translateX(-50%);
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 6px;
            z-index: 100;
        }

        .model-switcher-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--white);
            border: 1px solid var(--gray-200);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--gray-600);
            transition: all 0.15s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .model-switcher-btn:hover {
            background: var(--gray-50);
            border-color: var(--gray-300);
            color: var(--black);
            transform: scale(1.05);
        }

        .model-switcher-btn:active {
            transform: scale(0.95);
        }

        .model-switcher-btn svg {
            width: 20px;
            height: 20px;
        }

        .model-switcher-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
            padding: 6px 12px;
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--gray-200);
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .model-switcher-name {
            font-size: 12px;
            font-weight: 600;
            color: var(--black);
            white-space: nowrap;
        }

        .model-switcher-count {
            font-size: 10px;
            color: var(--gray-500);
        }

        /* Save Screenshot Button */
        .save-screenshot-btn {
            position: absolute;
            right: 20px;
            bottom: 20px;
            border-radius: 22px;
            background: var(--white);
            border: 1px solid var(--gray-200);
            display: flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            color: var(--gray-600);
            transition: all 0.15s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            z-index: 100;
            padding: 8px 16px 8px 14px;
            font-family: inherit;
            font-size: 13px;
            font-weight: 500;
        }

        .save-screenshot-btn:hover {
            background: var(--gray-50);
            border-color: var(--gray-300);
            color: var(--black);
            transform: scale(1.03);
        }

        .save-screenshot-btn:active {
            transform: scale(0.97);
        }

        .save-screenshot-btn svg {
            width: 16px;
            height: 16px;
        }

        /* Model transition overlay */
        .model-transition-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(235,235,235,0.9);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            z-index: 50;
        }

        .model-transition-overlay.active {
            opacity: 1;
        }

        /* Panel Navigation UI - Style + Colors */
        .panel-nav {
            position: absolute;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%) translateY(20px);
            display: flex;
            align-items: center;
            gap: 16px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 14px 20px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
            z-index: 200;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
            pointer-events: none;
            border: 1px solid var(--gray-200);
            border-radius: 16px;
            width: max-content;
            max-width: calc(100vw - 48px);
        }

        .panel-nav.visible {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(-50%) translateY(0);
        }

        .panel-nav-divider {
            width: 1px;
            height: 32px;
            background: var(--gray-200);
        }

        .panel-nav-link-toggle {
            display: flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            font-size: 11px;
            color: var(--gray-500);
            user-select: none;
            flex-shrink: 0;
            white-space: nowrap;
        }

        .panel-nav-link-toggle input[type="checkbox"] {
            width: 13px;
            height: 13px;
            margin: 0;
            cursor: pointer;
            accent-color: var(--black);
        }

        .panel-nav-link-toggle span {
            line-height: 1;
        }

        .panel-nav-wall {
            font-family: var(--font-display);
            font-size: 14px;
            font-weight: 600;
            color: var(--black);
            white-space: nowrap;
        }

        .panel-nav-colors-section {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .panel-nav-color-group {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .panel-nav-section-label {
            font-family: var(--font-display);
            font-size: 10px;
            font-weight: 600;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            white-space: nowrap;
        }

        .panel-nav-colors {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }

        .panel-nav-color {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
        }

        .panel-nav-color:hover {
            transform: scale(1.15);
        }

        .panel-nav-color.active {
            border-color: var(--black);
        }

        .panel-nav-color.texture-swatch {
            border-radius: 4px;
        }

        .panel-nav-wall-row {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .panel-nav-orient-btn {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 4px 10px;
            border: 1px solid var(--gray-200);
            background: var(--white);
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.15s ease;
            color: var(--gray-500);
            font-size: 11px;
            font-weight: 500;
            flex-shrink: 0;
        }

        .panel-nav-orient-btn:hover {
            background: var(--gray-100);
            color: var(--black);
        }

        .panel-nav-orient-btn svg {
            flex-shrink: 0;
        }

        .panel-nav-orient-label {
            line-height: 1;
        }

        .panel-nav-bottom-row {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .panel-nav-style {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .panel-nav-btn {
            width: 32px;
            height: 32px;
            border: 1px solid var(--gray-200);
            background: var(--gray-100);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .panel-nav-btn:hover {
            background: var(--gray-200);
        }

        .panel-nav-btn:hover svg {
            stroke: var(--black);
        }

        .panel-nav-btn svg {
            width: 16px;
            height: 16px;
            stroke: var(--black);
            transition: stroke 0.2s ease;
        }

        .panel-nav-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 140px;
            padding: 0 4px;
        }

        .panel-nav-name {
            font-family: var(--font-display);
            font-size: 12px;
            font-weight: 600;
            color: var(--black);
            white-space: nowrap;
            text-align: center;
        }

        .panel-nav-count {
            font-size: 10px;
            color: var(--gray-500);
        }

        .panel-nav-layout {
            display: none;
        }

        @media (max-width: 768px) {
            .panel-nav {
                position: relative;
                bottom: auto;
                top: auto;
                left: auto;
                transform: none;
                padding: 0;
                gap: 8px;
                width: calc(100% - 24px);
                max-width: none;
                border-radius: 12px;
                flex-direction: column;
                align-items: stretch;
                margin: 0 auto;
                max-height: 0;
                overflow: hidden;
                border: none;
                box-shadow: none;
            }

            .panel-nav.visible {
                transform: none;
                padding: 12px 16px;
                max-height: 500px;
                overflow: visible;
                border: 1px solid var(--gray-200);
                box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
            }

            .panel-nav-wall {
                font-size: 13px;
                text-align: center;
                padding-bottom: 8px;
                border-bottom: 1px solid var(--gray-200);
            }

            .panel-nav-divider {
                display: none;
            }

            .panel-nav-colors-section {
                gap: 12px;
                flex-direction: column;
                align-items: stretch;
            }

            .panel-nav-color-group {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }

            .panel-nav-colors {
                gap: 6px;
                flex-wrap: wrap;
            }

            .panel-nav-color {
                width: 28px;
                height: 28px;
            }

            .panel-nav-bottom-row {
                flex-direction: row;
                align-items: center;
                justify-content: center;
                gap: 8px;
                padding-top: 8px;
                border-top: 1px solid var(--gray-200);
            }

            .panel-nav-style {
                gap: 8px;
                justify-content: center;
                flex: 1;
            }

            .panel-nav-orient-btn {
                flex-shrink: 0;
            }

            .panel-nav-btn {
                width: 32px;
                height: 32px;
            }

            .panel-nav-info {
                width: 130px;
            }

            .panel-nav-name {
                font-size: 12px;
            }

            .panel-nav-section-label {
                font-size: 9px;
            }

            /* Mobile zoom - position in 3D area, not over CTA */
            .hero-zoom-controls {
                right: 12px;
                top: calc(64px + 19vh);
                bottom: auto;
                transform: none;
            }

            .model-switcher {
                left: 50%;
                top: 72px;
            }

            .model-switcher-btn {
                width: 40px;
                height: 40px;
            }

            .model-switcher-btn svg {
                width: 18px;
                height: 18px;
            }

            .save-screenshot-btn {
                right: 12px;
                bottom: 12px;
                font-size: 12px;
                padding: 7px 12px 7px 10px;
            }
        }

        .hero-container {
            position: relative;
            z-index: 10;
            display: flex;
            align-items: flex-start;
            min-height: calc(90vh - 80px);
            padding: 40px 0;
            padding-top: 5vh;
            pointer-events: none;
        }

        .hero-content {
            max-width: 410px;
            padding: 36px 0;
            pointer-events: auto;
        }

        /* Hidden by default, shown on tablet */
        .tablet-hero-bottom {
            display: none;
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--white);
            border: 1px solid var(--gray-200);
            color: var(--gray-600);
            padding: 8px 14px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 20px;
            border-radius: 100px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .hero-tag .dot {
            width: 8px;
            height: 8px;
            background: var(--red);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .hero h1 {
            font-size: clamp(36px, 4vw, 52px);
            margin-bottom: 16px;
            color: var(--black);
        }

        .hero h1 .accent {
            color: var(--black);
            font-weight: 700;
        }

        .hero-description {
            font-size: 17px;
            color: var(--gray-600);
            margin-bottom: 32px;
            line-height: 1.6;
        }

        /* Waitlist Form */
        .waitlist-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 24px;
        }

        .waitlist-form .form-row {
            display: flex;
            gap: 12px;
        }

        .waitlist-form input[type="email"] {
            flex: 1;
            padding: 16px 20px;
            font-family: var(--font-body);
            font-size: 16px;
            border: 2px solid var(--gray-200);
            border-radius: 8px;
            background: var(--white);
            color: var(--black);
            outline: none;
            transition: border-color 0.2s;
        }

        .waitlist-form input[type="email"]:focus {
            border-color: var(--black);
        }

        .waitlist-form input[type="email"]::placeholder {
            color: var(--gray-400);
        }

        .waitlist-form .btn {
            padding: 16px 28px;
            border-radius: 8px;
            white-space: nowrap;
        }

        .form-note {
            font-size: 13px;
            color: var(--gray-500);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .form-note svg {
            width: 14px;
            height: 14px;
            color: var(--gray-400);
        }

        .hero-stats {
            display: flex;
            align-items: center;
            gap: 20px;
            padding-top: 24px;
            border-top: 1px solid rgba(0,0,0,0.1);
        }

        .hero-stat {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .stat-value {
            font-size: 24px;
            font-weight: 700;
            color: var(--black);
            letter-spacing: -0.02em;
            line-height: 1;
        }

        .stat-label {
            font-size: 12px;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .stat-divider {
            width: 1px;
            height: 32px;
            background: rgba(0,0,0,0.1);
        }

        .loading-progress {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: auto;
            height: auto;
            background: none;
            border-radius: 0;
            z-index: 5;
            overflow: visible;
        }

        .loading-progress.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .loading-progress-bar {
            height: 100%;
            width: 0%;
            background: var(--gray-500);
            border-radius: 2px;
            transition: width 0.2s ease;
        }

        /* Trust Signals Bar */
        .trust-bar {
            background: var(--black);
            color: var(--white);
            padding: 48px 0;
        }

        .trust-content {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 48px;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 4px;
        }

        .trust-value {
            font-family: var(--font-display);
            font-size: 32px;
            font-weight: 700;
            color: var(--white);
            letter-spacing: -0.02em;
        }

        .trust-label {
            font-size: 13px;
            color: var(--gray-400);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .trust-divider {
            width: 1px;
            height: 48px;
            background: var(--black-lighter);
        }

        .trust-partners {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid var(--black-lighter);
        }

        .trust-partners span {
            font-size: 13px;
            color: var(--gray-500);
        }

        /* Features Strip */
        .features-strip {
            padding: 48px 0;
            background: var(--white);
            border-bottom: 1px solid var(--gray-100);
        }

        .features-row {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .feature-icon {
            width: 44px;
            height: 44px;
            background: var(--gray-50);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-icon svg {
            width: 22px;
            height: 22px;
            color: var(--gray-600);
        }

        .feature-text {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .feature-text strong {
            font-size: 15px;
            font-weight: 600;
            color: var(--black);
        }

        .feature-text span {
            font-size: 13px;
            color: var(--gray-500);
        }

        .feature-divider {
            width: 1px;
            height: 40px;
            background: var(--gray-200);
        }

        /* Testimonials Section */
        .testimonials {
            padding: 100px 0;
            background: var(--white);
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .testimonials-header h2 {
            font-size: clamp(32px, 4vw, 44px);
            margin-bottom: 12px;
        }

        .testimonials-header p {
            color: var(--gray-500);
            font-size: 17px;
        }

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

        .testimonial-card {
            background: var(--gray-50);
            border-radius: 16px;
            padding: 32px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 320px;
            transition: transform 0.2s, box-shadow 0.2s;
        }

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

        .testimonial-image {
            width: 100%;
            height: 140px;
            background: var(--gray-200);
            border-radius: 12px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .testimonial-image-placeholder {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: var(--gray-400);
        }

        .testimonial-image-placeholder svg {
            width: 32px;
            height: 32px;
        }

        .testimonial-image-placeholder span {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .testimonial-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(34, 197, 94, 0.1);
            color: #16a34a;
            padding: 6px 12px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .testimonial-badge svg {
            width: 12px;
            height: 12px;
        }

        .testimonial-content {
            flex: 1;
        }

        .testimonial-content p {
            font-size: 16px;
            line-height: 1.7;
            color: var(--gray-700);
            margin: 0;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--gray-200);
        }

        .author-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--gray-200);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .author-avatar-placeholder {
            font-weight: 600;
            font-size: 16px;
            color: var(--gray-500);
        }

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

        .author-name {
            font-weight: 600;
            color: var(--black);
            font-size: 15px;
        }

        .author-location {
            font-size: 13px;
            color: var(--gray-500);
        }

        /* Gallery Section */
        .gallery {
            padding: 100px 0;
            background: var(--gray-50);
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .gallery-header h2 {
            font-size: clamp(32px, 4vw, 44px);
            margin-bottom: 12px;
        }

        .gallery-header p {
            color: var(--gray-500);
            font-size: 17px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(2, 220px);
            gap: 16px;
        }

        .gallery-item {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            background: var(--gray-200);
            transition: transform 0.2s;
        }

        .gallery-item:hover {
            transform: scale(1.02);
        }

        .gallery-item.large {
            grid-row: span 2;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            color: var(--gray-400);
            background: var(--gray-100);
        }

        .gallery-placeholder svg {
            width: 48px;
            height: 48px;
        }

        .gallery-placeholder span {
            font-size: 13px;
            font-weight: 500;
            color: var(--gray-500);
        }

        .gallery-item {
            cursor: pointer;
        }

        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 10000;
            align-items: center;
            justify-content: center;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-image {
            max-width: 90%;
            max-height: 85vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 40px;
            color: white;
            background: none;
            border: none;
            cursor: pointer;
            opacity: 0.8;
            transition: opacity 0.2s;
            z-index: 10001;
        }

        .lightbox-close:hover {
            opacity: 1;
        }

        .lightbox-prev,
        .lightbox-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 30px;
            color: white;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            cursor: pointer;
            padding: 16px 20px;
            border-radius: 8px;
            opacity: 0.8;
            transition: opacity 0.2s, background 0.2s;
        }

        .lightbox-prev:hover,
        .lightbox-next:hover {
            opacity: 1;
            background: rgba(255, 255, 255, 0.2);
        }

        .lightbox-prev {
            left: 20px;
        }

        .lightbox-next {
            right: 20px;
        }

        .lightbox-counter {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 14px;
            font-weight: 500;
            opacity: 0.7;
        }

        /* Video Section */
        .video-section {
            padding: 100px 0;
            background: var(--white);
        }

        .video-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .video-header h2 {
            font-size: clamp(32px, 4vw, 44px);
            margin-bottom: 12px;
        }

        .video-header p {
            color: var(--gray-500);
            font-size: 17px;
        }

        .video-container {
            max-width: 900px;
            margin: 0 auto;
            border-radius: 20px;
            overflow: hidden;
            background: var(--gray-100);
            aspect-ratio: 16/9;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-placeholder {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            color: var(--gray-400);
        }

        .play-button {
            width: 80px;
            height: 80px;
            background: var(--red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .play-button:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 32px rgba(230, 51, 41, 0.3);
        }

        .play-button svg {
            width: 32px;
            height: 32px;
            color: var(--white);
            margin-left: 4px;
        }

        .video-placeholder span {
            font-size: 15px;
            color: var(--gray-500);
        }

        /* Final CTA Section */
        .final-cta {
            padding: 120px 0;
            background: var(--black);
            color: var(--white);
            text-align: center;
        }

        .final-cta-content {
            max-width: 560px;
            margin: 0 auto;
        }

        .final-cta h2 {
            font-size: clamp(36px, 5vw, 52px);
            margin-bottom: 16px;
        }

        .final-cta h2 .accent {
            font-weight: 700;
        }

        .final-cta p {
            font-size: 17px;
            color: var(--gray-400);
            margin-bottom: 40px;
        }

        .final-cta .waitlist-form {
            max-width: 440px;
            margin: 0 auto 24px;
        }

        .final-cta .waitlist-form input[type="email"] {
            background: var(--white);
            border-color: transparent;
        }

        .final-cta .form-note {
            color: var(--gray-500);
            justify-content: center;
        }

        /* Pre-Footer CTA */
        .pre-footer {
            background: var(--gray-100);
            padding: 80px 0;
        }

        .pre-footer-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .pre-footer-text h2 {
            font-size: 32px;
            margin-bottom: 12px;
        }

        .pre-footer-text p {
            color: var(--gray-600);
            font-size: 16px;
            max-width: 480px;
        }

        .pre-footer-cta {
            display: flex;
            gap: 16px;
            flex-shrink: 0;
        }

        .btn-outline {
            background: transparent;
            color: var(--black);
            border: 2px solid var(--black);
        }

        .btn-outline:hover {
            background: var(--black);
            color: var(--white);
        }

        /* Footer */
        footer {
            background: var(--black);
            color: var(--gray-400);
            padding: 64px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 48px;
            padding-bottom: 48px;
        }

        .footer-grid-simple {
            grid-template-columns: 2fr 1fr 1.5fr;
        }

        .footer-brand {
            padding-right: 32px;
        }

        .footer-logo {
            height: 36px;
            color: var(--white);
            margin-bottom: 20px;
        }

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

        .footer-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: var(--black-lighter);
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            color: var(--gray-300);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .footer-links h4 {
            color: var(--white);
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 20px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--gray-400);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }

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

        .footer-contact-col h4 {
            color: var(--white);
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 20px;
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
            color: var(--gray-400);
        }

        .footer-contact-item svg {
            flex-shrink: 0;
        }

        .footer-contact-item a {
            color: var(--white);
            text-decoration: none;
            font-size: 15px;
            transition: color 0.2s;
        }

        .footer-contact-item a:hover {
            color: var(--red);
        }

        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 24px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            background: var(--black-lighter);
            color: var(--gray-400);
            transition: all 0.2s;
        }

        .footer-social a:hover {
            background: var(--red);
            color: var(--white);
            transform: translateY(-2px);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 0;
            border-top: 1px solid var(--black-lighter);
            font-size: 13px;
            color: var(--gray-600);
        }

        .footer-bottom-right {
            display: flex;
            gap: 24px;
        }

        .footer-bottom-right a {
            color: var(--gray-500);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-bottom-right a:hover {
            color: var(--white);
        }

        @media (max-width: 1024px) {
            .pre-footer-content {
                flex-direction: column;
                text-align: center;
            }

            .pre-footer-text p {
                max-width: 100%;
            }

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

            .footer-grid-simple {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-grid-simple .footer-brand {
                grid-column: span 1;
                padding-right: 0;
            }

            .footer-brand {
                grid-column: span 2;
                padding-right: 0;
                text-align: center;
            }

            .footer-badge {
                margin: 0 auto;
            }
        }

        @media (max-width: 640px) {
            .pre-footer {
                padding: 60px 0;
            }

            .pre-footer-text h2 {
                font-size: 24px;
            }

            .pre-footer-cta {
                flex-direction: column;
                width: 100%;
            }

            .pre-footer-cta .btn {
                width: 100%;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

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

            .footer-links h4,
            .footer-contact-col h4 {
                margin-bottom: 16px;
            }

            .footer-contact-item {
                justify-content: center;
            }

            .footer-social {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }
        }

        /* Configurator Full Screen */
        .configurator-fullscreen {
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: var(--gray-100);
            display: flex;
            flex-direction: column;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .configurator-fullscreen.visible {
            opacity: 1;
            visibility: visible;
        }

        .config-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 24px;
            background: var(--white);
            border-bottom: 1px solid var(--gray-200);
            flex-shrink: 0;
            position: relative;
        }

        .config-header-left {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .config-back-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: none;
            border: 1px solid var(--gray-200);
            border-radius: 50%;
            cursor: pointer;
            color: var(--gray-600);
            transition: all 0.15s;
        }

        .config-back-btn:hover {
            background: var(--gray-50);
            border-color: var(--gray-300);
        }

        .config-title-group {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .config-title {
            font-family: var(--font-display);
            font-size: 18px;
            font-weight: 600;
            color: var(--black);
        }

        .config-subtitle {
            font-size: 13px;
            color: var(--gray-500);
        }

        .config-header-center {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .step-indicator {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .step-indicator .step {
            display: flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            opacity: 0.4;
            transition: opacity 0.2s;
        }

        .step-indicator .step.active {
            opacity: 1;
        }

        .step-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--gray-400);
            transition: all 0.2s;
        }

        .step.active .step-dot {
            width: 24px;
            border-radius: 4px;
            background: var(--black);
        }

        .step-name {
            font-size: 12px;
            font-weight: 500;
            color: var(--gray-600);
        }

        .step.active .step-name {
            color: var(--black);
        }

        .step-line {
            width: 24px;
            height: 1px;
            background: var(--gray-300);
        }

        .config-header-right {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .config-save-btn {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 10px 16px;
            background: var(--gray-100);
            border: 1px solid var(--gray-200);
            border-radius: 8px;
            cursor: pointer;
            color: var(--gray-700);
            font-size: 13px;
            font-weight: 500;
            transition: all 0.15s;
        }

        .config-save-btn:hover {
            background: var(--gray-200);
            border-color: var(--gray-300);
        }

        .config-done-btn {
            padding: 10px 20px;
            background: var(--black);
            color: var(--white);
            border: none;
            border-radius: 30px;
            font-family: var(--font-display);
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.15s;
        }

        .config-done-btn:hover {
            background: #333;
        }

        .config-viewport {
            flex: 1;
            position: relative;
            background: linear-gradient(180deg, #f0f0f0 0%, #e8e8e8 50%, #e0e0e0 100%);
            overflow: hidden;
        }

        .config-viewport canvas {
            width: 100% !important;
            height: 100% !important;
        }

        .zoom-controls {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 8px;
            z-index: 10;
        }

        .zoom-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--white);
            border: 1px solid var(--gray-200);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--gray-600);
            font-size: 20px;
            font-weight: 300;
            transition: all 0.15s;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .zoom-btn:hover {
            background: var(--gray-50);
            border-color: var(--gray-300);
            color: var(--black);
        }

        .config-dock {
            background: var(--white);
            padding: 20px 24px 28px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            border-radius: 20px 20px 0 0;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
            position: relative;
            flex-shrink: 0;
        }

        .part-selector {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .part-nav {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: none;
            border: 1px solid var(--gray-200);
            border-radius: 50%;
            cursor: pointer;
            color: var(--gray-600);
            transition: all 0.15s;
        }

        .part-nav:hover {
            background: var(--gray-50);
            border-color: var(--gray-300);
        }

        .part-nav:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .part-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 120px;
        }

        .part-name {
            font-family: var(--font-display);
            font-size: 15px;
            font-weight: 500;
            color: var(--black);
        }

        .part-count {
            font-size: 12px;
            color: var(--gray-400);
        }

        .dock-reset {
            position: absolute;
            top: 16px;
            right: 24px;
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 14px;
            background: none;
            border: 1px solid var(--gray-200);
            border-radius: 20px;
            font-family: var(--font-display);
            font-size: 12px;
            font-weight: 500;
            color: var(--gray-500);
            cursor: pointer;
            transition: all 0.15s;
        }

        .dock-reset:hover {
            background: var(--gray-50);
            border-color: var(--gray-300);
            color: var(--black);
        }

        .color-row {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            max-width: 500px;
        }

        .color-swatch {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 2px solid transparent;
            cursor: pointer;
            transition: transform 0.15s ease, box-shadow 0.15s ease;
            position: relative;
            box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
            flex-shrink: 0;
        }

        .color-swatch:hover {
            transform: scale(1.1);
            box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.2);
        }

        .color-swatch.active {
            border-color: var(--black);
            box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--black);
        }

        .color-swatch.active::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 16px;
            height: 16px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
            filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
        }

        .color-swatch.light.active::after {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
            filter: none;
        }

        .color-name {
            font-family: var(--font-display);
            font-size: 13px;
            font-weight: 500;
            color: var(--gray-500);
            text-align: center;
            min-height: 18px;
        }

        /* Save Modal */
        .save-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10001;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.25s ease, visibility 0.25s ease;
        }

        .save-modal-overlay.visible {
            opacity: 1;
            visibility: visible;
        }

        .save-modal {
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            width: 90%;
            max-width: 420px;
            position: relative;
            transform: translateY(20px) scale(0.95);
            transition: transform 0.25s ease;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .save-modal-overlay.visible .save-modal {
            transform: translateY(0) scale(1);
        }

        .save-modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 36px;
            height: 36px;
            border: none;
            background: var(--gray-100);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-600);
            transition: all 0.15s;
        }

        .save-modal-close:hover {
            background: var(--gray-200);
            color: var(--black);
        }

        .save-modal-icon {
            width: 64px;
            height: 64px;
            background: rgba(230, 51, 41, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
        }

        .save-modal-icon svg {
            width: 28px;
            height: 28px;
            color: var(--red);
        }

        .save-modal-content h3 {
            font-size: 24px;
            font-weight: 600;
            text-align: center;
            margin-bottom: 8px;
        }

        .save-modal-content > p {
            text-align: center;
            color: var(--gray-500);
            font-size: 15px;
            margin-bottom: 28px;
        }

        .save-form {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

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

        .save-form-group label {
            font-size: 13px;
            font-weight: 500;
            color: var(--gray-700);
        }

        .save-form input {
            padding: 14px 16px;
            border: 1px solid var(--gray-200);
            border-radius: 10px;
            font-size: 16px;
            transition: border-color 0.15s, box-shadow 0.15s;
        }

        .save-form input:focus {
            outline: none;
            border-color: var(--black);
            box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
        }

        .save-form button {
            margin-top: 6px;
            padding: 16px;
            background: var(--black);
            color: var(--white);
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.15s;
        }

        .save-form button:hover {
            background: #333;
        }

        .save-disclaimer {
            font-size: 12px;
            color: var(--gray-400);
            text-align: center;
            margin-top: 12px;
        }

        .save-modal-success {
            text-align: center;
        }

        .save-modal-success .success-icon {
            width: 72px;
            height: 72px;
            background: rgba(34, 197, 94, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .save-modal-success .success-icon svg {
            width: 36px;
            height: 36px;
            color: #22c55e;
        }

        .save-modal-success h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .save-modal-success p {
            color: var(--gray-500);
            font-size: 15px;
            margin-bottom: 24px;
        }

        .save-modal-success .btn {
            width: 100%;
            padding: 14px;
        }

        /* Mobile Rotate Buttons */
        .mobile-rotate-btn {
            display: none;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 80px;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 12px;
            cursor: pointer;
            z-index: 100;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 12px rgba(0,0,0,0.15);
            transition: background 0.2s, transform 0.1s;
        }

        .mobile-rotate-btn:active {
            background: rgba(255, 255, 255, 1);
            transform: scale(0.95);
        }

        .mobile-rotate-btn svg {
            width: 24px;
            height: 24px;
            color: var(--black);
        }

        .mobile-rotate-left {
            left: 12px;
        }

        .mobile-rotate-right {
            display: none;
        }

        /* Large tablet / small desktop - proportional scaling */
        @media (max-width: 1320px) and (min-width: 1025px) {
            .hero-3d-bg {
                transform: translateX(calc(18% + 20px));
            }

            .hero-container {
                padding-left: 48px;
            }

            .hero-content {
                max-width: 340px;
            }

            .hero h1 {
                font-size: clamp(28px, 3vw, 38px);
            }

            .hero-description {
                font-size: 15px;
                margin-bottom: 24px;
            }

            .waitlist-form input {
                padding: 14px 16px;
            }

            .waitlist-form .btn {
                padding: 14px 24px;
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .gallery-grid {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: repeat(3, 180px);
            }

            .gallery-item.large {
                grid-column: span 2;
                grid-row: span 1;
            }
        }

        /* Tablet Layout - Title bar, 3D, then content below */
        @media (max-width: 1024px) and (min-width: 769px) {
            .hero {
                display: flex;
                flex-direction: column;
                min-height: auto;
                padding-top: 80px;
            }

            .hero-3d-bg {
                position: relative;
                width: 100%;
                left: 0;
                transform: none;
                height: 45vh;
                top: 0;
                margin-top: 20px;
                margin-bottom: -60px;
                flex-shrink: 0;
                overflow: visible;
                touch-action: pan-y;
            }

            .hero-container {
                position: relative;
                flex: 1;
                min-height: auto;
                padding: 0;
                align-items: flex-end;
            }

            .hero-content {
                max-width: 100%;
                width: 100%;
                margin: 0;
                padding: 24px 32px 32px;
                background: linear-gradient(to top, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 80%, rgba(255,255,255,0) 100%);
                backdrop-filter: blur(10px);
                padding-bottom: 40px;
            }

            .hero h1 {
                font-size: 36px;
                margin-bottom: 12px;
            }

            .hero-description {
                font-size: 16px;
                margin-bottom: 24px;
            }

            .hero-stats {
                gap: 16px;
                padding-top: 20px;
            }

            .tablet-hero-bottom {
                display: none !important;
            }

            .model-hover-tooltip {
                display: none;
            }

            .mobile-rotate-btn {
                display: flex;
                top: calc(80px + 19vh);
                bottom: auto;
                transform: none;
                height: 44px;
                width: 44px;
                border-radius: 50%;
            }

            .mobile-rotate-left {
                display: none !important;
            }

            .mobile-rotate-right {
                left: 16px;
                right: auto;
            }

            .hero-zoom-controls {
                right: 16px;
                top: calc(80px + 19vh);
                bottom: auto;
                transform: none;
            }

            .model-switcher {
                left: 50%;
                top: 90px;
            }

            /* Tablet panel nav - same style as mobile, below 3D viewer */
            .panel-nav {
                position: relative;
                bottom: auto;
                top: auto;
                left: auto;
                transform: none;
                padding: 0;
                gap: 8px;
                width: calc(100% - 48px);
                max-width: 600px;
                border-radius: 12px;
                flex-direction: column;
                align-items: stretch;
                margin: 0 auto;
                max-height: 0;
                overflow: hidden;
                border: none;
                box-shadow: none;
            }

            .panel-nav.visible {
                transform: none;
                padding: 12px 16px;
                max-height: 500px;
                overflow: visible;
                border: 1px solid var(--gray-200);
                box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
            }

            .panel-nav-wall {
                font-size: 13px;
                text-align: center;
                padding-bottom: 8px;
                border-bottom: 1px solid var(--gray-200);
            }

            .panel-nav-divider {
                display: none;
            }

            .panel-nav-colors-section {
                gap: 12px;
                flex-direction: column;
                align-items: stretch;
            }

            .panel-nav-color-group {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }

            .panel-nav-colors {
                gap: 6px;
                flex-wrap: wrap;
            }

            .panel-nav-color {
                width: 28px;
                height: 28px;
            }

            .panel-nav-bottom-row {
                flex-direction: row;
                align-items: center;
                justify-content: center;
                gap: 8px;
                padding-top: 8px;
                border-top: 1px solid var(--gray-200);
            }

            .panel-nav-style {
                gap: 8px;
                justify-content: center;
                flex: 1;
            }

            .panel-nav-orient-btn {
                flex-shrink: 0;
            }
        }

        @media (max-width: 768px) {
            nav {
                height: 64px;
                padding: 0 16px;
            }

            .logo {
                height: 28px;
            }

            .nav-phone {
                display: none;
            }

            .nav-right .btn {
                padding: 12px 20px;
                font-size: 14px;
            }

            .hero {
                padding-top: 64px;
                min-height: 100vh;
                min-height: 100dvh;
            }

            .hero-3d-bg {
                transform: translateX(0);
            }

            .hero-container {
                padding: 0;
                align-items: flex-end;
                min-height: calc(100vh - 64px);
                min-height: calc(100dvh - 64px);
            }

            .hero-content {
                max-width: 100%;
                width: 100%;
                margin: 0;
                padding: 24px 20px 32px;
                background: linear-gradient(to top, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 80%, rgba(255,255,255,0) 100%);
                backdrop-filter: blur(10px);
            }

            .hero-tag {
                font-size: 10px;
                padding: 6px 12px;
                margin-bottom: 16px;
            }

            .hero h1 {
                font-size: 32px;
                margin-bottom: 12px;
            }

            .hero-description {
                font-size: 15px;
                margin-bottom: 24px;
            }

            .waitlist-form .form-row {
                flex-direction: column;
            }

            .waitlist-form .btn {
                width: 100%;
                justify-content: center;
            }

            .hero-stats {
                gap: 16px;
                padding-top: 20px;
                flex-wrap: wrap;
            }

            .stat-value {
                font-size: 20px;
            }

            .stat-label {
                font-size: 10px;
            }

            .model-hover-tooltip {
                display: none;
            }

            .tablet-hero-bottom {
                display: none !important;
            }

            .trust-bar {
                padding: 32px 0;
            }

            .trust-content {
                gap: 24px;
            }

            .trust-item {
                flex: 1 1 40%;
            }

            .trust-value {
                font-size: 24px;
            }

            .trust-divider {
                display: none;
            }

            .features-strip {
                padding: 32px 0;
            }

            .features-row {
                flex-direction: column;
                gap: 20px;
                align-items: flex-start;
            }

            .feature-item {
                width: 100%;
            }

            .feature-divider {
                display: none;
            }

            .testimonials,
            .gallery,
            .video-section {
                padding: 60px 0;
            }

            .testimonials-header h2,
            .gallery-header h2,
            .video-header h2 {
                font-size: 28px;
            }

            .testimonial-card {
                padding: 24px;
                min-height: auto;
            }

            .gallery-grid {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: repeat(3, 150px);
                gap: 12px;
            }

            .final-cta {
                padding: 80px 0;
            }

            .final-cta h2 {
                font-size: 32px;
            }

            footer {
                padding: 40px 0 24px;
            }

            .config-header {
                padding: 12px 16px;
            }

            .config-header-center {
                display: none;
            }

            .config-title {
                font-size: 14px;
            }

            .config-done-btn {
                padding: 8px 16px;
                font-size: 13px;
            }

            .config-dock {
                padding: 12px 16px 20px;
            }

            .part-name {
                font-size: 14px;
            }

            .color-row {
                gap: 10px;
            }

            .color-swatch {
                width: 38px;
                height: 38px;
            }

            .mobile-rotate-btn {
                display: flex;
                top: calc(64px + 19vh);
                bottom: auto;
                transform: none;
                height: 44px;
                width: 44px;
                border-radius: 50%;
                z-index: 200;
            }

            .mobile-rotate-left {
                display: none !important;
            }

            .mobile-rotate-right {
                left: 12px;
                right: auto;
            }

            .hero {
                display: flex;
                flex-direction: column;
                min-height: auto;
            }

            .hero-3d-bg {
                position: relative;
                width: 100%;
                left: 0;
                transform: none;
                height: 38vh;
                top: 0;
                margin-top: 54px;
                margin-bottom: -60px;
                flex-shrink: 0;
                overflow: visible;
                touch-action: pan-y;
            }

            .hero-container {
                position: relative;
                flex: 1;
                min-height: auto;
                align-items: flex-start;
                padding-top: 0;
            }

            .hero-content {
                padding-bottom: 40px;
            }
        }

        @media (max-width: 380px) {
            .hero h1 {
                font-size: 28px;
            }

            .trust-item {
                flex: 1 1 100%;
            }
        }

        @supports (padding-bottom: env(safe-area-inset-bottom)) {
            footer {
                padding-bottom: calc(24px + env(safe-area-inset-bottom));
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* ============================================================
           REDESIGN V2 - New Sections
           ============================================================ */

        /* Header Updates */
        .nav-left {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .logo-link {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .header-badge {
            background: var(--gray-100);
            color: var(--gray-600);
            font-size: 11px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 20px;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        .nav-center {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-link {
            font-size: 14px;
            font-weight: 500;
            color: var(--gray-600);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .nav-link:hover {
            color: var(--black);
        }

        .nav-right .nav-phone {
            font-size: 14px;
            font-weight: 600;
            color: var(--black);
            text-decoration: none;
        }

        .nav-right .btn {
            padding: 12px 24px;
            font-size: 14px;
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }

        .mobile-menu-btn span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--black);
            transition: all 0.3s ease;
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--white);
            z-index: 999;
            padding-top: 100px;
        }

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

        .mobile-menu-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
            padding: 40px 24px;
            width: 100%;
        }

        .mobile-nav-link {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 600;
            color: var(--black);
            text-decoration: none;
        }

        .mobile-menu-divider {
            width: 60px;
            height: 1px;
            background: var(--gray-200);
            margin: 16px 0;
        }

        .mobile-nav-phone {
            font-size: 18px;
            font-weight: 600;
            color: var(--black);
            text-decoration: none;
        }

        .mobile-nav-cta {
            margin-top: 16px;
        }

        /* Style Presets */
        .hero-style-presets {
            position: absolute;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            z-index: 10;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 16px 24px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .preset-label {
            font-size: 13px;
            color: var(--gray-500);
            font-weight: 500;
        }

        .preset-buttons {
            display: flex;
            gap: 8px;
        }

        .preset-btn {
            padding: 8px 16px;
            font-size: 13px;
            font-weight: 600;
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: var(--font-display);
        }

        .preset-btn:hover {
            background: var(--black);
            color: var(--white);
            border-color: var(--black);
        }

        .preset-btn.active {
            background: var(--black);
            color: var(--white);
            border-color: var(--black);
        }

        .preset-hint {
            font-size: 12px;
            color: var(--gray-400);
        }

        /* Section Header */
        .section-header {
            text-align: center;
            max-width: 640px;
            margin: 0 auto 48px;
        }

        .section-tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--red);
            margin-bottom: 16px;
        }

        .section-header h2 {
            font-size: 42px;
            margin-bottom: 16px;
        }

        .section-header p {
            font-size: 18px;
            color: var(--gray-500);
        }

        /* Video Section - Updated */
        .video-section {
            padding: 100px 0;
            background: var(--gray-50);
        }

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

        .video-content .section-tag {
            text-align: left;
        }

        .video-content h2 {
            font-size: 38px;
            text-align: left;
            margin-bottom: 24px;
        }

        .video-description {
            font-size: 17px;
            color: var(--gray-600);
            margin-bottom: 32px;
            line-height: 1.7;
        }

        .video-quote {
            border-left: 3px solid var(--red);
            padding-left: 24px;
        }

        .video-quote blockquote {
            font-size: 18px;
            font-style: italic;
            color: var(--gray-700);
            margin-bottom: 12px;
        }

        .video-quote cite {
            font-size: 14px;
            font-style: normal;
            color: var(--gray-500);
        }

        .video-player {
            position: relative;
        }

        .video-wrapper {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .video-placeholder {
            aspect-ratio: 16/9;
            background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .video-placeholder:hover {
            background: linear-gradient(135deg, var(--gray-300) 0%, var(--gray-400) 100%);
        }

        .video-placeholder:hover .play-button {
            transform: scale(1.1);
        }

        .play-button {
            width: 80px;
            height: 80px;
            background: var(--red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(230, 51, 41, 0.3);
            transition: transform 0.3s ease;
        }

        .play-button svg {
            width: 28px;
            height: 28px;
            margin-left: 4px;
            color: var(--white);
        }

        .video-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--gray-600);
        }

        /* Floor Plans Section */
        .floor-plans {
            padding: 100px 0;
        }

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

        .plan-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .plan-card:hover {
            border-color: var(--gray-300);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
            transform: translateY(-4px);
        }

        .plan-card.featured {
            border-color: var(--black);
        }

        .plan-image {
            position: relative;
        }

        .plan-image-placeholder {
            aspect-ratio: 4/3;
            background: var(--gray-100);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .plan-image-placeholder svg {
            width: 48px;
            height: 48px;
            color: var(--gray-300);
        }

        .plan-image-placeholder span {
            font-size: 13px;
            color: var(--gray-400);
        }

        .plan-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: var(--black);
            color: var(--white);
            font-size: 11px;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 20px;
            letter-spacing: 0.02em;
        }

        .plan-info {
            padding: 24px;
        }

        .plan-info h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .plan-specs {
            display: flex;
            gap: 16px;
            margin-bottom: 16px;
        }

        .plan-specs span {
            font-size: 13px;
            color: var(--gray-500);
            font-weight: 500;
        }

        .plan-description {
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .plan-price {
            display: flex;
            align-items: baseline;
            gap: 8px;
            margin-bottom: 20px;
        }

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

        .price-value {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 700;
        }

        .price-note {
            font-size: 12px;
            color: var(--gray-400);
        }

        .plan-card .btn {
            width: 100%;
            justify-content: center;
        }

        .plans-cta {
            text-align: center;
            margin-top: 48px;
        }

        .plans-cta p {
            color: var(--gray-500);
            margin-bottom: 16px;
        }

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

        .btn-secondary:hover {
            background: var(--black);
            color: var(--white);
        }

        /* Design Possibilities Section */
        .design-possibilities {
            padding: 100px 0;
            background: var(--gray-50);
        }

        .renders-showcase {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 24px;
            margin-bottom: 48px;
        }

        .render-main {
            position: relative;
        }

        .render-image-placeholder {
            aspect-ratio: 16/10;
            background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }

        .render-image-placeholder svg {
            width: 64px;
            height: 64px;
            color: var(--gray-400);
        }

        .render-image-placeholder span {
            font-size: 14px;
            color: var(--gray-400);
        }

        .render-image-placeholder.small {
            aspect-ratio: 1/1;
        }

        .render-image-placeholder.small svg {
            display: none;
        }

        .render-caption {
            position: absolute;
            bottom: 16px;
            left: 16px;
            background: rgba(0, 0, 0, 0.75);
            color: var(--white);
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 500;
        }

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

        .render-thumb {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .render-label {
            font-size: 12px;
            color: var(--gray-500);
            text-align: center;
        }

        .design-features {
            display: flex;
            justify-content: center;
            gap: 64px;
        }

        .design-feature {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .feature-number {
            font-family: var(--font-display);
            font-size: 36px;
            font-weight: 700;
            color: var(--black);
        }

        .feature-text {
            font-size: 14px;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Why Steel / Benefits Section */
        .why-steel {
            padding: 100px 0;
        }

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

        .benefit-card,
        .benefit-item {
            padding: 0;
            background: transparent;
        }

        .benefit-icon {
            width: 48px;
            height: 48px;
            background: var(--gray-100);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .benefit-icon svg {
            width: 24px;
            height: 24px;
            color: var(--gray-600);
        }

        .benefit-card h3,
        .benefit-item h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--black);
        }

        .benefit-card p,
        .benefit-item p {
            font-size: 15px;
            color: var(--gray-600);
            line-height: 1.6;
        }

        /* Testimonials Section - Redesigned */
        .testimonials {
            padding: 100px 0;
            background: var(--gray-50);
        }

        .testimonials-showcase {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 32px;
        }

        .testimonial-featured {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }

        .testimonial-image-large {
            width: 100%;
        }

        .testimonial-image-placeholder {
            aspect-ratio: 16/9;
            background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .testimonial-image-placeholder.large {
            aspect-ratio: 16/9;
        }

        .testimonial-image-placeholder svg {
            width: 48px;
            height: 48px;
            color: var(--gray-400);
        }

        .testimonial-image-placeholder span {
            font-size: 13px;
            color: var(--gray-400);
        }

        .testimonial-image-placeholder.mini {
            aspect-ratio: 1/1;
            width: 80px;
            height: 80px;
            border-radius: 12px;
            flex-shrink: 0;
        }

        .testimonial-image-placeholder.mini svg {
            display: none;
        }

        .testimonial-image-placeholder.mini span {
            font-size: 11px;
        }

        .testimonial-featured-content {
            padding: 32px;
            position: relative;
        }

        .testimonial-quote-icon {
            position: absolute;
            top: 16px;
            right: 16px;
        }

        .testimonial-quote-icon svg {
            width: 64px;
            height: 64px;
        }

        .testimonial-featured-content blockquote {
            font-size: 18px;
            line-height: 1.7;
            color: var(--gray-700);
            margin-bottom: 24px;
            font-style: italic;
        }

        .testimonial-author-featured {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .author-photo {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--gray-200);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .author-photo-placeholder {
            font-size: 20px;
            color: var(--gray-400);
        }

        .author-details {
            display: flex;
            flex-direction: column;
        }

        .author-name {
            font-weight: 600;
            font-size: 16px;
        }

        .author-meta {
            font-size: 13px;
            color: var(--gray-500);
        }

        .testimonials-grid-small {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .testimonial-mini {
            display: flex;
            gap: 16px;
            background: var(--white);
            padding: 16px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
        }

        .testimonial-mini-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .testimonial-mini-content p {
            font-size: 14px;
            color: var(--gray-700);
            font-style: italic;
            margin-bottom: 8px;
            line-height: 1.5;
        }

        .mini-author {
            font-size: 12px;
            color: var(--gray-500);
            font-weight: 500;
        }

        /* Process Section */
        .process-section {
            padding: 100px 0;
        }

        .process-timeline {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            left: 28px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--gray-200);
        }

        .process-step {
            display: flex;
            gap: 32px;
            margin-bottom: 48px;
            position: relative;
        }

        .process-step:last-child {
            margin-bottom: 0;
        }

        .step-number {
            width: 56px;
            height: 56px;
            background: var(--white);
            border: 2px solid var(--gray-200);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 20px;
            font-weight: 700;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }

        .process-step.final .step-number {
            background: var(--black);
            border-color: var(--black);
            color: var(--white);
        }

        .process-step.final .step-number svg {
            width: 24px;
            height: 24px;
        }

        .step-content h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .step-content p {
            font-size: 15px;
            color: var(--gray-600);
            line-height: 1.6;
            margin-bottom: 12px;
        }

        .step-duration {
            font-size: 13px;
            font-weight: 600;
            color: var(--red);
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
            background: var(--gray-50);
        }

        .faq-grid {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-item {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--gray-200);
        }

        .faq-question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 24px;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            font-family: var(--font-display);
            font-size: 16px;
            font-weight: 600;
            color: var(--black);
            transition: all 0.2s ease;
        }

        .faq-question:hover {
            background: var(--gray-50);
        }

        .faq-question svg {
            width: 20px;
            height: 20px;
            color: var(--gray-400);
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item.open .faq-question svg {
            transform: rotate(180deg);
        }

        .faq-answer {
            display: none;
            padding: 0 24px 20px;
        }

        .faq-item.open .faq-answer {
            display: block;
        }

        .faq-answer p {
            font-size: 15px;
            color: var(--gray-600);
            line-height: 1.7;
        }

        .faq-contact {
            text-align: center;
            margin-top: 48px;
        }

        .faq-contact p {
            color: var(--gray-500);
            margin-bottom: 16px;
        }

        /* Final CTA Section - Enhanced */
        .final-cta {
            padding: 100px 0;
            background: var(--black);
            color: var(--white);
        }

        .final-cta-content {
            text-align: center;
            max-width: 640px;
            margin: 0 auto;
        }

        .cta-badge {
            display: inline-block;
            background: rgba(230, 51, 41, 0.15);
            color: var(--red-light);
            font-size: 12px;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: 20px;
            margin-bottom: 24px;
            letter-spacing: 0.05em;
        }

        .final-cta h2 {
            font-size: 42px;
            margin-bottom: 16px;
        }

        .final-cta .thin {
            color: var(--gray-400);
        }

        .final-cta .accent {
            color: var(--white);
        }

        .cta-description {
            font-size: 18px;
            color: var(--gray-400);
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .final-form {
            margin-bottom: 32px;
        }

        .final-form .form-row {
            max-width: 480px;
            margin: 0 auto 16px;
        }

        .final-form input {
            background: var(--black-lighter);
            border-color: var(--gray-700);
            color: var(--white);
        }

        .final-form input::placeholder {
            color: var(--gray-500);
        }

        .btn-large {
            padding: 18px 32px;
            font-size: 16px;
        }

        .cta-benefits {
            display: flex;
            justify-content: center;
            gap: 32px;
            flex-wrap: wrap;
        }

        .cta-benefit {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--gray-400);
        }

        .cta-benefit svg {
            width: 18px;
            height: 18px;
            color: var(--red);
        }

        /* Responsive - Tablet */
        @media (max-width: 1024px) {
            .nav-center {
                display: none;
            }

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

            .hero-style-presets {
                bottom: 16px;
                padding: 12px 16px;
            }

            .preset-buttons {
                flex-wrap: wrap;
                justify-content: center;
            }

            .video-layout {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .video-content {
                text-align: center;
            }

            .video-content .section-tag,
            .video-content h2 {
                text-align: center;
            }

            .video-quote {
                text-align: left;
            }

            .plans-grid {
                grid-template-columns: 1fr;
                max-width: 480px;
                margin: 0 auto;
            }

            .renders-showcase {
                grid-template-columns: 1fr;
            }

            .render-grid {
                grid-template-columns: repeat(4, 1fr);
            }

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

            .testimonials-showcase {
                grid-template-columns: 1fr;
            }

            .design-features {
                gap: 32px;
            }

            .section-header h2 {
                font-size: 36px;
            }
        }

        /* Responsive - Mobile */
        @media (max-width: 768px) {
            .nav-right .nav-phone {
                display: none;
            }

            .nav-right .btn {
                display: none;
            }

            .header-badge {
                display: none;
            }

            .hero-style-presets {
                position: relative;
                bottom: auto;
                left: auto;
                transform: none;
                margin: 24px;
                border-radius: 12px;
            }

            .preset-btn {
                padding: 6px 12px;
                font-size: 12px;
            }

            .section-header h2 {
                font-size: 28px;
            }

            .section-header p {
                font-size: 16px;
            }

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

            .benefit-card {
                padding: 24px;
            }

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

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

            .process-timeline::before {
                left: 20px;
            }

            .step-number {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .process-step {
                gap: 20px;
            }

            .step-content h3 {
                font-size: 18px;
            }

            .final-cta h2 {
                font-size: 32px;
            }

            .cta-benefits {
                flex-direction: column;
                gap: 16px;
                align-items: center;
            }
        }

        @media (max-width: 480px) {
            .design-features {
                gap: 16px;
            }

            .feature-number {
                font-size: 28px;
            }

            .feature-text {
                font-size: 12px;
            }
        }

        /* ============================================
           CORNERSTONE ELEMENT STYLES
           ============================================ */

        /* Customization Showcase Section */
        .customization-showcase {
            padding: 100px 0;
            background: var(--white);
        }

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

        .customization-card {
            padding: 32px;
            background: var(--gray-50);
            border-radius: 16px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .customization-card:hover {
            background: var(--white);
            border-color: var(--gray-200);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
            transform: translateY(-4px);
        }

        .customization-icon {
            width: 72px;
            height: 72px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            border: 1px solid var(--gray-200);
        }

        .customization-card:hover .customization-icon {
            background: var(--black);
            border-color: var(--black);
        }

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

        .customization-icon svg {
            width: 32px;
            height: 32px;
            color: var(--black);
            transition: color 0.3s ease;
        }

        .customization-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .customization-card p {
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.6;
        }

        .customization-cta {
            text-align: center;
            margin-top: 48px;
        }

        /* How It Works Section */
        .how-it-works {
            padding: 100px 0;
            background: var(--gray-50);
        }

        .how-it-works .process-timeline {
            max-width: 800px;
            margin: 48px auto 0;
            position: relative;
        }

        .how-it-works .process-timeline::before {
            content: '';
            position: absolute;
            left: 28px;
            top: 0;
            bottom: 60px;
            width: 2px;
            background: var(--gray-300);
        }

        .how-it-works .process-step {
            display: flex;
            gap: 32px;
            margin-bottom: 40px;
            position: relative;
        }

        .how-it-works .process-step:last-child {
            margin-bottom: 0;
        }

        .how-it-works .step-number {
            width: 56px;
            height: 56px;
            background: var(--white);
            border: 2px solid var(--gray-300);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 20px;
            font-weight: 700;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
            color: var(--black);
        }

        .how-it-works .step-content {
            padding-top: 8px;
        }

        .how-it-works .step-content h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .how-it-works .step-content p {
            font-size: 15px;
            color: var(--gray-600);
            line-height: 1.6;
            margin-bottom: 8px;
        }

        .how-it-works .step-time {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            color: var(--red);
            background: rgba(230, 51, 41, 0.1);
            padding: 4px 12px;
            border-radius: 20px;
        }

        .process-total {
            text-align: center;
            margin-top: 48px;
            padding-top: 32px;
            border-top: 1px solid var(--gray-200);
        }

        .process-total span {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 700;
            color: var(--black);
        }

        /* Team About Section */
        .team-about {
            padding: 100px 0;
            background: var(--white);
        }

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

        .about-content h2 {
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .about-story {
            font-size: 18px;
            color: var(--gray-600);
            line-height: 1.8;
            margin-bottom: 32px;
        }

        .founder-quote {
            background: var(--gray-50);
            padding: 32px;
            border-radius: 16px;
            margin-bottom: 32px;
            border-left: 4px solid var(--red);
        }

        .founder-quote p {
            font-size: 18px;
            font-style: italic;
            color: var(--gray-700);
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .founder-quote cite {
            display: flex;
            flex-direction: column;
            font-style: normal;
        }

        .founder-quote cite strong {
            font-size: 16px;
            font-weight: 700;
            color: var(--black);
        }

        .founder-quote cite span {
            font-size: 14px;
            color: var(--gray-500);
        }

        .video-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
        }

        .video-btn svg {
            width: 20px;
            height: 20px;
        }

        .about-image-placeholder {
            aspect-ratio: 4/3;
            background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }

        .about-image-placeholder svg {
            width: 64px;
            height: 64px;
            color: var(--gray-400);
        }

        .about-image-placeholder span {
            font-size: 14px;
            color: var(--gray-400);
        }

        /* Floor Plans - Additional Styles for plan-content */
        .plan-content {
            padding: 24px;
        }

        .plan-content h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .plan-content .plan-specs {
            display: flex;
            gap: 16px;
            margin-bottom: 16px;
        }

        .plan-content .plan-specs .spec {
            font-size: 13px;
            color: var(--gray-500);
            font-weight: 500;
        }

        .plan-content .plan-desc {
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .plan-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 16px;
            border-top: 1px solid var(--gray-200);
        }

        .plan-price {
            font-family: var(--font-display);
            font-size: 14px;
            color: var(--gray-600);
        }

        .plans-custom {
            text-align: center;
            margin-top: 48px;
        }

        /* FAQ Accordion - Match element class names */
        .faq-accordion {
            max-width: 800px;
            margin: 48px auto 0;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-cta {
            text-align: center;
            margin-top: 32px;
            padding-top: 32px;
        }

        .faq-cta p {
            font-size: 16px;
            color: var(--gray-600);
        }

        /* Gallery Section Enhancements */
        .gallery {
            padding: 100px 0;
            background: var(--gray-50);
        }

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

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
        }

        .gallery-item:first-child {
            grid-column: span 2;
            grid-row: span 2;
        }

        .gallery-image-placeholder {
            aspect-ratio: 4/3;
            background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .gallery-item:first-child .gallery-image-placeholder {
            aspect-ratio: 1/1;
        }

        .gallery-image-placeholder svg {
            width: 48px;
            height: 48px;
            color: var(--gray-400);
        }

        .gallery-image-placeholder span {
            font-size: 13px;
            color: var(--gray-400);
        }

        /* Video Section */
        .video-section {
            padding: 100px 0;
            background: var(--black);
        }

        .video-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .video-placeholder {
            aspect-ratio: 16/9;
            background: linear-gradient(135deg, var(--black-light) 0%, var(--black-lighter) 100%);
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 16px;
            border: 1px solid var(--gray-700);
        }

        .video-play-btn {
            width: 80px;
            height: 80px;
            background: var(--red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .video-play-btn:hover {
            transform: scale(1.1);
            background: var(--red-light);
        }

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

        .video-placeholder span {
            font-size: 14px;
            color: var(--gray-400);
        }

        /* Responsive Styles for New Sections */
        @media (max-width: 1024px) {
            .customization-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .about-content h2 {
                font-size: 32px;
            }

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

            .gallery-item:first-child {
                grid-column: span 2;
                grid-row: span 1;
            }
        }

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

            .customization-card {
                padding: 24px;
            }

            .how-it-works .process-timeline::before {
                left: 20px;
            }

            .how-it-works .step-number {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .how-it-works .process-step {
                gap: 20px;
            }

            .how-it-works .step-content h3 {
                font-size: 18px;
            }

            .founder-quote {
                padding: 24px;
            }

            .founder-quote p {
                font-size: 16px;
            }

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

            .gallery-item:first-child {
                grid-column: span 1;
            }

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

        /* ==========================================================================
           Models Section
           ========================================================================== */

        .kit-models {
            padding: 20px 0 80px;
            background: #fafafa;
        }

        .kit-models .section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .kit-models .section-tag {
            display: inline-block;
            font-family: var(--font-body);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--red);
            margin-bottom: 16px;
        }

        .kit-models .section-header h2 {
            font-family: var(--font-display);
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 700;
            color: var(--black);
            margin: 0 0 12px;
        }

        .kit-models .section-subtitle {
            font-family: var(--font-body);
            font-size: 17px;
            color: var(--gray-500);
            max-width: 480px;
            margin: 0 auto;
        }

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

        .model-card {
            background: var(--gray-50);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--gray-100);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

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

        .model-card-image {
            width: 100%;
            height: 240px;
            overflow: hidden;
            background: var(--gray-50);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .model-card-image img,
        .model-card-image canvas {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .model-card-placeholder {
            color: var(--gray-300);
        }

        .model-card-info {
            padding: 24px;
        }

        .model-card-name {
            font-family: var(--font-display);
            font-size: 22px;
            font-weight: 600;
            color: var(--black);
            margin: 0 0 8px;
        }

        .model-card-specs {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-body);
            font-size: 14px;
            color: var(--gray-500);
            margin-bottom: 16px;
        }

        .model-card-divider {
            width: 1px;
            height: 14px;
            background: var(--gray-200);
        }

        .model-card-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .model-card-price {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 700;
            color: var(--black);
        }

        .model-floorplan-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 14px;
            background: none;
            border: 1px solid var(--gray-200);
            border-radius: 6px;
            font-family: var(--font-body);
            font-size: 13px;
            font-weight: 500;
            color: var(--gray-600);
            cursor: pointer;
            transition: all 0.15s ease;
        }

        .model-floorplan-btn:hover {
            border-color: var(--gray-400);
            color: var(--black);
        }

        .model-floorplan-btn svg {
            opacity: 0.6;
        }

        /* Floor Plan Modal */
        .floorplan-modal {
            position: fixed;
            inset: 0;
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.25s ease, visibility 0.25s ease;
        }

        .floorplan-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .floorplan-modal-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(4px);
        }

        .floorplan-modal-content {
            position: relative;
            background: #fff;
            border-radius: 16px;
            width: 90vw;
            max-width: 900px;
            max-height: 92vh;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            transform: scale(0.96);
            transition: transform 0.2s ease;
            box-shadow: 0 25px 60px rgba(0,0,0,0.3);
        }

        .floorplan-modal.active .floorplan-modal-content {
            transform: scale(1);
        }

        .floorplan-modal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            border-bottom: 1px solid var(--gray-100);
        }

        .floorplan-modal-title {
            font-family: var(--font-display);
            font-size: 18px;
            font-weight: 600;
            color: var(--black);
            margin: 0;
        }

        .floorplan-modal-close {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gray-50);
            border: 1px solid var(--gray-100);
            font-size: 20px;
            color: var(--gray-500);
            cursor: pointer;
            border-radius: 8px;
            transition: all 0.15s ease;
        }

        .floorplan-modal-close:hover {
            background: var(--gray-100);
            color: var(--black);
        }

        .floorplan-modal-body {
            padding: 24px;
            overflow: auto;
            background: var(--gray-50);
            cursor: zoom-in;
            height: calc(92vh - 70px);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .floorplan-modal-body.zoomed {
            cursor: zoom-out;
            align-items: flex-start;
            justify-content: flex-start;
        }

        .floorplan-modal-body img {
            max-height: 100%;
            max-width: 100%;
            display: block;
            object-fit: contain;
        }

        .floorplan-modal-body.zoomed img {
            height: 180%;
            width: auto;
            cursor: zoom-out;
        }

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

        @media (max-width: 640px) {
            .kit-models {
                padding: 64px 0;
            }

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

            .model-card-image {
                padding: 16px;
            }
        }

        /* ==========================================================================
           Waitlist Modal
           ========================================================================== */

        .waitlist-modal {
            position: fixed;
            inset: 0;
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .waitlist-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .waitlist-modal-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
        }

        .waitlist-modal-container {
            position: relative;
            background: var(--white);
            border-radius: 20px;
            width: 100%;
            max-width: 440px;
            padding: 40px;
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
            transform: translateY(20px) scale(0.95);
            transition: transform 0.3s ease;
        }

        .waitlist-modal.active .waitlist-modal-container {
            transform: translateY(0) scale(1);
        }

        .waitlist-modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 40px;
            height: 40px;
            border: none;
            background: var(--gray-100);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s ease;
        }

        .waitlist-modal-close:hover {
            background: var(--gray-200);
        }

        .waitlist-modal-close svg {
            width: 20px;
            height: 20px;
            color: var(--gray-600);
        }

        .waitlist-modal-header {
            text-align: center;
            margin-bottom: 32px;
        }

        .waitlist-modal-tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--gray-500);
            background: var(--gray-100);
            padding: 6px 12px;
            border-radius: 4px;
            margin-bottom: 16px;
        }

        .waitlist-modal-header h3 {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .waitlist-modal-header p {
            font-size: 15px;
            color: var(--gray-600);
            line-height: 1.6;
        }

        .waitlist-modal-form .form-group {
            margin-bottom: 16px;
        }

        .waitlist-modal-form input {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid var(--gray-200);
            border-radius: 10px;
            font-size: 15px;
            font-family: var(--font-body);
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .waitlist-modal-form input:focus {
            outline: none;
            border-color: var(--black);
            box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
        }

        .waitlist-modal-form input::placeholder {
            color: var(--gray-400);
        }

        .waitlist-modal-form .btn-full {
            width: 100%;
            justify-content: center;
            padding: 16px 24px;
            font-size: 16px;
            margin-top: 8px;
        }

        .waitlist-modal-form .btn-full svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }

        .waitlist-modal-form .form-note {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 16px;
            font-size: 13px;
            color: var(--gray-500);
        }

        .waitlist-modal-form .form-note svg {
            width: 14px;
            height: 14px;
            flex-shrink: 0;
        }

        .waitlist-modal-success {
            text-align: center;
            padding: 20px 0;
        }

        .waitlist-modal-success .success-icon {
            width: 64px;
            height: 64px;
            background: #10b981;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
        }

        .waitlist-modal-success .success-icon svg {
            width: 32px;
            height: 32px;
            color: white;
        }

        .waitlist-modal-success h3 {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 12px;
        }

        .waitlist-modal-success p {
            font-size: 15px;
            color: var(--gray-600);
        }

        @media (max-width: 480px) {
            .waitlist-modal-container {
                padding: 32px 24px;
            }

            .waitlist-modal-header h3 {
                font-size: 24px;
            }
        }

        /* Gravity Forms styling inside modal */
        .waitlist-modal .gform_wrapper {
            margin: 0;
        }

        .waitlist-modal .gform_wrapper input:not([type="submit"]),
        .waitlist-modal .gform_wrapper textarea,
        .waitlist-modal .gform_wrapper select {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid var(--gray-200);
            border-radius: 10px;
            font-size: 15px;
            font-family: var(--font-body);
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .waitlist-modal .gform_wrapper input:focus,
        .waitlist-modal .gform_wrapper textarea:focus,
        .waitlist-modal .gform_wrapper select:focus {
            outline: none;
            border-color: var(--black);
            box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
        }

        .waitlist-modal .gform_wrapper .gfield {
            margin-bottom: 16px;
        }

        .waitlist-modal .gform_wrapper .gfield_label {
            display: none;
        }

        .waitlist-modal .gform_wrapper .gform_footer {
            margin-top: 8px;
            padding: 0;
        }

        .waitlist-modal .gform_wrapper input[type="submit"],
        .waitlist-modal .gform_wrapper button[type="submit"] {
            width: 100%;
            padding: 16px 24px;
            background: var(--black);
            color: var(--white);
            border: none;
            border-radius: 8px;
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .waitlist-modal .gform_wrapper input[type="submit"]:hover,
        .waitlist-modal .gform_wrapper button[type="submit"]:hover {
            background: var(--gray-800);
            transform: translateY(-2px);
        }

        .waitlist-modal .gform_wrapper .gform_confirmation_message {
            text-align: center;
            padding: 20px 0;
        }

        .waitlist-modal .gform_wrapper .validation_error,
        .waitlist-modal .gform_wrapper .validation_message {
            color: #dc2626;
            font-size: 13px;
            margin-top: 4px;
        }
