﻿/* ════ HERO ════ */
.hero {
    background: linear-gradient(158deg, var(--navy-dark) 0%, var(--navy) 52%, var(--teal) 100%);
    padding: 10rem 2.5rem 6rem;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 82% 18%, rgba(169,202,214,0.12) 0%, transparent 52%), radial-gradient(ellipse at 8% 85%, rgba(216,168,79,0.07) 0%, transparent 48%), linear-gradient(180deg, transparent 38%, rgba(7,37,58,0.5) 100%);
}

.hero-compass {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.045;
    pointer-events: none;
}

.hero-inner {
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--label);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--gold);
    padding: 0.3em 0.9em;
    border-radius: 2px;
    margin-bottom: 1.75rem;
    animation: fadeUp 0.8s ease both 0.1s;
}

.hero-badge::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--navy);
    opacity: 0.4;
}

.hero h1 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(3rem, 7.5vw, 7rem);
    color: var(--white);
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin-bottom: 1.75rem;
    max-width: 780px;
    animation: fadeUp 0.9s ease both 0.25s;
}

.hero h1 em {
    font-style: italic;
    font-weight: 300;
    color: var(--blue);
}

.hero-sub {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: rgba(169,202,214,0.7);
    max-width: 580px;
    line-height: 1.72;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.9s ease both 0.42s;
}

.hero-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeUp 0.9s ease both 0.58s;
    border-top: 1px solid rgba(169,202,214,0.12);
    padding-top: 1.75rem;
}

.hero-meta-pill {
    font-family: var(--label);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    color: rgba(169,202,214,0.48);
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.hero-meta-pill::before {
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.5;
    flex-shrink: 0;
}

/* ════ URGENCY BAND ════ */
.urgency {
    background: var(--gold-wash);
    border-top: 2px solid var(--gold);
    border-bottom: 1px solid var(--gold-pale);
    padding: 1.1rem 2.5rem;
}

.urgency-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.urgency-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.urgency-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%,100% {
        opacity: 0.5;
        transform: scale(1)
    }

    50% {
        opacity: 1;
        transform: scale(1.25)
    }
}

.urgency-text {
    font-family: var(--body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--ink-mid);
}

.urgency-text strong {
    font-weight: 600;
    color: var(--navy);
}

.urgency-cta {
    font-family: var(--label);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--navy);
    border: 1.5px solid var(--navy);
    padding: 0.52rem 1.2rem;
    border-radius: 2px;
    transition: all 0.22s;
    white-space: nowrap;
    flex-shrink: 0;
}

    .urgency-cta:hover {
        background: var(--navy);
        color: var(--white);
    }

/* ════ UTILITIES ════ */
.kicker {
    font-family: var(--label);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.9rem;
}

.k-teal {
    color: var(--teal);
}

.k-gold {
    color: var(--gold-dark);
}

.k-light {
    color: var(--blue);
    opacity: 0.72;
}

.k-sage {
    color: var(--sage);
}

.h2 {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.h2-navy {
    color: var(--navy);
}

.h2-white {
    color: var(--white);
}

.h2-em {
    font-style: italic;
    font-weight: 300;
}

.prose {
    font-family: var(--body);
    font-weight: 300;
    font-size: 1rem;
    color: var(--ink-muted);
    line-height: 1.88;
    margin-bottom: 1.25rem;
}

.prose:last-child {
    margin-bottom: 0;
}

.prose strong {
    font-weight: 600;
    color: var(--ink-mid);
}

/* ════ WHO IT'S FOR ════ */
.who {
    background: var(--white);
    padding: 8rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.who-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.who-layout {
    display: grid;
    grid-template-columns: 1fr 1px 1.5fr;
    gap: 6rem;
    align-items: start;
}

.who-rule {
    background: var(--cream-deep);
    align-self: stretch;
}

.who-left .h2 {
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    margin-bottom: 1.5rem;
}

.who-left .prose {
    margin-bottom: 1.75rem;
}

.who-belief {
    background: var(--gold-wash);
    border-left: 3px solid var(--gold);
    border-radius: 0 6px 6px 0;
    padding: 1.75rem 2rem;
}

.who-belief p {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.12rem;
    color: var(--navy);
    line-height: 1.6;
    margin: 0;
}

.who-right {
}

.who-fits {
    list-style: none;
    margin-top: 1rem;
}

.who-fit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--cream-deep);
}

