:root {
    --bg: #080a12;
    --panel: rgba(14, 18, 32, .86);
    --panel2: rgba(255, 255, 255, .07);
    --text: #f7f8ff;
    --muted: #a9b0c8;
    --line: rgba(255, 255, 255, .14);
    --blue: #12b8ff;
    --red: #ff244d;
    --orange: #ff8a00;
    --green: #35d98d;
    --shadow: 0 24px 70px rgba(0, 0, 0, .45);
}

/* Base */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background:
        radial-gradient(circle at 15% 10%, rgba(18, 184, 255, .22), transparent 34%),
        radial-gradient(circle at 90% 0%, rgba(255, 36, 77, .25), transparent 32%),
        linear-gradient(135deg, #070811 0%, #121625 50%, #070811 100%);
    color: var(--text);
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(120deg, transparent 0 45%, rgba(255, 255, 255, .035) 46% 47%, transparent 48% 100%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 16px);
    pointer-events: none;
}

a {
    color: #9be3ff;
}

p {
    margin: 0 0 12px;
}

label {
    display: block;
    font-weight: 750;
    font-size: .86rem;
    color: #dce3ff;
    margin-bottom: 6px;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .08);
    color: var(--text);
    border-radius: 14px;
    padding: 11px 12px;
    outline: none;
    font: inherit;
    transition: .18s;
}

textarea {
    min-height: 70px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(18, 184, 255, .8);
    box-shadow: 0 0 0 4px rgba(18, 184, 255, .12);
}

select option {
    color: #111;
}

.container {
    width: min(1120px, calc(100% - 28px));
    margin: auto;
}

.hidden {
    display: none !important;
}

.card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.alert {
    padding: 15px 18px;
    border-color: rgba(255, 138, 0, .45);
    background: rgba(255, 138, 0, .12);
    margin-bottom: 14px;
}

.muted,
.tag {
    color: var(--muted);
}

.muted {
    margin: .15rem 0 0;
}

/* Buttons */
.btn,
.btn-secondary,
.btn-mini {
    border: 0;
    text-decoration: none;
    cursor: pointer;
    color: white;
    font-weight: 950;
    border-radius: 16px;
    padding: 12px 18px;
    background: linear-gradient(135deg, var(--blue), var(--red));
    box-shadow: 0 12px 28px rgba(18, 184, 255, .14);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-secondary {
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: none;
}

.btn-mini {
    padding: 8px 11px;
    border-radius: 12px;
    font-size: .8rem;
    background: rgba(255, 36, 77, .16);
    border: 1px solid rgba(255, 36, 77, .28);
    box-shadow: none;
}

/* Registration form layout */
.kt-page {
    padding: 22px;
}

.kt-shell {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 360px minmax(0, 680px);
    gap: 22px;
    align-items: start;
}

.kt-side-panel {
    position: sticky;
    top: 22px;
    min-height: calc(100vh - 44px);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));
    overflow: hidden;
    box-shadow: var(--shadow);
}

.kt-side-panel::before {
    content: "";
    position: absolute;
    inset: -80px -60px auto auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(18, 184, 255, .22);
    filter: blur(15px);
}

.kt-side-panel::after {
    content: "";
    position: absolute;
    left: -80px;
    bottom: -80px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 36, 77, .23);
    filter: blur(18px);
}

.kt-side-panel > * {
    position: relative;
    z-index: 1;
}

.kt-logo-box {
    width: 96px;
    height: 96px;
    border-radius: 24px;
    background: rgba(0, 0, 0, .34);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .13);
    box-shadow: 0 0 28px rgba(18, 184, 255, .18);
    margin-bottom: 20px;
}

.kt-logo-box img {
    width: 74px;
    max-height: 74px;
    object-fit: contain;
}

.kt-eyebrow {
    text-transform: uppercase;
    letter-spacing: .13em;
    color: #8fe5ff;
    font-size: .75rem;
    font-weight: 900;
    margin: 0 0 8px;
}

