/* ===========================
   PROSTALIX — MAIN STYLESHEET
   Design: Forest Green + Gold
   =========================== */

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

:root {
    --green-dark:   #1a3a2a;
    --green-mid:    #2d5a3d;
    --green-light:  #3d7a52;
    --green-pale:   #f4f7f2;
    --gold:         #c8973a;
    --gold-light:   #e8b84b;
    --gold-pale:    #fdf6e9;
    --text-dark:    #1a2820;
    --text-mid:     #3d5247;
    --text-light:   #6b8070;
    --white:        #ffffff;
    --border:       #d8e4dc;
    --shadow-sm:    0 2px 8px rgba(26,58,42,.08);
    --shadow-md:    0 6px 24px rgba(26,58,42,.12);
    --shadow-lg:    0 16px 48px rgba(26,58,42,.16);
    --radius:       12px;
    --radius-lg:    20px;
    --transition:   all .3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.65;
    font-size: 16px;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---- TOPBAR ---- */
.topbar {
    background: var(--green-dark);
    color: rgba(255,255,255,.9);
    text-align: center;
    font-size: .82rem;
    padding: .55rem 1rem;
    letter-spacing: .02em;
}

/* ---- HEADER ---- */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 24px;
}
.logo {
    font-family: 'Merriweather', serif;
    font-size: 1.55rem;
    font-weight: 900;
    color: #111111;
    text-decoration: none;
    letter-spacing: -.01em;
}
.logo span { color: var(--gold); }
.footer-logo { color: #111111 !important; }
.nav-menu { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-menu a {
    color: var(--text-mid);
    text-decoration: none;
    font-weight: 700;
    font-size: .92rem;
    letter-spacing: .01em;
    transition: var(--transition);
}
.nav-menu a:hover { color: var(--green-mid); }
.nav-cta {
    background: var(--gold) !important;
    color: var(--white) !important;
    padding: .5rem 1.4rem;
    border-radius: 8px;
    font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span { display: block; width: 26px; height: 3px; background: var(--text-dark); border-radius: 3px; transition: var(--transition); }

/* ---- HERO ---- */
.hero {
    background: linear-gradient(135deg, #e8f0eb 0%, #f9fdf7 60%, #fff 100%);
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.badge {
    display: inline-block;
    background: var(--green-pale);
    border: 1px solid var(--green-light);
    color: var(--green-mid);
    padding: .45rem 1.1rem;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .03em;
    margin-bottom: 1.4rem;
}
.hero-text h1 {
    font-family: 'Merriweather', serif;
    font-size: 2.9rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--green-dark);
    margin-bottom: 1.2rem;
}
.hero-text h1 em { font-style: normal; color: var(--gold); }
.hero-desc {
    font-size: 1.05rem;
    color: var(--text-mid);
    margin-bottom: 1.8rem;
    line-height: 1.8;
    max-width: 520px;
}
.hero-checks { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: .6rem; }
.hero-checks li { font-size: .95rem; color: var(--text-mid); font-weight: 600; }
.check { color: var(--gold); font-weight: 900; margin-right: .5rem; }
.hero-actions { display: flex; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.hero-disclaimer { font-size: .78rem; color: var(--text-light); font-style: italic; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: .01em;
}
.btn-gold {
    background: var(--gold);
    color: var(--white);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,151,58,.35); }
.btn-ghost {
    background: transparent;
    color: var(--green-mid);
    border: 2px solid var(--green-mid);
}
.btn-ghost:hover { background: var(--green-mid); color: var(--white); }
.btn-block { width: 100%; justify-content: center; font-size: 1.05rem; padding: 1rem 2rem; }

/* Hero visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0 3rem;
}
.product-glow {
    position: absolute;
    width: 340px; height: 340px;
    background: radial-gradient(circle, rgba(200,151,58,.18) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
}
.product-img {
    max-width: 340px;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(26,58,42,.2));
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.floating-badge {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: .65rem 1rem;
    font-size: .8rem;
    line-height: 1.4;
    box-shadow: var(--shadow-md);
    z-index: 3;
    text-align: center;
    color: var(--text-dark);
}
.floating-badge strong { color: var(--green-dark); display: block; }
.fb1 { top: 15%; left: -10px; }
.fb2 { bottom: 20%; right: -10px; }
.hero-wave { line-height: 0; margin-top: 2rem; }
.hero-wave svg { width: 100%; height: 60px; display: block; }

/* ---- TRUST STRIP ---- */
.trust-strip { background: var(--green-pale); padding: 2.5rem 0; }
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.trust-icon { font-size: 2rem; flex-shrink: 0; }
.trust-item div { display: flex; flex-direction: column; }
.trust-item strong { font-size: .92rem; color: var(--green-dark); font-weight: 700; }
.trust-item span { font-size: .8rem; color: var(--text-light); }

/* ---- SECTION SHARED ---- */
.section-header { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.section-label {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .75rem;
}
.section-label.light { color: rgba(255,255,255,.75); }
.section-header h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--green-dark);
    margin-bottom: 1rem;
    line-height: 1.25;
}
.section-header.light h2 { color: var(--white); }
.section-header p { color: var(--text-light); font-size: 1rem; line-height: 1.8; }
.section-header.light p { color: rgba(255,255,255,.8); }

/* ---- WHY SECTION ---- */
.why-section { padding: 5.5rem 0; background: var(--white); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.why-card.featured {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px var(--gold), var(--shadow-md);
    background: var(--gold-pale);
}
.featured-label {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    font-size: .75rem;
    font-weight: 700;
    padding: .3rem 1rem;
    border-radius: 50px;
    white-space: nowrap;
    letter-spacing: .05em;
}
.why-icon-wrap {
    width: 60px; height: 60px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.4rem;
}
.why-icon-wrap.teal { background: #e0f2f1; color: #00796b; }
.why-icon-wrap.gold { background: #fdf6e9; color: var(--gold); }
.why-icon-wrap.green { background: #e8f5e9; color: var(--green-mid); }
.why-card h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: .9rem;
}
.why-card p { color: var(--text-light); font-size: .93rem; line-height: 1.75; margin-bottom: 1.2rem; }
.why-card ul { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.why-card ul li { font-size: .88rem; font-weight: 600; color: var(--text-mid); }

/* ---- INGREDIENTS SECTION ---- */
.ingredients-section {
    position: relative;
    padding: 5.5rem 0;
    overflow: hidden;
}
.ingredients-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
}
.ingredients-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,58,42,.93) 0%, rgba(45,90,61,.88) 100%);
}
.ingredients-inner { position: relative; z-index: 2; }
.ing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.ing-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius);
    padding: 1.8rem;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}
.ing-card:hover { background: rgba(255,255,255,.14); transform: translateY(-4px); }
.ing-emoji { font-size: 2.2rem; margin-bottom: 1rem; }
.ing-card h4 {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: .7rem;
}
.ing-card p { font-size: .88rem; color: rgba(255,255,255,.8); line-height: 1.7; }
.ing-disclaimer {
    text-align: center;
    font-size: .78rem;
    color: rgba(255,255,255,.55);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

/* ---- HOW SECTION ---- */
.how-section { padding: 5rem 0; background: var(--green-pale); }
.how-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.how-step {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.2rem 2rem;
    text-align: center;
    max-width: 260px;
    box-shadow: var(--shadow-sm);
    flex: 1;
    min-width: 200px;
}
.step-num {
    font-family: 'Merriweather', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: .8rem;
}
.how-step h4 {
    font-family: 'Merriweather', serif;
    font-size: 1.05rem;
    color: var(--green-dark);
    margin-bottom: .7rem;
}
.how-step p { font-size: .88rem; color: var(--text-light); line-height: 1.7; }
.how-arrow {
    font-size: 2rem;
    color: var(--gold);
    font-weight: 900;
    flex-shrink: 0;
}

/* ---- REVIEWS ---- */
.reviews-section { padding: 5.5rem 0; background: var(--white); }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 1.5rem;
}
.review-card {
    background: var(--green-pale);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.review-card.featured-review {
    background: var(--gold-pale);
    border-color: var(--gold);
}
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: .1em; }
.review-card p { font-size: .93rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: .9rem; }
.reviewer-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--green-mid);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.1rem;
    flex-shrink: 0;
}
.reviewer div { display: flex; flex-direction: column; }
.reviewer strong { font-size: .92rem; color: var(--green-dark); }
.reviewer span { font-size: .8rem; color: var(--text-light); }
.reviews-note { text-align: center; font-size: .78rem; color: var(--text-light); font-style: italic; }

