/* ===== CSS VARIABLES ===== */
:root {
    --primary: #1B5E20;
    --primary-dark: #0D3B13;
    --primary-light: #2E7D32;
    --accent: #F9A825;
    --accent-dark: #F57F17;
    --bg-light: #FAFDF7;
    --bg-white: #FFFFFF;
    --bg-section: #F1F8E9;
    --bg-dark: #0D3B13;
    --text-dark: #1A1A1A;
    --text-body: #3E3E3E;
    --text-muted: #6B6B6B;
    --text-white: #FFFFFF;
    --border: #C8E6C9;
    --border-light: #E8F5E9;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --shadow-card: 0 4px 24px rgba(27,94,32,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s ease;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    color: var(--text-dark);
    line-height: 1.3;
}

.section__title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.section__subtitle {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 2.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.section__note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 2rem;
    font-style: italic;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.btn--primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--text-dark);
    box-shadow: 0 4px 16px rgba(249,168,37,0.4);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(249,168,37,0.5);
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
}

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

.btn--secondary:hover {
    background: var(--primary);
    color: var(--text-white);
}

.btn--large {
    padding: 18px 42px;
    font-size: 1.1rem;
}

.cta-center {
    text-align: center;
    margin-top: 2.5rem;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav__logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.logo-text sup {
    font-size: 0.6em;
    color: var(--accent-dark);
}

.nav__list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-body);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav__link:hover::after { width: 100%; }
.nav__link:hover { color: var(--primary); }

.nav__link--cta {
    background: var(--primary);
    color: var(--text-white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
}

.nav__link--cta::after { display: none; }
.nav__link--cta:hover { background: var(--primary-dark); }

.nav__actions { display: flex; align-items: center; gap: 1rem; }

.nav__order-btn {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--text-dark);
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
}

.nav__order-btn:hover { transform: translateY(-1px); }

.nav__toggle, .nav__close {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* ===== HERO ===== */
.hero {
    padding: 120px 0 60px;
    background: linear-gradient(170deg, #E8F5E9 0%, #F1F8E9 40%, var(--bg-white) 100%);
}

.hero__container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.hero__product-name h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.hero__description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 1.5rem;
}

.hero__benefits-list h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
}

.hero__benefits-list ul {
    margin-bottom: 2rem;
}

.hero__benefits-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-body);
}

.hero__benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.hero__cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__image img {
    max-width: 420px;
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.12));
    animation: floatProduct 3s ease-in-out infinite;
}

@keyframes floatProduct {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ===== TRUST BADGES ===== */
.trust-badges {
    padding: 70px 0;
    background: var(--bg-white);
}

.trust-badges__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.trust-badge {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    background: var(--bg-section);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.trust-badge:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.trust-badge img {
    width: 65px;
    height: 65px;
    margin: 0 auto 1rem;
    object-fit: contain;
}

.trust-badge h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.7rem;
    letter-spacing: 0.5px;
}

.trust-badge p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== WHAT IS SECTION ===== */
.what-is {
    padding: 70px 0;
    background: var(--bg-section);
}

.what-is__container {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 3rem;
    align-items: center;
}

.what-is__content p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.8;
}

.what-is__image {
    display: flex;
    justify-content: center;
}

.what-is__image img {
    max-width: 380px;
    width: 100%;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1));
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 70px 0;
    background: var(--bg-white);
}

