/*
 * Public CSS Bundle: asvab-program.bundle.css
 * Auto-generated by scripts/bundle_public_css.py
 * DO NOT EDIT - Edit source files instead
 *
 * Sources: _public-base.css, asvab-program-desktop.css, asvab-program-mobile-portrait.css, asvab-program-mobile-landscape.css
 */

/* === _public-base.css === */

/*
 * Public Pages Base CSS
 * Shared globals: variables, reset, fonts, keyframes
 * NO media queries here - this is the foundation
 */

/* === CSS Variables === */
:root {
    /* Brand Colors */
    --brand-gradient: linear-gradient(135deg, #667eea, #764ba2);
    --brand-purple: #764ba2;
    --brand-purple-light: #8b5cf6;
    --brand-blue: #667eea;

    /* Background */
    --bg-light: #f8fafc;
    --bg-gradient: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);

    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;

    /* UI Colors */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Accent Colors */
    --success: #10b981;
    --success-light: #d1fae5;
    --warning: #f59e0b;
    --error: #ef4444;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06), 0 0 1px rgba(0, 0, 0, 0.1);
    --shadow-purple: 0 8px 30px rgba(118, 75, 162, 0.25);

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;

    /* Spacing */
    --header-height: 72px;
    --container-max: 1200px;
    --section-padding: 100px;
}

/* === Reset === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--white);
    min-height: 100vh;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* === Anchor Link Offset (for fixed header) === */
[id] {
    scroll-margin-top: calc(var(--header-height) + 24px);
}

/* === Keyframes === */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* === Button Base Styles === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    border-radius: 10px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    padding: 14px 28px;
    font-size: 1rem;
    color: var(--white);
    background: var(--brand-gradient);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-purple);
}

.btn-secondary {
    padding: 14px 28px;
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--white);
    border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
    border-color: var(--brand-purple);
    color: var(--brand-purple);
}

.btn-outline {
    padding: 14px 28px;
    font-size: 1rem;
    color: var(--white);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

/* === Utility Classes === */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* === Section Headers === */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.section-logo {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.section-subtitle {
    color: var(--text-secondary);
}

/* === Ticker Base === */
.proof-ticker {
    background: var(--gray-900);
    overflow: hidden;
    position: relative;
}

.ticker-wrap {
    display: flex;
    width: max-content;
}

.ticker-track {
    display: flex;
    animation: ticker-scroll 60s linear infinite;
}

.ticker-item {
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.85);
}

.ticker-item strong {
    color: var(--white);
    font-weight: 700;
}

/* Category colors */
.ticker-item.ticker-score strong {
    color: #fbbf24;
}

.ticker-item.ticker-pass strong {
    color: var(--success);
}

.ticker-item.ticker-branch strong {
    color: #60a5fa;
}

/* =============================================================================
 * SIGNUP MODAL - Shared across all public pages
 * Used by: home, free-class, asvab-program, etc.
 * ============================================================================= */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: 20px;
    width: 100%;
    max-width: 440px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px) scale(0.96);
    transition: transform 0.3s ease;
}

.modal-overlay.visible .modal {
    transform: translateY(0) scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
}

.modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border: none;
    border-radius: 10px;
    font-size: 1.25rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #fef2f2;
    color: var(--error);
}

.modal-body {
    padding: 24px;
}

.modal-step {
    display: none;
}

.modal-step.active {
    display: block;
    animation: modalFadeUp 0.3s ease-out;
}

@keyframes modalFadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-intro {
    text-align: center;
    margin-bottom: 24px;
}

.step-intro-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
}

.step-intro-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.step-intro-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.verify-email {
    font-weight: 600;
    color: var(--text-primary);
}

/* Form Styles */
.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-input, .form-select {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    background: var(--white);
    color: var(--text-primary);
    transition: all 0.2s ease;
    outline: none;
}

.form-input:focus, .form-select:focus {
    border-color: var(--brand-purple);
    box-shadow: 0 0 0 3px rgba(118, 75, 162, 0.1);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input.error {
    border-color: var(--error);
}

.form-input.code-input {
    text-align: center;
    font-size: 1.5rem;
    font-family: var(--font-heading), monospace;
    letter-spacing: 8px;
    font-weight: 600;
}

.form-error {
    font-size: 0.8rem;
    color: var(--error);
    margin-top: 6px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-optional {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 4px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--brand-gradient);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 8px;
}

.form-submit:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: var(--shadow-purple);
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-submit.loading {
    position: relative;
    color: transparent;
}

.form-submit.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid #ffffff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: modalSpin 0.8s linear infinite;
}

@keyframes modalSpin {
    to { transform: rotate(360deg); }
}

.resend-link {
    text-align: center;
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.link-button {
    background: none;
    border: none;
    color: var(--brand-purple);
    font-weight: 600;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
}

.link-button:hover {
    text-decoration: underline;
}

.link-button:disabled {
    color: var(--text-muted);
    cursor: not-allowed;
}

/* Success Step */
.success-content {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--success-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--success);
    animation: modalPopIn 0.4s ease-out;
}

