/* Global Styles & Variables */
:root {
    /* Premium Color Palette */
    --primary-color: #FFC107;
    /* Rich Amber */
    --primary-dark: #FFB300;
    --primary-light: #FFECB3;

    --secondary-color: #4CAF50;
    /* Fresh Green */
    --secondary-dark: #388E3C;

    --accent-color: #FF5252;
    /* Vivid Red */

    --text-main: #1F2937;
    --text-muted: #4B5563;
    --text-light: #9CA3AF;

    --bg-body: #FAFAF9;
    /* Warm off-white */
    --bg-white: #FFFFFF;

    /* Modern Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Glow Effects */
    --glow-primary: 0 0 20px rgba(255, 193, 7, 0.4);

    /* Typography */
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --trans-fast: 0.2s ease;
    --trans-med: 0.3s ease;
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    /* Reset to standard base */
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1100px;
    /* Slightly tighter for better reading */
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.highlight {
    color: var(--primary-dark);
    font-weight: 800;
}

.highlight-orange {
    color: #E65100;
}

.highlight-green {
    color: var(--secondary-dark);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--trans-med);
    letter-spacing: 0.5px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
    border: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.5);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.2), transparent);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-cta-green {
    background: linear-gradient(135deg, #66BB6A 0%, #43A047 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.btn-cta-green:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.5);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 160, 0, 0.7);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 15px rgba(255, 160, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 160, 0, 0);
    }
}

/* Header / Notification Bar */
.top-bar {
    background: #111827;
    color: #fff;
    text-align: center;
    padding: 10px 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

#current-date {
    color: var(--primary-color);
    font-weight: 700;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF8E1 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(255, 193, 7, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(76, 175, 80, 0.05) 0%, transparent 20%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.2);
    color: #B00020;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
    max-width: 900px;
    line-height: 1.15;
}

.hero h1 .highlight {
    background: linear-gradient(120deg, transparent 0%, transparent 60%, rgba(255, 193, 7, 0.4) 60%, rgba(255, 193, 7, 0.4) 90%, transparent 90%);
    display: inline;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 400;
}

.hero-image-centered {
    margin: 0 0 40px;
    position: relative;
    transition: transform 0.3s;
}

.hero-image-centered:hover {
    transform: translateY(-5px);
}

.main-hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    border: 4px solid #fff;
    /* Box shadow moved to container/track for consistency during slide */
}

/* Hero Slider Styles */
.hero-slider-container {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
}

.hero-slides-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-radius: 24px;
    /* Slightly larger to contain img border radius */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.hero-slides-track::-webkit-scrollbar {
    display: none;
}

.hero-slide {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: center;
}

