:root {
    --navy: #0a1628;
    --deep-blue: #0f2044;
    --royal: #1a3a6b;
    --gold: #c9a227;
    --gold-light: #e8c84a;
    --gold-glow: rgba(201, 162, 39, 0.15);
    --white: #ffffff;
    --off-white: #f4f1eb;
    --light-gray: #e8e4dd;
    --text-secondary: #8a9ab5;
    --gradient-gold: linear-gradient(135deg, #c9a227, #e8c84a, #c9a227);
    --gradient-navy: linear-gradient(180deg, #0a1628 0%, #0f2044 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
}

/* ===== NAVIGATION (matches shared.css / Method page) ===== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 1.5rem;
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
    transition: all 0.3s ease;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
    margin-right: 0.5rem;
}

.logo span {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.7rem;
    display: block;
    background: none;
    -webkit-text-fill-color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
    flex-shrink: 0;
    white-space: nowrap;
    background: var(--gradient-gold) !important;
    color: var(--navy) !important;
    -webkit-text-fill-color: var(--navy) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 700 !important;
    letter-spacing: 1px;
    transition: transform 0.3s, box-shadow 0.3s !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.3);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    background: var(--gradient-navy);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 58, 107, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.25);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-badge::before {
    content: '';
    font-size: 0.5rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

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

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3.5rem;
    flex-wrap: wrap;
}

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

.hero-stat .number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-stat .label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 0.3rem;
}

.btn-primary {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--navy);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 162, 39, 0.25);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--gold);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(201, 162, 39, 0.4);
    transition: all 0.3s;
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: rgba(201, 162, 39, 0.1);
    border-color: var(--gold);
}

/* ===== SECTION UTILITY ===== */
section {
    padding: 6rem 2rem;
    position: relative;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    line-height: 1.7;
    font-weight: 300;
}

/* ===== DIFFERENTIATOR / WHY SECTION ===== */
.why-section {
    background: var(--deep-blue);
    border-top: 1px solid rgba(201, 162, 39, 0.08);
    border-bottom: 1px solid rgba(201, 162, 39, 0.08);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

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

.why-card {
    background: rgba(10, 22, 40, 0.6);
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    transition: transform 0.3s, border-color 0.3s;
}

.why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 162, 39, 0.3);
}

.why-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-glow);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

.why-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.why-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    font-weight: 300;
}

.vs-badge {
    display: inline-block;
    background: rgba(220, 50, 50, 0.1);
    border: 1px solid rgba(220, 50, 50, 0.2);
    color: #e85d5d;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    margin-top: 0.8rem;
}

/* ===== METHOD SECTION ===== */
.method-section {
    background: var(--navy);
}

.method-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.method-step {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.method-step::after {
    content: '→';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(201, 162, 39, 0.3);
    font-size: 1.5rem;
}

.method-step:last-child::after { display: none; }

.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.4;
    margin-bottom: 0.8rem;
}

.method-step h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.method-step p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    font-weight: 300;
}

/* ===== CURRICULUM ===== */
.curriculum-section {
    background: var(--deep-blue);
    border-top: 1px solid rgba(201, 162, 39, 0.08);
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.topic-card {
    background: rgba(10, 22, 40, 0.5);
    border: 1px solid rgba(201, 162, 39, 0.08);
    border-radius: 12px;
    padding: 1.8rem;
    transition: all 0.3s;
}

.topic-card:hover {
    border-color: rgba(201, 162, 39, 0.3);
    background: rgba(201, 162, 39, 0.03);
}

.topic-card .topic-num {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.topic-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.topic-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
}

.topic-tag {
    display: inline-block;
    background: rgba(201, 162, 39, 0.1);
    color: var(--gold);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-top: 0.8rem;
    letter-spacing: 0.5px;
}

/* ===== PLATFORM / FEATURES ===== */
.platform-section {
    background: var(--navy);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.platform-card {
    background: linear-gradient(145deg, rgba(15, 32, 68, 0.8), rgba(10, 22, 40, 0.9));
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s;
}

.platform-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 162, 39, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.platform-card .p-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

.platform-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.platform-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
    font-weight: 300;
}

/* ===== VIDEO SECTION ===== */
.video-section {
    background: var(--navy);
    border-top: 1px solid rgba(201, 162, 39, 0.08);
}

.video-how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.video-how-card {
    background: rgba(15, 32, 68, 0.5);
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: 14px;
    padding: 1.8rem 1.5rem;
    transition: border-color 0.3s;
}

.video-how-card:hover { border-color: rgba(201, 162, 39, 0.3); }

.video-how-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.5;
    margin-bottom: 0.7rem;
}

.video-how-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.video-how-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
}

