:root {
    --bg: #fff8f2;
    --surface: #ffffff;
    --soft: #fff1e6;
    --text: #241b18;
    --muted: #74615b;
    --primary: #d9472c;
    --primary-dark: #a82f1c;
    --accent: #ffb65c;
    --border: #efd8cb;
    --shadow: 0 22px 60px rgba(99, 48, 28, .16);
    --radius: 24px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

img, svg {
    max-width: 100%;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 248, 242, .84);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(239, 216, 203, .72);
    transition: box-shadow .2s ease, background .2s ease;
}

.topbar.scrolled {
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 8px 30px rgba(61, 34, 21, .08);
}

.topbar-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-weight: 850;
    letter-spacing: -.02em;
    font-size: 1.06rem;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 12px 26px rgba(217, 71, 44, .24);
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-weight: 700;
    font-size: .95rem;
}

.nav a {
    padding: 10px 14px;
    border-radius: 999px;
}

.nav a:hover, .nav-cta {
    color: var(--primary-dark);
    background: #fff0e6;
}

.section,
.section-lg {
    padding: 88px 0;
}

.section-lg {
    padding-top: 108px;
    padding-bottom: 104px;
}

.hero {
    overflow: hidden;
    position: relative;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(6px);
    opacity: .75;
    pointer-events: none;
}

.hero::before {
    width: 340px;
    height: 340px;
    right: -90px;
    top: 80px;
    background: rgba(255, 182, 92, .35);
}

.hero::after {
    width: 260px;
    height: 260px;
    left: -100px;
    bottom: 24px;
    background: rgba(217, 71, 44, .16);
}

.hero-grid,
.order-grid,
.split,
.ingredients-grid,
.story-box,
.footer-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 56px;
}

.hero-copy {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    background: #fff1e6;
    border: 1px solid #f3d2bf;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 800;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

h1, h2, h3 {
    margin: 0 0 16px;
    line-height: 1.08;
    letter-spacing: -.045em;
}

h1 {
    font-size: clamp(2.8rem, 7vw, 5.8rem);
    max-width: 880px;
    margin-top: 22px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
    font-size: 1.35rem;
}

p {
    margin: 0 0 18px;
    color: var(--muted);
}

.lead {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    max-width: 720px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 34px 0 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    min-height: 54px;
    padding: 0 26px;
    font-weight: 850;
    font-size: 1rem;
    cursor: pointer;
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

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

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 16px 30px rgba(217, 71, 44, .26);
}

.btn-primary:hover {
    box-shadow: 0 20px 38px rgba(217, 71, 44, .34);
}

.btn-light {
    color: var(--primary-dark);
    background: #fff;
    border: 1px solid var(--border);
}

.btn-full {
    width: 100%;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.trust-row div,
.mini-guarantee,
.summary-box {
    background: rgba(255, 255, 255, .78);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px;
}

.trust-row strong,
.trust-row span,
.mini-guarantee strong,
.mini-guarantee span {
    display: block;
}

.trust-row strong,
.mini-guarantee strong {
    color: var(--text);
}

.trust-row span,
.mini-guarantee span {
    color: var(--muted);
    font-size: .92rem;
}

.product-showcase {
    position: relative;
    z-index: 1;
}

.product-card-visual {
    position: relative;
    min-height: 560px;
    border-radius: 42px;
    background: radial-gradient(circle at 35% 18%, #fff7e9 0, #ffd399 32%, #f36f4f 68%, #b73724 100%);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.glow {
    position: absolute;
    inset: 48px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .18);
    filter: blur(12px);
}

.pack,
.sachet,
.price-bubble {
    position: absolute;
    box-shadow: 0 30px 70px rgba(74, 28, 18, .24);
}

.pack-main {
    left: 50%;
    top: 50%;
    width: 270px;
    height: 355px;
    transform: translate(-50%, -50%) rotate(-3deg);
    border-radius: 34px;
    padding: 44px 30px;
    color: #fff;
    background: linear-gradient(160deg, #3b1711, #c64129 52%, #ffbf72);
    border: 1px solid rgba(255, 255, 255, .28);
}

.pack-main::after {
    content: "";
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 34px;
    height: 70px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .16);
}

.pack-top {
    display: block;
    font-size: 1.2rem;
    opacity: .82;
}

.pack-main strong {
    display: block;
    font-size: 4.2rem;
    line-height: .98;
    letter-spacing: -.06em;
}

.pack-main small {
    display: block;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: .16em;
    opacity: .75;
}

.sachet {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    height: 62px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .88);
    color: var(--primary-dark);
    font-weight: 900;
    border: 1px solid rgba(255, 255, 255, .65);
}

.sachet-one {
    left: 42px;
    bottom: 86px;
    transform: rotate(10deg);
}

.sachet-two {
    right: 34px;
    top: 86px;
    transform: rotate(-9deg);
}

.price-bubble {
    right: 36px;
    bottom: 36px;
    width: 148px;
    height: 148px;
    border-radius: 999px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #2e1712;
}

.price-bubble span {
    opacity: .7;
}

.price-bubble strong {
    font-size: 1.35rem;
}

.strip {
    background: #2b1712;
    color: #fff;
}

.strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding: 18px 0;
    font-weight: 800;
    text-align: center;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading.left {
    text-align: left;
    margin: 0;
}

.cards {
    display: grid;
    gap: 22px;
}

.cards.three {
    grid-template-columns: repeat(3, 1fr);
}

.card,
.order-card,
.thank-card,
.faq-list details {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 16px 42px rgba(79, 41, 25, .08);
}

.card {
    padding: 28px;
}

.card.highlighted {
    background: linear-gradient(180deg, #fff, #fff1e7);
    border-color: #efb28f;
    transform: translateY(-10px);
}

.icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    font-weight: 900;
}

.soft {
    background: var(--soft);
}

.steps {
    display: grid;
    gap: 18px;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding: 24px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--border);
}