.who-fit-item:first-child {
    padding-top: 0;
}

.who-fit-item:last-child {
    border-bottom: none;
}

.wfi-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--sage-wash);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.1rem;
}

.wfi-icon svg {
    width: 12px;
    height: 12px;
    stroke: var(--sage);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wfi-text {
    font-family: var(--body);
    font-size: 0.93rem;
    font-weight: 300;
    color: var(--ink-muted);
    line-height: 1.65;
}

.wfi-text strong {
    font-weight: 600;
    color: var(--ink-mid);
    display: block;
    margin-bottom: 0.15rem;
}

/* ════ PROGRAM OVERVIEW TABLE ════ */
.overview {
    background: var(--navy-dark);
    padding: 8rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.overview::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 90% 20%, rgba(31,111,115,0.2) 0%, transparent 52%);
}

.overview-inner {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.overview-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: end;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.overview-header .h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.overview-header p {
    font-family: var(--body);
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(169,202,214,0.5);
    line-height: 1.72;
    max-width: 240px;
    text-align: right;
}

/* Program cards grid */
.prog-overview-grid {
    display: grid;
    gap: 1.5px;
    background: rgba(169,202,214,0.08);
    border: 1.5px solid rgba(169,202,214,0.08);
}

.prog-row-3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5px;
}

.prog-row-2 {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1.5px;
    margin-top: 1.5px;
}

.poc {
    background: rgba(255,255,255,0.04);
    padding: 2.25rem 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid transparent;
    transition: background 0.28s, border-color 0.28s;
}

.poc:hover {
    background: rgba(255,255,255,0.09);
    border-bottom-color: var(--gold);
}

.poc-age {
    font-family: var(--label);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
}

.poc-format {
    font-family: var(--label);
    font-size: 0.58rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(169,202,214,0.38);
    display: block;
    margin-bottom: 1rem;
}

.poc h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 0.75rem;
}

.poc-desc {
    font-family: var(--body);
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(169,202,214,0.6);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 1.5rem;
}

.poc-tuition {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.poc-price {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -0.02em;
}

.poc-price-note {
    font-family: var(--label);
    font-size: 0.6rem;
    font-weight: 400;
    color: rgba(169,202,214,0.38);
    letter-spacing: 0.06em;
}

.poc-btns {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.poc-primary {
    font-family: var(--label);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--navy);
    background: var(--gold);
    padding: 0.62rem 1.2rem;
    border-radius: 2px;
    transition: all 0.22s;
    display: inline-block;
    white-space: nowrap;
}

.poc-primary:hover {
    background: var(--gold-champ);
    transform: translateY(-1px);
}

.poc-secondary {
    font-family: var(--label);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--sage-light);
    border: 1px solid rgba(142,174,150,0.28);
    padding: 0.62rem 1.2rem;
    border-radius: 2px;
    transition: all 0.22s;
    display: inline-block;
    white-space: nowrap;
}

.poc-secondary:hover {
    border-color: var(--sage-light);
    color: var(--white);
}

/* ════ SCHEDULE & ENROLLMENT ════ */
.schedule {
    background: var(--cream);
    padding: 8rem 2.5rem;
    border-top: 1px solid var(--cream-deep);
}

.schedule-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.schedule-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Schedule table */
.sched-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.sched-table th {
    font-family: var(--label);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 2px solid var(--cream-deep);
    background: var(--cream-mid);
}

.sched-table td {
    font-family: var(--body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--ink-muted);
    padding: 1.1rem 1rem;
    line-height: 1.55;
    border-bottom: 1px solid var(--cream-deep);
}

