:root {
    --bg: #f4efe7;
    --paper: #fffdf9;
    --ink: #1f2933;
    --muted: #5f6c78;
    --primary: #184e3f;
    --primary-2: #0d3b30;
    --accent: #ef7d32;
    --accent-2: #f3b34c;
    --line: rgba(24, 78, 63, 0.12);
    --shadow: 0 20px 60px rgba(19, 42, 34, 0.12);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(243, 179, 76, 0.18), transparent 28%),
        linear-gradient(180deg, #fcfaf5 0%, #f5efe5 100%);
}

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

button,
input {
    font: inherit;
}

.site-shell {
    overflow: hidden;
}

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

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(14px);
    background: rgba(13, 59, 48, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.brand img,
.footer-logo {
    display: block;
    width: 180px;
    max-width: 100%;
}

.nav-desktop {
    display: flex;
    gap: 28px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
}

.nav-desktop a:hover,
.btn-link:hover {
    color: var(--accent-2);
}

.btn-cta-header,
.btn-main,
.btn-submit {
    border: 0;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn-cta-header,
.btn-submit {
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    color: #fff;
}

.btn-cta-header {
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 700;
}

.btn-main,
.btn-submit {
    box-shadow: 0 18px 32px rgba(239, 125, 50, 0.28);
}

.btn-main:hover,
.btn-submit:hover,
.btn-cta-header:hover {
    transform: translateY(-2px);
}

.hero {
    position: relative;
    padding: 52px 0 88px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(239, 125, 50, 0.24), transparent 22%),
        radial-gradient(circle at 78% 20%, rgba(24, 78, 63, 0.18), transparent 24%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(620px, 1.18fr);
    gap: 28px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-topline {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-bottom: 30px;
}

.hero-heading-block {
    width: 100%;
    max-width: none;
}

.hero-copy h1,
.section-heading h2,
.order-copy h2,
.form-head h3,
.benefit-card h3,
.step-card h3,
.testimonial-card h3 {
    font-family: 'Montserrat', sans-serif;
}

.eyebrow,
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    font-weight: 700;
}

.eyebrow {
    background: rgba(24, 78, 63, 0.08);
    color: var(--primary);
    margin-bottom: 5px;
}

.hero-copy h1 {
    margin: 20px 0 0;
    font-size: clamp(4.5rem, 9.2vw, 7.8rem);
    line-height: 0.92;
    max-width: none;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.hero-heading-block h1 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.hero-title-main,
.hero-title-sub,
.hero-title-note {
    display: block;
}

.hero-title-main {
    color: var(--ink) !important;
    text-shadow: none !important;
    font-size: 1.2em;
    line-height: 0.98;
    max-width: none;
    width: 100%;
}

.hero-title-enerflex {
    color: #ef7d32;
    text-shadow: 0 10px 24px rgba(239, 125, 50, 0.18);
    font-weight: 800;
}

.hero-title-cbd {
    color: #1f8a57;
    text-shadow: 0 10px 24px rgba(31, 138, 87, 0.18);
    font-weight: 800;
}

.hero-title-sub {
    color: var(--ink) !important;
    text-shadow: none !important;
    font-size: 0.54em;
    line-height: 1.04;
    max-width: none;
    width: 100%;
}

.hero-title-note {
    width: fit-content;
    margin-top: 14px;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(239, 125, 50, 0.16), rgba(243, 179, 76, 0.3));
    color: #b65418 !important;
    text-shadow: none !important;
    font-size: 0.24em;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 800;
}

@media (max-width: 768px) {
    .hero-heading-block {
        max-width: 100%;
    }

    .hero-title-main,
    .hero-title-sub {
        max-width: none;
    }

    .hero-title-main {
        font-size: 0.86em;
    }

    .hero-title-sub {
        font-size: 0.62em;
    }
}

.hero-text,
.section-heading p,
.ingredients-copy,
.order-copy p,
.testimonial-card p,
.benefit-card p,
.step-card p {
    color: var(--muted);
    line-height: 1.7;
}

.hero-copy {
    position: relative;
}

.hero-copy::after {
    content: "";
    position: absolute;
    right: 8%;
    top: 20px;
    width: 120px;
    height: 120px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(239, 125, 50, 0.16), rgba(243, 179, 76, 0.04));
    transform: rotate(12deg);
    z-index: -1;
}

.hero-features,
.bullet-list,
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-features {
    display: grid;
    gap: 12px;
    margin: 28px 0;
}

.hero-features li,
.bullet-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.hero-features i,
.bullet-list i {
    color: var(--primary);
    margin-top: 3px;
}

.hero-price {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 28px;
    width: 100%;
}

.price-old,
.price-current,
.price-box {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    padding: 14px 18px;
}

.price-old {
    position: relative;
    overflow: hidden;
}

.price-old::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(31, 41, 51, 0.02), rgba(31, 41, 51, 0.08));
}