.video-teaser {
    margin-top: 2rem;
    background: linear-gradient(145deg, rgba(15, 32, 68, 0.8), rgba(10, 22, 40, 0.9));
    border: 2px dashed rgba(201, 162, 39, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
}

.coming-soon-badge {
    display: inline-block;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.4);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.video-teaser h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.video-teaser p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .video-how-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .video-how-grid { grid-template-columns: 1fr; }
}

/* ===== TEST BANK SECTION ===== */
.testbank-section {
    background: var(--deep-blue);
    border-top: 1px solid rgba(201, 162, 39, 0.08);
}

.testbank-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
    margin-top: 2rem;
}

.testbank-year {
    background: rgba(10, 22, 40, 0.6);
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s;
}

.testbank-year:hover {
    border-color: rgba(201, 162, 39, 0.3);
}

.testbank-year .year {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
}

.testbank-year .count {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: 0.2rem;
}

.testbank-note {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ===== INTEREST FORM SECTION ===== */
.interest-section {
    background: var(--navy);
    border-top: 1px solid rgba(201, 162, 39, 0.08);
}

.how-it-works {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.how-step {
    padding: 1.5rem 1rem;
}

.how-step .step-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.5;
    margin-bottom: 0.5rem;
}

.how-step h3,
.how-step h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

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

.interest-form {
    max-width: 500px;
    margin: 2rem auto 0;
}

.interest-form input,
.interest-form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    margin-bottom: 1rem;
    background: rgba(10, 22, 40, 0.8);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
}

.interest-form input::placeholder,
.interest-form textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

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

.interest-form textarea {
    min-height: 100px;
    resize: vertical;
}

.interest-form .g-recaptcha { margin-bottom: 1rem; }
.interest-form .form-note {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .how-it-works { grid-template-columns: 1fr; }
}

/* ===== CALCULATOR SECTION ===== */
.calc-section {
    background: var(--deep-blue);
    border-top: 1px solid rgba(201, 162, 39, 0.08);
    border-bottom: 1px solid rgba(201, 162, 39, 0.08);
}

.calc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}

.calc-item {
    background: rgba(10, 22, 40, 0.6);
    border: 1px solid rgba(201, 162, 39, 0.08);
    border-radius: 10px;
    padding: 1.3rem;
    text-align: center;
    transition: all 0.3s;
}

.calc-item:hover {
    border-color: rgba(201, 162, 39, 0.25);
    background: rgba(201, 162, 39, 0.04);
}

.calc-item .calc-name {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--white);
}

.calc-item .calc-code {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: var(--gold);
    background: rgba(201, 162, 39, 0.08);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 0.4rem;
}

.calc-item .calc-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ===== ABOUT / FOUNDER ===== */
.about-section {
    background: var(--navy);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.about-visual {
    background: linear-gradient(145deg, var(--deep-blue), var(--navy));
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
}

.about-visual::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 30%;
    right: 30%;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.about-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.about-title {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.about-credentials {
    list-style: none;
    text-align: left;
}

.about-credentials li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.about-credentials li .cred-icon {
    color: var(--gold);
    font-size: 0.8rem;
    min-width: 20px;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1rem;
}

.about-text .highlight-quote {
    background: rgba(201, 162, 39, 0.06);
    border-left: 3px solid var(--gold);
    padding: 1.2rem 1.5rem;
    border-radius: 0 10px 10px 0;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--off-white);
    font-size: 0.95rem;
}

/* ===== PRICING ===== */
.pricing-section {
    background: var(--deep-blue);
    border-top: 1px solid rgba(201, 162, 39, 0.08);
    text-align: center;
}

.pricing-card {
    max-width: 700px;
    margin: 3rem auto 0;
    background: linear-gradient(145deg, rgba(15, 32, 68, 0.9), rgba(10, 22, 40, 0.95));
    border: 2px solid rgba(201, 162, 39, 0.25);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.04), transparent 70%);
    border-radius: 50%;
}

.pricing-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.pricing-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pricing-price {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.3rem;
}

