/* ===== VARIABLES & RESET ===== */
:root {
    --blue: #042ff8;
    --blue-dark: #0322b8;
    --navy: #142355;
    --navy-deep: #0c1636;
    --yellow: #ffdf2a;
    --yellow-light: #fff3a0;
    --white: #ffffff;
    --gray-50: #f8f9fc;
    --gray-100: #f0f2f7;
    --gray-200: #e2e5ee;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-900: #111827;
    --green: #10b981;
    --red: #ef4444;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-blue: 0 8px 30px rgba(4,47,248,0.25);
    --transition: 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: 'Roboto', sans-serif; color: var(--gray-900); line-height: 1.6; background: var(--white); -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.text-gradient {
    background: linear-gradient(135deg, var(--blue), #4f6ef7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== TOP BAR ===== */
.top-bar { background: var(--navy); color: var(--white); padding: 10px 0; text-align: center; font-size: 14px; font-weight: 500; }
.top-bar .highlight-yellow { color: var(--yellow); font-weight: 700; }
.top-bar i { margin-right: 6px; color: var(--yellow); }

/* ===== NAVBAR ===== */
.navbar { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.97); backdrop-filter: blur(10px); border-bottom: 1px solid var(--gray-200); padding: 14px 0; }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; }
.logo img { height: 36px; }
.nav-cta { background: var(--blue); color: var(--white); padding: 10px 24px; border-radius: 8px; font-weight: 600; font-size: 14px; font-family: 'Poppins', sans-serif; transition: var(--transition); }
.nav-cta:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--shadow-blue); }

/* ===== HERO ===== */
.hero {
    background: linear-gradient(160deg, #0a122e 0%, #142355 45%, #0b3d91 100%);
    padding: 70px 0 90px;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    /* Dot grid pattern */
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
}

/* Glow accents */
.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(4,47,248,0.25) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    border-radius: 50%;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,223,42,0.08) 0%, transparent 70%);
    bottom: -100px;
    left: -50px;
    border-radius: 50%;
    z-index: 0;
}

/* Hero SVG Illustrations */
.hero-visuals {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    color: var(--white);
}

.hero-svg {
    position: absolute;
}

.hero-svg-laptop {
    width: 480px;
    bottom: -30px;
    left: -40px;
    animation: float-slow 10s ease-in-out infinite;
}

.hero-svg-box {
    width: 90px;
    top: 15%;
    left: 5%;
    animation: float-slow 6s ease-in-out infinite 1s;
}

.hero-svg-cart {
    width: 80px;
    top: 10%;
    right: 4%;
    animation: float-slow 7s ease-in-out infinite 0.5s;
}

.hero-svg-arrow {
    width: 60px;
    bottom: 25%;
    right: 8%;
    animation: float-slow 5s ease-in-out infinite 2s;
}

.hero-float-circle {
    position: absolute;
    border-radius: 50%;
}

.hero-float-circle-1 {
    width: 250px;
    height: 250px;
    border: 1px solid rgba(255,255,255,0.04);
    top: -60px;
    right: -30px;
    animation: float-slow 9s ease-in-out infinite;
}

.hero-float-circle-2 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255,223,42,0.06) 0%, transparent 70%);
    bottom: 20%;
    left: 35%;
    animation: float-slow 8s ease-in-out infinite reverse;
}

.hero-float-circle-3 {
    width: 80px;
    height: 80px;
    border: 1px dashed rgba(255,255,255,0.06);
    top: 40%;
    left: 45%;
    animation: spin-slow 25s linear infinite;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-grid { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: start; position: relative; z-index: 1; }

.badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,223,42,0.15); color: var(--yellow);
    padding: 8px 16px; border-radius: 50px;
    font-size: 13px; font-weight: 600; font-family: 'Poppins', sans-serif;
    margin-bottom: 20px; border: 1px solid rgba(255,223,42,0.25);
}
.badge i { font-size: 12px; }