.step span {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2b1712;
    color: #fff;
    font-weight: 900;
}

.text-link {
    color: var(--primary-dark);
    font-weight: 900;
}

.ingredients-grid {
    align-items: start;
}

.ingredient-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.ingredient {
    padding: 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--border);
}

.ingredient strong,
.ingredient span {
    display: block;
}

.ingredient span {
    color: var(--muted);
    font-size: .94rem;
    margin-top: 5px;
}

.story {
    padding-top: 0;
}

.story-box {
    padding: 42px;
    border-radius: 34px;
    background: #2b1712;
    color: #fff;
    box-shadow: var(--shadow);
}

.story-box p,
.story-box .eyebrow {
    color: rgba(255, 255, 255, .78);
}

.story-box .eyebrow {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .16);
}

.testimonials .stars {
    color: #d98a11;
    letter-spacing: .08em;
    margin-bottom: 14px;
}

.faq-list {
    display: grid;
    gap: 14px;
    max-width: 880px;
    margin: 0 auto;
}

.faq-list details {
    padding: 22px 24px;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 900;
    font-size: 1.08rem;
}

.faq-list p {
    margin-top: 12px;
    margin-bottom: 0;
}

.order-section {
    background: linear-gradient(180deg, var(--bg), #fff);
}

.order-grid {
    align-items: start;
}

.order-card {
    padding: 28px;
}

.product-line,
.pack-option,
.summary-box div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.product-line {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 18px;
}

.product-line span,
.old-price {
    display: block;
    color: var(--muted);
    font-size: .94rem;
}

.old-price {
    text-decoration: line-through;
}

.product-price {
    text-align: right;
}

.pack-options {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.pack-option {
    cursor: pointer;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 14px;
    background: #fffaf6;
    transition: border .16s ease, background .16s ease, transform .16s ease;
}

.pack-option:hover,
.pack-option.active {
    border-color: var(--primary);
    background: #fff1e7;
    transform: translateY(-1px);
}

.pack-option input {
    accent-color: var(--primary);
}

.pack-option span {
    flex: 1;
}

.pack-option small,
.pack-option em {
    display: block;
    color: var(--muted);
}

.pack-option em {
    color: var(--primary-dark);
    font-style: normal;
    font-weight: 900;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.form-grid.two {
    margin-top: 14px;
}

label {
    display: grid;
    gap: 7px;
    color: var(--text);
    font-weight: 800;
    font-size: .94rem;
    margin-bottom: 14px;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    min-height: 48px;
    padding: 12px 14px;
    font: inherit;
    background: #fff;
    color: var(--text);
    outline: none;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(217, 71, 44, .1);
}

.check-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: start;
    font-weight: 600;
    color: var(--muted);
}

.check-row input {
    width: auto;
    min-height: auto;
    margin-top: 5px;
}

.legal-note {
    margin-top: 14px;
    margin-bottom: 0;
    font-size: .84rem;
}

code {
    background: #fff1e7;
    padding: 2px 6px;
    border-radius: 7px;
}

.footer {
    background: #21110e;
    color: #fff;
    padding: 54px 0;
}

.footer-grid {
    grid-template-columns: 1.2fr .55fr .7fr;
    align-items: start;
}

.footer p,
.footer span,
.footer a {
    color: rgba(255, 255, 255, .7);
}

.footer a,
.footer span {
    display: block;
    margin-top: 8px;
}

.footer strong {
    display: block;
    margin-bottom: 12px;
}

.footer-brand {
    color: #fff;
    margin-bottom: 14px;
}

.thank-page {
    background: radial-gradient(circle at 50% 0, #ffd6aa, #fff8f2 42%, #fff);
}

.thank-card {
    max-width: 720px;
    text-align: center;
    padding: 46px;
}

.success-mark {
    width: 76px;
    height: 76px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    font-size: 2.2rem;
    font-weight: 900;
}

.summary-box {
    display: grid;
    gap: 12px;
    margin: 24px 0;
    text-align: left;
}

.summary-box span {
    color: var(--muted);
}

@media (max-width: 980px) {
    .hero-grid,
    .order-grid,
    .split,
    .ingredients-grid,
    .story-box,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .product-card-visual {
        min-height: 480px;
    }

    .trust-row,
    .cards.three,
    .strip-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .nav {
        display: none;
    }

    .section,
    .section-lg {
        padding: 62px 0;
    }

    .topbar-inner {
        min-height: 66px;
    }

    .trust-row,
    .cards.three,
    .strip-grid,
    .ingredient-list,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .card.highlighted {
        transform: none;
    }

    .product-card-visual {
        min-height: 430px;
        border-radius: 30px;
    }

    .pack-main {
        width: 230px;
        height: 310px;
    }

    .pack-main strong {
        font-size: 3.55rem;
    }

    .sachet-one {
        left: 18px;
        bottom: 62px;
    }

    .sachet-two {
        right: 16px;
        top: 54px;
    }

    .price-bubble {
        width: 126px;
        height: 126px;
        right: 18px;
        bottom: 20px;
    }

    .story-box,
    .thank-card,
    .order-card {
        padding: 26px;
    }
}

.alert {
    padding: 14px 16px;
    border-radius: 16px;
    margin-bottom: 18px;
    background: #fff1e7;
    border: 1px solid #e99a7a;
    color: var(--primary-dark);
    font-weight: 800;
}

.field-error {
    color: var(--primary-dark);
    font-weight: 800;
    font-size: .82rem;
}

.field-error.full {
    grid-column: 1 / -1;
}
