:root {
    --bg: #f7fbf7;
    --bg-soft: #eef7ef;
    --surface: rgba(255, 255, 255, 0.84);
    --surface-strong: #ffffff;
    --line: rgba(34, 91, 55, 0.12);
    --text: #173223;
    --muted: #5d7364;
    --accent: #2f8f58;
    --accent-dark: #236d42;
    --accent-soft: #dff2e3;
    --shadow: 0 28px 60px rgba(35, 76, 50, 0.12);
    --radius-lg: 30px;
    --radius-md: 22px;
    --radius-sm: 16px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(115, 201, 142, 0.22), transparent 28%),
        radial-gradient(circle at right 10% top 12%, rgba(223, 242, 227, 0.9), transparent 24%),
        linear-gradient(180deg, #fcfffc 0%, #f5faf5 48%, #eef7ef 100%);
    min-height: 100vh;
}

img {
    display: block;
    max-width: 100%;
}

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

button,
input {
    font: inherit;
}

.page-aura {
    position: fixed;
    inset: auto;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123, 211, 153, 0.28) 0%, rgba(123, 211, 153, 0) 70%);
    filter: blur(18px);
    pointer-events: none;
    z-index: 0;
}

.page-aura-top {
    top: -120px;
    right: -120px;
}

.page-aura-bottom {
    bottom: -120px;
    left: -120px;
}

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

.section {
    padding: 88px 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.52) 0%, rgba(240, 249, 241, 0.82) 100%);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(18px);
    background: rgba(248, 252, 248, 0.78);
    border-bottom: 1px solid rgba(34, 91, 55, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 84px;
    position: relative;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #2f8f58 0%, #8dd8a4 100%);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.06em;
    box-shadow: 0 14px 24px rgba(47, 143, 88, 0.22);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1;
}

.brand-copy strong {
    font-size: 1rem;
}

.brand-copy span {
    font-size: 0.85rem;
    color: var(--muted);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.site-nav a {
    color: var(--muted);
    font-size: 0.97rem;
    transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--text);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface-strong);
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--text);
    border-radius: 999px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #4bbf77 100%);
    color: #fff;
    box-shadow: 0 18px 30px rgba(47, 143, 88, 0.24);
}

.button-secondary,
.button-ghost {
    background: rgba(255, 255, 255, 0.65);
    border-color: var(--line);
    color: var(--text);
}

.button-full {
    width: 100%;
}

.hero {
    padding-top: 58px;
}

.hero-grid,
.order-panel,
.about-grid,
.contacts-grid,
.footer-inner {
    display: grid;
    gap: 28px;
}

.hero-grid,
.order-panel {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    align-items: center;
}

.hero-copy h1,
.section-heading h2,
.order-copy h2,
.thanks-card h1,
.legal-card h1,
.scarcity-panel h2 {
    margin: 0;
    font-family: 'Prata', serif;
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.06;
}

.hero-copy h1 {
    font-size: clamp(2.8rem, 6vw, 5.35rem);
    max-width: 12ch;
}

.hero-subtitle,
.section-heading p,
.content-card p,
.feature-card p,
.step-card p,
.order-copy p,
.footer-note,
.legal-card p,
.thanks-card p {
    color: var(--muted);
    line-height: 1.75;
}

.hero-subtitle {
    max-width: 620px;
    margin: 24px 0 0;
    font-size: 1.08rem;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 800;
    font-size: 0.75rem;
}

.offer-row,
.hero-actions,
.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.offer-row {
    margin: 30px 0 22px;
}