.hero h1 {
    font-size: 42px; font-weight: 800; color: var(--white);
    margin-bottom: 20px; letter-spacing: -0.5px;
}

.hero .text-gradient {
    background: linear-gradient(135deg, var(--yellow), #ffe566);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    filter: drop-shadow(0 1px 4px rgba(255,223,42,0.2));
}

.hero-subtitle {
    font-size: 17px; color: rgba(255,255,255,0.85);
    margin-bottom: 28px; max-width: 560px; line-height: 1.7;
}

.hero-bullets { list-style: none; margin-bottom: 32px; }
.hero-bullets li {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 12px; font-size: 15px; color: rgba(255,255,255,0.9);
    text-shadow: 0 1px 6px rgba(0,0,0,0.15);
}
.hero-bullets li i { color: var(--yellow); font-size: 18px; margin-top: 2px; flex-shrink: 0; }

.hero-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.meta-item {
    display: flex; align-items: center; gap: 8px; font-size: 14px;
    color: var(--white); background: rgba(255,255,255,0.1);
    padding: 10px 16px; border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
}
.meta-item i { color: var(--yellow); font-size: 16px; }

/* ===== FORM CARD ===== */
.form-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 36px 32px; box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.15);
    position: sticky; top: 100px;
}
.form-header { text-align: center; margin-bottom: 24px; }
.form-header h2 { font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.form-spots { font-size: 13px; color: var(--red); font-weight: 500; }
.form-spots i { margin-right: 4px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; font-family: 'Poppins', sans-serif; }
.form-group input { width: 100%; padding: 13px 16px; border: 1.5px solid var(--gray-200); border-radius: 10px; font-size: 15px; font-family: 'Roboto', sans-serif; transition: var(--transition); background: var(--gray-50); }
.form-group input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(4,47,248,0.1); background: var(--white); }
.form-group input::placeholder { color: var(--gray-500); }

.btn-cta {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; padding: 16px 32px;
    background: var(--blue); color: var(--white); border: none; border-radius: 12px;
    font-size: 16px; font-weight: 700; font-family: 'Poppins', sans-serif;
    cursor: pointer; transition: var(--transition); position: relative; overflow: hidden;
}
.btn-cta::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent); transition: 0.5s; }
.btn-cta:hover::before { left: 100%; }
.btn-cta:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: var(--shadow-blue); }
.btn-cta:active { transform: translateY(0); }
.btn-cta i { transition: var(--transition); }
.btn-cta:hover i { transform: translateX(4px); }

.form-microcopy { text-align: center; font-size: 12px; color: var(--gray-500); margin-top: 14px; }
.form-microcopy i { margin-right: 4px; color: var(--green); }

.form-trust-badge {
    margin-top: 16px; display: flex; align-items: center; gap: 12px;
    padding: 12px 16px; background: var(--gray-50); border: 1px solid var(--gray-200);
    border-radius: 10px; font-size: 12px; color: var(--gray-700);
}
.form-trust-badge img { border-radius: 8px; flex-shrink: 0; }
.form-trust-badge strong { color: var(--navy); }

/* ===== SOCIAL PROOF BAR ===== */
.social-proof-bar { background: var(--navy); padding: 28px 0; }
.proof-items { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.proof-item { text-align: center; color: var(--white); }
.proof-item strong { display: block; font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 700; color: var(--yellow); }
.proof-item span { font-size: 13px; opacity: 0.8; }
.proof-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* ===== SECTION COMMONS ===== */
.section-title { text-align: center; font-size: 34px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.section-subtitle { text-align: center; font-size: 16px; color: var(--gray-500); margin-bottom: 48px; }

/* ===== VALUE SECTION (Neler Öğreneceksin) ===== */
.value-section { padding: 80px 0; background: var(--white); }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.value-card {
    background: var(--gray-50); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 28px 20px;
    text-align: center; transition: var(--transition);
    position: relative; overflow: hidden;
}
.value-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-6px); }

