:root {
    --ink: #101828;
    --muted: #667085;
    --line: #e4e7ec;
    --paper: #ffffff;
    --soft: #f6f8fb;
    --navy: #0b1b34;
    --blue: #185adb;
    --coral: #f35f3d;
    --gold: #f7b955;
    --green: #178461;
    --shadow: 0 18px 46px rgba(16, 24, 40, .12);
    --deep-shadow: 0 30px 80px rgba(2, 6, 23, .32);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding-bottom: 82px;
    color: var(--ink);
    background: var(--soft);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

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

.announcement-bar {
    overflow: hidden;
    color: #111827;
    background: linear-gradient(90deg, #f7b955, #f59e0b);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.announcement-bar div {
    display: inline-block;
    padding: 9px 0;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    from { transform: translateX(100vw); }
    to { transform: translateX(-100%); }
}

.site-header,
.admin-topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-weight: 900;
    min-width: 0;
}

.brand span:last-child {
    display: grid;
    gap: 2px;
}

.brand small {
    display: none;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
}

.brand b {
    display: block;
    color: var(--navy);
    font-family: Poppins, Inter, system-ui, sans-serif;
    font-size: 20px;
    letter-spacing: .01em;
    line-height: 1;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(145deg, var(--navy), var(--blue));
    box-shadow: 0 12px 26px rgba(24, 90, 219, .22);
    font-size: 13px;
}

.brand-mark.logo-mark {
    overflow: hidden;
    padding: 3px;
    background: #fff;
    border: 1px solid rgba(24, 90, 219, .12);
}

.brand-mark.logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

nav,
.header-cta {
    display: none;
}

.header-offer {
    order: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    padding: 9px 10px;
    border-radius: 8px;
    color: #111827;
    background: linear-gradient(90deg, var(--gold), #f59e0b);
    font-size: 12.5px;
    font-weight: 900;
    text-align: center;
    line-height: 1.35;
}

.menu-toggle {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--navy);
    background: #fff;
    box-shadow: 0 10px 24px rgba(16, 24, 40, .08);
    cursor: pointer;
}

.site-header nav.is-open {
    order: 4;
    display: grid;
    width: 100%;
    gap: 8px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
}

.site-header nav.is-open a {
    padding: 12px;
    border-radius: 8px;
    color: var(--navy);
    font-weight: 900;
}

.site-header nav.is-open a:hover {
    background: #f2f6ff;
}

.hero {
    display: grid;
    gap: 18px;
    padding: 22px 14px 34px;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(8, 24, 46, .96), rgba(8, 24, 46, .9)),
        radial-gradient(circle at 18% 10%, rgba(247, 185, 85, .24), transparent 32%);
}

.trust-wall {
    order: 1;
    display: grid;
    gap: 10px;
}

.trust-wall-head {
    display: grid;
    gap: 5px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
}

.trust-wall-head span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.trust-wall-head strong {
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
}

.review-feature,
.real-video-review,
.demo-video-shell {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #020617;
    box-shadow: var(--deep-shadow);
}

.review-feature {
    height: 300px;
    border: 1px solid rgba(255, 255, 255, .22);
}

.review-feature video,
.real-video-review video,
.demo-video-shell video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #020617;
}

.review-feature::after,
.real-video-review::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(2, 6, 23, .84));
    pointer-events: none;
}

.review-caption {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 3;
    display: grid;
    gap: 3px;
}

.review-caption strong {
    color: #fff;
    font-size: 18px;
}

.review-caption span {
    color: rgba(255, 255, 255, .76);
    font-size: 12px;
    font-weight: 800;
}

.review-play,
.video-toggle {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin: auto;
    border: 0;
    border-radius: 50%;
    color: var(--coral);
    background: #fff;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .24);
    cursor: pointer;
}

.is-playing .review-play,
.is-playing > button,
.is-playing .review-caption,
.is-playing > span,
.is-playing::after {
    opacity: 0;
    pointer-events: none;
}

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

.review-thumb {
    position: relative;
    overflow: hidden;
    height: 66px;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, .72);
    border-radius: 8px;
    background: #020617;
    cursor: pointer;
}

.review-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(2, 6, 23, .82));
}

.review-thumb span {
    position: absolute;
    right: 6px;
    top: 6px;
    z-index: 2;
    color: #fff;
    font-size: 12px;
}

.review-thumb b {
    position: absolute;
    right: 6px;
    bottom: 6px;
    left: 6px;
    z-index: 2;
    display: block;
    color: #fff;
    font-size: 9px;
    line-height: 1.15;
    text-align: left;
}