.price-old span,
.price-current span,
.price-box .old {
    display: block;
    color: var(--muted);
    font-size: 14px;
}

.price-old strong {
    font-size: 22px;
    text-decoration: line-through;
    opacity: 0.7;
    position: relative;
    z-index: 1;
    margin-top: 4px;
}

.price-current strong,
.price-box strong {
    display: block;
    margin-top: 8px;
    font-size: 40px;
    line-height: 1;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
}

.price-current {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff7eb 0%, #ffffff 52%, #eef7f2 100%);
    border: 1px solid rgba(239, 125, 50, 0.22);
    box-shadow: 0 22px 44px rgba(24, 78, 63, 0.12);
}

.price-current::before,
.price-box::before {
    content: "";
    position: absolute;
    top: -28px;
    right: -28px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 125, 50, 0.22), rgba(239, 125, 50, 0));
}

.price-current span,
.price-current strong,
.price-current small,
.price-box span,
.price-box strong,
.price-box small {
    position: relative;
    z-index: 1;
}

.price-current strong {
    color: #d7651c;
    font-size: clamp(2rem, 2.4vw, 2.8rem);
    text-shadow: 0 10px 24px rgba(239, 125, 50, 0.14);
    margin-top: 2px;
}

.price-current small,
.price-box small {
    display: block;
    margin-top: 6px;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-main {
    padding: 18px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), #276c58);
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    gap: 12px;
    align-items: center;
}

.btn-link {
    font-weight: 700;
    color: var(--primary);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 26px;
    margin-top: 28px;
    color: var(--primary);
    font-weight: 600;
}

.form-card {
    background: var(--paper);
    border-radius: 28px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid rgba(24, 78, 63, 0.08);
}

.hero-form-wrap .form-card {
    box-shadow: 0 28px 70px rgba(19, 42, 34, 0.18);
    border-color: rgba(239, 125, 50, 0.16);
    width: min(100%, 860px);
    margin-left: auto;
}

.hero-form-card {
    overflow: hidden;
}

.hero-form-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
    align-items: stretch;
}

.hero-product-panel {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 36px;
}

.hero-product-panel img {
    max-width: min(100%, 280px);
}

.hero-product-slider {
    position: relative;
    width: 100%;
    min-height: 300px;
}

