/* ═══════════════════════════════════════════════════════════
   10xForge — Charcoal + Lime Design System
   Layout F: Premium Product
   ═══════════════════════════════════════════════════════════ */

/* ─── Design Tokens ──────────────────────────────────────── */
:root {
    --bg:          #101010;
    --bg2:         #191919;
    --bg3:         #141414;
    --bg-card:     #1a1a1a;
    --bg-elevated: #1f1f1f;
    --bg-surface:  #0e0e0e;

    --accent:      #c8ee44;
    --accent-dim:  #a8cc22;
    --accent-bg:   rgba(200, 238, 68, 0.08);
    --accent-bg2:  rgba(200, 238, 68, 0.05);

    --text:        #f0f0ec;
    --text-mid:    #b0b0a8;
    --text-muted:  #8a8a80;
    --text-dim:    #5a5a52;

    --border:      #2a2a28;
    --border-light:#222220;
    --border-accent: rgba(200, 238, 68, 0.15);

    --radius:      8px;
    --radius-lg:   12px;
    --radius-xl:   16px;

    --font-body:   'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display:'Playfair Display', Georgia, 'Times New Roman', serif;

    --max-width:   1120px;
    --gap:         24px;
}

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

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

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a { color: var(--accent); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.85; }

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Header ─────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(16, 16, 16, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    height: 64px;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-mark { flex-shrink: 0; }

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 28px;
    margin-left: auto;
}

.main-nav a {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
    transition: color 0.2s;
}

.main-nav a:hover { color: var(--text); opacity: 1; }

.header-cta { margin-left: 16px; flex-shrink: 0; }

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text-muted);
    border-radius: 1px;
    transition: all 0.2s;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    line-height: 1;
}

.btn-sm { font-size: 13px; padding: 10px 20px; }

.btn-primary {
    background: var(--accent);
    color: var(--bg);
}
.btn-primary:hover {
    background: var(--accent-dim);
    opacity: 1;
}

.btn-outline {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
}
.btn-outline:hover {
    border-color: var(--text-dim);
    color: var(--text);
    opacity: 1;
}

.btn-ghost {
    background: transparent;
    color: var(--accent);
    padding: 14px 8px;
}
.btn-ghost:hover { opacity: 0.8; }

/* ─── Status Banner ──────────────────────────────────────── */
.status-banner {
    border-bottom: 1px solid var(--border);
    background: var(--accent-bg2);
}

.status-banner-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    font-size: 14px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-dot.open, .status-dot.closing_soon { background: var(--accent); }
.status-dot.full, .status-dot.closed { background: #e24b4a; }
.status-dot.scheduled { background: #f0c05a; }

.status-label {
    font-weight: 600;
    color: var(--accent);
    font-size: 13px;
}

.status-label.full, .status-label.closed { color: #e24b4a; }
.status-label.scheduled { color: #f0c05a; }

.status-copy {
    color: var(--text-muted);
    font-size: 13px;
}

/* ─── Hero — Layout F Split ──────────────────────────────── */
.hero {
    padding: 80px 0 60px;
    border-bottom: 1px solid var(--border);
}

.hero-split {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.hero-content { flex: 1.3; }

.hero-card-wrap { flex: 0.7; padding-top: 8px; }

.eyebrow {
    font-size: 12px;
    color: var(--accent);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -2px;
    color: var(--text);
    margin-bottom: 20px;
}

.hero h1 .accent-dot { color: var(--accent); }

.hero-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 32px;
}

.hero-actions { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }

.hero-meta {
    display: flex;
    gap: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.hero-meta-item label {
    display: block;
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.hero-meta-item span {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.seats-alert {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    color: #c8ee44;
}

/* Floating course card */
.course-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: sticky;
    top: 88px;
}

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

.course-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.course-card-details {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.course-card-seats {
    font-size: 13px;
    font-weight: 600;
    color: #c8ee44;
    margin-bottom: 16px;
}

.course-card .btn { width: 100%; }

/* Audience card — full-width hero bottom */
.audience-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin-top: 48px;
}

.audience-card h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--text);
    margin-bottom: 24px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 20px;
}

.audience-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.audience-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.audience-item span {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-muted);
}

.audience-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-bg);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius);
    color: var(--accent);
}