.hero-copy {
    order: 2;
    display: flex;
    flex-direction: column;
}

.eyebrow {
    margin: 0 0 9px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
    font-weight: 900;
}

.hero h1 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
}

.hero-subtitle {
    margin: 0;
    color: rgba(255, 255, 255, .84);
    font-size: 16px;
    line-height: 1.6;
}

.hero-trust-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
}

.hero-trust-row div {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
}

.hero-trust-row i {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    margin-bottom: 9px;
    border-radius: 8px;
    color: var(--gold);
    background: rgba(255, 255, 255, .12);
}

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

.hero-trust-row strong {
    color: #fff;
    font-size: 24px;
    line-height: 1;
}

.hero-trust-row span {
    margin-top: 6px;
    color: rgba(255, 255, 255, .76);
    font-size: 12px;
    font-weight: 800;
}

.hero-country-ribbon {
    overflow: hidden;
    margin: 16px 0 0;
    padding: 10px 0;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
}

.country-track {
    display: flex;
    gap: 10px;
    width: max-content;
    animation: country-marquee 34s linear infinite;
}

.country-track span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, .1);
    font-size: 12px;
    font-weight: 900;
}

@keyframes country-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.hero-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.hero-includes span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 11px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    color: rgba(255, 255, 255, .9);
    background: rgba(255, 255, 255, .1);
    font-size: 12px;
    font-weight: 900;
}

.hero-includes i {
    color: var(--gold);
}

.hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
}

.hero-micro-proof {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    color: rgba(255, 255, 255, .86);
    background: rgba(255, 255, 255, .08);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.45;
}

.hero-micro-proof img {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, .82);
    border-radius: 50%;
    object-fit: cover;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 13px 18px;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 900;
    text-align: center;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #ff714f, #e84e2e);
    box-shadow: 0 14px 30px rgba(243, 95, 61, .32);
}

.btn-secondary {
    color: var(--navy);
    background: #fff;
}

.mini-price-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 16px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
}

.mini-price-card > div:first-child {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 8px;
}

.mini-price-card span,
.mini-price-card del {
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
    font-weight: 800;
}

.mini-price-card .batch-closed-line {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 4px;
    color: #ffd7d0;
}

.mini-price-card strong {
    display: inline-block;
    margin: 0 6px;
    color: #fff;
    font-size: 24px;
}

.seat-pill {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    border-radius: 999px;
    color: #fff;
    background: rgba(243, 95, 61, .92);
    font-size: 12px;
    font-weight: 900;
}

.batch-status-stack {
    display: grid;
    justify-items: end;
    gap: 7px;
    min-width: max-content;
}

.sold-out-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    max-width: 100%;
    padding: 7px 10px;
    border-radius: 999px;
    color: #fff;
    background: rgba(15, 23, 42, .86);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
}

.hero-panel {
    order: 3;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow);
}

.booking-head {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
}

.seat-alert {
    width: fit-content;
    padding: 7px 10px;
    border-radius: 999px;
    color: #8a310c;
    background: #fff0d8;
    font-size: 12px;
    font-weight: 900;
}

.sold-out-alert {
    color: #fff;
    background: #0f172a;
}

.booking-head h2 {
    margin: 0;
    font-size: 26px;
    line-height: 1.1;
}

.booking-head p,
.checkout-note,
.guarantee-note,
.form-message,
.muted {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.guarantee-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 10px;
    border: 1px solid #d1fadf;
    border-radius: 8px;
    color: #166534;
    background: #f0fdf4;
    font-weight: 800;
}

.pricing-guarantee {
    margin: 0 0 14px;
}

.booking-form {
    display: grid;
    gap: 13px;
}

label,
legend {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
}

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

.phone-row {
    display: grid;
    grid-template-columns: minmax(104px, .34fr) minmax(0, 1fr);
    gap: 8px;
}

.phone-row select {
    padding-right: 8px;
}

input::placeholder {
    color: #98a2b3;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(24, 90, 219, .12);
}

fieldset {
    padding: 0;
    margin: 0;
    border: 0;
}

.batch-grid {
    display: grid;
    gap: 10px;
}

.batch-card {
    display: grid;
    gap: 5px;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 8px;
    cursor: pointer;
    background: #fff;
}

.batch-card:has(input:checked) {
    border-color: var(--blue);
    background: #eff5ff;
}

.batch-card input {
    position: absolute;
    width: 1px;
    min-height: 0;
    height: 1px;
    opacity: 0;
}

