:root {
    --bg: #f7f8f6;
    --ink: #172015;
    --muted: #65705f;
    --green: #2f6b3d;
    --green-dark: #173d25;
    --gold: #c7a65b;
    --cream: #fffaf0;
    --coral: #b95e4c;
    --line: rgba(23, 32, 21, .12);
    --shadow: 0 24px 70px rgba(23, 61, 37, .16);
    --radius-lg: 24px;
    --radius-md: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Manrope, Arial, sans-serif;
    background:
        radial-gradient(circle at 15% -5%, rgba(47, 107, 61, .08), transparent 32%),
        radial-gradient(circle at 100% 20%, rgba(199, 166, 91, .12), transparent 30%),
        var(--bg);
    color: var(--ink);
    line-height: 1.45;
}
.site-layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.site-main {
    flex: 1 0 auto;
}
a { color: inherit; text-decoration: none; }
a, button, input {
    transition: .28s ease;
}
:focus-visible {
    outline: 3px solid rgba(47, 107, 61, .35);
    outline-offset: 2px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    width: 100%;
    padding: 0 22px;
    background: rgba(247, 249, 244, .84);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 22px rgba(23, 61, 37, .08);
}
.site-header-inner {
    display: grid;
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    max-width: 1420px;
    margin: 0 auto;
    min-height: 78px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: 0; }
