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

:root {
    --bg: #FFFFFF;
    --bg-alt: #F5F5F5;
    --bg-dark: #0A0A0A;
    --bg-card: #FFFFFF;
    --text: #0A0A0A;
    --text-soft: #444444;
    --text-muted: #888888;
    --accent: #0047FF;
    --accent-soft: #3366FF;
    --border: #E0E0E0;
    --border-light: #EEEEEE;
    --success: #1A8754;
    --danger: #D42020;
    --whatsapp: #25D366;
    --radius: 4px;
    --radius-sm: 2px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-size: 15px;
}

.container {
    max-width: 940px;
    margin: 0 auto;
    padding: 0 32px;
}

/* === Typography === */
h1, h2, h3 {
    font-family: 'Space Grotesk', 'Helvetica Neue', Helvetica, sans-serif;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.1rem; letter-spacing: -0.01em; }

em {
    font-style: normal;
    position: relative;
    display: inline;
}

.em-highlight {
    position: relative;
}

.section-heading {
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.section-sub {
    color: var(--text-soft);
    font-size: 0.95rem;
    margin-bottom: 48px;
    letter-spacing: -0.01em;
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.15s ease;
    text-align: center;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-family: 'Space Grotesk', sans-serif;
}

.btn-primary {
    background: var(--bg-dark);
    color: #FFFFFF;
}

.btn-primary:hover {
    background: #222;
}

.btn-full {
    display: block;
    width: 100%;
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
    font-size: 0.9rem;
    padding: 16px 32px;
}

.btn-whatsapp:hover {
    background: #1EB954;
}

.btn-outline {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.15s;
    font-family: 'Space Grotesk', sans-serif;
    cursor: pointer;
    background: none;
}

.btn-outline:hover {
    border-color: var(--text);
    background: var(--bg-alt);
}

/* === Nav === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
}

.nav-inner {
    max-width: 940px;
    margin: 0 auto;
    padding: 14px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 9px;
}

.brand-icon {
    height: 30px;
    width: 30px;
    flex-shrink: 0;
}

.brand-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    color: var(--text);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 8px 16px;
    border: 1px solid var(--text);
    border-radius: var(--radius);
    transition: all 0.15s;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: 'Space Grotesk', sans-serif;
}

.nav-link-muted {
    border: none;
    color: var(--text-muted);
    font-size: 0.75rem;
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.nav-link-muted:hover {
    color: var(--text);
}

.nav-link:hover {
    background: var(--bg-dark);
    color: #fff;
}

/* === Hero === */
.hero {
    padding: 160px 0 80px;
    background: var(--bg);
}

.hero-inner {
    max-width: 940px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-eyebrow {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 24px;
    font-weight: 600;
}

.hero h1 {
    margin-bottom: 28px;
    color: var(--text);
}

.hero h1 em {
    color: var(--accent);
    font-style: italic;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-body {
    color: var(--text-soft);
    font-size: 1rem;
    margin-bottom: 40px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-price {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.hero-price .price-old {
    color: var(--text-muted);
    opacity: 0.6;
    text-decoration: line-through;
    font-weight: 400;
}

.hero-price strong {
    color: var(--text);
}

.hero-cancel {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.02em;
    margin-top: 6px;
}

.hero-image {
    position: relative;
    display: flex;
    gap: 12px;
    max-width: 300px;
}

.mentor-photo {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
    aspect-ratio: 3/4;
}

/* === Sections === */
.section {
    padding: 96px 0;
}

/* Truth */
.section-truth {
    background: var(--bg);
    border-top: 1px solid var(--border-light);
}

.truth-stats {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    margin: 48px 0;
}

.stat {
    text-align: center;
    flex: 0 0 auto;
    width: 140px;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.04em;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.stat-arrow {
    font-size: 1.2rem;
    color: var(--text-muted);
    opacity: 0.3;
    padding-top: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.truth-text {
    color: var(--text-soft);
    font-size: 1rem;
    max-width: 580px;
    margin: 0 auto 48px;
    text-align: center;
    line-height: 1.7;
}

/* Comparison */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.compare-card {
    padding: 36px 32px;
    background: var(--bg);
}

.compare-them {
    background: var(--bg-alt);
}

.compare-me {
    background: var(--bg);
}

.compare-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 600;
}

.compare-price-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.compare-them .compare-price-tag {
    color: var(--text-muted);
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.compare-me .compare-price-tag {
    color: var(--text);
}

.compare-card ul {
    list-style: none;
}

.compare-card ul li {
    padding: 10px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-soft);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-light);
}

.compare-card ul li:last-child {
    border-bottom: none;
}

.compare-them ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--text-muted);
    font-weight: 400;
}

.compare-me ul li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* About */
.section-about {
    background: var(--bg);
    border-top: 1px solid var(--border-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 64px;
    align-items: start;
}

.about-text p {
    color: var(--text-soft);
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.7;
}

.about-creds {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 48px;
    border-top: 1px solid var(--border-light);
}

.cred {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
}

.cred:last-child {
    border-bottom: none;
}

.about-letter {
    margin-top: 28px;
    padding: 24px;
    background: var(--bg-alt);
    border-left: 2px solid var(--accent);
}

.about-letter p {
    font-size: 0.95rem;
    color: var(--text-soft);
    margin-bottom: 10px;
}

.letter-sig {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--text) !important;
    margin-bottom: 0 !important;
    font-size: 0.9rem !important;
}

/* Includes */
.section-includes {
    background: var(--bg-alt);
    border-top: 1px solid var(--border-light);
}

.includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.include-item {
    padding: 28px 24px;
    background: var(--bg);
    transition: background 0.15s;
}

.include-item:hover {
    background: var(--bg-alt);
}

.include-item h3 {
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: -0.02em;
}

.include-item p {
    color: var(--text-soft);
    font-size: 0.85rem;
    line-height: 1.6;
}

.includes-note {
    margin-top: 32px;
    text-align: center;
    padding: 20px;
    border: 1px solid var(--border);
    background: var(--bg);
}

.includes-note p {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* === Match Quiz === */
.quiz-box {
    max-width: 520px;
    margin: 0 auto 48px;
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.quiz-progress {
    height: 3px;
    background: var(--border-light);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.quiz-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--accent);
    transition: width 0.5s ease;
}

.quiz-counter {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 28px;
    font-weight: 600;
}

.quiz-q {
    display: none;
}

.quiz-q.active {
    display: block;
    animation: quizSlideIn 0.4s ease;
}

@keyframes quizSlideIn {
    from { opacity: 0; transform: translateX(24px); }
    to { opacity: 1; transform: translateX(0); }
}

.quiz-question {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: var(--text);
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quiz-opt {
    display: block;
    width: 100%;
    text-align: left;
    padding: 14px 18px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: var(--text-soft);
    cursor: pointer;
    transition: all 0.15s ease;
    line-height: 1.5;
}

.quiz-opt:hover {
    border-color: var(--text);
    color: var(--text);
    background: var(--bg-alt);
}

.quiz-opt.selected {
    border-color: var(--accent);
    background: rgba(0, 71, 255, 0.04);
    color: var(--accent);
    font-weight: 500;
}

/* Quiz Result */
.quiz-result {
    text-align: center;
    animation: quizSlideIn 0.6s ease;
}

.quiz-score-ring {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    position: relative;
}

.quiz-score-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.ring-bg {
    fill: none;
    stroke: var(--border-light);
    stroke-width: 6;
}

.ring-fill {
    fill: none;
    stroke: var(--accent);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 326.73;
    stroke-dashoffset: 326.73;
    transition: stroke-dashoffset 1.5s ease, stroke 0.5s ease;
}

.ring-fill.red { stroke: #D42020; }
.ring-fill.orange { stroke: #E67E22; }
.ring-fill.green { stroke: #1A8754; }

.quiz-score-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: -0.03em;
    color: var(--text);
}

.quiz-result-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.quiz-result-title.red { color: #D42020; }
.quiz-result-title.orange { color: #E67E22; }
.quiz-result-title.green { color: #1A8754; }

.quiz-result-text {
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.enroll-intro {
    color: var(--text-soft);
    font-size: 0.92rem;
    margin-bottom: 28px;
    line-height: 1.6;
}

/* === Enrollment === */
.section-enroll {
    background: var(--bg);
    border-top: 1px solid var(--border-light);
}

.enroll-box {
    max-width: 480px;
    margin: 0 auto;
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 40px;
}

.enroll-step {
    display: none;
}

.enroll-step.active {
    display: block;
}

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

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text);
}

.optional {
    color: var(--text-muted);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.15s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #BBBBBB;
}

/* Terms */
.terms-toggle {
    margin: 20px 0 12px;
}

.terms-toggle-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.terms-toggle-btn:hover {
    color: var(--text);
}

.terms-box {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-bottom: 0;
}

.terms-box.open {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 16px;
    border: 1px solid var(--border);
    padding: 20px;
}

.terms-content {
    font-size: 0.75rem;
    color: var(--text-soft);
    line-height: 1.7;
}

.terms-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 12px;
    color: var(--text);
    letter-spacing: -0.01em;
}

.terms-content p {
    margin-bottom: 10px;
}

.terms-check {
    margin: 20px 0 24px;
}

.checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-wrap input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
    accent-color: var(--text);
}

.check-text {
    font-size: 0.8rem;
    color: var(--text-soft);
    line-height: 1.5;
}

/* Disabled */
button:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

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

.success-check {
    width: 56px;
    height: 56px;
    border-radius: 0;
    background: var(--bg-dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.success-wrap h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.success-wrap > p {
    color: var(--text-soft);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.success-small {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 12px;
}

.manage-section {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.manage-label {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text);
}

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

.manage-text a {
    color: var(--accent);
    text-decoration: underline;
}

/* === Cancel Section === */
.section-cancel {
    background: var(--bg-alt);
    padding: 80px 0;
    border-top: 1px solid var(--border-light);
}

.cancel-box {
    max-width: 560px;
    margin: 0 auto;
}

.cancel-box > p {
    color: var(--text-soft);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.cancel-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-bottom: 24px;
}

.cancel-option {
    padding: 24px;
    background: var(--bg);
}

.cancel-option h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.cancel-option p {
    color: var(--text-soft);
    font-size: 0.85rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.cancel-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

/* === Lounge === */
.section-lounge {
    background: var(--bg-dark);
    border-top: 1px solid #222;
}

.lounge-gate {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.lounge-content {
    display: none;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.lounge-content.visible {
    display: block;
    animation: loungeReveal 0.6s ease;
}

@keyframes loungeReveal {
    from { opacity: 0; transform: scale(0.97); }
    to { opacity: 1; transform: scale(1); }
}

.lounge-icon {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 16px;
    letter-spacing: 4px;
}

.section-lounge .section-heading {
    color: #fff;
}

.lounge-sub {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.lounge-welcome {
    color: #888;
    font-size: 1rem;
    margin-top: 12px;
}

.lounge-form {
    display: flex;
    gap: 8px;
    max-width: 320px;
    margin: 0 auto;
}

.lounge-input {
    flex: 1;
    padding: 12px 16px;
    background: #161616;
    border: 1px solid #333;
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.15s;
}

.lounge-input:focus {
    outline: none;
    border-color: var(--accent);
}

.lounge-input::placeholder {
    color: #555;
}

.lounge-form .btn-primary {
    background: #fff;
    color: var(--bg-dark);
    padding: 12px 24px;
}

.lounge-form .btn-primary:hover {
    background: #ddd;
}

.lounge-error {
    color: #D42020;
    font-size: 0.8rem;
    margin-top: 12px;
    min-height: 1.2em;
}

/* === Final CTA === */
.section-final {
    padding: 120px 0;
    text-align: center;
    background: var(--bg-dark);
    color: #fff;
}

.section-final h2 {
    margin-bottom: 36px;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: #fff;
}

.section-final h2 em {
    color: var(--accent-soft);
    font-style: italic;
}

.section-final .btn-primary {
    background: #fff;
    color: var(--bg-dark);
}

.section-final .btn-primary:hover {
    background: #E0E0E0;
}

/* === Footer === */
footer {
    padding: 32px 0;
    text-align: center;
    border-top: 1px solid var(--border-light);
    background: var(--bg);
}

.footer-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

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

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.social-link {
    color: var(--text-muted);
    transition: color 0.15s;
    display: flex;
    align-items: center;
}

.social-link:hover {
    color: var(--text);
}

/* === Scrollbar === */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 0; }

/* === Animations === */
.fade-in {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Responsive === */
@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-body {
        margin: 0 auto 36px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image {
        order: 1;
        max-width: 260px;
        margin: 0 auto;
    }

    .hero-text {
        order: 0;
    }

    .truth-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-arrow {
        transform: rotate(90deg);
    }

    .compare-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-creds {
        padding-top: 0;
    }

    .includes-grid {
        grid-template-columns: 1fr;
    }

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

    .enroll-box {
        padding: 28px 20px;
    }

    .cancel-options {
        grid-template-columns: 1fr;
    }

    .nav-link-muted {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-inner {
        padding: 0 20px;
    }
}

/* === Webinar popup === */
.webinar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(10, 10, 10, 0.6);
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.webinar-overlay.show {
    display: flex;
    animation: webinarFadeIn 0.25s ease;
}

@keyframes webinarFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.webinar-modal {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    max-width: 420px;
    width: 100%;
    padding: 40px 32px 32px;
    text-align: center;
    animation: webinarPopIn 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes webinarPopIn {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.webinar-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 28px;
    height: 28px;
    border: none;
    background: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.15s;
}

.webinar-close:hover {
    color: var(--text);
}

.webinar-eyebrow {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.webinar-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.webinar-meta {
    font-size: 0.9rem;
    color: var(--text-soft);
    margin-bottom: 22px;
}

.webinar-meta strong {
    color: var(--text);
}

.webinar-small {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 14px;
}

.webinar-success .success-check {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    margin: 0 auto 16px;
}

.webinar-success h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.webinar-success p {
    font-size: 0.9rem;
    color: var(--text-soft);
    margin-bottom: 16px;
    line-height: 1.5;
}

.hidden {
    display: none !important;
}