.batch-card > i {
    color: var(--blue);
}

.batch-card span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.batch-card .batch-date {
    color: var(--ink);
    font-size: 14px;
    font-weight: 900;
}

.batch-card em {
    color: var(--green);
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
}

.trust-section,
.urgency-strip,
.quick-benefits,
.section,
.final-cta,
.site-footer {
    padding-right: 14px;
    padding-left: 14px;
}

.trust-section {
    display: grid;
    gap: 14px;
    padding-top: 20px;
    padding-bottom: 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.structured-proof {
    align-items: center;
}

.proof-copy {
    display: grid;
    gap: 4px;
}

.proof-copy strong {
    color: var(--navy);
    font-size: 18px;
    line-height: 1.2;
}

.proof-copy span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.student-stack {
    display: flex;
    padding-left: 12px;
}

.student-stack img {
    width: 54px;
    height: 54px;
    margin-left: -12px;
    border: 3px solid #fff;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 22px rgba(16, 24, 40, .12);
}

.trust-logos,
.quick-benefits,
.feature-grid,
.journey-roadmap,
.review-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.trust-logos span,
.quick-benefits article,
.feature-grid article,
.journey-roadmap article,
.review-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(16, 24, 40, .06);
}

.trust-logos span {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 13px;
    font-size: 13px;
    font-weight: 900;
}

.trust-logos i,
.quick-benefits i,
.card-icon {
    color: var(--blue);
}

.urgency-strip {
    display: grid;
    gap: 12px;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    background: linear-gradient(90deg, #0b1b34, #123a58);
}

.urgency-strip div {
    display: grid;
    gap: 6px;
}

.urgency-strip i {
    color: var(--gold);
}

.urgency-strip span {
    color: rgba(255, 255, 255, .76);
    font-size: 14px;
    line-height: 1.5;
}

.quick-benefits {
    padding-top: 18px;
    padding-bottom: 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.structured-benefits {
    align-items: stretch;
}

.structured-benefits .section-head {
    grid-column: 1 / -1;
    margin-bottom: 2px;
}

.structured-benefits .section-head h2 {
    margin-bottom: 0;
    font-size: 25px;
}

.quick-benefits article {
    display: grid;
    gap: 5px;
    padding: 16px;
}

.quick-benefits i,
.card-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 6px;
    border-radius: 8px;
    background: #eff5ff;
}

.quick-benefits span,
.feature-grid p,
.journey-roadmap p,
.review-card p,
.trainer-section p,
.demo-section p,
.section-head p,
.faq-section p {
    color: var(--muted);
    line-height: 1.6;
}

.section {
    padding-top: 42px;
    padding-bottom: 42px;
    background: #fff;
}

.section-head {
    margin-bottom: 22px;
}

.section h2,
.final-cta h2 {
    margin: 0 0 12px;
    font-size: 31px;
    line-height: 1.06;
}

.journey-section {
    background: #f6f8fb;
}

.journey-roadmap article {
    overflow: hidden;
}

.journey-roadmap img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.journey-roadmap h3,
.journey-roadmap p,
.journey-roadmap span {
    margin-right: 16px;
    margin-left: 16px;
}

.journey-roadmap span,
.course-badge {
    display: inline-flex;
    width: fit-content;
    margin-top: 16px;
    padding: 7px 10px;
    border-radius: 999px;
    color: #8a310c;
    background: #fff0d8;
    font-size: 12px;
    font-weight: 900;
}

.trainer-section {
    display: grid;
    gap: 22px;
    color: #fff;
    background: linear-gradient(135deg, #08182e, #102c4c);
}

.trainer-section h2 {
    color: #fff;
}

.trainer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.trainer-badges span {
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
}

.trainer-portrait {
    position: relative;
}

.trainer-portrait img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--deep-shadow);
}

.trainer-stats {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: min(260px, calc(100% - 28px));
    padding: 18px;
    border-radius: 8px;
    color: var(--ink);
    background: rgba(255, 255, 255, .94);
}

.trainer-stats strong {
    display: block;
    color: var(--green);
    font-size: 52px;
    line-height: 1;
}

.demo-section {
    display: grid;
    gap: 22px;
    background: #f6f8fb;
}

.video-shell {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 8px solid #fff;
    border-radius: 8px;
    background: #020617;
    box-shadow: var(--shadow);
}

.video-shell iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.review-card {
    display: grid;
    gap: 13px;
    padding: 16px;
}

