/* ============================================
   VARIABLES & RESET
   ============================================ */
:root {
    --red: #cc0000;
    --red-dark: #990000;
    --red-glow: rgba(204, 0, 0, 0.3);
    --bg-dark: #0a0a0a;
    --bg-section: #111111;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222222;
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0a0;
    --text-dim: #666666;
    --border: #2a2a2a;
    --border-light: #333333;
    --font-display: 'Oswald', sans-serif;
    --font-body: 'Noto Sans TC', sans-serif;
    --max-width: 1200px;
    --nav-height: 64px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

/* ============================================
   UTILITIES
   ============================================ */
.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-family: var(--font-body);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.section-title .title-accent {
    display: block;
    font-size: 0.5em;
    font-weight: 500;
    color: var(--text-secondary);
    margin-top: 0.3em;
    letter-spacing: 0.05em;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--red);
    color: #fff;
}

.btn-primary:hover {
    background: var(--red-dark);
    box-shadow: 0 4px 30px var(--red-glow);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-ghost:hover {
    border-color: var(--text-primary);
    background: rgba(255,255,255,0.05);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

.required {
    color: var(--red);
}

/* ============================================
   0. SITE HEADER (brand bar)
   ============================================ */
#site-header {
    position: relative;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid #e0e0e0;
}

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

.site-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo-img {
    height: 64px;
    width: auto;
    max-width: 225px;
    object-fit: contain;
}

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

.site-header-back,
.site-header-link {
    font-size: 0.85rem;
    color: #555;
    transition: color 0.2s;
    white-space: nowrap;
}

.site-header-back:hover,
.site-header-link:hover {
    color: var(--red);
}

.site-header-back::before {
    content: '\2190\00a0';
}

@media (max-width: 768px) {
    .site-header-inner {
        height: 48px;
    }
    .site-logo-img {
        height: 28px;
    }
    .site-header-link {
        display: none;
    }
}

/* ============================================
   1. STICKY NAV
   ============================================ */
#sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

#sticky-nav.visible {
    transform: translateY(0);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    font-family: var(--font-body);
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--red);
}

.nav-divider {
    color: var(--border-light);
}

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

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

.nav-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color 0.2s;
}

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

.nav-links .nav-cta {
    background: var(--red);
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
}

.nav-links .nav-cta:hover {
    background: var(--red-dark);
}

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 0 24px 20px;
    gap: 16px;
}

.nav-mobile a {
    font-size: 1rem;
    color: var(--text-secondary);
    padding: 4px 0;
}

.nav-mobile .nav-cta {
    background: var(--red);
    color: #fff;
    padding: 12px;
    border-radius: 4px;
    text-align: center;
    font-weight: 700;
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .nav-mobile.open { display: flex; }
}

/* ============================================
   2. HERO
   ============================================ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0;
    transform: translateX(8%) scale(1.05);
    transition: opacity 1s ease, transform 6s ease-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0%) scale(1);
    z-index: 1;
}

.hero-slide.slide-out {
    opacity: 0;
    transform: translateX(-8%) scale(1);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        105deg,
        rgba(10,10,10,0.95) 0%,
        rgba(10,10,10,0.90) 35%,
        rgba(10,10,10,0.70) 60%,
        rgba(10,10,10,0.50) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: calc(var(--nav-height) + 40px) 24px 60px;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: var(--red);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.1em;
}

.hero-badge strong {
    font-size: 1.3em;
}

#hero h1 {
    font-family: var(--font-body);
    font-weight: 900;
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    line-height: 1.25;
    margin-bottom: 20px;
    max-width: 700px;
}

.hero-h1-sub {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
    letter-spacing: 0.1em;
}

.hero-course-name {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    color: var(--text-secondary);
    margin-bottom: 12px;
}

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

.hero-highlight {
    font-size: 1rem;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 32px;
}

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

.hero-date-strip {
    display: flex;
    gap: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.date-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.date-label {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

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

.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--red), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   3. SOCIAL PROOF
   ============================================ */
#proof {
    padding: 100px 0 60px;
    background: var(--bg-dark);
    position: relative;
}

#proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, rgba(10,10,10,1), transparent);
    pointer-events: none;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-primary);
    display: inline;
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--red);
    display: inline;
    vertical-align: top;
    margin-left: 4px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

.proof-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 50px;
}

/* Logo Marquee */
.logo-marquee-wrap {
    overflow: hidden;
    padding: 40px 0 50px;
    position: relative;
}