.kt-side-panel h1,
.kt-summary-hero h1 {
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: .92;
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: -.04em;
}

.kt-side-panel p {
    color: var(--muted);
    line-height: 1.55;
}

.program-pill-row {
    display: flex;
    gap: 10px;
    margin: 22px 0;
}

.program-pill,
.badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 7px 12px;
    font-weight: 900;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.blue {
    background: rgba(18, 184, 255, .17);
    color: #9ee9ff;
    border: 1px solid rgba(18, 184, 255, .35);
}

.red {
    background: rgba(255, 36, 77, .18);
    color: #ff9aae;
    border: 1px solid rgba(255, 36, 77, .38);
}

.kt-visual-card {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    background: #0b0d16;
    margin-top: 20px;
    max-height: 260px;
}

.kt-visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: .88;
}

.kt-form-panel {
    width: 100%;
}

.compact-card {
    padding: 14px 16px;
    margin-bottom: 14px;
}

.compact-form {
    padding: 20px;
}

/* Wizard */
.wizard-progress {
    position: relative;
    overflow: hidden;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: .9rem;
    color: var(--muted);
    margin-bottom: 10px;
}

.progress-label strong {
    color: var(--text);
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, .1);
    border-radius: 999px;
    overflow: hidden;
}

.progress-bar span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--blue), var(--red));
    border-radius: inherit;
    transition: .25s;
}

.wizard-step {
    display: none;
}

.wizard-step.is-active {
    display: block;
}

.step-title {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}

.step-title.no-margin {
    margin-bottom: 0;
}

.step-title h2 {
    margin: 0;
    font-size: 1.45rem;
}

.step-kicker {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(18, 184, 255, .25), rgba(255, 36, 77, .25));
    border: 1px solid var(--line);
    font-weight: 1000;
}

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

.form-grid p {
    margin: 0 0 12px;
}

.check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 11px 12px;
    border-radius: 15px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .1);
    margin: 0;
}

.check input {
    width: auto;
    margin-top: 2px;
}

.consent-box {
    border-radius: 18px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(18, 184, 255, .08), rgba(255, 36, 77, .07));
    border: 1px solid rgba(255, 255, 255, .11);
    margin-top: 4px;
}

.participant-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.participant-tabs {
    display: flex;
    gap: 8px;
    overflow: auto;
    padding-bottom: 10px;
    margin-bottom: 12px;
}

.participant-tab {
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    color: var(--text);
    border-radius: 999px;
    padding: 9px 13px;
    font-weight: 850;
    white-space: nowrap;
    cursor: pointer;
}

.participant-tab.is-active {
    background: linear-gradient(135deg, rgba(18, 184, 255, .28), rgba(255, 36, 77, .18));
    border-color: rgba(18, 184, 255, .55);
}

.card-inner {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .1);
}

.participant {
    display: none;
}

.participant.is-active {
    display: block;
}

.participant-head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.participant-head h3 {
    margin: 0;
    font-size: 1.15rem;
}

.programHint {
    margin: 12px 0;
    padding: 11px 13px;
    border-radius: 14px;
    background: rgba(18, 184, 255, .08);
    border: 1px solid rgba(18, 184, 255, .2);
    font-weight: 850;
    color: #caefff;
}

.weeks {
    display: grid;
    gap: 9px;
    margin-top: 10px;
}

.weeks h4 {
    margin: 0 0 4px;
}

.week {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    border-radius: 15px;
    padding: 11px 12px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    font-weight: 600;
}

.week input {
    width: auto;
    margin-top: 3px;
}

.week small {
    color: var(--muted);
    margin-left: auto;
}

.week-full {
    opacity: 1;
    border-style: dashed;
}

.week-full input {
    accent-color: #ffb000;
}

.week-full::after {
    content: "No se cobra ahora";
    display: inline-flex;
    margin-left: .5rem;
    font-size: .72rem;
    opacity: .8;
}