.testimonial-carousel {
    grid-auto-flow: column;
    grid-auto-columns: minmax(250px, 82vw);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    padding-bottom: 12px;
}

.testimonial-carousel .review-card {
    scroll-snap-align: start;
}

.review-card h3 {
    margin: 0;
    color: var(--navy);
    font-size: 17px;
    line-height: 1.2;
}

.review-person {
    display: flex;
    gap: 12px;
    align-items: center;
}

.review-person img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.review-person span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.video-review {
    position: relative;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    max-height: 420px;
    border-radius: 8px;
    background: #020617;
}

.video-review video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #020617;
}

.video-review::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(2, 6, 23, .82));
    pointer-events: none;
}

.video-review span {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 3;
    color: #fff;
    font-weight: 900;
}

.pricing-section {
    display: grid;
    gap: 22px;
    color: #fff;
    background: linear-gradient(135deg, #08182e, #102c4c);
}

.pricing-art img,
.faq-visual img,
.final-cta img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--deep-shadow);
}

.pricing-card {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
}

.pricing-card h2 {
    color: #fff;
}

.price-display {
    padding: 18px;
    margin: 18px 0;
    border-radius: 8px;
    color: var(--ink);
    background: #fff;
}

.price-display strong {
    display: block;
    color: var(--coral);
    font-size: 46px;
    line-height: 1;
}

.pricing-card ul {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0 0 18px;
    list-style: none;
}

.payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.payment-badges span {
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    font-size: 12px;
    font-weight: 900;
}

.faq-section {
    display: grid;
    gap: 22px;
    background: #f6f8fb;
}

.faq-section details {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.faq-section summary {
    cursor: pointer;
    font-size: 18px;
    font-weight: 900;
}

.final-cta {
    display: grid;
    gap: 22px;
    color: #fff;
    background: linear-gradient(135deg, #08182e, #123a58);
}

.final-cta h2 {
    color: #fff;
}

.final-cta p:not(.eyebrow) {
    color: rgba(255, 255, 255, .75);
}

.site-footer {
    display: grid;
    gap: 16px;
    padding-top: 28px;
    padding-bottom: 28px;
    background: #fff;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.policy-page {
    background: #fff;
}

.policy-header {
    position: sticky;
}

.policy-hero {
    padding: 44px 14px 30px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(8, 24, 46, .98), rgba(16, 44, 76, .94)),
        radial-gradient(circle at 82% 20%, rgba(247, 185, 85, .24), transparent 30%);
}

.policy-hero h1 {
    max-width: 920px;
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(34px, 8vw, 64px);
    line-height: 1.02;
}

.policy-hero p {
    max-width: 820px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 16px;
    line-height: 1.65;
}

.policy-hero span {
    display: inline-flex;
    margin-top: 18px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: rgba(255, 255, 255, .88);
    background: rgba(255, 255, 255, .1);
    font-size: 12px;
    font-weight: 900;
}

.policy-content {
    display: grid;
    gap: 14px;
    padding: 24px 14px 42px;
    background: #f6f8fb;
}

.policy-card {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(16, 24, 40, .06);
}

.policy-card h2 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 22px;
    line-height: 1.15;
}

.policy-card ul {
    display: grid;
    gap: 10px;
    padding-left: 20px;
    margin: 0;
}

.policy-card li,
.policy-card p {
    color: var(--muted);
    line-height: 1.65;
}

.policy-note {
    border-color: #fed7aa;
    background: #fff7ed;
}

.mobile-sticky {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 14px calc(13px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -14px 36px rgba(17, 32, 51, .14);
    backdrop-filter: blur(16px);
}

.mobile-sticky strong,
.mobile-sticky span,
.mobile-sticky del {
    display: block;
}

.mobile-sticky del {
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
}

.mobile-sticky span {
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
}

.mobile-sticky .btn {
    min-height: 54px;
    min-width: 142px;
    padding-inline: 20px;
}

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

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

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, .78);
    backdrop-filter: blur(10px);
}

.video-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 860px);
    padding: 12px;
    border-radius: 8px;
    background: #020617;
}

.video-modal-dialog video {
    width: 100%;
    max-height: 86vh;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    border-radius: 8px;
    background: #000;
}

.video-modal-close {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    color: var(--ink);
    background: #fff;
    cursor: pointer;
}