.pricing-price-sub {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.92rem;
    color: var(--off-white);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pricing-features li .check {
    color: var(--gold);
    font-weight: 700;
    font-size: 1rem;
}

.pricing-compare {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.pricing-compare p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.pricing-compare .strikethrough {
    text-decoration: line-through;
    color: #e85d5d;
}

/* ===== DASHBOARD PREVIEW ===== */
.dashboard-section {
    background: var(--navy);
}

.dashboard-preview {
    margin-top: 3rem;
    background: linear-gradient(145deg, rgba(15, 32, 68, 0.6), rgba(10, 22, 40, 0.8));
    border: 1px solid rgba(201, 162, 39, 0.12);
    border-radius: 20px;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.dash-widget {
    background: rgba(10, 22, 40, 0.6);
    border: 1px solid rgba(201, 162, 39, 0.08);
    border-radius: 14px;
    padding: 1.8rem;
}

.dash-widget h4 {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.dash-score {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dash-score-sub {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.dash-bar-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.dash-bar-item .bar-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
    display: flex;
    justify-content: space-between;
}

.dash-bar {
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 3px;
    overflow: hidden;
}

.dash-bar-fill {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 3px;
}

.dash-timeline {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.timeline-item {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.timeline-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 4px;
    flex-shrink: 0;
}

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

.timeline-text strong {
    color: var(--white);
}

/* ===== CONTACT ===== */
.contact-section {
    background: var(--navy);
    border-top: 1px solid rgba(201, 162, 39, 0.08);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: rgba(15, 32, 68, 0.6);
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: rgba(201, 162, 39, 0.3);
    transform: translateY(-4px);
}

.contact-card .c-icon { font-size: 2rem; margin-bottom: 1rem; }
.contact-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.contact-card .c-detail {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: block;
    margin-bottom: 0.3rem;
}
.contact-card .c-detail:hover { text-decoration: underline; }
.contact-card .c-sub { font-size: 0.8rem; color: var(--text-secondary); font-weight: 300; }

/* ===== FAQ ===== */
.faq-section {
    background: var(--deep-blue);
    border-top: 1px solid rgba(201, 162, 39, 0.08);
}

.faq-grid {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 1.5rem 0;
    cursor: pointer;
}

.faq-q {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-q::after {
    content: '+';
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-item.active .faq-q::after {
    transform: rotate(45deg);
}

.faq-a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    font-weight: 300;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-a {
    max-height: 300px;
    padding-top: 0.8rem;
}

/* ===== FOOTER ===== */
footer {
    background: var(--navy);
    border-top: 1px solid rgba(201, 162, 39, 0.08);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 300;
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}

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

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--navy);
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.05), transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-section p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

/* ===== LOGIN SECTION ===== */
.login-section {
    background: var(--deep-blue);
    border-top: 1px solid rgba(201, 162, 39, 0.08);
    text-align: center;
}

.login-card {
    background: linear-gradient(145deg, rgba(15,32,68,0.9), rgba(10,22,40,0.95));
    border: 1px solid rgba(201,162,39,0.2);
    border-radius: 16px;
    padding: 2rem;
}

.login-input {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(10,22,40,0.8);
    border: 1px solid rgba(201,162,39,0.2);
    border-radius: 8px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    letter-spacing: 3px;
    text-align: center;
}

.login-input::placeholder {
    letter-spacing: 1px;
    color: var(--text-secondary);
    opacity: 0.7;
}

.login-input:focus {
    outline: none;
    border-color: var(--gold);
}

.login-note {
    margin-top: 1rem;
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.login-error {
    color: #e85d5d;
    font-size: 0.82rem;
    margin-top: 0.8rem;
    display: none;
}

/* ===== MOBILE NAV (hamburger) ===== */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: 8px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
    margin: 0 auto;
    transition: transform 0.3s, opacity 0.3s;
}
nav.nav-mobile-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
nav.nav-mobile-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}
nav.nav-mobile-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
    .nav-toggle { display: flex; position: relative; z-index: 1001; }
    .nav-inner .logo { position: relative; z-index: 1001; }
    .nav-right {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0;
        padding: 5rem 1.5rem 2rem;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        z-index: 999;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s, visibility 0.3s;
    }
    nav.nav-mobile-open .nav-right {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .nav-links {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }
    .nav-links li {
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 0.95rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .nav-cta {
        margin-top: 1rem;
        text-align: center;
        padding: 1rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .method-steps { grid-template-columns: repeat(2, 1fr); }
    .method-step::after { display: none; }
    .curriculum-grid { grid-template-columns: repeat(2, 1fr); }
    .calc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .why-grid-three { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-inner { flex-wrap: nowrap; gap: 0; justify-content: space-between; }
    .nav-right { margin-left: 0; }
    section { padding: 4rem 1rem; }
    .section-inner { padding: 0; }
    .hero { padding: 6rem 1rem 3rem; min-height: auto; }
    .hero-sub { font-size: 1rem; padding: 0 0.5rem; }
    .hero-stats { gap: 1.5rem; margin-top: 2rem; }
    .hero-stat .number { font-size: 2rem; }
    .btn-secondary { margin-left: 0; margin-top: 1rem; display: inline-block; }
    .section-title { font-size: 1.75rem; }
    .section-desc { font-size: 0.95rem; }
    .why-card, .platform-card, .topic-card { padding: 1.5rem; }
    .page-hero { padding: 6rem 1rem 3rem; }
    .page-content { padding: 3rem 1rem; }
    .pricing-card { padding: 2rem 1.5rem; margin: 2rem 1rem 0; }
    .pricing-price { font-size: 3rem; }
    .footer-links { flex-wrap: wrap; gap: 1rem; justify-content: center; }
    .cta-section { padding: 4rem 1rem; }
    .login-card { padding: 1.5rem; }
    .page-content .tutor-card { flex-direction: column; min-height: auto; }
    .page-content .tutor-photo-wrap { width: 100%; height: 280px; min-width: unset; border-radius: 20px 20px 0 0; }
    .page-content .about-visual { flex-direction: column; min-height: auto; background: linear-gradient(145deg, var(--deep-blue), var(--navy)); border: 1px solid rgba(201,162,39,0.15); border-radius: 20px; overflow: hidden; }
    .page-content .about-photo-wrap { width: 100%; min-width: unset; height: 240px; border-radius: 0; }
    .page-content .about-content { padding: 1.5rem 1.5rem 2rem; }
    .page-content .contact-cta { padding: 1.25rem; margin-top: 1.5rem; }
    .page-content .contact-cta a { display: inline-block; word-break: break-word; }
    .page-content .tutor-content { padding: 1.5rem 1.5rem 2rem; }
    .why-grid { grid-template-columns: 1fr; }
    .method-steps { grid-template-columns: 1fr; }
    .method-step::after { display: none !important; }
    .curriculum-grid { grid-template-columns: 1fr; }
    .platform-grid { grid-template-columns: 1fr; }
    .calc-grid { grid-template-columns: 1fr; }
    .about-layout { grid-template-columns: 1fr; }
    .founders-grid { grid-template-columns: 1fr; }
    .dashboard-preview { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .page-content .feature-grid { grid-template-columns: 1fr; }
    .page-content .coming-box { padding: 2rem 1.5rem; }
    .page-content .why-grid { grid-template-columns: 1fr; }
    .page-content .how-it-works { grid-template-columns: 1fr; }
    .page-content .method-steps { grid-template-columns: 1fr; }
    .page-content .testbank-grid { grid-template-columns: 1fr; }
    .interest-form { padding: 0 0.5rem; }
    .thank-you { padding: 1rem !important; }
    .thank-you .card { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .hero-badge { font-size: 0.65rem; padding: 0.4rem 1rem; }
    .btn-primary, .btn-secondary { width: 100%; text-align: center; display: block; padding: 1rem; }
    .btn-secondary { margin-top: 0.75rem; }
    .hero-stats { gap: 1rem; }
    .hero-stat .number { font-size: 1.75rem; }
    .section-title { font-size: 1.5rem; }
    .logo span { font-size: 0.6rem; }
}

/* ===== APPENDED: Nav active, page layout, subpages ===== */
nav .nav-links a.active { color: var(--gold); }
.page-hero { padding: 8rem 2rem 4rem; background: var(--gradient-navy); border-bottom: 1px solid rgba(201,162,39,0.08); }
.page-hero-inner { max-width: 1200px; margin: 0 auto; }
.page-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.page-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
.page-desc { color: var(--text-secondary); font-size: 1.05rem; max-width: 650px; line-height: 1.7; font-weight: 300; }
.page-content { max-width: 1200px; margin: 0 auto; padding: 4rem 2rem; }
.page-content + footer { background: var(--deep-blue); }

/* ===== MEMBERS.CSS ===== */
body:has(.members-nav),
body.members-area { min-height: 100vh; padding: 2rem; background: var(--navy) !important; color: var(--white); }
@media (max-width: 768px) {
    body:has(.members-nav),
    body.members-area { padding: 1rem; }
    .members-nav { flex-wrap: wrap; gap: 0.75rem; }
}
html:has(body.members-area),
html:has(.members-nav) { background: var(--navy) !important; }
.members-nav { position: static !important; width: auto !important; background: transparent !important; backdrop-filter: none !important; border: none !important; padding: 0 0 1.5rem 0 !important; max-width: 1200px; margin: 0 auto 3rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; border-bottom: 1px solid rgba(201, 162, 39, 0.1); }
.members-nav .logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 800; background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.members-nav-links { display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; }
.members-nav-links a { font-size: 0.75rem; font-weight: 600; color: var(--text-secondary); text-decoration: none; padding: 0.5rem 0.9rem; border-radius: 6px; transition: all 0.2s; }
.members-nav-links a:hover { color: var(--gold); background: rgba(201, 162, 39, 0.08); }
.members-nav-links a.active { color: var(--gold); background: rgba(201, 162, 39, 0.12); border: 1px solid rgba(201, 162, 39, 0.25); }
.member-badge { background: rgba(201, 162, 39, 0.1); border: 1px solid rgba(201, 162, 39, 0.3); color: var(--gold); font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 50px; }
.members-main { max-width: 1200px; margin: 0 auto; }
.members-main h1 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 0.5rem; }
.members-main .section-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.topic-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.2rem; }
.topic-card { background: rgba(15, 32, 68, 0.6); border: 1px solid rgba(201, 162, 39, 0.1); border-radius: 14px; padding: 1.5rem; transition: all 0.3s; }
.topic-card:hover { border-color: rgba(201, 162, 39, 0.35); transform: translateY(-3px); }
.topic-num { font-size: 0.65rem; font-weight: 700; color: var(--gold); letter-spacing: 2px; margin-bottom: 0.4rem; }
.topic-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.topic-card p { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.5; font-weight: 300; }
.topic-links { margin-top: 1rem; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.topic-link { font-size: 0.7rem; font-weight: 600; padding: 0.3rem 0.7rem; border-radius: 4px; text-decoration: none; transition: all 0.2s; }
.topic-link.notes { background: rgba(201, 162, 39, 0.12); color: var(--gold); border: 1px solid rgba(201, 162, 39, 0.2); }
.topic-link.practice { background: rgba(26, 58, 107, 0.5); color: #7eaadc; border: 1px solid rgba(100, 160, 220, 0.2); }
.topic-link.video { background: rgba(100, 50, 200, 0.1); color: #b09ff0; border: 1px solid rgba(150, 100, 220, 0.2); }
.topic-link.coming { background: rgba(255,255,255,0.04); color: var(--text-secondary); border: 1px solid rgba(255,255,255,0.08); cursor: default; }
.back-home { font-size: 0.8rem; color: var(--text-secondary); text-decoration: none; padding: 0.5rem 1rem; border: 1px solid rgba(201,162,39,0.3); border-radius: 6px; transition: all 0.3s; }
.back-home:hover { color: var(--gold); border-color: var(--gold); }
.nav-dashboard { font-size: 0.95rem; font-weight: 600; color: var(--gold) !important; text-decoration: none; padding: 0.5rem 1rem; border: 1px solid rgba(201,162,39,0.35); border-radius: 6px; transition: all 0.3s; }
.nav-dashboard:hover { color: var(--gold-light) !important; border-color: var(--gold); background: rgba(201,162,39,0.08); }
.nav-homepage { font-size: 0.7rem; color: rgba(138, 154, 181, 0.6); text-decoration: none; padding: 0.35rem 0.7rem; transition: all 0.2s; }
.nav-homepage:hover { color: var(--text-secondary); }
.proto-notice { background: rgba(201, 162, 39, 0.06); border: 1px solid rgba(201, 162, 39, 0.15); border-radius: 10px; padding: 1rem 1.5rem; margin-bottom: 2rem; font-size: 0.82rem; color: var(--text-secondary); }
.proto-notice strong { color: var(--gold); }

/* ===== Page-specific: Curriculum ===== */
.page-content .curriculum-grid { margin-top: 2.5rem; }
.page-content .pricing-card { margin: 2.5rem auto 0; }
.page-content .how-it-works { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 900px; margin-left: auto; margin-right: auto; }
.section-sub-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; margin-top: 3rem; text-align: center; }
.section-sub-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; margin-bottom: 0.5rem; text-align: center; }
.strikethrough { text-decoration: line-through; color: #e85d5d; }
.page-content .topic-tag { display: inline-block; background: rgba(201,162,39,0.1); color: var(--gold); font-size: 0.65rem; font-weight: 600; padding: 0.2rem 0.6rem; border-radius: 4px; margin-top: 0.8rem; }

/* ===== Method page ===== */
.page-content .method-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; }
.page-content .method-step { background: rgba(15,32,68,0.5); border: 1px solid rgba(201,162,39,0.1); border-radius: 16px; padding: 2.5rem; transition: border-color 0.3s; }
.page-content .method-step:hover { border-color: rgba(201,162,39,0.3); }
/* Hide arrows between columns - only show between steps in same row (1→2, 3→4) */
.page-content .method-step:nth-child(2)::after,
.page-content .method-step:nth-child(4)::after { display: none; }
.page-content .method-steps + .section-label { margin-top: 4rem; margin-bottom: 1rem; }
.page-content .why-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.page-content .section-sub { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; margin-bottom: 0.8rem; }

/* ===== FAQ ===== */
.page-content .faq-q::after { margin-left: 1rem; }
.page-content .cta-banner {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 2.5rem 2rem;
    text-align: center;
    background: rgba(15, 32, 68, 0.4);
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: 16px;
}
.page-content .cta-banner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
}
.page-content .cta-banner p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
}

/* ===== Videos ===== */
.page-content .feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 2rem; }
.page-content .feature-card {
    background: linear-gradient(145deg, rgba(15,32,68,0.6), rgba(10,22,40,0.5));
    border: 1px solid rgba(201,162,39,0.12);
    border-left: 4px solid var(--gold);
    border-radius: 14px;
    padding: 2.25rem 2rem;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative;
}
.page-content .feature-card:hover {
    border-color: rgba(201,162,39,0.35);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.page-content .feature-num {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 0.75rem;
    opacity: 0.9;
}
.page-content .feature-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
.page-content .feature-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    font-weight: 300;
}
.page-content .coming-box { background: linear-gradient(145deg, rgba(15,32,68,0.8), rgba(10,22,40,0.9)); border: 2px dashed rgba(201,162,39,0.3); border-radius: 20px; padding: 3.5rem; text-align: center; margin-top: 3rem; }
.page-content .coming-badge { display: inline-block; background: rgba(201,162,39,0.15); border: 1px solid rgba(201,162,39,0.4); color: var(--gold); font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 1.5rem; }

/* ===== Calculator page: calc-code before calc-name ===== */
.page-content .calc-item { display: flex; flex-direction: column; }
.page-content .calc-item .calc-code { order: -1; }

/* ===== Testbank ===== */
.page-content .testbank-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.page-content .year-card { background: rgba(10,22,40,0.5); border: 1px solid rgba(201,162,39,0.1); border-radius: 14px; padding: 2rem; transition: all 0.3s; }
.page-content .year-card:hover { border-color: rgba(201,162,39,0.3); transform: translateY(-3px); }
.page-content .year-label { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800; background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 0.5rem; }
.page-content .year-count { font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 1rem; }
.page-content .test-list { list-style: none; }
.page-content .test-list li { font-size: 0.82rem; color: var(--text-secondary); padding: 0.35rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); display: flex; align-items: center; gap: 0.5rem; font-weight: 300; }
.page-content .test-list li::before { content: '—'; color: var(--gold); font-size: 0.4rem; }
.page-content .how-section { margin-top: 4rem; }
.page-content .how-section h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 1rem; }
.page-content .how-section p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; font-weight: 300; margin-bottom: 1rem; }
.page-content .lock-note { background: rgba(201,162,39,0.06); border: 1px solid rgba(201,162,39,0.2); border-radius: 12px; padding: 1.5rem; margin-top: 1.5rem; font-size: 0.85rem; color: var(--text-secondary); }
.page-content .lock-note strong { color: var(--gold); }

/* ===== Live-tutoring ===== */
.page-content .tutors-grid { display: flex; flex-direction: column; gap: 2.5rem; margin-top: 3rem; }
.page-content .tutor-card { background: linear-gradient(145deg, var(--deep-blue), var(--navy)); border: 1px solid rgba(201,162,39,0.15); border-radius: 20px; padding: 0; position: relative; display: flex; flex-direction: row; min-height: 220px; overflow: hidden; }
.page-content .tutor-photo-wrap { width: 220px; min-width: 220px; height: 220px; flex-shrink: 0; background: rgba(26,58,107,0.5); overflow: hidden; border-radius: 20px 0 0 20px; }
.page-content .tutor-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-content .tutor-content { padding: 2rem 2.5rem; flex: 1; min-width: 0; text-align: left; display: flex; flex-direction: column; justify-content: center; }
.page-content .tutor-name { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 800; margin-bottom: 0.25rem; }
.page-content .tutor-title { color: var(--gold); font-size: 0.7rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.5rem; }
.page-content .tutor-phone { font-size: 1rem; margin-top: 0.5rem; }
.page-content .tutor-phone a,
.page-content .tutor-phone a:link,
.page-content .tutor-phone a:visited { color: #ffffff !important; text-decoration: none; }
.page-content .tutor-phone a:hover { color: var(--text-secondary) !important; }
.page-content .additional-section { margin-top: 4rem; background: rgba(15,32,68,0.4); border: 1px solid rgba(201,162,39,0.1); border-radius: 20px; padding: 3rem; }
.page-content .rate-display { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 800; color: var(--gold); margin: 1rem 0; }

/* ===== English-reading ===== */
.page-content .headshot-placeholder { color: var(--text-secondary); font-size: 0.85rem; text-align: center; padding: 2rem; }
.page-content .contact-cta { margin-top: 2rem; background: rgba(201,162,39,0.08); border: 1px solid rgba(201,162,39,0.2); border-radius: 12px; padding: 1.5rem; }
.page-content .contact-cta a,
.page-content .contact-cta a:link,
.page-content .contact-cta a:visited,
.page-content .contact-cta .contact-link { color: #ffffff !important; text-decoration: none; }
.page-content .contact-cta a:hover,
.page-content .contact-cta .contact-link:hover { color: var(--text-secondary) !important; }

/* ===== About page ===== */
.page-content .about-layout { display: flex; flex-direction: column; gap: 4rem; margin-top: 3rem; }
.page-content .about-visual { display: flex; flex-direction: row; min-height: 220px; overflow: visible; }
.page-content .about-photo-wrap { width: 220px; min-width: 220px; height: 220px; flex-shrink: 0; background: rgba(26,58,107,0.5); overflow: hidden; }
.page-content .about-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-content .about-content { padding: 2rem 2.5rem; flex: 1; min-width: 0; text-align: left; display: flex; flex-direction: column; }
.page-content .about-grad { font-size: 0.78rem; color: var(--text-secondary); margin-bottom: 1rem; font-weight: 400; }
.page-content .about-blurb { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; font-weight: 300; margin: 0; flex: 1; }
.page-content .about-credentials { list-style: none; text-align: left; margin-bottom: 1rem; flex-shrink: 0; }
.page-content .about-credentials li { padding: 0.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.85rem; color: var(--text-secondary); display: flex; align-items: center; gap: 0.6rem; }
.page-content .about-credentials li .cred-icon { color: var(--gold); font-size: 0.65rem; min-width: 14px; }

/* ===== Thank-you page ===== */
body.thank-you { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem; }
.thank-you .card { max-width: 580px; width: 100%; background: linear-gradient(145deg, rgba(15, 32, 68, 0.9), rgba(10, 22, 40, 0.95)); border: 2px solid rgba(201, 162, 39, 0.25); border-radius: 24px; padding: 3.5rem 3rem; text-align: center; position: relative; overflow: hidden; }
.thank-you .checkmark { font-size: 3.5rem; margin-bottom: 1.5rem; }
.thank-you .highlight { background: rgba(201, 162, 39, 0.08); border: 1px solid rgba(201, 162, 39, 0.2); border-radius: 12px; padding: 1.5rem; margin: 1.5rem 0; text-align: left; }
.thank-you .payment-box { background: rgba(201, 162, 39, 0.06); border: 1px solid rgba(201, 162, 39, 0.25); border-radius: 12px; padding: 1.5rem; margin: 1.5rem 0; }
.thank-you .payment-amount { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 800; background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 0.3rem; }
.thank-you .payment-sub { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 1.2rem; }
.thank-you .btn { display: inline-block; background: var(--gradient-gold); color: var(--navy); padding: 0.9rem 2rem; border-radius: 8px; font-weight: 700; font-size: 0.85rem; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; transition: transform 0.3s, box-shadow 0.3s; }
.thank-you .back-link { margin-top: 1.5rem; display: block; font-size: 0.8rem; color: var(--text-secondary); text-decoration: none; }
.thank-you .back-link:hover { color: var(--gold); }
.thank-you .instructions { font-size: 0.82rem; color: var(--text-secondary); margin-top: 0.8rem; line-height: 1.6; }
.thank-you .instructions strong { color: var(--gold); }

/* ===== Members: module-accordion, test-accordion ===== */
.module-accordion, .test-accordion { background: rgba(15, 32, 68, 0.6); border: 1px solid rgba(201, 162, 39, 0.1); border-radius: 12px; margin-bottom: 0.5rem; overflow: hidden; }
.module-accordion:hover, .test-accordion:hover { border-color: rgba(201, 162, 39, 0.25); }
.module-header, .test-header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; cursor: pointer; user-select: none; }
.module-header:hover, .test-header:hover { background: rgba(201, 162, 39, 0.04); }
.module-header .mod-num, .test-header .test-num { font-size: 0.7rem; font-weight: 700; color: var(--gold); letter-spacing: 2px; margin-right: 1rem; }
.module-header .mod-title, .test-header .test-title { font-size: 1rem; font-weight: 600; }
.module-chevron, .test-chevron { color: var(--text-secondary); font-size: 0.8rem; transition: transform 0.3s; }
.module-accordion.open .module-chevron, .test-accordion.open .test-chevron { transform: rotate(180deg); }
.module-body, .test-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.module-accordion.open .module-body, .test-accordion.open .test-body { max-height: 500px; }
.module-items, .test-items { padding: 0 1.25rem 1.25rem; border-top: 1px solid rgba(201, 162, 39, 0.08); }
.module-item, .test-item { display: flex; align-items: center; padding: 0.75rem 1rem; margin-top: 0.5rem; background: rgba(10, 22, 40, 0.5); border: 1px solid rgba(201, 162, 39, 0.08); border-radius: 8px; text-decoration: none; color: var(--white); font-size: 0.9rem; transition: all 0.2s; }
.module-item:hover, .test-item:hover { border-color: rgba(201, 162, 39, 0.3); color: var(--gold); }
.section-label { margin-top: 2.5rem; }
.section-label:first-of-type { margin-top: 0; }

/* ===== Members module-video-answers ===== */
.question-list { display: flex; flex-direction: column; gap: 2rem; }
.question-block { background: rgba(15, 32, 68, 0.6); border: 1px solid rgba(201, 162, 39, 0.1); border-radius: 12px; overflow: hidden; }
.question-block:hover { border-color: rgba(201, 162, 39, 0.2); }
.question-block-header { padding: 0.75rem 1.25rem; background: rgba(10, 22, 40, 0.5); border-bottom: 1px solid rgba(201, 162, 39, 0.08); font-weight: 600; font-size: 1rem; color: var(--gold); }
.video-placeholder { background: rgba(15, 32, 68, 0.8); border: 2px dashed rgba(201, 162, 39, 0.4); border-radius: 8px; min-height: 120px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--text-secondary); font-size: 1rem; font-weight: 500; text-align: center; padding: 2rem; margin: 1rem 1.25rem 1rem; }
.video-placeholder small { margin-top: 0.5rem; display: block; opacity: 0.8; font-size: 0.8rem; font-weight: 400; }
.placeholder-note { color: var(--text-secondary); font-size: 0.8rem; font-style: italic; margin-top: 0.5rem; }

/* ===== Members test-video-answers: video-placeholder aspect-ratio variant ===== */
body.test-video-answers .video-placeholder { border: 1px dashed rgba(201, 162, 39, 0.3); aspect-ratio: 16/9; min-height: 0; padding: 2rem; margin: 1rem 1.25rem 1rem; }

/* ===== Members act-introduction ===== */
.content-placeholder { background: rgba(15, 32, 68, 0.6); border: 1px solid rgba(201, 162, 39, 0.1); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.content-placeholder h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--gold); margin-bottom: 1rem; }
.content-placeholder p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }

/* ===== Members video-lessons ===== */
.intro-card { background: rgba(15, 32, 68, 0.6); border: 1px solid rgba(201, 162, 39, 0.2); border-radius: 14px; padding: 2rem; margin-bottom: 1.5rem; }
.intro-card h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; margin-bottom: 0.5rem; }
.intro-card p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 1rem; line-height: 1.6; }
.video-embed-wrap { position: relative; width: 100%; padding-bottom: 56.25%; border-radius: 12px; overflow: hidden; background: #000; }
.video-embed-wrap iframe, .video-embed-wrap video, .video-embed-wrap .video-placeholder { position: absolute; top: 0; left: 0; width: 100%; height: 100%; margin: 0; }
.topic-list { display: flex; flex-direction: column; gap: 0.5rem; }
.topic-accordion { background: rgba(15, 32, 68, 0.6); border: 1px solid rgba(201, 162, 39, 0.1); border-radius: 12px; overflow: hidden; transition: all 0.3s; }
.topic-accordion:hover { border-color: rgba(201, 162, 39, 0.25); }
.topic-accordion.open { border-color: rgba(201, 162, 39, 0.35); }
.topic-accordion-header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; cursor: pointer; user-select: none; }
.topic-accordion-header:hover { background: rgba(201, 162, 39, 0.04); }
.topic-accordion-header .topic-title { font-size: 1rem; font-weight: 600; }
.topic-accordion-header .topic-num { font-size: 0.65rem; font-weight: 700; color: var(--gold); letter-spacing: 2px; margin-right: 1rem; }
.topic-accordion-header .chevron { color: var(--text-secondary); font-size: 0.8rem; transition: transform 0.3s; }
.topic-accordion.open .chevron { transform: rotate(180deg); }
.topic-accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.topic-accordion.open .topic-accordion-body { max-height: 800px; }
.topic-accordion-content { padding: 0 1.25rem 1.25rem; }
.topic-videos { display: flex; flex-direction: column; gap: 0.75rem; }
.topic-video-item { background: rgba(10, 22, 40, 0.5); border: 1px solid rgba(201, 162, 39, 0.08); border-radius: 8px; padding: 1rem; margin-bottom: 0.75rem; }
.topic-video-item:last-child { margin-bottom: 0; }
.topic-video-item h4 { font-size: 0.9rem; margin-bottom: 0.5rem; }
.coming-soon-msg { color: var(--text-secondary); font-size: 0.85rem; font-style: italic; padding: 1rem 0; }

/* ===== Privacy Policy ===== */
.page-content .privacy-policy-h1 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; margin-bottom: 2rem; color: var(--white); }
.page-content .privacy-policy-h1 span { font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 400; color: var(--text-secondary); }
.page-content .privacy-policy-h2 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin: 1.5rem 0 0.75rem; color: var(--gold); }
.page-content .privacy-policy-p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; margin-bottom: 1rem; font-weight: 300; }
.page-content .privacy-policy-ol { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.8; margin: 1rem 0 1.5rem 1.5rem; padding-left: 1.25rem; }
.page-content .privacy-policy-ol li { margin-bottom: 0.5rem; }
.page-content .privacy-policy-ol ol { margin: 0.5rem 0 1rem 1rem; list-style-type: lower-alpha; }
