/* === CORE VARIABLES & RESET === */
        :root {
    --bg-dark: #090807;
    --bg-card: #171412;
    --primary-dark: #12100f;
    --gold: #c59055;
    --gold-light: #f1dbc2;
    --gold-dark: #8c5f36;
    --gold-gradient: linear-gradient(135deg, #f1c58f, #c59055 55%, #8c5f36);
    --text-light: #f4eee8;
    --text-muted: #bfae9b;
    --success: #2ecc71;
    --error: #e74c3c;
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { font-size: 62.5%; scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
        body {
            font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-size: 1.6rem;
            line-height: 1.6;
            color: var(--text-light);
            background-color: var(--bg-dark);
            overflow-x: hidden;
            text-rendering: optimizeLegibility;
        }

        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
        .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

        /* === ANIMATIONS === */
        @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes pulseGlow { 0%, 100% { box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3); } 50% { box-shadow: 0 4px 30px rgba(212, 175, 55, 0.6); } }
        @keyframes sheen { 100% { transform: translateX(200%); } }
        @keyframes fadeInScale { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
        @keyframes resultReveal { from { opacity: 0; transform: translateY(40px) scale(0.92); } to { opacity: 1; transform: translateY(0) scale(1); } }
        @keyframes savingsSlam { 0% { opacity: 0; transform: scale(0.3); } 60% { opacity: 1; transform: scale(1.08); } 80% { transform: scale(0.97); } 100% { transform: scale(1); } }
        @keyframes ringDraw { from { stroke-dashoffset: 283; } }
        @keyframes sparkle { 0% { opacity: 0; transform: scale(0) rotate(0deg); } 50% { opacity: 1; transform: scale(1) rotate(180deg); } 100% { opacity: 0; transform: scale(0) rotate(360deg); } }
        @keyframes strikeAnim { from { width: 0; } to { width: 100%; } }
        @keyframes glowPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 0.8; } }
        @keyframes slideInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
        @keyframes slideInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
        @keyframes bounceIn { 0% { opacity: 0; transform: scale(0.3); } 50% { transform: scale(1.05); } 70% { transform: scale(0.95); } 100% { opacity: 1; transform: scale(1); } }

        .fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth); }
        .fade-in.is-visible { opacity: 1; transform: translateY(0); }

        /* === TYPOGRAPHY === */
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; line-height: 1.2; color: #fff; }
        h1 { font-size: clamp(3.2rem, 6vw, 5.6rem); }
        h2 { font-size: clamp(2.6rem, 4vw, 4rem); margin-bottom: 1em; text-align: center; }
        h3 { font-size: 2rem; margin-bottom: 1.5rem; }
        .section-subtitle { text-align: center; color: var(--text-muted); font-size: 1.8rem; max-width: 600px; margin: -0.5em auto 4rem; }
        .gold-text { background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

        /* === BUTTONS === */
        .btn {
            display: inline-flex; align-items: center; justify-content: center; gap: 1rem;
            padding: 1.4rem 3.2rem; border-radius: 9999px; font-weight: 700; text-decoration: none;
            transition: all 0.3s var(--ease-smooth); cursor: pointer; border: none; font-size: 1.6rem;
            position: relative; overflow: hidden; text-transform: uppercase; letter-spacing: 0.1rem;
            font-family: 'Montserrat', sans-serif;
        }
        .btn::after {
            content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transform: skewX(-15deg); transition: none;
        }
        .btn:hover::after { animation: sheen 0.6s ease-in-out; }
        .btn-primary {
            background: var(--gold-gradient); color: var(--primary-dark);
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5); }
        .btn-large { padding: 1.8rem 4rem; font-size: 1.8rem; }
        .btn-outline {
            background: transparent; color: var(--gold); border: 2px solid var(--gold);
        }
        .btn-outline:hover { background: rgba(212,175,55,0.1); transform: translateY(-2px); }

        /* === HERO === */
        .hero {
            position: relative; min-height: 85vh; display: flex; align-items: center;
            padding: 12rem 0 6rem; overflow: hidden; background-color: var(--bg-dark);
        }
        .hero::before {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(180deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.95) 100%);
            z-index: 1; pointer-events: none;
        }
        .hero__bg {
            position: absolute; inset: 0; width: 100%; height: 100%;
            object-fit: cover; z-index: 0;
        }
        .hero-content {
            max-width: 800px; position: relative; z-index: 2;
        }
        .hero-content h1 {
            animation: fadeInUp 0.8s var(--ease-smooth) both;
            margin-bottom: 2rem;
        }
        .hero-content h1 span { display: block; }
        .hero-subtitle {
            font-size: clamp(1.6rem, 2.5vw, 2rem); color: var(--text-muted);
            margin-bottom: 3.5rem; max-width: 600px; line-height: 1.7;
            animation: fadeInUp 0.8s var(--ease-smooth) 0.2s both;
        }
        .hero-cta-wrap {
            animation: fadeInUp 0.8s var(--ease-smooth) 0.4s both;
        }
        .hero-cta-wrap .btn { animation: pulseGlow 3s ease-in-out infinite; }
        .hero-trust {
            margin-top: 2rem; font-size: 1.4rem; color: var(--text-muted);
            animation: fadeInUp 0.8s var(--ease-smooth) 0.6s both;
        }
        .hero-trust span { color: var(--gold); }
        @media (max-width: 768px) {
            .hero { min-height: auto; padding: 10rem 0 5rem; text-align: center; }
            .hero-subtitle { margin-left: auto; margin-right: auto; }
            .hero-trust { text-align: center; }
        }
        @media (min-width: 769px) {
            .hero-content { text-align: left; }
        }

        /* === HOW IT WORKS === */
        .how-it-works { padding: 8rem 0; background: var(--primary-dark); }
        .steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
        .step-card {
            background: var(--bg-card); border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px; padding: 3rem; text-align: center;
            transition: border-color 0.3s ease, transform 0.3s ease;
        }
        .step-card:hover { border-color: rgba(212,175,55,0.3); transform: translateY(-4px); }
        .step-number {
            width: 48px; height: 48px; border-radius: 50%;
            background: var(--gold-gradient); color: var(--primary-dark);
            display: inline-flex; align-items: center; justify-content: center;
            font-weight: 700; font-size: 2rem; margin-bottom: 2rem;
            font-family: 'Montserrat', sans-serif;
        }
        .step-icon { margin-bottom: 1.5rem; }
        .step-icon svg { width: 40px; height: 40px; color: var(--gold); }
        .step-card h3 { font-size: 2rem; margin-bottom: 1rem; font-family: 'Montserrat', sans-serif; }
        .step-card p { color: var(--text-muted); font-size: 1.5rem; line-height: 1.7; }
        @media (max-width: 768px) {
            .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
        }

        /* === CALCULATOR === */
        .calculator-section { padding: 8rem 0; background: radial-gradient(circle at top, #1a1a1a 0%, #0a0a0a 100%); }
        .calculator-box {
            max-width: 800px; margin: 0 auto;
            background: var(--bg-card); border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px; padding: 4rem; position: relative;
        }
        .calc-label {
            display: block; margin-bottom: 1rem; font-weight: 600; font-size: 1.5rem;
            color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em;
        }

        /* Main service icon buttons */
        .service-icons-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.6rem; margin-bottom: 2rem;
        }
        .service-icon-btn {
            display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
            padding: 2.4rem 1.2rem; background: rgba(255,255,255,0.03);
            border: 2px solid rgba(255,255,255,0.1); border-radius: 12px;
            cursor: pointer; transition: all 0.3s var(--ease-out-back);
            color: var(--text-muted); text-align: center;
        }
        .service-icon-btn:hover { border-color: rgba(212,175,55,0.4); color: var(--text-light); transform: translateY(-2px); }
        .service-icon-btn--test {
            border-color: rgba(212,175,55,0.35);
            background: linear-gradient(180deg, rgba(212,175,55,0.12), rgba(255,255,255,0.03));
        }
        .service-icon-btn.active {
            border-color: var(--gold); background: rgba(212,175,55,0.1); color: var(--gold);
            transform: scale(1.03); box-shadow: 0 0 25px rgba(212,175,55,0.15);
        }
        .service-icon-btn svg { width: 48px; height: 48px; flex-shrink: 0; }
        .service-icon-btn .svc-name { font-size: 1.5rem; font-weight: 700; line-height: 1.3; }
        .service-icon-btn .svc-price { font-size: 1.3rem; font-weight: 400; opacity: 0.7; }

        /* Other services expandable */
        .other-services-wrap { margin-bottom: 2rem; }
        .other-services-toggle {
            display: inline-flex; align-items: center; gap: 0.8rem;
            background: none; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
            padding: 1rem 1.6rem; color: var(--text-muted); font-size: 1.4rem;
            font-weight: 500; cursor: pointer; font-family: 'Montserrat', sans-serif;
            transition: all 0.3s ease;
        }
        .other-services-toggle:hover { border-color: rgba(212,175,55,0.3); color: var(--text-light); }
        .other-services-toggle .toggle-arrow { transition: transform 0.3s ease; font-size: 1.2rem; }
        .other-services-toggle.is-open .toggle-arrow { transform: rotate(180deg); }
        .other-services-list {
            display: none; margin-top: 1.2rem;
        }
        .other-services-list.is-visible { display: block; animation: fadeInScale 0.3s var(--ease-smooth); }
        .calc-select {
            width: 100%; padding: 1.4rem 1.6rem; background: rgba(255,255,255,0.05);
            border: 2px solid rgba(255,255,255,0.1); border-radius: 8px; color: var(--text-light);
            font-size: 1.6rem; font-family: 'Montserrat', sans-serif; cursor: pointer;
            appearance: none; -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat; background-position: right 1.6rem center;
            transition: border-color 0.3s ease;
        }
        .calc-select:focus { outline: none; border-color: var(--gold); }
        .calc-select option { background: var(--bg-card); color: var(--text-light); }

        .calc-freq-note {
            display: flex; align-items: center; gap: 0.8rem;
            margin-top: 1.5rem; padding: 1.2rem 1.6rem; border-radius: 8px;
            background: rgba(212,175,55,0.06); border: 1px solid rgba(212,175,55,0.15);
            font-size: 1.3rem; color: var(--text-muted); line-height: 1.5;
        }
        .calc-freq-note svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold); }

        .subscription-cap {
            margin-top: 1.6rem;
            background: linear-gradient(145deg, rgba(212,175,55,0.12), rgba(212,175,55,0.04));
            border: 1px solid rgba(212,175,55,0.28);
            border-radius: 12px;
            padding: 1.8rem 1.6rem;
        }
        .cap-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            margin-bottom: 0.9rem;
        }
        .cap-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--primary-dark);
            background: var(--gold-gradient);
            border-radius: 999px;
            padding: 0.4rem 0.95rem;
        }
        .cap-batch {
            font-size: 1.25rem;
            color: var(--gold-light);
            letter-spacing: 0.05em;
            text-transform: uppercase;
            font-weight: 600;
        }
        .cap-copy {
            font-size: 1.35rem;
            line-height: 1.65;
            color: rgba(240,240,240,0.9);
            margin-bottom: 1.3rem;
        }
        .cap-copy strong { color: var(--gold-light); font-weight: 700; }
        .cap-stats {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            gap: 1.2rem;
            flex-wrap: wrap;
            margin-bottom: 0.9rem;
        }
        .cap-sold {
            font-size: 1.9rem;
            font-weight: 800;
            color: var(--text-light);
            letter-spacing: 0.03em;
        }
        .cap-remain {
            font-size: 1.25rem;
            color: var(--text-muted);
            line-height: 1.5;
        }
        .cap-remain strong { color: var(--gold-light); }
        .cap-progress {
            height: 10px;
            background: rgba(255,255,255,0.08);
            border-radius: 999px;
            overflow: hidden;
            margin-bottom: 0.9rem;
        }
        .cap-progress-bar {
            height: 100%;
            width: 0%;
            background: var(--gold-gradient);
            border-radius: inherit;
            transition: width 0.5s var(--ease-smooth);
        }
        .cap-price-level {
            margin: 0;
            font-size: 1.2rem;
            line-height: 1.6;
            color: var(--text-muted);
        }
        .cap-price-level strong { color: var(--gold); font-weight: 700; }

        .period-grid {
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 2.5rem;
        }
        .period-btn {
            padding: 1.6rem 1rem; border: 2px solid rgba(255,255,255,0.1); border-radius: 8px;
            background: rgba(255,255,255,0.03); color: var(--text-muted); font-size: 1.6rem;
            font-weight: 700; font-family: 'Montserrat', sans-serif; cursor: pointer;
            transition: all 0.3s var(--ease-out-back); text-align: center;
        }
        .period-btn span { display: block; font-size: 1.2rem; font-weight: 400; margin-top: 0.3rem; }
        .period-btn:hover { border-color: rgba(212,175,55,0.4); color: var(--text-light); }
        .period-btn.active {
            border-color: var(--gold); background: rgba(212,175,55,0.12); color: var(--gold);
            transform: scale(1.05); box-shadow: 0 0 20px rgba(212,175,55,0.15);
        }

        /* Calculator Result — WOW panel */
        .calc-result {
            margin-top: 3rem; display: none; position: relative;
        }
        .calc-result.is-visible { display: block; }

        .result-card {
            position: relative; overflow: hidden;
            background: linear-gradient(145deg, rgba(20,20,20,1) 0%, rgba(30,25,15,1) 50%, rgba(20,20,20,1) 100%);
            border: 1px solid rgba(212,175,55,0.25); border-radius: 16px;
            padding: 4rem 3rem; text-align: center;
        }
        .calc-result.is-visible .result-card { animation: resultReveal 0.6s var(--ease-out-back) both; }

        /* Glow background effect */
        .result-glow {
            position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
            width: 300px; height: 300px; border-radius: 50%;
            background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
            pointer-events: none; animation: glowPulse 3s ease-in-out infinite;
        }

        /* Sparkle particles */
        .result-sparkles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
        .result-sparkle {
            position: absolute; width: 6px; height: 6px; border-radius: 50%;
            background: var(--gold); opacity: 0;
        }
        .calc-result.is-visible .result-sparkle { animation: sparkle 1.2s ease-out forwards; }

        /* Top label */
        .result-label {
            display: inline-flex; align-items: center; gap: 0.6rem;
            font-size: 1.2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em;
            color: var(--gold); margin-bottom: 2rem; position: relative;
        }
        .calc-result.is-visible .result-label { animation: fadeInUp 0.5s var(--ease-smooth) 0.15s both; }
        .result-label::before, .result-label::after {
            content: ''; width: 30px; height: 1px; background: var(--gold); opacity: 0.4;
        }

        /* Price comparison row */
        .result-prices {
            display: flex; align-items: center; justify-content: center; gap: 1.5rem;
            margin-bottom: 3rem; flex-wrap: wrap; position: relative;
        }
        .calc-result.is-visible .result-prices { animation: fadeInUp 0.5s var(--ease-smooth) 0.25s both; }
        .result-price-old {
            position: relative; font-size: 2.2rem; color: rgba(255,255,255,0.35);
            font-family: 'Montserrat', sans-serif; font-weight: 600;
        }
        .result-price-old .strike-line {
            position: absolute; top: 50%; left: -4px; right: -4px; height: 2px;
            background: var(--error); transform: translateY(-50%) rotate(-3deg);
            transform-origin: left; width: 0;
        }
        .calc-result.is-visible .result-price-old .strike-line { animation: strikeAnim 0.4s ease-out 0.6s forwards; }
        .result-price-arrow {
            font-size: 2.4rem; color: var(--gold); opacity: 0.5;
        }
        .result-price-new {
            font-size: 2.8rem; font-weight: 700; color: #fff;
            font-family: 'Montserrat', sans-serif;
        }
        .result-price-new span { color: var(--gold); }

        /* Savings hero — the main event */
        .savings-hero {
            display: flex; align-items: center; justify-content: center; gap: 3rem;
            margin: 3rem 0; position: relative;
        }

        /* Circular percentage ring */
        .savings-ring-wrap {
            position: relative; width: 120px; height: 120px; flex-shrink: 0;
        }
        .calc-result.is-visible .savings-ring-wrap { animation: bounceIn 0.7s var(--ease-out-back) 0.4s both; }
        .savings-ring-svg { width: 100%; height: 100%; transform: rotate(-90deg); }
        .savings-ring-bg { fill: none; stroke: rgba(255,255,255,0.06); stroke-width: 6; }
        
        .savings-ring-text {
            position: absolute; inset: 0; display: flex; flex-direction: column;
            align-items: center; justify-content: center;
        }
        .savings-ring-percent {
            font-size: 2.8rem; font-weight: 800; color: var(--gold);
            font-family: 'Montserrat', sans-serif; line-height: 1;
        }
        .savings-ring-sub {
            font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em;
            color: var(--text-muted); margin-top: 0.2rem;
        }

        /* Savings amount big text */
        .savings-amount-wrap { text-align: left; }
        .calc-result.is-visible .savings-amount-wrap { animation: slideInRight 0.6s var(--ease-smooth) 0.5s both; }
        .savings-amount-label {
            font-size: 1.3rem; color: var(--text-muted); text-transform: uppercase;
            letter-spacing: 0.1em; margin-bottom: 0.4rem;
        }
        .savings-amount {
            font-size: clamp(4rem, 8vw, 6rem); font-weight: 700; color: var(--success);
            font-family: 'Montserrat', sans-serif; line-height: 1;
            text-shadow: 0 0 40px rgba(46,204,113,0.3);
        }
        .savings-amount-sub {
            font-size: 1.4rem; color: var(--text-muted); margin-top: 0.6rem;
        }

        /* Per visit highlight */
        .per-visit-highlight {
            display: inline-flex; align-items: center; gap: 1rem;
            background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.2);
            border-radius: 999px; padding: 1.2rem 2.4rem; margin: 2.5rem auto 3rem;
        }
        .calc-result.is-visible .per-visit-highlight { animation: bounceIn 0.6s var(--ease-out-back) 0.7s both; }
        .per-visit-highlight .pvh-label { font-size: 1.4rem; color: var(--text-muted); }
        .per-visit-highlight .pvh-price {
            font-size: 2.4rem; font-weight: 800; color: var(--gold);
            font-family: 'Montserrat', sans-serif;
        }
        .per-visit-highlight .pvh-suffix { font-size: 1.3rem; color: var(--text-muted); }

        /* CTA */
        .calc-cta-wrap { text-align: center; position: relative; }
        .calc-result.is-visible .calc-cta-wrap { animation: fadeInUp 0.5s var(--ease-smooth) 0.85s both; }
        .calc-cta-wrap #ctaBuy { margin-bottom: 1.5rem; animation: pulseGlow 3s ease-in-out infinite; }
        .calc-cta-note {
            font-size: 1.3rem; color: var(--text-muted); line-height: 1.7;
        }
        .calc-cta-note a { color: var(--gold); text-decoration: none; }
        .checkout-inline {
            display: none;
            margin-top: 2rem;
            text-align: left;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 2rem;
        }
        .checkout-inline.is-open { display: block; animation: fadeInScale 0.25s var(--ease-smooth); }
        .checkout-headline {
            margin-bottom: 1.2rem;
        }
        .checkout-step {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.4rem 0.9rem;
            border-radius: 999px;
            background: rgba(212,175,55,0.14);
            border: 1px solid rgba(212,175,55,0.28);
            color: var(--gold-light);
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 1rem;
        }
        .checkout-title {
            margin: 0 0 0.6rem;
            font-size: 1.9rem;
            color: #fff;
            font-family: 'Montserrat', sans-serif;
        }
        .checkout-subtitle {
            margin: 0;
            font-size: 1.3rem;
            color: var(--text-muted);
            line-height: 1.6;
        }
        .checkout-progress {
            height: 8px;
            border-radius: 999px;
            overflow: hidden;
            background: rgba(255,255,255,0.08);
            margin: 1.5rem 0 1.8rem;
        }
        .checkout-progress-bar {
            height: 100%;
            width: 10%;
            border-radius: inherit;
            background: var(--gold-gradient);
            transition: width 0.3s ease;
        }
        .checkout-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1.2rem;
        }
        .checkout-field {
            position: relative;
        }
        .checkout-label {
            display: block;
            margin-bottom: 0.6rem;
            color: var(--text-muted);
            font-size: 1.25rem;
            font-weight: 600;
            letter-spacing: 0.03em;
        }
        .checkout-input {
            width: 100%;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.14);
            border-radius: 10px;
            padding: 1.2rem 3.6rem 1.2rem 1.2rem;
            color: #fff;
            font-size: 1.5rem;
            font-family: 'Montserrat', sans-serif;
            transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }
        .checkout-input:focus {
            outline: none;
            border-color: var(--gold);
            background: rgba(255,255,255,0.08);
            box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
        }
        .checkout-input.error {
            border-color: rgba(231,76,60,0.75);
            box-shadow: 0 0 0 3px rgba(231,76,60,0.1);
        }
        .checkout-input.valid {
            border-color: rgba(46,204,113,0.65);
            box-shadow: 0 0 0 3px rgba(46,204,113,0.1);
        }
        .checkout-check {
            position: absolute;
            right: 1.1rem;
            top: 3.5rem;
            width: 20px;
            height: 20px;
            opacity: 0;
            transform: scale(0.6);
            transition: opacity 0.25s ease, transform 0.25s ease;
            pointer-events: none;
            color: var(--success);
        }
        .checkout-input.valid + .checkout-check {
            opacity: 1;
            transform: scale(1);
        }
        .checkout-error {
            display: block;
            min-height: 1.7rem;
            margin-top: 0.5rem;
            font-size: 1.15rem;
            color: #ff9c9c;
        }
        .checkout-trust {
            margin: 1.5rem 0 1.7rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .checkout-trust-chip {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 1.15rem;
            color: var(--text-light);
            border: 1px solid rgba(255,255,255,0.12);
            background: rgba(255,255,255,0.04);
            padding: 0.45rem 0.8rem;
            border-radius: 999px;
        }
        .checkout-actions {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
        }
        .checkout-actions .btn {
            width: 100%;
            margin: 0;
            animation: none;
        }
        .checkout-submit-note {
            margin: 0;
            font-size: 1.2rem;
            color: var(--text-muted);
            text-align: center;
            line-height: 1.6;
        }
        .checkout-status {
            width: 100%;
            padding: 1.2rem 1.4rem;
            border-radius: 10px;
            font-size: 1.3rem;
            line-height: 1.6;
            text-align: left;
        }
        .checkout-status[hidden] {
            display: none !important;
        }
        .checkout-status--info {
            background: rgba(212,175,55,0.08);
            border: 1px solid rgba(212,175,55,0.22);
            color: var(--gold-light);
        }
        .checkout-status--error {
            background: rgba(231,76,60,0.08);
            border: 1px solid rgba(231,76,60,0.24);
            color: #ffd1d1;
        }
        .checkout-consent {
            margin-bottom: 1.2rem;
            padding: 1.2rem;
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.12);
            background: rgba(255,255,255,0.03);
        }
        .checkout-consent.has-error {
            border-color: rgba(231,76,60,0.7);
            box-shadow: 0 0 0 3px rgba(231,76,60,0.12);
        }
        .checkout-consent-row {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }
        .checkout-consent-input {
            margin-top: 0.22rem;
            width: 1.8rem;
            height: 1.8rem;
            accent-color: var(--gold);
            flex-shrink: 0;
            cursor: pointer;
        }
        .checkout-consent-copy {
            font-size: 1.28rem;
            line-height: 1.6;
            color: var(--text-muted);
        }
        .checkout-consent-copy strong { color: var(--text-light); }
        .checkout-consent-link {
            margin-top: 0.8rem;
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            font-size: 1.2rem;
            color: var(--gold-light);
            background: rgba(212,175,55,0.1);
            border: 1px solid rgba(212,175,55,0.3);
            border-radius: 999px;
            padding: 0.45rem 0.9rem;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
        }
        .checkout-consent-link:hover,
        .checkout-consent-link:focus-visible {
            color: #fff;
            border-color: rgba(212,175,55,0.75);
        }
        .checkout-terms-error {
            margin-top: 0.7rem;
        }

        .terms-modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 11000;
            background: rgba(0,0,0,0.8);
            backdrop-filter: blur(4px);
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }
        .terms-modal-overlay.is-visible {
            display: flex;
            animation: fadeInScale 0.25s var(--ease-smooth);
        }
        .terms-modal {
            width: min(100%, 980px);
            max-height: min(90vh, 900px);
            background: #111;
            border: 1px solid rgba(212,175,55,0.3);
            border-radius: 12px;
            box-shadow: 0 22px 60px rgba(0,0,0,0.55);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        .terms-modal-head {
            padding: 1.4rem 1.6rem;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }
        .terms-modal-head h3 {
            margin: 0;
            font-size: 1.8rem;
            color: var(--gold-light);
            font-family: 'Montserrat', sans-serif;
        }
        .terms-modal-close {
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 8px;
            background: rgba(255,255,255,0.05);
            color: #fff;
            width: 3.2rem;
            height: 3.2rem;
            line-height: 1;
            font-size: 2rem;
            cursor: pointer;
        }
        .terms-modal-body {
            padding: 1.5rem 1.6rem 1.3rem;
            overflow-y: auto;
            color: #d6d6d6;
            font-size: 1.34rem;
            line-height: 1.65;
        }
        .terms-modal-body pre {
            margin: 0;
            white-space: pre-wrap;
            font-family: 'Montserrat', sans-serif;
            color: inherit;
        }
        .terms-modal-actions {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding: 1.2rem 1.6rem;
            display: flex;
            gap: 1rem;
            justify-content: flex-end;
            flex-wrap: wrap;
            background: rgba(255,255,255,0.02);
        }
        .terms-modal-actions .btn {
            margin: 0;
        }
        body.modal-open {
            overflow: hidden;
        }
        @media (max-width: 768px) {
            .checkout-grid { grid-template-columns: 1fr; }
            .terms-modal-overlay { padding: 1rem; }
            .terms-modal { max-height: 92vh; }
            .terms-modal-head h3 { font-size: 1.6rem; }
            .terms-modal-body { font-size: 1.25rem; padding: 1.2rem; }
            .terms-modal-actions { padding: 1rem 1.2rem; }
        }

        @media (max-width: 768px) {
            .result-card { padding: 3rem 2rem; }
            .savings-hero { flex-direction: column; gap: 2rem; }
            .savings-amount-wrap { text-align: center; }
            .savings-ring-wrap { width: 100px; height: 100px; }
            .savings-ring-percent { font-size: 2.4rem; }
            .per-visit-highlight { flex-direction: column; gap: 0.4rem; padding: 1.4rem 2rem; }
        }

        @media (max-width: 768px) {
            .calculator-box { padding: 2.5rem 2rem; }
            .service-icons-grid { grid-template-columns: 1fr; gap: 1.2rem; }
            .service-icon-btn { flex-direction: row; padding: 1.8rem 2rem; gap: 1.4rem; text-align: left; }
            .service-icon-btn svg { width: 40px; height: 40px; }
            .period-grid { grid-template-columns: repeat(2, 1fr); }
            .cap-head { flex-direction: column; align-items: flex-start; }
            .cap-stats { flex-direction: column; align-items: flex-start; }
        }

        /* === PRICING CARDS === */
        .pricing-section { padding: 8rem 0; background: var(--primary-dark); }
        .pricing-grid {
            display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem;
            max-width: 900px; margin: 0 auto;
        }
        .pricing-card {
            background: var(--bg-card); border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px; padding: 3rem; position: relative;
            transition: border-color 0.3s ease, transform 0.3s ease;
        }
        .pricing-card:hover { border-color: rgba(212,175,55,0.3); transform: translateY(-4px); }
        .pricing-card-badge {
            position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
            background: var(--gold-gradient); color: var(--primary-dark);
            font-size: 1.1rem; font-weight: 700; padding: 0.4rem 1.4rem;
            border-radius: 50px; text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap;
        }
        .pricing-card h3 {
            font-size: 1.8rem; margin-bottom: 0.8rem; font-family: 'Montserrat', sans-serif;
            padding-right: 2rem;
        }
        .pricing-card .price-strike {
            font-size: 1.5rem; color: var(--text-muted); text-decoration: line-through;
            margin-bottom: 2rem;
        }
        .pricing-tiers {
            display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem;
        }
        .pricing-tier {
            background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
            border-radius: 8px; padding: 1.2rem; text-align: center; position: relative;
            transition: border-color 0.3s ease;
        }
        .pricing-tier:hover { border-color: rgba(212,175,55,0.2); }
        .pricing-tier .tier-period { font-size: 1.2rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
        .pricing-tier .tier-price { font-size: 2rem; font-weight: 700; color: var(--text-light); margin: 0.4rem 0; }
        .pricing-tier .tier-per-visit { font-size: 1.2rem; color: var(--gold); }
        .pricing-tier-badge {
            position: absolute; top: -8px; right: -8px;
            background: var(--gold); color: var(--primary-dark);
            font-size: 0.9rem; font-weight: 800; padding: 0.2rem 0.6rem;
            border-radius: 4px; text-transform: uppercase;
        }
        .pricing-card .btn { width: 100%; margin-top: auto; }

        .show-all-wrap {
            text-align: center; margin-top: 4rem;
        }
        .all-services-table {
            display: none; margin-top: 3rem; max-width: 900px; margin-left: auto; margin-right: auto;
        }
        .all-services-table.is-visible { display: block; animation: fadeInScale 0.4s var(--ease-smooth); }
        .all-services-table table {
            width: 100%; border-collapse: collapse; font-size: 1.4rem;
        }
        .all-services-table th {
            text-align: left; padding: 1.2rem 1rem; color: var(--gold);
            border-bottom: 2px solid rgba(212,175,55,0.3); font-weight: 600;
            text-transform: uppercase; letter-spacing: 0.05em; font-size: 1.2rem;
        }
        .all-services-table td {
            padding: 1.2rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.06);
            color: var(--text-muted);
        }
        .all-services-table tr:hover td { color: var(--text-light); }
        .all-services-table .table-price { color: var(--text-light); font-weight: 600; }

        @media (max-width: 768px) {
            .pricing-grid { grid-template-columns: 1fr; }
            .all-services-table { overflow-x: auto; }
            .all-services-table table { min-width: 600px; }
        }

        /* === BENEFITS === */
        .benefits-section { padding: 8rem 0; background: var(--bg-dark); }
        .benefits-grid {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem;
        }
        .benefit-card {
            background: var(--bg-card); border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px; padding: 3rem; text-align: center;
            transition: border-color 0.3s ease, transform 0.3s ease;
        }
        .benefit-card:hover { border-color: rgba(212,175,55,0.3); transform: translateY(-4px); }
        .benefit-icon {
            width: 64px; height: 64px; margin: 0 auto 2rem;
            background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.2);
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            transition: transform 0.3s var(--ease-out-back), border-color 0.3s ease;
        }
        .benefit-card:hover .benefit-icon { transform: scale(1.1); border-color: var(--gold); }
        .benefit-icon svg { width: 28px; height: 28px; color: var(--gold); }
        .benefit-card h3 { font-size: 1.8rem; margin-bottom: 1rem; font-family: 'Montserrat', sans-serif; }
        .benefit-card p { color: var(--text-muted); font-size: 1.5rem; line-height: 1.7; }
        @media (max-width: 1024px) {
            .benefits-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .benefits-grid { grid-template-columns: 1fr; }
        }

        /* === FAQ === */
        .faq-section { padding: 8rem 0; background: var(--primary-dark); }
        .faq-list { max-width: 800px; margin: 0 auto; }
        .faq-item {
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }
        .faq-question {
            width: 100%; display: flex; align-items: center; justify-content: space-between;
            padding: 2rem 0; background: none; border: none; cursor: pointer;
            color: var(--text-light); font-size: 1.7rem; font-weight: 600;
            font-family: 'Montserrat', sans-serif; text-align: left; gap: 2rem;
            transition: color 0.3s ease;
        }
        .faq-question:hover { color: var(--gold); }
        .faq-icon {
            width: 24px; height: 24px; flex-shrink: 0; position: relative;
        }
        .faq-icon::before, .faq-icon::after {
            content: ''; position: absolute; background: var(--gold);
            border-radius: 2px; transition: transform 0.3s ease;
        }
        .faq-icon::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
        .faq-icon::after { width: 2px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }
        .faq-item.is-open .faq-icon::after { transform: translateX(-50%) rotate(90deg); }
        .faq-answer {
            max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-smooth);
        }
        .faq-answer-inner {
            padding: 0 0 2rem; color: var(--text-muted); font-size: 1.5rem; line-height: 1.8;
        }

        /* === FINAL CTA === */
        .final-cta {
            padding: 8rem 0; background: var(--bg-card); text-align: center;
            background: linear-gradient(180deg, var(--bg-card) 0%, rgba(212,175,55,0.03) 100%);
        }
        .final-cta h2 { margin-bottom: 1.5rem; }
        .final-cta .subtitle {
            font-size: 1.8rem; color: var(--text-muted); margin-bottom: 3.5rem;
            max-width: 600px; margin-left: auto; margin-right: auto;
        }
        .final-cta .btn { margin-bottom: 2rem; }
        .final-cta .address {
            font-size: 1.4rem; color: var(--text-muted);
        }
        .final-cta .address a { color: var(--text-muted); text-decoration: none; }
        .final-cta .address a:hover { color: var(--gold); }

        /* === FOOTER === */
        .site-footer {
            margin-top: 0; background: #050505;
            border-top: 1px solid rgba(212,175,55,0.12); padding: 6rem 0 3rem;
        }
        .footer-container {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 3.5rem; align-items: flex-start;
        }
        .footer-column h3 {
            display: block; font-size: 1.5rem; text-transform: uppercase;
            letter-spacing: 0.16em; color: #fff; margin-bottom: 1.6rem;
            font-family: 'Montserrat', sans-serif;
        }
        .footer-column ul { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }
        .footer-column a {
            color: var(--text-muted); text-decoration: none;
            transition: color 0.3s var(--ease-smooth);
        }
        .footer-column a:hover, .footer-column a:focus-visible { color: var(--gold); }
        .footer-brand p {
            color: var(--text-muted); font-size: 1.4rem; line-height: 1.7;
            margin-top: 1.4rem; max-width: 320px;
        }
        .footer-logo { text-decoration: none; }
        .footer-logo img { height: 72px; width: auto; filter: drop-shadow(0 8px 18px rgba(0,0,0,0.35)); }
        .footer-contact li { display: flex; align-items: flex-start; gap: 0.5rem; color: var(--text-muted); }
        .footer-bottom {
            margin-top: 4rem; padding-top: 2.4rem;
            border-top: 1px solid rgba(212,175,55,0.1);
        }
        .footer-bottom .container {
            display: flex; align-items: center; justify-content: space-between;
            flex-wrap: wrap; gap: 1.5rem; font-size: 1.3rem; color: var(--text-muted);
            letter-spacing: 0.08em; text-transform: uppercase;
        }
        .footer-legal { display: flex; align-items: center; gap: 1.6rem; }
        .footer-legal a { color: var(--text-muted); text-decoration: none; }
        .footer-legal a:hover, .footer-legal a:focus-visible { color: var(--gold); }
        @media (max-width: 768px) {
            .site-footer { padding: 5rem 0 2.4rem; }
            .footer-bottom .container { flex-direction: column; text-align: center; }
            .footer-brand p { max-width: none; }
        }

        /* === STICKY CTA BAR (mobile) === */
        .sticky-cta {
            display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
            background: rgba(17,17,17,0.96); backdrop-filter: blur(6px);
            padding: 1rem 1.5rem calc(8px + env(safe-area-inset-bottom));
            border-top: 1px solid rgba(255,255,255,0.08);
        }
        .sticky-cta-inner { display: flex; gap: 1rem; max-width: 500px; margin: 0 auto; }
        .sticky-btn {
            flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
            padding: 1.2rem 1rem; border-radius: 9999px; font-size: 1.4rem; font-weight: 700;
            text-decoration: none; font-family: 'Montserrat', sans-serif; border: none; cursor: pointer;
            letter-spacing: 0.05em;
        }
        .sticky-btn--dark {
            background: rgba(255,255,255,0.08); color: var(--text-light);
            border: 1px solid rgba(255,255,255,0.12);
        }
        .sticky-btn--gold {
            background: var(--gold-gradient); color: var(--primary-dark);
        }
        @media (max-width: 768px) {
            .sticky-cta { display: block; }
        }

        /* === EXIT POPUP === */
        .exit-overlay {
            display: none; position: fixed; inset: 0; z-index: 10000;
            background: rgba(0,0,0,0.75); backdrop-filter: blur(4px);
            align-items: center; justify-content: center;
        }
        .exit-overlay.is-visible { display: flex; animation: fadeInScale 0.3s var(--ease-smooth); }
        .exit-box {
            background: var(--bg-card); border-radius: 12px; padding: 4rem 3rem;
            max-width: 480px; width: 90%; position: relative;
            border-top: 4px solid var(--gold); text-align: center;
        }
        .exit-close {
            position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none;
            color: var(--text-muted); cursor: pointer; font-size: 2.4rem; line-height: 1;
            transition: color 0.2s ease;
        }
        .exit-close:hover { color: var(--text-light); }
        .exit-box h3 {
            font-size: 2.4rem; margin-bottom: 1.5rem; font-family: 'Montserrat', sans-serif;
        }
        .exit-box p {
            color: var(--text-muted); font-size: 1.6rem; margin-bottom: 2.5rem; line-height: 1.7;
        }

        /* === SECTION SPACING === */
        section { position: relative; }

        /* Scrollbar styling */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--bg-dark); }
        ::-webkit-scrollbar-thumb { background: rgba(212,175,55,0.3); border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: rgba(212,175,55,0.5); }