@media (min-width: 760px) {
    body {
        padding-bottom: 0;
    }

    .brand small,
    nav,
    .header-cta {
        display: flex;
    }

    .brand b {
        font-size: 22px;
    }

    .brand-mark {
        width: 60px;
        height: 60px;
    }

    .menu-toggle {
        display: none;
    }

    .header-offer {
        order: initial;
        width: auto;
        min-width: 260px;
        padding: 9px 13px;
    }

    .site-header nav {
        gap: 18px;
        align-items: center;
    }

    .site-header,
    .admin-topbar {
        padding: 14px clamp(16px, 4vw, 56px);
    }

    .hero {
        grid-template-columns: minmax(0, .95fr) minmax(390px, .9fr);
        align-items: start;
        gap: 28px;
        padding: clamp(42px, 5vw, 78px) clamp(16px, 4vw, 62px) 54px;
    }

    .hero-copy {
        order: 1;
    }

    .trust-wall {
        order: 2;
    }

    .hero-panel {
        grid-column: 1 / -1;
        width: min(100%, 760px);
        margin: 0 auto;
    }

    .hero-trust-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-actions {
        grid-template-columns: auto auto;
        justify-content: start;
    }

    .trust-section {
        grid-template-columns: auto minmax(220px, .8fr) 1fr;
        padding-right: clamp(16px, 5vw, 72px);
        padding-left: clamp(16px, 5vw, 72px);
    }

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

    .trust-logos {
        grid-template-columns: repeat(4, 1fr);
    }

    .urgency-strip {
        grid-template-columns: minmax(0, 1fr) auto;
        padding-right: clamp(16px, 5vw, 72px);
        padding-left: clamp(16px, 5vw, 72px);
    }

    .quick-benefits {
        padding-right: clamp(16px, 5vw, 72px);
        padding-left: clamp(16px, 5vw, 72px);
    }

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

    .journey-roadmap {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonial-carousel {
        grid-auto-columns: minmax(300px, 31%);
    }

    .trainer-section,
    .demo-section,
    .pricing-section,
    .faq-section,
    .final-cta {
        grid-template-columns: minmax(0, .85fr) minmax(320px, 1fr);
    }

    .section,
    .final-cta,
    .site-footer {
        padding: clamp(54px, 7vw, 92px) clamp(16px, 5vw, 72px);
    }

    .policy-hero {
        padding: clamp(64px, 8vw, 96px) clamp(16px, 5vw, 72px) 46px;
    }

    .policy-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 34px clamp(16px, 5vw, 72px) 72px;
    }

    .policy-note {
        grid-column: 1 / -1;
    }

    .mobile-sticky {
        display: none;
    }
}

@media (min-width: 1180px) {
    .hero {
        grid-template-columns: minmax(0, .9fr) minmax(430px, .9fr) minmax(350px, .78fr);
    }

    .hero-panel {
        grid-column: auto;
        width: auto;
        margin: 0;
    }

    .trust-wall .review-feature {
        height: 330px;
    }
}

/* Final mobile stability pass: prevent mixed portrait/landscape videos from breaking the viewport. */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

main,
section,
.hero,
.hero > *,
.section,
.trust-wall,
.review-card,
.video-shell {
    min-width: 0;
    max-width: 100%;
}

.hero-copy > .hero-country-ribbon:not(.real-flag-ribbon) {
    display: none;
}

.real-flag-ribbon {
    display: block;
}

.country-track span {
    gap: 8px;
    min-width: max-content;
    white-space: nowrap;
}

.country-track img {
    width: 24px;
    height: 18px;
    border-radius: 3px;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .42);
}

.hero-country-ribbon {
    max-width: 100%;
    contain: paint;
}

.trust-wall {
    width: 100%;
    overflow: hidden;
}

.review-feature {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 13;
    max-height: 440px;
}

.review-feature video,
.real-video-review video,
.demo-video-shell video,
.demo-video-shell iframe {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #020617;
}

.review-feature video {
    object-fit: cover;
}

.review-mini-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
}

.review-thumb {
    height: auto;
    aspect-ratio: 3 / 4;
    min-width: 0;
}

.review-grid,
.all-review-grid {
    width: 100%;
}

.review-card {
    overflow: hidden;
}

.video-review {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    max-height: 420px;
}

.demo-video-shell {
    width: min(100%, 430px);
    aspect-ratio: 9 / 16;
    max-height: 560px;
    justify-self: center;
}

.demo-video-trigger {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(11, 27, 52, .96), rgba(24, 90, 219, .86)),
        radial-gradient(circle at 15% 10%, rgba(247, 185, 85, .32), transparent 34%);
    cursor: pointer;
    box-shadow: var(--deep-shadow);
}