.logo-marquee-label {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 28px;
    font-weight: 600;
}

.logo-marquee {
    overflow: hidden;
    position: relative;
    padding: 14px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.logo-track {
    display: flex;
    gap: 48px;
    width: max-content;
    will-change: transform;
}

.logo-marquee[data-direction="left"] .logo-track {
    animation: marqueeLeft 120s linear infinite;
}

.logo-marquee[data-direction="right"] .logo-track {
    animation: marqueeRight 140s linear infinite;
}

.logo-track img {
    height: 64px;
    width: auto;
    opacity: 0.7;
    filter: brightness(1.1);
    transition: opacity 0.3s, filter 0.3s;
    flex-shrink: 0;
}

.logo-track img:hover {
    opacity: 1;
    filter: brightness(1.2);
}

@keyframes marqueeLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ============================================
   3.5 INSTRUCTORS
   ============================================ */
#instructors {
    padding: 100px 0;
    background: var(--bg-dark);
}

.instructor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

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

.instructor-card:hover {
    border-color: var(--red);
}

.instructor-lead {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(204,0,0,0.05) 100%);
    border-color: rgba(204,0,0,0.3);
}

.instructor-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 2px solid var(--border);
    flex-shrink: 0;
}

.instructor-lead .instructor-photo {
    width: 100px;
    height: 100px;
    border-color: var(--red);
}

.instructor-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.instructor-role {
    font-size: 0.85rem;
    color: var(--red);
    font-weight: 600;
    margin-bottom: 6px;
}

.instructor-exp {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.instructor-exp strong {
    color: var(--text-primary);
    font-family: var(--font-display);
}

.instructor-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.instructor-cases {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.cases-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.instructor-cases ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.instructor-cases li {
    font-size: 0.78rem;
    color: var(--text-secondary);
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 4px 10px;
    line-height: 1.5;
}

.instructor-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Hero instructor line */
.hero-instructor {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 500;
}

/* ============================================
   4. DELIVERABLES
   ============================================ */
#deliverables {
    padding: 100px 0;
    background: var(--bg-section);
}

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

.del-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px 24px;
    transition: border-color 0.3s, transform 0.3s;
}

.del-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
}

.del-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.del-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

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

.bonus-block-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.bonus-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--red);
    border-radius: 0 8px 8px 0;
    padding: 32px;
}

.bonus-photo {
    border-radius: 8px;
    overflow: hidden;
}

.bonus-photo-caption {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-align: center;
    margin-top: 10px;
}

/* Equipment slider */
.equip-slider {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.equip-track {
    display: flex;
    transition: transform 0.5s ease;
}

.equip-track img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    flex-shrink: 0;
}

.equip-prev, .equip-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
}

.equip-prev:hover, .equip-next:hover {
    background: rgba(204, 0, 0, 0.7);
}

.equip-prev { left: 10px; }
.equip-next { right: 10px; }

.equip-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.equip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.3s;
}

.equip-dot.active {
    background: var(--red);
}

.bonus-block h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.bonus-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.bonus-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.bonus-check {
    color: var(--red);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================
   5. POOLS
   ============================================ */
#pools {
    padding: 100px 0;
    background: var(--bg-dark);
}

.pool-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.pool-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px 32px;
    transition: border-color 0.3s;
}

.pool-card:hover {
    border-color: var(--red);
}

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

.pool-header h3 {
    font-size: 1.5rem;
    font-weight: 900;
}

.pool-tag {
    background: rgba(204, 0, 0, 0.15);
    color: var(--red);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.pool-features {
    list-style: none;
}

.pool-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
}

.pool-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--red);
}

.pool-features li:last-child {
    border-bottom: none;
    color: var(--text-primary);
    font-weight: 600;
}

/* ============================================
   6. CURRICULUM
   ============================================ */
#curriculum {
    padding: 100px 0;
    background: var(--bg-section);
}

.curriculum-image-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 48px;
    border-radius: 8px;
    overflow: hidden;
}

.curriculum-image-strip img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 4px;
}

.day-block {
    margin-bottom: 48px;
}

.day-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.day-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.05em;
}

