/* =============================================
   DESIGN SYSTEM — Overlens Bootcamp Aula 04
   Warm gold/amber integration palette
   ============================================= */

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

:root {
    --bg-primary: #08080e;
    --bg-secondary: #0c0c14;
    --bg-glass: rgba(255, 255, 255, 0.04);
    --text-primary: #f0f0f5;
    --text-secondary: #a0a0b8;
    --text-muted: #6a6a80;
    --accent-primary: #f59e0b;
    --accent-secondary: #fbbf24;
    --accent-warm: #f97316;
    --accent-glow: rgba(245, 158, 11, 0.3);
    --purple: #8b5cf6;
    --emerald: #10b981;
    --cyan: #06b6d4;
    --gradient-main: linear-gradient(135deg, #f59e0b 0%, #f97316 30%, #ef4444 60%, #8b5cf6 100%);
    --gradient-warm: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(139, 92, 246, 0.06) 100%);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(245, 158, 11, 0.2);
    --shadow-glow: 0 0 40px rgba(245, 158, 11, 0.1);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --section-padding: 120px;
    --container-max: 1200px;
    --radius-sm: 8px; --radius-md: 12px; --radius-lg: 20px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--bg-primary); color: var(--text-primary); line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }

/* NAV */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: var(--transition-smooth); background: transparent; }
#navbar.scrolled { background: rgba(8, 8, 14, 0.88); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-subtle); padding: 10px 0; }
.nav-container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; color: var(--text-primary); text-decoration: none; letter-spacing: 2px; display: flex; align-items: center; gap: 8px; }
.logo-icon { font-size: 1.4rem; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links { display: flex; list-style: none; gap: 8px; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.85rem; font-weight: 500; padding: 8px 14px; border-radius: var(--radius-sm); transition: var(--transition-fast); }
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); background: var(--bg-glass); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition-fast); }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; padding: 120px 24px 80px; overflow: hidden; }
.hero-bg-effects { position: absolute; inset: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.3; animation: orbFloat 22s ease-in-out infinite; }
.orb-1 { width: 500px; height: 500px; background: #f59e0b; top: -15%; right: -10%; }
.orb-2 { width: 400px; height: 400px; background: #8b5cf6; bottom: -10%; left: -10%; animation-delay: -6s; }
.orb-3 { width: 350px; height: 350px; background: #10b981; top: 50%; left: 40%; animation-delay: -12s; opacity: 0.15; }
.orb-4 { width: 300px; height: 300px; background: #ef4444; bottom: 30%; right: 20%; animation-delay: -18s; opacity: 0.12; }
@keyframes orbFloat { 0%, 100% { transform: translate(0, 0) scale(1); } 25% { transform: translate(30px, -40px) scale(1.05); } 50% { transform: translate(-20px, 20px) scale(0.95); } 75% { transform: translate(40px, 30px) scale(1.02); } }
.hero-content { text-align: center; position: relative; z-index: 1; max-width: 800px; }
.hero-badge { display: inline-block; background: var(--bg-glass); border: 1px solid var(--border-subtle); padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 500; color: var(--accent-secondary); margin-bottom: 32px; backdrop-filter: blur(10px); letter-spacing: 1px; }
.hero h1 { font-family: var(--font-heading); font-size: clamp(3rem, 8vw, 5.5rem); font-weight: 800; line-height: 1.05; margin-bottom: 24px; letter-spacing: -2px; }
.gradient-text { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 1.1rem; color: var(--text-secondary); max-width: 620px; margin: 0 auto 40px; line-height: 1.8; }
.hero-subtitle strong { color: var(--accent-secondary); }
.hero-subtitle em { color: var(--text-muted); }
.hero-meta { display: flex; justify-content: center; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
.meta-item { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text-muted); }
.hero-cta { display: inline-flex; align-items: center; gap: 10px; background: var(--gradient-main); color: white; text-decoration: none; padding: 16px 36px; border-radius: 50px; font-weight: 600; transition: var(--transition-smooth); box-shadow: 0 0 40px rgba(245, 158, 11, 0.15); }
.hero-cta:hover { transform: translateY(-3px); box-shadow: 0 0 60px rgba(245, 158, 11, 0.3); }

/* SECTIONS */
.section { padding: var(--section-padding) 0; position: relative; }
.section-dark { background: var(--bg-secondary); }
.section-final { background: linear-gradient(180deg, var(--bg-primary) 0%, #0a0810 100%); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 72px; }
.section-label { display: inline-block; font-family: var(--font-heading); font-size: 0.8rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 16px; }
.section-header h2 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -1px; line-height: 1.2; margin-bottom: 16px; }
.section-desc { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7; }
.section-desc strong { color: var(--accent-secondary); }
.subsection-title { font-family: var(--font-heading); font-size: 1.3rem; text-align: center; margin-bottom: 28px; }
.glass-card { background: var(--bg-glass); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); backdrop-filter: blur(12px); padding: 40px; transition: var(--transition-smooth); }
.glass-card:hover { border-color: var(--border-glow); box-shadow: var(--shadow-glow); }

/* RECAP */
.recap-intro { display: flex; gap: 24px; align-items: flex-start; margin-bottom: 48px; }
.ri-icon { font-size: 2.5rem; flex-shrink: 0; }
.ri-content h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 10px; }
.ri-content p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 10px; }
.ri-content blockquote { border-left: 3px solid var(--accent-primary); padding: 10px 18px; margin: 12px 0 0; font-style: italic; font-size: 0.9rem; color: var(--text-muted); background: rgba(245, 158, 11, 0.04); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

.recap-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 48px; }
.recap-card { padding: 32px; position: relative; overflow: hidden; }
.recap-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; transition: var(--transition-smooth); }
.recap-card:hover::before { opacity: 1; }
.recap-card:hover { transform: translateY(-4px); }
.recap-entropy::before { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }
.recap-time::before { background: linear-gradient(90deg, #06b6d4, #22d3ee); }
.recap-money::before { background: linear-gradient(90deg, #10b981, #34d399); }
.recap-energy::before { background: var(--gradient-main); }
.recap-num { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 900; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; opacity: 0.2; line-height: 1; margin-bottom: 8px; display: block; }
.recap-card h3 { font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: 12px; }
.recap-card ul { list-style: none; display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.recap-card ul li { font-size: 0.85rem; color: var(--text-secondary); padding-left: 16px; position: relative; line-height: 1.5; }
.recap-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--accent-primary); font-size: 0.8rem; }
.recap-tag { font-size: 0.72rem; font-weight: 600; padding: 4px 12px; border-radius: 50px; display: inline-block; }
.recap-entropy .recap-tag { background: rgba(139, 92, 246, 0.08); color: #a78bfa; border: 1px solid rgba(139, 92, 246, 0.12); }
.recap-time .recap-tag { background: rgba(6, 182, 212, 0.08); color: #22d3ee; border: 1px solid rgba(6, 182, 212, 0.12); }
.recap-money .recap-tag { background: rgba(16, 185, 129, 0.08); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.12); }
.recap-energy .recap-tag { background: rgba(245, 158, 11, 0.08); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.12); }

.principle { text-align: center; padding: 48px; }
.principle-quote { font-family: var(--font-heading); font-size: 1.2rem; font-style: italic; color: var(--text-primary); margin-bottom: 16px; border: none; padding: 0; opacity: 0.85; }
.principle p { font-size: 0.95rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* RIVER ANALOGY */
.river-analogy { display: flex; align-items: stretch; gap: 16px; margin-bottom: 48px; }
.river-stage { flex: 1; text-align: center; padding: 32px 24px; }
.river-icon { font-size: 2.5rem; margin-bottom: 12px; display: block; }
.river-stage h3 { font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: 6px; }
.river-stage > p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 14px; }
.river-stage ul { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 4px; }
.river-stage ul li { font-size: 0.82rem; color: var(--text-secondary); padding-left: 14px; position: relative; }
.river-stage ul li::before { content: '·'; position: absolute; left: 0; font-weight: 700; color: var(--accent-primary); }
.river-arrow { display: flex; align-items: center; font-size: 1.8rem; color: var(--accent-primary); font-weight: 700; flex-shrink: 0; }

.river-mistake { padding: 0; overflow: hidden; margin-bottom: 48px; }
.rm-header { background: rgba(239, 68, 68, 0.08); padding: 24px 40px; border-bottom: 1px solid rgba(239, 68, 68, 0.12); }
.rm-header h3 { font-family: var(--font-heading); font-size: 1.2rem; }
.rm-body { padding: 36px 40px; }
.rm-compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: center; margin-bottom: 20px; }
.rm-option { padding: 24px; border-radius: var(--radius-md); }
.rm-bad { background: rgba(239, 68, 68, 0.04); border: 1px solid rgba(239, 68, 68, 0.1); }
.rm-good { background: rgba(16, 185, 129, 0.04); border: 1px solid rgba(16, 185, 129, 0.1); }
.rm-option h4 { font-family: var(--font-heading); font-size: 1rem; margin-bottom: 6px; }
.rm-option p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 6px; }
.rm-option small { font-size: 0.78rem; color: var(--text-muted); }
.rm-vs { font-family: var(--font-heading); font-weight: 900; font-size: 1.2rem; color: var(--text-muted); text-align: center; }
.rm-conclusion { font-size: 0.92rem; color: var(--text-secondary); text-align: center; line-height: 1.7; }

.challenges-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.challenge-card { padding: 32px; }
.challenge-num { font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; background: rgba(245, 158, 11, 0.1); color: var(--accent-secondary); padding: 4px 12px; border-radius: 50px; display: inline-block; margin-bottom: 12px; }
.challenge-card h3 { font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: 8px; }
.challenge-card > p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 14px; }
.challenge-solution { font-size: 0.82rem; font-weight: 600; color: var(--accent-secondary); padding: 8px 14px; background: rgba(245, 158, 11, 0.06); border: 1px solid rgba(245, 158, 11, 0.1); border-radius: var(--radius-sm); display: inline-block; }

/* LAYERS */
.layers-container { display: flex; flex-direction: column; gap: 24px; margin-bottom: 48px; }
.layer-card { padding: 0; overflow: hidden; }
.layer-header { padding: 28px 36px; }
.layer-badge { font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 4px 14px; border-radius: 50px; display: inline-block; margin-bottom: 10px; }
.layer-1 .layer-header { background: rgba(239, 68, 68, 0.06); border-bottom: 1px solid rgba(239, 68, 68, 0.1); }
.layer-1 .layer-badge { background: rgba(239, 68, 68, 0.1); color: #f87171; }
.layer-2 .layer-header { background: rgba(245, 158, 11, 0.06); border-bottom: 1px solid rgba(245, 158, 11, 0.1); }
.layer-2 .layer-badge { background: rgba(245, 158, 11, 0.1); color: #fbbf24; }
.layer-3 .layer-header { background: rgba(16, 185, 129, 0.06); border-bottom: 1px solid rgba(16, 185, 129, 0.1); }
.layer-3 .layer-badge { background: rgba(16, 185, 129, 0.1); color: #34d399; }
.layer-header h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 4px; }
.layer-subtitle { font-size: 0.88rem; color: var(--text-muted); }
.layer-body { padding: 32px 36px; }
.layer-rules h4 { font-family: var(--font-heading); font-size: 0.9rem; margin-bottom: 16px; color: var(--text-muted); }
.rule-item { display: flex; gap: 14px; margin-bottom: 16px; }
.rule-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.rule-item p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }
.layer-key { margin-top: 20px; padding: 14px 18px; background: rgba(245, 158, 11, 0.05); border: 1px solid rgba(245, 158, 11, 0.1); border-radius: var(--radius-sm); }
.layer-key p { font-size: 0.88rem; color: var(--text-secondary); }

/* SCENARIO */
.scenario { padding: 0; overflow: hidden; }
.scenario h3 { font-family: var(--font-heading); font-size: 1.2rem; padding: 24px 36px; background: var(--gradient-warm); }
.scenario-timeline { padding: 36px; display: flex; flex-direction: column; gap: 20px; }
.st-step { display: flex; gap: 20px; align-items: flex-start; }
.st-time { font-family: var(--font-heading); font-weight: 700; font-size: 0.78rem; letter-spacing: 1px; color: var(--accent-secondary); background: rgba(245, 158, 11, 0.08); padding: 6px 14px; border-radius: var(--radius-sm); border: 1px solid rgba(245, 158, 11, 0.12); flex-shrink: 0; min-width: 100px; text-align: center; }
.st-content h4 { font-family: var(--font-heading); font-size: 1rem; margin-bottom: 4px; }
.st-content p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* GPS */
.gps-principle { display: flex; gap: 24px; align-items: flex-start; margin-bottom: 48px; }
.gps-icon { font-size: 2.5rem; flex-shrink: 0; }
.gps-content h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 10px; }
.gps-content blockquote { border-left: 3px solid var(--accent-primary); padding: 10px 18px; margin: 0 0 12px; font-style: italic; font-size: 0.9rem; color: var(--text-muted); background: rgba(245, 158, 11, 0.04); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.gps-content p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7; }

.flows-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 48px; }
.flow-card { padding: 24px; text-align: center; }
.flow-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.flow-card h4 { font-family: var(--font-heading); font-size: 0.95rem; margin-bottom: 6px; }
.flow-card p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }

.streams { padding: 40px; margin-bottom: 0; }
.streams h3 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 12px; }
.streams-principle { font-size: 0.92rem; color: var(--text-secondary); margin-bottom: 24px; line-height: 1.7; }
.streams-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.stream-item { padding: 20px; background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); }
.stream-icon { font-size: 1.5rem; display: block; margin-bottom: 8px; }
.stream-item h4 { font-family: var(--font-heading); font-size: 0.95rem; margin-bottom: 4px; }
.stream-item p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }

/* MOTORS */
.motors-explanation { padding: 40px; margin-bottom: 48px; }
.motors-explanation h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 12px; }
.motors-explanation > p { font-size: 0.92rem; color: var(--text-secondary); margin-bottom: 24px; }
.motors-matrix { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.motor-combo { padding: 16px; border-radius: var(--radius-md); text-align: center; }
.motor-combo h4 { font-family: var(--font-heading); font-size: 0.85rem; margin-bottom: 4px; }
.motor-combo p { font-size: 0.75rem; color: var(--text-muted); }
.motor-aligned { background: rgba(16, 185, 129, 0.06); border: 1px solid rgba(16, 185, 129, 0.1); }
.motor-belief { background: rgba(245, 158, 11, 0.06); border: 1px solid rgba(245, 158, 11, 0.1); }
.motor-conflict { background: rgba(239, 68, 68, 0.06); border: 1px solid rgba(239, 68, 68, 0.1); }
.motor-absent { background: rgba(100, 100, 120, 0.06); border: 1px solid rgba(100, 100, 120, 0.1); }

.motors-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.motor-title { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 16px; text-align: center; }
.motor-title-good { color: var(--accent-secondary); }
.motor-title-bad { color: #f87171; }
.motor-card { padding: 24px; margin-bottom: 12px; }
.motor-card h4 { font-family: var(--font-heading); font-size: 1rem; margin-bottom: 6px; }
.motor-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }
.motor-good { border-left: 3px solid rgba(245, 158, 11, 0.3); }
.motor-bad { border-left: 3px solid rgba(239, 68, 68, 0.25); }

/* FINAL */
.final-choice { display: flex; gap: 24px; align-items: flex-start; margin-bottom: 48px; }
.fc-icon { font-size: 2.5rem; flex-shrink: 0; }
.fc-content h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 12px; }
.fc-content blockquote { border-left: 3px solid var(--accent-primary); padding: 14px 20px; margin: 0 0 14px; font-style: italic; font-size: 0.95rem; color: var(--text-secondary); background: rgba(245, 158, 11, 0.04); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; line-height: 1.7; }
.fc-content p { font-size: 0.92rem; color: var(--text-secondary); }