.demo-video-trigger::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .09) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, .08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(2, 6, 23, .05), rgba(2, 6, 23, .62));
    background-size: 42px 42px, 42px 42px, auto;
    opacity: .8;
}

.demo-preview-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 8px;
    color: var(--gold);
    background: rgba(255, 255, 255, .12);
    font-size: 24px;
    backdrop-filter: blur(12px);
}

.demo-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    color: var(--navy);
    background: var(--gold);
    transform: translate(-50%, -50%);
    box-shadow: 0 20px 46px rgba(2, 6, 23, .32);
}

.demo-video-trigger strong {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 2;
    text-align: left;
    font-size: clamp(20px, 4vw, 30px);
    line-height: 1.1;
}

.top-demo-section {
    border-top: 1px solid rgba(15, 23, 42, .08);
    border-bottom: 1px solid rgba(15, 23, 42, .08);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(239, 245, 255, .92)),
        radial-gradient(circle at 85% 10%, rgba(247, 185, 85, .28), transparent 28%);
}

.top-demo-section .btn {
    margin-top: 18px;
}

.demo-open-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    padding: 10px 13px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--navy);
    background: #fff;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(16, 24, 40, .08);
}

.external-demo-card {
    display: grid;
    place-items: center;
    gap: 12px;
    width: 100%;
    height: 100%;
    padding: 26px;
    color: #fff;
    text-align: center;
    background:
        linear-gradient(145deg, rgba(11, 27, 52, .94), rgba(24, 90, 219, .86)),
        radial-gradient(circle at 20% 0%, rgba(247, 185, 85, .35), transparent 32%);
}

.external-demo-card > i {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: var(--navy);
    background: #fff;
    font-size: 26px;
    box-shadow: 0 18px 36px rgba(2, 6, 23, .26);
}

.external-demo-card strong {
    font-size: clamp(22px, 4vw, 34px);
    line-height: 1.05;
}

.external-demo-card span {
    max-width: 420px;
    color: rgba(255, 255, 255, .82);
    line-height: 1.5;
}

.mini-price-card {
    align-items: center;
    gap: 10px;
}

.seat-pill,
.seat-alert {
    width: fit-content;
    max-width: 100%;
    padding: 7px 10px;
    font-size: 12px;
    line-height: 1.2;
}

@media (max-width: 759px) {
    .announcement-bar div {
        display: block;
        width: 100%;
        padding: 9px 12px;
        text-align: center;
        white-space: normal;
        animation: none;
    }

    .hero {
        grid-template-columns: minmax(0, 1fr);
        padding-right: 12px;
        padding-left: 12px;
    }

    .trust-wall {
        order: 2;
    }

    .hero-copy {
        order: 1;
    }

    .hero-panel {
        order: 3;
    }

    .hero h1 {
        font-size: clamp(32px, 10vw, 42px);
        line-height: 1.04;
    }

    .review-feature {
        aspect-ratio: 9 / 13;
        max-height: 520px;
    }

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

    .hero-trust-row div {
        padding: 10px 8px;
    }

    .hero-trust-row strong {
        font-size: 18px;
    }

    .hero-trust-row span {
        font-size: 10px;
        line-height: 1.25;
    }

    .hero-includes span {
        flex: 1 1 calc(50% - 8px);
        justify-content: center;
        text-align: center;
        font-size: 12px;
    }

    .mini-price-card {
        flex-direction: column;
        align-items: stretch;
        justify-content: start;
    }

    .batch-status-stack {
        justify-items: start;
        min-width: 0;
    }

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

    .top-demo-section {
        padding-top: 34px;
        padding-bottom: 34px;
    }

    .top-demo-section .demo-video-shell {
        width: 100%;
        aspect-ratio: 16 / 9;
        max-height: none;
    }

    .top-demo-section .demo-open-link {
        width: 100%;
    }

    .country-track {
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        overflow: hidden;
        animation: none;
    }

    .country-track span {
        min-width: 0;
        padding: 7px 9px;
        font-size: 11px;
    }

    .country-track span:nth-child(n+13) {
        display: none;
    }
}

@media (min-width: 760px) {
    .review-feature {
        aspect-ratio: 4 / 5;
        height: auto;
        max-height: 390px;
    }

    .demo-video-shell {
        aspect-ratio: 16 / 10;
        width: 100%;
    }

    .top-demo-section .demo-video-shell {
        aspect-ratio: 16 / 9;
    }

    .top-demo-section {
        grid-template-columns: minmax(0, .82fr) minmax(360px, 1fr);
    }
}
