/* =============================================================
   DShine Details — styles.css
   Extracted from index.html — all 16 style blocks combined
   ============================================================= */


/* ---- Block 1 ---- */
:root {
            --magenta: #FF1493;
            --magenta-dark: #C71585;
            --bg-lux: #FDFDFD;
            --bg-warm: #FAF9F7;
            --text-main: #1A1A1A;
            --text-light: #595959;
            --text-lighter: #767676;
            --card-white: #FFFFFF;
            --border-light: #F0F0F0;
            --border-mid: #E8E8E8;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px; /* height of sticky header + breathing room */
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        section, div[id] { scroll-margin-top: 88px; }
        
        body {
            overflow-x: hidden; 
            font-family: 'DM Sans', sans-serif; 
            background-color: var(--bg-lux); 
            color: var(--text-main);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3 { 
            font-family: 'Cormorant Garamond', serif; 
            font-weight: 600; 
        }

        /* ================================
           PERFORMANCE: content-visibility
           Defers rendering of off-screen sections, reducing TBT
        ================================ */
        .how-section,
        .services-section,
        .cities-section,
        .vip-section,
        .why-section,
        .testimonials-section,
        .faq-section,
        .problem-solution-section {
            content-visibility: auto;
            contain-intrinsic-size: 0 600px;
        }

        /* ================================
           ANIMATIONS 
        ================================ */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideIn {
            from { opacity: 0; transform: translateX(-20px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .fade-up { animation: fadeUp 0.8s ease forwards; }
        .fade-up-d1 { animation: fadeUp 0.8s ease 0.1s forwards; opacity: 0; }
        .fade-up-d2 { animation: fadeUp 0.8s ease 0.2s forwards; opacity: 0; }
        .fade-up-d3 { animation: fadeUp 0.8s ease 0.3s forwards; opacity: 0; }
        .fade-up-d4 { animation: fadeUp 0.8s ease 0.4s forwards; opacity: 0; }

        /* ================================
           HEADER 
        ================================ */
        header { 
            padding: 24px 8%; 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            background: rgba(253, 253, 253, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0,0,0,0.04);
        }

        .logo { 
            font-family: 'DM Sans', sans-serif;
            font-size: 1.5rem; 
            font-weight: 700;
            letter-spacing: 6px; 
            text-decoration: none; 
            color: var(--text-main); 
        }

        .logo span { color: var(--magenta); }

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

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

        nav a:hover { color: var(--magenta); }
        /* ── CERAMIC COATING DROPDOWN ─────────────────────────── */
        .nav-dropdown { position: relative; }
        .nav-dropdown > a { display: flex; align-items: center; gap: 5px; }
        .nav-dropdown > a::after {
            content: '';
            width: 5px; height: 5px;
            border-right: 1px solid currentColor;
            border-bottom: 1px solid currentColor;
            transform: rotate(45deg);
            margin-top: -2px;
            opacity: 0.5;
            transition: transform 0.2s;
        }
        .nav-dropdown:hover > a::after { transform: rotate(-135deg); margin-top: 2px; }

        /* Invisible bridge fills the gap so mouse doesn't lose hover */
        .nav-dropdown::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 20px;
            background: transparent;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            transform: none;
            background: white;
            border: 1px solid var(--border-light);
            box-shadow: 0 16px 48px rgba(0,0,0,0.12);
            min-width: 210px;
            z-index: 9999;
            padding: 6px 0;
            border-top: 2px solid var(--magenta);
        }
        .nav-dropdown:hover .dropdown-menu { display: block; }

        /* County dividers label */
        .dropdown-county {
            padding: 8px 20px 4px;
            font-size: 0.58rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--magenta);
            font-weight: 700;
            opacity: 0.7;
        }
        .dropdown-menu a {
            display: block;
            padding: 9px 20px 9px 28px;
            font-size: 0.68rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--text-light);
            font-weight: 500;
            transition: color 0.15s, background 0.15s, padding-left 0.15s;
            white-space: nowrap;
            text-decoration: none;
        }
        .dropdown-menu a:hover {
            color: var(--magenta);
            background: rgba(255,20,147,0.04);
            padding-left: 32px;
        }
        .dropdown-menu .dropdown-sep {
            height: 1px;
            background: var(--border-light);
            margin: 4px 0;
        }


        .btn-header { 
            text-decoration: none; 
            color: var(--text-main);
            font-weight: 600; 
            font-size: 0.68rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 0;
            transition: color 0.2s;
            position: relative;
            white-space: nowrap;
        }
        .btn-header::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100%;
            height: 1px;
            background: var(--magenta);
            transform: scaleX(0.4);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        .btn-header:hover { color: var(--magenta); }
        .btn-header:hover::after { transform: scaleX(1); }

        .mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; }

        /* ================================
           HERO 
        ================================ */
        .hero { 
            padding: 120px 8% 100px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            background: #0a0a0a;
            min-height: 90vh;
            justify-content: center;
            will-change: auto;
            overflow: hidden;
        }
        /* Video background */
        .hero-video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
        }
        .hero-video-bg video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: 30% center;
            display: block;
        }
        /* Dark overlay on top of video */
        .hero-video-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to bottom,
                rgba(0,0,0,0.65) 0%,
                rgba(0,0,0,0.55) 50%,
                rgba(0,0,0,0.72) 100%
            );
        }
        /* Mobile adjustments */
        @media (max-width: 768px) {
            .hero {
                padding: 80px 5% 70px;
                min-height: 70vh;
            }
            .hero-video-bg video {
                display: block;
            }
            .hero-video-bg::after {
                background: linear-gradient(
                    to bottom,
                    rgba(0,0,0,0.58) 0%,
                    rgba(0,0,0,0.45) 50%,
                    rgba(0,0,0,0.68) 100%
                );
            }
            .hero h1 {
                font-size: clamp(2.2rem, 10vw, 3.5rem);
            }
            .stats-bar {
                margin-top: 30px !important;
            }
        }

        .hero-badge {
            text-transform: uppercase; 
            letter-spacing: 5px; 
            font-size: 0.65rem; 
            color: var(--magenta); 
            margin-bottom: 20px; 
            font-weight: 700;
            text-shadow: 0 1px 8px rgba(0,0,0,0.8);
        }

        .hero h1 { 
            font-size: clamp(3rem, 8vw, 5.5rem); 
            line-height: 0.9; 
            margin-bottom: 24px; 
            font-weight: 600;
            color: white;
            text-shadow: 0 2px 12px rgba(0,0,0,0.8), 0 4px 32px rgba(0,0,0,0.6);
        }

        .hero h1 em {
            font-style: italic;
            font-weight: 300;
            color: var(--magenta);
        }

        .hero p { 
            max-width: 550px; 
            font-size: 1.05rem; 
            color: rgba(255,255,255,0.92); 
            margin-bottom: 50px; 
            line-height: 1.7;
            text-shadow: 0 1px 8px rgba(0,0,0,0.7);
        }

        .trust-bar { 
            margin-top: 50px;
            display: flex;
            gap: 40px;
            opacity: 0.7;
            font-size: 0.65rem;
            letter-spacing: 2.5px;
            font-weight: 700;
            flex-wrap: wrap;
            justify-content: center;
            text-transform: uppercase;
            color: white;
            text-shadow: 0 1px 3px rgba(0,0,0,0.4);
        }
        @media (max-width: 480px) {
            .trust-bar {
                display: none;
            }
        }

        /* ================================
           HOW IT WORKS 
        ================================ */
        .how-section {
            padding: 100px 8%;
            background: var(--bg-warm);
        }

        .section-label {
            text-transform: uppercase;
            letter-spacing: 5px;
            font-size: 0.65rem;
            color: var(--magenta-dark);
            font-weight: 700;
            text-align: center;
            margin-bottom: 15px;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3rem);
            text-align: center;
            margin-bottom: 60px;
            line-height: 1.1;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .step-card {
            text-align: center;
            padding: 40px 30px;
        }

        .step-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4rem;
            font-weight: 300;
            color: var(--magenta);
            line-height: 1;
            margin-bottom: 16px;
        }

        .step-card h3 {
            font-size: 1.4rem;
            margin-bottom: 12px;
        }

        .step-card p {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* ================================
           SERVICES 
        ================================ */
        .services-section {
            padding: 100px 8%;
            background: var(--card-white);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            border: 1px solid var(--border-light);
            padding: 40px 32px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 3px;
            background: var(--magenta);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .service-card:hover::before { transform: scaleX(1); }

        .service-card:hover { 
            border-color: var(--border-mid);
            box-shadow: 0 20px 40px rgba(0,0,0,0.04);
            transform: translateY(-4px);
        }

        .service-tag {
            font-size: 0.6rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--magenta-dark);
            font-weight: 700;
            margin-bottom: 12px;
        }

        /* ── Service card photo ── */
        .service-card-photo {
            width: calc(100% + 64px);
            height: 210px;
            overflow: hidden;
            margin: 0 -32px 24px -32px;
            position: relative;
        }
        .service-card-photo picture,
        .service-card-photo img {
            width: 100%; height: 100%;
            object-fit: cover;
            object-position: center center;
            display: block;
            transition: transform 0.6s cubic-bezier(.22,1,.36,1);
        }
        .service-card:hover .service-card-photo img { transform: scale(1.04); }
        .service-card-photo-label {
            position: absolute; bottom: 0; left: 0; right: 0;
            padding: 10px 16px;
            background: linear-gradient(transparent, rgba(0,0,0,0.55));
            font-size: 0.55rem; letter-spacing: 2.5px; text-transform: uppercase;
            color: rgba(255,255,255,0.75); font-weight: 600;
            font-family: 'DM Sans', sans-serif;
        }

        .service-card h3 {
            font-size: 1.6rem;
            margin-bottom: 4px;
        }

        .service-subtitle {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.72rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.8px;
            color: var(--magenta);
            margin-bottom: 14px;
            display: block;
        }

        .service-price {
            font-family: 'DM Sans', sans-serif;
            font-size: 2rem;
            color: var(--text-main);
            margin-bottom: 16px;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .service-card p {
            font-size: 0.88rem;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .service-features {
            list-style: none;
            margin-bottom: 24px;
        }

        .service-features li {
            font-size: 0.82rem;
            color: var(--text-light);
            padding: 5px 0;
            padding-left: 18px;
            position: relative;
        }

        .service-features li::before {
            content: '';
            position: absolute;
            left: 0; top: 12px;
            width: 6px; height: 6px;
            background: var(--magenta);
            border-radius: 50%;
        }

        .btn-quote {
            display: inline-block;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 700;
            color: var(--text-main);
            border-bottom: 2px solid var(--magenta);
            padding-bottom: 4px;
            cursor: pointer;
            transition: color 0.3s;
            text-decoration: none;
        }

        .btn-quote:hover { color: var(--magenta); }

        /* ================================
           CALCULATOR 
        ================================ */
        .calc-section {
            padding: 100px 8%;
            /* UPDATED: url('calc-bg') removed — asset does not exist; gradient-only */
            background: 
                linear-gradient(
                    to bottom,
                    rgba(253, 253, 253, 0.88) 0%,
                    rgba(253, 253, 253, 0.75) 40%,
                    rgba(253, 253, 253, 0.92) 100%
                );
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }

        .calc-section .section-label {
            color: var(--magenta-dark);
        }

        .calc-section .section-title {
            color: var(--text-main);
        }

        .calc-container { 
            background: rgba(255, 255, 255, 0.95);
            padding: 50px 44px;
            box-shadow: 0 40px 80px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.04);
            width: 100%;
            max-width: 520px;
            border: 1px solid var(--border-light);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }
        .calc-side-layout .calc-container {
            max-width: 100%;
        }
        @media (max-width: 900px) {
            .calc-side-layout {
                display: flex !important;
                flex-direction: column;
                gap: 24px;
            }
        }

        .calc-group { 
            margin-bottom: 24px; 
            text-align: left; 
        }

        .calc-group label { 
            display: block; 
            font-size: 0.65rem; 
            text-transform: uppercase; 
            letter-spacing: 2.5px; 
            margin-bottom: 10px; 
            color: var(--text-light); 
            font-weight: 500;
        }
        
        select { 
            width: 100%; 
            padding: 16px; 
            border: 1px solid var(--border-light); 
            background: var(--bg-lux);
            font-family: 'DM Sans', sans-serif;
            font-size: 0.95rem;
            outline: none;
            cursor: pointer;
            color: var(--text-main);
            -webkit-appearance: none;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23999' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            transition: border-color 0.3s;
        }

        select:focus { border-color: var(--magenta); }

        .addons-section { margin-bottom: 24px; }

        .addons-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }

        .addon-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 12px;
            border: 1px solid var(--border-light);
            cursor: pointer;
            transition: all 0.3s;
            font-size: 0.8rem;
        }

        .addon-item:hover { border-color: var(--magenta); }
        .addon-item.active { 
            border-color: var(--magenta); 
            background: rgba(255,20,147,0.03);
        }

        .addon-item input[type="checkbox"] {
            accent-color: var(--magenta);
            cursor: pointer;
        }

        .addon-price { 
            color: var(--text-lighter); 
            font-size: 0.75rem;
            margin-left: auto;
        }

        .price-display-area {
            text-align: center;
            padding: 30px 0;
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
            margin-bottom: 24px;
        }

        .price-from {
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--text-lighter);
            margin-bottom: 4px;
        }

        .price-tag { 
            font-family: 'DM Sans', sans-serif; 
            font-size: 4rem; 
            color: var(--text-main); 
            font-weight: 700;
            line-height: 1;
            letter-spacing: -2px;
        }

        .btn-reserve { 
            width: 100%; 
            padding: 20px; 
            background: var(--text-main); 
            color: white; 
            border: none; 
            font-family: 'DM Sans', sans-serif;
            font-weight: 700; 
            font-size: 0.75rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            cursor: pointer;
            transition: 0.4s;
        }

        .btn-reserve:hover { background: var(--magenta); }

        /* ================================
           CITIES 
        ================================ */
        .cities-section { 
            padding: 100px 8%; 
            text-align: center; 
            background: var(--card-white); 
        }

        .city-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); 
            gap: 16px; 
            max-width: 1200px;
            margin: 60px auto 0; 
        }

        /* City groups with ceramic coating badge */
        .city-group {
            display: contents; /* renders children directly in grid */
        }
        .city-row {
            grid-column: span 1;
            border: 1px solid var(--border-light);
            background: var(--card-white);
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        .city-row:hover {
            border-color: rgba(255,20,147,0.3);
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        }
        .city-row-main {
            display: block;
            padding: 18px 20px 14px;
            text-decoration: none;
            color: var(--text-main);
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            border-bottom: 1px solid var(--border-light);
        }
        .city-row-main:hover { color: var(--text-main); }
        .city-row-services {
            display: flex;
            gap: 0;
        }
        .city-svc-link {
            flex: 1;
            display: block;
            padding: 10px 12px;
            font-size: 0.6rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            font-weight: 600;
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.2s, background 0.2s;
            border-right: 1px solid var(--border-light);
            text-align: center;
        }
        .city-svc-link:last-child { border-right: none; }
        .city-svc-link:hover { color: var(--text-main); background: var(--bg-warm); }
        .city-svc-link.ceramic {
            color: var(--magenta);
            font-weight: 700;
        }
        .city-svc-link.ceramic:hover { background: rgba(255,20,147,0.05); }
        .city-svc-icon {
            display: block;
            font-size: 0.55rem;
            opacity: 0.5;
            margin-top: 2px;
            font-weight: 400;
            letter-spacing: 1px;
        }

        /* Why differentiators responsive grid */
        @media (max-width: 768px) {
            .why-diff-grid {
                grid-template-columns: 1fr !important;
                gap: 32px !important;
                max-width: 100% !important;
            }
            .why-diff-grid > div {
                padding-bottom: 24px;
                border-bottom: 1px solid var(--border-light);
            }
            .why-diff-grid > div:last-child { border-bottom: none; }
        }

        @media (max-width: 640px) {
            .wa-float { width: 48px; height: 48px; bottom: 16px; right: 16px; }
            .wa-float svg { width: 22px; height: 22px; }
            .wa-badge { display: none; }
        }

        @media (max-width: 640px) {
            .city-row-main { font-size: 0.68rem; padding: 14px 16px 12px; }
            .city-svc-link { font-size: 0.56rem; padding: 9px 8px; }
        }

        .city-item { 
            padding: 28px 20px; 
            border: 1px solid var(--border-light); 
            transition: all 0.3s;
            cursor: pointer;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 500;
            text-decoration: none;
            color: var(--text-main);
            display: block;
        }

        .city-item:hover { 
            border-color: var(--magenta); 
            color: var(--magenta); 
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.03);
        }

        .city-tier {
            font-size: 0.55rem;
            display: block;
            margin-top: 6px;
            letter-spacing: 1px;
            opacity: 0.5;
            text-transform: uppercase;
        }

        /* ================================
           VIP PROGRAMS 
        ================================ */
        .vip-section {
            padding: 100px 8%;
            color: var(--card-white);
            position: relative;
            overflow: hidden;
            background: var(--text-main);
        }

        /* Blurred photo background */
        .vip-section::before {
            content: '';
            position: absolute;
            inset: -30px;
            background: url('vip-bg.jpg') center / cover no-repeat;
            filter: blur(8px) brightness(0.45) saturate(0.7);
            transform: scale(1.08);
            z-index: 0;
        }

        /* Dark overlay 45% on top of blurred image */
        .vip-section::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.45);
            z-index: 1;
        }

        /* All direct children sit above both layers */
        .vip-section > * {
            position: relative;
            z-index: 2;
        }

        .vip-section .section-label { color: var(--magenta-dark); }
        .vip-section .section-title { color: var(--card-white); }

        .vip-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            max-width: 900px;
            margin: 0 auto;
        }

        .vip-card {
            border: 1px solid rgba(255,255,255,0.1);
            padding: 48px 36px;
            position: relative;
            transition: all 0.4s;
        }

        .vip-card:hover {
            border-color: var(--magenta);
        }

        .vip-card.featured {
            border-color: var(--magenta);
        }

        .vip-card.featured::after {
            content: 'MOST POPULAR';
            position: absolute;
            top: -1px; right: 30px;
            background: var(--magenta);
            color: white;
            font-size: 0.55rem;
            letter-spacing: 2px;
            padding: 6px 14px;
            font-weight: 700;
        }

        .vip-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            margin-bottom: 6px;
        }

        .vip-price {
            font-family: 'DM Sans', sans-serif;
            font-size: 3rem;
            color: var(--card-white);
            font-weight: 700;
            line-height: 1;
            margin-bottom: 6px;
            letter-spacing: -1px;
        }

        .vip-price-note {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.4);
            margin-bottom: 24px;
        }

        .vip-features {
            list-style: none;
        }

        .vip-features li {
            font-size: 0.85rem;
            padding: 8px 0;
            padding-left: 20px;
            position: relative;
            color: rgba(255,255,255,0.7);
        }

        .vip-features li::before {
            content: '';
            position: absolute;
            left: 0; top: 15px;
            width: 6px; height: 6px;
            background: var(--magenta);
            border-radius: 50%;
        }

        .vip-note {
            text-align: center;
            max-width: 600px;
            margin: 40px auto 0;
            font-size: 0.8rem;
            color: rgba(255,255,255,0.65);
            line-height: 1.7;
        }

        /* ================================
           WHY DSHINE 
        ================================ */
        .why-section {
            padding: 100px 8%;
            background: var(--bg-warm);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .why-card {
            text-align: center;
            padding: 36px 24px;
        }

        .why-icon {
            font-size: 1.6rem;
            margin-bottom: 16px;
            display: block;
        }

        .why-card h3 {
            font-size: 1.3rem;
            margin-bottom: 8px;
        }

        .why-card p {
            font-size: 0.85rem;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* ================================
           TESTIMONIALS 
        ================================ */
        .testimonials-section {
            padding: 100px 8%;
            background: var(--card-white);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .testimonial-card {
            border: 1px solid var(--border-light);
            padding: 36px 30px;
        }

        .testimonial-stars {
            color: var(--magenta);
            font-size: 0.9rem;
            letter-spacing: 2px;
            margin-bottom: 16px;
        }

        .testimonial-card p {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.15rem;
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 20px;
            color: var(--text-main);
        }

        .testimonial-author {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--text-lighter);
            font-weight: 500;
        }

        .testimonial-detail {
            font-size: 0.7rem;
            color: var(--text-lighter);
            margin-top: 4px;
        }

        /* ================================
           FAQ 
        ================================ */
        .faq-section {
            padding: 100px 8%;
            background: var(--bg-warm);
        }

        .faq-container {
            max-width: 700px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid var(--border-light);
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 24px 0;
            font-family: 'DM Sans', sans-serif;
            font-size: 1rem;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-main);
            font-weight: 500;
        }

        .faq-question:hover { color: var(--magenta); }

        .faq-arrow {
            font-size: 1.2rem;
            transition: transform 0.3s;
            color: var(--magenta);
        }

        .faq-item.open .faq-arrow { transform: rotate(45deg); }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
            padding-bottom: 24px;
        }

        .faq-answer p {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.8;
        }

        /* ================================
           TRUST BADGES BAR 
        ================================ */
        .trust-badges-bar {
            background: var(--card-white);
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
            padding: 24px 8%;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 48px;
            flex-wrap: wrap;
        }

        .trust-badge-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 600;
            color: var(--text-light);
        }

        .trust-badge-icon {
            width: 36px;
            height: 36px;
            border: 1.5px solid var(--border-mid);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            background: var(--bg-warm);
            flex-shrink: 0;
        }

        /* ================================
           STATS BAR 
        ================================ */
        .stats-bar {
            display: flex;
            justify-content: center;
            gap: 60px;
            flex-wrap: wrap;
            margin: 0 auto;
            max-width: 900px;
        }
        @media (max-width: 480px) {
            .stats-bar {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px 30px;
                max-width: 100%;
                padding: 0 20px;
            }
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-family: 'DM Sans', sans-serif;
            font-size: 2.4rem;
            font-weight: 700;
            color: white;
            letter-spacing: -1px;
            line-height: 1;
            display: block;
            text-shadow: 0 2px 12px rgba(0,0,0,0.7), 0 0 30px rgba(0,0,0,0.5);
        }

        .stat-label {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255,255,255,0.85);
            margin-top: 6px;
            display: block;
            text-shadow: 0 1px 6px rgba(0,0,0,0.8);
        }

        /* ================================
           PROGRESSIVE DISCOUNT BANNER 
        ================================ */
        .discount-banner {
            background: linear-gradient(135deg, rgba(255,20,147,0.04) 0%, rgba(255,20,147,0.08) 100%);
            border: 1px solid rgba(255,20,147,0.2);
            padding: 16px 20px;
            margin-bottom: 20px;
            display: none;
        }

        .discount-banner.visible { display: block; }

        .discount-banner-title {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--magenta);
            margin-bottom: 8px;
        }

        .discount-banner p {
            font-size: 0.82rem;
            color: var(--text-light);
            margin-bottom: 10px;
        }

        .inline-lead-capture {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .inline-lead-capture-row {
            display: flex;
            gap: 8px;
        }

        .inline-lead-capture input {
            flex: 1;
            padding: 10px 14px;
            border: 1px solid var(--border-mid);
            font-family: 'DM Sans', sans-serif;
            font-size: 0.85rem;
            outline: none;
            background: white;
            min-width: 0;
        }

        .inline-lead-capture input:focus { border-color: var(--magenta); }

        .inline-lead-capture button {
            width: 100%;
            padding: 12px 18px;
            background: var(--magenta);
            color: white;
            border: none;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            cursor: pointer;
            white-space: nowrap;
            transition: background 0.3s;
        }

        .inline-lead-capture button:hover { background: var(--magenta-dark); }

        .discount-captured {
            font-size: 0.82rem;
            color: var(--magenta);
            font-weight: 600;
        }

        /* ================================
           PROBLEM-SOLUTION SECTION
        ================================ */
        .problem-solution-section {
            padding: 100px 8%;
            background: var(--card-white);
        }

        .challenge-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 24px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .challenge-card {
            border: 1px solid var(--border-light);
            padding: 32px 28px;
            transition: all 0.3s;
        }

        .challenge-card:hover {
            border-color: var(--magenta);
            transform: translateY(-2px);
        }

        .challenge-city {
            font-size: 0.6rem;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            color: var(--magenta-dark);
            font-weight: 700;
            margin-bottom: 10px;
        }

        .challenge-problem {
            font-size: 0.8rem;
            color: var(--text-lighter);
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-light);
            line-height: 1.6;
        }

        .challenge-problem strong {
            display: block;
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--text-lighter);
            margin-bottom: 4px;
        }

        .challenge-solution {
            font-size: 0.82rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        .challenge-solution strong {
            display: block;
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--magenta-dark);
            margin-bottom: 4px;
        }

        /* ================================
           FOOTER 
        ================================ */

        @media (max-width: 640px) {
            .video-reel-header { grid-template-columns: 1fr !important; gap: 24px !important; }
            .video-thumb-grid { grid-template-columns: 1fr !important; gap: 8px !important; }
            .video-thumb-item { grid-column: span 1 !important; }
        }

        footer {
            padding: 60px 8% 40px;
            background: var(--text-main);
            color: rgba(255,255,255,0.5);
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 30px;
        }

        .footer-logo {
            font-family: 'DM Sans', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 6px;
            color: white;
        }

        .footer-logo span { color: var(--magenta); }

        .footer-links {
            display: flex;
            gap: 16px 24px;
            flex-wrap: wrap;
            justify-content: flex-end;
            max-width: calc(100% - 120px);
        }

        .footer-links a {
            color: rgba(255,255,255,0.4);
            text-decoration: none;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: color 0.3s;
        }

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

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            font-size: 0.7rem;
            letter-spacing: 1px;
            flex-wrap: wrap;
            gap: 10px;
        }


        /* ================================
           FLOATING ACTION BUTTONS STACK
        ================================ */
        .float-stack {
            position: fixed;
            bottom: 24px;
            right: 20px;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 12px;
            z-index: 998;
        }

        .float-btn {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 6px 24px rgba(0,0,0,0.18);
            transition: transform 0.25s, box-shadow 0.25s;
            position: relative;
            flex-shrink: 0;
        }
        .float-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 32px rgba(0,0,0,0.25);
        }

        /* WhatsApp */
        .float-btn.wa  { background: #111111; }
        .float-btn.wa:hover { background: #25D366; }

        /* Call */
        .float-btn.call { background: #111111; }
        .float-btn.call:hover { background: var(--magenta); }

        /* SMS */
        .float-btn.sms  { background: #111111; }
        .float-btn.sms:hover { background: #4A90D9; }

        .float-btn svg  { width: 22px; height: 22px; color: white; flex-shrink: 0; }

        /* Hover tooltip label */
        .float-label {
            position: absolute;
            right: calc(100% + 12px);
            top: 50%;
            transform: translateY(-50%);
            background: var(--text-main);
            color: white;
            font-size: 0.6rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 5px 10px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s, transform 0.2s;
            transform: translateY(-50%) translateX(6px);
        }
        .float-label::after {
            content: '';
            position: absolute;
            right: -5px;
            top: 50%;
            transform: translateY(-50%);
            border: 5px solid transparent;
            border-left-color: var(--text-main);
            border-right: none;
        }
        .float-btn:hover .float-label {
            opacity: 1;
            transform: translateY(-50%) translateX(0);
        }

        /* Live dot on WA */
        .float-dot {
            position: absolute;
            top: 2px;
            right: 2px;
            width: 10px;
            height: 10px;
            background: #25D366;
            border-radius: 50%;
            border: 2px solid white;
            animation: pulse-dot 2s infinite;
        }
        @keyframes pulse-dot {
            0%, 100% { transform: scale(1); opacity: 1; }
            50%       { transform: scale(1.3); opacity: 0.8; }
        }

        @media (max-width: 640px) {
            .float-stack  { bottom: 16px; right: 14px; gap: 10px; }
            .float-btn    { width: 46px; height: 46px; }
            .float-btn svg{ width: 19px; height: 19px; }
            .float-label  { display: none; }
        }

        /* wa-float removed — replaced by float-stack */

        .wa-badge {
            position: absolute;
            right: 68px;
            top: 50%;
            transform: translateY(-50%) translateX(6px);
            background: var(--text-main);
            border: 1px solid rgba(255,20,147,0.4);
            color: white;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.58rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            white-space: nowrap;
            padding: 7px 14px;
            pointer-events: none;
            opacity: 0;
            transition: all 0.3s;
            box-shadow: 0 4px 16px rgba(0,0,0,0.2);
        }

        .wa-badge::before {
            content: '';
            position: absolute;
            right: -5px;
            top: 50%;
            transform: translateY(-50%);
            width: 0; height: 0;
            border-top: 5px solid transparent;
            border-bottom: 5px solid transparent;
            border-left: 5px solid rgba(255,20,147,0.4);
        }

        /* Persistent green dot — always visible */
        .wa-dot {
            position: absolute;
            top: 2px;
            right: 2px;
            width: 11px;
            height: 11px;
            background: #22c55e;
            border-radius: 50%;
            border: 2px solid var(--card-white);
            animation: waPulse 2.5s ease-in-out infinite;
        }

        @keyframes waPulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
            50% { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
        }

        /* ================================
           MOBILE MENU OVERLAY
        ================================ */
        .mobile-menu-overlay {
            /* Base rules kept for JS toggle — full styles in mobile menu <style> block below HTML */
            display: none;
            position: fixed;
            inset: 0;
            z-index: 9999;
        }
        .mobile-menu-overlay.active {
            display: flex;
        }
        .mobile-menu-close {
            /* Kept for any legacy refs — new selector: .mmenu-close */
        }
        .mobile-menu-links a {
            /* Kept for legacy — new selector: .mmenu-link */
        }

        /* ================================
           RESPONSIVE 
        ================================ */
        @media (max-width: 900px) {
            .btn-header { display: none !important; }
            /* Desktop nav hidden on mobile — new #mobile-menu overlay handles navigation */
            header > nav { display: none !important; }
            
            .mobile-menu-btn { 
                display: block; 
                position: relative;
                z-index: 10000;
            }
            
            .mobile-menu-btn svg {
                transition: all 0.3s ease;
            }
            
            .mobile-menu-btn.active svg line:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            
            .mobile-menu-btn.active svg line:nth-child(2) {
                opacity: 0;
            }
            
            .mobile-menu-btn.active svg line:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
            
            .steps-grid,
            .why-grid,
            .testimonials-grid { grid-template-columns: 1fr; }

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

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

            .footer-top { flex-direction: column; }
            .footer-links { max-width: 100%; justify-content: center; gap: 12px 16px; }
            .footer-links a { font-size: 0.65rem; }
            .footer-bottom { flex-direction: column; text-align: center; }

            header { padding: 18px 6%; }
            .hero { padding: 80px 6% 60px; }
            .how-section, .services-section, .calc-section,
            .cities-section, .vip-section, .why-section,
            .testimonials-section, .faq-section { padding: 70px 6%; }

            .calc-container { padding: 36px 24px; }
            .addons-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 600px) {
            .city-grid { grid-template-columns: repeat(2, 1fr); }
            .trust-bar { gap: 20px; }
        }
    
        /* ================================
           QUALITY COMMITMENT SECTION (responsive)
        ================================ */
        @media (max-width: 900px) {
            #commitment > div > div[style*="grid-template-columns:1fr 1fr"] {
                grid-template-columns: 1fr !important;
                gap: 32px !important;
            }
        }
        @media (max-width: 700px) {
            #commitment {
                padding: 72px 6% !important;
            }
            #commitment .distinction-grid {
                grid-template-columns: 1fr !important;
            }
        }
        
        /* Mobile hero — video handles background, just fix padding/sizing */
        @media (max-width: 828px) {
            .hero {
                padding: 80px 6% 60px !important;
                min-height: 85vh !important;
            }
            .hero h1 {
                font-size: clamp(2.4rem, 10vw, 3.5rem) !important;
                color: white !important;
                text-shadow: 0 2px 12px rgba(0,0,0,0.9), 0 4px 32px rgba(0,0,0,0.7) !important;
            }
            .hero p {
                font-size: 1rem !important;
                color: rgba(255,255,255,0.92) !important;
                text-shadow: 0 1px 8px rgba(0,0,0,0.8) !important;
            }
            .hero-badge {
                color: var(--magenta) !important;
                text-shadow: 0 1px 8px rgba(0,0,0,0.8) !important;
            }
            /* Stats grid fix - 2 columns on mobile */
            .stats-bar {
                display: grid !important;
                grid-template-columns: 1fr 1fr !important;
                gap: 20px !important;
                width: 100% !important;
                max-width: 100% !important;
                padding: 0 4% !important;
            }
            .stat-item {
                background: transparent;
                padding: 8px 4px;
            }
            .stat-number {
                font-size: 1.8rem !important;
            }
            /* Prevent horizontal overflow */
            body {
                overflow-x: hidden !important;
            }
            
            /* Footer mobile optimization */
            footer > div {
                padding: 40px 6% 24px !important;
            }
            footer > div > div:first-child {
                grid-template-columns: 1fr !important;
                gap: 36px !important;
            }
            footer h3 {
                font-size: 0.7rem !important;
                margin-bottom: 16px !important;
            }
            footer nav {
                gap: 10px !important;
            }
            footer nav a,
            footer a[href^="tel"],
            footer a[href^="https://wa.me"] {
                font-size: 0.85rem !important;
            }
            footer > div > div:last-child {
                flex-direction: column !important;
                text-align: center !important;
                gap: 12px !important;
            }
        }

/* ---- Block 2 ---- */
/* ---- GLOBAL: prevent horizontal overflow ---- */
        html, body { overflow-x: hidden; max-width: 100vw; }
        * { box-sizing: border-box; }

        /* ---- HERO STATS: 2x2 grid on mobile ---- */
        @media (max-width: 600px) {
            .stats-bar {
                display: grid !important;
                grid-template-columns: 1fr 1fr !important;
                gap: 20px 32px !important;
                max-width: 340px !important;
                margin: 36px auto 0 !important;
            }
            .stat-item {
                text-align: center;
                border-bottom: 1px solid rgba(255,255,255,0.1);
                padding-bottom: 12px;
            }
            .stat-number { font-size: 1.9rem !important; }
        }

        /* ---- TRUST BAR: hide on small mobile ---- */
        @media (max-width: 600px) {
            .trust-bar { display: none !important; }
        }

        /* ---- HERO: tighter padding + lighter overlay ---- */
        @media (max-width: 768px) {
            .hero {
                padding: 70px 6% 60px !important;
                min-height: 75vh !important;
                background-attachment: scroll !important;
            }
        }

        /* ---- INLINE 2-COLUMN GRIDS: collapse to 1 column on mobile ---- */
        @media (max-width: 768px) {
            /* Brand story section */
            [style*="grid-template-columns: 1fr 1fr"],
            [style*="grid-template-columns:1fr 1fr"] {
                grid-template-columns: 1fr !important;
                gap: 40px !important;
            }
            /* Wide gap grids */
            [style*="gap: 80px"],
            [style*="gap: 96px"],
            [style*="gap: 64px"] {
                gap: 32px !important;
            }
        }

        /* ---- STATS GRID IN BRAND SECTION: collapse on mobile ---- */
        @media (max-width: 768px) {
            [style*="grid-template-columns:1fr 1fr; gap:2px"] {
                grid-template-columns: 1fr 1fr !important;
            }
        }

        /* ---- SECTION PADDING: reduce on mobile ---- */
        @media (max-width: 600px) {
            section[style*="padding: 80px 8%"],
            section[style*="padding:80px 8%"],
            section[style*="padding: 100px 8%"],
            section[style*="padding:100px 8%"] {
                padding: 60px 5% !important;
            }
        }

        /* ---- TYPOGRAPHY: scale down large text on mobile ---- */
        @media (max-width: 480px) {
            h1 { font-size: clamp(2rem, 9vw, 3rem) !important; }
            h2 { font-size: clamp(1.5rem, 7vw, 2.5rem) !important; }
        }

/* ---- Block 3 ---- */
/* ================================
   MOBILE MENU — REDESIGNED
================================ */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 100vh;
    background: #111111;
    z-index: 9999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}
.mobile-menu-overlay.active {
    display: flex;
    transform: translateY(0);
}
@keyframes mmenuSlideIn {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Header */
.mmenu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 6%;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
}
.mmenu-logo {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: white;
    text-transform: uppercase;
}
.mmenu-logo span { color: #FF1493; }
.mmenu-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.mmenu-close:hover { color: white; }

/* Nav links */
.mmenu-nav {
    flex: 1;
    min-height: 0;
    padding: 8px 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
}
.mmenu-link {
    display: block;
    width: 100%;
    padding: 18px 6%;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FFFFFF;
    background: rgba(255,255,255,0.03);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: color 0.2s, background 0.2s;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
}
.mmenu-link:hover,
.mmenu-link:active { 
    color: #FF1493; 
    background: rgba(255,255,255,0.08); 
}

/* Accordion */
.mmenu-accordion {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
    flex-shrink: 0;
}
.mmenu-acc-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 6%;
    background: rgba(255,255,255,0.03);
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FF1493;
    text-align: left;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s;
}
.mmenu-acc-trigger:active { background: rgba(255,20,147,0.08); }
.mmenu-acc-arrow {
    flex-shrink: 0;
    transition: transform 0.25s ease;
    color: rgba(255,20,147,0.7);
}
.mmenu-acc-trigger[aria-expanded="true"] .mmenu-acc-arrow {
    transform: rotate(180deg);
}

/* Accordion body — simple max-height for iOS compatibility */
.mmenu-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: rgba(0,0,0,0.3);
}
.mmenu-acc-body.open {
    max-height: 1800px;
}
.mmenu-acc-body a {
    display: block;
    padding: 16px 6% 16px calc(6% + 20px);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: color 0.15s, background 0.15s;
    -webkit-tap-highlight-color: transparent;
}
.mmenu-acc-body a::before {
    content: '→ ';
    color: rgba(255,20,147,0.5);
    margin-right: 8px;
}
.mmenu-acc-body a:active {
    color: #FF1493;
    background: rgba(255,20,147,0.05);
}
.mmenu-acc-body a:last-child { border-bottom: none; }