.brand img {
    width: min(300px, 23vw);
    height: auto;
    display: block;
    object-fit: contain;
}
.menu-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.78);
    color: var(--green-dark);
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}
.menu-toggle__icon {
    position: relative;
    width: 16px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
}
.menu-toggle__icon::before,
.menu-toggle__icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 16px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transition: transform .2s ease;
}
.menu-toggle__icon::before {
    top: -5px;
}
.menu-toggle__icon::after {
    top: 5px;
}
.site-header.is-menu-open .menu-toggle__icon {
    background: transparent;
}
.site-header.is-menu-open .menu-toggle__icon::before {
    transform: translateY(5px) rotate(45deg);
}
.site-header.is-menu-open .menu-toggle__icon::after {
    transform: translateY(-5px) rotate(-45deg);
}
.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--muted);
    font-weight: 700;
    font-size: 14px;
}
.nav-links a {
    padding: 9px 14px;
    border-radius: 999px;
}
.nav-links a:hover {
    color: var(--green-dark);
    background: rgba(47, 107, 61, .09);
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.language-link, .verify-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 999px;
    padding: 0 18px;
    font-weight: 800;
    font-size: 13px;
}
.language-link { border: 1px solid var(--line); background: rgba(255,255,255,.5); }
.verify-link { color: #fff; background: var(--green-dark); box-shadow: 0 10px 26px rgba(23, 61, 37, .22); }

.hero {
    position: relative;
    min-height: calc(100vh - 78px);
    width: 100%;
    overflow: hidden;
}
.hero-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: 84px;
    align-items: center;
    padding: 88px;
}
.hero-with-slider {
    display: flex;
    align-items: center;
    padding: 110px 88px;
    background: #eef3eb;
}
.hero-split .hero-content {
    width: auto;
    max-width: 780px;
}
.packshot-product {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-content {
    position: relative;
    z-index: 3;
    width: min(720px, 58vw);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(247, 248, 246, .96) 0%, rgba(247, 248, 246, .86) 36%, rgba(247, 248, 246, .28) 68%, rgba(247, 248, 246, .1) 100%),
        linear-gradient(0deg, rgba(23, 32, 21, .12), rgba(23, 32, 21, .02));
    pointer-events: none;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--green-dark);
    background: rgba(47, 107, 61, .1);
    border: 1px solid rgba(47, 107, 61, .18);
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 800;
}
h1 {
    margin: 22px 0 18px;
    max-width: 820px;
    font-size: clamp(44px, 6vw, 78px);
    line-height: .94;
    letter-spacing: 0;
}
.lead {
    max-width: 680px;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.7;
}
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border-radius: 999px;
    padding: 0 24px;
    border: 1px solid var(--line);
    font-weight: 800;
}
.btn-primary { background: var(--green-dark); color: #fff; border-color: var(--green-dark); }
.btn-light { background: rgba(255,255,255,.72); }
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(23, 61, 37, .14);
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}
.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}
.hero-slide {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity .7s ease, transform 5s ease;
    background:
        radial-gradient(circle at 78% 40%, rgba(47, 107, 61, .16), transparent 34%),
        linear-gradient(110deg, #f3f5f0, #e5ebdf);
}
.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    padding: 0;
    background: transparent;
}
.hero-slide-content {
    padding: 24px 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--ink);
}
.hero-slide-content h2 {
    margin: 0;
    font-size: 38px;
    line-height: 1.05;
}
.hero-slide-content p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}
.hero-slide-content small {
    margin-top: auto;
    padding-top: 10px;
    font-weight: 800;
    color: var(--green-dark);
    letter-spacing: .2px;
}
.hero-dots {
    position: absolute;
    z-index: 4;
    right: 88px;
    bottom: 42px;
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 0;
}
.hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 0;
    background: rgba(23, 32, 21, .2);
    cursor: pointer;
}
.hero-dot.is-active {
    width: 22px;
    border-radius: 999px;
    background: var(--green-dark);
}
.hero-auth-seal {
    position: absolute;
    z-index: 4;
    right: 88px;
    bottom: 84px;
    width: 138px;
    height: 138px;
    border-radius: 50%;
    background: var(--coral);
    color: #fff;
    box-shadow: 0 18px 38px rgba(23, 61, 37, .28);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    padding: 14px;
}
.hero-auth-seal i {
    font-size: 30px;
    line-height: 1;
}
.hero-auth-seal span {
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
}
.icon-credit {
    margin: 10px 0 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--muted);
    text-align: center;
}
.icon-credit-svg {
    width: 16px;
    height: 16px;
    object-fit: contain;
}
.icon-credit a {
    text-decoration: underline;
}
.product-box {
    width: min(82vw, 340px);
    aspect-ratio: 7 / 10;
    border-radius: 24px;
    background:
        linear-gradient(150deg, rgba(255,255,255,.96), rgba(246,240,216,.78)),
        radial-gradient(circle at 70% 20%, rgba(199,166,91,.3), transparent 30%);
    border: 1px solid rgba(255,255,255,.75);
    box-shadow: var(--shadow);
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-box img {height: 82px; object-fit: contain; }
.product-box h2 { margin: 0; font-size: 38px; line-height: 1.05; }
.product-box p { color: var(--muted); margin: 10px 0 0; line-height: 1.6; }
.seal {
    position: absolute;
    right: -34px;
    bottom: 52px;
    width: 142px;
    height: 142px;
    border-radius: 50%;
    background: var(--coral);
    color: #fff;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 20px;
    font-weight: 800;
    box-shadow: 0 18px 38px rgba(23, 61, 37, .28);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.seal-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.seal span {
    line-height: 1.1;
}

.section {
    width: 100%;
    margin: 0 auto;
    padding: 92px 88px;
}
.section.alt {
    background: rgba(255, 255, 255, .68);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, .78);
    box-shadow: 0 22px 55px rgba(23, 61, 37, .08);
}
.section-head { max-width: 780px; margin-bottom: 30px; }
.section h2 { font-size: 48px; margin: 0 0 14px; line-height: 1.06; letter-spacing: 0; }
.section p { color: var(--muted); line-height: 1.75; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.card {
    background: rgba(255,255,255,.76);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: 0 18px 40px rgba(23, 61, 37, .08);
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 48px rgba(23, 61, 37, .14);
}
.card i { color: var(--green); font-size: 28px; }
.card h3 { margin: 14px 0 8px; }

.verify-panel {
    max-width: 760px;
    margin: 0;
    background: linear-gradient(160deg, rgba(255,255,255,.92), rgba(255,255,255,.72));
    border: 1px solid rgba(255,255,255,.78);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: 0 28px 64px rgba(23, 61, 37, .14);
    backdrop-filter: blur(8px);
}
.verify-panel h1 {
    font-size: 56px;
    line-height: 1;
}
.verify-form { display: flex; gap: 12px; margin-top: 24px; }
.verify-form input {
    flex: 1;
    min-width: 0;
    min-height: 58px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0 22px;
    background: rgba(255,255,255,.72);
    font: inherit;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}
.verify-form input:focus {
    border-color: rgba(23, 61, 37, .35);
    box-shadow: 0 0 0 4px rgba(47, 107, 61, .1);
}
.verify-form button {
    min-height: 58px;
    border: 0;
    border-radius: 999px;
    padding: 0 26px;
    background: linear-gradient(130deg, #1f5f34, #143d24);
    color: #fff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}
.verify-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(23, 61, 37, .28);
}
.result {
    display: none;
    margin-top: 22px;
    padding: 22px;
    border-radius: 14px;
    border: 1px solid var(--line);
    backdrop-filter: blur(6px);
}
.result.original {
    display: block;
    position: relative;
    margin-top: 28px;
    padding: 48px 26px 28px;
    border-radius: 14px;
    border: 1.5px solid #54b874;
    background: #edf8ef;
    color: #15743d;
    text-align: center;
}
.result.original::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -29px;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid #54b874;
    background: #edf8ef;
}
.result.original::after {
    content: "✓";
    position: absolute;
    left: 50%;
    top: -19px;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #54b874;
    color: #1f8b4f;
    font-size: 23px;
    font-weight: 900;
    line-height: 31px;
    background: #fff;
}
.result.fake {
    display: block;
    position: relative;
    margin-top: 28px;
    padding: 48px 26px 28px;
    border-radius: 14px;
    border: 1.5px solid #ff5f5f;
    background: #fff5f5;
    color: #f24848;
    text-align: center;
}
.result.fake::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -29px;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid #ff5f5f;
    background: #fff5f5;
}
.result.fake::after {
    content: "!";
    position: absolute;
    left: 50%;
    top: -19px;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #ff5f5f;
    color: #f24848;
    font-size: 24px;
    font-weight: 900;
    line-height: 31px;
    background: #fff;
}
.result h3 { margin: 0 0 8px; font-size: 24px; }
.result p { margin: 0; color: inherit; }
.result.original h3 {
    color: #15743d;
    text-transform: uppercase;
    font-size: clamp(24px, 4vw, 42px);
    line-height: 1.08;
    margin-bottom: 12px;
    letter-spacing: .2px;
}
.result.original p {
    color: #214430;
    font-size: 17px;
}
.result.fake h3 {
    color: #f24848;
    text-transform: uppercase;
    font-size: clamp(24px, 4vw, 42px);
    line-height: 1.08;
    margin-bottom: 12px;
    letter-spacing: .2px;
}
.result.fake p {
    color: #2f3230;
    font-size: 17px;
}

.verify-section {
    padding-top: 72px;
    padding-bottom: 90px;
}
.verify-classic-wrap {
    max-width: 980px;
    margin: 0 auto;
    border: 2px solid #33ad52;
    border-radius: 24px;
    background: rgba(255, 255, 255, .62);
    box-shadow: 0 22px 50px rgba(23, 61, 37, .08);
    padding: 84px 48px 34px;
    position: relative;
}
.verify-top-logo {
    position: absolute;
    left: 50%;
    top: -25px;
    transform: translateX(-50%);
    background: var(--bg);
    padding: 0 18px;
}
.verify-top-logo img {
    width: 400px;
    height: auto;
    display: block;
}
.verify-classic-title {
    margin: 0;
    text-align: center;
    font-size: clamp(34px, 5vw, 50px);
    line-height: 1;
    color: #0f6e3c;
    letter-spacing: .6px;
}
.verify-classic-desc {
    margin: 16px auto 26px;
    max-width: 760px;
    text-align: center;
    color: #3f4a43;
    font-size: 17px;
}
.verify-form-classic {
    margin-top: 0;
    padding: 10px;
    border: 1px solid rgba(23, 32, 21, .14);
    border-radius: 14px;
    background: rgba(255,255,255,.7);
}
.verify-form-classic input {
    min-height: 64px;
    border: 0;
    background: transparent;
    font-size: 17px;
    letter-spacing: .4px;
}
.verify-form-classic button {
    min-height: 64px;
    min-width: 178px;
    border-radius: 10px;
    background: linear-gradient(130deg, #ff7a1c, #ff5b00);
    font-size: 16px;
}
.verify-note {
    margin-top: 16px;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid;
}
.verify-note i {
    font-size: 22px;
    margin-top: 1px;
}
.verify-note-qr {
    width: 100px;
    height: 100px;
    border-radius: 6px;
    object-fit: cover;
    flex: 0 0 42px;
}
.verify-note p {
    margin: 0;
    line-height: 1.55;
}
.verify-note.info {
    border-color: #5f96ff;
    background: rgba(95, 150, 255, .1);
    color: #284777;
}
.verify-note.warn {
    border-color: #ff8a3d;
    background: rgba(255, 138, 61, .08);
    color: #694123;
}
.verify-shell {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
    gap: 24px;
    align-items: stretch;
}
.verify-side {
    border-radius: var(--radius-lg);
    padding: 28px;
    background: linear-gradient(160deg, rgba(23,61,37,.97), rgba(21,86,46,.9));
    color: rgba(255,255,255,.92);
    box-shadow: 0 24px 54px rgba(23, 61, 37, .24);
    border: 1px solid rgba(255,255,255,.14);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.verify-logo {
    width: 220px;
    max-width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}
.verify-side p {
    margin: 0;
    color: rgba(255,255,255,.78);
    line-height: 1.7;
}
.verify-side-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.verify-side-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 12px;
    padding: 12px;
}
.verify-side-item img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}
.verify-side-item strong {
    font-size: 13px;
    letter-spacing: .2px;
}
.verify-side-cta {
    width: 100%;
    margin-top: auto;
}

.content-wrap { max-width: 960px; margin: 0 auto; }
.page-title {
    font-size: 58px;
    line-height: 1.02;
    letter-spacing: 0;
}
.cms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.site-footer {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
    padding: 42px 88px;
    background: var(--green-dark);
    color: #fff;
}
.site-footer p { max-width: 480px; color: rgba(255,255,255,.72); line-height: 1.7; }
.footer-contact {
    display: inline-block;
    margin-top: 8px;
    font-weight: 700;
    color: rgba(255,255,255,.92);
}
.footer-contact:hover {
    color: #fff;
    text-decoration: underline;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; color: rgba(255,255,255,.78); font-weight: 700; }
.copyright { color: rgba(255,255,255,.6); }

@media (max-width: 920px) {
    .site-header {
        padding: 0 12px;
        background: rgba(247, 249, 244, .96);
    }
    .site-header-inner {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
        min-height: auto;
        padding: 8px 0;
    }
    .brand img {
        width: 198px;
        max-width: 62vw;
        height: auto;
    }
    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
        min-height: 38px;
        padding: 0 12px;
    }
    .header-actions {
        display: none;
        order: 4;
        width: 100%;
        gap: 8px;
        padding-top: 8px;
        border-top: 1px solid var(--line);
    }
    .site-header.is-menu-open .header-actions {
        display: flex;
    }
    .language-link,
    .verify-link {
        flex: 1 1 0;
        min-height: 40px;
        padding: 0 12px;
    }
    .nav-links {
        display: none;
        order: 2;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        margin-top: 2px;
        padding: 6px;
        gap: 4px;
        background: rgba(255,255,255,.7);
        border: 1px solid var(--line);
        border-radius: 14px;
    }
    .site-header.is-menu-open .nav-links {
        display: flex;
    }
    .nav-links a {
        white-space: normal;
        padding: 10px 12px;
        border-radius: 12px;
        background: rgba(47, 107, 61, .04);
    }
    .hero-with-slider {
        min-height: calc(100vh - 58px);
        padding: 92px 20px 74px;
    }
    .hero-split {
        grid-template-columns: 1fr;
        gap: 38px;
        padding: 56px 20px;
    }
    .hero-split .hero-content {
        width: 100%;
    }
    .packshot-product {
        justify-content: flex-start;
    }
    .hero-content {
        width: min(100%, 620px);
    }
    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(247, 248, 246, .96) 0%, rgba(247, 248, 246, .86) 58%, rgba(247, 248, 246, .35) 100%),
            linear-gradient(0deg, rgba(23, 32, 21, .12), rgba(23, 32, 21, .02));
    }
    .hero-dots {
        right: 20px;
        bottom: 24px;
    }
    .hero-auth-seal {
        right: 20px;
        bottom: 68px;
        width: 108px;
        height: 108px;
        gap: 6px;
    }
    .hero-auth-seal i {
        font-size: 24px;
    }
    .hero-auth-seal span {
        font-size: 13px;
    }
    h1 { font-size: 52px; }
    .lead { font-size: 17px; }
    .section { padding: 58px 20px; }
    .section h2 { font-size: 34px; }
    .page-title, .verify-panel h1 { font-size: 42px; }
    .verify-shell {
        grid-template-columns: 1fr;
    }
    .verify-classic-wrap {
        padding: 74px 18px 22px;
        border-radius: 18px;
    }
    .verify-top-logo img {
        width: 250px;
    }
    .verify-classic-desc {
        font-size: 15px;
    }
    .verify-form-classic {
        padding: 8px;
    }
    .verify-form-classic input {
        min-height: 56px;
        font-size: 15px;
    }
    .verify-form-classic button {
        min-width: 100%;
        font-size: 15px;
        border-radius: 999px;
    }
    .verify-panel { padding: 28px; }
    .verify-side {
        padding: 22px;
    }
    .seal {
        right: -20px;
        bottom: 28px;
        width: 108px;
        height: 108px;
        font-size: 12px;
        box-shadow: 0 14px 30px rgba(23, 61, 37, .2);
    }
    .hero-slide-content h2, .product-box h2 { font-size: 32px; }
    .grid { grid-template-columns: 1fr; }
    .verify-form { flex-direction: column; }
    .verify-form button { width: 100%; }
    .site-footer { padding: 42px 20px; }
}