.day-date {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.day-theme {
    font-size: 1rem;
    color: var(--text-secondary);
    padding-left: 16px;
    border-left: 2px solid var(--border);
}

.schedule-accordion {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.schedule-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.schedule-item.open {
    border-color: var(--red);
}

.schedule-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}

.schedule-toggle:hover {
    background: rgba(255,255,255,0.02);
}

.schedule-time {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text-dim);
    min-width: 120px;
    letter-spacing: 0.03em;
}

.schedule-topic {
    flex: 1;
    font-weight: 600;
}

.schedule-arrow {
    font-size: 1.2rem;
    color: var(--text-dim);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.schedule-item.open .schedule-arrow {
    transform: rotate(45deg);
    color: var(--red);
}

.schedule-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.schedule-detail p {
    padding: 0 24px 18px;
    padding-left: calc(120px + 24px + 16px);
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.cert-block {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--red);
    border-radius: 0 8px 8px 0;
    padding: 32px;
    margin-top: 32px;
}

.cert-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.cert-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cert-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   7. WHO
   ============================================ */
#who {
    padding: 100px 0;
    background: var(--bg-dark);
}

.who-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-dim);
    margin-bottom: 36px;
    line-height: 1.7;
}

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

.ta-group {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.ta-group-header {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: var(--text-primary);
}

.ta-group-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

.ta-arrow {
    font-size: 1.2rem;
    color: var(--text-dim);
    flex-shrink: 0;
    margin-left: 12px;
    transition: transform 0.3s;
}

.ta-group-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.ta-group-body.ta-open {
    max-height: 2000px;
}

.ta-role {
    padding: 12px 24px;
    border-top: 1px solid var(--border);
}

.ta-role h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.ta-role p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.who-divider {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-dim);
    margin-bottom: 20px;
}

.who-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px;
    max-width: 600px;
    margin: 0 auto;
}

.who-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.who-yes h3 {
    color: #4ade80;
}

.who-no h3 {
    color: var(--text-dim);
}

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

.who-card li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

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

.who-no-desc {
    font-size: 0.82rem;
    color: var(--text-dim);
    font-weight: 400;
}

/* ============================================
   8. PRICING
   ============================================ */
#pricing {
    padding: 100px 0;
    background: var(--bg-section);
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 20px;
    align-items: start;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 36px 28px;
    position: relative;
}

.price-featured {
    border-color: var(--red);
    box-shadow: 0 0 40px var(--red-glow);
    transform: scale(1.02);
}

.price-ribbon {
    position: absolute;
    top: -1px;
    right: 24px;
    background: var(--red);
    color: #fff;
    padding: 6px 16px 8px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 0 0 6px 6px;
}

.price-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.price-note {
    font-size: 0.85rem;
    color: var(--red);
    font-weight: 600;
}

.price-amount {
    margin: 20px 0;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-currency {
    font-size: 1rem;
    color: var(--text-secondary);
}

.price-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.price-includes {
    list-style: none;
    margin-bottom: 20px;
}

.price-includes li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    padding-left: 18px;
    position: relative;
}

.price-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--text-dim);
    font-size: 0.8rem;
}

.price-includes li:last-child {
    border-bottom: none;
}

.price-bonus {
    color: var(--red) !important;
    font-weight: 600 !important;
}

.price-bonus::before {
    color: var(--red) !important;
}

.price-bonus-desc {
    font-size: 0.8rem !important;
    color: var(--text-dim) !important;
    padding-left: 18px !important;
    border-bottom: none !important;
}

.price-bonus-desc::before {
    content: '' !important;
}

.price-urgency {
    font-size: 0.85rem;
    color: var(--red);
    font-weight: 600;
    text-align: center;
    margin-bottom: 16px;
}

.price-group-options {
    margin: 20px 0;
}

.group-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.group-option:last-child {
    border-bottom: none;
}

.group-ppl {
    font-weight: 700;
    font-size: 0.95rem;
    min-width: 80px;
}

.group-discount {
    background: rgba(204,0,0,0.15);
    color: var(--red);
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.group-price {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ============================================
   8.5 LEARNING PATH
   ============================================ */
#path {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
}

.path-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 48px;
}

.path-step {
    display: flex;
    gap: 28px;
    position: relative;
    padding-bottom: 8px;
}

.path-marker {
    flex-shrink: 0;
    width: 120px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    padding-top: 4px;
}

.path-stage {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dim);
    letter-spacing: 0.05em;
}

.path-badge-now {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--red);
}

.path-badge-soon {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-dim);
    background: rgba(204,0,0,0.1);
    padding: 2px 8px;
    border-radius: 10px;
}