/* Bottom CTAs */
.mmenu-ctas {
    padding: 20px 6% 36px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
}
.mmenu-cta-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: border-color 0.2s, color 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.mmenu-cta-call:active { border-color: white; color: white; }
.mmenu-cta-wa {
    display: block;
    padding: 16px;
    background: #FF1493;
    color: white;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    transition: background 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.mmenu-cta-wa:active { background: #C71585; }

/* ---- Block 4 ---- */
@keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(0.85); }
        }

/* ---- Block 5 ---- */
@keyframes marqueeScroll {
        0%   { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    #specialization-strip:hover #marquee-track {
        animation-play-state: paused;
    }
    .spec-brand {
        font-family: 'DM Sans', sans-serif;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: white;
        white-space: nowrap;
        padding: 22px 24px;
        display: inline-block;
        transition: color 0.25s;
    }
    .spec-brand:hover { color: var(--magenta); }
    .spec-dot {
        font-size: 0.55rem;
        color: rgba(255,20,147,0.5);
        font-weight: 700;
        flex-shrink: 0;
        display: inline-block;
    }
    .spec-label {
        font-family: 'DM Sans', sans-serif;
        font-size: 0.62rem;
        font-weight: 400;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: rgba(255,255,255,0.28);
        white-space: nowrap;
        padding: 22px 28px;
        display: inline-block;
        font-style: italic;
    }
    .spec-spacer { display: inline-block; }

/* ---- Block 6 ---- */
@keyframes priceMarquee {
        0%   { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    #pricing-strip:hover #pricing-track {
        animation-play-state: paused;
    }
    .price-item {
        font-family: 'DM Sans', sans-serif;
        font-size: 0.72rem;
        font-weight: 500;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--text-light);
        white-space: nowrap;
        padding: 18px 28px;
        display: inline-block;
        text-decoration: none;
        transition: color 0.25s;
    }
    .price-item strong {
        color: var(--text-main);
        font-weight: 700;
        margin-left: 6px;
    }
    .price-item:hover { color: var(--magenta); }
    .price-item:hover strong { color: var(--magenta); }
    .price-item.ceramic {
        color: var(--magenta);
        font-weight: 700;
    }
    .price-item.ceramic strong {
        color: var(--magenta);
    }
    .price-dot {
        font-size: 0.7rem;
        color: var(--border-mid);
        font-weight: 700;
        flex-shrink: 0;
        display: inline-block;
    }

/* ---- Block 7 ---- */
/* ================================
   HOW IT WORKS — ANIMATED STYLES
================================ */
.steps-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

/* Progress line connecting steps */
.timeline-line {
    position: absolute;
    top: 60px;
    left: 16%;
    right: 16%;
    height: 2px;
    background: var(--border-light);
    z-index: 0;
}
.timeline-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--magenta), #FF69B4);
    transition: width 1.5s ease;
    border-radius: 2px;
}