/* ============================================================
   PREMIUM LAUNCH COMPONENTS — added for Green Loving brand launch
   ============================================================ */

.btn-lg { min-height: 60px; padding: 0 30px; font-size: 15px; gap: 10px; }
.btn-lg i { font-size: 18px; }
.btn-ghost {
    background: rgba(255,255,255,.6);
    border: 1px solid rgba(23,61,37,.18);
    color: var(--green-dark);
    backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,.85); }
.btn-gold {
    background: linear-gradient(135deg, #e3c87a, #b88a2e);
    color: #2a1d05;
    border: 0;
    box-shadow: 0 14px 30px rgba(184, 138, 46, .35);
    min-height: 56px;
    padding: 0 28px;
    border-radius: 999px;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(184, 138, 46, .45); }
.btn-outline-light {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,.5);
    color: #fff;
    min-height: 56px;
    padding: 0 26px;
    border-radius: 999px;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800;
}
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.eyebrow--gold {
    color: #8a6315;
    background: linear-gradient(135deg, rgba(227,200,122,.18), rgba(184,138,46,.12));
    border-color: rgba(184,138,46,.3);
}
.eyebrow--inverse {
    color: #fff;
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.25);
}

.section-head--centered { margin: 0 auto 48px; text-align: center; max-width: 820px; }
.section-head--centered .eyebrow { margin: 0 auto; }
.section-head--centered h2 { font-size: clamp(34px, 4.4vw, 56px); }

[data-placeholder] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(23, 61, 37, .55);
    background:
        repeating-linear-gradient(45deg, rgba(47, 107, 61, .06) 0 14px, rgba(47, 107, 61, .02) 14px 28px),
        linear-gradient(135deg, #f1f4ec, #e7ede0);
    border: 1.5px dashed rgba(47, 107, 61, .3);
    border-radius: var(--radius-md);
    text-align: center;
    padding: 28px;
    min-height: 220px;
    font-weight: 700;
}
[data-placeholder] i { font-size: 34px; color: var(--green); }
[data-placeholder] small { font-weight: 600; opacity: .65; font-size: 12px; }