.path-badge-plan {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-dim);
    background: rgba(255,255,255,0.05);
    padding: 2px 8px;
    border-radius: 10px;
}

.path-content {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 32px;
    transition: border-color 0.3s;
}

.path-current .path-content {
    border-color: var(--red);
    box-shadow: 0 0 30px var(--red-glow);
}

.path-current .path-stage {
    color: var(--red);
}

.path-content h3 {
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 4px;
}

.path-subtitle {
    font-size: 0.8rem;
    color: var(--red);
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.03em;
}

.path-content p:last-child {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.path-connector {
    width: 2px;
    height: 32px;
    background: linear-gradient(to bottom, var(--red), var(--border));
    margin-left: 130px;
    margin-bottom: 0;
}

.path-next .path-content {
    opacity: 0.85;
}

.path-future .path-content {
    opacity: 0.65;
}

/* Stage 2+ grid */
.stage2plus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
}

.stage2plus-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    transition: border-color 0.3s;
}

.stage2plus-card:hover {
    border-color: var(--red);
}

.stage2plus-icon {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.stage2plus-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.stage2plus-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.stage2plus-note {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 14px;
}

/* ROI block */
.roi-block {
    max-width: 700px;
    margin: 40px auto 0;
    text-align: center;
    padding: 32px 24px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255,255,255,0.03);
}

.roi-block h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.roi-block p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.roi-block strong {
    color: var(--red);
}

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

.path-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .stage2plus-grid {
        grid-template-columns: 1fr;
    }
    .path-step {
        flex-direction: column;
        gap: 12px;
    }
    .path-marker {
        width: auto;
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    .path-connector {
        margin-left: 20px;
        height: 24px;
    }
    .path-content {
        padding: 24px;
    }
}

/* ============================================
   8.7 SHOWCASE
   ============================================ */
#showcase {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0d0d 50%, var(--bg-dark) 100%);
}

.showcase-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-dim);
    margin-bottom: 48px;
    line-height: 1.7;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
}

.showcase-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    min-width: 0;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
    border-color: rgba(204, 0, 0, 0.4);
}

.showcase-img-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.showcase-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.showcase-img-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, var(--bg-card));
}

.showcase-body {
    padding: 24px;
}

.showcase-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.showcase-tags span {
    font-size: 0.75rem;
    color: var(--red);
    background: rgba(204, 0, 0, 0.1);
    border: 1px solid rgba(204, 0, 0, 0.3);
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 600;
}

.showcase-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.showcase-body > p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.showcase-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.showcase-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.showcase-label {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-top: 6px;
    font-weight: 500;
}

.showcase-note {
    font-size: 0.78rem;
    color: var(--text-dim);
    font-style: italic;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    .showcase-img-wrap {
        height: 180px;
    }
}

/* ============================================
   8.8 ECOSYSTEM FLYWHEEL
   ============================================ */
#ecosystem {
    padding: 100px 0;
    background: var(--bg-section);
}

.eco-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-dim);
    margin-bottom: 48px;
    line-height: 1.7;
}

/* Desktop flywheel */
.flywheel-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 56px;
}

.flywheel {
    position: relative;
    width: 500px;
    height: 500px;
}

.flywheel-arrows {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.flywheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.3;
    z-index: 2;
    box-shadow: 0 0 30px rgba(204, 0, 0, 0.3);
}

.flywheel-node {
    position: absolute;
    width: 120px;
    text-align: center;
    z-index: 2;
    transition: opacity 0.3s;
}