.value-img {
    width: 80px; height: 80px;
    margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
}
.value-img img {
    width: 100%; height: 100%;
    object-fit: contain;
    transition: var(--transition);
}
.value-card:hover .value-img img { transform: scale(1.1); }

.value-card h3 { font-size: 15px; color: var(--navy); margin-bottom: 8px; font-weight: 700; }
.value-card p { font-size: 13px; color: var(--gray-500); line-height: 1.5; }

/* ===== CURRICULUM (Yol Haritası) ===== */
.curriculum-section { padding: 80px 0; background: var(--gray-50); }

/* Road Wrapper */
.road-wrapper {
    position: relative;
    margin-bottom: 40px;
    padding: 0 10px;
}

.road-line {
    position: absolute;
    top: 30px;
    left: 40px;
    right: 40px;
    height: 6px;
    background: var(--gray-200);
    border-radius: 6px;
    z-index: 0;
    overflow: hidden;
}

/* Filled progress */
.road-line::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: var(--road-progress, 0%);
    background: linear-gradient(90deg, var(--blue), #4f6ef7, var(--yellow));
    border-radius: 4px;
    transition: width 0.5s ease;
}

/* Shimmer light beams — contained inside the line */
.road-line::before {
    content: '';
    position: absolute;
    top: -5px;
    width: 100px;
    height: 16px;
    background: radial-gradient(ellipse, rgba(255,255,255,0.95) 0%, rgba(79,110,247,0.6) 30%, rgba(4,47,248,0.3) 50%, transparent 70%);
    border-radius: 50%;
    z-index: 3;
    animation: shimmer 2.5s ease-in-out infinite;
    filter: blur(1.5px);
}

@keyframes shimmer {
    0% { left: 0%; opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { left: calc(100% - 100px); opacity: 0; }
}


.road-tabs {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.road-stop {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.stop-dot {
    width: 62px; height: 62px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--gray-200);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 0;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.stop-dot small {
    font-family: 'Poppins', sans-serif;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-500);
    line-height: 1;
    transition: var(--transition);
}

.stop-dot span {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--gray-500);
    line-height: 1;
    transition: var(--transition);
}

.road-stop:hover .stop-dot {
    border-color: var(--blue);
    box-shadow: 0 4px 15px rgba(4,47,248,0.15);
}
.road-stop:hover .stop-dot span,
.road-stop:hover .stop-dot small { color: var(--blue); }

.road-stop.active .stop-dot {
    background: var(--blue);
    border-color: var(--blue);
    box-shadow: 0 4px 20px rgba(4,47,248,0.3);
    transform: scale(1.1);
    animation: dot-pulse 2s ease-in-out infinite;
}
.road-stop.active .stop-dot span,
.road-stop.active .stop-dot small { color: var(--white); }

@keyframes dot-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(4,47,248,0.3); }
    50% { box-shadow: 0 4px 30px rgba(4,47,248,0.5), 0 0 0 8px rgba(4,47,248,0.08); }
}

/* Last stop gold */
.road-stop[data-week="6"].active .stop-dot {
    background: var(--yellow);
    border-color: var(--yellow);
    box-shadow: 0 4px 20px rgba(255,223,42,0.3);
}
.road-stop[data-week="6"].active .stop-dot span,
.road-stop[data-week="6"].active .stop-dot small { color: var(--navy); }

.stop-label {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-500);
    text-align: center;
    line-height: 1.3;
    transition: var(--transition);
}

.road-stop.active .stop-label { color: var(--navy); font-weight: 700; }

/* Week Panels */
.week-panels { position: relative; }

.week-panel {
    display: none;
    animation: panelIn 0.4s ease;
}

.week-panel.active { display: block; }

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

/* Lessons Row — 2 cards side by side */
.lessons-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.lesson-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.lesson-card:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }

/* Gold variant for last lesson */
.lc-gold {
    border-color: rgba(255,223,42,0.5);
    background: linear-gradient(160deg, rgba(255,223,42,0.04), var(--white));
}
.lc-gold:hover { border-color: var(--yellow); box-shadow: 0 4px 15px rgba(255,223,42,0.15); }