.sched-table tr:last-child td {
    border-bottom: none;
}

.sched-table td:first-child {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--navy);
}

.sched-table td .age {
    font-family: var(--label);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-dark);
    display: block;
    margin-bottom: 0.2rem;
}

.sched-note {
    font-family: var(--body);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--ink-muted);
    font-style: italic;
    line-height: 1.72;
    border-top: 1px solid var(--cream-deep);
    padding-top: 1.25rem;
    margin-top: 1.25rem;
}

/* Enrollment status card */
.enroll-status {
    background: var(--navy);
    border-radius: 4px;
    padding: 2.5rem 2.25rem;
}

.es-live {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1.75rem;
}

.es-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4CAF7D;
    animation: pulse 2s ease-in-out infinite;
}

.es-label {
    font-family: var(--label);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #4CAF7D;
}

.es-headline {
    font-family: var(--serif);
    font-size: clamp(1.3rem, 2.4vw, 1.75rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.es-body {
    font-family: var(--body);
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(169,202,214,0.65);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.es-notes {
    list-style: none;
    margin-bottom: 2rem;
}

.es-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(169,202,214,0.08);
    font-family: var(--body);
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(169,202,214,0.55);
    line-height: 1.65;
}

.es-note:last-child {
    border-bottom: none;
}

.es-note::before {
    content: '·';
    color: var(--gold);
    font-size: 1.2rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: -0.1em;
}

.btn-enroll-primary {
    font-family: var(--label);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--navy);
    background: var(--gold);
    padding: 0.92rem 2rem;
    border-radius: 2px;
    transition: all 0.22s;
    display: block;
    text-align: center;
    margin-bottom: 0.75rem;
}

.btn-enroll-primary:hover {
    background: var(--gold-champ);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216,168,79,0.25);
}

.btn-enroll-secondary {
    font-family: var(--label);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white);
    border: 1px solid rgba(169,202,214,0.25);
    padding: 0.92rem 2rem;
    border-radius: 2px;
    transition: all 0.22s;
    display: block;
    text-align: center;
}

.btn-enroll-secondary:hover {
    border-color: var(--blue);
    background: rgba(169,202,214,0.07);
}

/* ════ PROGRAM DETAILS ════ */
.program-details {
    background: var(--white);
    padding: 8rem 2.5rem;
}

.program-details-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.details-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 5rem;
}

.details-header .h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-top: 0.75rem;
}

.details-header p {
    font-family: var(--body);
    font-size: 0.97rem;
    font-weight: 300;
    color: var(--ink-muted);
    line-height: 1.82;
    margin-top: 1rem;
}

/* Individual program panels */
.prog-panel {
    border: 1.5px solid var(--cream-deep);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 2rem;
}

    .prog-panel:last-child {
        margin-bottom: 0;
    }

.prog-panel-header {
    background: var(--navy);
    padding: 2.5rem 2.5rem 2.25rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: start;
}

.pph-left {
}

.prog-panel-badge {
    font-family: var(--label);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--gold);
    padding: 0.22em 0.75em;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 0.85rem;
}

.prog-panel h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    color: var(--white);
    line-height: 1.18;
    letter-spacing: -0.015em;
    margin-bottom: 0.5rem;
}

.prog-panel-tagline {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: 1rem;
    color: rgba(169,202,214,0.55);
    line-height: 1.55;
}

.pph-right {
    text-align: right;
    flex-shrink: 0;
}

.pph-price {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -0.03em;
}

.pph-price-note {
    font-family: var(--label);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: rgba(169,202,214,0.38);
    margin-top: 0.25rem;
    display: block;
}