.how-it-works__steps {
    display: grid;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    padding: 1.8rem;
    border-radius: var(--radius-md);
    background: var(--bg-section);
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.step:hover {
    box-shadow: var(--shadow-card);
    transform: translateX(4px);
}

.step__number {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step h3 {
    font-size: 1.05rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== REVIEWS ===== */
.reviews {
    padding: 70px 0;
    background: var(--bg-section);
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.review-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.review-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.review-card__img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--border);
}

.review-card__badge {
    display: inline-block;
    background: var(--primary);
    color: var(--text-white);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
}

.review-card h4 {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 0.4rem;
}

.review-card__stars {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}

.review-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== ORDER SECTION ===== */
.order {
    padding: 70px 0;
    background: linear-gradient(170deg, var(--bg-dark) 0%, #1A4A1F 100%);
}

.order .section__title {
    color: var(--text-white);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 1.5rem 0 2.5rem;
}

.countdown__item {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    padding: 10px 18px;
    text-align: center;
    min-width: 70px;
}

.countdown__item span {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
}

.countdown__item small {
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown__separator {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
}

.order__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.order-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.order-card--featured {
    border-color: var(--accent);
    transform: scale(1.05);
    box-shadow: 0 8px 40px rgba(249,168,37,0.3);
}

.order-card--featured:hover {
    transform: scale(1.05) translateY(-6px);
}

.order-card__badge-top {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--text-dark);
    padding: 6px 24px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.order-card__badge-top--green {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--text-white);
}

.order-card__header {
    margin-bottom: 1rem;
}

.order-card__supply {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.order-card__days {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.order-card__img {
    max-width: 180px;
    margin: 0 auto 1rem;
}

.order-card__price {
    margin-bottom: 0.5rem;
}

.order-card__amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.order-card__per {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.order-card__bonus {
    background: var(--bg-section);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.order-card__btn {
    width: 100%;
    margin: 1rem 0;
}

.order-card__total {
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 0.5rem;
}

.order-card__total s {
    color: var(--text-muted);
    margin-right: 4px;
}

.order-card__total strong {
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.order-card__guarantee {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== BONUSES ===== */
.bonuses {
    padding: 70px 0;
    background: var(--bg-section);
}

.bonuses__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.bonus-card {
    display: flex;
    gap: 1.5rem;
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.bonus-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
}

.bonus-card img {
    width: 140px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
}

.bonus-card__content h3 {
    font-size: 0.95rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.bonus-card__content h3 s {
    color: var(--text-muted);
}

.bonus-card__content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== INGREDIENTS ===== */
.ingredients {
    padding: 70px 0;
    background: var(--bg-white);
}

.ingredients__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.ingredient-card {
    padding: 2rem;
    border-radius: var(--radius-md);
    background: var(--bg-section);
    border: 1px solid var(--border-light);
    position: relative;
    transition: var(--transition);
}

.ingredient-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
}

.ingredient-card__number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.ingredient-card h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 0.6rem;
}

.ingredient-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== FORMULATION ===== */
.formulation {
    padding: 60px 0;
    background: var(--bg-section);
}

.formulation__steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.formulation__step {
    text-align: center;
    max-width: 280px;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.formulation__step-num {
    display: inline-flex;
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: var(--text-white);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.formulation__step h3 {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.formulation__step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.formulation__arrow {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
}

/* ===== GUARANTEE ===== */
.guarantee {
    padding: 60px 0;
    background: var(--bg-white);
}

.guarantee__container {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    background: linear-gradient(135deg, #E8F5E9, #F1F8E9);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
}

.guarantee__badge {
    width: 160px;
    flex-shrink: 0;
}

.guarantee__content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.guarantee__content p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.7;
}

/* ===== BENEFITS ===== */
.benefits {
    padding: 70px 0;
    background: var(--bg-section);
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.benefit-item {
    background: var(--bg-white);
    padding: 1.8rem 1.3rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.benefit-item:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
    border-color: var(--primary-light);
}

.benefit-item__icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.benefit-item h3 {
    font-size: 0.95rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== FAQ ===== */
.faq {
    padding: 70px 0;
    background: var(--bg-white);
}

.faq__list {
    max-width: 800px;
    margin: 2.5rem auto 0;
}

.faq__item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq__item:hover { border-color: var(--primary-light); }

.faq__question {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: var(--bg-section);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq__question:hover { background: var(--border-light); }

.faq__icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--primary);
    transition: var(--transition);
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq__item.active .faq__answer {
    max-height: 300px;
    padding: 0 1.5rem 1.2rem;
}

.faq__answer p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    padding-top: 0.5rem;
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 60px 0;
    background: var(--bg-section);
}

.final-cta__container {
    display: flex;
    align-items: center;
    gap: 3rem;
    justify-content: center;
}

.final-cta__image img {
    max-width: 300px;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
}

.final-cta__content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    max-width: 400px;
}

/* ===== SECURITY ===== */
.security {
    padding: 60px 0;
    background: var(--bg-white);
}

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

.security__info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.security__info > p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.security__details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.security__details div {
    padding: 1.2rem;
    background: var(--bg-section);
    border-radius: var(--radius-sm);
}

.security__details strong {
    display: block;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.security__details p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.security__email {
    font-size: 0.9rem;
    color: var(--text-body);
}

.security__email a {
    color: var(--primary);
    font-weight: 600;
}

.security__email a:hover { text-decoration: underline; }

/* ===== BOTTOM ORDER ===== */
.bottom-order {
    padding: 60px 0;
    background: linear-gradient(170deg, #E8F5E9, var(--bg-section));
}

.bottom-order__container { text-align: center; }

.bottom-order__content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.bottom-order__content img {
    max-width: 280px;
    margin: 0 auto 1.5rem;
}

.bottom-order__old-price {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.bottom-order__new-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

/* ===== STICKY BAR ===== */
.sticky-bar {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: var(--bg-dark);
    z-index: 999;
    padding: 12px 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    transition: bottom 0.4s ease;
}

.sticky-bar.visible { bottom: 0; }

.sticky-bar__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.sticky-bar__text {
    color: var(--text-white);
    font-size: 0.85rem;
    font-weight: 500;
}

.sticky-bar__price {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
}

.sticky-bar__price strong {
    color: var(--accent);
    font-size: 1.1rem;
}

.sticky-bar__price s {
    color: rgba(255,255,255,0.5);
}

.sticky-bar__btn {
    white-space: nowrap;
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* ===== FOOTER ===== */
.footer {
    padding: 40px 0 30px;
    background: #0A2E10;
    color: rgba(255,255,255,0.6);
}

.footer p {
    font-size: 0.78rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    text-align: center;
}

.footer__links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0;
}

.footer__links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer__links a:hover { color: var(--accent); }

.footer__copyright {
    text-align: center;
    font-size: 0.8rem;
    margin-top: 1rem;
    color: rgba(255,255,255,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .section__title { font-size: 1.8rem; }
    .hero__container { grid-template-columns: 1fr; gap: 2rem; }
    .hero__image { order: -1; }
    .hero__image img { max-width: 320px; }
    .hero__title { font-size: 1.7rem; }
    .trust-badges__grid { grid-template-columns: repeat(2, 1fr); }
    .what-is__container { grid-template-columns: 1fr; }
    .what-is__image { order: -1; }
    .reviews__grid { grid-template-columns: 1fr; }
    .order__grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .order-card--featured { transform: none; }
    .order-card--featured:hover { transform: translateY(-6px); }
    .bonuses__grid { grid-template-columns: 1fr; }
    .ingredients__list { grid-template-columns: 1fr; }
    .benefits__grid { grid-template-columns: repeat(2, 1fr); }
    .final-cta__container { flex-direction: column; text-align: center; }
    .final-cta__content h3 { max-width: none; }
    .security__details { grid-template-columns: 1fr; }
    .formulation__arrow { display: none; }
    .formulation__steps { flex-direction: column; }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-white);
        box-shadow: var(--shadow-lg);
        padding: 80px 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 1001;
    }

    .nav__menu.show { right: 0; }

    .nav__list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav__link--cta {
        text-align: center;
        display: block;
    }

    .nav__toggle { display: block; }
    .nav__close { display: block; position: absolute; top: 1.5rem; right: 1.5rem; }
    .nav__order-btn { display: none; }

    .section__title { font-size: 1.5rem; }
    .hero { padding: 100px 0 40px; }
    .hero__title { font-size: 1.4rem; }
    .hero__cta-group { flex-direction: column; }
    .hero__cta-group .btn { text-align: center; }
    .trust-badges__grid { grid-template-columns: 1fr; }
    .benefits__grid { grid-template-columns: 1fr; }
    .guarantee__container { flex-direction: column; text-align: center; padding: 1.5rem; }
    .guarantee__badge { width: 120px; }
    .bonus-card { flex-direction: column; align-items: center; text-align: center; }
    .bonus-card img { width: 120px; }

    .sticky-bar__container { flex-direction: column; gap: 0.5rem; text-align: center; }
    .sticky-bar__text { font-size: 0.78rem; }

    .countdown__item { padding: 8px 14px; min-width: 60px; }
    .countdown__item span { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section__title { font-size: 1.3rem; }
    .hero__title { font-size: 1.2rem; }
    .hero__image img { max-width: 260px; }
    .order-card { padding: 1.5rem 1rem; }
    .order-card__amount { font-size: 2.2rem; }
    .final-cta__image img { max-width: 220px; }
    .bottom-order__content img { max-width: 220px; }
}