.offer-badge {
    min-width: 164px;
    padding: 16px 18px;
    border-radius: 24px;
    background: linear-gradient(135deg, #edf9ef 0%, #dff2e3 100%);
    border: 1px solid rgba(47, 143, 88, 0.15);
    box-shadow: var(--shadow);
}

.offer-badge span {
    display: block;
    color: var(--muted);
    font-size: 0.85rem;
}

.offer-badge strong {
    display: block;
    margin-top: 4px;
    font-size: 2rem;
    color: var(--accent-dark);
}

.offer-note {
    margin: 0;
    color: var(--accent-dark);
    font-weight: 700;
}

.hero-highlights,
.order-points {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-highlights li,
.order-points li {
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid var(--line);
    color: var(--text);
    font-weight: 600;
}

.hero-disclaimer {
    max-width: 680px;
    margin: 24px 0 0;
    font-size: 0.95rem;
    color: var(--muted);
}

.hero-visual {
    position: relative;
}

.product-stage,
.content-card,
.feature-card,
.step-card,
.order-form-card,
.contact-card,
.scarcity-panel,
.thanks-card,
.legal-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.product-stage {
    position: relative;
    padding: 34px;
    border-radius: 40px;
    overflow: hidden;
}

.product-stage::before {
    content: '';
    position: absolute;
    inset: auto auto 18px 18px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(141, 216, 164, 0.45) 0%, rgba(141, 216, 164, 0) 70%);
    pointer-events: none;
}

.stage-chip {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--line);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-dark);
}

.product-stage img {
    width: min(100%, 410px);
    margin: 18px auto 0;
}

.stage-card {
    margin-top: 22px;
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
}

.stage-card strong {
    display: block;
    font-size: 1.08rem;
}

.stage-card span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.92rem;
}

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

.stage-price strong {
    font-size: 1.5rem;
    color: var(--accent-dark);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading h2,
.order-copy h2 {
    font-size: clamp(2rem, 4vw, 3.35rem);
}

.about-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.content-card,
.feature-card,
.step-card,
.order-form-card,
.contact-card {
    border-radius: var(--radius-lg);
}

.content-card,
.feature-card,
.step-card,
.contact-card {
    padding: 28px;
}

.content-card-large {
    padding: 34px;
}

.content-card h3,
.feature-card h3,
.step-card h3,
.contact-card h3 {
    margin: 0 0 12px;
    font-size: 1.15rem;
}

.content-card p,
.feature-card p,
.step-card p,
.contact-card p {
    margin: 0;
}

.info-stack {
    display: grid;
    gap: 18px;
}

.card-grid,
.steps-grid,
.contacts-grid {
    display: grid;
    gap: 18px;
}

.card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid-five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card-grid-three,
.contacts-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.accent-section {
    padding-top: 0;
}

.scarcity-panel {
    border-radius: 36px;
    padding: 30px 32px;
    display: grid;
    gap: 20px;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
    background: linear-gradient(135deg, rgba(223, 242, 227, 0.95) 0%, rgba(255, 255, 255, 0.88) 100%);
}

.scarcity-panel h2 {
    font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.scarcity-panel p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.step-card span {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-weight: 800;
}

.steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.order-panel {
    padding: 34px;
    border-radius: 40px;
    background: linear-gradient(135deg, rgba(241, 250, 243, 0.88) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
}

.order-form-card {
    padding: 26px;
}

.order-form {
    display: grid;
    gap: 16px;
    position: relative;
}

.order-form label {
    display: grid;
    gap: 10px;
}

.order-form label > span {
    font-size: 0.95rem;
    font-weight: 700;
}

.order-form input[type='text'],
.order-form input[type='tel'] {
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
    border-radius: 18px;
    border: 1px solid rgba(34, 91, 55, 0.12);
    background: rgba(255, 255, 255, 0.94);
    color: var(--text);
}

.order-form input:focus {
    outline: 2px solid rgba(47, 143, 88, 0.16);
    border-color: rgba(47, 143, 88, 0.28);
}

.checkbox {
    grid-template-columns: 22px 1fr;
    align-items: start;
    gap: 12px;
}

.checkbox input {
    margin-top: 5px;
}

.checkbox a,
.contact-card a,
.thanks-card a,
.legal-card a {
    color: var(--accent-dark);
}

.trap-field {
    position: absolute;
    left: -9999px;
}

.form-alert {
    margin: 0;
    padding: 14px 16px;
    border-radius: 16px;
    background: #fff1f1;
    color: #8a2f2f;
    border: 1px solid rgba(138, 47, 47, 0.14);
}

.form-note {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
}

.contact-card a,
.contact-card p {
    font-size: 1rem;
}

.site-footer {
    padding: 18px 0 42px;
}

.footer-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
}

.brand-footer {
    margin-bottom: 12px;
}

.footer-note {
    max-width: 540px;
    margin: 0;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 22px;
    justify-content: flex-end;
    color: var(--muted);
}

.thanks-body,
.legal-body {
    display: grid;
    place-items: center;
    min-height: 100vh;
}

.thanks-page,
.legal-page {
    width: 100%;
    padding: 40px 0 72px;
}

.thanks-card,
.legal-card {
    width: min(100%, 760px);
    margin: 0 auto;
    padding: 40px;
    border-radius: 34px;
}

.thanks-card h1,
.legal-card h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
}

.thanks-card p,
.legal-card p {
    margin: 18px 0 0;
}

.legal-card {
    display: grid;
    gap: 18px;
}

.legal-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    padding-bottom: 6px;
}