.prog-panel-specs {
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(169,202,214,0.1);
    padding: 1.1rem 2.5rem;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spec-label {
    font-family: var(--label);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(169,202,214,0.4);
}

.spec-value {
    font-family: var(--body);
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(169,202,214,0.65);
}

.spec-sep {
    color: rgba(169,202,214,0.15);
    margin: 0 0.25rem;
}

.prog-panel-body {
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
}

.ppb-left {
}

.ppb-right {
}

.prog-section-label {
    font-family: var(--label);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    display: block;
    margin-bottom: 0.85rem;
}

.prog-description {
    font-family: var(--body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--ink-muted);
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.fit-list {
    list-style: none;
}

.fit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.45rem 0;
    font-family: var(--body);
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--ink-muted);
    line-height: 1.55;
}

.fit-item::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--sage);
    flex-shrink: 0;
    margin-top: 0.5em;
    opacity: 0.7;
}

.practice-list {
    list-style: none;
}

.practice-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--cream-deep);
    font-family: var(--body);
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--ink-muted);
    line-height: 1.55;
}

.practice-item:last-child {
    border-bottom: none;
}

.practice-item::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
    margin-top: 0.5em;
    opacity: 0.65;
}

.home-practice-note {
    background: var(--sage-wash);
    border-radius: 4px;
    padding: 1.1rem 1.25rem;
    margin-top: 1.25rem;
    font-family: var(--body);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--ink-muted);
    line-height: 1.65;
}

.home-practice-note strong {
    font-weight: 600;
    color: var(--ink-mid);
}

.prog-panel-footer {
    background: var(--cream);
    padding: 1.5rem 2.5rem;
    border-top: 1px solid var(--cream-deep);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.ppf-note {
    font-family: var(--body);
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--ink-muted);
    font-style: italic;
}

.ppf-btns {
    display: flex;
    gap: 0.65rem;
}

.btn-panel-primary {
    font-family: var(--label);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--navy);
    background: var(--gold);
    padding: 0.72rem 1.5rem;
    border-radius: 2px;
    transition: all 0.22s;
    white-space: nowrap;
}

.btn-panel-primary:hover {
    background: var(--gold-champ);
    transform: translateY(-1px);
}

.btn-panel-secondary {
    font-family: var(--label);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--navy);
    border: 1.5px solid var(--navy);
    padding: 0.72rem 1.5rem;
    border-radius: 2px;
    transition: all 0.22s;
    white-space: nowrap;
}

.btn-panel-secondary:hover {
    background: var(--navy);
    color: var(--white);
}

/* ════ CHOOSE GUIDE ════ */
.choose {
    background: var(--gold-wash);
    border-top: 1px solid var(--gold-pale);
    border-bottom: 1px solid var(--gold-pale);
    padding: 8rem 2.5rem;
}

.choose-inner {
    max-width: 860px;
    margin: 0 auto;
}

.choose-header {
    margin-bottom: 3rem;
}

.choose-header .h2 {
    font-size: clamp(2rem, 3.8vw, 3rem);
    margin-top: 0.5rem;
}

.choose-sub {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1rem, 1.8vw, 1.18rem);
    color: var(--ink-muted);
    line-height: 1.65;
    margin-top: 0.75rem;
}

.choose-list {
    list-style: none;
}

.choose-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gold-pale);
}

.choose-item:first-child {
    border-top: 1px solid var(--gold-pale);
}

.ci-name {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--navy);
    display: block;
    margin-bottom: 0.3rem;
    letter-spacing: -0.005em;
}

.ci-desc {
    font-family: var(--body);
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--ink-muted);
    line-height: 1.65;
}

.ci-link {
    font-family: var(--label);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 1.5px solid var(--cream-deep);
    padding-bottom: 0.1rem;
    transition: border-color 0.2s;
    flex-shrink: 0;
}

.ci-link:hover {
    border-color: var(--navy);
}

/* ════ ENROLLMENT STEPS ════ */
.steps {
    background: var(--navy);
    padding: 8rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.steps::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 20% 80%, rgba(216,168,79,0.06) 0%, transparent 50%);
}