.resources-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 48px; }
.resource-card { padding: 28px; text-align: center; }
.rc-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.resource-card h4 { font-family: var(--font-heading); font-size: 1rem; margin-bottom: 6px; }
.resource-card p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }
.rc-time { border-top: 3px solid #06b6d4; }
.rc-money { border-top: 3px solid #10b981; }
.rc-energy { border-top: 3px solid #f59e0b; }
.rc-clarity { border-top: 3px solid #8b5cf6; }

/* STAGES */
.stages-final { padding: 40px; margin-bottom: 48px; text-align: center; }
.stages-final h3 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 28px; }
.stages-flow { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.stage-item { padding: 16px 12px; border-radius: var(--radius-md); text-align: center; min-width: 100px; }
.stage-item span { display: block; font-family: var(--font-heading); font-weight: 900; font-size: 1.5rem; opacity: 0.3; margin-bottom: 4px; }
.stage-item h4 { font-family: var(--font-heading); font-size: 0.85rem; margin-bottom: 2px; }
.stage-item p { font-size: 0.72rem; color: var(--text-muted); }
.stage-arrow { font-size: 1.2rem; color: var(--text-muted); }
.stage-entropy { background: rgba(239, 68, 68, 0.06); border: 1px solid rgba(239, 68, 68, 0.1); color: #f87171; }
.stage-regulation { background: rgba(245, 158, 11, 0.06); border: 1px solid rgba(245, 158, 11, 0.1); color: #fbbf24; }
.stage-homeostasis { background: rgba(6, 182, 212, 0.06); border: 1px solid rgba(6, 182, 212, 0.1); color: #22d3ee; }
.stage-robust { background: rgba(16, 185, 129, 0.06); border: 1px solid rgba(16, 185, 129, 0.1); color: #34d399; }
.stage-antifragile { background: rgba(139, 92, 246, 0.06); border: 1px solid rgba(139, 92, 246, 0.1); color: #a78bfa; }
.stages-note { font-size: 0.9rem; color: var(--text-secondary); }

/* TESTIMONIALS */
.testimonials { margin-bottom: 48px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testimonial { padding: 24px; }
.testimonial p { font-size: 0.88rem; color: var(--text-secondary); font-style: italic; line-height: 1.6; margin-bottom: 10px; }
.test-author { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600; color: var(--accent-secondary); }

/* FINAL MESSAGE */
.final-message { text-align: center; padding: 48px; margin-bottom: 48px; background: var(--gradient-subtle); }
.fm-icon { font-size: 3rem; display: block; margin-bottom: 16px; }
.final-message h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 20px; }
.final-message blockquote { border: none; font-style: italic; font-size: 1rem; color: var(--text-secondary); line-height: 1.8; max-width: 700px; margin: 0 auto 16px; padding: 0; }
.fm-signature { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 600; color: var(--accent-secondary); }

/* BOOTCAMP COMPLETE */
.bootcamp-complete { text-align: center; padding: 40px; }
.bootcamp-complete h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 24px; }
.bc-nav { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.bc-link { display: flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: var(--radius-sm); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: var(--transition-fast); }
.bc-num { font-family: var(--font-heading); font-weight: 700; font-size: 0.75rem; opacity: 0.6; }
.bc-done { background: rgba(16, 185, 129, 0.06); border: 1px solid rgba(16, 185, 129, 0.12); color: #6ee7b7; }
.bc-done:hover { background: rgba(16, 185, 129, 0.12); }
.bc-current { background: rgba(245, 158, 11, 0.12); border: 1px solid rgba(245, 158, 11, 0.2); color: var(--accent-secondary); }
.bc-congrats { font-size: 0.95rem; color: var(--text-secondary); }

/* FOOTER */
.footer { padding: 64px 0 32px; border-top: 1px solid var(--border-subtle); }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 48px; }
.footer-brand { font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; letter-spacing: 2px; }
.footer-brand p { font-family: var(--font-body); font-weight: 400; font-size: 0.9rem; color: var(--text-muted); letter-spacing: 0; margin-top: 4px; }
.footer-nav { display: flex; align-items: center; gap: 8px; }
.footer-nav a { color: var(--accent-secondary); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: var(--transition-fast); }
.footer-nav a:hover { color: var(--text-primary); }
.footer-sep { color: var(--text-muted); }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid var(--border-subtle); }
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

/* RESPONSIVE */
@media (max-width: 1024px) {
    :root { --section-padding: 80px; }
    .recap-grid, .flows-grid, .challenges-grid, .motors-grid, .testimonials-grid, .streams-grid { grid-template-columns: repeat(2, 1fr); }
    .resources-grid { grid-template-columns: repeat(2, 1fr); }
    .motors-matrix { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    :root { --section-padding: 64px; }
    .nav-toggle { display: flex; }
    .nav-links { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(8, 8, 14, 0.97); backdrop-filter: blur(20px); flex-direction: column; justify-content: center; align-items: center; gap: 8px; opacity: 0; pointer-events: none; transition: var(--transition-smooth); z-index: 999; }
    .nav-links.active { opacity: 1; pointer-events: all; }
    .nav-links a { font-size: 1.2rem; padding: 12px 24px; }
    .recap-grid, .flows-grid, .challenges-grid, .motors-grid, .testimonials-grid, .streams-grid, .resources-grid, .motors-matrix { grid-template-columns: 1fr; }
    .river-analogy { flex-direction: column; }
    .river-arrow { transform: rotate(90deg); justify-content: center; }
    .rm-compare { grid-template-columns: 1fr; }
    .rm-vs { order: -1; }
    .glass-card { padding: 28px; }
    .recap-intro, .gps-principle, .final-choice { flex-direction: column; }
    .stages-flow { flex-direction: column; }
    .stage-arrow { transform: rotate(90deg); }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
    .footer-nav { flex-direction: column; gap: 4px; }
    .bc-nav { flex-direction: column; align-items: center; }
    .layer-header, .layer-body { padding: 24px; }
    .scenario-timeline .st-step { flex-direction: column; gap: 8px; }
}