/* ---- ORDER SECTION ---- */
.order-section {
    padding: 5.5rem 0;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
}
.order-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}
.order-info .section-label { color: rgba(255,255,255,.7); }
.order-info h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
}
.order-info > p { color: rgba(255,255,255,.8); font-size: .95rem; margin-bottom: 2rem; line-height: 1.75; }
.order-perks { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.perk {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,.08);
    border-radius: 10px;
    padding: .9rem 1.2rem;
}
.perk span:first-child { font-size: 1.4rem; flex-shrink: 0; }
.perk div { display: flex; flex-direction: column; }
.perk strong { font-size: .9rem; color: var(--white); }
.perk small { font-size: .8rem; color: rgba(255,255,255,.65); }
.product-preview {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 1.2rem;
}
.order-product-img { width: 70px; height: auto; border-radius: 8px; }
.product-preview-info { display: flex; flex-direction: column; gap: .2rem; }
.product-preview-info strong { color: var(--white); font-size: 1rem; }
.product-preview-info span { color: rgba(255,255,255,.7); font-size: .82rem; }
.product-capsules { color: var(--gold-light) !important; font-weight: 700 !important; }

/* Order Form */
.order-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.order-form { padding: 2.5rem; }
.order-form h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 1.8rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--green-pale);
}
.form-row { display: flex; flex-direction: column; gap: 0; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 700;
    color: var(--text-mid);
    margin-bottom: .4rem;
    letter-spacing: .01em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: .93rem;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-mid);
    box-shadow: 0 0 0 3px rgba(45,90,61,.1);
}
.form-group textarea { resize: vertical; }
.form-consent {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    margin-bottom: 1.5rem;
    font-size: .82rem;
    color: var(--text-light);
    line-height: 1.5;
}
.form-consent input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; accent-color: var(--green-mid); }
.form-consent a { color: var(--green-mid); }
.form-note { font-size: .78rem; color: var(--text-light); margin-top: .8rem; text-align: center; }