/* Card header */
.lc-head { margin-bottom: 16px; }

.lc-num {
    display: inline-block;
    padding: 4px 12px;
    background: var(--blue);
    color: var(--white);
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 10px;
}

.lc-num-gold {
    background: var(--yellow);
    color: var(--navy);
}

.lc-head h4 {
    font-size: 16px;
    color: var(--navy);
    font-weight: 700;
    line-height: 1.35;
}

/* Content list */
.lc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.lc-list li {
    font-size: 13px;
    color: var(--gray-700);
    line-height: 1.5;
    padding-left: 18px;
    position: relative;
}

.lc-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 8px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--blue);
    opacity: 0.3;
}

/* Flow diagram (Ders 1 süreç akışı) */
.lc-flow {
    margin-top: 16px;
    padding: 12px 16px;
    background: linear-gradient(90deg, rgba(4,47,248,0.04), rgba(4,47,248,0.02));
    border-radius: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: var(--blue);
}

.lc-flow span {
    padding: 3px 8px;
    background: rgba(4,47,248,0.08);
    border-radius: 4px;
    white-space: nowrap;
}

.lc-flow i {
    font-size: 8px;
    opacity: 0.4;
}

/* Task / Homework callout */
.lc-task {
    margin-top: 14px;
    padding: 10px 14px;
    background: rgba(4,47,248,0.04);
    border-left: 3px solid var(--blue);
    border-radius: 0 8px 8px 0;
    font-size: 12px;
    color: var(--navy);
}

.lc-task i { color: var(--blue); margin-right: 6px; }

/* Question callout */
.lc-question {
    margin-top: 14px;
    padding: 10px 14px;
    background: rgba(255,223,42,0.08);
    border-left: 3px solid var(--yellow);
    border-radius: 0 8px 8px 0;
    font-size: 12px;
    color: var(--navy);
    font-style: italic;
}