.steps-inner {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.steps-header {
    max-width: 560px;
    margin-bottom: 4rem;
}

.steps-header .h2 {
    font-size: clamp(2rem, 3.8vw, 3rem);
    margin-top: 0.5rem;
}

.steps-header p {
    font-family: var(--body);
    font-size: 0.97rem;
    font-weight: 300;
    color: rgba(169,202,214,0.58);
    line-height: 1.82;
    margin-top: 1rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5px;
    background: rgba(169,202,214,0.08);
    border: 1.5px solid rgba(169,202,214,0.08);
}

.step-card {
    background: rgba(255,255,255,0.04);
    padding: 2rem 1.75rem 2.25rem;
    border-bottom: 2px solid transparent;
    transition: background 0.25s, border-color 0.25s;
}

.step-card:hover {
    background: rgba(255,255,255,0.09);
    border-bottom-color: var(--gold);
}

.step-num {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 300;
    color: rgba(169,202,214,0.1);
    line-height: 1;
    display: block;
    margin-bottom: 1rem;
}

.step-card h4 {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.6rem;
    letter-spacing: -0.005em;
}

.step-card p {
    font-family: var(--body);
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(169,202,214,0.52);
    line-height: 1.72;
}

/* ════ GUIDANCE CALL ════ */
.guidance {
    background: var(--cream-mid);
    padding: 7rem 2.5rem;
    border-top: 1px solid var(--cream-deep);
}

.guidance-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1px 1fr;
    gap: 5rem;
    align-items: center;
}

.guidance-rule {
    background: var(--cream-deep);
    align-self: stretch;
}

.guidance-left .h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    margin-top: 0.5rem;
}

.guidance-left p {
    font-family: var(--body);
    font-size: 0.97rem;
    font-weight: 300;
    color: var(--ink-muted);
    line-height: 1.85;
    margin-top: 1.25rem;
}

.guidance-right {
}

.guidance-fits {
    list-style: none;
    margin-bottom: 2rem;
}

.guidance-fit {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--cream-deep);
    font-family: var(--body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--ink-muted);
    line-height: 1.65;
}

.guidance-fit:first-child {
    padding-top: 0;
}

.guidance-fit:last-child {
    border-bottom: none;
}

.guidance-fit::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
    margin-top: 0.5em;
    opacity: 0.65;
}

.btn-guidance {
    font-family: var(--label);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--navy);
    background: var(--gold);
    padding: 0.95rem 2.2rem;
    border-radius: 2px;
    transition: all 0.22s;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.btn-guidance:hover {
    background: var(--gold-champ);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(216,168,79,0.25);
}

.btn-guidance svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ════ FINAL CTA ════ */
.final {
    background: linear-gradient(138deg, var(--navy-dark) 0%, var(--navy) 55%, var(--teal) 100%);
    padding: 8rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(216,168,79,0.08) 0%, transparent 55%);
    pointer-events: none;
}

.final-inner {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.final-ornament {
    font-family: var(--label);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.6;
    display: block;
    margin-bottom: 2rem;
}

.final h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
}

    .final h2 em {
        font-style: italic;
        color: var(--blue);
    }

.final p {
    font-family: var(--body);
    font-size: 1rem;
    font-weight: 300;
    color: rgba(169,202,214,0.62);
    line-height: 1.8;
    max-width: 520px;
    margin: 0 auto 3rem;
}

.final-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-final-primary {
    font-family: var(--label);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--navy);
    background: var(--gold);
    padding: 1rem 2.2rem;
    border-radius: 2px;
    transition: all 0.22s;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.btn-final-primary:hover {
    background: var(--gold-champ);
    transform: translateY(-2px);
}

.btn-final-primary svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.btn-final-ghost {
    font-family: var(--label);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white);
    border: 1px solid rgba(169,202,214,0.28);
    padding: 1rem 2.2rem;
    border-radius: 2px;
    transition: all 0.22s;
    display: inline-block;
}

.btn-final-ghost:hover {
    border-color: var(--blue);
    background: rgba(169,202,214,0.07);
}
