        :root {
            --color-plum: #4a3148;
            --color-plum-dark: #2d1e2f;
            --color-gold: #d4a574;
            --color-gold-dark: #b8935f;
            --color-cream: #faf8f5;
            --color-cream-dark: #f0ebe3;
            --color-rose: #e8c4d4;
            --color-rose-light: #f5e1ea;
            --color-text: #2d1e2f;
            --color-text-light: #6b5568;
            --font-display: 'Cormorant Garamond', serif;
            --font-body: 'Nunito Sans', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body);
            color: var(--color-text);
            line-height: 1.6;
            background: white;
        }
        p{ color: inherit;}

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .container-narrow {
            max-width: 800px;
            margin: 0 auto;
        }

        /* Top Bar */
        .top-bar {
            background: linear-gradient(135deg, var(--color-plum), var(--color-plum-dark));
            color: white;
            text-align: center;
            padding: 12px 20px;
            font-size: 14px;
            font-weight: 600;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .top-bar .highlight {
            color: var(--color-gold);
            font-weight: 700;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(180deg, var(--color-cream) 0%, white 100%);
            padding: 60px 20px 80px;
            text-align: center;
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: 3rem;
            line-height: 1.2;
            color: var(--color-plum);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .hero h1 .highlight {
            color: var(--color-gold);
        }

        .hero .subtitle {
            font-size: 1.3rem;
            color: var(--color-text-light);
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Trust Indicators */
        .trust-bar {
            display: flex;
            justify-content: center;
            gap: 50px;
            margin: 40px 0;
            flex-wrap: wrap;
        }

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

        .trust-number {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--color-gold);
            line-height: 1;
        }

        .trust-label {
            font-size: 0.9rem;
            color: var(--color-text-light);
            margin-top: 5px;
        }

        /* Buttons */
        .btn-primary {
            background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
        }

        .btn-secondary {
            background: white;
            color: var(--color-plum);
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            border: 2px solid var(--color-plum);
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
        }

        .btn-secondary:hover {
            background: var(--color-plum);
            color: white;
        }

        /* Value Proposition */
        .value-prop {
            background: white;
            padding: 80px 20px;
        }

        .value-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .value-card {
            text-align: center;
            padding: 30px;
            background: var(--color-cream);
            border-radius: 15px;
            transition: transform 0.3s ease;
        }

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

        .value-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .value-card h3 {
            font-family: var(--font-display);
            color: var(--color-plum);
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .value-card p {
            color: var(--color-text-light);
        }

        /* How It Works */
        .how-it-works {
            background: linear-gradient(180deg, var(--color-cream) 0%, white 100%);
            padding: 80px 20px;
        }

        .how-it-works h2 {
            font-family: var(--font-display);
            font-size: 2.5rem;
            text-align: center;
            color: var(--color-plum);
            margin-bottom: 20px;
        }

        .steps-container {
            max-width: 900px;
            margin: 60px auto 0;
        }

        .step {
            display: flex;
            gap: 30px;
            margin-bottom: 50px;
            align-items: center;
        }

        .step:nth-child(even) {
            flex-direction: row-reverse;
        }

        .step-number {
            flex: 0 0 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 3rem;
            color: white;
            font-weight: 700;
            box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
        }
        .step-image-placeholder img{ aspect-ratio: 3 / 2; object-fit: cover; object-position: center; width: 100%; border-radius: 10px;}
        .step-content {
            flex: 1;
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .step-content h3 {
            font-family: var(--font-display);
            font-size: 1.8rem;
            color: var(--color-plum);
            margin-bottom: 10px;
        }

        .step-content p {
            color: var(--color-text-light);
            font-size: 1.1rem;
        }

        .step-image-placeholder {
            background: var(--color-cream);
            border: 2px dashed var(--color-gold);
            border-radius: 10px;
            padding: 40px;
            text-align: center;
            color: var(--color-text-light);
            margin-top: 15px;
            font-style: italic;
        }

        /* What You'll Get */
        .what-you-get {
            background: var(--color-plum);
            color: white;
            padding: 80px 20px;
        }

        .what-you-get h2 {
            font-family: var(--font-display);
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 50px;
        }

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

        .deliverable-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .deliverable-card .icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .deliverable-card h4 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .deliverable-card p {
            opacity: 0.9;
            line-height: 1.7;
        }

        /* Social Proof */
        .testimonials {
            background: white;
            padding: 80px 20px;
        }

        .testimonials h2 {
            font-family: var(--font-display);
            font-size: 2.5rem;
            text-align: center;
            color: var(--color-plum);
            margin-bottom: 50px;
        }

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

        .testimonial-card {
            background: var(--color-cream);
            padding: 30px;
            border-radius: 15px;
            position: relative;
        }

        .testimonial-stars {
            color: var(--color-gold);
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .testimonial-text {
            color: var(--color-text);
            margin-bottom: 15px;
            line-height: 1.7;
        }

        .testimonial-author {
            color: var(--color-text-light);
            font-size: 0.9rem;
            font-weight: 600;
        }

        .testimonial-card.featured {
            background: linear-gradient(135deg, var(--color-plum), var(--color-plum-dark));
            color: white;
            grid-column: span 2;
        }

        .testimonial-card.featured .testimonial-text {
            color: white;
            font-size: 1.15rem;
        }

        .testimonial-card.featured .testimonial-author {
            color: rgba(255, 255, 255, 0.8);
        }

        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, var(--color-rose-light), var(--color-cream));
            padding: 60px 20px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .stat-item {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .stat-number {
            font-family: var(--font-display);
            font-size: 3rem;
            color: var(--color-gold);
            font-weight: 700;
            line-height: 1;
        }

        .stat-label {
            color: var(--color-text-light);
            margin-top: 10px;
            font-weight: 600;
        }

        /* Pricing Section */
        .pricing-section {
            background: white;
            padding: 80px 20px;
            text-align: center;
        }

        .pricing-section h2 {
            font-family: var(--font-display);
            font-size: 2.5rem;
            color: var(--color-plum);
            margin-bottom: 40px;
        }

        .price-box {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 50px;
            border-radius: 20px;
            border: 2px solid var(--color-gold);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .price {
            font-family: var(--font-display);
            font-size: 4rem;
            color: var(--color-gold);
            font-weight: 700;
            line-height: 1;
            margin-bottom: 10px;
        }

        .price-subtext {
            color: var(--color-text-light);
            margin-bottom: 30px;
        }

        .price-features {
            text-align: left;
            margin: 30px 0;
        }

        .price-feature {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            color: var(--color-text);
        }

        .price-feature::before {
            content: "✓";
            color: var(--color-gold);
            font-size: 1.5rem;
            font-weight: 700;
        }

        .guarantee {
            background: var(--color-plum);
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin-top: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .guarantee svg {
            width: 30px;
            height: 30px;
        }

        /* FAQ Section */
        .faq-section {
            background: var(--color-cream);
            padding: 80px 20px;
        }

        .faq-section h2 {
            font-family: var(--font-display);
            font-size: 2.5rem;
            text-align: center;
            color: var(--color-plum);
            margin-bottom: 50px;
        }

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

        .faq-item {
            background: white;
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .faq-question {
            font-family: var(--font-display);
            font-size: 1.3rem;
            color: var(--color-plum);
            font-weight: 600;
            margin-bottom: 15px;
        }

        .faq-answer {
            color: var(--color-text-light);
            line-height: 1.7;
        }

        /* Footer */
        footer {
            background: var(--color-plum-dark);
            color: white;
            padding: 40px 20px;
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 20px 0;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s;
        }
        footer p{ color: white; opacity: 0.8;}

        .footer-links a:hover {
            opacity: 1;
        }

        .footer-disclaimer {
            margin-top: 30px;
            font-size: 0.85rem;
            opacity: 0.7;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Sticky CTA */
        .sticky-cta {
            position: fixed;
            bottom: -100px;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, var(--color-plum), var(--color-plum-dark));
            padding: 15px 20px;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
            z-index: 99;
            transition: bottom 0.3s ease;
        }

        .sticky-cta.visible {
            bottom: 0;
            text-align: center;
        }

        .sticky-cta a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
        }

        /* Modal Styles */
        .modal-content {
            border-radius: 20px;
            border: none;
        }

        .modal-body {
            padding: 40px;
        }

        .popupTitle {
            text-align: center;
            margin-bottom: 30px;
        }

        .popupTitleIcon {
            font-size: 3rem;
            margin-bottom: 10px;
        }

        .popupTitle h4 {
            font-family: var(--font-display);
            font-size: 2rem;
            color: var(--color-plum);
            margin-bottom: 10px;
        }

        .popupTitle p {
            color: var(--color-text-light);
        }

        .inputBox {
            margin-bottom: 20px;
        }

        .inputBox label {
            display: block;
            margin-bottom: 8px;
            color: var(--color-text);
            font-weight: 600;
        }

        .inputBox input,
        .inputBox select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid var(--color-cream-dark);
            border-radius: 8px;
            font-size: 1rem;
            font-family: var(--font-body);
            transition: border-color 0.3s;
        }

        .inputBox input:focus,
        .inputBox select:focus {
            outline: none;
            border-color: var(--color-gold);
        }

        .dob-container {
            display: grid;
            grid-template-columns: 1fr 2fr 1.5fr;
            gap: 10px;
        }

        .privacyText {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            color: var(--color-text-light);
            font-size: 0.9rem;
            margin: 20px 0;
        }

        .privacyText svg {
            width: 16px;
            height: 16px;
        }

        form .button {
            width: 100%;
            background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
            color: white;
            padding: 18px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        form .button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
        }

        /* Social Proof Toast */
        .toast.social-proof {
            position: fixed;
            bottom: 20px;
            left: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            padding: 15px 20px;
            max-width: 300px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .toast.social-proof.show {
            opacity: 1;
            transform: translateY(0);
        }

        .toast-header {
            font-size: 0.8rem;
            color: var(--color-text-light);
            margin-bottom: 5px;
        }

        .toast-body {
            color: var(--color-text);
            font-weight: 600;
        }

        .tiredofWaiting{ max-width: 400px; margin: 0 auto; border-radius: 16px; aspect-ratio: 3 / 2; object-fit: cover;}
        .plam_secrete_modal .modal-content .modal-body{background: none;}
        .plam_secrete_modal .modal-content .modal-body .btn-close{ background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;}
        .plam_secrete_modal .modal-content .modal-body h4{ color: #fff;}
        .plam_secrete_modal .inputBox label{ color: #fff;}
        .plam_secrete_modal .inputBox input, .plam_secrete_modal .inputBox select{ height: auto;}
        .plam_secrete_modal .inputBox{margin: 0;}
        .plam_secrete_modal .privacyText{ color: #fff; margin: 0;}

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero .subtitle {
                font-size: 1.1rem;
            }
            
            .step {
                flex-direction: column !important;
            }
            
            .step-number {
                flex: 0 0 80px;
                width: 80px;
                height: 80px;
                font-size: 2.5rem;
            }
            
            .testimonial-card.featured {
                grid-column: span 1;
            }
            
            .trust-bar {
                gap: 30px;
            }
            
            .price {
                font-size: 3rem;
            }
        }
        @media (max-width: 568px) {
            .container{padding: 0;}
            .price-box{ padding: 24px;}
            .step-image-placeholder{ padding: 10px;}
        }