@keyframes modalPopIn {
    0% { transform: scale(0); opacity: 0; }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.success-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.success-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

/* =============================================================================
 * CLASS COUNTDOWN - Simple horizontal layout
 * ============================================================================= */

.class-countdown {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px;
}

.countdown-slides {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
}

.countdown-slide {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.countdown-slide.active {
    opacity: 1;
    visibility: visible;
}

/* Left side: Badge + Date/Time */
.countdown-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.countdown-badge {
    display: inline-block;
    width: fit-content;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-badge.badge-free {
    background: var(--success-light);
    color: var(--success);
}

.countdown-badge.badge-program {
    background: rgba(118, 75, 162, 0.12);
    color: var(--brand-purple);
}

.countdown-date {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.countdown-time {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Right side: Timer + CTA */
.countdown-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.countdown-timer {
    display: flex;
    align-items: baseline;
    gap: 2px;
    font-family: var(--font-heading);
}

.countdown-num {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}

.countdown-lbl {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-right: 4px;
}

.countdown-sep {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    margin: 0 2px;
}

.countdown-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    font-family: inherit;
}

.countdown-btn.btn-free {
    background: var(--brand-gradient);
    color: var(--white);
}

.countdown-btn.btn-free:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-purple);
}

.countdown-btn.btn-program {
    background: var(--white);
    color: var(--brand-purple);
    border: 2px solid var(--brand-purple);
}

.countdown-btn.btn-program:hover {
    background: var(--brand-purple);
    color: var(--white);
}

.countdown-btn.btn-disabled {
    background: var(--gray-200);
    color: var(--text-muted);
    cursor: default;
    pointer-events: none;
}

/* Navigation dots */
.countdown-nav {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}

.countdown-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.countdown-dot.active {
    background: var(--brand-purple);
}

.countdown-dot:hover:not(.active) {
    background: var(--gray-400);
}

/* Empty state */
.countdown-empty {
    text-align: center;
    padding: 20px;
}

.countdown-empty p {
    margin: 4px 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.countdown-empty a {
    color: var(--brand-purple);
    font-weight: 600;
}


/* === asvab-program-desktop.css === */

/*
 * ASVAB Program Page - Desktop Styles
 * @media (min-width: 769px)
 */

@media (min-width: 769px) {

/* === Header === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    z-index: 100;
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-img {
    width: 42px;
    height: 42px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-tagline {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: all 0.15s ease;
}

.nav-link:hover {
    color: var(--text-primary);
    background: var(--gray-50);
}

.nav-link.nav-signin {
    color: var(--brand-purple);
}

.nav-link.nav-cta {
    background: var(--brand-gradient);
    color: var(--white);
    margin-left: 8px;
}

.nav-link.nav-cta:hover {
    box-shadow: var(--shadow-purple);
    transform: translateY(-1px);
}

/* === Main === */
main {
    padding-top: var(--header-height);
}

/* === Hero Section === */
.hero {
    padding: 80px 24px 60px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-eyebrow {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(118, 75, 162, 0.1);
    color: var(--brand-purple);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.hero-accent {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 40px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* === Problem Section === */
.problem-section {
    padding: 48px 24px;
    background: var(--gray-50);
}

.problem-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.problem-section .section-title {
    font-size: 1.75rem;
    margin-bottom: 40px;
}

.problem-quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.problem-quote {
    background: var(--white);
    border-radius: 12px;
    padding: 20px 24px;
    font-size: 1rem;
    font-style: italic;
    color: var(--text-secondary);
    border: 1px solid var(--gray-200);
    transition: all 0.2s ease;
}

.problem-quote:hover {
    border-color: var(--brand-purple);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.problem-cta {
    margin-top: 24px;
}

.problem-cta p {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.problem-cta .btn {
    font-size: 1rem;
}

/* === Proof Ticker === */
.proof-ticker {
    padding: 16px 0;
}

.ticker-label {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    padding: 0 24px;
    background: linear-gradient(90deg, var(--gray-900) 80%, transparent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--success);
    z-index: 2;
}

.ticker-item {
    padding: 0 32px;
    font-size: 0.95rem;
    position: relative;
}

.ticker-item::after {
    content: '\2022';
    position: absolute;
    right: 0;
    color: rgba(255, 255, 255, 0.3);
}

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

/* === Included Section === */
.included-section {
    padding: var(--section-padding) 24px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.included-section .section-title {
    font-size: 2.25rem;
}

.included-section .section-subtitle {
    font-size: 1.1rem;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.included-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: all 0.2s ease;
}

.included-card:hover {
    border-color: var(--brand-purple);
    box-shadow: var(--shadow-md);
}

.included-card-primary {
    background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-blue) 100%);
    border: none;
    color: var(--white);
}

.included-card-primary .included-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.included-card-primary h3 {
    color: var(--white);
}

.included-card-primary p {
    color: rgba(255, 255, 255, 0.9);
}

.included-card-primary .included-meta {
    color: rgba(255, 255, 255, 0.7);
}

.included-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--brand-purple);
    border-radius: 12px;
    margin-bottom: 20px;
}

.included-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.included-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.included-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* === How It Works Section === */
.how-it-works-section {
    padding: var(--section-padding) 24px;
    background: var(--white);
    text-align: center;
}

.how-it-works-section .section-title {
    font-size: 2.25rem;
}

.how-it-works-section .section-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--brand-purple);
}

.how-steps {
    display: flex;
    justify-content: center;
    gap: 48px;
    max-width: 1000px;
    margin: 48px auto 40px;
}

.how-step {
    flex: 1;
    max-width: 280px;
    text-align: center;
}

.step-number {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-gradient);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
}

.how-step h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.how-step p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.how-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 20px;
}

/* === Courses Section === */
.courses-section {
    padding: var(--section-padding) 24px;
    background: var(--gray-50);
}

.courses-section .section-header {
    max-width: var(--container-max);
    margin: 0 auto 60px;
}

.courses-section .section-title {
    font-size: 2.25rem;
}

.courses-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.course-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: all 0.2s ease;
}

.course-card:hover {
    border-color: var(--brand-purple);
    box-shadow: var(--shadow-md);
}

.course-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.course-badge {
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

.badge-afqt {
    background: rgba(118, 75, 162, 0.1);
    color: var(--brand-purple);
}

.badge-bonus {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.course-logo {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.course-header h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-primary);
}

.course-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
}

.course-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-100);
}