/* ---- FAQ ---- */
.faq-section { padding: 5.5rem 0; background: var(--green-pale); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: .8rem; }
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--border);
}
.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.3rem 1.6rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-size: .97rem;
    font-weight: 700;
    color: var(--green-dark);
    text-align: left;
    transition: var(--transition);
    gap: 1rem;
}
.faq-q:hover { background: var(--green-pale); }
.faq-icon {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 900;
    flex-shrink: 0;
    transition: transform .3s ease;
    line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding: 0 1.6rem 1.4rem; color: var(--text-light); font-size: .92rem; line-height: 1.8; }

/* ---- PRICING SECTION ---- */
.pricing-section {
    padding: 5rem 0;
    background: var(--green-pale);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    align-items: start;
}
.pricing-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition);
    position: relative;
}
.pricing-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.pricing-card.featured-pricing {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: scale(1.03);
    background: linear-gradient(160deg, #fff 70%, var(--gold-pale));
}
.pricing-card.featured-pricing:hover {
    transform: scale(1.03) translateY(-3px);
}
.pricing-label-wrap { min-height: 28px; }
.pricing-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .25rem .8rem;
    border-radius: 20px;
    background: var(--border);
    color: var(--text-mid);
}
.pricing-tag.tag-popular {
    background: var(--gold);
    color: var(--white);
}
.pricing-tag.tag-value {
    background: var(--green-mid);
    color: var(--white);
}
.pricing-qty {
    font-family: 'Merriweather', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--green-dark);
    line-height: 1.1;
}
.pricing-qty span {
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
    color: var(--text-light);
    display: block;
}
.pricing-img-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    margin: .5rem 0;
}
.pricing-img {
    height: 90px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(26,58,42,.15));
}
.pricing-img-x2 { height: 85px; margin-right: -18px; margin-left: -18px; }
.pricing-img-x3 { height: 80px; margin-right: -22px; margin-left: -22px; }
.pricing-price-row {
    display: flex;
    align-items: baseline;
    gap: .35rem;
}
.pricing-price {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--green-dark);
}
.pricing-per {
    font-size: .85rem;
    color: var(--text-light);
}
.pricing-old {
    font-size: .9rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: .2rem;
}
.pricing-total {
    font-size: .88rem;
    color: var(--text-mid);
    padding: .5rem .8rem;
    background: var(--green-pale);
    border-radius: 8px;
}
.pricing-total strong {
    color: var(--green-dark);
    font-size: 1rem;
}
.pricing-save {
    display: inline-block;
    background: #e8f5e9;
    color: #2d7a3d;
    font-size: .78rem;
    font-weight: 700;
    padding: .1rem .55rem;
    border-radius: 20px;
    margin-left: .3rem;
    vertical-align: middle;
}
.pricing-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    font-size: .88rem;
    color: var(--text-mid);
}
.pricing-perks li { padding-left: .2rem; }
.pricing-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: .5rem;
    font-size: .9rem;
}

