<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #FF1493;
            --secondary: #FF69B4;
            --dark: #1a1a1a;
            --gold: #FFD700;
            --cream: #FFF8F0;
            --white: #ffffff;
            --gray: #666666;
            --light-gray: #f5f5f5;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            color: var(--dark);
            background: var(--cream);
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        
        .logo img {
            height: 50px;
            width: auto;
        }
        
        .cta-header {
            display: none;
        }
        
        /* Hero Section */
        .hero {
            padding: 60px 0;
            background: linear-gradient(135deg, #fff8f0 0%, #ffe4e8 100%);
        }
        
        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .gradient-text {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-subtitle {
            font-size: 18px;
            color: var(--gray);
            margin-bottom: 25px;
            line-height: 1.7;
        }
        
        .hero-features {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .hero-features li {
            padding: 10px 0;
            padding-left: 35px;
            position: relative;
            font-size: 16px;
            color: var(--dark);
        }
        
        .hero-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: 700;
            font-size: 20px;
        }
        
        .hero-image {
            text-align: center;
        }
        
        .hero-image img {
            max-width: 100%;
            width: 100%;
            min-width: 400px;
            height: auto;
            filter: drop-shadow(0 20px 40px rgba(255, 20, 147, 0.3));
            animation: float 3s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        /* Buttons */
        .btn {
            display: inline-block;
            padding: 16px 40px;
            border: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 700;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 20, 147, 0.4);
        }
        
        .btn-secondary {
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-secondary:hover {
            background: var(--primary);
            color: white;
        }
        
        .cta-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        
        .trust-badges {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: white;
            border-radius: 50px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            font-size: 14px;
            font-weight: 600;
        }
        
        /* Section Styles */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(32px, 4vw, 48px);
            text-align: center;
            margin-bottom: 15px;
            color: var(--dark);
            font-weight: 900;
        }
        
        .section-subtitle {
            text-align: center;
            color: var(--gray);
            font-size: 18px;
            margin-bottom: 50px;
            max-width: 750px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* What Is Section */
        .what-is {
            background: white;
        }
        
        .content-box {
            max-width: 950px;
            margin: 0 auto;
            font-size: 17px;
            line-height: 1.9;
        }
        
        .content-box p {
            margin-bottom: 20px;
            color: var(--gray);
        }
        
        .content-box strong {
            color: var(--primary);
            font-weight: 600;
        }
        
        /* Image Containers */
        .image-container {
            text-align: center;
            margin: 50px 0;
        }
        
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.12);
        }
        
        /* Reviews Grid */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        
        .review-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-10px);
        }
        
        .review-card img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .review-content {
            padding: 25px;
            text-align: center;
        }
        
        .stars {
            color: var(--gold);
            font-size: 22px;
            margin-bottom: 10px;
        }
        
        .review-content h3 {
            color: var(--primary);
            font-size: 20px;
            margin-bottom: 10px;
        }
        
        .review-content p {
            color: var(--gray);
            font-style: italic;
            line-height: 1.6;
        }
        
        /* How It Works */
        .how-works {
            background: var(--light-gray);
        }
        
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        
        .step-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .step-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(255, 20, 147, 0.15);
        }
        
        .step-number {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: 800;
            margin: 0 auto 20px;
        }
        
        .step-card h3 {
            font-size: 22px;
            margin-bottom: 12px;
            color: var(--dark);
        }
        
        .step-card p {
            color: var(--gray);
            line-height: 1.7;
        }
        
        /* Ingredients */
        .ingredients-list {
            max-width: 950px;
            margin: 50px auto;
            display: grid;
            gap: 20px;
        }
        
        .ingredient-item {
            background: white;
            padding: 25px;
            border-radius: 15px;
            border-left: 5px solid var(--primary);
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        
        .ingredient-item:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 30px rgba(255, 20, 147, 0.15);
        }
        
        .ingredient-item h3 {
            color: var(--primary);
            font-size: 20px;
            margin-bottom: 10px;
        }
        
        .ingredient-item p {
            color: var(--gray);
            line-height: 1.7;
        }
        
        /* Benefits */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        
        .benefit-card {
            background: white;
            padding: 35px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 45px rgba(255, 20, 147, 0.2);
        }
        
        .benefit-icon {
            font-size: 50px;
            margin-bottom: 20px;
        }
        
        .benefit-card h3 {
            font-size: 22px;
            margin-bottom: 12px;
            color: var(--dark);
        }
        
        .benefit-card p {
            color: var(--gray);
            line-height: 1.7;
        }
        
        /* Pricing */
        .pricing {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
        }
        
        .pricing .section-title,
        .pricing .section-subtitle {
            color: white;
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        
        .pricing-card {
            background: white;
            padding: 35px;
            border-radius: 25px;
            text-align: center;
            position: relative;
            color: var(--dark);
            transition: all 0.3s ease;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
        }
        
        .pricing-card.featured {
            transform: scale(1.08);
            box-shadow: 0 25px 70px rgba(0,0,0,0.35);
        }
        
        .pricing-card img {
            width: 100%;
            max-width: 200px;
            height: auto;
            margin: 0 auto 20px;
            display: block;
        }
        
        .best-value {
            position: absolute;
            top: -15px;
            right: 20px;
            background: var(--gold);
            color: var(--dark);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 14px;
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
        }
        
        .pricing-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .price {
            font-size: 56px;
            font-weight: 900;
            font-family: 'Playfair Display', serif;
            color: var(--primary);
            margin: 20px 0;
        }
        
        .price-note {
            color: var(--gray);
            margin-bottom: 25px;
            line-height: 1.6;
        }
        
        .pricing-features {
            list-style: none;
            margin: 20px 0;
            text-align: left;
        }
        
        .pricing-features li {
            padding: 8px 0;
            padding-left: 30px;
            position: relative;
            color: var(--gray);
        }
        
        .pricing-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: 700;
            font-size: 18px;
        }
        
        /* FAQ */
        .faq {
            background: var(--light-gray);
        }
        
        .faq-list {
            max-width: 850px;
            margin: 50px auto 0;
        }
        
        .faq-item {
            margin-bottom: 15px;
        }
        
        .faq-question {
            padding: 20px 25px;
            cursor: pointer;
            font-weight: 600;
            font-size: 18px;
            color: var(--primary);
            background: white;
            border-radius: 12px;
            margin-bottom: 2px;
        }
        
        .faq-question:hover {
            background: rgba(255, 20, 147, 0.05);
        }
        
        .faq-answer {
            padding: 20px 25px;
            color: var(--gray);
            line-height: 1.8;
            background: white;
            border-radius: 12px;
            display: none;
            margin-bottom: 15px;
        }
        
        .faq-item.active .faq-answer {
            display: block;
        }
        
        /* Final CTA */
        .final-cta {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            padding: 80px 20px;
            text-align: center;
            color: white;
        }
        
        .final-cta h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(32px, 4vw, 48px);
            margin-bottom: 20px;
            color: white;
            font-weight: 900;
        }
        
        .final-cta p {
            font-size: 20px;
            margin-bottom: 30px;
            color: white;
        }
        
        .final-cta-image {
            margin: 30px 0;
        }
        
        .final-cta-image img {
            max-width: 450px;
            width: 100%;
            margin: 0 auto;
            display: block;
        }
        
        .final-cta .btn-primary {
            background: white !important;
            color: var(--primary) !important;
            font-size: 20px;
            padding: 18px 50px;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 12px;
        }
        
        .footer-section a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-section a:hover {
            color: var(--primary);
        }
        
        .footer-disclaimer {
            background: rgba(255,255,255,0.05);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
            font-size: 14px;
            line-height: 1.7;
        }
        
        .footer-badges {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin: 30px 0;
            font-size: 14px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 14px;
            opacity: 0.7;
        }
        
        /* Floating CTA */
        .floating-cta {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            animation: bounce 2s ease-in-out infinite;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }
        
        /* Responsive */
        @media (max-width: 968px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .hero-image {
                order: -1;
            }
            
            .hero-image img {
                min-width: 280px;
                width: 80%;
                margin: 0 auto;
            }
            
            .cta-buttons {
                justify-content: center;
            }
            
            .btn {
                padding: 14px 30px;
                font-size: 16px;
            }
            
            section {
                padding: 50px 0;
            }
            
            .pricing-card.featured {
                transform: scale(1);
            }
            
            .floating-cta {
                bottom: 15px;
                right: 15px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 600px) {
            .cta-buttons {
                flex-direction: column;
                align-items: stretch;
            }
            
            .btn {
                width: 100%;
            }
        }
    </style>