.lc-question i { color: #e6a800; margin-right: 6px; }

/* Quote callout */
.lc-quote {
    margin-top: 14px;
    padding: 10px 14px;
    background: rgba(4,47,248,0.03);
    border-left: 3px solid var(--blue);
    border-radius: 0 8px 8px 0;
    font-size: 12px;
    color: var(--blue);
    font-style: italic;
}

.lc-quote i { margin-right: 6px; opacity: 0.5; }

/* Highlight callout (SellerFlash) */
.lc-highlight {
    margin-top: 14px;
    padding: 10px 14px;
    background: linear-gradient(135deg, rgba(4,47,248,0.06), rgba(4,47,248,0.02));
    border: 1px solid rgba(4,47,248,0.12);
    border-radius: 8px;
    font-size: 12px;
    color: var(--navy);
    font-weight: 500;
}

.lc-highlight i { color: var(--blue); margin-right: 6px; }

/* Mini roadmap inside Ders 12 */
.lc-roadmap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.lc-road-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.lc-road-dot {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 3px 12px rgba(4,47,248,0.2);
}

.lc-road-dot-gold {
    background: var(--yellow);
    color: var(--navy);
    box-shadow: 0 3px 12px rgba(255,223,42,0.3);
}

.lc-road-step span {
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.lc-road-arrow {
    color: var(--gray-200);
    font-size: 14px;
    margin-bottom: 20px;
}

/* ===== COMPARE COLUMNS ===== */
.compare-section { padding: 80px 0; background: var(--white); }

.compare-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.compare-col {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.compare-col-head {
    padding: 16px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.compare-col ul {
    list-style: none;
    padding: 8px 0;
}

.compare-col li {
    padding: 12px 24px;
    font-size: 13px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.compare-col li::before {
    flex-shrink: 0;
    margin-top: 2px;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
}

/* Diğerleri — soluk, kırmızı tonlar */
.compare-col-other {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
}

.compare-col-other .compare-col-head {
    background: var(--gray-100);
    color: var(--gray-500);
}

.compare-col-other .compare-col-head i { color: var(--red); }

.compare-col-other li {
    color: var(--gray-500);
    text-decoration: line-through;
    text-decoration-color: rgba(239,68,68,0.3);
}

.compare-col-other li::before {
    content: '\f00d';
    color: var(--red);
    opacity: 0.5;
    text-decoration: none;
}

.compare-col-other li:nth-child(even) { background: rgba(0,0,0,0.02); }

/* SellerFlash — canlı, mavi tonlar */
.compare-col-us {
    background: var(--white);
    border: 2px solid var(--blue);
    box-shadow: var(--shadow-md);
    position: relative;
}

.compare-col-us::before {
    content: 'ÖNERİLEN';
    position: absolute;
    top: -1px; right: 20px;
    background: var(--blue);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 0 0 8px 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.compare-col-us .compare-col-head {
    background: rgba(4,47,248,0.06);
    color: var(--navy);
}

.compare-col-us .compare-col-head i { color: var(--green); }

.compare-col-us li {
    color: var(--gray-700);
    font-weight: 500;
}

.compare-col-us li::before {
    content: '\f00c';
    color: var(--green);
}

.compare-col-us li:nth-child(even) { background: rgba(4,47,248,0.02); }

/* ===== AUDIENCE SECTION ===== */
.audience-section { padding: 80px 0; background: var(--gray-50); }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.audience-card {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 36px 28px;
    text-align: center; transition: var(--transition);
}
.audience-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.audience-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--blue), #4f6ef7);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.audience-icon i { font-size: 24px; color: var(--white); }
.audience-card h3 { font-size: 17px; color: var(--navy); margin-bottom: 12px; font-weight: 600; }
.audience-card p { font-size: 14px; color: var(--gray-700); line-height: 1.7; }

/* ===== SPEAKER SECTION ===== */
.speaker-section { padding: 80px 0; background: var(--white); }
.speaker-card {
    display: flex; gap: 40px; align-items: center;
    max-width: 800px; margin: 40px auto 0;
    background: var(--gray-50); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 40px;
}
.speaker-image { flex-shrink: 0; }
.speaker-placeholder {
    width: 140px; height: 140px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.speaker-placeholder i { font-size: 48px; color: rgba(255,255,255,0.5); }
.speaker-info h3 { font-size: 22px; color: var(--navy); margin-bottom: 4px; }
.speaker-title { font-size: 14px; color: var(--blue); font-weight: 600; margin-bottom: 14px; }
.speaker-bio { font-size: 14px; color: var(--gray-700); line-height: 1.7; margin-bottom: 20px; }
.speaker-stats { display: flex; gap: 24px; }
.speaker-stats .stat { text-align: center; }
.speaker-stats .stat strong { display: block; font-family: 'Poppins', sans-serif; font-size: 20px; color: var(--blue); }
.speaker-stats .stat span { font-size: 12px; color: var(--gray-500); }

/* ===== BONUS SECTION ===== */
.bonus-section {
    padding: 80px 0;
    background: linear-gradient(170deg, var(--navy-deep), var(--navy));
    position: relative;
    overflow: hidden;
}

.bonus-section::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,223,42,0.08) 0%, transparent 70%);
    top: -100px; right: -100px;
    border-radius: 50%;
}

.bonus-section .section-title { color: var(--white); }
.bonus-section .section-subtitle { color: rgba(255,255,255,0.6); }

.bonus-header { text-align: center; }

.bonus-super-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--yellow), #ffc107);
    color: var(--navy);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(255,223,42,0.3);
    animation: pulse-badge 2s ease-in-out infinite;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px auto 0;
    position: relative;
    z-index: 1;
}

.bonus-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 32px 20px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bonus-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--yellow);
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(255,223,42,0.15);
}