.legal-nav a {
    color: var(--accent-dark);
    font-weight: 700;
}

.legal-card section {
    display: grid;
    gap: 12px;
    padding-top: 4px;
}

.legal-card section h2 {
    margin: 0;
    font-size: 1.45rem;
}

.legal-card ul {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
    line-height: 1.75;
}

.legal-card li + li {
    margin-top: 8px;
}

.legal-inline-note {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 245, 204, 0.62);
    border: 1px solid rgba(196, 154, 27, 0.18);
    color: #715a0a;
}

.button-small {
    min-height: 46px;
    padding: 0 18px;
    font-size: 0.92rem;
}

.cookie-banner {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 40;
    width: min(560px, calc(100% - 32px));
    display: grid;
    gap: 16px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(34, 91, 55, 0.12);
    box-shadow: 0 26px 52px rgba(23, 50, 35, 0.18);
    backdrop-filter: blur(18px);
}

.cookie-banner__text {
    display: grid;
    gap: 6px;
}

.cookie-banner__text strong {
    font-size: 1rem;
}

.cookie-banner__text p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 1120px) {
    .card-grid-five {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 12px);
        right: 16px;
        width: min(320px, calc(100vw - 32px));
        padding: 20px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: var(--shadow);
        border: 1px solid rgba(34, 91, 55, 0.1);
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .site-nav.is-open {
        display: flex;
    }

    .header-button {
        display: none;
    }

    .hero-grid,
    .order-panel,
    .about-grid,
    .scarcity-panel,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .card-grid,
    .card-grid-three,
    .contacts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cookie-banner__actions {
        flex-direction: column;
    }

    .cookie-banner__actions .button,
    .cookie-banner__actions a {
        width: 100%;
    }
}

@media (max-width: 720px) {
    .section {
        padding: 72px 0;
    }

    .header-inner {
        min-height: 76px;
    }

    .hero {
        padding-top: 32px;
    }

    .product-stage,
    .order-panel,
    .thanks-card,
    .legal-card {
        padding: 26px;
        border-radius: 28px;
    }

    .content-card,
    .feature-card,
    .step-card,
    .order-form-card,
    .contact-card {
        padding: 22px;
        border-radius: 24px;
    }

    .card-grid,
    .card-grid-three,
    .card-grid-five,
    .steps-grid,
    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .stage-card,
    .footer-inner,
    .button-row {
        gap: 14px;
    }

    .stage-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .stage-price {
        text-align: left;
    }

    .footer-nav {
        justify-content: flex-start;
    }

    .legal-card section h2 {
        font-size: 1.24rem;
    }

    .legal-nav {
        gap: 8px 12px;
    }

    .cookie-banner {
        right: 12px;
        bottom: 12px;
        width: calc(100% - 24px);
        padding: 16px;
        border-radius: 20px;
    }
}
