:root {
    --dark-green: #1a3a1a;
    --green: #2d5a2d;
    --light-green: #4a7c4a;
    --gold: #d4a017;
    --gold-light: #f4d03f;
    --orange: #e67e22;
    --cream: #fdf6e3;
    --white: #ffffff;
    --dark: #1a1a1a;
    --gray: #666666;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

img { max-width: 100%; height: auto; display: block; }

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--cream);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--green) 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
}

.nav { display: flex; gap: 25px; align-items: center; }
.nav a { color: var(--white); text-decoration: none; font-weight: 600; }
.nav a:hover { color: var(--gold-light); }
.nav-cta {
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
    padding: 10px 20px;
    border-radius: 50px;
}

.menu-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

.btn {
    display: inline-block;
    padding: 16px 36px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
    color: var(--white);
}

.hero {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--green) 50%, var(--light-green) 100%);
    color: var(--white);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-form {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.email-form input {
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.hero-images-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.hero-images-stack img:first-child {
    max-width: 100%;
}

.hero-images-stack img:last-child {
    max-width: 100%;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.form-note {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 12px;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.5);
}

.trust-bar {
    background: var(--white);
    padding: 40px 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.trust-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
}

.trust-label {
    font-weight: 600;
    color: var(--gray);
}

.section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-green);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 50px;
}

.content-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    margin: 30px 0;
}

.green-section {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--green) 100%);
    color: var(--white);
}

.green-section .section-title { color: var(--white); }
.green-section .section-subtitle { color: rgba(255,255,255,0.9); }

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: var(--white);
    color: var(--dark);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--green);
    margin-bottom: 15px;
}

.info-card .number {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.offer-box {
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
    color: var(--white);
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(230, 126, 34, 0.3);
}

.offer-box h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    margin: 20px 0;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(255,255,255,0.2);
    padding: 20px;
    border-radius: 15px;
    margin: 30px 0;
}

.testimonial {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--green);
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    border: none;
    background: none;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 25px 20px;
    color: var(--gray);
    display: none;
}

.faq-item.active .faq-answer { display: block; }

.footer {
    background: var(--dark-green);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer p { opacity: 0.8; margin-bottom: 10px; }

@media (max-width: 768px) {
    html { font-size: 15px; }
    body { overflow-x: hidden; }
    .container { padding: 0 16px; }
    .header { padding: 12px 0; }
    .logo { font-size: 1.1rem; }
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-green);
        flex-direction: column;
        padding: 15px 20px;
        gap: 15px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }
    .menu-toggle { display: block; }
    .hero { padding: 50px 0; }
    .hero-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero h1 { font-size: 1.9rem; line-height: 1.15; }
    .hero-subtitle { font-size: 1rem; }
    .hero-form { padding: 20px; }
    .email-form input { padding: 13px 18px; }
    .btn { padding: 14px 28px; font-size: 0.95rem; }
    .trust-bar { padding: 25px 0; }
    .trust-items { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .trust-number { font-size: 1.8rem; }
    .trust-label { font-size: 0.85rem; }
    .section { padding: 50px 0; }
    .section-title { font-size: 1.7rem; }
    .section-subtitle { font-size: 1rem; margin-bottom: 30px; }
    .content-split { grid-template-columns: 1fr; gap: 25px; margin: 25px 0; }
    .content-split.reverse { direction: ltr; }
    .image-grid-2 { grid-template-columns: 1fr; gap: 20px; margin: 25px 0; }
    .image-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 25px 0; }
    .card-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 25px; }
    .info-card { padding: 22px; }
    .offer-box { padding: 25px; }
    .offer-box h2 { font-size: 1.6rem; }
    .price { font-size: 2.2rem; }
    .faq-question { padding: 16px 20px; font-size: 0.95rem; }
    .faq-answer { padding: 0 20px 16px; }
    .hero-images-stack img { max-width: 100%; }
    .video-cta-box { padding: 25px; margin: 20px 0 30px; }
    .video-cta-text h3 { font-size: 1.2rem; }
    .btn-video { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.6rem; }
    .section-title { font-size: 1.45rem; }
    .trust-items { grid-template-columns: 1fr 1fr; gap: 10px; }
    .image-grid-4 { grid-template-columns: 1fr 1fr; gap: 10px; }
    .floating-recipes-btn {
        bottom: 12px;
        right: 12px;
        font-size: 0.75rem;
        padding: 12px 18px;
    }
    .floating-video-btn {
        bottom: 70px;
        left: 12px;
        font-size: 0.75rem;
        padding: 12px 18px;
    }
}

.floating-recipes-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--orange) 0%, #ff8c00 100%);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    padding: 18px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-recipes-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(230, 126, 34, 0.6);
}

.floating-recipes-btn:active {
    transform: translateY(0) scale(1);
}



.floating-video-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, var(--green) 0%, var(--dark-green) 100%);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    padding: 18px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(45, 90, 45, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}

.floating-video-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(45, 90, 45, 0.6);
}

.floating-video-btn:active {
    transform: translateY(0) scale(1);
}

.play-icon {
    font-size: 0.8rem;
}

@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(45, 90, 45, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(45, 90, 45, 0.7);
    }
}

.video-cta-box {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--green) 100%);
    color: var(--white);
    border-radius: 24px;
    padding: 35px 45px;
    margin: 30px 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-shadow: 0 15px 40px rgba(26, 58, 26, 0.25);
}

.video-cta-text {
    flex: 1;
}

.video-cta-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.video-cta-text p {
    opacity: 0.9;
    margin: 0;
}

.btn-video {
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-video:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.5);
}

@media (max-width: 768px) {
    .floating-video-btn {
        bottom: 85px;
        left: 20px;
        font-size: 0.85rem;
        padding: 15px 25px;
    }
    .video-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    .cover-wrapper {
        max-width: 220px;
        margin: 0 auto;
    }
    .btn-video {
        width: 100%;
        justify-content: center;
    }
}
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(230, 126, 34, 0.7);
    }
}

@media (max-width: 768px) {
    .floating-recipes-btn {
        bottom: 20px;
        right: 20px;
        font-size: 0.85rem;
        padding: 15px 25px;
    }
}

.image-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.image-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.image-grid-2 img,
.image-grid-4 img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 40px 0;
}

.content-split img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.content-split.reverse { direction: rtl; }
.content-split.reverse > * { direction: ltr; }

@media (max-width: 768px) {
    .image-grid-2 { grid-template-columns: 1fr; }
    .image-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .content-split { grid-template-columns: 1fr; gap: 25px; }
}