
        

        :root {
            --gold: #FF7209;
            --gold-light: #ff8f3c;
            --dark: #16202c;
            --dark-2: #1e2d3d;
            --cream: #ffe5c8;
            --cream-light: #fff8f2;
            --text-mid: #4a5568;
            --text-light: #718096;
            --border: rgba(255, 114, 9, 0.18);
            --white: #ffffff;
        }

     

            html.product-loading,
            html.product-loading body {
                overflow: hidden;
            }

            .product-page-loader {
                position: fixed;
                inset: 0;
                z-index: 100000;
                display: flex;
                align-items: center;
                justify-content: center;
                background:
                    radial-gradient(circle at 20% 20%, rgba(255, 114, 9, 0.12), transparent 30%),
                    radial-gradient(circle at 80% 80%, rgba(22, 32, 44, 0.08), transparent 28%),
                    linear-gradient(135deg, #fffaf5 0%, #f7eee4 100%);
                backdrop-filter: blur(4px);
                transition: opacity 0.3s ease, visibility 0.3s ease;
            }

            .product-page-loader.is-hidden {
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
            }

            .product-page-loader-inner {
                display: flex;
                align-items: center;
                gap: 18px;
                padding: 22px 28px;
                border-radius: 18px;
                border: 1px solid rgba(255, 114, 9, 0.12);
                background: rgba(255, 255, 255, 0.76);
                box-shadow: 0 24px 60px rgba(22, 32, 44, 0.12);
                color: var(--dark);
            }

            .product-page-spinner {
                width: 54px;
                height: 54px;
                border-radius: 50%;
                border: 4px solid rgba(255, 114, 9, 0.16);
                border-top-color: var(--gold);
                animation: productLoaderSpin 0.9s linear infinite;
                flex-shrink: 0;
            }

            .product-page-loader-copy {
                display: flex;
                flex-direction: column;
                gap: 4px;
                line-height: 1.2;
            }

            .product-page-loader-kicker {
                font-size: 12px;
                font-weight: 700;
                letter-spacing: 2px;
                text-transform: uppercase;
                color: var(--gold);
            }

            .product-page-loader-copy strong {
                font-size: 18px;
                font-weight: 600;
            }

            .product-page-loader-copy span:last-child {
                font-size: 14px;
                color: var(--text-mid);
            }

            @keyframes productLoaderSpin {
                to {
                    transform: rotate(360deg);
                }
            }
        

        /* ─── WHATSAPP FLOAT ─── */
        .float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            transition: transform 0.3s;
        }

        .float:hover {
            transform: scale(1.1);
        }

        .float svg {
            width: 30px;
            height: 30px;
            fill: white;
        }

       

        /* ─── HERO ─── */
        .hero {
            margin-top: 116px;
            min-height: calc(100vh - 116px);
            display: grid;
            grid-template-columns: 1fr 1fr;
            background: var(--cream);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(255, 114, 9, 0.12) 0%, transparent 70%);
            right: -100px;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
        }

        .hero-text {
            padding: 80px 60px 80px 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            z-index: 2;
        }

        .breadcrumb-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-light);
            margin-bottom: 32px;
        }

        .breadcrumb-nav a {
            color: var(--gold);
            text-decoration: none;
        }

        .breadcrumb-nav span {
            color: var(--text-light);
        }

        .hero-tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            background: rgba(255, 114, 9, 0.08);
            padding: 6px 16px;
            border-radius: 50px;
            border: 1px solid rgba(255, 114, 9, 0.2);
            margin-bottom: 24px;
            width: fit-content;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(52px, 6vw, 88px);
            font-weight: 600;
            line-height: 1.0;
            color: var(--dark);
            letter-spacing: -2px;
            margin-bottom: 8px;
        }

        .hero-title em {
            font-style: italic;
            color: var(--gold);
            font-weight: 300;
        }

        .hero-subtitle {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 400;
            font-style: italic;
            color: var(--text-mid);
            margin-bottom: 28px;
            letter-spacing: 0.5px;
        }

        .hero-desc {
            font-size: 15px;
            line-height: 1.8;
            color: var(--text-mid);
            max-width: 480px;
            margin-bottom: 44px;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .btn-primary-gold {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--gold);
            color: white;
            padding: 15px 32px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 8px 24px rgba(255, 114, 9, 0.3);
        }

        .btn-primary-gold:hover {
            background: var(--gold-light);
            transform: translateY(-3px);
            color: white;
            box-shadow: 0 12px 32px rgba(255, 114, 9, 0.4);
        }

        .btn-outline-dark {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 2px solid var(--dark);
            color: var(--dark);
            padding: 13px 28px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s;
        }

        .btn-outline-dark:hover {
            background: var(--dark);
            color: white;
            transform: translateY(-3px);
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 52px;
            padding-top: 32px;
            border-top: 1px solid var(--border);
        }

        .hero-stat-item {
            text-align: left;
        }

        .hero-stat-num {
            font-family: 'Playfair Display', serif;
            font-size: 38px;
            font-weight: 600;
            color: var(--dark);
            line-height: 1;
        }

        .hero-stat-num sup {
            font-size: 18px;
            color: var(--gold);
        }

        .hero-stat-label {
            font-size: 12px;
            font-weight: 500;
            color: var(--text-light);
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-top: 4px;
        }

        /* ─── HERO VISUAL ─── */
        .hero-visual {
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-visual-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #f5e6d3 0%, #ede0d4 50%, #e8d5c0 100%);
        }

        .hero-visual-circle {
            position: absolute;
            width: 500px;
            height: 500px;
            border: 1px solid rgba(255, 114, 9, 0.15);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .hero-visual-circle:nth-child(2) {
            width: 380px;
            height: 380px;
            border-color: rgba(255, 114, 9, 0.25);
        }

        .hero-visual-circle:nth-child(3) {
            width: 260px;
            height: 260px;
            border-color: rgba(255, 114, 9, 0.35);
        }

        .hero-product-img {
            position: relative;
            z-index: 5;
            width: 90%;
            max-width: 580px;
            filter: drop-shadow(20px 30px 50px rgba(22, 32, 44, 0.25));
            animation: floatImg 5s ease-in-out infinite;
        }

        @keyframes floatImg {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-16px);
            }
        }

        .hero-badge {
            position: absolute;
            bottom: 60px;
            left: 40px;
            background: white;
            border-radius: 16px;
            padding: 16px 24px;
            z-index: 10;
            box-shadow: 0 8px 32px rgba(22, 32, 44, 0.12);
            display: flex;
            align-items: center;
            gap: 12px;
            animation: fadeInUp 1s ease 0.8s both;
        }

        .hero-badge-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255, 114, 9, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .hero-badge-text strong {
            display: block;
            font-size: 14px;
            font-weight: 700;
            color: var(--dark);
        }

        .hero-badge-text span {
            font-size: 11px;
            color: var(--text-light);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .hero-badge-2 {
            position: absolute;
            top: 60px;
            right: 40px;
            background: var(--dark);
            border-radius: 16px;
            padding: 14px 22px;
            z-index: 10;
            box-shadow: 0 8px 32px rgba(22, 32, 44, 0.3);
            animation: fadeInDown 1s ease 1s both;
        }

        .hero-badge-2 strong {
            display: block;
            font-size: 13px;
            font-weight: 700;
            color: white;
        }

        .hero-badge-2 span {
            font-size: 11px;
            color: var(--gold);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ─── SVG BATHTUB (since no real image) ─── */
        .bathtub-svg-container {
            position: relative;
            z-index: 5;
            width: 85%;
            max-width: 560px;
            animation: floatImg 5s ease-in-out infinite;
        }

        /* ─── FEATURE STRIP ─── */
        .feature-strip {
            background: var(--dark);
            padding: 28px 60px;
            display: flex;
            justify-content: center;
            gap: 0;
            flex-wrap: wrap;
        }

        .feature-strip-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 0 40px;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
            color: white;
        }

        .feature-strip-item:last-child {
            border-right: none;
        }

        .feature-strip-item svg {
            color: var(--gold);
            flex-shrink: 0;
        }

        .feature-strip-item span {
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        /* ─── SECTION COMMONS ─── */
        section {
            padding: 90px 0;
        }

        .container {
            max-width: 1220px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .section-label {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 16px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(34px, 4vw, 52px);
            font-weight: 600;
            color: var(--dark);
            line-height: 1.1;
            letter-spacing: -1px;
        }

        .section-title em {
            font-style: italic;
            font-weight: 300;
        }

        .section-desc {
            font-size: 15px;
            line-height: 1.8;
            color: var(--text-mid);
            margin-top: 16px;
        }

        /* ─── PRODUCT OVERVIEW ─── */
        .overview {
            background: white;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .overview-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
        }

        .overview-gallery {
            position: sticky;
            top: 140px;
        }

        .main-gallery-img {
            width: 100%;
            aspect-ratio: 4/3;
            background: var(--cream);
            border-radius: 12px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            border: 1px solid var(--border);
        }

        .main-image-popup {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: zoom-in;
            text-decoration: none;
        }

        .main-image-popup img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .gallery-thumbs {
            display: flex;
            gap: 12px;
            margin-top: 16px;
        }

        .gallery-thumb {
            flex: 1;
            aspect-ratio: 1;
            background: var(--cream);
            border-radius: 8px;
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.2s;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-thumb.active {
            border-color: var(--gold);
        }

        .gallery-thumb:hover {
            border-color: var(--gold);
        }

        /* Marble texture SVGs for gallery */
        .marble-render {
            width: 100%;
            height: 100%;
        }

        .product-info h1 {
            font-family: 'Playfair Display', serif;
            font-size: 46px;
            font-weight: 600;
            line-height: 1.05;
            color: var(--dark);
            letter-spacing: -1.5px;
            margin-bottom: 8px;
        }

        .product-info h1 em {
            font-style: italic;
            color: var(--gold);
            font-weight: 300;
        }

        .product-info .product-cat {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 20px;
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 24px;
        }

        .stars {
            color: var(--gold);
            font-size: 16px;
        }

        .rating-text {
            font-size: 13px;
            color: var(--text-light);
            font-weight: 500;
        }

        .product-desc-short {
            font-size: 15px;
            line-height: 1.8;
            color: var(--text-mid);
            margin-bottom: 32px;
            border-left: 3px solid var(--gold);
            padding-left: 20px;
        }

        /* Variant selector */
        .variant-group {
            margin-bottom: 28px;
        }

        .variant-label {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--dark);
            margin-bottom: 12px;
            display: block;
        }

        .variant-options {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .variant-btn {
            padding: 8px 18px;
            border-radius: 50px;
            border: 1.5px solid var(--border);
            background: white;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-mid);
            cursor: pointer;
            transition: all 0.2s;
        }

        .variant-btn:hover,
        .variant-btn.active {
            border-color: var(--gold);
            color: var(--gold);
            background: rgba(255, 114, 9, 0.05);
        }

        .color-swatch {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.2s;
            position: relative;
        }

        .color-swatch.active,
        .color-swatch:hover {
            border-color: var(--gold);
            transform: scale(1.1);
        }

        .color-swatch::after {
            content: '';
            position: absolute;
            inset: 2px;
            border-radius: 50%;
            border: 2px solid white;
        }

        .color-swatch.white {
            background: #f5f5f0;
        }

        .color-swatch.black {
            background: #2a2a2a;
        }

        .color-swatch.beige {
            background: #c8ad8e;
        }

        .color-swatch.grey {
            background: #8a8a8a;
        }

        .product-actions {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 32px;
        }

        .btn-get-quote {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: var(--gold);
            color: white;
            padding: 18px 32px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 8px 28px rgba(255, 114, 9, 0.3);
        }

        .btn-get-quote:hover {
            background: var(--gold-light);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 12px 36px rgba(255, 114, 9, 0.4);
        }

        .btn-whatsapp {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: #25D366;
            color: white;
            padding: 16px 32px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s;
        }

        .btn-whatsapp:hover {
            background: #20b858;
            color: white;
            transform: translateY(-2px);
        }

        .trust-badges {
            display: flex;
            gap: 24px;
            margin-top: 24px;
            flex-wrap: wrap;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-mid);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .trust-badge svg {
            color: var(--gold);
        }

        /* ─── SPEC TABLE ─── */
        .specs {
            background: var(--cream-light);
            border-top: 1px solid var(--border);
        }

        .specs-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .spec-table {
            width: 100%;
            border-collapse: collapse;
        }

        .spec-table tr {
            border-bottom: 1px solid var(--border);
        }

        .spec-table tr:last-child {
            border-bottom: none;
        }

        .spec-table td {
            padding: 5px 0;
            font-size: 14px;
        }

        .spec-table td:first-child {
            font-weight: 600;
            color: var(--dark);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 12px;
            width: 40%;
        }

        .spec-table td:last-child {
            color: var(--text-mid);
        }

        .spec-highlight {
            background: var(--dark);
            color: white;
            padding: 40px;
            border-radius: 16px;
        }

        .spec-highlight h3 {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 24px;
            line-height: 1.1;
        }

        .spec-highlight h3 em {
            font-style: italic;
            color: var(--gold);
            font-weight: 300;
        }

        .spec-checklist {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .spec-checklist li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.5;
        }

        .check-dot {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .check-dot svg {
            width: 10px;
            height: 10px;
            color: white;
        }

        /* ─── VARIANTS / FINISHES ─── */
        .variants-section {
            background: white;
            border-top: 1px solid var(--border);
        }

        .variants-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-top: 48px;
        }

        .variant-card {
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s;
            cursor: pointer;
        }

        .variant-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 48px rgba(22, 32, 44, 0.12);
            border-color: var(--gold);
        }

        .variant-card-img {
            aspect-ratio: 4/3;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .variant-card-body {
            padding: 24px;
        }

        .variant-card-body h3 {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .variant-card-body p {
            font-size: 13px;
            line-height: 1.7;
            color: var(--text-mid);
        }

        .variant-tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--gold);
            background: rgba(255, 114, 9, 0.08);
            padding: 4px 12px;
            border-radius: 50px;
            margin-top: 12px;
        }

        /* ─── PROCESS ─── */
        .process-section {
            background: var(--cream);
            border-top: 1px solid var(--border);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-top: 56px;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .process-step::after {
            content: '';
            position: absolute;
            top: 32px;
            left: calc(50% + 36px);
            right: calc(-50% + 36px);
            height: 1px;
            background: var(--border);
        }

        .process-step:last-child::after {
            display: none;
        }

        .step-num {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: white;
            border: 2px solid var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 600;
            color: var(--gold);
        }

        .process-step h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .process-step p {
            font-size: 13px;
            line-height: 1.7;
            color: var(--text-mid);
        }

        .step-icon {
            font-size: 28px;
            margin-bottom: 16px;
        }

        /* ─── WHY CHOOSE ─── */
        .why-section {
            background: white;
            border-top: 1px solid var(--border);
        }

        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .why-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .why-item {
            display: flex;
            gap: 20px;
            padding: 28px 0;
            border-bottom: 1px solid var(--border);
        }

        .why-item:last-child {
            border-bottom: none;
        }

        .why-icon {
            width: 48px;
            height: 48px;
            flex-shrink: 0;
            background: rgba(255, 114, 9, 0.08);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 114, 9, 0.15);
        }

        .why-icon svg {
            color: var(--gold);
        }

        .why-item h4 {
            font-size: 17px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 6px;
        }

        .why-item p {
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-mid);
        }

        .why-visual {
            background: var(--cream);
            border-radius: 20px;
            padding: 48px;
            text-align: center;
            position: relative;
            border: 1px solid var(--border);
            overflow: hidden;
        }

        .why-visual::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 30% 70%, rgba(255, 114, 9, 0.06) 0%, transparent 60%);
        }

        .why-visual-stat {
            font-family: 'Playfair Display', serif;
            font-size: 80px;
            font-weight: 700;
            color: var(--dark);
            line-height: 1;
        }

        .why-visual-stat sup {
            font-size: 36px;
            color: var(--gold);
        }

        .why-visual p {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 8px;
        }

        .why-visual-divider {
            width: 60px;
            height: 2px;
            background: var(--gold);
            margin: 24px auto;
        }

        /* ─── TESTIMONIALS ─── */
        .testimonials {
            background: var(--dark);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .testimonials .section-label {
            color: var(--gold);
        }

        .testimonials .section-title {
            color: white;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 48px;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 32px;
            transition: all 0.3s;
        }

        .testimonial-card:hover {
            background: rgba(255, 255, 255, 0.07);
            border-color: rgba(255, 114, 9, 0.3);
        }

        .testimonial-quote {
            font-size: 36px;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 16px;
            font-family: Georgia;
        }

        .testimonial-text {
            font-size: 14px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 24px;
            font-style: italic;
        }

        .testimonial-author strong {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: white;
        }

        .testimonial-author span {
            font-size: 12px;
            color: var(--gold);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ─── FAQ ─── */
        .faq-section {
            background: var(--cream-light);
            border-top: 1px solid var(--border);
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 80px;
            align-items: start;
        }

        .faq-sidebar {
            position: sticky;
            top: 140px;
        }

        .faq-sidebar h2 {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            font-weight: 600;
            color: var(--dark);
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .faq-sidebar p {
            font-size: 14px;
            line-height: 1.8;
            color: var(--text-mid);
            margin-bottom: 32px;
        }

        .faq-contact-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gold);
            color: white;
            padding: 14px 28px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s;
        }

        .faq-contact-btn:hover {
            background: var(--gold-light);
            color: white;
            transform: translateY(-2px);
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .faq-item {
            border-bottom: 1px solid var(--border);
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px 0;
            cursor: pointer;
            text-align: left;
        }

        .faq-question span {
            font-size: 16px;
            font-weight: 600;
            color: var(--dark);
            line-height: 1.4;
            padding-right: 24px;
        }

        .faq-question .faq-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 1.5px solid var(--border);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            color: var(--gold);
        }

        .faq-item.open .faq-icon {
            background: var(--gold);
            color: white;
            border-color: var(--gold);
        }

        .faq-answer {
            overflow: hidden;
            max-height: 0;
            transition: max-height 0.4s ease;
        }

        .faq-answer-inner {
            padding: 0 0 24px;
            font-size: 14px;
            line-height: 1.8;
            color: var(--text-mid);
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
        }

        /* ─── CTA BANNER ─── */
        .cta-banner {
            background: var(--gold);
            padding: 80px 0;
        }

        .cta-inner {
            text-align: center;
        }

        .cta-inner .section-label {
            color: rgba(255, 255, 255, 0.7);
        }

        .cta-inner h2 {
            font-family: 'Playfair Display', serif;
            font-size: 54px;
            font-weight: 600;
            color: white;
            line-height: 1.1;
            margin-bottom: 20px;
            letter-spacing: -1.5px;
        }

        .cta-inner h2 em {
            font-style: italic;
            font-weight: 300;
        }

        .cta-inner p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.85);
            max-width: 560px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }

        .cta-actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-white {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: white;
            color: var(--gold);
            padding: 16px 36px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 8px 24px rgba(22, 32, 44, 0.15);
        }

        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 40px rgba(22, 32, 44, 0.2);
            color: var(--gold);
        }

        .btn-white-outline {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 2px solid rgba(255, 255, 255, 0.6);
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s;
        }

        .btn-white-outline:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: white;
            color: white;
            transform: translateY(-2px);
        }

        /* ─── FOOTER ─── */
        footer {
            background: var(--dark);
            padding: 80px 0 40px;
            text-align: center;
        }

        .footer-logo {
            margin-bottom: 28px;
        }

        .footer-logo img {
            max-width: 160px;
        }

        .footer-tagline {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-style: italic;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 40px;
        }

        .footer-links {
            display: flex;
            gap: 32px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .footer-links a {
            font-size: 13px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--gold);
        }

        .footer-divider {
            width: 80px;
            height: 1px;
            background: rgba(255, 114, 9, 0.4);
            margin: 0 auto 32px;
        }

        .footer-social {
            display: flex;
            gap: 16px;
            justify-content: center;
            margin-bottom: 32px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: all 0.2s;
            font-size: 15px;
        }

        .footer-social a:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

        .footer-copy {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.35);
        }

        .footer-copy a {
            color: var(--gold);
            text-decoration: none;
        }

        /* ─── RESPONSIVE ─── */
        @media (max-width: 1024px) {
            .hero {
                grid-template-columns: 1fr;
                min-height: auto;
            }

            .hero-visual {
                min-height: 400px;
            }

            .hero-text {
                padding: 60px 40px;
            }

            .overview-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .overview-gallery {
                position: static;
            }

            .specs-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .variants-grid {
                grid-template-columns: 1fr 1fr;
            }

            .process-steps {
                grid-template-columns: 1fr 1fr;
            }

            .process-step::after {
                display: none;
            }

            .why-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .faq-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .faq-sidebar {
                position: static;
            }
        }

        @media (max-width: 768px) {
            nav.main-nav {
                padding: 0 20px;
            }

            .nav-links {
                display: none;
            }

            .topbar {
                padding: 8px 20px;
            }

            .topbar .social-icons {
                display: none;
            }

            section {
                padding: 60px 0;
            }

            .container {
                padding: 0 20px;
            }

            .hero-text {
                padding: 40px 20px;
            }

            .hero-stats {
                gap: 24px;
            }

            .variants-grid {
                grid-template-columns: 1fr;
            }

            .process-steps {
                grid-template-columns: 1fr;
            }

            .feature-strip {
                padding: 20px;
                gap: 16px;
                flex-direction: column;
                align-items: flex-start;
            }

            .feature-strip-item {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
                padding: 12px 0;
            }

            .feature-strip-item:last-child {
                border-bottom: none;
            }

            .cta-inner h2 {
                font-size: 36px;
            }
        }

        @media (max-width: 480px) {
            .hero-actions {
                flex-direction: column;
            }

            .btn-primary-gold,
            .btn-outline-dark {
                width: 100%;
                text-align: center;
                justify-content: center;
            }
        }
  