.hero-product-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(16px) scale(0.98);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-product-slide.is-active {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.hero-product-slide img {
    max-width: min(100%, 280px);
    max-height: 300px;
    object-fit: contain;
    display: block;
}

.hero-product-copy {
    width: 100%;
    margin-top: 24px;
    text-align: left;
}

.hero-product-copy h3 {
    margin: 0 0 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    color: var(--primary-2);
}

.hero-product-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.hero-form-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-form-content .order-form {
    padding-top: 30px;
}

.hero-form-content .form-grid {
    grid-template-columns: 1fr;
}

.form-card-large {
    max-width: 620px;
    margin-left: auto;
}

.form-product {
    position: relative;
    padding: 32px;
    text-align: center;
    background:
        radial-gradient(circle at center, rgba(243, 179, 76, 0.3), transparent 42%),
        linear-gradient(180deg, #fff8ed 0%, #f8f1e8 100%);
}

.form-product.compact {
    padding: 22px;
}

.form-product img,
.product-stage img {
    display: block;
    max-width: min(100%, 280px);
    margin: 0 auto;
}

.product-chip {
    position: absolute;
    right: 16px;
    bottom: 16px;
    background: var(--primary);
    color: #fff;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
}

.form-head {
    padding: 28px 28px 0;
}

.form-head h3 {
    margin: 0 0 8px;
    font-size: 28px;
    color: var(--primary-2);
}

.form-head p {
    margin: 0;
    color: var(--muted);
}

.order-form {
    padding: 24px 28px 30px;
}

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

.field-wrap {
    min-width: 0;
}

.form-span {
    grid-column: 1 / -1;
}

.product-choice {
    margin: 6px 0 18px;
    padding: 0;
    border: 0;
    grid-column: 1 / -1;
}

.product-choice legend {
    margin-bottom: 10px;
    color: var(--primary-2);
    font-weight: 700;
    font-size: 15px;
}

.product-choice-option {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 84px;
    padding: 10px 52px 10px 88px;
    border: 1px solid rgba(24, 78, 63, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.product-choice-option + .product-choice-option {
    margin-top: 10px;
}

.product-choice-thumb {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
}

.product-choice-option input {
    width: 18px !important;
    min-width: 18px;
    max-width: 18px;
    height: 18px !important;
    margin: 0 !important;
    accent-color: var(--primary);
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    border: 0;
    box-shadow: none;
    z-index: 2;
}

.product-choice-option span {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        "name"
        "sub"
        "price";
    align-items: start;
    row-gap: 4px;
    width: 100%;
    min-width: 0;
}

.product-choice-option strong {
    grid-area: name;
    color: var(--primary-2);
    font-size: 15px;
    line-height: 1.1;
}

.product-choice-option small {
    grid-area: sub;
    color: var(--muted);
    font-size: 12px;
}

.product-choice-option em {
    grid-area: price;
    font-style: normal;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 14px;
    line-height: 1;
    color: #d7651c;
    white-space: nowrap;
    margin: 0;
    margin-top: 2px;
}

.btn-submit.form-span {
    margin-top: 12px;
}

.product-choice-option:hover {
    transform: translateY(-1px);
    border-color: rgba(239, 125, 50, 0.35);
    box-shadow: 0 12px 24px rgba(24, 78, 63, 0.08);
}

.product-choice-option:has(input:checked) {
    border-color: rgba(239, 125, 50, 0.45);
    background: linear-gradient(135deg, rgba(255, 246, 233, 0.96), rgba(240, 249, 244, 0.96));
    box-shadow: 0 14px 28px rgba(24, 78, 63, 0.1);
}

.order-form label {
    display: block;
    margin: 14px 0 8px;
    color: var(--primary-2);
    font-weight: 700;
}

.order-form input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    color: var(--ink);
    padding: 15px 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.order-form input::placeholder {
    color: #7b8794;
    opacity: 1;
}

.thank-you-page {
    padding: 72px 0 96px;
}

.thank-you-card {
    max-width: 760px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
    border-radius: 32px;
    padding: 40px;
    text-align: center;
}

.thank-you-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(24, 78, 63, 0.08);
    color: var(--primary);
    font-weight: 700;
}

.thank-you-badge i {
    color: #2f9e63;
}

.thank-you-card h1 {
    margin: 18px 0 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    color: var(--primary-2);
}

.thank-you-card > p {
    max-width: 620px;
    margin: 0 auto;
    color: var(--muted);
    line-height: 1.7;
}

.thank-you-order-box {
    margin: 28px auto 0;
    max-width: 320px;
    padding: 22px 24px;
    border-radius: 24px;
    background: linear-gradient(135deg, #fff7eb 0%, #ffffff 52%, #eef7f2 100%);
    border: 1px solid rgba(239, 125, 50, 0.22);
    box-shadow: 0 22px 44px rgba(24, 78, 63, 0.12);
}

.thank-you-order-box span {
    display: block;
    color: var(--muted);
    font-size: 14px;
}

.thank-you-order-box strong {
    display: block;
    margin-top: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: #d7651c;
}

.thank-you-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.nav-link-product {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px !important;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nav-link-product-orange {
    color: #ffb16f !important;
    background: rgba(255, 177, 111, 0.12);
    border-color: rgba(255, 177, 111, 0.28);
}

.nav-link-product-orange:hover,
.nav-link-product-orange:focus {
    color: #ffd1a8 !important;
    background: rgba(255, 177, 111, 0.2);
    box-shadow: 0 14px 28px rgba(255, 177, 111, 0.18);
    transform: translateY(-1px);
}

.nav-link-product-green {
    color: #8ee0a3 !important;
    background: rgba(142, 224, 163, 0.12);
    border-color: rgba(142, 224, 163, 0.24);
}

.nav-link-product-green:hover,
.nav-link-product-green:focus {
    color: #b7f1c4 !important;
    background: rgba(142, 224, 163, 0.2);
    box-shadow: 0 14px 28px rgba(142, 224, 163, 0.18);
    transform: translateY(-1px);
}

.order-form input:focus {
    border-color: rgba(24, 78, 63, 0.5);
    box-shadow: 0 0 0 4px rgba(24, 78, 63, 0.08);
}

.microcopy {
    margin: 12px 0 18px;
    font-size: 13px;
    color: var(--muted);
}

.btn-submit {
    width: 100%;
    border-radius: 16px;
    padding: 16px 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.stats {
    padding-bottom: 72px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.stats-grid article,
.benefit-card,
.testimonial-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow);
    border-radius: 24px;
    padding: 24px;
}

.stats-grid strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    color: var(--primary);
}

.stats-grid span {
    color: var(--muted);
}

.section-block,
.section-band {
    padding: 78px 0;
}

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

.section-tag {
    background: rgba(24, 78, 63, 0.09);
    color: var(--primary);
}

.section-heading.light .section-tag {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.section-heading h2,
.order-copy h2 {
    margin: 14px 0 12px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    color: var(--primary-2);
}

.section-heading.light h2,
.section-heading.light p,
.order-copy h2,
.order-copy p,
.order-band .section-tag {
    color: #fff;
}

.benefits-grid,
.steps-grid,
.testimonials-grid,
.ingredients-grid,
.order-grid,
.dual-products-grid {
    display: grid;
    gap: 24px;
}

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

.dual-products {
    padding-top: 12px;
}

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

.product-option-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow);
}

.product-option-media {
    background:
        radial-gradient(circle at center, rgba(243, 179, 76, 0.22), transparent 42%),
        linear-gradient(180deg, #fff8ed 0%, #f8f1e8 100%);
    border-radius: 24px;
    padding: 22px;
}

.product-option-media img {
    display: block;
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
}

.product-option-body h3 {
    margin: 0 0 8px;
    font-size: 28px;
    color: var(--primary-2);
}

.product-option-body p {
    margin: 0 0 16px;
    color: var(--muted);
}

.product-option-meta {
    margin-bottom: 18px;
}

.product-option-meta strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    color: #d7651c;
    text-shadow: 0 8px 20px rgba(239, 125, 50, 0.14);
}

.product-option-meta span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
}

.btn-option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 14px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), #276c58);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 18px 32px rgba(24, 78, 63, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-option:hover,
.btn-option:focus {
    color: #fff;
    transform: translateY(-2px);
    background: linear-gradient(135deg, #1f604f, #2f7a64);
    box-shadow: 0 24px 38px rgba(24, 78, 63, 0.28);
}

.btn-option:active {
    transform: translateY(0);
    box-shadow: 0 12px 22px rgba(24, 78, 63, 0.22);
}

.benefit-card i {
    font-size: 28px;
    color: var(--accent);
}

.section-band {
    background: linear-gradient(135deg, var(--primary-2) 0%, var(--primary) 100%);
}

.step-card {
    padding: 30px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-number {
    display: inline-block;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    color: rgba(255, 255, 255, 0.32);
}

.step-card h3,
.step-card p {
    color: #fff;
}

.ingredients-grid,
.order-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
}

.product-stage {
    background:
        radial-gradient(circle at center, rgba(239, 125, 50, 0.24), transparent 40%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.95));
    border-radius: 32px;
    padding: 38px;
    box-shadow: var(--shadow);
}

.product-stage-slider {
    position: relative;
    min-height: 430px;
    overflow: hidden;
}

.product-slide {
    position: absolute;
    inset: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(18px) scale(0.98);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.product-slide.is-active {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.product-slide img {
    max-width: min(100%, 300px);
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.product-stage-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.product-stage-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(24, 78, 63, 0.2);
    transition: transform 0.2s ease, background 0.2s ease;
}

.product-stage-dot.is-active {
    background: #ef7d32;
    transform: scale(1.1);
}

.testimonials {
    background: rgba(255, 255, 255, 0.45);
}

.testimonial-top {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 18px;
}

.avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
}

.order-band {
    position: relative;
}

.price-box {
    margin-top: 24px;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 244, 230, 0.96), rgba(255, 255, 255, 0.9));
    border-color: rgba(239, 125, 50, 0.22);
    box-shadow: 0 24px 50px rgba(11, 31, 24, 0.2);
}