.course-stat {
    text-align: center;
}

.course-stat .stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-purple);
}

.course-stat .stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.course-features {
    margin-bottom: 20px;
}

.course-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.course-features li::before {
    content: '\2713';
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
}

.course-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: top;
    border-radius: 8px;
    margin-top: 16px;
}

/* === Live Section === */
.live-section {
    padding: var(--section-padding) 24px;
    background: var(--white);
}

.live-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    align-items: center;
}

.live-content .section-title {
    font-size: 2rem;
    margin-bottom: 16px;
}

.live-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.live-list {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 32px;
    margin-bottom: 32px;
    text-align: left;
}

.live-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--success);
    border-radius: 50%;
    position: relative;
}

.check-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 6px;
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: translate(-50%, -60%) rotate(-45deg);
}

.live-countdown-wrap {
    margin-top: 32px;
}

.live-visual {
    margin-top: 16px;
}

.live-countdown-wrap .class-countdown {
    max-width: 480px;
    margin: 0 auto;
    background: var(--gray-50);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--gray-200);
}

.live-countdown-wrap .countdown-slides {
    min-height: 80px;
}

.live-content .btn {
    margin-top: 24px;
}

/* === Recordings Section === */
.recordings-section {
    padding: var(--section-padding) 24px;
    background: var(--white);
}

.recordings-section .section-header {
    margin-bottom: 20px;
}

/* === Coach Section === */
.coach-section {
    padding: var(--section-padding) 24px;
    background: var(--gray-50);
}

.coach-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: center;
}

.coach-image img {
    width: 260px;
    height: 260px;
    border-radius: 16px;
    object-fit: cover;
    object-position: center 15%;
    box-shadow: var(--shadow-lg);
}

.coach-intro {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand-purple);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.coach-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.coach-title {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.coach-bio {
    margin-bottom: 28px;
}

.coach-bio p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.coach-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.coach-email {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color 0.15s ease;
}

.coach-email:hover {
    color: var(--brand-purple);
}

/* === Reviews Section (Module) === */
.reviews-section {
    padding: 80px 24px 48px;
    background: var(--gray-50);
    overflow: hidden;
}

.reviews-section .section-header {
    max-width: var(--container-max);
    margin: 0 auto 48px;
}

.reviews-section .section-title {
    font-size: 2rem;
}

.reviews-carousel {
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
}

.reviews-carousel .carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
}

.review-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: calc((100% - 48px) / 3);
    background: var(--white);
    border-radius: 12px;
    padding: 28px;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
}

.review-score {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.review-score .score-change {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success);
}

.review-score .score-detail {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.review-card blockquote {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-card cite {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-style: normal;
}

.review-card .cite-name {
    font-weight: 600;
    color: var(--text-primary);
}

.review-card .cite-stars {
    color: #fbbf24;
    letter-spacing: 2px;
}

.reviews-carousel .carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.reviews-carousel .carousel-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.15s ease;
}

.reviews-carousel .carousel-btn:hover {
    border-color: var(--brand-purple);
    color: var(--brand-purple);
}

.reviews-carousel .carousel-dots {
    display: flex;
    gap: 8px;
}

.reviews-carousel .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all 0.15s ease;
}

.reviews-carousel .carousel-dot.active {
    background: var(--brand-purple);
    width: 28px;
    border-radius: 5px;
}

