/* ============================================
   ProstaEase V2 — Premium Stylesheet
   Design: Warm Slate + Forest Green + Gold
   All V1 learnings applied from start
   ============================================ */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
    /* Colors — deeper, richer, more premium */
    --primary: #1b6b4a;
    --primary-dark: #0e4a32;
    --primary-light: #28956a;
    --accent: #c4922a;
    --accent-light: #dba73e;
    --bg-cream: #faf8f4;
    --bg-white: #ffffff;
    --bg-warm: #f3efe8;
    --bg-dark: #1a2a24;
    --text-dark: #111111;
    --text-body: #1c1c1c;
    --text-mid: #2d2d2d;
    --border: #e0dbd2;
    --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
    --radius: 14px;
    --radius-lg: 22px;
    --transition: 0.3s ease;
    --max-width: 1200px;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
}

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

html { font-size: 20px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--bg-cream);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.25;
    font-weight: 700;
}

/* === UTILITY === */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 90px 0; }
.text-center { text-align: center; }

.badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.sec-title {
    font-size: 2.4rem;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.sec-desc {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    padding: 17px 38px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
}
.btn-gold {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff;
    box-shadow: 0 6px 24px rgba(196, 146, 42, 0.35);
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(196, 146, 42, 0.5);
    color: #fff;
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 15px 34px;
}
.btn-outline:hover { background: var(--primary); color: #fff; }

/* === HEADER === */
.header {
    background: var(--bg-dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
.logo { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; color: #fff; }
.logo span { color: var(--accent-light); }

.nav { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav a { color: rgba(255,255,255,0.95); font-size: 0.85rem; font-weight: 500; }
.nav a:hover { color: var(--accent-light); }
.nav-cta {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700 !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(196,146,42,0.4); }

.mob-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mob-toggle span { display: block; width: 26px; height: 2px; background: #fff; margin: 6px 0; border-radius: 2px; transition: var(--transition); }

/* === HERO === */
.hero {
    background: linear-gradient(155deg, #0f1f19 0%, var(--bg-dark) 40%, var(--primary-dark) 100%);
    padding: 100px 0 90px;
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196,146,42,0.06) 0%, transparent 65%);
    border-radius: 50%;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}
.hero h1 {
    font-size: 2.9rem;
    color: #fff;
    margin-bottom: 22px;
    line-height: 1.15;
}
.hero h1 em { font-style: normal; color: var(--accent-light); }
.hero > .container p, .hero-text p {
    color: rgba(255,255,255,0.95);
    font-size: 1.08rem;
    margin-bottom: 32px;
    line-height: 1.85;
}
.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 38px;
}
.hero-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 9px 18px;
    border-radius: 50px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
}
.hero-pill svg { color: var(--accent-light); flex-shrink: 0; }

.hero-img img {
    max-width: 460px;
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}

/* === WHAT IS === */
.what-is { background: var(--bg-white); }
.what-is-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: center; }
.what-is-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.what-is-text h2 { font-size: 2.1rem; margin-bottom: 20px; }
.what-is-text p { margin-bottom: 16px; font-size: 1.02rem; }
.check-list { list-style: none; margin: 24px 0; }
.check-list li {
    padding: 11px 0 11px 36px;
    position: relative;
    font-size: 1rem;
    font-weight: 500;
}
.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 800;
    font-size: 1.15rem;
}

/* === HOW IT WORKS === */
.how-works { background: var(--bg-warm); }
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.steps { display: flex; flex-direction: column; gap: 22px; }
.step {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 28px 28px 28px 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    border-left: 4px solid transparent;
}
.step:hover { transform: translateX(6px); border-left-color: var(--accent); box-shadow: var(--shadow-md); }
.step-num {
    width: 50px; height: 50px; min-width: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.15rem;
    font-family: var(--font-heading);
}
.step h3 { font-family: var(--font-body); font-size: 1.1rem; font-weight: 700; margin-bottom: 5px; }
.step p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.65; }

.how-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* === BENEFITS === */
.benefits { background: var(--bg-white); }
.ben-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.ben-card {
    background: var(--bg-cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 38px 28px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}
.ben-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.ben-icon {
    width: 66px; height: 66px; margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.ben-icon svg { color: #fff; }
.ben-card h3 { font-family: var(--font-body); font-size: 1.12rem; font-weight: 700; margin-bottom: 10px; }
.ben-card p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; }

/* === INGREDIENTS === */
.ingredients {
    background: linear-gradient(155deg, var(--bg-dark) 0%, #132b22 100%);
    color: #fff;
}
.ingredients .badge { background: rgba(255,255,255,0.12); }
.ingredients .sec-title { color: #fff; }
.ingredients .sec-desc { color: rgba(255,255,255,0.9); }
.ing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ing-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 34px 24px;
    text-align: center;
    transition: transform var(--transition), background var(--transition);
}
.ing-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.1); }
.ing-emoji { font-size: 2.4rem; margin-bottom: 14px; }
.ing-card h3 { color: var(--accent-light); font-family: var(--font-body); font-size: 1.08rem; font-weight: 700; margin-bottom: 10px; }
.ing-card p { font-size: 0.92rem; color: rgba(255,255,255,0.88); line-height: 1.65; }

/* === TESTIMONIALS === */
.reviews { background: var(--bg-warm); }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.rev-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition);
    border-top: 3px solid var(--accent);
}
.rev-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.rev-stars { color: var(--accent); font-size: 1.05rem; margin-bottom: 16px; letter-spacing: 2px; }
.rev-card blockquote {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 22px;
    font-style: italic;
}
.rev-author { display: flex; align-items: center; gap: 14px; }
.rev-author img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 3px solid var(--bg-warm); }
.rev-author strong { display: block; font-size: 0.92rem; }
.rev-author span { font-size: 0.82rem; color: var(--text-mid); }
.rev-disclaimer { text-align: center; margin-top: 32px; font-size: 0.85rem; color: var(--text-mid); }