.price-box .old {
    color: #5f6c78;
}

.price-box strong {
    color: #c95a14;
    font-size: clamp(2.6rem, 3.4vw, 3.8rem);
    text-shadow: 0 12px 28px rgba(239, 125, 50, 0.18);
}

.footer {
    padding: 28px 0 54px;
    background: #09261e;
    color: rgba(255, 255, 255, 0.84);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    font-weight: 700;
}

.order-modal {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(9, 24, 20, 0.72);
}

.order-modal.active {
    display: flex;
}

.order-modal-dialog {
    position: relative;
    width: min(100%, 920px);
    background: var(--paper);
    border-radius: 28px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

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

.modal-product-panel {
    min-height: 100%;
}

.modal-form-grid {
    grid-template-columns: 1fr;
}

.order-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 0;
    background: rgba(9, 38, 30, 0.08);
    color: var(--primary);
    cursor: pointer;
}

@media (max-width: 1024px) {
    .hero-grid,
    .ingredients-grid,
    .order-grid,
    .dual-products-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        max-width: none;
    }

    .hero-form-layout {
        grid-template-columns: 1fr;
    }

    .modal-form-layout {
        grid-template-columns: 1fr;
    }

    .hero-form-wrap .form-card {
        width: 100%;
    }

    .form-card-large {
        max-width: none;
        margin-left: 0;
    }

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

@media (max-width: 768px) {
    .header-content {
        min-height: 72px;
    }

    .nav-desktop {
        display: none;
    }

    .hero {
        padding-top: 24px;
    }

    .hero-price,
    .dual-products-grid,
    .benefits-grid,
    .steps-grid,
    .testimonials-grid,
    .stats-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .footer-content {
        display: grid;
    }

    .footer-content {
        justify-content: initial;
    }

    .trust-row {
        flex-direction: column;
        gap: 12px;
    }

    .product-option-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .order-modal {
        padding: 12px;
        align-items: flex-start;
    }

    .order-modal-dialog {
        width: 100%;
        max-height: calc(100vh - 24px);
        overflow-y: auto;
        border-radius: 24px;
        margin-top: 8px;
    }

    .modal-form-layout {
        grid-template-columns: 1fr;
    }

    .modal-product-panel {
        display: none;
    }

    .order-modal-dialog .hero-form-content {
        width: 100%;
    }

    .order-modal-dialog .order-form {
        padding: 20px 18px 22px;
    }

    .order-modal-dialog .product-choice-option {
        padding-right: 42px;
    }

    .order-modal-dialog .product-choice-thumb {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .order-modal-dialog .btn-submit.form-span {
        margin-top: 10px;
    }
}