.weeks-list .waitlist {
    border-style: dashed;
    opacity: .95;
}

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

.wizard-error {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 36, 77, .16);
    border: 1px solid rgba(255, 36, 77, .36);
    margin-top: 14px;
}

.wizard-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
}

.mini-summary {
    margin-top: 16px;
}

.mini-summary h3 {
    margin: 0 0 10px;
}

.summary-chip {
    display: grid;
    gap: 3px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .1);
    margin-bottom: 8px;
}

.summary-chip span,
.summary-chip small {
    color: var(--muted);
}

/* Summary */
.kt-summary-shell {
    width: min(860px, calc(100% - 28px));
    margin: 24px auto;
}

.kt-summary-hero {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 18px;
}

.kt-summary-hero img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 20px;
    background: rgba(0, 0, 0, .3);
    padding: 10px;
    border: 1px solid var(--line);
}

.kt-summary-hero p {
    color: var(--muted);
    margin: 0;
}

.summary-card {
    padding: 22px;
}

.summary-participant {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .1);
    margin: 12px 0;
}

.summary-participant h3 {
    margin: 0 0 8px;
}

.weeks-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0;
}

.weeks-list span {
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(18, 184, 255, .1);
    border: 1px solid rgba(18, 184, 255, .22);
    font-size: .85rem;
}

.sep {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .13);
    margin: 16px 0;
}

.totals {
    text-align: right;
}

.totals h2 {
    font-size: 2rem;
    color: #fff;
}

.actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-top: 18px;
}

.hero {
    padding: 40px 0;
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 4.5rem);
    line-height: .9;
    margin: 0 0 10px;
}

/* Public home */
.public-home {
    background: #05060b;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

.home-hero {
    position: relative;
    min-height: 92vh;
    padding: 22px clamp(18px, 4vw, 64px) 70px;
    isolation: isolate;
}

.home-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(32, 151, 255, .35), transparent 24%),
        radial-gradient(circle at 80% 15%, rgba(255, 43, 74, .34), transparent 25%),
        linear-gradient(135deg, #05060b 0%, #111322 55%, #05060b 100%);
    z-index: -3;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 90px),
        linear-gradient(20deg, transparent 0 52%, rgba(255, 255, 255, .04) 52% 53%, transparent 53%);
    opacity: .65;
    z-index: -2;
}

.home-hero::after {
    content: "";
    position: absolute;
    right: -14%;
    top: 12%;
    width: 52vw;
    height: 52vw;
    background: radial-gradient(circle, rgba(255, 255, 255, .12), transparent 58%);
    filter: blur(18px);
    z-index: -1;
}

.home-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    max-width: 1220px;
    margin: 0 auto 50px;
}

.home-logo img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 0 18px rgba(255, 255, 255, .2));
}

.home-nav-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.home-nav-actions a {
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .18);
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(10px);
}

.home-hero-inner {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.08fr .72fr;
    gap: 48px;
    align-items: center;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .16em;
    color: #7fd3ff;
    font-weight: 900;
    font-size: .78rem;
}

.hero-copy h1 {
    font-size: clamp(3rem, 7vw, 6.9rem);
    line-height: .88;
    margin: 18px 0 22px;
    letter-spacing: -.07em;
    text-transform: uppercase;
}

.hero-lead {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, .78);
    max-width: 740px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.btn.btn-primary {
    background: linear-gradient(135deg, #ff284f, #ff7a18);
    color: #fff;
    box-shadow: 0 20px 50px rgba(255, 43, 74, .3);
}

.btn.btn-ghost {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
}

.hero-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-badges span {
    font-size: .9rem;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    padding: 10px 12px;
    border-radius: 14px;
}

/* Public home visual image: optimized for 1024x1536 vertical poster */
.hero-visual {
    position: relative;
    width: 100%;
    max-width: 520px;
    justify-self: center;
    aspect-ratio: 2 / 3;
    min-height: auto;
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 30px 100px rgba(0, 0, 0, .55);
    background: #070a12;
}

.hero-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #070a12;
    filter: saturate(1.08) contrast(1.04);
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, .36) 100%);
    pointer-events: none;
}