/* Individual step card */
.step-animated {
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.step-animated.visible {
    opacity: 1;
    transform: translateY(0);
}
.step-animated[data-step="2"] { transition-delay: 0.2s; }
.step-animated[data-step="3"] { transition-delay: 0.4s; }

/* Icon wrapper with pulse animation */
.step-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
}
.step-icon {
    width: 100px;
    height: 100px;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}
.step-icon svg {
    width: 44px;
    height: 44px;
    color: var(--text-main);
    transition: all 0.4s ease;
}
.step-animated:hover .step-icon {
    border-color: var(--magenta);
    transform: scale(1.08);
    box-shadow: 0 10px 40px rgba(255,20,147,0.15);
}
.step-animated:hover .step-icon svg {
    color: var(--magenta);
}

/* Pulse ring animation */
.step-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--magenta);
    border-radius: 50%;
    opacity: 0;
    z-index: 1;
}
.step-animated.visible .step-pulse {
    animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Step number badge */
.step-number-badge {
    position: absolute;
    top: -8px;
    right: calc(50% - 60px);
    background: var(--magenta);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 3;
}

/* Text content */
.step-animated h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 12px;
    letter-spacing: 0.5px;
}
.step-animated > p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 0 20px;
    padding: 0 10px;
}

/* Feature tags */
.step-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}
.step-features span {
    font-size: 0.72rem;
    background: var(--bg-warm);
    border: 1px solid var(--border-light);
    padding: 8px 14px;
    border-radius: 20px;
    color: var(--text-light);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    line-height: 1;
    vertical-align: middle;
}
.step-features .check-icon {
    width: 14px;
    height: 14px;
    color: var(--magenta);
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .steps-timeline {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 400px;
    }
    .timeline-line {
        display: none;
    }
    .step-animated {
        opacity: 1;
        transform: none;
    }
    .step-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    .step-icon {
        width: 80px;
        height: 80px;
    }
    .step-icon svg {
        width: 36px;
        height: 36px;
    }
}

