:root {
    --green-950: #032817;
    --green-900: #04361f;
    --green-800: #064a2c;
    --green-700: #0a643b;
    --green-600: #15854d;
    --mint: #d9efc9;
    --mint-soft: #f3faed;
    --cream: #fbf6ea;
    --yellow: #fbc54d;
    --lime: #e9ff46;
    --orange: #ff6840;
    --ink: #112118;
    --muted: #657268;
    --line: #dfe9d6;
    --white: #ffffff;
    --shadow: 0 20px 50px rgba(7, 48, 29, 0.14);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Poppins", Arial, sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.5;
}

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

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

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

.container {
    width: min(100% - 32px, 1004px);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: var(--white);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.utility-strip {
    overflow: hidden;
    background: var(--green-800);
    color: var(--white);
    font-size: 13px;
    text-transform: uppercase;
}

.marquee {
    min-height: 44px;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: clamp(40px, 7vw, 96px);
    min-width: 100%;
    padding-inline: clamp(22px, 4vw, 56px);
    animation: marqueeMove 34s linear infinite;
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

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

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

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

.brand {
    display: inline-grid;
    color: #111;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}

.brand span {
    justify-self: start;
    margin-bottom: 4px;
    border-radius: 999px;
    background: #ff3d35;
    color: var(--white);
    padding: 4px 9px;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

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

.btn {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 8px;
    padding: 12px 22px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.btn:hover,
.package-select:hover,
.play-button:hover {
    transform: translateY(-2px);
}

.btn-soft {
    background: #d9efc9;
    color: var(--green-800);
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 12px 24px rgba(255, 104, 64, 0.22);
}

.btn-header {
    min-height: 50px;
    padding-inline: 28px;
    font-size: 15px;
}

.campaign-bar {
    background: var(--yellow);
    color: var(--green-950);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    padding: 18px max(16px, calc((100vw - 1004px) / 2));
}

.campaign-copy strong {
    display: block;
    font-size: clamp(24px, 4vw, 42px);
    line-height: 0.95;
    font-weight: 900;
}

.campaign-copy span {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    font-weight: 700;
}

.countdown {
    min-width: 262px;
    border-radius: 8px;
    background: var(--green-900);
    color: var(--white);
    padding: 13px 22px;
    text-align: center;
}

.countdown-time {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
}

.countdown-time strong,
.countdown-time i {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1;
    letter-spacing: 0;
    font-style: normal;
    font-weight: 900;
}

.countdown-time i {
    position: absolute;
    top: 48%;
    transform: translate(-50%, -50%);
}

.countdown-time i:nth-of-type(1) {
    left: 33.333%;
}

.countdown-time i:nth-of-type(2) {
    left: 66.666%;
}

.countdown-time strong {
    width: 100%;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

.countdown-time strong:nth-of-type(1) {
    grid-column: 1 / 2;
}

.countdown-time strong:nth-of-type(2) {
    grid-column: 2 / 3;
}

.countdown-time strong:nth-of-type(3) {
    grid-column: 3 / 4;
}

.countdown-labels {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 6px;
    color: var(--yellow);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.countdown-labels b {
    text-align: center;
}

.countdown-labels b:nth-child(1) {
    grid-column: 1 / 2;
}

.countdown-labels b:nth-child(2) {
    grid-column: 2 / 3;
}

.countdown-labels b:nth-child(3) {
    grid-column: 3 / 4;
}

.section-dark {
    background: var(--green-900);
    color: var(--white);
}

.section-light {
    background: var(--cream);
}

.section-mint {
    background: var(--mint);
}

.hero {
    padding: clamp(58px, 8vw, 96px) 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 462px);
    gap: clamp(36px, 7vw, 80px);
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: inherit;
    padding: 7px 15px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.section-mint .eyebrow,
.section-light .eyebrow {
    background: #9edb6d;
    color: var(--white);
}

.hero h1 {
    max-width: 560px;
    margin: 22px 0 18px;
    font-size: clamp(42px, 7vw, 72px);
    font-weight: 900;
    line-height: 0.98;
}

mark {
    background: transparent;
    color: var(--lime);
}

.hero-copy > p {
    max-width: 510px;
    color: #d5eadc;
    margin: 0 0 28px;
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 32px;
}

.feature-row .feature-item {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
}

.feature-row span {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    display: inline-grid;
    place-items: center;
    background: var(--green-600);
    color: var(--lime);
    font-weight: 900;
}

.feature-row strong {
    display: block;
    font-size: 20px;
    line-height: 1;
}

.feature-row small {
    display: block;
    margin-top: 4px;
    color: #d2e6d9;
}

.btn-hero {
    min-width: min(100%, 460px);
    min-height: 66px;
    font-size: 22px;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 24px;
}

.avatars {
    display: flex;
}

.avatars span {
    width: 42px;
    height: 42px;
    margin-left: -6px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #18a11f;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
}

.avatars span:first-child {
    margin-left: 0;
}

.social-proof p {
    margin: 0;
}

.hero-media {
    justify-self: end;
    width: min(100%, 462px);
    animation: heroFloat 4.8s ease-in-out infinite;
    will-change: transform;
}

.hero-media img {
    border-radius: 54px;
}

@keyframes heroFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

.trust-band {
    background: #0d0f10;
    color: var(--white);
    padding: 26px 0;
}

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

.trust-grid .trust-item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
}

.trust-grid span {
    grid-row: span 2;
    font-size: 30px;
}

.trust-grid strong {
    font-size: 16px;
    line-height: 1.12;
}

.trust-grid p {
    margin: 4px 0 0;
    color: #c9ced0;
    font-size: 12px;
}

.video-section {
    padding: clamp(52px, 8vw, 76px) 0;
}

.video-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    align-items: center;
    min-height: 374px;
    background: var(--green-900);
    color: var(--white);
    border-radius: 8px;
    overflow: hidden;
}

.play-button {
    position: relative;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.play-button img {
    width: 100%;
    height: 374px;
    object-fit: cover;
}

.play-button span {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 82px;
    height: 82px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--white);
    color: var(--green-700);
    font-size: 32px;
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.12);
}

.video-copy {
    padding: clamp(28px, 5vw, 54px);
}

.video-copy h2 {
    margin: 18px 0 12px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1;
}

.video-copy p {
    color: #dceee1;
    margin: 0;
}

.packages {
    padding: clamp(60px, 8vw, 86px) 0 clamp(68px, 8vw, 96px);
}

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

.section-heading h2 {
    margin: 14px 0 6px;
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.08;
    font-weight: 900;
    text-transform: uppercase;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.package-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    border: 3px solid transparent;
    border-radius: 8px;
    background: var(--white);
    padding: 22px;
    box-shadow: var(--shadow);
}

.package-card.is-selected {
    border-color: var(--green-600);
}

.badges {
    position: absolute;
    top: 18px;
    left: 18px;
    right: 18px;
    display: flex;
    gap: 8px;
    z-index: 1;
}

.badges span {
    min-height: 42px;
    flex: 1;
    display: inline-grid;
    place-items: center;
    border-radius: 8px;
    background: var(--green-600);
    color: var(--white);
    padding: 7px 8px;
    font-size: 10px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

.badges span + span {
    background: #586064;
}

.package-card img {
    width: 100%;
    aspect-ratio: 1 / 1.32;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.package-card h3 {
    margin: 0 0 4px;
    font-size: 22px;
    line-height: 1.1;
}

.package-card p {
    margin: 0 0 14px;
    color: var(--muted);
    font-weight: 700;
}

.package-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.package-card li {
    border-bottom: 1px solid var(--line);
    padding: 11px 0;
    color: #4e5c53;
    font-size: 14px;
}

.package-card li::before {
    content: "✓";
    color: var(--green-600);
    font-weight: 900;
    margin-right: 8px;
}

.price-note {
    margin-top: 18px;
    border-radius: 8px;
    background: #f4f2e7;
    padding: 12px;
    color: var(--green-700);
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}

.price {
    display: block;
    margin-top: 14px;
    font-size: 36px;
    line-height: 1;
    text-align: center;
}

.package-card small {
    display: block;
    margin: 8px 0 18px;
    color: var(--green-600);
    font-weight: 800;
    text-align: center;
}

.package-select {
    min-height: 58px;
    margin-top: auto;
    border: 0;
    border-radius: 8px;
    background: var(--orange);
    color: var(--white);
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.is-selected .package-select {
    background: var(--green-600);
}

.order-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: 42px;
    margin-top: 42px;
    border-radius: 8px;
    background: var(--white);
    padding: clamp(24px, 5vw, 48px);
    box-shadow: var(--shadow);
}

.panel-label {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    border-radius: 999px;
    background: var(--green-600);
    color: var(--white);
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.summary h2,
.checkout h2 {
    margin: 16px 0 20px;
    font-size: 24px;
}

dl {
    margin: 0 0 28px;
}

dl div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
}

dt {
    font-weight: 700;
}

dd {
    margin: 0;
    text-align: right;
    font-weight: 800;
}

.total {
    font-size: 20px;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.payment-card {
    position: relative;
    display: grid;
    gap: 8px;
    min-height: 92px;
    align-content: center;
    justify-items: center;
    border: 1px solid #d7e5ce;
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbf1 100%);
    padding: 10px 8px;
    text-align: center;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.payment-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(7, 48, 29, 0.1);
}

.payment-card input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.payment-card:has(input:checked) {
    border-color: var(--green-600);
    box-shadow: 0 0 0 3px rgba(21, 133, 77, 0.14);
}

.payment-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: inline-grid;
    place-items: center;
    background: var(--green-800);
    color: var(--lime);
    font-size: 16px;
    font-weight: 900;
}

.payment-card > span:last-child {
    display: grid;
    gap: 2px;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.15;
}

.payment-card small {
    display: block;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
}

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

.order-form label {
    font-weight: 700;
}

.order-form input,
.order-form select,
.order-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbf8ef;
    padding: 15px 18px;
    color: var(--ink);
    outline: none;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
    border-color: var(--green-600);
    box-shadow: 0 0 0 3px rgba(21, 133, 77, 0.12);
}

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

.btn-submit {
    min-height: 62px;
    margin-top: 8px;
    background: var(--green-800);
    color: var(--white);
}

.form-message {
    min-height: 22px;
    margin: 0;
    color: var(--green-700);
    font-weight: 700;
}

.stats-band {
    background: var(--green-800);
    color: var(--white);
    padding: 48px 0;
    text-align: center;
}

.stats-band h2 {
    margin: 0;
    font-size: clamp(28px, 5vw, 44px);
}

.stats-band p {
    margin: 10px auto 22px;
    color: #dcefe0;
}

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

.stats-grid strong {
    color: var(--lime);
    font-size: 28px;
    line-height: 1;
}

.stats-grid em {
    display: block;
    font-style: normal;
}

.stats-grid span {
    display: block;
    margin-top: 8px;
    color: var(--white);
    font-size: 13px;
}

.reviews {
    padding: clamp(58px, 8vw, 82px) 0;
}

.review-slider {
    position: relative;
    overflow: hidden;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
}

.review-slider.is-dragging {
    cursor: grabbing;
}

.review-track {
    display: flex;
    transition: transform 0.55s ease;
    will-change: transform;
}

.review-track.is-dragging {
    transition: none;
}

.review-slide {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.review-slide:not(.is-active) {
    pointer-events: none;
}

.review-slide .review-card {
    min-height: 242px;
}

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

.review-slide .review-card,
.review-grid article {
    border-radius: 8px;
    background: var(--white);
    padding: 22px;
    box-shadow: var(--shadow);
}

.review-slide b {
    display: block;
    font-size: 13px;
}

.review-slide p {
    font-size: 13px;
    line-height: 1.55;
}

.review-grid p {
    color: var(--muted);
}

.review-grid small {
    font-weight: 700;
}

.review-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.review-nav {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: var(--green-800);
    color: var(--white);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.review-dots {
    display: flex;
    gap: 9px;
}

.review-dots button,
.review-dots span {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50%;
    background: #9edb6d;
    padding: 0;
    cursor: pointer;
}

.review-dots button.is-active {
    width: 26px;
    border-radius: 999px;
    background: var(--green-800);
}

.faq {
    padding: clamp(58px, 8vw, 84px) 0;
}

.faq-container {
    max-width: 1004px;
}

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

.faq-item {
    border-radius: 8px;
    background: var(--white);
    overflow: hidden;
}

.faq-item button {
    width: 100%;
    min-height: 82px;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 34px;
    color: var(--ink);
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.faq-item button span {
    flex: 0 0 auto;
    font-size: 22px;
    line-height: 1;
}

.faq-content {
    display: none;
    padding: 0 34px 28px;
    color: var(--muted);
}

.faq-item.is-open .faq-content {
    display: block;
}

.faq-content p {
    margin: 0;
}

.signature-band {
    background: var(--green-950);
    color: var(--white);
    padding: 32px 0;
    text-align: center;
}

.signature-band .container {
    display: grid;
    justify-items: center;
    gap: 8px;
}

.footer-ad-media {
    display: grid;
    justify-items: center;
    max-width: min(320px, 100%);
    margin-bottom: 6px;
}

.footer-ad-media picture,
.footer-ad-media img {
    display: block;
    max-width: 100%;
}

.footer-ad-media img {
    max-height: 72px;
    width: auto;
    object-fit: contain;
}

.signature-band strong {
    color: var(--lime);
    font-size: 22px;
}

.signature-band span {
    color: #d8e8dd;
    font-size: 13px;
    text-transform: uppercase;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

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

.video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 40, 23, 0.78);
    backdrop-filter: blur(8px);
}

.video-modal__dialog {
    position: relative;
    width: min(100%, 940px);
    border-radius: 8px;
    overflow: hidden;
    background: var(--green-900);
    color: var(--white);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
}

.video-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.video-modal__header span {
    display: block;
    color: var(--lime);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.video-modal__header strong {
    display: block;
    margin-top: 4px;
    font-size: clamp(20px, 3vw, 28px);
}

.video-modal__close {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 8px;
    background: var(--white);
    color: var(--green-900);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.video-modal__body {
    aspect-ratio: 16 / 9;
    background: #011d10;
}

.video-modal__body iframe,
.video-modal__body video {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 920px) {
    .site-header {
        position: static;
    }

    .marquee {
        min-height: 40px;
    }

    .nav-shell,
    .campaign-bar,
    .hero-grid,
    .video-card,
    .order-panel {
        grid-template-columns: 1fr;
    }

    .campaign-bar {
        text-align: center;
    }

    .countdown {
        justify-self: center;
        width: min(100%, 330px);
    }

    .hero-media {
        justify-self: center;
    }

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

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

@media (max-width: 640px) {
    .container,
    .nav-shell {
        width: min(100% - 24px, 1004px);
    }

    .nav-shell {
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 14px 0;
    }

    .brand {
        justify-items: center;
        text-align: center;
    }

    .brand span {
        justify-self: center;
    }

    .header-actions {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        justify-content: center;
    }

    .header-actions .btn {
        width: 100%;
        min-height: 44px;
        padding: 10px 8px;
        font-size: 11px;
        text-align: center;
        white-space: nowrap;
    }

    .campaign-bar {
        gap: 16px;
        padding-block: 20px;
    }

    .campaign-copy strong {
        font-size: 30px;
        line-height: 1.05;
    }

    .campaign-copy span {
        font-size: 16px;
        line-height: 1.35;
    }

    .countdown {
        width: 100%;
        min-width: 0;
        border-radius: 8px;
        padding: 22px 18px 18px;
    }

    .countdown-time strong,
    .countdown-time i {
        font-size: 42px;
        line-height: 1;
    }

    .countdown-labels {
        margin-top: 10px;
        font-size: 13px;
        gap: 4px;
    }

    .hero {
        padding-top: 44px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .feature-row,
    .trust-grid,
    .package-grid,
    .form-row,
    .stats-grid,
    .review-grid {
        grid-template-columns: 1fr;
    }

    .feature-row {
        gap: 18px;
    }

    .feature-row .feature-item {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 12px;
        align-items: center;
    }

    .feature-row span {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .feature-row strong {
        font-size: 24px;
        line-height: 1.12;
    }

    .feature-row small {
        grid-column: 2;
        margin-top: -4px;
        font-size: 15px;
        line-height: 1.4;
    }

    .payment-options {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
    }

    .payment-card {
        min-height: 82px;
        padding: 8px 4px;
    }

    .payment-icon {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .payment-card > span:last-child {
        font-size: 10px;
    }

    .payment-card small {
        font-size: 9px;
    }

    .review-slide {
        grid-template-columns: 1fr;
    }

    .social-proof {
        align-items: flex-start;
        flex-direction: column;
    }

    .video-card {
        min-height: auto;
    }

    .play-button img {
        height: auto;
    }

    .order-panel {
        padding: 20px;
    }

    .faq-item button {
        min-height: 70px;
        padding: 20px;
    }

    .faq-content {
        padding: 0 20px 22px;
    }
}

/* Tekurun responsive final controls */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    overflow-wrap: break-word;
}

picture,
img,
video,
iframe {
    max-width: 100%;
}

.site-header,
.nav-shell,
.campaign-bar,
.hero-grid,
.video-card,
.package-grid,
.order-panel,
.stats-grid,
.review-slide,
.signature-band .container {
    min-width: 0;
}

.nav-shell > *,
.hero-grid > *,
.video-card > *,
.package-grid > *,
.order-panel > *,
.stats-grid > *,
.review-slide > * {
    min-width: 0;
}

.brand {
    max-width: 100%;
}

.brand picture,
.brand img {
    display: block;
    max-width: 180px;
    max-height: 54px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.header-actions .btn,
.btn-hero,
.package-select,
.panel-label,
.badges span {
    white-space: normal;
    text-align: center;
}

.hero h1,
.section-heading h2,
.video-copy h2,
.campaign-copy strong,
.package-card h3,
.summary h2,
.checkout h2,
.faq-item button,
.signature-band strong,
.signature-band span {
    overflow-wrap: anywhere;
    word-break: normal;
}

.hero-copy > p,
.video-copy p,
.package-card p,
.package-card li,
.review-slide p,
.faq-content p {
    overflow-wrap: anywhere;
}

.hero-media {
    max-width: 100%;
}

.hero-media picture,
.hero-media img {
    width: 100%;
}

.hero-media img {
    object-fit: cover;
    object-position: center;
}

.package-card {
    overflow: hidden;
}

.package-card picture {
    display: block;
    width: 100%;
}

.package-card img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.badges {
    flex-wrap: wrap;
}

.badges span {
    min-width: 0;
}

.price {
    overflow-wrap: anywhere;
}

.order-frame-card {
    min-width: 0;
}

.order-iframe {
    width: 100%;
    min-height: 760px;
}

.review-slider,
.review-track {
    min-width: 0;
}

.review-card {
    min-width: 0;
}

.video-modal__dialog {
    max-height: calc(100vh - 36px);
}

.video-modal__body {
    max-height: calc(100vh - 120px);
}

@media (max-width: 1180px) {
    .container,
    .nav-shell {
        width: min(100% - 28px, 1004px);
    }

    .campaign-bar {
        padding-inline: 24px;
    }

    .package-grid {
        gap: 22px;
    }

    .order-panel {
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

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

@media (max-width: 920px) {
    .site-header {
        position: static;
    }

    .nav-shell {
        padding-block: 14px;
    }

    .hero-grid {
        gap: 34px;
    }

    .hero-media {
        width: min(100%, 520px);
        justify-self: center;
    }

    .video-card {
        overflow: hidden;
    }

    .order-panel {
        grid-template-columns: 1fr;
    }

    .summary,
    .checkout {
        min-width: 0;
    }
}

@media (max-width: 720px) {
    .campaign-bar {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .countdown {
        width: min(100%, 360px);
        min-width: 0;
        justify-self: center;
    }

    .package-grid,
    .review-slide,
    .trust-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .package-card {
        max-width: 480px;
        width: 100%;
        margin-inline: auto;
    }

    .video-card {
        grid-template-columns: 1fr;
    }

    .play-button img {
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }

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

@media (max-width: 640px) {
    .container,
    .nav-shell {
        width: min(100% - 22px, 1004px);
    }

    .nav-shell {
        gap: 14px;
    }

    .header-actions {
        width: 100%;
        grid-template-columns: 1fr 1fr;
    }

    .header-actions .btn {
        min-height: 44px;
        padding: 10px 8px;
        font-size: 11px;
        line-height: 1.15;
    }

    .brand picture,
    .brand img {
        max-width: 154px;
        max-height: 46px;
    }

    .campaign-copy strong {
        font-size: 30px;
        line-height: 1.05;
    }

    .campaign-copy span {
        font-size: 14px;
    }

    .hero {
        padding-block: 42px;
    }

    .hero h1 {
        font-size: 38px;
        line-height: 1.02;
    }

    .btn-hero {
        min-height: 58px;
        font-size: 17px;
        padding-inline: 18px;
    }

    .feature-row {
        grid-template-columns: 1fr;
    }

    .social-proof {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .package-card {
        padding: 18px;
    }

    .badges {
        position: static;
        margin-bottom: 12px;
    }

    .badges span {
        min-height: 36px;
    }

    .price {
        font-size: 32px;
    }

    .order-panel {
        padding: 18px;
    }

    dl div {
        gap: 10px;
    }

    dt,
    dd {
        font-size: 14px;
    }

    .total {
        font-size: 18px;
    }

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

    .faq-item button {
        min-height: 68px;
        padding: 18px;
        font-size: 15px;
    }

    .faq-content {
        padding-inline: 18px;
    }

    .signature-band strong {
        font-size: 18px;
    }

    .video-modal {
        padding: 10px;
    }

    .video-modal__header {
        padding: 14px;
    }

    .video-modal__close {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 420px) {
    .container,
    .nav-shell {
        width: min(100% - 18px, 1004px);
    }

    .header-actions {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 34px;
    }

    .campaign-copy strong {
        font-size: 26px;
    }

    .countdown-time strong,
    .countdown-time i {
        font-size: 34px;
    }

    .package-card h3 {
        font-size: 20px;
    }

    .price {
        font-size: 28px;
    }

    .order-panel {
        padding: 14px;
    }

    dl div {
        display: block;
    }

    dd {
        margin-top: 4px;
        text-align: left;
    }

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-media {
        animation: none !important;
    }

    .marquee-track {
        animation: none !important;
    }
}

/* SAFE MOBILE PRODUCT FLOW REVISION */

.hero-media-mobile,
.mobile-autoplay-video,
.mobile-package-reviews {
    display: none;
}

@media (max-width: 720px) {
    body {
        font-size: 14px;
        line-height: 1.45;
    }

    .container,
    .nav-shell {
        width: min(100% - 18px, 1004px);
    }

    .campaign-bar {
        gap: 12px;
        padding: 14px 9px;
    }

    .campaign-copy strong {
        font-size: 24px;
        line-height: 1.05;
    }

    .campaign-copy span {
        font-size: 12px;
    }

    .countdown {
        width: min(100%, 292px);
        padding: 14px 12px 12px;
    }

    .countdown-time strong,
    .countdown-time i {
        font-size: 30px;
    }

    .hero {
        padding: 30px 0;
    }

    .hero h1 {
        margin-bottom: 14px;
        font-size: 30px;
        line-height: 1.03;
    }

    .hero-media-desktop {
        display: none !important;
    }

    .hero-media-mobile {
        display: block;
        width: min(100%, 315px);
        margin: 0 auto 16px;
    }

    .hero-media-mobile img {
        max-height: 340px;
        border-radius: 10px;
        object-fit: cover;
    }

    .hero-copy > p {
        font-size: 13px;
    }

    .feature-row .feature-item {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 10px;
        padding: 12px;
    }

    .feature-row span {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .feature-row strong {
        font-size: 17px;
    }

    .feature-row small {
        font-size: 12px;
    }

    .video-section {
        padding: 32px 0;
    }

    .video-card {
        display: block;
        min-height: auto;
        padding: 0;
        background: transparent;
        color: var(--ink);
        overflow: visible;
    }

    .video-card.has-direct-video .play-button {
        display: none;
    }

    .video-card.has-embed-video .play-button {
        width: min(100%, 330px);
        aspect-ratio: 9 / 16;
        margin: 0 auto;
        overflow: hidden;
        border-radius: 14px;
        background: var(--green-950);
        box-shadow: 0 16px 36px rgba(7, 48, 29, 0.18);
    }

    .video-card.has-embed-video .play-button img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mobile-autoplay-video {
        width: min(100%, 330px);
        aspect-ratio: 9 / 16;
        margin: 0 auto;
        overflow: hidden;
        border-radius: 14px;
        background: var(--green-950);
        box-shadow: 0 16px 36px rgba(7, 48, 29, 0.18);
    }

    .video-card.has-direct-video .mobile-autoplay-video {
        display: block;
    }

    .mobile-autoplay-video video {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    .video-copy {
        width: min(100%, 330px);
        margin: 12px auto 0;
        padding: 0;
        text-align: left;
    }

    .video-copy h2 {
        display: none;
    }

    .video-copy p {
        margin-top: 10px;
        color: var(--muted);
        font-size: 13px;
        font-weight: 600;
    }

    .packages {
        padding: 34px 0 40px;
    }

    .section-heading {
        margin-bottom: 18px;
    }

    .section-heading h2 {
        font-size: 23px;
        line-height: 1.08;
    }

    .package-grid {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .package-card {
        max-width: none;
        display: grid;
        grid-template-columns: 22px 58px minmax(0, 1fr) auto;
        align-items: center;
        gap: 9px;
        padding: 11px;
        border-width: 2px;
        border-radius: 12px;
        box-shadow: 0 8px 22px rgba(7, 48, 29, 0.08);
        cursor: pointer;
    }

    .package-card::before {
        content: "";
        width: 18px;
        height: 18px;
        border: 2px solid var(--green-600);
        border-radius: 50%;
        background: var(--white);
        box-shadow: inset 0 0 0 4px var(--white);
    }

    .package-card.is-selected::before {
        background: var(--green-600);
    }

    .package-card picture {
        display: block;
        width: 58px;
    }

    .package-card img {
        width: 58px;
        height: 58px;
        margin: 0;
        border-radius: 8px;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }

    .package-card h3 {
        margin: 0;
        font-size: 13px;
        line-height: 1.2;
    }

    .package-card p,
    .package-card ul,
    .price-note,
    .package-card small,
    .badges {
        display: none !important;
    }

    .package-card .price {
        margin: 0;
        font-size: 15px;
        white-space: nowrap;
    }

    .package-select {
        grid-column: 3 / 5;
        min-height: 34px;
        margin-top: 2px;
        border-radius: 8px;
        font-size: 10px;
    }

    .mobile-package-reviews {
        display: block;
        margin-top: 22px;
    }

    .mobile-package-reviews .section-heading {
        margin-bottom: 12px;
        text-align: left;
    }

    .mobile-package-reviews .section-heading h2 {
        font-size: 21px;
    }

    .mobile-review-list {
        display: grid;
        gap: 10px;
    }

    .mobile-review-card {
        border: 1px solid var(--line);
        border-radius: 12px;
        background: var(--white);
        padding: 13px;
        box-shadow: 0 8px 22px rgba(7, 48, 29, 0.06);
    }

    .mobile-review-card b {
        display: block;
        margin-bottom: 6px;
        color: var(--green-700);
        font-size: 12px;
    }

    .mobile-review-card p {
        margin: 0;
        color: var(--ink);
        font-size: 13px;
        line-height: 1.45;
    }

    .mobile-review-card small {
        display: block;
        margin-top: 8px;
        color: var(--muted);
        font-size: 11px;
        font-weight: 700;
    }

    main > .reviews.section-light {
        display: none;
    }

    .order-panel {
        margin-top: 22px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px;
    }

    .stats-grid strong {
        padding: 10px 6px;
    }

    .stats-grid em {
        font-size: 28px;
    }

    .stats-grid span {
        font-size: 12px;
    }
}

@media (max-width: 420px) {
    .hero h1 {
        font-size: 27px;
    }

    .campaign-copy strong {
        font-size: 22px;
    }

    .countdown-time strong,
    .countdown-time i {
        font-size: 28px;
    }

    .hero-media-mobile {
        width: min(100%, 300px);
    }

    .hero-media-mobile img {
        max-height: 315px;
    }

    .package-card {
        grid-template-columns: 22px 52px minmax(0, 1fr) auto;
        gap: 8px;
        padding: 10px;
    }

    .package-card picture,
    .package-card img {
        width: 52px;
        height: 52px;
    }

    .package-card h3 {
        font-size: 12px;
    }

    .package-card .price {
        font-size: 14px;
    }
}