/* === Testimonials Section === */
.testimonials-section {
    padding: var(--section-padding) 24px;
    background: var(--white);
    overflow: hidden;
}

.testimonials-section .section-title {
    font-size: 2rem;
}

.testimonials-carousel {
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
}

.testimonial-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: calc((100% - 48px) / 3);
    background: var(--gray-50);
    border-radius: 12px;
    padding: 28px;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
}

.testimonial-score {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.score-change {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success);
}

.score-detail {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonial-card blockquote {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-card cite {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-style: normal;
}

.cite-name {
    font-weight: 600;
    color: var(--text-primary);
}

.cite-stars {
    color: #fbbf24;
    letter-spacing: 2px;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.15s ease;
}

.carousel-btn:hover {
    border-color: var(--brand-purple);
    color: var(--brand-purple);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all 0.15s ease;
}

.carousel-dot.active {
    background: var(--brand-purple);
    width: 28px;
    border-radius: 5px;
}

/* === Pricing CTA Section === */
.pricing-cta-section {
    padding: var(--section-padding) 24px;
    background: var(--gray-50);
    text-align: center;
}

.pricing-cta-inner {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-cta-section .section-title {
    font-size: 2rem;
    margin-bottom: 12px;
}

.pricing-cta-section .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 48px;
}

.pricing-preview {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.price-option {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 24px 32px;
    text-align: center;
    min-width: 140px;
    position: relative;
    transition: all 0.2s ease;
}

.price-option:hover {
    border-color: var(--brand-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.price-option-popular {
    border-color: var(--brand-purple);
    border-width: 2px;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-purple);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 12px;
    white-space: nowrap;
}

.price-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.price-amount span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* === FAQ Section === */
.faq-section {
    padding: var(--section-padding) 24px;
    background: var(--white);
}

.faq-section .section-header {
    max-width: 800px;
    margin: 0 auto 48px;
}

.faq-section .section-title {
    font-size: 2rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-item:first-child {
    border-top: 1px solid var(--gray-200);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
    content: '-';
}

.faq-answer {
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--brand-purple);
    font-weight: 500;
}

/* === Support Section === */
.support-section {
    padding: var(--section-padding) 24px;
    background: var(--gray-50);
    text-align: center;
}

.support-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.support-section .section-title {
    font-size: 2rem;
    margin-bottom: 12px;
}

.support-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.support-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all 0.2s ease;
}

.support-card:hover {
    border-color: var(--brand-purple);
    box-shadow: var(--shadow-md);
}

.support-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(118, 75, 162, 0.1);
    color: var(--brand-purple);
    border-radius: 12px;
    margin: 0 auto 20px;
}

.support-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.support-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.support-meta {
    font-size: 0.85rem;
    color: var(--brand-purple);
    font-weight: 600;
    margin-top: 12px;
}

/* === Final CTA Section === */
.final-cta-section {
    padding: var(--section-padding) 24px;
    background: var(--brand-gradient);
    text-align: center;
}

.final-cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.final-cta-section .btn-primary {
    background: var(--white);
    color: var(--brand-purple);
}

.final-cta-section .btn-primary:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.cta-phone {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-phone a {
    color: var(--white);
    font-weight: 600;
}

/* === Footer === */
.site-footer {
    padding: 60px 24px 40px;
    background: var(--gray-900);
    color: var(--white);
}

.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 60px;
    align-items: start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-mission {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 300px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.15s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    transition: background 0.15s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-contact {
    text-align: center;
    padding: 40px 0;
}

.footer-contact p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a {
    color: var(--brand-blue);
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

} /* End @media (min-width: 769px) */


/* === asvab-program-mobile-portrait.css === */

/*
 * ASVAB Program Page - Mobile Portrait Styles
 * @media (max-width: 768px) and (orientation: portrait)
 */

@media (max-width: 768px) and (orientation: portrait) {

/* === Header === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    z-index: 100;
}

.header-inner {
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    width: 36px;
    height: 36px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-tagline {
    display: none;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Hide most nav links on mobile */
.header-nav .nav-link:not(.nav-cta):not(.nav-signin) {
    display: none;
}

.nav-link {
    padding: 8px 12px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 6px;
}

.nav-link.nav-signin {
    color: var(--brand-purple);
}

.nav-link.nav-cta {
    background: var(--brand-gradient);
    color: var(--white);
    padding: 8px 14px;
}

/* === Main === */
main {
    padding-top: 60px;
}

/* === Hero Section === */
.hero {
    padding: 40px 16px 32px;
    text-align: center;
}

.hero-eyebrow {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(118, 75, 162, 0.1);
    color: var(--brand-purple);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 16px;
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.hero-accent {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 28px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 28px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-ctas .btn {
    width: 100%;
}

/* === Problem Section === */
.problem-section {
    padding: 40px 16px;
    background: var(--gray-50);
}

.problem-inner {
    text-align: center;
}

.problem-section .section-title {
    font-size: 1.25rem;
    margin-bottom: 24px;
    line-height: 1.4;
}

.problem-quotes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.problem-quote {
    background: var(--white);
    border-radius: 10px;
    padding: 16px;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-secondary);
    border: 1px solid var(--gray-200);
}

.problem-cta p {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.problem-cta .btn {
    width: 100%;
}

/* === Proof Ticker === */
.proof-ticker {
    padding: 12px 0;
}

.ticker-label {
    display: none;
}

.ticker-item {
    padding: 0 20px;
    font-size: 0.85rem;
}

/* === Included Section === */
.included-section {
    padding: 48px 16px;
}

.included-section .section-title {
    font-size: 1.5rem;
}

.included-section .section-subtitle {
    font-size: 0.95rem;
}

.section-header {
    text-align: center;
    margin-bottom: 32px;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.section-subtitle {
    color: var(--text-secondary);
}

.included-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.included-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--gray-200);
}

.included-card-primary {
    background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-blue) 100%);
    border: none;
    color: var(--white);
}

.included-card-primary .included-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.included-card-primary h3 {
    color: var(--white);
}

.included-card-primary p {
    color: rgba(255, 255, 255, 0.9);
}

.included-card-primary .included-meta {
    color: rgba(255, 255, 255, 0.7);
}

.included-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--brand-purple);
    border-radius: 10px;
    margin-bottom: 16px;
}

.included-icon svg {
    width: 24px;
    height: 24px;
}

.included-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.included-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 8px;
}

.included-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* === How It Works Section === */
.how-it-works-section {
    padding: 48px 16px;
    background: var(--white);
    text-align: center;
}

.how-it-works-section .section-title {
    font-size: 1.5rem;
}

.how-it-works-section .section-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--brand-purple);
}