/* ---- Block 8 ---- */
/* ── Why Section Animations ── */
@keyframes sop-fade-up {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes sop-line-grow {
  from { transform:scaleX(0); }
  to   { transform:scaleX(1); }
}
@keyframes sop-counter-tick {
  from { opacity:0; transform:translateY(10px) scale(0.85); }
  to   { opacity:0.45; transform:translateY(0) scale(1); }
}
@keyframes sop-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Reveal class applied by IntersectionObserver */
.sop-reveal { opacity:0; transform:translateY(28px); transition:opacity 0.65s cubic-bezier(.22,1,.36,1), transform 0.65s cubic-bezier(.22,1,.36,1); }
.sop-reveal.visible { opacity:1; transform:none; }

/* Header area */
.sop-header-line {
  display:block; width:40px; height:2px;
  background:var(--magenta); margin:0 auto 20px;
  transform-origin:left center;
  animation:sop-line-grow 0.6s ease forwards;
}

/* Differentiator cards */
.sop-card {
  background:#fff;
  border:1px solid var(--border-light);
  border-radius:3px;
  padding:28px 24px 24px;
  position:relative;
  overflow:hidden;
  transition:box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  cursor:default;
}
.sop-card::before {
  content:'';
  position:absolute; top:0; left:0; right:0;
  height:2px;
  background:var(--magenta);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform 0.4s cubic-bezier(.22,1,.36,1);
}
.sop-card:hover::before { transform:scaleX(1); }
.sop-card:hover {
  box-shadow:0 12px 40px rgba(0,0,0,0.09);
  transform:translateY(-4px);
  border-color:rgba(255,20,147,0.15);
}

.sop-card-num {
  font-family:'Cormorant Garamond',serif;
  font-size:2.4rem; font-weight:300;
  color:var(--magenta); opacity:0.18;
  line-height:1; margin-bottom:14px;
  transition:opacity 0.3s ease;
}
.sop-card:hover .sop-card-num { opacity:0.55; }

.sop-card-icon {
  width:38px; height:38px;
  border-radius:50%;
  background:rgba(255,20,147,0.07);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:14px;
  transition:background 0.3s ease, transform 0.3s ease;
}
.sop-card:hover .sop-card-icon {
  background:rgba(255,20,147,0.14);
  transform:scale(1.08);
}
.sop-card-icon svg { width:18px; height:18px; stroke:var(--magenta); fill:none; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }

.sop-card-title {
  font-size:0.72rem; text-transform:uppercase; letter-spacing:2px;
  font-weight:700; color:var(--text-main);
  font-family:'DM Sans',sans-serif; margin:0 0 9px;
}
.sop-card-body {
  font-size:0.83rem; color:var(--text-light); line-height:1.75; margin:0;
}

/* Checklist bottom */
.sop-checklist-wrap {
  max-width:700px; margin:0 auto;
  background:var(--text-main); color:white;
  border-radius:4px;
  padding:42px 44px;
  position:relative; overflow:hidden;
}
.sop-checklist-wrap::before {
  content:'';
  position:absolute; inset:0;
  background:radial-gradient(ellipse at 100% 0%, rgba(255,20,147,0.12) 0%, transparent 60%);
  pointer-events:none;
}
.sop-checklist-title {
  font-size:0.65rem; text-transform:uppercase; letter-spacing:3px;
  color:var(--magenta); font-weight:700;
  text-align:center; margin-bottom:28px;
  font-family:'DM Sans',sans-serif;
}
.sop-checklist-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:14px 36px;
}
.sop-check-item {
  display:flex; align-items:flex-start; gap:10px;
  font-size:0.82rem; color:rgba(255,255,255,0.7); line-height:1.6;
  opacity:0; transform:translateX(-10px);
  transition:opacity 0.5s ease, transform 0.5s ease;
}
.sop-check-item.visible { opacity:1; transform:none; }
.sop-check-dot {
  flex-shrink:0; width:18px; height:18px; border-radius:50%;
  background:rgba(255,20,147,0.15); border:1px solid rgba(255,20,147,0.4);
  display:flex; align-items:center; justify-content:center; margin-top:1px;
  transition:background 0.3s;
}
.sop-check-item:hover .sop-check-dot { background:rgba(255,20,147,0.3); }
.sop-check-dot svg { width:9px; height:9px; stroke:var(--magenta); fill:none; stroke-width:2.5; stroke-linecap:round; stroke-linejoin:round; }