/* === Launch hero =========================================== */
.launch-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 88px 110px;
    background:
        radial-gradient(ellipse at top, rgba(47, 107, 61, .12), transparent 55%),
        linear-gradient(160deg, #f6f8f1 0%, #eaf0e2 100%);
}
.launch-hero__bg {
    position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.launch-hero__glow {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .55;
}
.launch-hero__glow--gold {
    top: -160px; right: -120px;
    background: radial-gradient(circle, rgba(227,200,122,.6), transparent 60%);
}
.launch-hero__glow--green {
    bottom: -200px; left: -120px;
    background: radial-gradient(circle, rgba(47,107,61,.45), transparent 60%);
}
.launch-hero__inner {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
    max-width: 1320px;
    margin: 0 auto;
}
.launch-hero__content { max-width: 640px; }
.launch-pill {
    display: inline-flex;
    align-items: center; gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(227,200,122,.95), rgba(184,138,46,.88));
    color: #2a1d05;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    box-shadow: 0 14px 32px rgba(184,138,46,.28);
}
.launch-pill i { font-size: 16px; }
.launch-kicker {
    margin: 22px 0 6px;
    color: var(--green);
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
    font-size: 13px;
}
.launch-title {
    margin: 0 0 22px;
    font-size: clamp(42px, 5.4vw, 76px);
    line-height: 1.02;
    letter-spacing: -.5px;
    color: #0f2417;
}
.launch-lead {
    margin: 0 0 32px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.7;
    max-width: 580px;
}
.launch-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.launch-meta {
    list-style: none; padding: 0; margin: 36px 0 0;
    display: flex; flex-wrap: wrap; gap: 22px;
    color: var(--green-dark);
    font-weight: 700;
    font-size: 14px;
}
.launch-meta li { display: inline-flex; align-items: center; gap: 8px; }
.launch-meta i { font-size: 18px; color: var(--green); }

.launch-hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
}
.launch-card {
    position: relative;
    width: min(88%, 380px);
    aspect-ratio: 7/10;
    border-radius: 28px;
    background:
        linear-gradient(160deg, rgba(255,255,255,.95), rgba(243,238,216,.85)),
        radial-gradient(circle at 70% 15%, rgba(199,166,91,.35), transparent 40%);
    border: 1px solid rgba(255,255,255,.85);
    box-shadow:
        0 40px 80px rgba(15, 36, 23, .22),
        0 0 0 1px rgba(255,255,255,.6) inset;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.launch-card__ribbon {
    position: absolute;
    top: 18px; left: 18px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--green-dark);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
.launch-card img {
    flex: 1;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin: auto 0;
}
.launch-card__placeholder {
    flex: 1;
    margin: 28px 0 16px;
}
.launch-card__caption {
    border-top: 1px solid rgba(15, 36, 23, .1);
    padding-top: 16px;
    text-align: left;
}
.launch-card__caption strong {
    display: block;
    font-size: 17px;
    color: #0f2417;
    margin-bottom: 4px;
}
.launch-card__caption span {
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
}
.launch-seal {
    position: absolute;
    right: -10px;
    bottom: 30px;
    width: 130px; height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #d96a55, var(--coral));
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center; justify-content: center;
    gap: 6px;
    text-align: center;
    box-shadow: 0 22px 44px rgba(185,94,76,.42);
    border: 4px solid rgba(255,255,255,.45);
    transform: rotate(-8deg);
    z-index: 3;
}
.launch-seal i { font-size: 28px; }
.launch-seal span { font-size: 12px; font-weight: 800; letter-spacing: .5px; line-height: 1.1; padding: 0 6px; }
.launch-seal--lg { width: 150px; height: 150px; right: -16px; }
.launch-seal--lg i { font-size: 32px; }
.launch-seal--lg span { font-size: 13px; }

.launch-dots {
    position: absolute; left: 50%; bottom: 36px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex; gap: 8px;
}
.launch-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: 0;
    background: rgba(15,36,23,.25);
    cursor: pointer;
}
.launch-dot.is-active { width: 26px; border-radius: 999px; background: var(--green-dark); }

/* === Pillar grid =========================================== */
.pillars-section { padding: 96px 88px; }
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.pillar {
    position: relative;
    background: rgba(255,255,255,.85);
    border: 1px solid rgba(15,36,23,.08);
    border-radius: var(--radius-md);
    padding: 32px 26px 28px;
    box-shadow: 0 24px 48px rgba(15, 36, 23, .07);
    transition: .3s ease;
}
.pillar:hover { transform: translateY(-6px); box-shadow: 0 36px 60px rgba(15,36,23,.12); }
.pillar__num {
    position: absolute;
    top: 18px; right: 22px;
    font-size: 13px;
    font-weight: 800;
    color: rgba(15,36,23,.18);
    letter-spacing: 1px;
}
.pillar i {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(47,107,61,.14), rgba(199,166,91,.14));
    color: var(--green-dark);
    font-size: 24px;
    margin-bottom: 18px;
}
.pillar h3 { margin: 0 0 8px; font-size: 19px; color: #0f2417; }
.pillar p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }

/* === Showcase ============================================== */
.showcase-section { padding: 96px 88px; }
.showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    background: linear-gradient(150deg, #ffffff, #f3f6ed);
    border-radius: 32px;
    padding: 56px;
    box-shadow: 0 36px 80px rgba(15, 36, 23, .08);
    border: 1px solid rgba(255,255,255,.8);
}
.showcase__visual {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #1f5f34, #143d24);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 30px 60px rgba(20, 61, 36, .35);
}
.showcase__frame {
    width: 88%; height: 88%;
    background: rgba(255,255,255,.06) !important;
    border: 1.5px dashed rgba(255,255,255,.3) !important;
    color: rgba(255,255,255,.7) !important;
}
.showcase__frame i { color: rgba(227,200,122,.85) !important; }
.showcase__chip {
    position: absolute;
    bottom: 22px; left: 22px;
    background: rgba(255,255,255,.95);
    color: var(--green-dark);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .4px;
}
.showcase__list {
    list-style: none; padding: 0; margin: 24px 0 30px;
    display: flex; flex-direction: column; gap: 12px;
}
.showcase__list li {
    display: flex; align-items: flex-start; gap: 12px;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.5;
}
.showcase__list i {
    flex-shrink: 0;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 14px;
    margin-top: 2px;
}

/* === How steps ============================================= */
.how-section { padding: 96px 88px; background: rgba(255,255,255,.6); }
.how-steps {
    list-style: none; padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    max-width: 1200px; margin: 0 auto;
}
.how-step {
    position: relative;
    background: #fff;
    border: 1px solid rgba(15,36,23,.08);
    border-radius: 22px;
    padding: 36px 28px;
    box-shadow: 0 22px 50px rgba(15,36,23,.07);
}
.how-step__num {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 18px;
    box-shadow: 0 14px 28px rgba(20,61,36,.28);
}
.how-step h3 { margin: 0 0 8px; font-size: 19px; color: #0f2417; }
.how-step p { margin: 0; color: var(--muted); line-height: 1.65; }

/* === Ingredients =========================================== */
.ingredients-section { padding: 96px 88px; }
.ingredient-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
    max-width: 1280px;
    margin: 0 auto;
}
.ingredient-grid--compact { margin-top: 32px; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.ingredient {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255,255,255,.85);
    border: 1px solid rgba(15,36,23,.08);
    border-radius: 14px;
    transition: .25s ease;
}
.ingredient:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(15,36,23,.08);
    border-color: rgba(47,107,61,.2);
}
.ingredient__icon {
    flex-shrink: 0;
    width: 38px; height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(47,107,61,.14), rgba(199,166,91,.14));
    color: var(--green-dark);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 18px;
}
.ingredient__body { display: flex; flex-direction: column; min-width: 0; }
.ingredient__body strong {
    font-size: 14px;
    color: #0f2417;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ingredient__mg {
    font-size: 12px;
    font-weight: 800;
    color: var(--green);
    letter-spacing: .3px;
}

