@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    --primary: #2d6a4f;
    --primary-light: #52b788;
    --primary-dark: #1b4332;
    --secondary: #f4a261;
    --secondary-hover: #e76f51;
    --bg-dark: #0b130e;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-light: rgba(255, 255, 255, 0.01);
    --border-card: rgba(255, 255, 255, 0.08);
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --max-width: 900px; /* Reduced container max-width for compact reading flow */
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
    font-size: 15px;
}

/* Background Gradients */
body::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(82, 183, 136, 0.1) 0%, rgba(0,0,0,0) 70%);
    top: -5%;
    right: -10%;
    z-index: -1;
}

/* Common Layout and Spacing Reductions */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
}

section {
    padding: 40px 0; /* Reduced padding from 80px for a more cohesive mobile/desktop flow */
    border-bottom: 1px solid var(--border-card);
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center { text-align: center; }
.mt-40 { margin-top: 20px; } /* Reduced margins */
.mb-20 { margin-bottom: 12px; }
.mb-40 { margin-bottom: 20px; }

.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.rounded-shadow {
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    border: 1px solid var(--border-card);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 50px 0 30px; /* Highly optimized padding */
}

.hero h1 {
    font-size: 2.4rem; /* More balanced scale */
    margin-bottom: 12px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 40%, #a7f3d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h1 span {
    color: var(--primary-light);
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 25px;
}

.hero-image {
    max-width: 450px;
    margin: 0 auto 25px auto;
}

/* CTA Styles */
.cta-container {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    margin-top: 15px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #38b000 0%, #007200 100%);
    color: #fff;
    padding: 14px 35px;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 6px 15px rgba(56, 176, 0, 0.25);
    transition: all 0.2s ease-in-out;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(56, 176, 0, 0.45);
    background: linear-gradient(135deg, #70e000 0%, #38b000 100%);
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.section-title span {
    color: var(--primary-light);
}

/* Lists */
.features-list, .pain-list {
    max-width: 600px;
    margin: 0 auto 20px auto;
}

.features-list ul, .pain-list ul {
    list-style: none;
}

.features-list li, .pain-list li {
    font-size: 1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-main);
    background: var(--bg-card);
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid var(--border-card);
}

.feature-image {
    max-width: 450px;
    margin: 0 auto 20px auto;
}

/* Carousels */
.carousel-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.carousel-track {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 5px;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    flex: 0 0 250px;
    min-width: 250px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    backdrop-filter: blur(5px);
    z-index: 10;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--secondary);
}

.carousel-btn.prev { left: 5px; }
.carousel-btn.next { right: 5px; }

/* Recipe Card */
.recipe-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
}

.recipe-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.recipe-info {
    padding: 12px;
}

.recipe-info h3 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.kcal {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 0.9rem;
}

.conservation {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.extra-recipes {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 15px;
}

/* Video */
.video-container {
    max-width: 650px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 12px;
}

.video-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    width: 100%;
}

.video-wrapper video {
    display: block;
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

/* Bonus */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 10px;
}

.bonus-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 15px;
    text-align: center;
}

.bonus-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.bonus-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.bonus-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.bonus-value {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.bonus-value del {
    color: #ef4444;
}

.bonus-value span {
    color: var(--primary-light);
    font-weight: 700;
}

/* Pricing Section */
.pricing-box {
    max-width: 500px;
    margin: 20px auto 0 auto;
    background: linear-gradient(135deg, rgba(82, 183, 136, 0.05) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(82, 183, 136, 0.2);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.price-original {
    font-size: 1.05rem;
    color: #ef4444;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.price-promo {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 2px;
}

.price-promo span {
    color: var(--primary-light);
}

.price-cash {
    font-size: 1rem;
    color: var(--text-muted);
}

.scarcity {
    margin-top: 15px;
    color: #fca5a5;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Testimonial Slides adjustments */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* FAQ Accordion */
.faq-list {
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item.active {
    border-color: var(--primary-light);
}

.faq-toggle {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    padding: 15px 20px;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
}

.faq-toggle:hover {
    color: var(--primary-light);
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease-out;
    padding: 0 20px;
}

.faq-content p {
    padding-bottom: 15px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Footer */
footer {
    padding: 25px 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-card);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body { font-size: 14px; }
    .hero { padding: 30px 0 20px; }
    .hero h1 { font-size: 1.8rem; }
    .section-title { font-size: 1.5rem; margin-bottom: 15px; }
    section { padding: 25px 0; }
    .features-list li, .pain-list li { font-size: 0.95rem; padding: 8px 12px; }
    .carousel-slide { flex: 0 0 210px; min-width: 210px; }
    .recipe-card img { height: 130px; }
    .pricing-box { padding: 20px 15px; }
    .price-promo { font-size: 1.9rem; }
    .btn-primary { padding: 12px 25px; font-size: 0.95rem; }
}