/* Divider bar */
.sop-divider {
  display:block; width:1px; height:60px;
  background:linear-gradient(to bottom, transparent, var(--magenta), transparent);
  margin:0 auto 60px; opacity:0.4;
}

/* Mobile responsive */
@media (max-width:768px) {
  .sop-diff-grid { grid-template-columns:1fr !important; gap:16px !important; }
  .sop-checklist-grid { grid-template-columns:1fr !important; gap:12px !important; }
  .sop-checklist-wrap { padding:30px 24px; }
  .sop-header { margin-bottom:48px !important; }
}
@media (max-width:480px) {
  .sop-card { padding:22px 18px 18px; }
}

/* ---- Block 9 ---- */
/* ── Process Section Base ── */
#process {
  padding: 110px 0 100px;
  background: #0e0e0e;
  color: white;
  position: relative;
  overflow: hidden;
}
#process::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255,20,147,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(255,20,147,0.04) 0%, transparent 45%);
}

.proc-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 8%;
  position: relative; z-index: 1;
}

/* ── Header ── */
.proc-header {
  text-align: center;
  margin-bottom: 64px;
}
.proc-eyebrow {
  font-size: 0.58rem; text-transform: uppercase; letter-spacing: 5px;
  color: var(--magenta); font-weight: 700;
  font-family: 'DM Sans', sans-serif; margin-bottom: 16px;
  display: block;
}
.proc-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 600; line-height: 1.0; color: white;
  margin: 0 0 16px; letter-spacing: -0.5px;
}
.proc-header p {
  font-size: 0.88rem; color: rgba(255,255,255,0.42);
  line-height: 1.85; max-width: 480px; margin: 0 auto;
}