.ingredient-shell {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 28px;
    padding: 56px;
    box-shadow: 0 36px 80px rgba(15,36,23,.08);
    border: 1px solid rgba(15,36,23,.06);
}
.ingredient-shell__head { text-align: center; margin-bottom: 38px; }
.ingredient-shell__head .eyebrow { margin: 0 auto; }
.ingredient-shell__head h2 { margin: 18px 0 10px; }
.ingredient-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 36px;
}
.ingredient-table thead th {
    text-align: left;
    padding: 14px 16px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--muted);
    border-bottom: 2px solid rgba(15,36,23,.08);
}
.ingredient-table tbody td {
    padding: 16px;
    border-bottom: 1px solid rgba(15,36,23,.06);
    color: var(--ink);
    font-size: 15px;
}
.ingredient-table tbody tr:hover { background: rgba(47,107,61,.04); }
.ingredient-table__num { color: var(--muted); font-weight: 800; font-size: 13px; width: 60px; }
.ingredient-table__name { font-weight: 700; color: #0f2417; }
.ingredient-table__amount { text-align: right; white-space: nowrap; color: var(--green-dark); font-weight: 700; }
.ingredient-table__amount strong { font-size: 18px; color: var(--green); margin-right: 4px; }

/* === Stats strip =========================================== */
.stats-section { padding: 0 88px; }
.stat-strip {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: linear-gradient(135deg, var(--green-dark), #1f5f34);
    color: #fff;
    border-radius: 28px;
    padding: 48px 36px;
    box-shadow: 0 36px 80px rgba(20,61,36,.32);
    position: relative;
    overflow: hidden;
}
.stat-strip::before {
    content: "";
    position: absolute;
    top: -80px; right: -80px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227,200,122,.35), transparent 60%);
}
.stat {
    position: relative;
    text-align: center;
    padding: 0 14px;
    border-right: 1px solid rgba(255,255,255,.14);
}
.stat:last-child { border-right: 0; }
.stat strong {
    display: block;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #fff, #e3c87a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}
.stat span { font-size: 13px; color: rgba(255,255,255,.78); line-height: 1.4; }

/* === Trust / brand story =================================== */
.trust-section { padding: 96px 88px; }
.trust {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}
.trust__content h2 { font-size: clamp(32px, 4vw, 50px); margin: 18px 0 18px; }
.trust__content p { color: var(--muted); font-size: 17px; line-height: 1.75; margin-bottom: 24px; }
.trust__visual {
    aspect-ratio: 4/5;
    border-radius: 24px;
}

/* === FAQ =================================================== */
.faq-section { padding: 96px 88px; background: rgba(255,255,255,.6); }
.faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq {
    background: #fff;
    border: 1px solid rgba(15,36,23,.08);
    border-radius: 16px;
    overflow: hidden;
    transition: .25s ease;
}
.faq[open] {
    border-color: rgba(47,107,61,.3);
    box-shadow: 0 18px 36px rgba(15,36,23,.08);
}
.faq summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    font-weight: 800;
    font-size: 17px;
    color: #0f2417;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary i {
    flex-shrink: 0;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(47,107,61,.1);
    color: var(--green-dark);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 16px;
    transition: transform .25s ease;
}
.faq[open] summary i { transform: rotate(45deg); background: var(--green-dark); color: #fff; }
.faq p {
    margin: 0;
    padding: 0 26px 24px;
    color: var(--muted);
    line-height: 1.7;
}

/* === CTA band ============================================== */
.cta-band {
    padding: 0 88px 96px;
}
.cta-band__inner {
    max-width: 1280px;
    margin: 0 auto;
    background:
        radial-gradient(circle at 90% 10%, rgba(227,200,122,.35), transparent 50%),
        linear-gradient(135deg, var(--green-dark), #0f2c19);
    border-radius: 32px;
    padding: 64px 56px;
    color: #fff;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
    box-shadow: 0 40px 80px rgba(15, 44, 25, .35);
    position: relative;
    overflow: hidden;
}
.cta-band__inner h2 {
    color: #fff;
    margin: 16px 0 12px;
    font-size: clamp(30px, 3.6vw, 46px);
}
.cta-band__inner p { color: rgba(255,255,255,.78); margin: 0; font-size: 17px; line-height: 1.7; max-width: 540px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }
.cta-band--product .cta-band__inner {
    background:
        radial-gradient(circle at 12% 20%, rgba(227,200,122,.4), transparent 55%),
        linear-gradient(135deg, #0f2c19, var(--green-dark));
}

/* === CMS section =========================================== */
.cms-section { padding: 96px 88px; }
.cms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    max-width: 1280px;
    margin: 0 auto;
}
.cms-card {
    position: relative;
    display: block;
    padding: 28px 28px 60px;
    background: #fff;
    border: 1px solid rgba(15,36,23,.08);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(15,36,23,.06);
    transition: .3s ease;
}
.cms-card:hover { transform: translateY(-4px); box-shadow: 0 28px 56px rgba(15,36,23,.12); }
.cms-card h3 { margin: 0 0 10px; color: #0f2417; }
.cms-card p { color: var(--muted); margin: 0; line-height: 1.6; }
.cms-card__arrow {
    position: absolute;
    bottom: 22px; right: 22px;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(47,107,61,.1);
    color: var(--green-dark);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 16px;
    transition: .25s ease;
}
.cms-card:hover .cms-card__arrow { background: var(--green-dark); color: #fff; transform: translateX(2px); }

/* === Product page ========================================== */
.product-hero {
    position: relative;
    overflow: hidden;
    padding: 88px 88px 110px;
    background:
        linear-gradient(160deg, #f6f8f1, #e7ede0);
}
.product-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.product-hero__glow {
    position: absolute;
    top: -200px; right: -150px;
    width: 580px; height: 580px;
    border-radius: 50%;
    filter: blur(120px);
    background: radial-gradient(circle, rgba(47,107,61,.35), transparent 60%);
}
.product-hero__inner {
    position: relative; z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
}
.product-hero__content h1 {
    margin: 16px 0 18px;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.04;
    color: #0f2417;
}
.product-hero__bullets {
    list-style: none; padding: 0; margin: 28px 0 32px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
    max-width: 580px;
}
.product-hero__bullets li {
    display: flex; align-items: center; gap: 10px;
    color: var(--ink);
    font-size: 14px;
    line-height: 1.4;
}
.product-hero__bullets i { color: var(--green); font-size: 20px; flex-shrink: 0; }

.product-hero__visual {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    min-height: 540px;
}
.product-pack {
    position: relative;
    width: min(90%, 420px);
    aspect-ratio: 7/10;
    border-radius: 28px;
    background:
        linear-gradient(170deg, rgba(255,255,255,.96), rgba(243,238,216,.85)),
        radial-gradient(circle at 70% 15%, rgba(199,166,91,.35), transparent 40%);
    border: 1px solid rgba(255,255,255,.85);
    box-shadow: 0 44px 90px rgba(15, 36, 23, .25), 0 0 0 1px rgba(255,255,255,.6) inset;
    padding: 30px;
    overflow: hidden;
}
.product-pack img { width: 100%; height: 100%; object-fit: contain; }
.product-pack__placeholder { width: 100%; height: 100%; }

/* === Intro grid ============================================ */
.product-intro { padding: 96px 88px; }
.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}
.intro-grid h2 { font-size: clamp(32px, 4vw, 52px); margin: 16px 0 18px; }
.intro-grid__media { aspect-ratio: 4/5; border-radius: 24px; }
.cms-body { color: var(--muted); line-height: 1.75; }
.cms-body p { margin: 0 0 14px; }

/* === Specs table =========================================== */
.specs-section { padding: 96px 88px; background: rgba(255,255,255,.6); }
.spec-table {
    max-width: 980px;
    margin: 0 auto;
    background: #fff;
    border-radius: 22px;
    padding: 16px 32px;
    box-shadow: 0 22px 50px rgba(15,36,23,.08);
    border: 1px solid rgba(15,36,23,.06);
}
.spec-row {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(0, 2.4fr);
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(15,36,23,.06);
    align-items: baseline;
}
.spec-row:last-child { border-bottom: 0; }
.spec-row dt {
    font-weight: 800;
    color: var(--green-dark);
    text-transform: uppercase;
    letter-spacing: .8px;
    font-size: 12px;
}
.spec-row dd { margin: 0; color: var(--ink); font-size: 16px; line-height: 1.6; }

/* === Benefits ============================================== */
.benefits-section { padding: 96px 88px; }
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    max-width: 1180px; margin: 0 auto;
}
.benefit-card {
    background: #fff;
    border-radius: 22px;
    padding: 36px 32px;
    border: 1px solid rgba(15,36,23,.08);
    box-shadow: 0 24px 48px rgba(15,36,23,.06);
    transition: .3s ease;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 32px 60px rgba(15,36,23,.12); }
.benefit-card--accent {
    background: linear-gradient(160deg, var(--green-dark), #1f5f34);
    color: #fff;
    border-color: transparent;
}
.benefit-card--accent h3, .benefit-card--accent p { color: #fff; }
.benefit-card--accent p { color: rgba(255,255,255,.85); }
.benefit-card__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 56px; height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(47,107,61,.14), rgba(199,166,91,.18));
    color: var(--green-dark);
    font-size: 26px;
    margin-bottom: 18px;
}
.benefit-card--accent .benefit-card__icon {
    background: rgba(255,255,255,.14);
    color: #e3c87a;
}
.benefit-card h3 { margin: 0 0 10px; font-size: 22px; color: #0f2417; }
.benefit-card p { margin: 0; color: var(--muted); line-height: 1.7; font-size: 15px; }

/* === Usage / safety ======================================== */
.usage-section { padding: 96px 88px; }
.usage {
    max-width: 1280px; margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}
.usage h2 { font-size: clamp(32px, 4vw, 50px); margin: 16px 0 18px; }
.usage-list {
    list-style: none; padding: 0; margin: 28px 0 0;
    display: flex; flex-direction: column; gap: 14px;
}
.usage-list li {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 18px 22px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(15,36,23,.06);
    box-shadow: 0 14px 28px rgba(15,36,23,.05);
}
.usage-list li span {
    flex-shrink: 0;
    width: 38px; height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 14px;
}
.usage-list li p { margin: 0; color: var(--ink); line-height: 1.6; padding-top: 6px; }
.safety-card {
    background: linear-gradient(160deg, #fff8ec, #fdefcf);
    border: 1px solid rgba(184,138,46,.3);
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 22px 50px rgba(184,138,46,.15);
    position: sticky;
    top: 100px;
}
.safety-card h3 {
    display: flex; align-items: center; gap: 10px;
    margin: 0 0 18px;
    color: #6e4f0c;
    font-size: 19px;
}
.safety-card h3 i { color: #b88a2e; font-size: 22px; }
.safety-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.safety-card li {
    position: relative;
    padding-left: 22px;
    color: #5c451a;
    font-size: 14px;
    line-height: 1.6;
}
.safety-card li::before {
    content: "";
    position: absolute;
    left: 4px; top: 9px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #b88a2e;
}

/* === Gallery =============================================== */
.gallery-section { padding: 96px 88px; }
.gallery-grid {
    max-width: 1280px; margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 320px 320px;
    gap: 16px;
}
.gallery-tile { aspect-ratio: auto; border-radius: 22px; }
.gallery-tile--lg { grid-row: span 2; grid-column: span 1; }

/* === Footer ================================================ */
.site-footer {
    margin-top: auto;
    background: linear-gradient(160deg, #0f2c19, var(--green-dark));
    color: #fff;
    padding: 0;
    display: block;
}
.site-footer__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 64px 88px 48px;
    display: grid;
    grid-template-columns: minmax(280px, 1.4fr) repeat(3, minmax(0, 1fr));
    gap: 48px;
}
.site-footer__brand p {
    margin: 18px 0 18px;
    color: rgba(255,255,255,.72);
    line-height: 1.7;
    max-width: 360px;
}
.site-footer__logo {
    width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: .95;
}
.site-footer__col h4 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 13px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}
.site-footer__col a, .site-footer__col span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.72);
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.5;
    font-size: 14px;
}
.site-footer__col a:hover { color: #e3c87a; }
.footer-mini { font-size: 12px !important; color: rgba(255,255,255,.55) !important; font-weight: 600 !important; letter-spacing: .3px; }
.footer-contact {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    margin-right: 14px;
    margin-top: 4px;
    color: rgba(255,255,255,.92) !important;
    font-weight: 700;
}
.footer-contact:hover { color: #e3c87a !important; }
.footer-contact i { font-size: 16px; }
.site-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 22px 88px;
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.site-footer__bottom .copyright {
    color: rgba(255,255,255,.55);
    font-size: 12px;
}

/* ============================================================
   RESPONSIVE — keep launch components clean on small screens
   ============================================================ */
@media (max-width: 1024px) {
    .launch-hero, .pillars-section, .showcase-section, .how-section,
    .ingredients-section, .stats-section, .trust-section, .faq-section,
    .cta-band, .cms-section, .product-hero, .product-intro,
    .specs-section, .benefits-section, .usage-section, .gallery-section { padding-left: 36px; padding-right: 36px; }
    .pillar-grid { grid-template-columns: repeat(2, 1fr); }
    .benefit-grid { grid-template-columns: 1fr; }
    .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
    .stat:nth-child(2) { border-right: 0; }
    .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); padding-bottom: 24px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 260px 260px 260px; }
    .gallery-tile--lg { grid-column: span 2; }
    .site-footer__inner { grid-template-columns: 1fr 1fr; padding: 48px 36px; }
    .site-footer__bottom { padding: 22px 36px; }
}

@media (max-width: 760px) {
    .launch-hero { padding: 64px 20px 80px; }
    .launch-hero__inner, .showcase, .trust, .intro-grid, .usage,
    .product-hero__inner, .how-steps, .cta-band__inner { grid-template-columns: 1fr; gap: 36px; }
    .launch-hero__visual { min-height: 460px; }
    .pillar-grid { grid-template-columns: 1fr; }
    .pillars-section, .showcase-section, .how-section, .ingredients-section,
    .stats-section, .trust-section, .faq-section, .cta-band, .cms-section,
    .product-hero, .product-intro, .specs-section, .benefits-section,
    .usage-section, .gallery-section { padding-left: 18px; padding-right: 18px; }
    .showcase, .ingredient-shell { padding: 32px 20px; }
    .cta-band__inner { padding: 40px 28px; }
    .cta-band__actions { justify-content: flex-start; }
    .stat-strip { grid-template-columns: 1fr; padding: 32px; }
    .stat { border-right: 0 !important; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
    .stat:last-child { border-bottom: 0; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; grid-template-rows: none; }
    .gallery-tile--lg { grid-column: auto; grid-row: auto; }
    .product-hero__bullets { grid-template-columns: 1fr; }
    .spec-row { grid-template-columns: 1fr; gap: 6px; padding: 16px 0; }
    .specs-section .spec-table { padding: 8px 22px; }
    .ingredient-table thead { display: none; }
    .ingredient-table, .ingredient-table tbody, .ingredient-table tr, .ingredient-table td { display: block; width: 100%; }
    .ingredient-table tr {
        margin-bottom: 12px;
        padding: 14px 16px;
        border: 1px solid rgba(15,36,23,.08);
        border-radius: 12px;
    }
    .ingredient-table tbody td { border: 0; padding: 4px 0; }
    .ingredient-table__amount { text-align: left; }
    .safety-card { position: static; }
    .site-footer__inner { grid-template-columns: 1fr; padding: 40px 20px; gap: 28px; }
    .site-footer__bottom { padding: 18px 20px; }
    .launch-seal { width: 100px; height: 100px; right: 0; }
    .launch-seal i { font-size: 22px; }
    .launch-seal span { font-size: 10px; }
}

@media (max-width: 520px) {
    .site-header {
        padding: 0 10px;
    }
    .menu-toggle__text {
        display: none;
    }
    .brand img {
        width: 174px;
    }
    .hero-with-slider {
        padding-top: 74px;
        padding-bottom: 64px;
    }
    .hero-auth-seal {
        width: 94px;
        height: 94px;
        right: 14px;
        bottom: 60px;
    }
    .hero-auth-seal i {
        font-size: 20px;
    }
    .hero-auth-seal span {
        font-size: 11px;
    }
    .hero-split {
        padding-top: 56px;
        padding-bottom: 56px;
    }
    h1 { font-size: 42px; }
    .page-title, .verify-panel h1 { font-size: 36px; }
    .product-box { padding: 24px; }
    .seal {
        width: 98px;
        height: 98px;
        font-size: 11px;
        right: -14px;
        bottom: 22px;
    }
}

/* ============ Slider background layer ============ */
.launch-hero { position: relative; overflow: hidden; }
.launch-hero__bg { position: absolute; inset: 0; z-index: 0; }
.launch-hero__slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1s ease;
}
.launch-hero__slide.is-active { opacity: 1; }
.launch-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(120deg, rgba(23,61,37,.92) 0%, rgba(23,61,37,.78) 45%, rgba(23,61,37,.55) 100%);
    pointer-events: none;
}
.launch-hero--has-bg .launch-hero__inner { position: relative; z-index: 2; }
.launch-hero--has-bg .launch-title,
.launch-hero--has-bg .launch-lead,
.launch-hero--has-bg .launch-kicker { color: #fff; }
.launch-slide-cta { background: linear-gradient(120deg, #c7a65b, #d8b770); color: #173d25; }

/* ============ About page ============ */
.about-hero { position: relative; padding: clamp(72px, 10vw, 130px) 0 clamp(60px, 8vw, 110px); overflow: hidden; }
.about-hero__bg { position: absolute; inset: 0; z-index: 0; }
.about-hero__glow { position: absolute; width: 480px; height: 480px; border-radius: 50%; filter: blur(120px); opacity: .35; }
.about-hero__glow--gold { background: #c7a65b; top: -150px; right: -100px; }
.about-hero__glow--green { background: #2f6b3d; bottom: -200px; left: -120px; }
.about-hero__inner {
    position: relative; z-index: 1;
    max-width: 1180px; margin: 0 auto; padding: 0 24px;
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center;
}
.about-hero h1 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); margin: 18px 0 14px; }
.about-hero__visual img { width: 100%; border-radius: 24px; box-shadow: 0 30px 80px rgba(23,61,37,.18); }
@media (max-width: 880px) { .about-hero__inner { grid-template-columns: 1fr; } }

.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mission-card {
    background: #fff; border-radius: 22px; padding: 36px;
    box-shadow: 0 18px 50px rgba(23,61,37,.08); border: 1px solid rgba(47,107,61,.08);
}
.mission-card__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 52px; height: 52px; border-radius: 14px;
    background: rgba(47,107,61,.1); color: #2f6b3d; font-size: 24px; margin-bottom: 18px;
}
.mission-card--gold .mission-card__icon { background: rgba(199,166,91,.18); color: #c7a65b; }
.mission-card h2 { margin: 0 0 10px; font-size: 1.6rem; }
@media (max-width: 760px) { .mission-grid { grid-template-columns: 1fr; } }

.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card {
    background: #fff; border-radius: 20px; padding: 28px 24px;
    border: 1px solid rgba(47,107,61,.08); box-shadow: 0 14px 40px rgba(23,61,37,.06);
    position: relative;
}
.value-card__num { color: rgba(199,166,91,.8); font-weight: 800; letter-spacing: .12em; font-size: .85rem; }
.value-card i { display: block; font-size: 28px; color: #2f6b3d; margin: 14px 0 12px; }
.value-card h3 { margin: 0 0 8px; font-size: 1.15rem; }
.value-card p { margin: 0; color: rgba(0,0,0,.65); font-size: .95rem; }
@media (max-width: 980px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .value-grid { grid-template-columns: 1fr; } }

.story-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
.story-grid__media img { width: 100%; border-radius: 22px; box-shadow: 0 24px 60px rgba(23,61,37,.14); }
@media (max-width: 880px) { .story-grid { grid-template-columns: 1fr; } }

.why-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px; }
.why-list li { display: flex; gap: 12px; align-items: flex-start; padding: 16px 18px; background: #fff; border-radius: 14px; border: 1px solid rgba(47,107,61,.08); }
.why-list i { color: #c7a65b; font-size: 20px; flex-shrink: 0; }
@media (max-width: 760px) { .why-list { grid-template-columns: 1fr; } }

.promise {
    background: linear-gradient(120deg, #173d25, #2f6b3d);
    color: #fff; border-radius: 26px; padding: clamp(36px, 5vw, 60px);
    text-align: center; max-width: 980px; margin: 0 auto;
}
.promise h2 { margin: 14px 0 16px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.promise p { color: rgba(255,255,255,.85); font-size: 1.05rem; max-width: 720px; margin: 0 auto; }

.company-card {
    background: #fff; border-radius: 22px; padding: clamp(28px, 4vw, 44px);
    box-shadow: 0 18px 50px rgba(23,61,37,.08); border: 1px solid rgba(47,107,61,.08);
    max-width: 880px; margin: 0 auto;
}
.company-card__head { margin-bottom: 22px; }
.company-card__head h2 { margin: 8px 0 6px; }
.company-table { display: grid; gap: 0; margin: 0; }
.company-row { display: grid; grid-template-columns: 220px 1fr; gap: 16px; padding: 16px 0; border-top: 1px solid rgba(47,107,61,.1); }
.company-row dt { color: rgba(0,0,0,.55); font-weight: 600; margin: 0; }
.company-row dd { margin: 0; color: #173d25; font-weight: 500; }
.company-row a { color: #2f6b3d; text-decoration: none; border-bottom: 1px solid rgba(47,107,61,.3); }
@media (max-width: 640px) { .company-row { grid-template-columns: 1fr; gap: 4px; } }

/* ============ Contact page ============ */
.contact-hero {
    position: relative; overflow: hidden;
    padding: clamp(72px, 10vw, 130px) 24px clamp(50px, 7vw, 90px);
    text-align: center;
}
.contact-hero__bg { position: absolute; inset: 0; z-index: 0; }
.contact-hero__glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(199,166,91,.25), transparent 70%); top: -200px; left: 50%; transform: translateX(-50%); }
.contact-hero__inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.contact-hero h1 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); margin: 16px 0 14px; }
.contact-hero .lead { font-size: 1.1rem; color: rgba(0,0,0,.7); margin: 0 0 28px; }

.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 1100px; margin: 0 auto; }
.contact-card {
    background: #fff; border-radius: 22px; padding: 32px;
    box-shadow: 0 18px 50px rgba(23,61,37,.08); border: 1px solid rgba(47,107,61,.08);
    display: flex; flex-direction: column; gap: 12px;
}
.contact-card__icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: rgba(47,107,61,.1); color: #2f6b3d;
    display: inline-flex; align-items: center; justify-content: center; font-size: 24px;
}
.contact-card--primary { background: linear-gradient(130deg, #173d25, #2f6b3d); color: #fff; }
.contact-card--primary .contact-card__icon { background: rgba(199,166,91,.25); color: #c7a65b; }
.contact-card--primary p { color: rgba(255,255,255,.85); }
.contact-card h2 { margin: 0; font-size: 1.3rem; }
.contact-card p { margin: 0; color: rgba(0,0,0,.65); }
.contact-card__cta {
    margin-top: auto; display: inline-flex; align-items: center; gap: 8px;
    color: #c7a65b; font-weight: 700; text-decoration: none;
}
.contact-card--primary .contact-card__cta { color: #c7a65b; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form-shell {
    max-width: 880px; margin: 0 auto; background: #fff;
    border-radius: 24px; padding: clamp(28px, 4vw, 48px);
    box-shadow: 0 22px 60px rgba(23,61,37,.1); border: 1px solid rgba(47,107,61,.08);
}
.contact-form-shell__head { margin-bottom: 24px; }
.contact-form-shell__head h2 { margin: 8px 0 6px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; font-weight: 600; color: #173d25; font-size: .95rem; }
.contact-form input, .contact-form textarea {
    border: 1px solid rgba(47,107,61,.2); border-radius: 12px;
    padding: 14px 16px; font: inherit; color: #173d25;
    background: #fafaf7; transition: border-color .2s, background .2s;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none; border-color: #c7a65b; background: #fff;
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form button { align-self: flex-start; }
@media (max-width: 640px) { .contact-form__row { grid-template-columns: 1fr; } }

/* ============ Product list page ============ */
.product-list-hero {
    position: relative; overflow: hidden;
    padding: clamp(72px, 10vw, 130px) 24px clamp(40px, 6vw, 80px);
    text-align: center;
}
.product-list-hero__bg { position: absolute; inset: 0; z-index: 0; }
.product-list-hero__glow { position: absolute; width: 480px; height: 480px; border-radius: 50%; filter: blur(120px); opacity: .35; }
.product-list-hero__glow--gold { background: #c7a65b; top: -150px; right: -100px; }
.product-list-hero__glow--green { background: #2f6b3d; bottom: -200px; left: -120px; }
.product-list-hero__inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.product-list-hero h1 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); margin: 14px 0 14px; }
.product-list-hero .lead { color: rgba(0,0,0,.65); font-size: 1.05rem; }

.product-card-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    max-width: 1180px; margin: 0 auto;
}
@media (max-width: 980px) { .product-card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .product-card-grid { grid-template-columns: 1fr; } }

.product-card {
    display: flex; flex-direction: column; background: #fff;
    border-radius: 22px; overflow: hidden; text-decoration: none; color: inherit;
    border: 1px solid rgba(47,107,61,.08);
    box-shadow: 0 18px 50px rgba(23,61,37,.08);
    transition: transform .25s ease, box-shadow .25s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 28px 70px rgba(23,61,37,.16); }
.product-card__media {
    position: relative; aspect-ratio: 4/3; overflow: hidden;
    background: linear-gradient(140deg, #f4efe1 0%, #e8efe4 100%);
}
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-card__media img { transform: scale(1.05); }
.product-card__badge {
    position: absolute; top: 14px; left: 14px;
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px; border-radius: 999px;
    background: rgba(23,61,37,.92); color: #c7a65b;
    font-size: .72rem; font-weight: 700; letter-spacing: .08em;
}
.product-card__body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-card__pack {
    color: #c7a65b; font-size: .75rem; letter-spacing: .14em;
    text-transform: uppercase; font-weight: 700;
}
.product-card__body h2 { margin: 0; font-size: 1.3rem; color: #173d25; }
.product-card__body p { margin: 0; color: rgba(0,0,0,.65); font-size: .95rem; flex: 1; }
.product-card__meta { display: flex; gap: 14px; color: rgba(0,0,0,.55); font-size: .85rem; }
.product-card__meta i { color: #2f6b3d; margin-right: 4px; }
.product-card__cta {
    display: inline-flex; align-items: center; gap: 8px;
    color: #2f6b3d; font-weight: 700; margin-top: 6px;
}
.product-card__cta i { transition: transform .25s ease; }
.product-card:hover .product-card__cta i { transform: translateX(4px); }