.how-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 32px auto;
}

.how-step {
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-gradient);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
}

.how-step h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.how-step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.how-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 16px;
}

/* === Courses Section === */
.courses-section {
    padding: 48px 16px;
    background: var(--gray-50);
}

.courses-section .section-title {
    font-size: 1.5rem;
}

.courses-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.course-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--gray-200);
}

.course-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.course-badge {
    padding: 3px 8px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

.badge-afqt {
    background: rgba(118, 75, 162, 0.1);
    color: var(--brand-purple);
}

.badge-bonus {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.course-logo {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.course-header h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
}

.section-logo {
    width: 28px;
    height: 28px;
}

.course-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.course-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-100);
}

.course-stat {
    text-align: center;
    flex: 1;
}

.course-stat .stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-purple);
}

.course-stat .stat-label {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.course-features {
    margin-bottom: 16px;
}

.course-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.course-features li::before {
    content: '\2713';
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
}

.course-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
    border-radius: 8px;
}

/* === Live Section === */
.live-section {
    padding: 48px 16px;
    background: var(--white);
}

.live-inner {
    text-align: center;
}

.live-content .section-title {
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.live-intro {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.live-list {
    display: inline-flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    text-align: left;
}

.live-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.check-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: var(--success);
    border-radius: 50%;
    position: relative;
}

.check-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 5px;
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: translate(-50%, -60%) rotate(-45deg);
}

.live-countdown-wrap {
    margin-top: 24px;
}

.live-visual {
    margin-top: 12px;
}

.live-countdown-wrap .class-countdown {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--gray-200);
}

.live-countdown-wrap .countdown-slides {
    min-height: 70px;
}

/* === Recordings Section === */
.recordings-section {
    padding: 48px 16px;
    background: var(--white);
}

.recordings-section .section-header {
    margin-bottom: 16px;
}

/* === Coach Section === */
.coach-section {
    padding: 48px 16px;
    background: var(--gray-50);
}

.coach-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.coach-image {
    margin-bottom: 24px;
}

.coach-image img {
    width: 200px;
    height: 200px;
    border-radius: 16px;
    object-fit: cover;
    object-position: center 15%;
    box-shadow: var(--shadow-md);
}

.coach-intro {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-purple);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.coach-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.coach-title {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.coach-bio {
    margin-bottom: 24px;
}

.coach-bio p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 10px;
}

.coach-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.coach-email {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* === Reviews Section (Module) === */
.reviews-section {
    padding: 48px 16px 32px;
    background: var(--gray-50);
    overflow: hidden;
}

.reviews-section .section-header {
    margin-bottom: 24px;
}

.reviews-section .section-title {
    font-size: 1.5rem;
}

.reviews-carousel {
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
}

.reviews-carousel .carousel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s ease;
}

.review-card {
    flex: 0 0 100%;
    min-width: 100%;
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
}

.review-score {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-200);
}

.review-score .score-change {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--success);
}