/* ── Step Nav Tabs ── */
.proc-tabs {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 0;
  position: relative;
}
.proc-tab-connector {
  flex: 1; max-width: 80px; height: 1px;
  background: rgba(255,255,255,0.1);
  position: relative; overflow: hidden;
}
.proc-tab-connector-fill {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--magenta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease 0.2s;
}
.proc-tab-connector.active .proc-tab-connector-fill { transform: scaleX(1); }

.proc-tab {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  cursor: pointer; background: none; border: none; color: white;
  padding: 0; position: relative; z-index: 1;
  transition: transform 0.2s ease;
}
.proc-tab:hover { transform: translateY(-2px); }

.proc-tab-circle {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 400; color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.03);
  transition: all 0.4s cubic-bezier(.22,1,.36,1);
  position: relative; overflow: hidden;
}
.proc-tab-circle::after {
  content: '';
  position: absolute; inset: 0; border-radius: 50%;
  background: var(--magenta);
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(.22,1,.36,1);
  z-index: -1;
}
.proc-tab.active .proc-tab-circle {
  border-color: var(--magenta);
  color: white;
  box-shadow: 0 0 0 6px rgba(255,20,147,0.12), 0 0 28px rgba(255,20,147,0.25);
}
.proc-tab.active .proc-tab-circle::after { transform: scale(1); }
.proc-tab.done .proc-tab-circle {
  border-color: rgba(255,20,147,0.5);
  color: rgba(255,255,255,0.5);
  background: rgba(255,20,147,0.08);
}

.proc-tab-label {
  font-size: 0.6rem; text-transform: uppercase; letter-spacing: 2px;
  color: rgba(255,255,255,0.25); font-family: 'DM Sans', sans-serif;
  font-weight: 700; white-space: nowrap;
  transition: color 0.3s ease;
}
.proc-tab.active .proc-tab-label { color: var(--magenta); }
.proc-tab.done .proc-tab-label { color: rgba(255,255,255,0.35); }

/* ── Content Panel ── */
.proc-panel-wrap {
  margin-top: 52px;
  position: relative;
  overflow: hidden;
}

.proc-panel {
  display: none;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px; align-items: center;
}
.proc-panel.active {
  display: grid;
  animation: proc-panel-in 0.45s cubic-bezier(.22,1,.36,1) forwards;
}
.proc-panel.exit-left {
  display: grid;
  animation: proc-panel-out-left 0.35s cubic-bezier(.22,1,.36,1) forwards;
  pointer-events: none;
  position: absolute; top: 0; left: 0; right: 0;
}
.proc-panel.exit-right {
  display: grid;
  animation: proc-panel-out-right 0.35s cubic-bezier(.22,1,.36,1) forwards;
  pointer-events: none;
  position: absolute; top: 0; left: 0; right: 0;
}
@keyframes proc-panel-in-right {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes proc-panel-in-left {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes proc-panel-out-left {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-40px); }
}
@keyframes proc-panel-out-right {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(40px); }
}
@keyframes proc-panel-in {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Visual side */
.proc-visual {
  aspect-ratio: 4/3;
  border-radius: 4px;
  position: relative; overflow: hidden;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.06);
}
.proc-visual picture,
.proc-visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(.22,1,.36,1);
}
.proc-panel.active .proc-visual img {
  transform: scale(1.03);
}
.proc-panel.active .proc-visual:hover img {
  transform: scale(1.07);
}
.proc-visual-num {
  position: absolute; bottom: 18px; right: 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; font-weight: 300; color: var(--magenta);
  opacity: 0.08; line-height: 1; user-select: none;
}
.proc-visual-tag {
  position: absolute; top: 18px; left: 18px;
  font-size: 0.58rem; text-transform: uppercase; letter-spacing: 3px;
  color: var(--magenta); font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  background: rgba(255,20,147,0.1);
  border: 1px solid rgba(255,20,147,0.2);
  padding: 5px 10px; border-radius: 2px;
}

/* Decorative floating particles */
.proc-particle {
  position: absolute; border-radius: 50%;
  background: var(--magenta); opacity: 0;
  animation: proc-float 4s ease-in-out infinite;
}
@keyframes proc-float {
  0% { opacity: 0; transform: translateY(0) scale(0.5); }
  20% { opacity: 0.3; }
  80% { opacity: 0.1; }
  100% { opacity: 0; transform: translateY(-80px) scale(0); }
}

/* Content side */
.proc-content { }

.proc-step-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.6rem; text-transform: uppercase; letter-spacing: 3px;
  color: var(--magenta); font-weight: 700;
  font-family: 'DM Sans', sans-serif; margin-bottom: 16px;
}
.proc-step-tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--magenta);
  animation: proc-pulse 2s ease infinite;
}
@keyframes proc-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,20,147,0.6); }
  50% { box-shadow: 0 0 0 5px rgba(255,20,147,0); }
}

.proc-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600; color: white; line-height: 1.05;
  margin: 0 0 16px;
}
.proc-content p {
  font-size: 0.88rem; color: rgba(255,255,255,0.45);
  line-height: 1.85; margin: 0 0 28px;
}