/* Ribbon */
.bonus-ribbon {
    position: absolute;
    top: 14px; right: -28px;
    background: var(--yellow);
    color: var(--navy);
    padding: 3px 32px;
    font-family: 'Poppins', sans-serif;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.bonus-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(255,223,42,0.2), rgba(255,223,42,0.05));
    border: 1px solid rgba(255,223,42,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
}
.bonus-icon i { font-size: 22px; color: var(--yellow); }

.bonus-value {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--yellow);
    margin-bottom: 4px;
}

.bonus-card h3 {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 10px;
    font-weight: 600;
}

.bonus-card p {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

/* ===== FINAL CTA ===== */
.final-cta-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.final-cta-box {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #0b3d91 100%);
    border-radius: var(--radius-lg);
    padding: 48px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.final-cta-box::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,223,42,0.1) 0%, transparent 70%);
    top: -80px; right: -60px;
    border-radius: 50%;
}

.fcta-left { flex: 1; }

.urgency-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(239,68,68,0.2); color: #ff6b6b;
    padding: 6px 16px; border-radius: 50px;
    font-size: 12px; font-weight: 700; font-family: 'Poppins', sans-serif;
    margin-bottom: 16px; animation: pulse-badge 2s infinite;
    border: 1px solid rgba(239,68,68,0.2);
}

@keyframes pulse-badge { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }

.final-cta-box h2 { font-size: 28px; color: var(--white); margin-bottom: 12px; }
.fcta-left > p { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 20px; line-height: 1.6; }

.fomo-items { display: flex; flex-direction: column; gap: 10px; }

.fomo-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: var(--yellow);
}
.fomo-item i { font-size: 14px; flex-shrink: 0; }

