/* 
 * Design Philosophy: Playful Wellness with Feminine Energy
 * Color Psychology Applied:
 * - Green (#16A34A): Trust, health, growth, natural - used for primary actions & CTAs
 * - Pink (#F472B6): Compassion, playfulness, femininity - used for accents & highlights
 * - Yellow (#FBBF24): Optimism, energy, happiness - used for urgency & attention
 * - White: Cleanliness, simplicity, trust - background for clarity
 * Typography: Poppins (headlines), Inter (body)
 * Micro-interactions: Smooth transitions, hover effects, playful animations
 */

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

:root {
    /* Primary Colors - Trust & Health */
    --primary: #16A34A;
    --primary-light: #10B981;
    --primary-dark: #15803D;
    
    /* Accent Colors - Playfulness & Femininity */
    --accent: #F472B6;
    --accent-light: #F9A8D4;
    --accent-dark: #EC4899;
    
    /* Secondary Colors - Energy & Urgency */
    --secondary: #FBBF24;
    --secondary-light: #FCD34D;
    --secondary-dark: #F59E0B;
    
    /* Neutral Colors */
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --text-muted: #9CA3AF;
    --bg-light: #F9FAFB;
    --bg-lighter: #FAFBFC;
    --white: #FFFFFF;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 15px 30px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: 3rem;
    font-weight: 800;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
}

p {
    font-size: 1rem;
    color: var(--text-light);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== BUTTONS - Psychology: Green (Trust) for Primary Actions ===== */
.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-block;
    text-decoration: none;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary-dark);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.btn-primary:active {
    transform: scale(0.95);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    width: 100%;
}

.btn-white {
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-white:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

/* ===== HERO SECTION - Psychology: Green (Growth) + Pink (Playfulness) ===== */
.hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.08) 0%, rgba(244, 114, 182, 0.08) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    background-color: rgba(22, 163, 74, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--text-light);
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: var(--secondary);
    font-size: 1.25rem;
    text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
}

.social-proof p {
    font-weight: 600;
    color: var(--text-dark);
}

.social-proof strong {
    color: var(--primary);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.3), rgba(251, 191, 36, 0.3));
    border-radius: 50%;
    z-index: -1;
}

/* ===== BENEFITS SECTION - Psychology: Green (Trust) + White (Clarity) ===== */
.benefits-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.benefits-section h2 {
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
}

.benefit-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-left-color: var(--accent);
}

.check-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.benefit-card p {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

/* ===== WHY CHOOSE SECTION - Psychology: Pink (Playfulness) + Yellow (Energy) ===== */
.why-choose-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.why-choose-section h2 {
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.why-item:hover {
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
    transform: translateY(-3px);
}

.emoji {
    font-size: 2rem;
    flex-shrink: 0;
}

.why-item p {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

/* ===== BONUS SECTION - Psychology: Yellow (Urgency) + Pink (Excitement) ===== */
.bonus-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.05) 0%, rgba(244, 114, 182, 0.05) 100%);
}

.bonus-section h2 {
    text-align: center;
}

.bonus-subtitle {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--secondary);
}

.bonus-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
    border-top-color: var(--accent);
}

.bonus-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.bonus-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

/* ===== PRICING SECTION - Psychology: Green (Trust) + Yellow (Urgency) ===== */
.pricing-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.pricing-section h2 {
    text-align: center;
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1) 0%, rgba(244, 114, 182, 0.1) 100%);
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
    border: 2px solid rgba(22, 163, 74, 0.2);
    box-shadow: var(--shadow-lg);
}

.price-content {
    margin-bottom: 2rem;
}

.old-price {
    font-size: 1.25rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.new-price-label {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.new-price {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.5rem;
}

.price-note {
    font-weight: 600;
    color: var(--text-dark);
}

.countdown-section {
    margin: 2rem 0;
}

.countdown-section p {
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.countdown-item {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--text-dark);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    text-align: center;
    min-width: 70px;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
    font-weight: 600;
}

.countdown-value {
    font-size: 1.75rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}

.countdown-label {
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.countdown-separator {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
}

.trust-badge {
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* ===== RECIPES SECTION - Psychology: Green (Health) + Pink (Playfulness) ===== */
.recipes-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.recipes-section h2 {
    text-align: center;
}

.recipes-subtitle {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.carousel-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.carousel-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.recipes-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.recipe-card {
    background-color: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
}

.recipe-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.recipe-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recipe-card:hover img {
    transform: scale(1.1);
}

.recipe-card p {
    padding: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

/* ===== TESTIMONIALS SECTION - Psychology: Pink (Trust) + Green (Health) ===== */
.testimonials-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.05) 0%, rgba(22, 163, 74, 0.05) 100%);
}

.testimonials-section h2 {
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.testimonial-card .stars {
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 700;
    color: var(--text-dark);
}

/* ===== GUARANTEE SECTION - Psychology: Green (Trust) + Yellow (Confidence) ===== */
.guarantee-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
}

.guarantee-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.guarantee-content h2 {
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ===== FAQ SECTION - Psychology: Green (Trust) + White (Clarity) ===== */
.faq-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.faq-section h2 {
    text-align: center;
}

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

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(22, 163, 74, 0.2);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.05) 0%, rgba(244, 114, 182, 0.05) 100%);
}

.faq-icon {
    color: var(--primary);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 1.5rem;
    background-color: var(--white);
    color: var(--text-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    line-height: 1.8;
}

/* ===== FINAL CTA SECTION - Psychology: Green (Action) + Yellow (Urgency) ===== */
.final-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    text-align: center;
    color: var(--white);
}

.final-cta-section h2 {
    color: var(--white);
    background: none;
    -webkit-text-fill-color: unset;
    margin-bottom: 1rem;
}

.final-cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.final-cta-section .btn-white {
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
}

.final-cta-section .btn-white:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--text-dark);
}

/* ===== FOOTER ===== */
.footer {
    padding: 2rem 0;
    background-color: var(--text-dark);
    color: var(--white);
    text-align: center;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .new-price {
        font-size: 2.5rem;
    }

    .countdown {
        flex-wrap: wrap;
    }

    .countdown-item {
        min-width: 60px;
        padding: 0.5rem 0.75rem;
    }

    .countdown-value {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    .btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.875rem;
    }

    .btn-large {
        padding: 0.75rem 1.5rem;
    }

    .new-price {
        font-size: 2rem;
    }

    .countdown-item {
        min-width: 50px;
        padding: 0.5rem 0.5rem;
    }
}