.floating-card {
    position: absolute;
    z-index: 2;
    display: grid;
    gap: 2px;
    padding: 14px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .35);
}

.floating-card strong {
    font-size: 1.4rem;
    letter-spacing: .08em;
}

.floating-card span {
    font-size: .8rem;
    color: rgba(255, 255, 255, .8);
}

.floating-card.red {
    right: 22px;
    top: 22px;
    background: rgba(214, 25, 55, .58);
}

.floating-card.blue {
    left: 22px;
    bottom: 22px;
    background: rgba(20, 112, 255, .58);
}

/* Programs block */
.program-section {
    max-width: 1220px;
    margin: 0 auto;
    padding: 86px clamp(18px, 4vw, 64px);
}

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

.section-head h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
    margin: 12px 0;
    text-transform: uppercase;
    letter-spacing: -.04em;
}

.section-head p {
    color: rgba(255, 255, 255, .7);
}

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

.program-card {
    position: relative;
    border-radius: 28px;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
    overflow: hidden;
    min-height: 420px;
    background: rgba(255, 255, 255, .06);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}

.program-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    z-index: -1;
    opacity: .75;
}

.summer-card {
    background:
        radial-gradient(circle at center, rgba(37, 99, 235, .25), rgba(15, 23, 42, .95));
}

.summer-card::before {
    background: radial-gradient(circle, rgba(22, 145, 255, .55), transparent 58%);
}

.elite-card {
    background:
        radial-gradient(circle at center, rgba(220, 38, 38, .22), rgba(30, 10, 15, .95));
}

.elite-card::before {
    background: radial-gradient(circle, rgba(255, 42, 74, .55), transparent 58%);
}

.program-label {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(255, 255, 255, .12);
    letter-spacing: .12em;
}

.program-card h3 {
    margin: 28px 0 18px;
    font-size: 2rem;
    line-height: 1.05;
}

.program-description {
    margin-bottom: 22px;
    opacity: .85;
}

.program-card p,
.program-card li {
    color: rgba(255, 255, 255, .78);
}

.program-weeks {
    padding-left: 18px;
    margin: 0;
}

.program-weeks li {
    margin-bottom: 10px;
}

.price-grid {
    margin-top: 34px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .15);
    display: grid;
    grid-template-columns: 70px repeat(5, 1fr);
    gap: 20px;
    align-items: end;
}

.elite-card .price-grid {
    grid-template-columns: 70px repeat(4, 1fr);
}

.price-from {
    opacity: .9;
}

.price-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-item small {
    opacity: .75;
    font-size: .8rem;
}

.price-item strong {
    font-size: 2rem;
    font-weight: 800;
}

/* Info strip */
.home-info-strip {
    max-width: 1120px;
    margin: 0 auto 70px;
    padding: 0 clamp(18px, 4vw, 64px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.home-info-strip article {
    position: relative;
    padding: 26px 24px 24px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .04));
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 24px;
}

.home-info-strip strong {
    display: block;
    font-size: 1.8rem;
}

.home-info-strip span {
    display: block;
    color: rgba(255, 255, 255, .7);
    margin-top: 6px;
}

.info-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 2px;
    --border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 25px;
   -- background: radial-gradient(circle at top left, rgba(59, 130, 246, .45), rgba(15, 23, 42, .8));
    --border: 1px solid rgba(96, 165, 250, .35);
    box-shadow: 0 14px 32px rgba(37, 99, 235, .20);
}

/* Footer */
.home-footer {
    max-width: 1180px;
    margin: 40px auto 0;
    padding: 34px 24px 60px;
    border-top: 1px solid rgba(255, 255, 255, .10);
    display: grid;
    grid-template-columns: 180px 1fr 1fr 1fr;
    gap: 34px;
    align-items: center;
}