.review-score .score-detail {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-card blockquote {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.review-card cite {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-style: normal;
}

.review-card .cite-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.review-card .cite-stars {
    color: #fbbf24;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.reviews-carousel .carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
}

.reviews-carousel .carousel-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 2px solid var(--brand-purple);
    border-radius: 50%;
    color: var(--brand-purple);
    flex-shrink: 0;
}

.reviews-carousel .carousel-dots {
    display: none;
}

.reviews-carousel .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
}

.reviews-carousel .carousel-dot.active {
    background: var(--brand-purple);
    width: 20px;
    border-radius: 4px;
}

/* === Testimonials Section === */
.testimonials-section {
    padding: 48px 16px;
    background: var(--white);
    overflow: hidden;
}

.testimonials-section .section-title {
    font-size: 1.5rem;
}

.testimonials-carousel {
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s ease;
}

.testimonial-card {
    flex: 0 0 calc(100% - 0px);
    min-width: calc(100% - 0px);
    background: var(--gray-50);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
}

.testimonial-score {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-200);
}

.score-change {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--success);
}

.score-detail {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonial-card blockquote {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.testimonial-card cite {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-style: normal;
}

.cite-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.cite-stars {
    color: #fbbf24;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    color: var(--text-secondary);
}

.carousel-dots {
    display: flex;
    gap: 6px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
}

.carousel-dot.active {
    background: var(--brand-purple);
    width: 20px;
    border-radius: 4px;
}

/* === Pricing CTA Section === */
.pricing-cta-section {
    padding: 48px 16px;
    background: var(--gray-50);
    text-align: center;
}

.pricing-cta-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.pricing-cta-section .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 32px;
}

.pricing-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}

.price-option {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 16px 12px;
    text-align: center;
    position: relative;
}

.price-option-popular {
    border-color: var(--brand-purple);
    border-width: 2px;
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-purple);
    color: var(--white);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 3px 8px;
    border-radius: 10px;
    white-space: nowrap;
}

.price-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
}

.price-amount span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-cta-section .btn {
    width: 100%;
}

/* === FAQ Section === */
.faq-section {
    padding: 48px 16px;
    background: var(--white);
}

.faq-section .section-title {
    font-size: 1.5rem;
}

.faq-list {
    margin-top: 32px;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-item:first-child {
    border-top: 1px solid var(--gray-200);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--text-muted);
}

.faq-item[open] .faq-question::after {
    content: '-';
}

.faq-answer {
    padding-bottom: 18px;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-answer a {
    color: var(--brand-purple);
    font-weight: 500;
}

/* === Support Section === */
.support-section {
    padding: 48px 16px;
    background: var(--gray-50);
    text-align: center;
}

.support-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.support-intro {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.5;
}

.support-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.support-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.support-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(118, 75, 162, 0.1);
    color: var(--brand-purple);
    border-radius: 10px;
    margin: 0 auto 16px;
}

.support-icon svg {
    width: 24px;
    height: 24px;
}

.support-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.support-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.support-meta {
    font-size: 0.85rem;
    color: var(--brand-purple);
    font-weight: 600;
    margin-top: 10px;
}