/* === PRICING === */
.pricing { background: var(--bg-white); }
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: stretch; }
.p-card {
    background: var(--bg-cream);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 34px 20px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}
.p-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.p-card.best { border-color: var(--accent); background: var(--bg-white); box-shadow: 0 8px 30px rgba(196,146,42,0.18); }
.p-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff; font-size: 0.7rem; font-weight: 700;
    padding: 5px 20px; border-radius: 50px;
    text-transform: uppercase; letter-spacing: 1px; white-space: nowrap;
}
.p-card img { max-width: 165px; margin: 16px auto; }
.p-card h3 { font-family: var(--font-body); font-size: 1.12rem; font-weight: 700; margin-bottom: 8px; }
.p-amount { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 4px; }
.p-per { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 18px; }
.p-card .btn-gold { width: 100%; justify-content: center; padding: 15px 20px; font-size: 0.92rem; }

.p-trust { margin-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.p-trust-line {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    font-size: 0.82rem; font-weight: 600; color: var(--primary-dark);
}
.p-trust-line svg { flex-shrink: 0; color: var(--primary); }

/* === GUARANTEE === */
.guarantee { background: var(--bg-warm); }
.guar-box {
    display: grid; grid-template-columns: auto 1fr;
    gap: 44px; align-items: center;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 52px;
    box-shadow: var(--shadow-md);
}
.guar-box img { max-width: 270px; border-radius: var(--radius); }
.guar-box h2 { font-size: 1.9rem; margin-bottom: 16px; }
.guar-box p { font-size: 1.02rem; margin-bottom: 14px; }

/* === FAQ === */
.faq { background: var(--bg-white); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
    width: 100%; background: none; border: none;
    padding: 24px 0; font-family: var(--font-body);
    font-size: 1.05rem; font-weight: 600; color: var(--text-dark);
    text-align: left; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    line-height: 1.4;
}
.faq-q:hover { color: var(--primary); }
.faq-icon { font-size: 1.5rem; color: var(--primary); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-a { max-height: 300px; padding-bottom: 20px; }
.faq-a p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.75; }

/* === FINAL CTA === */
.final-cta {
    background: linear-gradient(155deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
    text-align: center; color: #fff;
}
.final-cta h2 { font-size: 2.4rem; color: #fff; margin-bottom: 16px; }
.final-cta p { color: rgba(255,255,255,0.95); font-size: 1.08rem; margin-bottom: 36px; max-width: 620px; margin-left: auto; margin-right: auto; }
.final-cta img { margin: 0 auto 32px; max-width: 440px; border-radius: var(--radius); }
.trust-row { display: flex; justify-content: center; gap: 34px; margin-top: 38px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.9); font-size: 0.88rem; font-weight: 500; }
.trust-item svg { color: var(--accent-light); }

/* === FOOTER === */
.footer {
    background: #0f1c16;
    padding: 64px 0 32px;
    color: rgba(255,255,255,0.75);
}
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.foot-brand .logo { margin-bottom: 14px; display: inline-block; }
.foot-brand p { font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.6); }
.foot-col h4 { color: #fff; font-family: var(--font-body); font-size: 0.88rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1.5px; }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 10px; }
.foot-col a { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.foot-col a:hover { color: var(--accent-light); }
.foot-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    text-align: center;
    font-size: 0.82rem;
}
.foot-disc { margin-top: 20px; font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 920px; margin-left: auto; margin-right: auto; }

/* === FLOATING BTN === */
.float-btn {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff; padding: 16px 30px; border-radius: 50px;
    font-size: 0.92rem; font-weight: 700; text-decoration: none;
    box-shadow: 0 8px 28px rgba(196,146,42,0.45);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex; align-items: center; gap: 8px;
}
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(196,146,42,0.6); color: #fff; }

/* === EXIT POPUP === */
.exit-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); z-index: 10000;
    display: none; align-items: center; justify-content: center; padding: 20px;
}
.exit-overlay.show { display: flex; }
.exit-box {
    background: var(--bg-white); border-radius: var(--radius-lg);
    padding: 50px 42px; max-width: 540px; width: 100%;
    text-align: center; position: relative;
    box-shadow: 0 24px 60px rgba(0,0,0,0.3);
    animation: popUp 0.35s ease;
}
@keyframes popUp { from { transform: scale(0.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.exit-close {
    position: absolute; top: 16px; right: 16px;
    background: none; border: none; font-size: 1.6rem; color: var(--text-mid);
    cursor: pointer; width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; transition: background var(--transition);
}
.exit-close:hover { background: var(--bg-warm); }
.exit-box h3 { font-size: 1.45rem; margin-bottom: 12px; }
.exit-box p { font-size: 0.98rem; color: var(--text-mid); margin-bottom: 28px; line-height: 1.65; }

/* === NOTIFICATION === */
.notif {
    position: fixed; bottom: 90px; left: 24px;
    background: var(--bg-white); border-radius: var(--radius);
    padding: 16px 20px; box-shadow: var(--shadow-md);
    display: flex; align-items: center; gap: 12px;
    z-index: 998; transform: translateX(-120%);
    transition: transform 0.5s ease; max-width: 330px;
    border-left: 4px solid var(--primary);
}
.notif.show { transform: translateX(0); }
.notif-icon { width: 42px; height: 42px; min-width: 42px; background: var(--bg-warm); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; }
.notif-text strong { display: block; font-size: 0.85rem; color: var(--text-dark); }
.notif-text span { font-size: 0.78rem; color: var(--text-mid); }

/* === BLOG PAGES === */
.page-hero {
    background: linear-gradient(155deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
    padding: 64px 0; text-align: center;
}
.page-hero h1 { color: #fff; font-size: 2.3rem; margin-bottom: 12px; max-width: 720px; margin-left: auto; margin-right: auto; }
.page-hero p { color: rgba(255,255,255,0.9); font-size: 0.92rem; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card {
    background: var(--bg-white); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: transform var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-body { padding: 26px; }
.blog-tag {
    display: inline-block; background: rgba(27,107,74,0.1);
    color: var(--primary); font-size: 0.68rem; font-weight: 700;
    padding: 4px 14px; border-radius: 50px;
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
}
.blog-body h3 { font-family: var(--font-body); font-size: 1.08rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-body h3 a { color: var(--text-dark); }
.blog-body h3 a:hover { color: var(--primary); }
.blog-body p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 16px; }
.read-more { font-size: 0.88rem; font-weight: 600; color: var(--primary); }

/* === BLOG POST === */
.post-content { max-width: 820px; margin: 0 auto; padding: 64px 24px; }
.post-content h2 { font-size: 1.55rem; margin: 44px 0 16px; }
.post-content h3 { font-size: 1.25rem; margin: 34px 0 12px; }
.post-content p { margin-bottom: 18px; font-size: 1.02rem; line-height: 1.85; }
.post-content ul { margin: 16px 0 24px 24px; }
.post-content ul li { margin-bottom: 8px; font-size: 0.98rem; line-height: 1.7; }

.breadcrumb { max-width: 820px; margin: 22px auto 0; padding: 0 24px; font-size: 0.85rem; color: var(--text-mid); }
.breadcrumb a { color: var(--primary); font-weight: 500; }

.author-box {
    background: var(--bg-warm); border-radius: var(--radius); padding: 28px;
    margin: 44px 0; display: flex; gap: 20px; align-items: flex-start;
    border: 1px solid var(--border);
}
.author-avatar {
    width: 66px; height: 66px; min-width: 66px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.4rem; font-weight: 700; font-family: var(--font-heading);
}
.author-box strong { font-size: 1.02rem; display: block; margin-bottom: 3px; }
.author-box .author-title { font-size: 0.85rem; color: var(--primary); font-weight: 600; display: block; margin-bottom: 8px; }
.author-box p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; margin: 0; }

.cta-box {
    background: var(--bg-warm); border: 2px solid var(--border);
    border-radius: var(--radius); padding: 34px; text-align: center; margin: 44px 0;
}
.cta-box h3 { font-family: var(--font-body); font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.cta-box p { margin-bottom: 20px; color: var(--text-mid); }

.related-box {
    background: var(--bg-cream); border-radius: var(--radius);
    padding: 28px; margin: 34px 0; border: 1px solid var(--border);
}
.related-box h3 { font-family: var(--font-body); font-size: 1.1rem; font-weight: 700; margin-bottom: 14px; }
.related-box a { display: block; color: var(--primary); font-weight: 600; font-size: 0.98rem; margin-bottom: 10px; }

/* === INGREDIENT + LEGAL PAGES === */
.ing-detail {
    background: var(--bg-white); border-radius: var(--radius);
    padding: 42px; margin-bottom: 26px; box-shadow: var(--shadow-sm);
}
.ing-detail h2 { font-family: var(--font-body); font-size: 1.4rem; font-weight: 700; margin-bottom: 14px; color: var(--primary-dark); }
.ing-detail p { margin-bottom: 14px; font-size: 0.98rem; }

.legal-content { max-width: 820px; margin: 0 auto; padding: 64px 24px; }
.legal-content h2 { font-family: var(--font-body); font-size: 1.35rem; font-weight: 700; margin: 36px 0 12px; color: var(--primary-dark); }
.legal-content p { margin-bottom: 16px; font-size: 0.98rem; line-height: 1.85; }
.legal-content ul { margin: 12px 0 20px 24px; }
.legal-content ul li { margin-bottom: 8px; font-size: 0.95rem; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-grid, .what-is-grid, .how-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-img { order: -1; text-align: center; }
    .hero-img img { max-width: 360px; margin: 0 auto; }
    .ben-grid, .ing-grid, .rev-grid { grid-template-columns: repeat(2, 1fr); }
    .price-grid { grid-template-columns: repeat(2, 1fr); }
    .foot-grid { grid-template-columns: 1fr 1fr; }
    .guar-box { grid-template-columns: 1fr; text-align: center; }
    .guar-box img { margin: 0 auto; max-width: 220px; }
}

@media (max-width: 768px) {
    html { font-size: 17px; }
    .header { display: block; }
    .nav {
        display: none; flex-direction: column;
        position: absolute; top: 100%; left: -24px; right: -24px;
        background: var(--bg-dark); padding: 20px 24px; gap: 16px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .nav.open { display: flex; }
    .mob-toggle { display: block; }
    .hero { padding: 64px 0 56px; }
    .hero h1 { font-size: 2rem; }
    .section-padding { padding: 64px 0; }
    .sec-title { font-size: 1.7rem; }
    .ben-grid, .ing-grid, .rev-grid { grid-template-columns: 1fr; }
    .price-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
    .foot-grid { grid-template-columns: 1fr; }
    .guar-box { padding: 34px 24px; }
    .float-btn { bottom: 16px; right: 16px; padding: 14px 24px; font-size: 0.85rem; }
    .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .notif { max-width: 290px; left: 12px; }
    .hero-pills { flex-direction: column; }
}