.footer-brand {
    width: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-brand img {
    width: 135px;
    height: auto !important;
    max-width: 100%;
    aspect-ratio: auto;
    object-fit: contain;
    display: block;
}

.footer-col strong {
    display: block;
    margin-bottom: 10px;
    color: #fff;
}

.footer-col p {
    margin: 6px 0;
    color: rgba(255, 255, 255, .72);
}

.footer-col a {
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
}

.footer-col a:hover {
    color: #93c5fd;
}

/* Responsive */
@media (max-width: 1000px) {
    .program-cards {
        grid-template-columns: 1fr;
    }

    .price-grid{
		display:grid;
		grid-template-columns:repeat(5,1fr);
		gap:12px;
	}

	.elite-card .price-grid{
		grid-template-columns:repeat(4,1fr);
	}
}

@media (max-width: 980px) {
    .kt-shell {
        grid-template-columns: 1fr;
    }

    .kt-side-panel {
        position: relative;
        top: 0;
        min-height: 0;
    }

    .kt-visual-card {
        display: none;
    }

    .kt-side-panel h1 {
        font-size: 2.4rem;
    }

    .kt-page {
        padding: 14px;
    }

    .compact-form {
        padding: 16px;
    }
}

@media (max-width: 900px) {
    .home-nav {
        align-items: flex-start;
    }

    .home-nav-actions {
        justify-content: flex-end;
    }

    .home-hero-inner,
    .program-cards,
    .home-info-strip {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        max-width: 440px;
        width: 100%;
        margin: 0 auto;
        aspect-ratio: 2 / 3;
    }

    .hero-copy h1 {
        font-size: 3.7rem;
    }

    .home-hero {
        min-height: auto;
    }

    .program-card {
        min-height: 380px;
    }
}

@media (max-width: 800px) {
    .home-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        margin: 0 auto;
    }

    .footer-brand img {
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .form-grid,
    .checks-grid {
        grid-template-columns: 1fr;
    }

    .participant-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .wizard-actions {
        position: sticky;
        bottom: 10px;
        background: rgba(8, 10, 18, .82);
        backdrop-filter: blur(12px);
        padding: 10px;
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 18px;
    }

    .wizard-actions .btn {
        flex: 1;
    }

    .kt-summary-hero {
        align-items: flex-start;
    }

    .kt-summary-hero h1 {
        font-size: 2rem;
    }

    .actions .btn {
        width: 100%;
    }

    .week {
        display: block;
    }

    .week input {
        margin-right: 8px;
    }

    .week small {
        display: block;
        margin: 4px 0 0;
    }
}

@media (max-width: 560px) {
    .home-logo img {
        height: 54px;
    }

    .home-nav {
        margin-bottom: 28px;
    }

    .home-nav-actions a {
        font-size: .82rem;
        padding: 8px 10px;
    }

    .hero-copy h1 {
        font-size: 2.9rem;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .hero-visual {
        max-width: 330px;
        border-radius: 24px;
        aspect-ratio: 2 / 3;
    }

    .program-card {
        padding: 24px;
    }

    .program-card h3 {
        font-size: 1.75rem;
    }

    .price-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:12px;
	}

	.elite-card .price-grid{
		grid-template-columns:repeat(4,1fr);
	}

    .home-footer {
        align-items: center;
    }
}

.registration-closed{
    display:flex;
    flex-direction:column;
    gap:6px;

    padding:16px 20px;
    border-radius:18px;

    background:rgba(255,36,77,.12);
    border:1px solid rgba(255,36,77,.35);

    color:#fff;
    min-width:320px;
}

.registration-closed strong{
    font-size:1rem;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.05em;
}

.registration-closed span{
    color:rgba(255,255,255,.75);
    font-size:.92rem;
}
@media (max-width:560px){

    .price-item strong{
        font-size:1.2rem;
    }

    .price-item small{
        font-size:.52rem;
    }
}