.audience-icon svg {
    width: 16px;
    height: 16px;
}

.audience-note {
    font-size: 13px;
    font-weight: 600;
    color: #c8ee44;
}

@media (max-width: 900px) {
    .audience-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
    .audience-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 480px) {
    .audience-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ─── Section base ───────────────────────────────────────── */
.section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

.section-alt { background: var(--bg2); }

.section-header {
    margin-bottom: 40px;
    max-width: 640px;
}

.section-header .eyebrow { margin-bottom: 12px; }

.section-header h1,
.section-header h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ─── Why section ────────────────────────────────────────── */
.why-layout {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.why-content { flex: 1; }

.why-stats {
    flex: 0.55;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
}

.stat-card .stat-value {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-card .stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

/* ─── Differentiators ────────────────────────────────────── */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.diff-card {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    transition: border-color 0.2s;
}

.diff-card:hover { border-color: var(--accent); }

.diff-card-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    background: var(--accent-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.diff-card-icon svg { stroke: var(--accent); width: 18px; height: 18px; }

.diff-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

.diff-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ─── Curriculum ─────────────────────────────────────────── */
.curriculum-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.module-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color 0.2s;
}

.module-card:hover { border-color: var(--accent); }

.module-num {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    min-width: 32px;
    line-height: 1;
    padding-top: 2px;
}

.module-card h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.module-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ─── How it works / Timeline ────────────────────────────── */
.timeline-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.timeline-day {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.timeline-day-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--bg);
    background: var(--accent);
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.timeline-day h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.timeline-day ul {
    list-style: none;
    padding: 0;
}

.timeline-day ul li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.timeline-day ul li:last-child { border-bottom: none; }

.timeline-day ul li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

/* ─── Batch details ──────────────────────────────────────── */
.batch-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.batch-detail-item {
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.batch-detail-item label {
    display: block;
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.batch-detail-item span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

/* ─── Instructors ────────────────────────────────────────── */
.instructor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.instructor-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.instructor-avatar {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background: var(--accent-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
}

.instructor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.instructor-info h3 { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.instructor-info p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ─── Instructors — Design A Profile Cards ────────────────── */
.instructor-card-v2 {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.instructor-card-header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.instructor-meta h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}

.instructor-role {
    font-size: 13px;
    color: var(--accent);
    font-weight: 500;
}

.instructor-tenure {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.instructor-bio {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.instructor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.instructor-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    margin-left: auto;
    float: right;
    font-size: 13px;
    font-weight: 600;
    color: #0a66c2;
    text-decoration: none;
}

.instructor-linkedin:hover {
    text-decoration: underline;
}

.skill-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent-bg);
    border: 1px solid var(--border-accent);
    border-radius: 4px;
    font-size: 12px;
    color: var(--accent);
    font-weight: 500;
}

/* ─── Batch Feature Card — Design Y ──────────────────────── */
.batch-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
}

.batch-feature-info {
    flex: 1;
    padding: 36px;
}

.batch-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.batch-info-item label {
    display: block;
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.batch-info-item span {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.batch-feature-cta {
    width: 240px;
    background: var(--accent-bg2);
    border-left: 1px solid var(--border);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.batch-fee {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.batch-fee-original {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 600;
    color: #dc2626;
    line-height: 1;
    margin-bottom: 2px;
}

.batch-fee-label {
    font-size: 13px;
    color: var(--text-muted);
    margin: 4px 0 20px;
}

.batch-offer-badge {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
}

.batch-reg-label {
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.batch-reg-dates {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.faq-item {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.faq-item h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.faq-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ─── CTA Section ────────────────────────────────────────── */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
}

.cta-section .eyebrow { margin-bottom: 12px; }

.cta-section h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── Forms ──────────────────────────────────────────────── */
.form-section { max-width: 640px; }
.form-section.centered { margin: 0 auto; }

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-mid);
    margin-bottom: 6px;
}

.form-group label .required { color: var(--accent); }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    background: var(--bg-elevated);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}

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

.form-group select { appearance: none; cursor: pointer; }

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

.form-error {
    font-size: 13px;
    color: #e24b4a;
    margin-top: 4px;
}

.form-group input.input-error,
.form-group select.input-error,
.form-group textarea.input-error {
    border-color: #e24b4a;
}

.form-alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    margin-bottom: 24px;
    border: 1px solid;
}

.form-alert.error {
    background: rgba(226, 75, 74, 0.08);
    border-color: rgba(226, 75, 74, 0.2);
    color: #f09595;
}

.form-alert.success {
    background: var(--accent-bg);
    border-color: var(--border-accent);
    color: var(--accent);
}

/* ─── Success page ───────────────────────────────────────── */
.success-page { padding: 80px 0; }

.success-card {
    max-width: 640px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.success-card h1 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.success-card .lead {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.payment-block {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 16px;
}

.payment-block h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-block p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    white-space: pre-line;
}

/* ─── Legal Pages ────────────────────────────────────────── */
.legal-page {
    padding: 60px 0;
    max-width: 720px;
    margin: 0 auto;
}

.legal-page h1 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.legal-page .legal-date {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 36px;
}

.legal-page h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 32px 0 12px;
    color: var(--text);
}

.legal-page p, .legal-page li {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-page ul { padding-left: 20px; margin-bottom: 16px; }
.legal-page ul li { margin-bottom: 6px; }

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    padding: 60px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-dim);
}

.footer-links h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    padding: 4px 0;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-dim);
}

.footer-contact a { color: var(--text-muted); }

/* ─── Admin ──────────────────────────────────────────────── */
.admin-body { background: #f6f6f3; color: #1a1a1a; }
.admin-main { min-height: 100vh; }

.admin-header {
    background: #101010;
    color: #f0f0ec;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.admin-header .logo-text { color: #f0f0ec; font-size: 16px; font-weight: 700; }
.admin-header nav { margin-left: auto; display: flex; gap: 20px; }
.admin-header nav a { color: #8a8a80; font-size: 13px; }
.admin-header nav a:hover { color: #f0f0ec; }
.admin-header nav a.active { color: #c8ee44; }

.admin-container { max-width: 1020px; margin: 0 auto; padding: 32px 24px; }

.admin-title { font-size: 24px; font-weight: 700; margin-bottom: 24px; color: #1a1a1a; }

.admin-card {
    background: #fff;
    border: 1px solid #e5e5e0;
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 20px;
}

.admin-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 12px; }

.admin-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }

.admin-stat {
    background: #fff;
    border: 1px solid #e5e5e0;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.admin-stat .value { font-size: 28px; font-weight: 700; color: #101010; }
.admin-stat .label { font-size: 13px; color: #888; margin-top: 4px; }

.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.admin-table th { text-align: left; padding: 10px 12px; font-size: 12px; color: #888; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 2px solid #e5e5e0; }
.admin-table td { padding: 12px; border-bottom: 1px solid #f0f0ec; color: #333; }
.admin-table tr:hover td { background: #fafaf8; }

.badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge-pending { background: #fef3c7; color: #92400e; }
.badge-confirmed { background: #dbeafe; color: #1e40af; }
.badge-cancelled { background: #fee2e2; color: #991b1b; }
.badge-new { background: #e0e7ff; color: #3730a3; }
.badge-open { background: #d1fae5; color: #065f46; }
.badge-closed { background: #fee2e2; color: #991b1b; }

.registrant-name-link { color: #101010; text-decoration: none; }
.registrant-name-link:hover { color: #555; text-decoration: underline; }

.reg-modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 1000; display: flex; align-items: center; justify-content: center; }
.reg-modal { background: #fff; border-radius: 12px; padding: 32px; width: 520px; max-width: 92vw; max-height: 85vh; overflow-y: auto; position: relative; box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.reg-modal-close { position: absolute; top: 12px; right: 16px; background: none; border: none; font-size: 24px; color: #888; cursor: pointer; line-height: 1; }
.reg-modal-close:hover { color: #333; }
.reg-modal-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.reg-modal-table tr { border-bottom: 1px solid #f0f0ec; }
.reg-modal-table td { padding: 10px 8px; vertical-align: top; color: #333; }
.reg-modal-label { font-weight: 600; color: #888; white-space: nowrap; width: 160px; font-size: 13px; }

.admin-form label { display: block; font-size: 14px; font-weight: 500; color: #555; margin-bottom: 4px; }
.admin-form input, .admin-form select, .admin-form textarea {
    width: 100%; padding: 10px 14px; font-size: 14px; border: 1px solid #ddd; border-radius: 6px; margin-bottom: 14px; font-family: var(--font-body);
}
.admin-form input:focus, .admin-form select:focus, .admin-form textarea:focus { border-color: #101010; outline: none; }

.admin-btn { padding: 10px 24px; background: #101010; color: #fff; border: none; border-radius: 6px; font-size: 14px; font-weight: 600; cursor: pointer; }
.admin-btn:hover { background: #2a2a2a; }

.admin-login-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #101010;
}

.admin-login-card {
    background: #1a1a1a;
    border: 1px solid #2a2a28;
    border-radius: 12px;
    padding: 40px;
    width: 380px;
}

.admin-login-card h1 {
    font-size: 22px;
    font-weight: 700;
    color: #f0f0ec;
    margin-bottom: 24px;
    text-align: center;
}

.admin-login-card label { color: #8a8a80; }
.admin-login-card input { background: #101010; color: #f0f0ec; border-color: #2a2a28; }
.admin-login-card input:focus { border-color: #c8ee44; }
.admin-login-card .admin-btn { width: 100%; background: #c8ee44; color: #101010; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
    .hero h1 { font-size: 36px; letter-spacing: -1px; }
    .hero-split { flex-direction: column; gap: 32px; }
    .hero-card-wrap { width: 100%; }
    .hero-meta { gap: 20px; flex-wrap: wrap; }
    .section-header h1, .section-header h2 { font-size: 28px; }
    .why-layout { flex-direction: column; gap: 32px; }
    .diff-grid { grid-template-columns: 1fr; }
    .curriculum-grid { grid-template-columns: 1fr; }
    .timeline-row { grid-template-columns: 1fr; }
    .instructor-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .batch-details-grid { grid-template-columns: 1fr 1fr; }
    .batch-feature-card { flex-direction: column; }
    .batch-feature-cta { width: 100%; border-left: none; border-top: 1px solid var(--border); padding: 28px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .admin-stat-grid { grid-template-columns: 1fr 1fr; }
    .container { padding: 0 16px; }

    .main-nav { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 12px; }
    .main-nav.open { display: flex; }
    .mobile-menu-toggle { display: flex; }
    .header-cta { display: none; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 30px; }
    .cta-section h2 { font-size: 28px; }
    .batch-details-grid { grid-template-columns: 1fr; }
    .why-stats { grid-template-columns: 1fr 1fr; }
}

/* Floating Video */
.video-float {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 999;
    width: 200px;
    background: #000;
    border-radius: var(--radius-lg);
    overflow: visible;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    cursor: grab;
    user-select: none;
}
.video-float-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: #000;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    cursor: pointer;
    z-index: 1;
    padding: 0;
    font-weight: 700;
    transition: transform 0.2s;
}
.video-float-close:hover { transform: scale(1.15); }
.video-float-frame {
    position: relative;
    width: 100%;
    padding-top: 177.78%; /* 9:16 for YouTube Shorts */
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.video-float-frame iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
}
.video-drag-handle {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    cursor: grab;
    z-index: 2;
}
@media (max-width: 480px) {
    .video-float { width: 150px; top: 70px; right: 12px; }
}