/* Micro-facts pills */
.proc-facts {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.proc-fact {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.72rem; color: rgba(255,255,255,0.6);
  font-family: 'DM Sans', sans-serif;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 12px; border-radius: 2px;
  transition: background 0.2s, border-color 0.2s;
}
.proc-fact:hover {
  background: rgba(255,20,147,0.07);
  border-color: rgba(255,20,147,0.2);
}
.proc-fact svg {
  width: 12px; height: 12px; stroke: var(--magenta);
  fill: none; stroke-width: 2; stroke-linecap: round; flex-shrink: 0;
}

/* ── Progress bar ── */
.proc-progress-wrap {
  margin-top: 52px;
  display: flex; align-items: center; gap: 16px;
}
.proc-progress-bar {
  flex: 1; height: 2px;
  background: rgba(255,255,255,0.07); border-radius: 2px; overflow: hidden;
}
.proc-progress-fill {
  height: 100%; background: var(--magenta);
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(.22,1,.36,1);
}
.proc-progress-label {
  font-size: 0.7rem; color: rgba(255,255,255,0.25);
  font-family: 'DM Sans', sans-serif; white-space: nowrap;
}

/* ── Nav Arrows ── */
.proc-nav {
  display: flex; gap: 10px;
}
.proc-nav-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent; color: rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.25s ease;
}
.proc-nav-btn:hover:not(:disabled) {
  border-color: var(--magenta);
  color: var(--magenta);
  background: rgba(255,20,147,0.07);
}
.proc-nav-btn:disabled { opacity: 0.2; cursor: not-allowed; }
.proc-nav-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }

/* ── Mobile ── */
@media (max-width: 768px) {
  .proc-panel {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .proc-visual { aspect-ratio: 16/9; order: -1; }
  .proc-tabs { gap: 0; }
  .proc-tab-label { display: none; }
  .proc-tab-connector { max-width: 32px; }
  .proc-panel-wrap { min-height: auto; }
}
@media (max-width: 480px) {
  .proc-tab-circle { width: 42px; height: 42px; font-size: 0.95rem; }
}

/* ---- Block 10 ---- */
/* ═══════════════════════════════════════
   APPLE-STYLE CALCULATOR — DS-CALC
═══════════════════════════════════════ */
#ds-calc-wrap {
    max-width: 560px;
    margin: 0 auto;
    font-family: 'DM Sans', sans-serif;
}

/* Step header */
.dsc-step-label {
    font-size: 0.58rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--magenta);
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.dsc-step-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-light);
}
.dsc-step-num {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--magenta);
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Service cards grid */
.dsc-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 6px;
}
.dsc-card {
    position: relative;
    padding: 18px 16px 16px;
    border: 1.5px solid var(--border-light);
    background: var(--bg-lux);
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    overflow: hidden;
}
.dsc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,20,147,0.05), transparent);
    opacity: 0;
    transition: opacity 0.2s;
}
.dsc-card:hover { border-color: rgba(255,20,147,0.4); transform: translateY(-1px); }
.dsc-card.active {
    border-color: var(--magenta);
    box-shadow: 0 0 0 1px var(--magenta), 0 8px 24px rgba(255,20,147,0.12);
    transform: translateY(-2px);
}
.dsc-card.active::before { opacity: 1; }
.dsc-card-check {
    position: absolute;
    top: 10px; right: 10px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--magenta);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.2s, transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.dsc-card.active .dsc-card-check { opacity: 1; transform: scale(1); }
.dsc-card-icon {
    display: block;
    width: 28px;
    height: 28px;
    margin-bottom: 10px;
    color: var(--text-lighter);
    transition: color 0.2s;
}
.dsc-card.active .dsc-card-icon { color: var(--magenta); }
.dsc-card-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.dsc-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.0rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.1;
    margin-bottom: 4px;
}
.dsc-card-price {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--magenta);
    letter-spacing: 0.5px;
}
/* Description reveal */
.dsc-service-desc {
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, margin-top 0.2s ease, opacity 0.3s ease;
    opacity: 0;
    padding: 0 2px;
}
.dsc-service-desc.visible {
    max-height: 120px;
    margin-top: 12px;
    opacity: 1;
}
.dsc-service-desc-inner {
    padding: 12px 16px;
    background: rgba(255,20,147,0.04);
    border-left: 2px solid var(--magenta);
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.65;
}
.dsc-service-desc-inner strong {
    color: var(--text-main);
    font-weight: 600;
}

/* Location — segmented + city select */
.dsc-county-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    border: 1.5px solid var(--border-light);
    overflow: hidden;
    margin-bottom: 14px;
}
.dsc-county-btn {
    padding: 12px 8px;
    background: var(--bg-lux);
    border: none;
    border-right: 1px solid var(--border-light);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-lighter);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.dsc-county-btn:last-child { border-right: none; }
.dsc-county-btn.active {
    background: var(--text-main);
    color: white;
}
.dsc-city-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}
.dsc-city-pill {
    padding: 9px 8px;
    border: 1.5px solid var(--border-light);
    background: var(--bg-lux);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    text-align: center;
    transition: border-color 0.15s, background 0.15s, color 0.15s, transform 0.15s;
    -webkit-tap-highlight-color: transparent;
}
.dsc-city-pill:hover { border-color: rgba(255,20,147,0.35); color: var(--text-main); }
.dsc-city-pill.active {
    border-color: var(--magenta);
    background: rgba(255,20,147,0.06);
    color: var(--magenta);
    font-weight: 700;
    transform: scale(1.03);
}
.dsc-city-notice {
    display: none;
    margin-top: 10px;
    padding: 10px 14px;
    background: rgba(255,20,147,0.05);
    border-left: 2px solid var(--magenta);
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Add-on pills */
.dsc-addons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.dsc-addon-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    border: 1.5px solid var(--border-light);
    background: var(--bg-lux);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.18s;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}
.dsc-addon-pill:hover { border-color: rgba(255,20,147,0.35); color: var(--text-main); }
.dsc-addon-pill.active {
    border-color: var(--magenta);
    background: rgba(255,20,147,0.07);
    color: var(--magenta);
    font-weight: 700;
}
.dsc-addon-pill .pill-plus {
    width: 16px; height: 16px;
    border-radius: 50%;
    border: 1.5px solid currentColor;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    transition: background 0.18s;
    flex-shrink: 0;
}
.dsc-addon-pill.active .pill-plus {
    background: var(--magenta);
    border-color: var(--magenta);
    color: white;
}

/* Price display */
.dsc-price-bar {
    background: var(--text-main);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    overflow: hidden;
}
.dsc-price-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(255,20,147,0.15), transparent 60%);
    pointer-events: none;
}
.dsc-price-label {
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    font-weight: 600;
    margin-bottom: 6px;
}
.dsc-price-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 6vw, 3.4rem);
    font-weight: 700;
    color: white;
    line-height: 1;
    transition: color 0.2s;
}
.dsc-price-note {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.3);
    margin-top: 4px;
    letter-spacing: 0.5px;
}
/* Social proof in price bar */
.dsc-proof {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}
.dsc-proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.5);
}
.dsc-proof-item strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: white;
    font-weight: 700;
    line-height: 1;
}
.dsc-proof-item.hot strong { color: var(--magenta); }

/* Gift banner */
.dsc-gift {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(255,20,147,0.07), rgba(255,20,147,0.02));
    border: 1px solid rgba(255,20,147,0.22);
}
.dsc-gift-icon { flex-shrink: 0; opacity: 0.9; }
.dsc-gift-tag {
    font-size: 0.57rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--magenta);
    font-weight: 700;
    margin-bottom: 3px;
}
.dsc-gift-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.2;
}
.dsc-gift-sub {
    font-size: 0.72rem;
    color: var(--text-lighter);
    margin-top: 2px;
}

/* Section spacer */
.dsc-section {
    margin-bottom: 28px;
    animation: dscFadeUp 0.4s ease both;
}
@keyframes dscFadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Contact inputs */
.dsc-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
}
.dsc-input {
    padding: 15px 16px;
    border: 1.5px solid var(--border-light);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    color: var(--text-main);
    background: var(--bg-lux);
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
}
.dsc-input:focus { border-color: var(--magenta); }
.dsc-input::placeholder { color: var(--text-lighter); }

/* CTA buttons */
.dsc-ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.dsc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 17px 12px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: 0.68rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.22s;
    position: relative;
    overflow: hidden;
}
.dsc-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.12);
    opacity: 0;
    transition: opacity 0.2s;
}
.dsc-btn:hover::after { opacity: 1; }
.dsc-btn-sms {
    background: var(--text-main);
    color: white;
    border: 1.5px solid var(--text-main);
}
.dsc-btn-sms:hover { background: #1a1a2e; }
.dsc-btn-wa {
    background: #16a34a;
    color: white;
    border: 1.5px solid #16a34a;
}
.dsc-btn-wa:hover { background: #15803d; }

/* Pulse on ready */
.dsc-btn.pulse {
    animation: dscPulse 1.8s ease-in-out infinite;
}
@keyframes dscPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,20,147,0.3); }
    50%       { box-shadow: 0 0 0 8px rgba(255,20,147,0); }
}

/* Counter animation */
@keyframes dscCount {
    from { transform: translateY(6px); opacity: 0; }
    to   { transform: translateY(0);   opacity: 1; }
}
.dsc-price-amount.counting {
    animation: dscCount 0.22s ease both;
}

@media (max-width: 480px) {
    .dsc-services { grid-template-columns: 1fr 1fr; }
    .dsc-city-grid { grid-template-columns: repeat(2, 1fr); }
    .dsc-inputs { grid-template-columns: 1fr; }
    .dsc-proof { display: none; }
    .dsc-price-bar { padding: 22px 20px; }
}