/* === Final CTA Section === */
.final-cta-section {
    padding: 48px 16px;
    background: var(--brand-gradient);
    text-align: center;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.cta-buttons .btn {
    width: 100%;
}

.final-cta-section .btn-primary {
    background: var(--white);
    color: var(--brand-purple);
}

.cta-phone {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-phone a {
    color: var(--white);
    font-weight: 600;
}

/* === Footer === */
.site-footer {
    padding: 40px 16px 32px;
    background: var(--gray-900);
    color: var(--white);
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-logo img {
    width: 36px;
    height: 36px;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
}

.footer-mission {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
}

.footer-contact {
    text-align: center;
    padding: 24px 0;
}

.footer-contact p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a {
    color: var(--brand-blue);
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

} /* End @media (max-width: 768px) and (orientation: portrait) */


/* === asvab-program-mobile-landscape.css === */

/*
 * ASVAB Program Page - Mobile Landscape Styles
 * @media (max-width: 926px) and (orientation: landscape)
 */

@media (max-width: 926px) and (orientation: landscape) {

/* === Header === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 52px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    z-index: 100;
}

.header-inner {
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    width: 32px;
    height: 32px;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-tagline {
    display: none;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-nav .nav-link:not(.nav-cta):not(.nav-signin) {
    display: none;
}

.nav-link {
    padding: 6px 10px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 6px;
}

.nav-link.nav-signin {
    color: var(--brand-purple);
}

.nav-link.nav-cta {
    background: var(--brand-gradient);
    color: var(--white);
}

/* === Main === */
main {
    padding-top: 52px;
}

/* === Hero Section === */
.hero {
    padding: 32px 24px 24px;
    text-align: center;
}

.hero-eyebrow {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(118, 75, 162, 0.1);
    color: var(--brand-purple);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 12px;
    margin-bottom: 12px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.hero-accent {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 20px;
}

.hero-stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 0.65rem;
    color: var(--text-secondary);
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.hero-ctas .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* === Problem Section === */
.problem-section {
    padding: 32px 24px;
    background: var(--gray-50);
}

.problem-inner {
    text-align: center;
}

.problem-section .section-title {
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.problem-quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.problem-quote {
    background: var(--white);
    border-radius: 8px;
    padding: 12px;
    font-size: 0.8rem;
    font-style: italic;
    color: var(--text-secondary);
    border: 1px solid var(--gray-200);
}

.problem-cta p {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.problem-cta .btn {
    font-size: 0.9rem;
}

/* === Proof Ticker === */
.proof-ticker {
    padding: 10px 0;
}

.ticker-label {
    display: none;
}

.ticker-item {
    padding: 0 16px;
    font-size: 0.8rem;
}

/* === Included Section === */
.included-section {
    padding: 36px 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 24px;
}

.included-section .section-title {
    font-size: 1.35rem;
}

.included-section .section-subtitle {
    font-size: 0.9rem;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.section-subtitle {
    color: var(--text-secondary);
}

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

.included-card {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid var(--gray-200);
}

.included-card-primary {
    background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-blue) 100%);
    border: none;
    color: var(--white);
}

.included-card-primary .included-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.included-card-primary h3 {
    color: var(--white);
}

.included-card-primary p {
    color: rgba(255, 255, 255, 0.9);
}

.included-card-primary .included-meta {
    color: rgba(255, 255, 255, 0.7);
}

.included-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--brand-purple);
    border-radius: 8px;
    margin-bottom: 12px;
}

.included-icon svg {
    width: 22px;
    height: 22px;
}

.included-card h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.included-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 6px;
}

.included-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* === How It Works Section === */
.how-it-works-section {
    padding: 36px 24px;
    background: var(--white);
    text-align: center;
}

.how-it-works-section .section-title {
    font-size: 1.35rem;
}

.how-it-works-section .section-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brand-purple);
}

.how-steps {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 24px auto;
}

.how-step {
    flex: 1;
    max-width: 220px;
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-gradient);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50%;
}

.how-step h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.how-step p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.how-tagline {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 12px;
}

/* === Courses Section === */
.courses-section {
    padding: 36px 24px;
    background: var(--gray-50);
}

.courses-section .section-title {
    font-size: 1.35rem;
}

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

.course-card {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid var(--gray-200);
}

.course-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.course-badge {
    padding: 2px 6px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-radius: 3px;
}

.badge-afqt {
    background: rgba(118, 75, 162, 0.1);
    color: var(--brand-purple);
}

.badge-bonus {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.course-logo {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.section-logo {
    width: 28px;
    height: 28px;
}

.course-header h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.course-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 12px;
}

.course-stats {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-100);
}

.course-stat {
    text-align: center;
    flex: 1;
}

.course-stat .stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-purple);
}

.course-stat .stat-label {
    font-size: 0.6rem;
    color: var(--text-muted);
}

.course-features {
    margin-bottom: 12px;
}

.course-features li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.course-features li::before {
    content: '\2713';
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
}

.course-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    object-position: top;
    border-radius: 6px;
}

/* === Live Section === */
.live-section {
    padding: 36px 24px;
    background: var(--white);
}

.live-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.live-content .section-title {
    text-align: left;
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.live-intro {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.4;
}

.live-list {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
    margin-bottom: 20px;
    text-align: left;
}

.live-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.check-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    background: var(--success);
    border-radius: 50%;
    position: relative;
}

.check-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 4px;
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: translate(-50%, -60%) rotate(-45deg);
}

.live-countdown-wrap {
    margin-top: 20px;
}

.live-visual {
    margin-top: 10px;
}

.live-countdown-wrap .class-countdown {
    max-width: 400px;
    margin: 0 auto;
    background: var(--gray-50);
    border-radius: 10px;
    padding: 16px;
    border: 1px solid var(--gray-200);
}

.live-countdown-wrap .countdown-slides {
    min-height: 60px;
}

.live-content .btn {
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* === Recordings Section === */
.recordings-section {
    padding: 36px 24px;
    background: var(--white);
}

.recordings-section .section-header {
    margin-bottom: 16px;
}

/* === Coach Section === */
.coach-section {
    padding: 36px 24px;
    background: var(--gray-50);
}

.coach-inner {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 32px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.coach-image img {
    width: 160px;
    height: 160px;
    border-radius: 12px;
    object-fit: cover;
    object-position: center 15%;
    box-shadow: var(--shadow-md);
}

.coach-intro {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brand-purple);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 4px;
}

.coach-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.coach-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.coach-bio {
    margin-bottom: 16px;
}

.coach-bio p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 6px;
}

.coach-contact {
    display: flex;
    align-items: center;
    gap: 16px;
}

.coach-contact .btn {
    padding: 8px 16px;
    font-size: 0.8rem;
}

