        :root {
            --bg-main: #0a0c10;
            --bg-card: #121620;
            --bg-input: #1a2030;
            --primary-blue: #1e62ff;
            --primary-hover: #0046e5;
            --text-main: #ffffff;
            --text-muted: #8a99ad;
            --border-color: #263147;
            --accent-glow: rgba(30, 98, 255, 0.15);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Inter', sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-main);
            color: var(--text-main);
            overflow-x: hidden;
            position: relative;
        }

        /* Fixed Translucent Logo Background Element */
        .fixed-bg-logo {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70vmin;
            height: 70vmin;
            opacity: 0.055;
            pointer-events: none;
            z-index: 0;
        }

        /* Persistent Navigation Header */
        header {
            position: sticky;
            top: 0;
            width: 100%;
            background: rgba(10, 12, 16, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-color);
            z-index: 100;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .brand-block {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .brand-logo-svg {
            width: 45px;
            height: 45px;
        }

        .brand-text h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.2rem;
            letter-spacing: 2px;
            color: var(--primary-blue);
            line-height: 1.1;
        }

        .brand-text p {
            font-size: 0.75rem;
            letter-spacing: 4px;
            color: var(--text-muted);
            text-transform: uppercase;
        }

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

        nav a {
            color: var(--text-main);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s;
        }

        nav a:hover {
            color: var(--primary-blue);
        }

        .btn-call {
            background-color: var(--primary-blue);
            color: white;
            padding: 10px 22px;
            border-radius: 4px;
            text-decoration: none;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 1px;
            transition: background 0.3s, transform 0.2s;
            border: none;
            cursor: pointer;
        }

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

        /* Hero / Contact Showcase Section */
        .hero-section {
            position: relative;
            z-index: 1;
            padding: 60px 5% 40px;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        @media (max-width: 968px) {
            .hero-section {
                grid-template-columns: 1fr;
                padding-top: 30px;
            }
        }

        .hero-left {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .badge {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.8rem;
            color: var(--primary-blue);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .hero-left h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 3rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .hero-left h2 span {
            color: var(--primary-blue);
        }

        .hero-lead {
            font-size: 1.1rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 30px;
            max-width: 600px;
        }

        .hero-cta-group {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-main);
            border: 1px solid var(--border-color);
            padding: 12px 25px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            background: var(--bg-card);
            border-color: var(--primary-blue);
        }

        /* Business Contact Card Block */
        .contact-card-panel {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 35px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
        }

        .card-avatar-wrap {
            width: 90px;
            height: 90px;
            background: var(--bg-main);
            border: 2px solid var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            box-shadow: 0 0 20px var(--accent-glow);
        }

        .contact-card-panel h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.6rem;
            color: var(--primary-blue);
            letter-spacing: 1px;
            margin-bottom: 5px;
        }

        .contact-card-panel .subtitle {
            font-size: 0.85rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 25px;
        }

        .info-row {
            width: 100%;
            background: rgba(10, 12, 16, 0.4);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            padding: 15px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 15px;
            text-align: left;
        }

        .info-row svg {
            color: var(--primary-blue);
            flex-shrink: 0;
        }

        .info-label {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--text-muted);
            margin-bottom: 2px;
        }

        .info-value {
            font-size: 0.95rem;
            font-weight: 500;
        }

        /* Interactive Studio / Customizer Section */
        .studio-section {
            position: relative;
            z-index: 1;
            padding: 80px 5%;
            max-width: 1400px;
            margin: 0 auto;
            border-top: 1px solid var(--border-color);
        }

        .section-header {
            margin-bottom: 40px;
            text-align: center;
        }

        .section-header h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .section-header p {
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        .studio-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        @media (max-width: 968px) {
            .studio-container {
                grid-template-columns: 1fr;
            }
        }

        /* Visualizer Screen Canvas */
        .visualizer-canvas-box {
            background: #0f121a;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            min-height: 480px;
        }

        .cabinet-render-group {
            width: 100%;
            max-width: 380px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        /* Vector Cabinet Parts */
        .render-uppers {
            display: flex;
            gap: 15px;
            justify-content: space-between;
        }

        .render-door {
            height: 130px;
            flex: 1;
            background: #503421; /* Default walnut wood hue */
            border: 3px solid #3d2719;
            border-radius: 2px;
            position: relative;
            transition: all 0.4s ease;
            box-shadow: inset 0 0 15px rgba(0,0,0,0.5);
        }

        /* Shaker / Raised styles nested */
        .render-door-inner {
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            border: 2px solid #3d2719;
            transition: all 0.4s ease;
        }

        .render-countertop {
            height: 20px;
            background: #e5e9f0; /* Default white quartz */
            border-radius: 2px;
            width: 102%;
            margin-left: -1%;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            transition: all 0.4s ease;
        }

        .render-lowers {
            height: 160px;
            background: #503421;
            border: 3px solid #3d2719;
            border-radius: 2px;
            position: relative;
            padding: 15px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            transition: all 0.4s ease;
            box-shadow: inset 0 0 20px rgba(0,0,0,0.6);
        }

        .render-drawer {
            height: 40px;
            border: 2px solid #3d2719;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }

        .render-base-doors {
            flex: 1;
            display: flex;
            gap: 15px;
        }

        .render-base-door {
            flex: 1;
            border: 2px solid #3d2719;
            position: relative;
            display: flex;
            align-items: center;
            transition: all 0.4s ease;
        }

        /* Hardware Handles overlay */
        .render-hardware-handle {
            width: 30px;
            height: 4px;
            background: #9aa0a6; /* Default bar pull matte black / nickel */
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 1px;
            transition: all 0.3s;
        }

        .render-door .render-hardware-handle {
            top: auto;
            bottom: 20px;
            left: auto;
            right: 12px;
            transform: rotate(90deg);
        }

        /* Gloss Enamel Overlays */
        .finish-sheen-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 50%);
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s;
        }

        /* Live Tracker Summary Overlay */
        .canvas-price-tag {
            position: absolute;
            bottom: 20px;
            left: 20px;
        }

        .canvas-price-tag p {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .canvas-price-tag h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            color: #00ff66;
        }

        /* Control Options Sidebar */
        .studio-controls-sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .control-group-box {
            background: rgba(18, 22, 32, 0.6);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            padding: 20px;
        }

        .control-group-box h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 12px;
            color: var(--text-muted);
        }

        .options-grid-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .btn-option-pill {
            background: var(--bg-main);
            border: 1px solid var(--border-color);
            color: var(--text-main);
            padding: 8px 16px;
            font-size: 0.8rem;
            font-weight: 500;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.2s;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-option-pill:hover {
            border-color: var(--primary-blue);
        }

        .btn-option-pill.active {
            background: var(--primary-blue);
            border-color: var(--primary-blue);
            color: white;
            box-shadow: 0 0 10px rgba(30, 98, 255, 0.3);
        }

        /* Interactive Foot Slider custom look */
        .range-slider-wrapper {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .slider-header-flex {
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
        }

        .custom-range-input {
            width: 100%;
            -webkit-appearance: none;
            background: var(--bg-main);
            height: 6px;
            border-radius: 3px;
            outline: none;
        }

        .custom-range-input::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--primary-blue);
            cursor: pointer;
            box-shadow: 0 0 8px rgba(30, 98, 255, 0.5);
        }

        /* Order Spec Specs Panel */
        .specs-summary-panel {
            background: #0f121a;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            padding: 20px;
        }

        .spec-list-output {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .spec-list-output strong {
            color: var(--text-main);
        }

        .action-block-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        /* Portfolio Gallery Showcase */
        .portfolio-section {
            position: relative;
            z-index: 1;
            padding: 80px 5%;
            max-width: 1400px;
            margin: 0 auto;
            border-top: 1px solid var(--border-color);
        }

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

        @media (min-width: 640px) {
            .gallery-masonry-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 18px;
            }
        }

        @media (min-width: 980px) {
            .gallery-masonry-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 22px;
            }
        }

        @media (min-width: 1300px) {
            .gallery-masonry-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .gallery-category-label {
            grid-column: 1 / -1;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.8rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--primary-blue);
            margin: 18px 0 2px;
            padding-bottom: 6px;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .gallery-category-label:first-child {
            margin-top: 0;
        }

        .gallery-category-label .cat-count {
            font-family: 'Inter', sans-serif;
            font-size: 0.7rem;
            letter-spacing: 1px;
            color: var(--text-muted);
            font-weight: 400;
        }

        .gallery-card-item {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            overflow: hidden;
            position: relative;
            group: hover;
            transition: transform 0.3s;
        }

        .gallery-card-item:hover {
            transform: translateY(-5px);
        }

        .image-placeholder-frame {
            width: 100%;
            aspect-ratio: 4 / 3;
            height: auto;
            background: #171d2c;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .img-overlay-tag {
            position: absolute;
            bottom: 6px;
            left: 6px;
            right: 6px;
            background: rgba(10, 12, 16, 0.78);
            border: 1px solid var(--border-color);
            padding: 3px 8px;
            border-radius: 3px;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.58rem;
            letter-spacing: 0.6px;
            text-transform: uppercase;
            line-height: 1.2;
            text-align: center;
        }

        /* Craftsmanship Timeline Grid */
        .timeline-section {
            position: relative;
            z-index: 1;
            padding: 80px 5%;
            max-width: 1400px;
            margin: 0 auto;
            border-top: 1px solid var(--border-color);
        }

        .timeline-flow-layout {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .step-node-box {
            background: var(--bg-card);
            border-left: 3px solid var(--primary-blue);
            padding: 25px;
            border-radius: 0 6px 6px 0;
        }

        .step-num {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            font-weight: 900;
            color: rgba(30, 98, 255, 0.3);
            margin-bottom: 5px;
        }

        .step-node-box h3, .step-node-box h4 {
            font-size: 1.05rem;
            margin-bottom: 8px;
            font-family: 'Orbitron', sans-serif;
            letter-spacing: 0.5px;
        }

        .step-node-box p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* Lead Exchange Mobilo Integration Footer Block */
        .mobilo-lead-footer {
            background: linear-gradient(180deg, var(--bg-card) 0%, #06080c 100%);
            border-top: 1px solid var(--border-color);
            padding: 60px 5%;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .mobilo-container-max {
            max-width: 550px;
            margin: 0 auto;
        }

        .mobilo-header-icon {
            width: 60px;
            height: 60px;
            background: rgba(30, 98, 255, 0.1);
            border: 1px solid var(--primary-blue);
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-center: center;
            margin-bottom: 20px;
            color: var(--primary-blue);
        }

        .mobilo-container-max h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .mobilo-container-max p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 25px;
            line-height: 1.5;
        }

        .mobilo-form-wrap {
            background: var(--bg-main);
            border: 1px solid var(--border-color);
            padding: 30px;
            border-radius: 8px;
            text-align: left;
        }

        .form-field-group {
            margin-bottom: 20px;
        }

        .form-field-group label {
            display: block;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
            margin-bottom: 6px;
        }

        .form-input-element {
            width: 100%;
            background: var(--bg-input);
            border: 1px solid var(--border-color);
            border-radius: 4px;
            padding: 12px;
            color: white;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
        }

        .form-input-element:focus {
            border-color: var(--primary-blue);
        }

        .btn-submit-form {
            width: 100%;
            background: var(--primary-blue);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 4px;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 1px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .btn-submit-form:hover {
            background-color: var(--primary-hover);
        }

        footer {
            background: #06080c;
            padding: 30px 5%;
            border-top: 1px solid #161b26;
            text-align: center;
            font-size: 0.8rem;
            color: var(--text-muted);
            letter-spacing: 1px;
        }

        /* Utility classes */
        .text-blue { color: var(--primary-blue); }

        /* Portfolio photography */
        .image-placeholder-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Brand logo mark */
        .brand-logo-svg {
            object-fit: contain;
        }

        .fixed-bg-logo {
            object-fit: contain;
        }

        /* Real brand lockup in header (logo artwork already contains the wordmark) */
        header .brand-logo-svg {
            width: 52px;
            height: 52px;
            flex-shrink: 0;
        }



        header .brand-block {
            flex-shrink: 0;
        }

        .lead-form-status {
            margin-top: 14px;
            text-align: center;
            font-size: 0.8rem;
            min-height: 1.1em;
            color: var(--text-muted);
        }
        .lead-form-status.is-success { color: #35d07f; }
        .lead-form-status.is-error { color: #ff6b6b; }

        /* Language Translation Prompt Modal */
        .translate-modal-overlay {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.72);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            animation: fadeIn 0.3s ease;
        }
        .translate-modal-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 36px 32px 28px;
            max-width: 420px;
            width: 100%;
            text-align: center;
            box-shadow: 0 0 40px var(--accent-glow), 0 20px 60px rgba(0,0,0,0.5);
            animation: slideUp 0.35s ease;
        }
        .translate-modal-icon {
            color: var(--primary-blue);
            margin-bottom: 14px;
            display: flex;
            justify-content: center;
        }
        .translate-modal-card h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.35rem;
            margin-bottom: 8px;
            color: var(--text-main);
        }
        .translate-modal-card p {
            font-size: 0.92rem;
            color: var(--text-muted);
            margin-bottom: 24px;
            line-height: 1.5;
        }
        .translate-modal-actions {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .btn-translate-yes {
            background: var(--primary-blue);
            color: #fff;
            border: none;
            padding: 13px 24px;
            border-radius: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .btn-translate-yes:hover { background: var(--primary-hover); }
        .btn-translate-no {
            background: transparent;
            color: var(--text-muted);
            border: 1px solid var(--border-color);
            padding: 13px 24px;
            border-radius: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.2s;
        }
        .btn-translate-no:hover { color: var(--text-main); border-color: var(--text-muted); }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
        @keyframes slideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

        /* Hide Google Translate top banner bar */
        .goog-te-banner-frame,
        iframe.goog-te-banner-frame,
        iframe.skiptranslate,
        .goog-te-gadget-icon,
        .goog-logo-link,
        .goog-te-balloon { display: none !important; }
        body { top: 0 !important; position: relative !important; }
        .goog-tooltip, .goog-tooltip:hover { display: none !important; }
        .goog-text-highlight { background: transparent !important; box-shadow: none !important; }
        .goog-te-gadget { font-size: 0 !important; }
        .goog-te-gadget .goog-te-combo { margin: 0 !important; }