/* ---- Block 11 ---- */
.area-tab {
    padding: 12px 28px;
    border: 1px solid var(--border-mid);
    background: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.25s ease;
    border-radius: 100px;
}
.area-tab:hover {
    border-color: var(--magenta);
    color: var(--magenta);
}
.area-tab.active {
    background: var(--text-main);
    border-color: var(--text-main);
    color: white;
}
.county-panel {
    display: none;
    text-align: center;
    animation: fadeIn 0.3s ease;
}
.county-panel.active {
    display: block;
}
.cities-compact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}
.city-chip {
    display: inline-block;
    padding: 10px 20px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.2s ease;
}
.city-chip:hover {
    border-color: var(--text-main);
    background: var(--text-main);
    color: white;
    transform: translateY(-2px);
}
.city-chip.ceramic {
    border-color: rgba(255,20,147,0.3);
    background: rgba(255,20,147,0.04);
    color: var(--magenta);
}
.city-chip.ceramic:hover {
    background: var(--magenta);
    border-color: var(--magenta);
    color: white;
}
@media (max-width: 600px) {
    .area-tab {
        padding: 10px 20px;
        font-size: 0.72rem;
    }
    .city-chip {
        padding: 8px 16px;
        font-size: 0.78rem;
    }
}

/* ---- Block 12 ---- */
/* ── COUNTY BLOCKS ── */
    .county-block {
        max-width: 1200px;
        margin: 0 auto 52px;
        padding: 0 8%;
    }

    .county-label {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.6rem;
        text-transform: uppercase;
        letter-spacing: 3.5px;
        font-weight: 700;
        color: var(--text-lighter);
        margin-bottom: 20px;
        padding-bottom: 14px;
        border-bottom: 1px solid var(--border-light);
    }

    .county-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--text-main);
        display: inline-block;
        flex-shrink: 0;
    }

    .cities-section .section-title {
        margin-bottom: 16px;
    }

/* ---- Block 13 ---- */
@media (max-width: 900px) {
        #concierge > div > div {
            grid-template-columns: 1fr !important;
            gap: 56px !important;
        }
    }
    @media (max-width: 640px) {
        #collectors-vault > div > div {
            padding: 44px 28px !important;
        }
        #vault-form {
            grid-template-columns: 1fr !important;
        }
    }

    @media (max-width: 900px) {
        .video-reel-header { grid-template-columns: 1fr !important; gap: 40px !important; }
        .video-grid-mini { grid-template-columns: 1fr 1fr 1fr !important; }
        .benefits-grid-wrap { grid-template-columns: 1fr 1fr !important; }
        .pres-cols { grid-template-columns: 1fr !important; }
        .brands-row { grid-template-columns: repeat(4,1fr) !important; }
        .process-layout { grid-template-columns: 1fr !important; gap: 48px !important; }
    }
    @media (max-width: 540px) {
        .benefits-grid-wrap { grid-template-columns: 1fr !important; }
        .brands-row { grid-template-columns: repeat(2,1fr) !important; }
    }

/* ---- Block 14 ---- */
@media (max-width: 900px) {
        #journal > div > div:last-child { grid-template-columns: 1fr 1fr !important; }
    }
    @media (max-width: 560px) {
        #journal > div > div:last-child { grid-template-columns: 1fr !important; }
    }

/* ---- Block 15 ---- */
@media (max-width: 900px) {
    footer > div > div:first-child {
        grid-template-columns: 1fr 1fr !important;
        gap: 40px !important;
    }
}
@media (max-width: 600px) {
    footer > div > div:first-child {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }
    footer > div > div:first-child > div:first-child {
        align-items: center;
    }
    footer > div > div:first-child > div:first-child > p {
        max-width: 100% !important;
    }
    footer > div > div:first-child > div:first-child > div:last-child {
        justify-content: center;
    }
    footer > div > div:last-child {
        justify-content: center !important;
        text-align: center;
    }
}

/* ---- Block 16 ---- */
/* ── FIX 1: Instagram tooltip visible ── */
.ig-tooltip {
    display: none;
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%; transform: translateX(-50%);
    background: var(--magenta);
    color: white;
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 1px;
    padding: 7px 14px;
    border-radius: 3px;
    white-space: nowrap;
    pointer-events: none;
    z-index: 10;
    align-items: center;
}
.ig-tooltip::after {
    content: '';
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--magenta);
}
.stat-item-ig:hover .ig-tooltip { display: flex; }

/* ── FIX 2: Testimonials stats — visible on white bg ── */
.testimonials-section .stats-bar .stat-number {
    color: var(--text-main) !important;
    text-shadow: none !important;
    -webkit-text-fill-color: var(--text-main) !important;
}
.testimonials-section .stats-bar .stat-label {
    color: var(--text-light) !important;
    text-shadow: none !important;
}
.testimonials-section .stats-bar {
    background: var(--bg-warm);
    border: 1px solid var(--border-light);
    border-radius: 3px;
    padding: 32px 40px;
    display: flex; justify-content: center; gap: 64px;
}

/* ── FIX 3: Video reel — aspect ratio containers ── */
.video-grid-mini > div {
    position: relative;
    overflow: hidden;
    height: auto !important;
}
.video-grid-mini video {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover;
    display: block;
    position: static !important;
}

@media (max-width: 768px) {
    .video-grid-mini {
        grid-template-columns: 1fr 1fr 1fr !important;
    }
    .video-grid-mini video {
        height: 140px !important;
    }
}

@media (max-width: 480px) {
    .video-grid-mini video {
        height: 110px !important;
    }
}

/* ── FIX 4: Calculator single-column, contact + CTA grids responsive ── */
.calc-section > .calc-container {
    max-width: 580px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
@media (max-width: 540px) {
    .calc-contact-grid {
        grid-template-columns: 1fr !important;
    }
    .calc-cta-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ── FIX 5: Vault section — dark background with image overlay ── */
#collectors-vault {
    background: var(--text-main) !important;
    position: relative;
    overflow: hidden;
}
#collectors-vault::before {
    content: '';
    position: absolute; inset: 0;
    background:
        url('/images/process/step04-ceramic-coating-application-dshine-professional-miami.jpg') center/cover no-repeat;
    opacity: 0.08;
    pointer-events: none;
}
#collectors-vault::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(255,20,147,0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 10% 80%, rgba(255,20,147,0.06) 0%, transparent 50%);
    pointer-events: none;
}
#collectors-vault > div {
    position: relative; z-index: 1;
}
#collectors-vault .vault-card {
    background: rgba(255,255,255,0.04) !important;
    border-color: rgba(255,20,147,0.35) !important;
    box-shadow: 0 0 60px rgba(255,20,147,0.1), 0 24px 60px rgba(0,0,0,0.3) !important;
    backdrop-filter: blur(10px);
}
#collectors-vault .vault-card h2 { color: white !important; }
#collectors-vault .vault-card p { color: rgba(255,255,255,0.65) !important; }
#collectors-vault .vault-card > div > div:last-of-type > p { color: rgba(255,255,255,0.45) !important; }
#collectors-vault input {
    background: rgba(255,255,255,0.07) !important;
    border-color: rgba(255,255,255,0.12) !important;
    color: white !important;
}
#collectors-vault input::placeholder { color: rgba(255,255,255,0.35) !important; }

/* ── FIX 6: Footer — responsive grid ── */
footer > div > div:first-child {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}
@media (max-width: 900px) {
    footer > div > div:first-child {
        grid-template-columns: 1fr 1fr !important;
        gap: 36px !important;
    }
}
@media (max-width: 560px) {
    footer > div > div:first-child {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 28px !important;
    }
    footer > div > div:first-child > div:first-child > div[style*="display:flex"] {
        justify-content: center !important;
    }
    footer > div > div:last-child {
        flex-direction: column !important;
        text-align: center;
    }
}

/* ── FIX 7: Mobile menu — ensure always on top and z-index ── */
#mobile-menu.mobile-menu-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 99999;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
}
#mobile-menu.mobile-menu-overlay.active {
    display: flex !important;
}
.mobile-menu-btn {
    position: relative;
    z-index: 100000 !important;
}

/* ---- Ceramic Coating Tier Cards ---- */
.dsc-tier-card {
    border: 1.5px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 14px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
    position: relative;
}
.dsc-tier-card:hover {
    border-color: var(--magenta);
    box-shadow: 0 4px 16px rgba(255,20,147,0.1);
    transform: translateY(-2px);
}
.dsc-tier-card.active {
    border-color: var(--magenta);
    background: linear-gradient(135deg, rgba(255,20,147,0.04) 0%, rgba(255,20,147,0.01) 100%);
    box-shadow: 0 4px 20px rgba(255,20,147,0.15);
}
.dsc-tier-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(0,0,0,0.06);
    color: var(--text-light);
    padding: 3px 8px;
    border-radius: 20px;
    margin-bottom: 8px;
}
.dsc-tier-badge.popular {
    background: var(--magenta);
    color: white;
}
.dsc-tier-badge.premium {
    background: linear-gradient(135deg, #1a1a1a, #444);
    color: white;
}
.dsc-tier-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 4px;
}
.dsc-tier-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--magenta);
    margin-bottom: 6px;
    font-family: 'DM Sans', sans-serif;
}
.dsc-tier-desc {
    font-size: 0.62rem;
    color: var(--text-lighter);
    line-height: 1.5;
    letter-spacing: 0.3px;
}
@media (max-width: 480px) {
    #dsc-ceramic-tiers > div > div {
        grid-template-columns: 1fr !important;
    }
}
