:root {
            --primary: #FF5A79;
            --primary-hover: #E04360;
            --secondary: #FFF0F3;
            --accent-yellow: #FFD166;
            --accent-purple: #7052FF;
            --text-main: #2D232E;
            --text-muted: #6B5E6E;
            --bg-light: #FFFBFB;
            --white: #FFFFFF;
            --shadow-soft: 0 20px 40px rgba(255, 90, 121, 0.08);
            --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.05);
            --radius-lg: 24px;
            --radius-md: 16px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Plus Jakarta Sans', sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-light);
            color: var(--text-main);
            overflow-x: hidden;
            line-height: 1.6;
        }

        .serif {
            font-family: 'Playfair Display', serif;
        }

        /* --- Header / Nav --- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 5%;
            backdrop-filter: blur(12px);
            background: rgba(255, 251, 251, 0.85);
            border-bottom: 1px solid rgba(255, 90, 121, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

         
        nav {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        nav a {
            text-decoration: none;
            color: var(--text-muted);
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        nav a:hover {
            color: var(--primary);
        }
        .testimonials-section {
        padding: 50px 20px;
        background: #f8fafc;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
        margin-top: 30px;
    }

    .testimonial-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 24px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
        border: 1px solid #e2e8f0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(112, 82, 255, 0.12);
        border-color: #cbd5e1;
    }

    .testimonial-stars {
        display: flex;
        align-items: center;
        gap: 4px;
        margin-bottom: 14px;
    }

    .testimonial-text {
        color: #334155;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .testimonial-author {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #f1f5f9;
        padding-top: 14px;
        margin-top: auto;
    }

    .anon-badge {
        font-weight: 600;
        font-size: 0.82rem;
        color: #7052FF;
        background: rgba(112, 82, 255, 0.08);
        padding: 4px 12px;
        border-radius: 20px;
    }

    .call-tag {
        font-size: 0.78rem;
        color: #10b981;
        display: flex;
        align-items: center;
        gap: 4px;
        font-weight: 600;
    }

        .btn-primary {
            background: var(--primary);
            color: var(--white);
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 20px rgba(255, 90, 121, 0.3);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 15px 25px rgba(255, 90, 121, 0.4);
        }

        /* --- Hero Section --- */
        .hero {
            position: relative;
            min-height: 100vh;
            padding: 140px 5% 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: radial-gradient(circle at 50% 30%, #FFF0F3 0%, #FFFBFB 70%);
        }

        /* Hero Main Content */
        .hero-content {
            max-width: 820px;
            text-align: center;
            position: relative;
            z-index: 10;
            pointer-events: auto;
        }

        /* Slider Dynamic Wrapper with Smooth Transitions */
        .slide-text-container {
            min-height: 220px;
            transition: opacity 0.5s ease, transform 0.5s ease;
            opacity: 1;
            transform: translateY(0);
        }

        .slide-text-container.fade-out {
            opacity: 0;
            transform: translateY(-10px);
        }

        .badge {
            background: rgba(255, 90, 121, 0.1);
            color: var(--primary);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 24px;
            border: 1px solid rgba(255, 90, 121, 0.2);
        }

        .hero h1 {
            font-size: 3.5rem;
            line-height: 1.18;
            margin-bottom: 20px;
            color: var(--text-main);
            font-weight: 800;
        }

        .hero h1 span {
            color: var(--primary);
            font-style: italic;
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 30px;
            max-width: 680px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Slider Indicators / Dots */
        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 30px;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 90, 121, 0.25);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            width: 28px;
            border-radius: 12px;
            background: var(--primary);
        }

        .price-tag {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--white);
            padding: 8px 16px 8px 24px;
            border-radius: 50px;
            box-shadow: var(--shadow-soft);
            margin-top: 20px;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .price-tag .amount {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
        }

        /* Static Side Badges */
        .static-badge {
            position: absolute;
            background: var(--white);
            padding: 12px 20px;
            border-radius: 50px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            font-size: 0.9rem;
            border: 1px solid rgba(255, 90, 121, 0.15);
            z-index: 10;
        }

        .sb-1 { top: 22%; left: 6%; }
        .sb-2 { top: 70%; left: 8%; }
        .sb-3 { top: 24%; right: 6%; }
        .sb-4 { top: 72%; right: 8%; }

        /* Floating Naked Icons */
        .ag-icon {
            position: absolute;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
            will-change: transform;
            filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.08));
        }

        /* Background Blobs */
        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.5;
            z-index: 1;
        }
        .blob-1 { top: 10%; left: 10%; width: 320px; height: 320px; background: #FFD166; }
        .blob-2 { bottom: 10%; right: 10%; width: 380px; height: 380px; background: #FF5A79; }

        /* Vibes / Approach Section */
        .vibes {
            padding: 100px 5%;
            background: var(--white);
        }

        .section-title {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 16px;
        }

        .vibes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .vibe-card {
            background: var(--bg-light);
            padding: 40px 30px;
            border-radius: var(--radius-lg);
            text-align: center;
            transition: all 0.3s;
            border: 1px solid transparent;
        }

        .vibe-card:hover {
            transform: translateY(-8px);
            background: var(--white);
            border-color: rgba(255, 90, 121, 0.2);
            box-shadow: var(--shadow-card);
        }

        .vibe-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 1.8rem;
        }

        .vibe-card:nth-child(1) .vibe-icon { background: #FFF0F3; color: #FF5A79; }
        .vibe-card:nth-child(2) .vibe-icon { background: #EFEAFF; color: #7052FF; }
        .vibe-card:nth-child(3) .vibe-icon { background: #FFF9E6; color: #D9A000; }
        .vibe-card:nth-child(4) .vibe-icon { background: #E6FFFA; color: #00B894; }

        .vibe-card h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
        }

        .vibe-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* How It Works */
        .how-it-works {
            padding: 100px 5%;
            background: var(--bg-light);
        }

        .steps-wrapper {
            display: flex;
            justify-content: space-between;
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            flex-wrap: wrap;
            gap: 30px;
        }

        .step-item {
            flex: 1;
            min-width: 250px;
            background: var(--white);
            padding: 32px;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-card);
            position: relative;
        }

        .step-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--secondary);
            -webkit-text-stroke: 2px var(--primary);
            margin-bottom: 16px;
        }

        /* Anonymous Testimonials Section */
        .testimonials-section {
            padding: 100px 5%;
            background: var(--white);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: var(--bg-light);
            border-radius: var(--radius-lg);
            padding: 32px;
            box-shadow: var(--shadow-card);
            border: 1px solid rgba(255, 90, 121, 0.1);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
        }

        .testimonial-stars {
            color: #FFD166;
            margin-bottom: 16px;
            display: flex;
            gap: 4px;
        }

        .testimonial-text {
            color: var(--text-main);
            font-size: 1rem;
            line-height: 1.6;
            font-style: italic;
            margin-bottom: 24px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px dashed rgba(0, 0, 0, 0.1);
            padding-top: 16px;
        }

        .anon-badge {
            background: rgba(112, 82, 255, 0.1);
            color: var(--accent-purple);
            font-size: 0.8rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 50px;
        }

        .call-tag {
            font-size: 0.8rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        /* Pricing & Offer */
        .pricing-section {
            padding: 100px 5%;
            background: var(--bg-light);
        }

        .pricing-card {
            max-width: 600px;
            margin: 0 auto;
            background: linear-gradient(135deg, #FFF0F3 0%, #FFFFFF 100%);
            border: 2px solid var(--primary);
            border-radius: var(--radius-lg);
            padding: 50px 40px;
            text-align: center;
            box-shadow: var(--shadow-soft);
            position: relative;
            overflow: hidden;
        }

        .pricing-badge {
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--primary);
            color: var(--white);
            padding: 6px 40px;
            transform: rotate(45deg);
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .price-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--primary);
            margin: 20px 0;
        }

        .price-number span {
            font-size: 1.2rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .features-list {
            list-style: none;
            text-align: left;
            max-width: 380px;
            margin: 0 auto 32px;
        }

        .features-list li {
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text-main);
            font-weight: 600;
        }

        /* Crisis & Safety Banner */
        .crisis-banner {
            background: #FFF0F3;
            border-top: 1px solid rgba(255, 90, 121, 0.2);
            border-bottom: 1px solid rgba(255, 90, 121, 0.2);
            padding: 24px 5%;
            text-align: center;
        }

        .crisis-container {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .crisis-text {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .crisis-text strong {
            color: var(--text-main);
        }

        .crisis-link {
            color: var(--primary);
            font-weight: 700;
            text-decoration: underline;
            font-size: 0.9rem;
        }

        /* Footer */
        footer {
            background: var(--text-main);
            color: var(--white);
            padding: 60px 5% 30px;
            text-align: center;
        }

        footer p {
            color: #A095A3;
            font-size: 0.9rem;
            margin-top: 20px;
        }

        /* Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(45, 35, 46, 0.7);
            backdrop-filter: blur(5px);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
        }

        .modal-overlay.active {
            opacity: 1;
            pointer-events: all;
        }

        .modal {
            background: var(--white);
            padding: 40px;
            border-radius: var(--radius-lg);
            width: 90%;
            max-width: 480px;
            position: relative;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .modal-overlay.active .modal {
            transform: translateY(0);
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--text-muted);
        }

        .form-group {
            margin-bottom: 20px;
            text-align: left;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }

        .form-group input, .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #E0D9E1;
            border-radius: 10px;
            outline: none;
            font-size: 1rem;
        }

        .form-group input:focus, .form-group textarea:focus {
            border-color: var(--primary);
        }
        /* Print Optimization for Single-Page Receipt PDF */
@media print {
    html, body {
        height: auto !important;
        overflow: visible !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #ffffff !important;
    }

    body * {
        visibility: hidden !important;
    }

    .modal-overlay, .modal {
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
    }

    #modalSuccessView, #printableReceipt, #printableReceipt * {
        visibility: visible !important;
    }

    #printableReceipt {
        position: absolute !important;
        left: 5% !important;
        top: 20px !important;
        width: 90% !important;
        margin: 0 !important;
        padding: 24px !important;
        box-shadow: none !important;
        border: 1px solid #ccc !important;
        page-break-inside: avoid !important;
    }

    .no-print {
        display: none !important;
    }
}

        @media (max-width: 900px) {
            .hero h1 { font-size: 2.6rem; }
            .static-badge { display: none; }
            nav { display: none; }
        }
    