.coach-email {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* === Reviews Section (Module) === */
.reviews-section {
    padding: 36px 24px 24px;
    background: var(--gray-50);
    overflow: hidden;
}

.reviews-section .section-header {
    margin-bottom: 24px;
}

.reviews-section .section-title {
    font-size: 1.35rem;
}

.reviews-carousel {
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
}

.reviews-carousel .carousel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s ease;
}

.review-card {
    flex: 0 0 calc((100% - 16px) / 2);
    min-width: calc((100% - 16px) / 2);
    background: var(--white);
    border-radius: 10px;
    padding: 16px;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
}

.review-score {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-200);
}

.review-score .score-change {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--success);
}

.review-score .score-detail {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.review-card blockquote {
    flex: 1;
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 12px;
}

.review-card cite {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-style: normal;
}

.review-card .cite-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.85rem;
}

.review-card .cite-stars {
    color: #fbbf24;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.reviews-carousel .carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.reviews-carousel .carousel-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 2px solid var(--brand-purple);
    border-radius: 50%;
    color: var(--brand-purple);
    flex-shrink: 0;
}

.reviews-carousel .carousel-dots {
    display: none;
}

.reviews-carousel .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
}

.reviews-carousel .carousel-dot.active {
    background: var(--brand-purple);
    width: 20px;
    border-radius: 4px;
}

/* === Testimonials Section === */
.testimonials-section {
    padding: 36px 24px;
    background: var(--white);
    overflow: hidden;
}

.testimonials-section .section-title {
    font-size: 1.35rem;
}

.carousel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s ease;
}

.testimonial-card {
    flex: 0 0 calc((100% - 16px) / 2);
    min-width: calc((100% - 16px) / 2);
    background: var(--gray-50);
    border-radius: 10px;
    padding: 16px;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
}

.testimonial-score {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-200);
}

.score-change {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--success);
}

.score-detail {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.testimonial-card blockquote {
    flex: 1;
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 12px;
}

.testimonial-card cite {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-style: normal;
}

.cite-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.85rem;
}

.cite-stars {
    color: #fbbf24;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    color: var(--text-secondary);
}

.carousel-dots {
    display: flex;
    gap: 5px;
}

.carousel-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
}

.carousel-dot.active {
    background: var(--brand-purple);
    width: 18px;
    border-radius: 4px;
}

/* === Pricing CTA Section === */
.pricing-cta-section {
    padding: 36px 24px;
    background: var(--gray-50);
    text-align: center;
}

.pricing-cta-section .section-title {
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.pricing-cta-section .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.pricing-preview {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.price-option {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 14px 20px;
    text-align: center;
    min-width: 100px;
    position: relative;
}

.price-option-popular {
    border-color: var(--brand-purple);
    border-width: 2px;
}

.popular-badge {
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-purple);
    color: var(--white);
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 2px 8px;
    border-radius: 8px;
    white-space: nowrap;
}

.price-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.price-amount span {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-cta-section .btn {
    padding: 10px 32px;
    font-size: 0.9rem;
}

/* === FAQ Section === */
.faq-section {
    padding: 36px 24px;
    background: var(--white);
}

.faq-section .section-title {
    font-size: 1.35rem;
}

.faq-list {
    max-width: 700px;
    margin: 24px auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-item:first-child {
    border-top: 1px solid var(--gray-200);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.15rem;
    color: var(--text-muted);
}

.faq-item[open] .faq-question::after {
    content: '-';
}

.faq-answer {
    padding-bottom: 14px;
}

.faq-answer p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.faq-answer a {
    color: var(--brand-purple);
    font-weight: 500;
}

/* === Support Section === */
.support-section {
    padding: 36px 24px;
    background: var(--gray-50);
    text-align: center;
}

.support-section .section-title {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.support-intro {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.4;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.support-card {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.support-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(118, 75, 162, 0.1);
    color: var(--brand-purple);
    border-radius: 10px;
    margin: 0 auto 14px;
}

.support-icon svg {
    width: 22px;
    height: 22px;
}

.support-card h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.support-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.support-meta {
    font-size: 0.75rem;
    color: var(--brand-purple);
    font-weight: 600;
    margin-top: 8px;
}

/* === Final CTA Section === */
.final-cta-section {
    padding: 36px 24px;
    background: var(--brand-gradient);
    text-align: center;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.cta-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.cta-buttons .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.final-cta-section .btn-primary {
    background: var(--white);
    color: var(--brand-purple);
}

.cta-phone {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-phone a {
    color: var(--white);
    font-weight: 600;
}

/* === Footer === */
.site-footer {
    padding: 32px 24px 24px;
    background: var(--gray-900);
    color: var(--white);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 32px;
    align-items: start;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.footer-logo img {
    width: 32px;
    height: 32px;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
}

.footer-mission {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 250px;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-links a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--white);
}

.footer-contact {
    text-align: center;
    padding: 20px 0;
}

.footer-contact p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a {
    color: var(--brand-blue);
}

.footer-bottom {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

} /* End @media (max-width: 926px) and (orientation: landscape) */