.fn-icon {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.flywheel-node h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.flywheel-node p {
    font-size: 0.72rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

/* Position 6 nodes in a circle (500px container) */
.fn-1 { top: 20px;  left: 190px; }   /* top center */
.fn-2 { top: 120px; left: 365px; }   /* top right */
.fn-3 { top: 310px; left: 365px; }   /* bottom right */
.fn-4 { top: 410px; left: 190px; }   /* bottom center */
.fn-5 { top: 310px; left: 15px; }    /* bottom left */
.fn-6 { top: 120px; left: 15px; }    /* top left */

/* Hover effect */
.flywheel:hover .flywheel-node {
    opacity: 0.4;
}
.flywheel:hover .flywheel-node:hover {
    opacity: 1;
}
.flywheel:hover .flywheel-node:hover h4 {
    color: var(--red);
}

/* Mobile flywheel - hidden on desktop */
.flywheel-mobile {
    display: none;
}

/* Eco benefit cards */
.eco-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.eco-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 24px;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}

.eco-card:hover {
    border-color: var(--red);
    transform: translateY(-3px);
}

.eco-card-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.eco-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.eco-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.eco-closing {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.6;
}

.eco-closing strong {
    color: var(--red);
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Mobile: show vertical timeline, hide circular */
@media (max-width: 768px) {
    .flywheel-wrap {
        display: none;
    }
    .flywheel-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        margin-bottom: 40px;
    }
    .fm-step {
        display: flex;
        align-items: center;
        gap: 16px;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 8px;
        padding: 16px 20px;
        width: 100%;
        max-width: 400px;
    }
    .fm-num {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--red);
        color: #fff;
        font-weight: 700;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .fm-content h4 {
        font-size: 0.9rem;
        font-weight: 700;
        margin-bottom: 2px;
    }
    .fm-content p {
        font-size: 0.8rem;
        color: var(--text-secondary);
        margin: 0;
        line-height: 1.4;
    }
    .fm-arrow {
        font-size: 1.2rem;
        color: var(--red);
        padding: 6px 0;
    }
    .fm-loop {
        font-size: 1rem;
        color: var(--text-dim);
    }
    .eco-cards {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   9. FAQ
   ============================================ */
#faq {
    padding: 100px 0;
    background: var(--bg-dark);
}

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

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

.faq-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.faq-arrow {
    font-size: 1.2rem;
    color: var(--text-dim);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-arrow {
    transform: rotate(45deg);
    color: var(--red);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   10. REGISTRATION
   ============================================ */
#register {
    padding: 100px 0;
    background: var(--bg-section);
    position: relative;
}

#register::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--red);
}

.register-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.register-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 36px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 12px 14px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-group textarea {
    resize: vertical;
}

.form-disclaimer {
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-dim);
    text-align: center;
}

/* Success State */
#form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

#form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

#form-success p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.register-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px;
}

.info-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.info-row:last-of-type {
    border-bottom: none;
}

.info-label {
    color: var(--text-dim);
}

.info-value {
    color: var(--text-primary);
    font-weight: 500;
}

.info-note {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 12px;
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
    padding: 60px 0 0;
    background: #ffffff;
    color: #1a1a1a;
    border-top: none;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 0.8fr 0.8fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.footer-logo {
    height: 40px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.7;
}

.footer-contact h4,
.footer-nav h4,
.footer-social h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.footer-contact p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.8;
}

.footer-nav {
    display: flex;
    flex-direction: column;
}

.footer-nav a {
    font-size: 0.85rem;
    color: #555;
    padding: 4px 0;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--red);
}

.footer-social-links {
    display: flex;
    flex-direction: column;
}

.footer-social-links a {
    font-size: 0.85rem;
    color: #555;
    padding: 4px 0;
    transition: color 0.2s;
}

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

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

.footer-copy {
    font-size: 0.75rem;
    color: #999;
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .deliverable-cards {
        grid-template-columns: 1fr 1fr;
    }
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .price-featured {
        transform: none;
    }
    .register-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .proof-stats {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto 32px;
    }
    .deliverable-cards {
        grid-template-columns: 1fr;
    }
    .bonus-list {
        grid-template-columns: 1fr;
    }
    .bonus-block-wrap {
        grid-template-columns: 1fr;
    }
    .instructor-grid {
        grid-template-columns: 1fr;
    }
    .instructor-lead {
        grid-column: auto;
    }
    .instructor-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .pool-cards {
        grid-template-columns: 1fr;
    }
    .ta-grid {
        grid-template-columns: 1fr;
    }
    .ta-group-body.ta-open {
        max-height: 0;
    }
    .ta-group-body.ta-expanded {
        max-height: 2000px;
    }
    .curriculum-image-strip {
        grid-template-columns: 1fr;
    }
    .curriculum-image-strip img {
        height: 180px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .schedule-toggle {
        flex-wrap: wrap;
    }
    .schedule-time {
        min-width: auto;
        width: 100%;
        font-size: 0.8rem;
    }
    .schedule-detail p {
        padding-left: 24px;
    }
    .hero-date-strip {
        flex-direction: column;
        gap: 16px;
    }
    .proof-subtitle br {
        display: none;
    }
}

/* ============================================
   ANIMATIONS (scroll-triggered via JS)
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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