.fcta-right {
    flex-shrink: 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.fcta-spots {
    margin-bottom: 20px;
}

.fcta-spots-num {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
    text-shadow: 0 4px 20px rgba(255,223,42,0.3);
}

.fcta-spots-label {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    margin-top: 4px;
}

.btn-cta-large {
    padding: 16px 36px; font-size: 16px;
    width: auto; display: inline-flex;
    background: var(--yellow); color: var(--navy);
    white-space: nowrap;
}
.btn-cta-large:hover { background: #e6c800; color: var(--navy); box-shadow: 0 8px 30px rgba(255,223,42,0.3); }

/* ===== FOOTER ===== */
.footer {
    background: var(--white);
    padding: 28px 0;
    border-top: 1px solid var(--gray-200);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-brand img { height: 32px; }

.footer p {
    font-size: 13px;
    color: var(--gray-500);
}

.footer-links { display: flex; gap: 20px; }

.footer-links a {
    font-size: 13px;
    color: var(--gray-500);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

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

/* ===== MODAL ===== */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; z-index: 1000; padding: 24px; }
.modal-overlay.active { display: flex; }
.modal-card { background: var(--white); border-radius: var(--radius-lg); padding: 48px 40px; max-width: 540px; width: 100%; text-align: center; box-shadow: var(--shadow-lg); animation: modalIn 0.3s ease; }
@keyframes modalIn { from { opacity: 0; transform: scale(0.95) translateY(10px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal-icon { font-size: 56px; color: var(--green); margin-bottom: 20px; }
.modal-card h2 { font-size: 24px; color: var(--navy); margin-bottom: 16px; }
.modal-card p { font-size: 15px; color: var(--gray-700); margin-bottom: 12px; line-height: 1.6; }
.modal-actions { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.btn-close-modal { padding: 14px 24px; background: var(--blue); color: var(--white); border: none; border-radius: 10px; font-size: 15px; font-weight: 600; font-family: 'Poppins', sans-serif; cursor: pointer; transition: var(--transition); }
.btn-close-modal:hover { background: var(--blue-dark); }
.modal-bonus { margin-top: 24px; padding: 14px 16px; background: rgba(255,223,42,0.1); border-radius: 10px; font-size: 13px; }
.modal-bonus i { color: #e6a800; margin-right: 6px; }

/* ===== MOBILE CTA ===== */
.mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; padding: 12px 16px; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-top: 1px solid var(--gray-200); z-index: 90; }
.btn-mobile { border-radius: 10px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero h1 { font-size: 34px; }
    .form-card { position: static; max-width: 480px; margin: 0 auto; }
    .value-grid { grid-template-columns: repeat(2, 1fr); }
    .audience-grid { grid-template-columns: 1fr; max-width: 480px; margin: 48px auto 0; }
    .compare-col li { font-size: 13px; }
}

@media (max-width: 768px) {
    .hero-visuals { display: none; }
    .hero { padding: 40px 0 60px; }
    .hero h1 { font-size: 28px; }
    .hero-subtitle { font-size: 15px; }
    .hero-meta { gap: 10px; }
    .meta-item { font-size: 13px; padding: 8px 12px; }
    .section-title { font-size: 26px; }
    /* === MOBILE ROADMAP: Compact Snake Layout === */
    .road-wrapper {
        overflow: visible;
        padding: 0; /* Reset padding to fix horizontal mapping asymmetry for row 3 & 4 line */
        margin-bottom: 30px;
        position: relative;
    }

    /* Hide desktop line */
    .road-line { display: none; }

    .road-tabs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 88px; /* row height: 48(dot) + 8(gap) + 32(label) = 88px */
        gap: 28px 0; /* 28px row gap */
        padding: 0;
        position: relative;
        justify-items: center;
    }

    /* Snake path order: Top row 1-2-3, Bottom row 6-5-4 */
    .road-stop[data-week="1"] { order: 1; }
    .road-stop[data-week="2"] { order: 2; }
    .road-stop[data-week="3"] { order: 3; }
    .road-stop[data-week="6"] { order: 4; }
    .road-stop[data-week="5"] { order: 5; }
    .road-stop[data-week="4"] { order: 6; }

    .road-stop { 
        position: relative;
        z-index: 2; 
        display: grid;
        justify-items: center;
        align-content: start;
        gap: 8px; /* Gap between text and dot */
        text-align: center;
        background: transparent;
        padding: 0;
        border: none;
    }

    /* Force visual ordering for Weeks 1, 2, 3 (Label Top, Dot Bottom) */
    .road-stop[data-week="1"] .stop-label, 
    .road-stop[data-week="2"] .stop-label, 
    .road-stop[data-week="3"] .stop-label { grid-row: 1; }
    
    .road-stop[data-week="1"] .stop-dot, 
    .road-stop[data-week="2"] .stop-dot, 
    .road-stop[data-week="3"] .stop-dot { grid-row: 2; }

    /* Force visual ordering for Weeks 4, 5, 6 (Dot Top, Label Bottom) */
    .road-stop[data-week="4"] .stop-label, 
    .road-stop[data-week="5"] .stop-label, 
    .road-stop[data-week="6"] .stop-label { grid-row: 2; }
    
    .road-stop[data-week="4"] .stop-dot, 
    .road-stop[data-week="5"] .stop-dot, 
    .road-stop[data-week="6"] .stop-dot { grid-row: 1; }

    .stop-dot { 
        width: 48px; height: 48px; flex-shrink: 0; gap: 0; 
        display: flex; flex-direction: column; align-items: center; justify-content: center; 
    }
    .stop-dot small { display: block; font-size: 8px; line-height: 1; margin-bottom: 2px; opacity: 0.9; } 
    .stop-dot span { font-size: 18px; line-height: 1; font-weight: 800; margin-top: 0; }
    
    /* Fix label height so grid rows are predictable (32px height) */
    .stop-label { 
        font-size: 12px; line-height: 1.2; max-width: 82px; height: 32px; 
        display: flex; align-items: center; justify-content: center; 
    }

    /* === Connecting Lines === */
    
    /* Top line (1 → 2 → 3) */
    /* text(32) + gap(8) + dot_center(24) = 64px */
    .road-tabs::before {
        content: ''; position: absolute;
        top: 64px; 
        left: 16.666%; right: 16.666%; height: 3px;
        background: linear-gradient(90deg, var(--blue), #4f6ef7);
        border-radius: 3px; z-index: 0; transform: translateY(-50%);
    }

    /* Bottom line (6 ← 5 ← 4) */
    /* row1(88) + gap(28) = 116. dot is first element, center is 116 + 24 = 140px */
    .road-tabs::after {
        content: ''; position: absolute;
        top: 140px; 
        left: 16.666%; right: 16.666%; height: 3px;
        background: linear-gradient(90deg, var(--yellow), #4f6ef7);
        border-radius: 3px; z-index: 0; transform: translateY(-50%);
    }

    /* Vertical connector (3 ↓ 4) */
    .road-wrapper::before {
        content: ''; position: absolute;
        left: 83.333%; top: 64px;
        height: 76px; /* 140 - 64 = 76px */
        width: 3px;
        background: linear-gradient(to bottom, #4f6ef7, #4f6ef7);
        border-radius: 3px; z-index: 0; transform: translateX(-50%);
    }

    /* Shimmer following the snake path */
    .road-wrapper::after {
        content: ''; position: absolute;
        width: 20px !important; height: 20px !important;
        margin-left: -10px; /* Perfectly aligns the true center to lines */
        background: radial-gradient(circle, #fff 0%, rgba(79,110,247,0.9) 40%, transparent 70%) !important;
        border-radius: 50% !important; z-index: 1;
        animation: shimmer-snake-mini 4s linear infinite;
        filter: blur(1px); pointer-events: none;
        box-shadow: 0 0 10px rgba(79,110,247, 0.8) !important;
    }

    @keyframes shimmer-snake-mini {
        0%   { left: 16.666%; top: 54px; opacity: 0; }
        5%   { left: 16.666%; top: 54px; opacity: 1; }
        28%  { left: 83.333%; top: 54px; }
        32%  { left: 83.333%; top: 54px; }
        53%  { left: 83.333%; top: 130px; }
        57%  { left: 83.333%; top: 130px; }
        90%  { left: 16.666%; top: 130px; opacity: 1; }
        100% { left: 16.666%; top: 130px; opacity: 0; }
    }
    .lessons-row { grid-template-columns: 1fr; }
    .lc-flow { font-size: 10px; }
    .lc-roadmap { gap: 8px; }
    .lc-road-dot { width: 42px; height: 42px; font-size: 14px; }
    .speaker-card { flex-direction: column; text-align: center; padding: 32px 24px; }
    .speaker-stats { justify-content: center; }
    .bonus-grid { grid-template-columns: repeat(2, 1fr); }
    .bonus-value { font-size: 18px; }
    .final-cta-box h2 { font-size: 24px; }
    .btn-cta-large { width: 100%; font-size: 16px; padding: 16px 24px; }
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-brand { flex-direction: column; gap: 8px; }
    .final-cta-box { flex-direction: column; text-align: center; padding: 36px 24px; }
    .fcta-spots-num { font-size: 48px; }
    .btn-cta-large { width: 100%; }
    .mobile-cta { display: block; }
    body { padding-bottom: 72px; }
    .proof-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        text-align: center;
    }
    .proof-divider { display: none; }
    .proof-item strong { font-size: 22px; }
    .fomo-item { font-size: 12px; }

    .compare-columns { grid-template-columns: 1fr; gap: 16px; }
    .compare-col li { padding: 10px 18px; font-size: 12px; }
    .compare-col-head { font-size: 14px; padding: 14px 18px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 24px; }
    .value-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .value-card { padding: 20px 14px; }
    .value-img { width: 60px; height: 60px; margin-bottom: 10px; }
    .value-card h3 { font-size: 13px; }
    .value-card p { font-size: 11px; }
    .container { padding: 0 16px; }
    .form-card { padding: 28px 20px; }
    .top-bar p { font-size: 12px; }
    .proof-items { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .proof-item strong { font-size: 18px; }
    .week-card { gap: 16px; }
    .week-content { padding: 16px 18px; }
}