@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
    .pricing-card.featured-pricing { transform: none; }
    .pricing-card.featured-pricing:hover { transform: translateY(-3px); }
}
@media (max-width: 768px) {
    .pricing-section { padding: 3.5rem 0; }
}

/* ---- FOOTER ---- */
.footer { background: var(--green-dark); color: rgba(255,255,255,.8); padding: 4rem 0 0; }
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo { font-size: 1.6rem; margin-bottom: 1rem; display: inline-block; }
.brand-col p { font-size: .88rem; line-height: 1.8; margin-bottom: 1.5rem; color: rgba(255,255,255,.65); }
.footer-contact p { font-size: .85rem; margin-bottom: .5rem; color: rgba(255,255,255,.65); }
.footer-contact a { color: rgba(255,255,255,.8); text-decoration: none; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-col h4 {
    font-family: 'Merriweather', serif;
    font-size: .95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a { color: rgba(255,255,255,.65); text-decoration: none; font-size: .88rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-disclaimer {
    padding: 2rem 24px;
    border-top: 1px solid rgba(255,255,255,.08);
}
.footer-disclaimer p { font-size: .78rem; color: rgba(255,255,255,.5); line-height: 1.8; }
.footer-bottom {
    text-align: center;
    padding: 1.2rem 24px;
    border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.4); }

/* ---- MODAL ---- */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.6);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
    opacity: 0; pointer-events: none;
    transition: opacity .3s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    text-align: center;
    max-width: 420px;
    width: 90%;
    box-shadow: var(--shadow-lg);
}
.modal-icon {
    width: 64px; height: 64px;
    background: #e8f5e9;
    color: var(--green-mid);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
}
.modal h3 { font-family: 'Merriweather', serif; font-size: 1.5rem; color: var(--green-dark); margin-bottom: .8rem; }
.modal p { color: var(--text-light); font-size: .95rem; margin-bottom: 1.8rem; line-height: 1.7; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .ing-grid { grid-template-columns: repeat(2, 1fr); }
    .order-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero-visual { order: -1; }
    .product-img { max-width: 240px; }
    .fb1, .fb2 { display: none; }
    .hero-text h1 { font-size: 2.1rem; }
    .section-header h2 { font-size: 1.75rem; }
    .why-grid { grid-template-columns: 1fr; }
    .ing-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .how-arrow { display: none; }
    .how-grid { flex-direction: column; align-items: stretch; }
    .how-step { max-width: 100%; }
    .form-row.two-col { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .trust-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .nav-menu {
        position: fixed;
        top: 60px; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: var(--shadow-md);
        transform: translateY(-110%);
        transition: transform .3s ease;
        border-top: 1px solid var(--border);
    }
    .nav-menu.open { transform: translateY(0); }
    .nav-menu a { padding: .9rem 2rem; width: 100%; border-bottom: 1px solid var(--border); }
    .nav-cta { margin: .5rem 2rem 0; border-radius: 8px; text-align: center; }
    .hamburger { display: flex; }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 1.75rem; }
    .trust-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
}