.hero-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.hero-slider-dots .dot {
    width: 10px;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider-dots .dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.guarantee-text {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.guarantee-text i {
    color: var(--secondary-color);
}

/* Discovery / Features */
.discovery-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.discovery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.discovery-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.discovery-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    background: var(--bg-body);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s;
}

.discovery-card:hover .card-icon {
    transform: rotate(10deg) scale(1.1);
    background: #FFF8E1;
}

.discovery-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Recipes Preview */
.recipes-section {
    padding: 80px 0;
    background: #FAFAF9;
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media(min-width: 768px) {
    .recipe-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.recipe-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: 0.3s;
    position: relative;
}

.recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.recipe-img-wrapper {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.recipe-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.recipe-card:hover .recipe-img-wrapper img {
    transform: scale(1.1);
}

.recipe-card h3 {
    padding: 15px;
    font-size: 1rem;
    text-align: center;
    background: #fff;
    z-index: 2;
    position: relative;
    color: var(--text-main);
}

/* Problem / Solution (Why Essential) */
.problem-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFFDE7 0%, #FFFFFF 100%);
}

.problem-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.problem-text {
    flex: 1;
    min-width: 300px;
}

.problem-img {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.problem-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.problem-text strong {
    color: var(--text-main);
    font-weight: 700;
}

.check-list {
    margin: 30px 0;
}

.check-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-weight: 500;
    color: var(--text-main);
    align-items: center;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.check-list i {
    color: var(--secondary-color);
    font-size: 1.4rem;
    min-width: 24px;
}

/* Bonuses */
.bonus-section {
    padding: 80px 0;
    background: #263238;
    /* Dark contrast */
    color: #fff;
}

.bonus-section h2 {
    color: #fff;
}

.bonus-section .highlight-orange {
    color: var(--primary-color);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    /* Glass dark */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
}

.bonus-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.bonus-img {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.bonus-tag {
    display: inline-block;
    background: var(--primary-color);
    color: #000;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.price-strike {
    text-decoration: line-through;
    color: #90A4AE;
    font-size: 0.9rem;
}

.price-free {
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 1.2rem;
}

/* Green visible on dark? maybe lighter green */
.price-free {
    color: #69F0AE;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: #fff;
}

.testimonial-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 20px;
    /* Scrollbar space */
    scroll-snap-type: x mandatory;
}

.testimonial-grid::-webkit-scrollbar {
    height: 6px;
}

.testimonial-grid::-webkit-scrollbar-thumb {
    background: #E0E0E0;
    border-radius: 4px;
}

.testimonial-card {
    min-width: 300px;
    flex: 0 0 auto;
    scroll-snap-align: center;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Pricing - The Big Offer */
.pricing-section {
    padding: 80px 0 120px;
    background: linear-gradient(180deg, #FAFAF9 0%, #FFF3E0 100%);
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: stretch;
    /* Make them same height */
}

.pricing-box {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    border: 1px solid #eee;
    transition: transform 0.3s;
}

.pricing-box.premium {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
    /* Highlight premium */
    z-index: 2;
    box-shadow: 0 25px 50px -12px rgba(255, 193, 7, 0.3);
}

.pricing-box.basic {
    border: 1px solid #ddd;
    box-shadow: none;
    background: #FAFAF9;
}

@media(max-width: 768px) {
    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .pricing-box.premium {
        transform: scale(1);
        /* Reset scale on mobile */
        width: 100%;
        order: 1;
        /* First on mobile */
    }

    .pricing-box.basic {
        width: 100%;
        order: 2;
        /* Below on mobile */
        margin-top: 20px;
    }
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #FF5252;
    color: white;
    padding: 5px 15px;
    font-size: 0.75rem;
    font-weight: 700;
    border-bottom-left-radius: 12px;
}

.pricing-header {
    background: var(--primary-color);
    padding: 15px;
    text-align: center;
    color: #3e2723;
}

.pricing-header.basic-header {
    background: #e0e0e0;
    color: #555;
}

/* Button Basic */
.btn-basic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
    background: #e0e0e0;
    color: #333;
    border: none;
    font-size: 0.9rem;
}

.btn-basic:hover {
    background: #bdbdbd;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 800;
}

.pricing-body {
    padding: 40px 30px;
    text-align: center;
}

.product-mockup {
    margin: -60px auto 20px;
    width: 250px;
}

.pricing-features ul {
    text-align: left;
    margin: 20px 0;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: var(--secondary-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.price-display {
    margin: 30px 0;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.1rem;
    display: block;
}

.price-new {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-dark);
    line-height: 1;
    display: block;
}

.price-installments {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.secure-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    opacity: 0.7;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.accordion-item {
    border: 1px solid #eee;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: #FAFAF9;
    border: none;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-heading);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header.active {
    background: #FFFDE7;
    color: var(--primary-dark);
}

.accordion-content {
    background: #fff;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
    padding: 0 20px;
}

.accordion-content p {
    padding: 20px 0;
    color: var(--text-muted);
}

/* Footer */
footer {
    background: #1F2937;
    color: #9CA3AF;
    padding: 60px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Mobile Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #2E7D32;
    color: white;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateY(150%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.27);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-text span {
    display: block;
    font-size: 0.75rem;
    opacity: 0.9;
}

.sticky-text strong {
    font-size: 1.1rem;
    line-height: 1.1;
}

.sticky-btn {
    background: #fff;
    color: #2E7D32;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Guarantee Section */
.guarantee-section {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.guarantee-card {
    max-width: 800px;
    margin: 40px auto 0;
    /* Space for the floating badge */
    border: 2px solid #A5D6A7;
    /* Light green border */
    border-radius: 20px;
    padding: 60px 40px 40px;
    position: relative;
    box-shadow: 0 10px 40px rgba(76, 175, 80, 0.1);
    background: #fff;
}

.guarantee-badge {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: #2E7D32;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 2;
}

.guarantee-badge span {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.guarantee-badge small {
    font-size: 0.6rem;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
}

.guarantee-card h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #1F2937;
}

.guarantee-card p {
    font-size: 1.1rem;
    color: #4B5563;
    margin-bottom: 15px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-sub {
    font-size: 0.95rem;
    color: #9CA3AF;
    margin-top: 10px;
}

.guarantee-divider {
    height: 1px;
    background: #E5E7EB;
    margin: 30px 0;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    border-top: 1px dashed #ccc;
}

.guarantee-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.g-icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #374151;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.2;
}

.g-icon-circle {
    width: 50px;
    height: 50px;
    background: #E8F5E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2E7D32;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

@media (max-width: 600px) {
    .guarantee-card h2 {
        font-size: 1.6rem;
    }

    .guarantee-icons {
        gap: 20px;
    }

    .guarantee-card {
        padding: 50px 20px 30px;
    }
}

/* Author Section */
.author-section {
    padding: 80px 0;
    background-color: #FFF8E1;
    /* Light cream background */
}

.author-content {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.author-image {
    flex: 1;
    max-width: 400px;
}

.author-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 4px solid #fff;
}

.author-text {
    flex: 1;
}

.author-text h3 {
    color: #4B5563;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.author-text h2 {
    color: #E65100;
    /* Deep orange */
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.author-text p {
    font-size: 1.05rem;
    color: #4B5563;
    margin-bottom: 15px;
    line-height: 1.7;
}

.author-text strong {
    color: #1F2937;
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* More space for content */

    .hero {
        padding-top: 40px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .problem-content {
        flex-direction: column-reverse;
    }

    .btn {
        width: 100%;
        padding: 16px;
        font-size: 1rem;
    }

    .discovery-grid {
        grid-template-columns: 1fr;
    }

    .author-content {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
    }

    .author-text h2 {
        font-size: 1.8rem;
    }
}

/* Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}