:root {
    --green-ink: #06261c;
    --green-dark: #0b3d2e;
    --green: #147a4a;
    --green-mid: #1f8f58;
    --leaf: #7cb342;
    --orange: #e87b2a;
    --gold: #f5c518;
    --cream: #f6f1e6;
    --paper: #fffdf8;
    --muted: #5c6b64;
    --line: #dfe8e2;
    --shadow: 0 18px 40px rgba(6, 38, 28, 0.08);
    --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Outfit, system-ui, sans-serif;
    color: var(--green-ink);
    background: var(--paper);
    line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dark); }
.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.topbar {
    background: var(--green-ink);
    color: #e8f4ec;
    font-size: 0.82rem;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    flex-wrap: wrap;
}
.topbar-links { display: flex; gap: 18px; }
.topbar a { color: #f5c518; }

.nav-wrap {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 40;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
    gap: 20px;
}
.logo { display: flex; align-items: center; gap: 10px; color: inherit; }
.logo-img {
    display: block;
    height: 68px;
    width: auto;
    max-width: 210px;
    object-fit: contain;
}
.logo-img-footer {
    height: 86px;
    max-width: 240px;
    margin-bottom: 6px;
}
.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav a { color: var(--green-ink); font-weight: 600; font-size: 0.95rem; }
.site-nav a.active, .site-nav a:hover { color: var(--green); }
.btn, .btn-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--green-dark);
    color: #fff !important;
    border: 0;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 700;
    cursor: pointer;
}
.btn:hover, .btn-nav:hover { background: var(--green); }
.btn-ghost {
    background: transparent;
    color: var(--green-dark) !important;
    border: 1.5px solid var(--green-dark);
}
.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--green-dark);
    border-radius: 2px;
}

.hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
    align-items: center;
    padding: 56px 0 28px;
}
.eyebrow {
    color: var(--orange);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.78rem;
    margin: 0 0 10px;
}
h1, h2, .serif { font-family: "Source Serif 4", Georgia, serif; }
h1 { font-size: clamp(2.2rem, 4vw, 3.6rem); line-height: 1.12; margin: 0 0 14px; }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 540px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0 18px; }
.hero-points { display: flex; gap: 18px; flex-wrap: wrap; padding: 0; list-style: none; color: var(--green-dark); font-weight: 600; font-size: 0.92rem; }
.hero-art {
    background: linear-gradient(160deg, #0b3d2e, #147a4a);
    border-radius: 28px;
    min-height: 420px;
    padding: 28px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.hero-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    position: absolute;
    inset: 0;
}
.hero-art .badge {
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,0.92);
    color: var(--green-dark);
    display: inline-block;
    padding: 10px 14px;
    border-radius: 14px;
    font-weight: 700;
}

.promo {
    background: var(--green-dark);
    color: #fff;
    border-radius: 28px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 20px 0 56px;
    min-height: 280px;
}
.promo-copy { padding: 42px; }
.promo h2 { margin: 6px 0 8px; font-size: 2.4rem; }
.promo .off { color: var(--gold); font-size: 2rem; font-weight: 800; }
.promo img { width: 100%; height: 100%; object-fit: cover; }

.section { padding: 28px 0 64px; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 16px; margin-bottom: 24px; }
.section-head h2 { margin: 0; font-size: 2rem; }
.kicker { color: var(--green); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.78rem; }

.cats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.cat {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 22px 14px;
    text-align: center;
    font-weight: 700;
}
.cat span { display: block; font-size: 1.6rem; margin-bottom: 8px; }

.grid-4, .grid-3, .grid-2 { display: grid; gap: 18px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1fr 1fr; }

.card, .product, .policy, .stat, .faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.product { padding: 0 0 18px; overflow: hidden; }
.product-media {
    height: 150px;
    display: grid;
    place-items: center;
    font-size: 3rem;
    background:
        radial-gradient(circle at 20% 20%, rgba(245,197,24,.35), transparent 40%),
        linear-gradient(180deg, #eef7ef, #fff);
}
.product-body { padding: 0 16px; }
.product h3 { margin: 0 0 4px; font-family: Outfit, sans-serif; font-size: 1.05rem; }
.unit { color: var(--muted); font-size: 0.86rem; margin: 0; }
.price { display: flex; align-items: center; gap: 8px; margin: 10px 0 0; font-weight: 800; }
.mrp { color: #8a958f; text-decoration: line-through; font-weight: 500; }
.off { background: #e8f6ea; color: var(--green); font-size: 0.75rem; padding: 3px 8px; border-radius: 999px; }

.band {
    background: var(--green-dark);
    color: #fff;
    padding: 42px 0;
}
.band .grid-4 { text-align: center; }
.band strong { display: block; font-size: 2rem; }
.feature { padding: 22px; }
.feature h3 { margin: 8px 0 6px; font-family: Outfit, sans-serif; }

.page-hero {
    background:
        radial-gradient(circle at 90% 10%, rgba(245,197,24,.18), transparent 30%),
        var(--cream);
    padding: 48px 0 36px;
    border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin-bottom: 8px; }
.page-hero p { max-width: 680px; color: var(--muted); margin: 0; }

.policy { padding: 28px 32px 40px; }
.policy h2 { font-size: 1.35rem; margin: 28px 0 8px; }
.policy h2:first-child { margin-top: 0; }
.policy p, .policy li { color: #31453d; }
.policy ul { padding-left: 18px; }

.contact-card { padding: 24px; }
.contact-card h3 { margin-top: 0; font-family: Outfit, sans-serif; }
.form { display: grid; gap: 12px; }
.form input, .form textarea, .form select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
    font: inherit;
    background: #fff;
}
.form textarea { min-height: 140px; resize: vertical; }

.faq-item { overflow: hidden; }
.faq-item button {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    padding: 16px 18px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}
.faq-item .answer { display: none; padding: 0 18px 16px; color: var(--muted); }
.faq-item.open .answer { display: block; }

.site-footer {
    background: var(--green-ink);
    color: #d5e6dc;
    padding: 48px 0 18px;
    margin-top: 20px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 28px; }
.site-footer h3 { color: #fff; font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 8px 0; }
.site-footer a { color: #d5e6dc; }
.site-footer a:hover { color: var(--gold); }
.footer-legal-name { font-size: 0.88rem; color: #a9c3b5; }
.pay-bar {
    margin-top: 36px;
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 20px;
    align-items: center;
}
.pay-bar h3 { margin: 0 0 8px; }
.pay-bar p { margin: 0; font-size: 0.92rem; }
.pay-icons { display: flex; flex-wrap: wrap; gap: 8px; }
.pay-icons span {
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding: 18px 0 8px;
    font-size: 0.86rem;
}
.footer-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }

.note {
    background: #fff7e3;
    border: 1px solid #f0d48a;
    color: #6a4b00;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 0.9rem;
}

@media (max-width: 960px) {
    .hero, .promo, .grid-4, .cats, .footer-grid, .pay-bar, .grid-3 { grid-template-columns: 1fr 1fr; }
    .nav-toggle { display: flex; }
    .site-nav {
        display: none;
        position: absolute;
        top: 110px;
        left: 20px;
        right: 20px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: 16px;
        flex-direction: column;
        align-items: stretch;
        box-shadow: var(--shadow);
    }
    .site-nav.open { display: flex; }
}
@media (max-width: 700px) {
    .hero, .promo, .grid-4, .grid-3, .grid-2, .cats, .footer-grid, .pay-bar { grid-template-columns: 1fr; }
    .hero-art { min-height: 280px; }
    .promo img { height: 220px; }
}
