@font-face {
    font-family: "DM Sans";
    src: url("../fonts/DMSans-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "DM Sans";
    src: url("../fonts/DMSans-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "DM Sans";
    src: url("../fonts/DMSans-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham Narrow";
    src: url("../fonts/GothamNarrow-Book.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham Narrow";
    src: url("../fonts/GothamNarrow-Medium.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #f6f4ef;
    --panel: #ffffff;
    --soft: #eefaf1;
    --soft-strong: #ddf9dd;
    --green: #007907;
    --deep-green: #004d05;
    --bright-green: #08ae18;
    --orange: #e85a16;
    --red: #c90012;
    --hot-red: #fb1116;
    --yellow: #ffd91a;
    --text: #111111;
    --muted: #6b6b6b;
    --line: #a9caaa;
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 8px;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.section-narrow {
    width: min(1000px, calc(100% - 32px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--bg);
}

.promo-strip {
    display: flex;
    min-height: 54px;
    align-items: center;
    overflow: hidden;
    background: var(--orange);
    color: white;
    font-size: clamp(0.82rem, 1.7vw, 1.18rem);
    font-weight: 900;
    white-space: nowrap;
}

.promo-marquee {
    display: inline-flex;
    min-width: max-content;
    align-items: center;
    gap: 64px;
    padding-left: 100%;
    animation: promoMarquee 44s linear infinite;
}

.promo-marquee span {
    display: inline-block;
}

@keyframes promoMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.nav-wrap {
    display: flex;
    min-height: 124px;
    align-items: center;
    justify-content: space-between;
    width: min(1000px, calc(100% - 32px));
    margin-inline: auto;
    gap: 20px;
}

.logo {
    color: var(--text);
    text-decoration: none;
    font-size: clamp(1.25rem, 3vw, 1.78rem);
    font-weight: 900;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.pill {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0 24px;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 900;
    white-space: nowrap;
}

.pill-green {
    background: #eef8ec;
    color: var(--green);
}

.pill-red {
    background: #ffe8e8;
    color: var(--red);
}

.hero {
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.hero img {
    width: 100%;
    aspect-ratio: 5 / 3;
    object-fit: cover;
}

.trust-row,
.sales-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    align-items: center;
    padding: 34px 28px 42px;
    background: #fff5f2;
}

.trust-item {
    display: grid;
    gap: 8px;
    justify-items: center;
    text-align: center;
    min-width: 0;
}

.trust-item span {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    font-size: 1.35rem;
    font-weight: 900;
}

.trust-item strong {
    font-size: clamp(0.82rem, 1.7vw, 1.08rem);
}

.trust-green span {
    color: var(--green);
}

.trust-red span {
    color: #d51723;
}

.trust-yellow span {
    color: #e0c218;
}

.video-card,
.product-card,
.order-card {
    margin-top: 56px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--panel);
}

.card-head {
    display: flex;
    min-height: 102px;
    align-items: center;
    padding: 24px 48px;
    background: var(--deep-green);
    color: white;
}

.card-head h2 {
    margin: 0;
    font-size: clamp(1.35rem, 4vw, 2rem);
    font-weight: 900;
}

.video-card {
    padding-bottom: 42px;
}

.video-frame {
    position: relative;
    display: block;
    width: calc(100% - 96px);
    max-width: 760px;
    aspect-ratio: 16 / 9;
    margin: 24px auto 0;
    overflow: hidden;
    border: 0;
    border-radius: 18px;
    background: #f2f2ed;
    padding: 0;
    cursor: pointer;
}

.video-frame img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.72;
}

.play-ring {
    position: absolute;
    inset: 50% auto auto 50%;
    display: grid;
    width: clamp(86px, 12vw, 142px);
    height: clamp(86px, 12vw, 142px);
    transform: translate(-50%, -50%);
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.86);
    box-shadow:
        0 0 0 24px rgba(255, 255, 255, 0.28),
        0 0 0 48px rgba(255, 255, 255, 0.18);
}

.play-ring span {
    width: 0;
    height: 0;
    margin-left: 8px;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 32px solid var(--green);
}

.product-card {
    padding: clamp(32px, 5vw, 52px) clamp(28px, 5vw, 52px);
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: clamp(1rem, 2.4vw, 1.72rem);
}

.stars {
    color: var(--yellow);
    letter-spacing: 0;
}

.product-card h1 {
    margin: 28px 0 0;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.05;
    font-weight: 500;
}

.claim {
    margin: 0;
    color: #e2951c;
    font-size: clamp(1.15rem, 3vw, 1.62rem);
    font-weight: 900;
}

.price-row {
    display: flex;
    align-items: center;
    gap: clamp(16px, 4vw, 28px);
    flex-wrap: wrap;
    margin: 36px 0 30px;
}

.old-price {
    color: #727272;
    font-size: clamp(2rem, 5vw, 3.05rem);
    font-weight: 900;
    text-decoration: line-through;
}

.new-price {
    color: var(--red);
    font-size: clamp(2rem, 5vw, 3.12rem);
    font-weight: 900;
}

.saving {
    border-radius: var(--radius-sm);
    background: #fff5e8;
    color: #dc8b1e;
    padding: 10px 18px;
    font-size: clamp(1rem, 2.3vw, 1.4rem);
    font-weight: 900;
}

.description {
    margin: 0;
    max-width: 860px;
    font-size: clamp(1rem, 2.4vw, 1.46rem);
    line-height: 1.44;
}

.benefits {
    display: grid;
    gap: 18px;
    margin: 34px 0 36px;
    padding: 0;
    list-style: none;
}

.benefits li {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: clamp(0.98rem, 2.2vw, 1.22rem);
}

.benefits li::before {
    content: "✓";
    display: grid;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    background: #ebfaef;
    color: var(--green);
    font-size: 1.36rem;
    font-weight: 900;
}

.shipping-note {
    display: flex;
    align-items: center;
    gap: 24px;
    border-radius: 24px;
    background: #e5f3e5;
    padding: 30px 34px;
}

.shipping-note > span {
    color: var(--green);
    font-size: 2.3rem;
}

.shipping-note strong {
    display: block;
    font-size: 1.5rem;
}

.shipping-note p {
    margin: 4px 0 0;
    font-size: 1.05rem;
}

.subhead {
    margin: 36px 0 28px;
    font-size: 1.55rem;
}

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

.review {
    border-radius: 26px;
    background: #e6f3e6;
    padding: 28px 34px 34px;
}

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

.avatar {
    display: grid;
    flex: 0 0 62px;
    width: 62px;
    height: 62px;
    place-items: center;
    border-radius: 50%;
    background: #00930a;
    color: white;
    font-size: 1.25rem;
    font-weight: 900;
}

.review-top span:not(.avatar) {
    display: block;
    color: #333;
}

.review p {
    margin: 10px 0 0;
    font-size: clamp(1rem, 2vw, 1.34rem);
    line-height: 1.35;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 36px;
}

.slider-dots span {
    width: 34px;
    height: 16px;
    border-radius: 999px;
    background: #e4f3e7;
}

.slider-dots .active {
    background: var(--green);
}

.order-card {
    background: #f3fff5;
}

.order-body {
    padding: 48px clamp(24px, 5vw, 82px);
}

.package-list {
    display: grid;
    gap: 40px;
    margin-bottom: 72px;
}

.package-option {
    position: relative;
    display: grid;
    grid-template-columns: 144px 1fr auto;
    gap: 28px;
    align-items: center;
    min-height: 230px;
    border: 3px solid var(--green);
    border-radius: 32px;
    padding: 38px 32px 30px;
    background: #f5fff7;
}

.package-option.selected {
    border-style: dashed;
}

.package-option.alert {
    border-color: var(--hot-red);
}

.ribbon {
    position: absolute;
    top: -3px;
    left: 50%;
    min-width: 250px;
    transform: translateX(-50%);
    border-radius: 0 0 34px 34px;
    background: var(--green);
    color: white;
    padding: 12px 24px;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 700;
}

.alert .ribbon {
    background: var(--hot-red);
}

.product-chip {
    width: 142px;
    aspect-ratio: 1;
    border-radius: 28px;
    background: var(--green);
}

.package-copy h3 {
    margin: 0 0 4px;
    font-size: clamp(1.25rem, 2.6vw, 1.56rem);
}

.package-copy p {
    margin: 0 0 22px;
    font-size: 1.15rem;
}

.package-copy strong {
    color: var(--red);
    font-size: clamp(1.7rem, 3.4vw, 2.36rem);
}

.old-mini {
    color: #737373;
    font-size: clamp(1.25rem, 2.8vw, 1.85rem);
    font-weight: 800;
    text-decoration: line-through;
}

.package-copy small {
    display: block;
    margin-top: 2px;
    font-size: 0.92rem;
}

.select-package,
.submit-order {
    min-height: 64px;
    border: 0;
    border-radius: var(--radius-md);
    background: var(--green);
    color: white;
    padding: 0 44px;
    font-weight: 900;
}

.alert .select-package {
    background: var(--hot-red);
}

.summary {
    display: grid;
    gap: 12px;
    border-radius: 28px;
    background: var(--soft-strong);
    padding: 44px 48px 0;
    font-size: 1.16rem;
}

.summary div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.summary-total {
    margin: 24px -48px 0;
    border-top: 1px solid #55ad54;
    padding: 24px 48px 34px;
    font-size: 1.5rem;
}

.checkout-form {
    margin-top: 48px;
}

.checkout-form h3 {
    margin: 42px 0 18px;
    color: var(--green);
    font-size: clamp(1.35rem, 3vw, 1.85rem);
}

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

.payment-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 84px;
    border: 1px solid #77aa78;
    border-radius: 16px;
    padding: 14px 22px;
    background: #f7fff9;
}

.payment-option input {
    position: absolute;
    opacity: 0;
}

.payment-option:has(input:checked) {
    box-shadow: 0 0 0 3px rgba(0, 121, 7, 0.12);
}

.pay-icon {
    display: grid;
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 10px;
    background: var(--green);
    color: white;
    font-size: 1.5rem;
    font-weight: 900;
}

.payment-option strong,
.payment-option small {
    display: block;
}

.payment-option strong {
    font-size: clamp(1rem, 2.2vw, 1.48rem);
}

.payment-option small {
    font-size: clamp(0.82rem, 1.7vw, 1.02rem);
}

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

.field-grid input,
.field-grid select,
.field-grid textarea {
    width: 100%;
    min-height: 66px;
    border: 1.5px solid #161616;
    border-radius: 12px;
    background: #f9fffa;
    padding: 0 28px;
    color: #303030;
    font-size: 1.28rem;
    font-weight: 700;
}

.field-grid input,
.field-grid textarea {
    grid-column: 1 / -1;
}

.field-grid textarea {
    min-height: 154px;
    padding-top: 22px;
    resize: vertical;
}

.submit-order {
    width: 100%;
    margin-top: 24px;
    font-size: 1.24rem;
}

.sales-band {
    margin-top: 54px;
    overflow: hidden;
}

.sales-copy {
    display: grid;
    justify-items: center;
    background: var(--bright-green);
    color: white;
    padding: 56px 20px 28px;
    text-align: center;
}

.sales-copy h2,
.sales-copy strong,
.sales-copy p {
    margin: 0;
}

.sales-copy h2 {
    font-size: clamp(2.15rem, 5.5vw, 4rem);
    line-height: 0.92;
    font-weight: 900;
}

.sales-copy strong {
    font-size: clamp(1.55rem, 4vw, 2.62rem);
}

.sales-copy p {
    margin-top: 10px;
    font-size: clamp(1rem, 2.4vw, 1.5rem);
}

.sales-trust {
    width: 100%;
    border-radius: 0 0 28px 28px;
    background: var(--soft-strong);
}

.faq {
    padding: 76px 0 86px;
    text-align: center;
}

.eyebrow {
    margin: 0;
    color: #288a2f;
    font-size: 1.22rem;
    letter-spacing: 0.18em;
}

.faq h2 {
    margin: 8px 0 26px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 8vw, 5.2rem);
    font-weight: 400;
    line-height: 0.94;
}

.faq-lead {
    margin: 0 auto 54px;
    font-size: clamp(1rem, 2.4vw, 1.45rem);
    line-height: 1.4;
}

.accordion {
    display: grid;
    gap: 28px;
    text-align: left;
}

.faq-item {
    border-radius: 28px;
    background: #f2fff5;
    padding: 0 68px;
}

.faq-item button {
    display: flex;
    width: 100%;
    min-height: 116px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 0;
    background: transparent;
    padding: 0;
    text-align: left;
    font-size: clamp(1.1rem, 2.6vw, 1.75rem);
    font-weight: 900;
}

.faq-item p {
    display: none;
    margin: -8px 0 42px;
    max-width: 850px;
    font-size: clamp(0.98rem, 2.2vw, 1.35rem);
    line-height: 1.42;
}

.faq-item.open p {
    display: block;
}

.mark {
    flex: 0 0 auto;
    font-size: 2rem;
    font-weight: 400;
}

footer {
    display: grid;
    gap: 30px;
    justify-items: center;
    min-height: 300px;
    background: #181818;
    color: white;
    padding: 64px 20px;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: clamp(0.9rem, 2vw, 1.25rem);
    font-weight: 600;
    letter-spacing: 0.18em;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 10;
    display: none;
    place-items: center;
    background: rgba(0, 0, 0, 0.72);
    padding: 24px;
}

.video-modal.is-open {
    display: grid;
}

.modal-panel {
    position: relative;
    width: min(860px, 100%);
    overflow: hidden;
    border-radius: 20px;
    background: white;
    text-align: center;
}

.modal-panel img {
    width: 100%;
}

.product-video-embed {
    display: block;
    width: min(920px, 88vw);
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 22px;
    background: #000;
}

.modal-panel p {
    margin: 0;
    padding: 24px;
    font-size: 1.2rem;
    font-weight: 800;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: white;
    color: #111;
    font-size: 2rem;
}

@media (max-width: 860px) {
    .nav-wrap {
        min-height: 104px;
    }

    .video-card,
    .product-card,
    .order-card {
        margin-top: 36px;
        border-radius: 20px;
    }

    .card-head {
        min-height: 78px;
        padding-inline: 24px;
    }

    .video-frame {
        width: calc(100% - 28px);
        max-width: none;
        margin-top: 20px;
        border-radius: 14px;
    }

    .reviews,
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .package-option {
        grid-template-columns: 106px 1fr;
        gap: 18px;
    }

    .select-package {
        grid-column: 1 / -1;
        width: 100%;
    }

    .product-chip {
        width: 106px;
    }
}

@media (max-width: 640px) {
    .section-narrow {
        width: min(100% - 20px, 1000px);
    }

    .promo-strip {
        min-height: 42px;
        font-size: 0.78rem;
    }

    .promo-marquee {
        gap: 42px;
        animation-duration: 38s;
    }

    .nav-wrap {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        padding-block: 18px;
        text-align: center;
    }

    .nav-actions {
        justify-content: center;
        gap: 10px;
    }

    .pill {
        min-height: 34px;
        padding-inline: 14px;
        font-size: 0.86rem;
    }

    .trust-row,
    .sales-trust {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 24px 12px 30px;
    }

    .product-card {
        padding: 26px 18px;
    }

    .shipping-note {
        align-items: flex-start;
        padding: 22px 18px;
    }

    .reviews {
        gap: 16px;
    }

    .review {
        padding: 22px 20px;
    }

    .order-body {
        padding: 34px 14px;
    }

    .package-list {
        gap: 34px;
        margin-bottom: 42px;
    }

    .package-option {
        grid-template-columns: 82px 1fr;
        min-height: auto;
        border-radius: 22px;
        padding: 42px 16px 18px;
    }

    .ribbon {
        min-width: min(230px, calc(100% - 48px));
        font-size: 0.9rem;
    }

    .product-chip {
        width: 82px;
        border-radius: 20px;
    }

    .summary {
        padding: 28px 20px 0;
        font-size: 0.98rem;
    }

    .summary div {
        align-items: flex-start;
    }

    .summary-total {
        margin-inline: -20px;
        padding: 20px;
    }

    .payment-option {
        padding: 12px 14px;
    }

    .pay-icon {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
    }

    .field-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .field-grid input,
    .field-grid select,
    .field-grid textarea {
        min-height: 58px;
        padding-inline: 18px;
        font-size: 1rem;
    }

    .sales-copy {
        padding-top: 42px;
    }

    .faq {
        padding-block: 54px;
    }

    .faq-item {
        border-radius: 20px;
        padding: 0 20px;
    }

    .faq-item button {
        min-height: 86px;
    }

    .faq-item p {
        margin-bottom: 28px;
    }
}

@media (max-width: 420px) {
    .package-option {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .product-chip {
        width: 96px;
    }

    .price-row {
        gap: 10px;
    }

    .old-price,
    .new-price {
        font-size: 1.8rem;
    }
}

/* Compact responsive revision */
:root {
    --content-w: 820px;
    --radius-lg: 22px;
    --radius-md: 14px;
    font-family: "DM Sans", Arial, sans-serif;
}

body,
button,
input,
select,
textarea {
    font-family: "DM Sans", Arial, sans-serif;
}

.section-narrow,
.nav-wrap {
    width: min(var(--content-w), calc(100% - 32px));
}

.promo-strip {
    min-height: 50px;
    padding: 10px 16px;
    font-size: clamp(0.72rem, 1vw, 0.92rem);
}

.nav-wrap {
    min-height: 82px;
}

.logo {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.pill {
    min-height: 32px;
    padding: 0 18px;
    font-size: 0.84rem;
}

.trust-row,
.sales-trust {
    padding: 24px 22px 30px;
}

.trust-item span {
    width: 22px;
    height: 22px;
    font-size: 1.05rem;
}

.trust-item strong {
    font-size: clamp(0.72rem, 1.2vw, 0.9rem);
}

.video-card,
.product-card,
.order-card {
    margin-top: 34px;
    border-radius: var(--radius-lg);
}

.card-head {
    display: flex;
    min-height: 74px;
    align-items: center;
    padding: 16px 36px;
    background: var(--deep-green);
    color: white;
}

.card-head h2 {
    margin: 0;
    font-size: clamp(1.05rem, 3vw, 1.55rem);
    font-weight: 900;
}

.video-card {
    padding-bottom: 28px;
}

.video-frame {
    width: calc(100% - 72px);
    max-width: 720px;
    margin-top: 28px;
    border-radius: 18px;
}

.play-ring {
    width: clamp(62px, 8vw, 86px);
    height: clamp(62px, 8vw, 86px);
    box-shadow:
        0 0 0 16px rgba(255, 255, 255, 0.28),
        0 0 0 32px rgba(255, 255, 255, 0.16);
}

.play-ring span {
    border-top-width: 14px;
    border-bottom-width: 14px;
    border-left-width: 22px;
}

.product-card {
    padding: 34px 38px;
}

.rating {
    font-size: clamp(0.86rem, 1.6vw, 1.12rem);
}

.product-card h1 {
    margin-top: 20px;
    font-size: clamp(1.65rem, 3.2vw, 2.18rem);
}

.claim {
    font-size: clamp(0.98rem, 2vw, 1.16rem);
}

.price-row {
    margin: 26px 0 22px;
}

.old-price,
.new-price {
    font-size: clamp(1.8rem, 3.4vw, 2.35rem);
}

.saving {
    padding: 8px 14px;
    font-size: 0.94rem;
}

.description {
    font-size: clamp(0.92rem, 1.6vw, 1.06rem);
}

.benefits {
    gap: 12px;
    margin: 26px 0 28px;
}

.benefits li {
    gap: 12px;
    font-size: 0.94rem;
}

.benefits li::before {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
    font-size: 1rem;
}

.shipping-note {
    gap: 18px;
    padding: 22px 26px;
    border-radius: 18px;
}

.shipping-note > span {
    font-size: 1.8rem;
}

.shipping-note strong {
    font-size: 1.16rem;
}

.shipping-note p {
    font-size: 0.88rem;
}

.subhead {
    margin: 30px 0 20px;
    font-size: 1.25rem;
}

.reviews {
    gap: 28px;
}

.review {
    padding: 22px 24px;
    border-radius: 20px;
}

.avatar {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
    font-size: 1rem;
}

.review p {
    font-size: 0.95rem;
}

.order-body {
    padding: 36px 56px;
}

.package-list {
    gap: 30px;
    margin-bottom: 48px;
}

.package-option {
    grid-template-columns: 108px 1fr auto;
    min-height: 170px;
    gap: 22px;
    padding: 34px 26px 24px;
    border-radius: 24px;
}

.ribbon {
    min-width: 190px;
    padding: 9px 18px;
    font-size: 0.82rem;
}

.product-chip {
    width: 108px;
    border-radius: 22px;
}

.package-copy h3 {
    font-size: clamp(1.02rem, 2vw, 1.22rem);
}

.package-copy p {
    margin-bottom: 14px;
    font-size: 0.94rem;
}

.package-copy strong {
    font-size: clamp(1.45rem, 2.7vw, 1.8rem);
}

.old-mini {
    font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.select-package,
.submit-order {
    min-height: 52px;
    padding: 0 30px;
    font-size: 0.9rem;
}

.summary {
    padding: 30px 34px 0;
    font-size: 0.94rem;
}

.summary-total {
    margin: 20px -34px 0;
    padding: 20px 34px 26px;
    font-size: 1.22rem;
}

.checkout-form {
    margin-top: 36px;
}

.checkout-form h3 {
    margin: 32px 0 14px;
    font-size: clamp(1.1rem, 2.2vw, 1.38rem);
}

.payment-grid {
    gap: 24px;
}

.payment-option {
    min-height: 66px;
    gap: 14px;
    padding: 12px 16px;
}

.pay-icon {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
}

.payment-option strong {
    font-size: 1rem;
}

.payment-option small {
    font-size: 0.78rem;
}

.field-grid input,
.field-grid select,
.field-grid textarea {
    min-height: 54px;
    padding: 0 20px;
    font-size: 0.98rem;
}

.field-grid textarea {
    min-height: 120px;
    padding-top: 18px;
}

.sales-copy {
    padding: 42px 20px 24px;
}

.sales-copy h2 {
    font-size: clamp(1.9rem, 4vw, 3.1rem);
}

.sales-copy strong {
    font-size: clamp(1.2rem, 3vw, 1.9rem);
}

.sales-copy p {
    font-size: clamp(0.88rem, 1.7vw, 1.1rem);
}

.faq {
    padding: 58px 0 68px;
}

.eyebrow {
    font-size: 0.95rem;
}

.faq h2 {
    font-family: "Gotham Narrow", Georgia, serif;
    font-size: clamp(2.5rem, 5.8vw, 4rem);
}

.faq-lead {
    margin-bottom: 38px;
    font-size: clamp(0.92rem, 1.8vw, 1.08rem);
}

.accordion {
    gap: 20px;
}

.faq-item {
    padding: 0 46px;
    border-radius: 22px;
}

.faq-item button {
    min-height: 86px;
    font-size: clamp(1rem, 2vw, 1.28rem);
}

.faq-item p {
    margin-bottom: 30px;
    font-size: clamp(0.9rem, 1.6vw, 1.05rem);
}

footer {
    min-height: 220px;
    padding: 48px 20px;
}

footer p {
    font-size: clamp(0.76rem, 1.4vw, 0.95rem);
}

@media (max-width: 640px) {
    :root {
        --content-w: 100%;
    }

    .section-narrow,
    .nav-wrap {
        width: calc(100% - 22px);
    }

    .product-card {
        padding: 22px 16px;
    }

    .order-body {
        padding: 28px 14px;
    }

    .package-option {
        grid-template-columns: 76px 1fr;
        gap: 14px;
        padding: 40px 14px 16px;
    }

    .product-chip {
        width: 76px;
    }

    .select-package {
        grid-column: 1 / -1;
        width: 100%;
    }

    .card-head {
        min-height: 54px;
        padding: 12px 18px;
    }

    .card-head h2 {
        font-size: 1rem;
    }

    .video-card {
        margin-top: 34px;
        padding-bottom: 20px;
    }

    .video-frame {
        width: calc(100% - 32px);
        margin-top: 18px;
    }

    .faq-item {
        padding: 0 18px;
    }
}

.package-option {
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.package-option.is-selected {
    box-shadow: 0 14px 34px rgba(0, 121, 7, 0.12);
    transform: translateY(-2px);
}

.select-package {
    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        opacity 0.2s ease;
}

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

.summary-pulse {
    animation: summaryPulse 0.45s ease;
}

@keyframes summaryPulse {
    0% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.012);
    }

    100% {
        transform: scale(1);
    }
}

.review-slider {
    position: relative;
}

.review-window {
    overflow: hidden;
    width: 100%;
}

.review-slider .reviews {
    display: flex;
    grid-template-columns: none;
    gap: 28px;
    transition: transform 0.35s ease;
    will-change: transform;
}

.review-slider .review {
    flex: 0 0 calc((100% - 28px) / 2);
}

.review-nav {
    position: absolute;
    top: 42%;
    z-index: 2;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    font-weight: 500;
    transform: translateY(-50%);
}

.review-prev {
    left: -18px;
}

.review-next {
    right: -18px;
}

.review-nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.review-slider .slider-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 24px;
}

.review-dot {
    width: 28px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: #e4f3e7;
    padding: 0;
}

.review-dot.active {
    background: var(--green);
}

@media (max-width: 760px) {
    .review-slider .review {
        flex-basis: 100%;
    }

    .review-nav {
        width: 34px;
        height: 34px;
        font-size: 1.7rem;
    }

    .review-prev {
        left: -8px;
    }

    .review-next {
        right: -8px;
    }
}

.package-option {
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.package-option.is-selected {
    box-shadow: 0 12px 28px rgba(0, 121, 7, 0.14);
    transform: translateY(-2px);
}

.select-package {
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

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

.package-option {
    isolation: isolate;
}

.package-option.is-selected {
    box-shadow: 0 12px 28px rgba(0, 121, 7, 0.14);
    transform: translateY(-2px);
}

.summary-pulse {
    animation: summaryPulse 0.45s ease;
}

@keyframes summaryPulse {
    0% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.012);
    }

    100% {
        transform: scale(1);
    }
}

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

.hero-track {
    display: flex;
    transition: transform 0.45s ease;
    will-change: transform;
}

.hero-slide {
    flex: 0 0 100%;
}

.hero-slide img {
    width: 100%;
    aspect-ratio: 5 / 3;
    object-fit: cover;
}

.hero-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.hero-dot {
    width: 28px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    padding: 0;
}

.hero-dot.active {
    background: var(--green);
}

@media (max-width: 640px) {
    .hero-dots {
        bottom: 10px;
    }

    .hero-dot {
        width: 22px;
        height: 8px;
    }
}

.order-frame-section {
    margin-top: 56px;
}

.order-iframe {
    display: block;
    width: 100%;
    min-height: 2200px;
    border: 0;
    overflow: hidden;
    background: transparent;
}

@media (max-width: 860px) {
    .order-frame-section {
        margin-top: 36px;
    }

    .order-iframe {
        min-height: 1180px;
    }
}

.mobile-sticky-order {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 80;
    display: none;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    border: 4px solid transparent;
    border-radius: 16px;
    background: var(--green);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    transition:
        border-color 0.2s ease,
        transform 0.2s ease,
        background-color 0.2s ease;
}

.mobile-sticky-order:focus,
.mobile-sticky-order:active,
.mobile-sticky-order.is-active {
    border-color: var(--hot-red);
    color: #fff;
    transform: translateY(-2px);
}

.submit-order:focus,
.submit-order:active,
.submit-order.is-active {
    border: 4px solid var(--hot-red);
}

@media (max-width: 760px) {
    body {
        padding-bottom: 84px;
    }

    .mobile-sticky-order {
        display: flex;
    }
}

.product-chip {
    overflow: hidden;
    background: #fff;
}

.product-chip img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.variant-box {
    grid-column: 1 / -1;
    display: grid;
    gap: 16px;
    width: 100%;
    margin-top: 18px;
    padding: 18px;
    border-radius: 18px;
    background: #f7fff8;
    border: 1px solid #d8eadb;
}

.variant-title {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--deep-green);
}

.variant-help {
    margin: -8px 0 0;
    font-size: 0.92rem;
    color: #47624c;
}

.variant-row {
    display: grid;
    gap: 12px;
    padding: 14px;
    border: 1px solid #d8eadb;
    border-radius: 14px;
    background: white;
}

.variant-row-title {
    font-weight: 900;
    color: var(--deep-green);
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.variant-option {
    cursor: pointer;
}

.variant-option input {
    display: none;
}

.variant-option span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    padding: 8px 14px;
    border: 2px solid #d9e7dc;
    border-radius: 999px;
    background: #fff;
    font-weight: 800;
    transition: 0.2s ease;
}

.variant-option span small {
    font-size: 0.72rem;
    font-weight: 700;
    opacity: 0.72;
}

.variant-option input:checked + span {
    border-color: var(--hot-red);
    background: #fff2f2;
    color: var(--hot-red);
}

.variant-option.disabled,
.variant-option input:disabled + span {
    opacity: 0.45;
    cursor: not-allowed;
}

@media (max-width: 640px) {
    .variant-box {
        padding: 14px;
    }

    .variant-options {
        display: grid;
        grid-template-columns: 1fr;
    }

    .variant-option span {
        justify-content: center;
        width: 100%;
        text-align: center;
    }
}

.variant-box-compact {
    grid-column: 1 / -1;
    display: grid;
    gap: 14px;
    width: 100%;
    margin-top: 16px;
    padding: 16px;
    border-radius: 16px;
    background: #f7fff8;
    border: 1px solid #d8eadb;
}

.variant-header {
    display: grid;
    gap: 4px;
}

.variant-box-compact .variant-title {
    font-size: 1rem;
    font-weight: 900;
    color: var(--hot-red);
}

.variant-box-compact .variant-help {
    margin: 0;
    font-size: 0.9rem;
    color: #38563f;
}

.variant-select-row {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #d8eadb;
}

.variant-select-row label {
    margin: 0;
    font-weight: 900;
    color: var(--hot-red);
    white-space: nowrap;
}

.variant-select {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    border: 2px solid #d9e7dc;
    border-radius: 12px;
    background: #fff;
    color: #111;
    font-weight: 800;
    outline: none;
}

.variant-select:focus {
    border-color: var(--hot-red);
}

.variant-selected-summary {
    display: grid;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
    background: #fff2f2;
    color: var(--hot-red);
    font-size: 0.88rem;
    font-weight: 800;
}

.variant-selected-summary:empty {
    display: none;
}

.variant-selected-summary div {
    display: grid;
    gap: 4px;
}

.variant-selected-summary span {
    display: block;
}

@media (max-width: 640px) {
    .variant-box-compact {
        margin-top: 12px;
        padding: 12px;
        gap: 10px;
        border-radius: 14px;
    }

    .variant-box-compact .variant-title {
        font-size: 0.95rem;
    }

    .variant-box-compact .variant-help {
        font-size: 0.82rem;
    }

    .variant-select-row {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 10px;
    }

    .variant-select-row label {
        font-size: 0.9rem;
    }

    .variant-select {
        min-height: 42px;
        font-size: 0.86rem;
        padding: 0 10px;
    }

    .variant-selected-summary {
        font-size: 0.8rem;
        padding: 10px;
    }
}