/* ══════════════════════════════════════════════════════════
   PyLand Home Page
══════════════════════════════════════════════════════════ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* The homepage sections already own their horizontal spacing. */
.main-content {
    padding: 0;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 24px rgba(102, 126, 234, 0.35);
    white-space: nowrap;
}
.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(102, 126, 234, 0.45);
    color: #fff;
}

.btn-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.2s;
    white-space: nowrap;
}
.btn-cta-ghost:hover {
    border-color: rgba(255,255,255,0.7);
    color: #fff;
    background: rgba(255,255,255,0.08);
}

/* ── Animations ──────────────────────────────────────────── */
.animate-fade-in { opacity: 0; animation: fadeSlideUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.35s; }
.delay-4 { animation-delay: 0.5s; }
.delay-5 { animation-delay: 0.65s; }
.delay-6 { animation-delay: 0.8s; }
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Section headers (old style) ─────────────────────────── */
.section-header-revolutionary {
    text-align: center;
    margin-bottom: 60px;
}
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
}
.section-title-revolutionary {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #2d3748, #4a5568);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}
.section-subtitle-revolutionary {
    font-size: 1.15rem;
    color: var(--text-muted, #718096);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════
   HERO (dark split layout)
══════════════════════════════════════════════════════════ */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 90px 0 50px;
}

.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    animation: orbFloat 12s ease-in-out infinite;
}
.hero-orb-1 { width: 600px; height: 600px; background: #667eea; top: -200px; right: -100px; animation-delay: 0s; }
.hero-orb-2 { width: 400px; height: 400px; background: #f093fb; bottom: -100px; left: -100px; animation-delay: 4s; }
.hero-orb-3 { width: 300px; height: 300px; background: #4facfe; top: 40%; left: 30%; animation-delay: 8s; }
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(30px, -20px) scale(1.05); }
    66%       { transform: translate(-20px, 30px) scale(0.95); }
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 28px;
    width: fit-content;
}
.hero-badge-dot {
    width: 8px; height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
    50%       { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 20px;
}
.hero-gradient-text {
    background: linear-gradient(135deg, #667eea, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

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

.hero-trust {
    display: flex;
    align-items: center;
    gap: clamp(10px, 2vw, 28px);
    flex-wrap: nowrap;
    width: 100%;
}
.hero-trust-item {
    display: flex; flex-direction: column; gap: 2px; min-width: 0;
}
.hero-trust-item strong {
    font-size: clamp(1rem, 1.8vw, 1.4rem); font-weight: 800; color: #fff; line-height: 1;
    white-space: nowrap;
}
.hero-trust-item span {
    font-size: 0.78rem; color: rgba(255,255,255,0.55);
    text-transform: uppercase; letter-spacing: 0.06em;
    white-space: nowrap;
}
.hero-trust-sep {
    width: 1px; height: 36px; background: rgba(255,255,255,0.15); flex-shrink: 0;
}
.hero-trust-price-wrap { display: flex; flex-direction: column; gap: 1px; white-space: nowrap; }
.hero-trust-price-row { display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.hero-trust-item strong.hero-trust-current-price {
    color: #4ade80;
    text-shadow: 0 2px 12px rgba(74, 222, 128, 0.28);
}
/* higher specificity (0-2-0) to override .hero-trust-item span (0-1-1) */
.hero-trust-item .hero-trust-old {
    font-size: 0.72rem; font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-decoration: line-through;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
}


/* Hero visual card stack */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.hv-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 18px;
    padding: 18px 22px;
    color: #fff;
    transition: border-color 0.3s;
}
.hv-card:hover { border-color: rgba(255,255,255,0.22); }

/* ── Mentor card ─────────────────────────────────── */
.hv-card-top {
    display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.hv-avatar-wrap { position: relative; flex-shrink: 0; }
.hv-avatar {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.82rem; font-weight: 700; color: #fff;
}
.hv-avatar-status {
    position: absolute; bottom: 1px; right: 1px;
    width: 11px; height: 11px; background: #22c55e;
    border: 2px solid #1e1b3a; border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}
.hv-name { font-size: 0.9rem; font-weight: 700; line-height: 1.2; }
.hv-online {
    display: flex; align-items: center; gap: 5px;
    font-size: 0.75rem; color: #22c55e;
}
.hv-online span {
    width: 6px; height: 6px; background: #22c55e; border-radius: 50%;
}
.hv-response-badge {
    margin-left: auto;
    font-size: 0.7rem; font-weight: 600;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.08);
    padding: 3px 10px; border-radius: 50px;
    white-space: nowrap; flex-shrink: 0;
}
.hv-bubble {
    background: rgba(255,255,255,0.09);
    border-radius: 4px 14px 14px 14px;
    padding: 10px 14px;
    margin-bottom: 10px;
}
.hv-msg {
    font-size: 0.87rem; color: rgba(255,255,255,0.85); line-height: 1.55; margin: 0;
}
.hv-card-footer {
    display: flex; justify-content: space-between; align-items: center;
}
.hv-time { font-size: 0.72rem; color: rgba(255,255,255,0.35); }
.hv-read { font-size: 0.72rem; color: #60a5fa; letter-spacing: -1px; }

/* ── Progress card ───────────────────────────────── */
.hv-card-progress { display: flex; flex-direction: column; gap: 10px; }
.hv-progress-top {
    display: flex; align-items: center; gap: 12px;
}
.hv-progress-icon { font-size: 1.5rem; flex-shrink: 0; }
.hv-progress-info { flex: 1; min-width: 0; }
.hv-progress-label { font-size: 0.88rem; font-weight: 700; color: rgba(255,255,255,0.95); line-height: 1.2; }
.hv-progress-sub { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-top: 2px; }
.hv-progress-pct {
    font-size: 1.4rem; font-weight: 900; line-height: 1; flex-shrink: 0;
    background: linear-gradient(135deg, #667eea, #f093fb);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hv-progress-bar { height: 7px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; }
.hv-progress-fill {
    height: 100%; background: linear-gradient(90deg, #667eea, #f093fb); border-radius: 4px;
    animation: progressGrow 1.2s ease-out forwards;
}
@keyframes progressGrow {
    from { width: 0 !important; }
}
.hv-progress-footer {
    display: flex; justify-content: space-between;
    font-size: 0.73rem; color: rgba(255,255,255,0.4);
}

/* ── Outcome card ────────────────────────────────── */
.hv-card-outcome {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(34,197,94,0.06);
    border-color: rgba(34,197,94,0.2);
}
.hv-outcome-label {
    font-size: 0.68rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.09em; color: #4ade80;
}
.hv-outcome-list {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 7px;
}
.hv-outcome-list li {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.83rem; color: rgba(255,255,255,0.9); font-weight: 500;
}
.hv-outcome-list li span {
    font-size: 0.62rem; font-weight: 900; color: #4ade80;
    background: rgba(74,222,128,0.12); border-radius: 50%;
    width: 17px; height: 17px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ── Result/Success card ────────────────────── */
.hv-card-result {
    display: flex; flex-direction: column; gap: 12px;
    background: linear-gradient(135deg, rgba(34,197,94,0.09), rgba(16,185,129,0.05));
    border-color: rgba(34,197,94,0.28);
}
.hv-result-top { display: flex; align-items: center; gap: 10px; }
.hv-result-av {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.78rem; font-weight: 700; color: white; flex-shrink: 0;
}
.hv-result-meta { flex: 1; }
.hv-result-name { font-size: 0.88rem; font-weight: 700; color: white; }
.hv-result-from { font-size: 0.7rem; color: rgba(255,255,255,0.42); }
.hv-result-stars { color: #fbbf24; font-size: 0.72rem; letter-spacing: 1px; flex-shrink: 0; }
.hv-result-body {
    background: rgba(255,255,255,0.07); border-radius: 10px; padding: 10px 12px;
}
.hv-result-badge {
    font-size: 0.62rem; font-weight: 800; color: #4ade80;
    text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-bottom: 4px;
}
.hv-result-role { font-size: 0.9rem; font-weight: 700; color: white; margin-bottom: 3px; }
.hv-result-salary { font-size: 1.1rem; font-weight: 900; color: #4ade80; }
.hv-result-time { font-size: 0.7rem; color: rgba(255,255,255,0.38); }

/* ── Mentor plan card ────────────────────── */
.hv-plan-mini { display: flex; flex-direction: column; gap: 5px; margin-top: 2px; }
.hv-plan-label {
    font-size: 0.68rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.09em; color: rgba(255,255,255,0.45); margin-bottom: 4px;
}
.hv-plan-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.82rem; color: rgba(255,255,255,0.5); padding: 4px 0;
}
.hv-plan-done { color: rgba(255,255,255,0.75); }
.hv-plan-check { font-size: 0.62rem; color: #4ade80; background: rgba(74,222,128,0.12); border-radius: 50%; width: 16px; height: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hv-plan-active { color: white; font-weight: 700; }
.hv-plan-now { font-size: 0.6rem; font-weight: 800; color: #667eea; background: rgba(102,126,234,0.15); padding: 1px 7px; border-radius: 50px; margin-left: auto; flex-shrink: 0; }
.hv-plan-live {
    width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
    background: #667eea; animation: dotPulse 2s ease-in-out infinite;
}
.hv-plan-circle { font-size: 0.6rem; color: rgba(255,255,255,0.2); width: 16px; text-align: center; flex-shrink: 0; }
.hv-plan-next { color: rgba(255,255,255,0.3); }

/* ── Enrollment card ──────────────────────── */
.hv-card-enroll { display: flex; flex-direction: column; gap: 12px; }
.hv-enroll-header { display: flex; align-items: center; gap: 8px; }
.hv-enroll-live {
    width: 8px; height: 8px; background: #22c55e; border-radius: 50%; flex-shrink: 0;
    animation: dotPulse 2s ease-in-out infinite;
}
.hv-enroll-label { font-size: 0.9rem; font-weight: 700; color: white; flex: 1; }
.hv-enroll-fire {
    font-size: 0.62rem; font-weight: 800; color: #fbbf24;
    background: rgba(251,191,36,0.12); padding: 2px 8px; border-radius: 50px;
}
.hv-spots-track { display: flex; gap: 4px; flex-wrap: wrap; }
.hv-spot { width: 22px; height: 8px; border-radius: 4px; }
.hv-spot-on { background: linear-gradient(90deg, #667eea, #764ba2); }
.hv-spot-off { background: rgba(255,255,255,0.1); }
.hv-spots-meta {
    display: flex; justify-content: space-between; align-items: center; margin-top: 6px;
}
.hv-spots-taken { font-size: 0.72rem; color: rgba(255,255,255,0.4); }
.hv-spots-free {
    font-size: 0.75rem; font-weight: 800; color: #f97316;
    background: rgba(249,115,22,0.12); padding: 2px 10px; border-radius: 50px;
}
.hv-enroll-crowd { display: flex; align-items: center; gap: 10px; }
.hv-enroll-avs { display: flex; }
.hv-enroll-avs span {
    width: 26px; height: 26px; border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.58rem; font-weight: 700; color: white;
    border: 2px solid rgba(15,12,41,0.6);
    margin-left: -6px;
}
.hv-enroll-avs span:first-child { margin-left: 0; }
.hv-av-more { background: rgba(255,255,255,0.12) !important; }
.hv-enroll-online { font-size: 0.73rem; color: rgba(255,255,255,0.45); }

/* ── Code editor card ─────────────────────────── */
.hv-card-editor { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.hv-editor-bar {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 14px;
    background: rgba(0,0,0,0.25);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hv-editor-dots { display: flex; gap: 5px; }
.hv-editor-dots span { width: 10px; height: 10px; border-radius: 50%; }
.hv-editor-dots span:nth-child(1) { background: #ef4444; }
.hv-editor-dots span:nth-child(2) { background: #f59e0b; }
.hv-editor-dots span:nth-child(3) { background: #22c55e; }
.hv-editor-meta { display: flex; align-items: center; gap: 5px; flex: 1; justify-content: center; }
.hv-editor-course { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.7); }
.hv-editor-sep { font-size: 0.65rem; color: rgba(255,255,255,0.25); }
.hv-editor-lesson { font-size: 0.7rem; color: rgba(255,255,255,0.45); }
.hv-editor-saved { font-size: 0.65rem; color: #4ade80; font-weight: 700; }
.hv-code-inline {
    font-family: 'Courier New', monospace; font-size: 0.72rem;
    background: rgba(255,255,255,0.1); border-radius: 4px; padding: 1px 5px;
    color: #c3e88d;
}
.hv-editor-body {
    padding: 14px 16px;
    font-family: 'Courier New', monospace;
    font-size: 0.78rem; line-height: 1.75; flex: 1;
}
.hv-cl { display: block; white-space: nowrap; }
.hv-ind  { padding-left: 18px; }
.hv-ind2 { padding-left: 36px; }
.hv-kw  { color: #c792ea; }
.hv-fn  { color: #82aaff; }
.hv-pm  { color: #f78c6c; }
.hv-str { color: #c3e88d; }
.hv-nu  { color: #f78c6c; }
.hv-cm-text { color: rgba(255,255,255,0.32); font-style: italic; }
.hv-editor-mentor {
    display: flex; align-items: flex-start; gap: 8px;
    padding: 10px 14px;
    background: rgba(102,126,234,0.1);
    border-top: 1px solid rgba(102,126,234,0.18);
}
.hv-editor-av {
    width: 26px; height: 26px; border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.58rem; font-weight: 700; color: white; flex-shrink: 0;
}
.hv-editor-msg { font-size: 0.74rem; color: rgba(255,255,255,0.72); line-height: 1.45; flex: 1; }
.hv-editor-foot {
    display: flex; justify-content: flex-end; align-items: center;
    padding: 7px 14px;
    background: rgba(0,0,0,0.18);
    border-top: 1px solid rgba(255,255,255,0.05);
}
.hv-editor-prog { font-size: 0.68rem; color: rgba(255,255,255,0.32); }

/* ── Before / After card ───────────────────────── */
.hv-card-ba { display: flex; flex-direction: column; gap: 14px; }
.hv-ba-wrap { display: flex; align-items: center; gap: 10px; }
.hv-ba-side { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.hv-ba-lbl {
    font-size: 0.6rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: rgba(255,255,255,0.3);
}
.hv-ba-role-old { font-size: 0.85rem; color: rgba(255,255,255,0.45); font-weight: 500; }
.hv-ba-role-new { font-size: 0.92rem; color: white; font-weight: 800; }
.hv-ba-sal-old  { font-size: 0.88rem; color: rgba(255,255,255,0.3); text-decoration: line-through; }
.hv-ba-sal-new  { font-size: 1.1rem; font-weight: 900; color: #4ade80; }
.hv-ba-arr { font-size: 1.5rem; color: rgba(255,255,255,0.18); flex-shrink: 0; }
.hv-ba-foot {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 0.7rem; color: rgba(255,255,255,0.38);
    padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.08);
}
.hv-ba-stars { color: #fbbf24; }

/* ── Key numbers card ──────────────────────────── */
.hv-card-nums { display: flex; align-items: center; justify-content: center; }
.hv-nums-row {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; gap: 8px;
}
.hv-nums-col { text-align: center; flex: 1; }
.hv-nums-big {
    font-size: 1.4rem; font-weight: 900; line-height: 1; margin-bottom: 4px;
    background: linear-gradient(135deg, #667eea, #f093fb);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hv-nums-lbl { font-size: 0.68rem; color: rgba(255,255,255,0.42); line-height: 1.3; }
.hv-nums-sep { width: 1px; height: 38px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* ── Plan card (no avatar header) ─────────────── */
.hv-card-plan { display: flex; flex-direction: column; gap: 12px; }
.hv-plan-footer {
    font-size: 0.68rem; color: rgba(255,255,255,0.35);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 10px; margin-top: 2px;
}

/* ── Graduate results card ─────────────────────── */
.hv-card-graduate { display: flex; flex-direction: column; gap: 12px; }
.hv-grad-label {
    font-size: 0.68rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.09em; color: rgba(255,255,255,0.5);
}
.hv-grad-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.hv-grad-stat {
    background: rgba(255,255,255,0.06);
    border-radius: 10px; padding: 10px 12px;
}
.hv-grad-num {
    font-size: 1.15rem; font-weight: 900; color: white;
    line-height: 1; margin-bottom: 4px;
    background: linear-gradient(135deg, #667eea, #f093fb);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hv-grad-text {
    font-size: 0.68rem; color: rgba(255,255,255,0.48); line-height: 1.3;
}

/* ── Story / transformation card ──────────────── */
.hv-card-story {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: linear-gradient(135deg, rgba(34,197,94,0.08), rgba(16,185,129,0.04));
    border-color: rgba(34,197,94,0.3);
}
.hv-story-badge {
    font-size: 0.7rem; font-weight: 800; color: #4ade80;
    text-transform: uppercase; letter-spacing: 0.08em;
}
.hv-story-transform {
    display: flex; align-items: center; gap: 10px;
}
.hv-story-side { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.hv-story-tlabel {
    font-size: 0.6rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: rgba(255,255,255,0.32);
}
.hv-story-from-role {
    font-size: 0.84rem; color: rgba(255,255,255,0.42); font-weight: 500;
    text-decoration: line-through; text-decoration-color: rgba(255,255,255,0.18);
}
.hv-story-to-role {
    font-size: 0.96rem; font-weight: 800; color: #4ade80; line-height: 1.2;
}
.hv-story-arrow { font-size: 1.3rem; color: rgba(255,255,255,0.25); flex-shrink: 0; }
.hv-story-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.08);
}
.hv-story-person { display: flex; align-items: center; gap: 8px; }
.hv-story-av {
    width: 34px; height: 34px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 0.72rem; font-weight: 700; color: white; flex-shrink: 0;
}
.hv-story-name { font-size: 0.82rem; font-weight: 700; color: white; }
.hv-story-stars { font-size: 0.65rem; color: #fbbf24; letter-spacing: 1px; }
.hv-story-meta { text-align: right; }
.hv-story-salary { font-size: 1rem; font-weight: 900; color: #4ade80; line-height: 1.2; }
.hv-story-time { font-size: 0.65rem; color: rgba(255,255,255,0.32); margin-top: 2px; }

/* ── Chat card ─────────────────────────────────── */
.hv-chat-msgs { display: flex; flex-direction: column; gap: 7px; }
.hv-chat-msg-in, .hv-chat-msg-out { display: flex; }
.hv-chat-msg-out { justify-content: flex-end; }
.hv-chat-bubble-in {
    background: rgba(255,255,255,0.08);
    border-radius: 4px 14px 14px 14px;
    padding: 8px 12px; font-size: 0.8rem;
    color: rgba(255,255,255,0.8); max-width: 92%; line-height: 1.4;
}
.hv-chat-bubble-out {
    background: linear-gradient(135deg, rgba(102,126,234,0.22), rgba(118,75,162,0.18));
    border: 1px solid rgba(102,126,234,0.28);
    border-radius: 14px 4px 14px 14px;
    padding: 8px 12px; font-size: 0.8rem;
    color: rgba(255,255,255,0.9); max-width: 92%; line-height: 1.4;
}
.hv-chat-read { font-size: 0.65rem; color: #60a5fa; margin-left: 4px; }

/* ── Stats / social proof card ─────────────────── */
.hv-card-stats { display: flex; flex-direction: column; gap: 10px; }
.hv-stats-row { display: flex; align-items: center; gap: 12px; }
.hv-stats-avs { display: flex; }
.hv-stats-avs span {
    width: 28px; height: 28px; border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.6rem; font-weight: 700; color: white;
    border: 2px solid rgba(15,12,41,0.8);
    margin-left: -7px;
}
.hv-stats-avs span:first-child { margin-left: 0; }
.hv-stats-av-more { background: rgba(255,255,255,0.1) !important; font-size: 0.5rem !important; }
.hv-stats-text strong { display: block; font-size: 1.2rem; font-weight: 900; color: white; line-height: 1; }
.hv-stats-text span { font-size: 0.72rem; color: rgba(255,255,255,0.48); }
.hv-stats-fire {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.58);
    background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.18);
    padding: 4px 12px; border-radius: 50px;
}

/* ══════════════════════════════════════════════════════════
   OUTCOMES SECTION
══════════════════════════════════════════════════════════ */
.outcomes-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-top: 1px solid #f0f4f8;
    border-bottom: 1px solid #f0f4f8;
}
.outcomes-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
}
.outcomes-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(22,163,74,0.1);
    color: #16a34a;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.outcomes-title {
    font-size: 1.9rem;
    font-weight: 900;
    color: #2d3748;
    line-height: 1.25;
    margin-bottom: 24px;
}
.outcomes-list {
    list-style: none; padding: 0; margin: 0 0 32px;
    display: flex; flex-direction: column; gap: 12px;
}
.outcomes-list li {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.97rem; color: #2d3748; font-weight: 500; line-height: 1.4;
}
.outcomes-list li span {
    font-size: 0.68rem; font-weight: 900; color: #16a34a;
    background: rgba(22,163,74,0.1); border-radius: 50%;
    width: 22px; height: 22px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.outcomes-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.outcomes-stat {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px 14px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.outcomes-stat:hover {
    border-color: rgba(102,126,234,0.3);
    box-shadow: 0 4px 16px rgba(102,126,234,0.08);
}
.outcomes-stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.outcomes-stat span {
    font-size: 0.75rem;
    color: #718096;
    font-weight: 600;
    line-height: 1.3;
    display: block;
}
.outcomes-stat-full { grid-column: span 2; }

/* ── Impact stats grid (Результаты right column) ── */
.outcomes-impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.outcomes-impact-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 22px 16px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.outcomes-impact-card:hover {
    border-color: rgba(102,126,234,0.3);
    box-shadow: 0 4px 16px rgba(102,126,234,0.08);
}
.outcomes-impact-num {
    font-size: clamp(1.05rem, 2vw, 1.45rem); font-weight: 900; line-height: 1.2; margin-bottom: 8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.outcomes-impact-label {
    font-size: 0.75rem; color: #4a5568; font-weight: 600; line-height: 1.35;
}
.outcomes-impact-wide { grid-column: span 2; }
.outcomes-impact-accent {
    background: linear-gradient(135deg, rgba(102,126,234,0.05), rgba(118,75,162,0.03));
    border-color: rgba(102,126,234,0.18);
    display: flex; align-items: center; gap: 14px;
    text-align: left; flex-direction: row;
}
.outcomes-impact-icon { font-size: 1.5rem; flex-shrink: 0; }
.outcomes-impact-accent .outcomes-impact-label { font-size: 0.82rem; color: #2d3748; }

[data-theme="dark"] .outcomes-impact-card {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.1);
}
[data-theme="dark"] .outcomes-impact-label { color: rgba(255,255,255,0.65); }
[data-theme="dark"] .outcomes-impact-accent { background: rgba(102,126,234,0.08); border-color: rgba(102,126,234,0.2); }
[data-theme="dark"] .outcomes-impact-accent .outcomes-impact-label { color: rgba(255,255,255,0.8); }

/* ══════════════════════════════════════════════════════════
   PAIN SECTION
══════════════════════════════════════════════════════════ */
.pain-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f0f4ff 0%, #e8f0fe 100%);
    position: relative;
    overflow: hidden;
}
.pain-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 50%, rgba(102,126,234,0.08) 0%, transparent 60%),
                radial-gradient(circle at 85% 30%, rgba(118,75,162,0.08) 0%, transparent 60%);
}
.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}
.pain-card {
    display: flex; align-items: flex-start; gap: 16px;
    background: white;
    border: 1px solid rgba(102,126,234,0.15);
    border-radius: 18px;
    padding: 24px 28px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(102,126,234,0.06);
}
.pain-card:hover {
    background: white;
    border-color: rgba(102,126,234,0.35);
    box-shadow: 0 8px 28px rgba(102,126,234,0.12);
}
.pain-icon { font-size: 1.6rem; flex-shrink: 0; line-height: 1.4; }
.pain-card p { color: #4a5568; line-height: 1.7; font-size: 1rem; margin: 0; }
.pain-solution { position: relative; z-index: 2; }
.pain-solution-inner {
    display: flex; align-items: center; gap: 20px;
    background: rgba(102,126,234,0.15);
    border: 1px solid rgba(102,126,234,0.3);
    border-radius: 20px;
    padding: 28px 36px;
    flex-wrap: wrap;
}
.pain-solution-icon { font-size: 1.8rem; flex-shrink: 0; }
.pain-solution-inner p {
    color: #2d3748; line-height: 1.65; font-size: 1.05rem; margin: 0; flex: 1; min-width: 200px;
}
.pain-solution-cta { flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   FOR WHOM
══════════════════════════════════════════════════════════ */
.for-whom-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.for-whom-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.for-whom-card {
    background: white;
    border-radius: 24px;
    padding: 40px 36px;
    border: 2px solid #e2e8f0;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.for-whom-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    opacity: 0; transition: opacity 0.3s ease;
}
.for-whom-card:hover {
    border-color: #667eea;
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(102,126,234,0.12);
}
.for-whom-card:hover::before { opacity: 1; }
.for-whom-icon { font-size: 2.8rem; margin-bottom: 20px; display: block; }
.for-whom-title { font-size: 1.35rem; font-weight: 800; color: #2d3748; margin-bottom: 12px; line-height: 1.3; }
.for-whom-desc { color: #718096; line-height: 1.7; margin-bottom: 20px; font-size: 1rem; }
.for-whom-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.for-whom-list li {
    color: #4a5568; font-size: 0.95rem; padding-left: 22px;
    position: relative; line-height: 1.5;
}
.for-whom-list li::before { content: '✓'; position: absolute; left: 0; color: #667eea; font-weight: 700; }

/* ══════════════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════════════ */
.how-it-works-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}
.how-it-works-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(102,126,234,0.06) 0%, transparent 60%),
                radial-gradient(circle at 80% 50%, rgba(118,75,162,0.06) 0%, transparent 60%);
}
.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: center;
    position: relative; z-index: 2;
}
.step-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.35s ease;
    box-shadow: 0 4px 16px rgba(102,126,234,0.06);
}
.step-card:hover {
    background: white;
    border-color: #667eea;
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(102,126,234,0.15);
}
.step-number {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; font-weight: 900; color: white;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(102,126,234,0.4);
}
.step-title { font-size: 1.3rem; font-weight: 800; color: #2d3748; margin-bottom: 16px; line-height: 1.3; }
.step-desc { color: #718096; line-height: 1.7; font-size: 0.95rem; margin-bottom: 20px; }
.step-tag {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(102,126,234,0.1); color: #667eea;
    padding: 8px 18px; border-radius: 50px;
    font-size: 13px; font-weight: 700;
    border: 1px solid rgba(102,126,234,0.2);
}
.step-connector {
    display: flex; align-items: center; justify-content: center;
    padding: 0 16px; color: #94a3b8;
    font-size: 2rem; font-weight: 300;
}
.step-connector::after { content: '→'; }

/* ══════════════════════════════════════════════════════════
   PRICING SECTION
══════════════════════════════════════════════════════════ */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
}
.pricing-section .section-title-revolutionary {
    background: linear-gradient(45deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pricing-section .section-subtitle-revolutionary { color: rgba(255,255,255,0.7); }
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
    align-items: start;
}
.pricing-compare {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 32px;
}
.pricing-compare-title {
    font-size: 0.78rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.08em; color: rgba(255,255,255,0.5); margin-bottom: 20px;
}
.pricing-compare-list { display: flex; flex-direction: column; gap: 10px; }
.pricing-compare-row {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.88rem; color: rgba(255,255,255,0.8);
    padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pricing-compare-row span:last-child { font-weight: 600; color: rgba(255,255,255,0.55); white-space: nowrap; }
.pricing-compare-mentor { opacity: 0.6; }
.pricing-compare-total {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 12px; font-weight: 700; font-size: 0.95rem; color: rgba(255,255,255,0.9);
}
.pricing-compare-total-val {
    font-size: 1.3rem; font-weight: 900; text-decoration: line-through; color: #ef4444;
}
.pricing-main {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 40px 36px;
    color: #fff;
    display: flex; flex-direction: column; gap: 20px;
    position: relative; overflow: hidden;
}
.pricing-main::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.05); border-radius: 50%;
}
.pricing-main-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 5px 14px; border-radius: 100px;
    font-size: 0.8rem; font-weight: 700; width: fit-content;
}
.pricing-main-price {
    font-size: 4.5rem; font-weight: 900; line-height: 1; letter-spacing: -2px;
}
.pricing-main-saving {
    font-size: 0.88rem; background: rgba(255,255,255,0.1);
    border-radius: 8px; padding: 10px 14px; line-height: 1.4;
}
.pricing-main-includes { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.pricing-main-includes li {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.92rem; color: rgba(255,255,255,0.9);
}
.pricing-main-includes li span {
    width: 20px; height: 20px;
    background: rgba(255,255,255,0.2); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem; font-weight: 800; flex-shrink: 0;
}
.pricing-main-cta {
    display: flex; align-items: center; justify-content: center;
    background: #fff; color: #667eea;
    font-size: 1.02rem; font-weight: 800;
    padding: 18px 28px; border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    text-align: center;
}
.pricing-main-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); color: #764ba2; }
.pricing-main-guarantee { font-size: 0.8rem; color: rgba(255,255,255,0.65); text-align: center; line-height: 1.5; }

/* ══════════════════════════════════════════════════════════
   VALUE SECTION
══════════════════════════════════════════════════════════ */
.value-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* Stats row */
.value-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    box-sizing: border-box;
    padding: 20px 0;
    margin: 0 auto 40px;
    width: 100%;
    max-width: 900px;
    overflow: hidden;
}
.value-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 100%;
    min-width: 0;
    padding: 0 16px;
    text-align: center;
}
.value-stat-sep + .value-stat { border-left: 1px solid #e2e8f0; }
.value-stat strong {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    min-height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.value-stat strong.value-stat-compact {
    width: 100%;
    min-height: 2.65rem;
    font-size: clamp(0.9rem, 1.6vw, 1.15rem);
    line-height: 1.15;
    white-space: normal;
    overflow-wrap: normal;
}
.value-stat span {
    font-size: 0.78rem;
    font-weight: 600;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.value-stat-sep {
    display: none;
}

/* Layout grid */
.value-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

/* Left panel */
.value-left {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 28px;
}
.value-block-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #667eea;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f4ff;
}
.value-block-label-extra { margin-top: 24px; }

/* ── Course chips 3×3 grid (legacy, kept for reference) ── */
.vpc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 4px;
}

/* ── Sequential step list ─────────────────────── */
.vpc-steps { display: flex; flex-direction: column; margin-bottom: 4px; }
.vpc-step {
    display: flex;
    gap: 10px;
    cursor: pointer;
    padding: 6px 8px 6px 0;
    border-radius: 10px;
    transition: background 0.15s;
}
.vpc-step:hover { background: #f8fafc; }
.vpc-step-num-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 34px;
}
.vpc-step-circle {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-size: 0.6rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(102,126,234,0.35);
}
.vpc-step-line {
    flex: 1;
    width: 2px;
    background: linear-gradient(to bottom, rgba(102,126,234,0.4), rgba(118,75,162,0.15));
    min-height: 10px;
    margin: 3px 0;
    border-radius: 2px;
}
.vpc-step-body { flex: 1; min-width: 0; padding: 3px 0; }
.vpc-step-row { display: flex; align-items: center; gap: 8px; }
.vpc-step-emoji { font-size: 1rem; flex-shrink: 0; line-height: 1; }
.vpc-step-info { flex: 1; min-width: 0; }
.vpc-step-name {
    font-size: 0.72rem; font-weight: 700; color: #2d3748;
    line-height: 1.25; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.vpc-step-meta { font-size: 0.58rem; color: #a0aec0; margin-top: 1px; }
.vpc-step-price {
    font-size: 0.62rem; font-weight: 700; color: #667eea;
    flex-shrink: 0; white-space: nowrap;
}

[data-theme="dark"] .vpc-step:hover { background: rgba(255,255,255,0.04); }
[data-theme="dark"] .vpc-step-name { color: rgba(255,255,255,0.85); }
[data-theme="dark"] .vpc-step-meta { color: rgba(255,255,255,0.3); }
[data-theme="dark"] .vpc-step-price { color: #a5b4fc; }
[data-theme="dark"] .vpc-step-line { background: linear-gradient(to bottom, rgba(102,126,234,0.3), rgba(118,75,162,0.1)); }
.vpc-chip {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 10px 8px;
    position: relative;
    transition: border-color 0.2s, box-shadow 0.2s;
    cursor: default;
}
.vpc-chip:hover {
    border-color: rgba(102,126,234,0.35);
    box-shadow: 0 2px 10px rgba(102,126,234,0.08);
}
.vpc-num {
    position: absolute; top: 6px; right: 8px;
    font-size: 0.6rem; font-weight: 900;
    font-family: monospace; line-height: 1;
    color: #667eea;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.vpc-emoji { font-size: 1.3rem; display: block; margin-bottom: 5px; line-height: 1; }
.vpc-name { font-size: 0.75rem; font-weight: 700; color: #2d3748; line-height: 1.2; }
.vpc-desc { font-size: 0.62rem; color: #a0aec0; margin-top: 2px; line-height: 1.3; }
.vpc-price { font-size: 0.65rem; font-weight: 700; color: #667eea; margin-top: 4px; }

/* ── Included services block ───────────────────── */
.vsc-block {
    margin-top: 20px;
    background: linear-gradient(135deg, rgba(102,126,234,0.05), rgba(118,75,162,0.03));
    border: 1px solid rgba(102,126,234,0.2);
    border-radius: 14px;
    padding: 14px 12px 12px;
}
.vsc-block-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.vsc-block-title {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #667eea;
}
.vsc-block-badge {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #16a34a;
    background: rgba(22,163,74,0.1);
    border: 1px solid rgba(22,163,74,0.25);
    border-radius: 20px;
    padding: 2px 8px;
}
.vsc-not-included {
    font-size: 0.7rem;
    font-weight: 600;
    color: #92400e;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 8px;
    padding: 7px 12px;
    margin-bottom: 10px;
}
.vsc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.vsc-card {
    background: #fff;
    border: 1px solid rgba(102,126,234,0.18);
    border-radius: 10px;
    padding: 10px 8px;
    text-align: center;
    transition: border-color 0.2s;
}
.vsc-card:hover { border-color: rgba(102,126,234,0.4); }
.vsc-emoji { font-size: 1.2rem; display: block; margin-bottom: 5px; }
.vsc-name { font-size: 0.65rem; font-weight: 600; color: #2d3748; line-height: 1.3; margin-bottom: 4px; }
.vsc-desc { font-size: 0.58rem; color: #718096; line-height: 1.35; margin-bottom: 4px; }
.vsc-market { font-size: 0.55rem; color: #a0aec0; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.vsc-price { font-size: 0.7rem; color: #94a3b8; font-weight: 700; text-decoration: line-through; margin-bottom: 3px; }
.vsc-included { font-size: 0.6rem; font-weight: 700; color: #16a34a; }

/* ── Course chip clickable + modal ─────────────── */
.vpc-chip-clickable { cursor: pointer; }
.vpc-chip-clickable:hover { border-color: rgba(102,126,234,0.4); box-shadow: 0 2px 10px rgba(102,126,234,0.12); }

.vpc-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(3px);
    z-index: 9000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.vpc-modal-overlay.is-open { display: flex; }
.vpc-modal {
    background: #fff;
    border-radius: 18px;
    padding: 28px 24px 22px;
    max-width: 340px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    position: relative;
    animation: vpc-modal-in 0.2s ease;
}
@keyframes vpc-modal-in {
    from { opacity: 0; transform: scale(0.94) translateY(8px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
.vpc-modal-close {
    position: absolute;
    top: 12px; right: 14px;
    background: none; border: none;
    font-size: 1.4rem; line-height: 1;
    color: #a0aec0; cursor: pointer;
}
.vpc-modal-close:hover { color: #4a5568; }
.vpc-modal-emoji { font-size: 2rem; margin-bottom: 6px; }
.vpc-modal-tag {
    display: inline-block;
    font-size: 0.6rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: #667eea;
    background: rgba(102,126,234,0.1);
    border-radius: 20px;
    padding: 2px 10px;
    margin-bottom: 10px;
}
.vpc-modal-title {
    font-size: 0.95rem; font-weight: 800;
    color: #1a202c; line-height: 1.3;
    margin-bottom: 8px;
}
.vpc-modal-short {
    font-size: 0.72rem; color: #64748b;
    line-height: 1.5; margin-bottom: 16px;
}
.vpc-modal-price-row {
    display: flex; align-items: center; justify-content: space-between;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 12px;
}
.vpc-modal-price-label { font-size: 0.7rem; color: #64748b; font-weight: 600; }
.vpc-modal-price-val { font-size: 1rem; font-weight: 800; color: #667eea; }
.vpc-modal-btn {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff !important;
    text-decoration: none;
    font-size: 0.8rem; font-weight: 700;
    border-radius: 10px;
    padding: 11px 16px;
    margin-bottom: 10px;
    transition: opacity 0.2s;
}
.vpc-modal-btn:hover { opacity: 0.9; }
.vpc-modal-hint { font-size: 0.65rem; color: #94a3b8; text-align: center; }
.vpc-modal-hint a { color: #667eea; text-decoration: none; }

[data-theme="dark"] .vpc-chip { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.09); }
[data-theme="dark"] .vpc-chip:hover { border-color: rgba(102,126,234,0.35); box-shadow: none; }
[data-theme="dark"] .vpc-name { color: rgba(255,255,255,0.85); }
[data-theme="dark"] .vpc-desc { color: rgba(255,255,255,0.35); }
[data-theme="dark"] .vpc-price { color: #a5b4fc; }
[data-theme="dark"] .vpc-modal { background: #1e1e2e; }
[data-theme="dark"] .vpc-modal-title { color: rgba(255,255,255,0.9); }
[data-theme="dark"] .vpc-modal-short { color: rgba(255,255,255,0.5); }
[data-theme="dark"] .vpc-modal-price-row { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
[data-theme="dark"] .vpc-modal-price-label { color: rgba(255,255,255,0.5); }
[data-theme="dark"] .vpc-modal-close { color: rgba(255,255,255,0.4); }
[data-theme="dark"] .vsc-block { background: rgba(102,126,234,0.06); border-color: rgba(102,126,234,0.18); }
[data-theme="dark"] .vsc-not-included { color: #fcd34d; background: rgba(245,158,11,0.08); border-color: rgba(245,158,11,0.2); }
[data-theme="dark"] .vsc-card { background: rgba(255,255,255,0.04); border-color: rgba(102,126,234,0.2); }
[data-theme="dark"] .vsc-name { color: rgba(255,255,255,0.8); }
[data-theme="dark"] .vsc-market { color: rgba(255,255,255,0.3); }
[data-theme="dark"] .vsc-price { color: rgba(255,255,255,0.35); }

/* Course path items */
.value-path-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid #f0f4f8;
}
.value-path-emoji {
    font-size: 1.2rem;
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}
.value-path-text { flex: 1; min-width: 0; }
.value-path-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #2d3748;
    line-height: 1.3;
}
.value-path-desc {
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.3;
    margin-top: 1px;
}
.value-path-check {
    font-size: 0.7rem;
    font-weight: 900;
    color: #22c55e;
    flex-shrink: 0;
    background: rgba(34,197,94,0.12);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Service rows */
.value-service-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f4f8;
}
.value-service-emoji {
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}
.value-service-name {
    flex: 1;
    font-size: 0.88rem;
    font-weight: 600;
    color: #2d3748;
}
.value-service-price {
    font-size: 0.88rem;
    font-weight: 700;
    color: #667eea;
    white-space: nowrap;
}

/* Big price comparison block */
.value-compare {
    margin-top: 28px;
    padding: 24px;
    background: linear-gradient(135deg, #f7f8ff, #fdf4ff);
    border: 2px solid rgba(102,126,234,0.15);
    border-radius: 16px;
    text-align: center;
}
.value-compare-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    margin-bottom: 4px;
}
.value-compare-details {
    max-width: 620px;
    margin: 0 auto 12px;
    color: #64748b;
    font-size: 0.78rem;
    line-height: 1.5;
}
.value-compare-old {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ef4444;
    text-decoration: line-through;
    line-height: 1.1;
    opacity: 0.7;
}
.value-compare-arrow {
    font-size: 1.4rem;
    color: #94a3b8;
    margin: 6px 0;
    line-height: 1;
}
.value-compare-new {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* CTA card */
.value-cta-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 36px 28px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 100px;
}
.value-cta-label {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.7);
}
.value-cta-promo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
    font-size: 0.72rem;
    font-weight: 900;
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    width: fit-content;
    box-shadow: 0 4px 14px rgba(239,68,68,0.45);
    animation: promoPulse 2s ease-in-out infinite;
}
@keyframes promoPulse {
    0%, 100% { box-shadow: 0 4px 14px rgba(239,68,68,0.45); }
    50%       { box-shadow: 0 4px 22px rgba(239,68,68,0.75); }
}
.value-cta-estimated-value {
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.4;
    color: rgba(255,255,255,0.65);
    margin-bottom: 2px;
}
.value-cta-estimated-value strong {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}
.value-cta-price-row {
    display: flex;
    align-items: center;
    gap: 14px;
}
.value-cta-price {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    color: #4ade80;
    text-shadow: 0 3px 18px rgba(74, 222, 128, 0.22);
}
.value-cta-discount {
    background: #ef4444;
    color: white;
    font-size: 1rem;
    font-weight: 900;
    padding: 8px 16px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(239,68,68,0.55);
    letter-spacing: 0.3px;
    align-self: center;
}
.value-cta-saving {
    font-size: 0.85rem;
    background: rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 10px 14px;
    line-height: 1.4;
}
.value-cta-includes {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 9px;
}
.value-cta-includes li {
    display: flex; align-items: center; gap: 9px;
    font-size: 0.88rem; color: rgba(255,255,255,0.9);
}
.value-cta-includes li span {
    width: 18px; height: 18px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.6rem; font-weight: 800; flex-shrink: 0;
}
.value-cta-btn {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: white; color: #667eea;
    font-size: 0.97rem; font-weight: 800;
    padding: 16px 20px; border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    text-align: center;
}
.value-cta-btn small {
    margin-top: 3px;
    color: #64748b;
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1.2;
}
.value-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); color: #764ba2; }
.value-cta-headline {
    font-size: 1.05rem;
    font-weight: 900;
    color: white;
    line-height: 1.3;
}
.value-cta-includes li.value-cta-key {
    font-weight: 700;
    color: white;
    align-items: flex-start;
}
.value-cta-includes li.value-cta-key > span {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    font-size: 0.75rem;
    width: 20px; height: 20px;
    margin-top: 1px;
}
.value-cta-item { display: flex; flex-direction: column; gap: 2px; }
.value-cta-item-title { font-size: 0.85rem; font-weight: 700; color: #fff; line-height: 1.2; }
.value-cta-item-desc { font-size: 0.67rem; color: rgba(255,255,255,0.58); line-height: 1.35; }
.value-cta-section-label {
    font-size: 0.62rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: rgba(255,255,255,0.45);
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.value-cta-section-label-secondary {
    padding-bottom: 4px;
    border-bottom: 0;
}
.value-cta-std li span {
    background: rgba(74, 222, 128, 0.18);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.35);
}
.value-cta-std-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.12);
    margin: 2px 0;
}
.value-cta-std li { color: rgba(255,255,255,0.75) !important; font-size: 0.8rem !important; align-items: center !important; }
.value-cta-std li span { width: auto !important; height: auto !important; background: none !important; border-radius: 0 !important; font-size: 0.8rem !important; color: rgba(255,255,255,0.5) !important; }
.value-cta-std li span:first-child { width: 18px !important; height: 18px !important; background: rgba(255,255,255,0.15) !important; border-radius: 50% !important; font-size: 0.6rem !important; flex-shrink: 0 !important; }

/* ══════════════════════════════════════════════════════════
   TRIAL SECTION
══════════════════════════════════════════════════════════ */
.trial-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative; overflow: hidden;
}
.trial-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 10% 80%, rgba(255,255,255,0.08) 0%, transparent 50%),
                radial-gradient(circle at 90% 20%, rgba(255,255,255,0.06) 0%, transparent 50%);
}
.trial-card {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: center; position: relative; z-index: 2;
}
.trial-title { font-size: 2.8rem; font-weight: 900; color: white; line-height: 1.2; margin-bottom: 16px; }
.trial-subtitle { color: rgba(255,255,255,0.85); font-size: 1.1rem; line-height: 1.7; }
.trial-badge {
    justify-content: flex-start;
    margin-bottom: 24px;
}
.trial-cta {
    margin-top: 32px;
    display: inline-flex;
    background: white;
    color: #667eea;
}
.trial-cta:hover { color: #764ba2; }
.trial-right { display: flex; flex-direction: column; gap: 24px; }
.trial-feature {
    display: flex; align-items: flex-start; gap: 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px; padding: 20px 24px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.trial-feature:hover { background: rgba(255,255,255,0.15); transform: translateX(4px); }
.trial-feature-icon { font-size: 1.6rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.trial-feature-text strong { display: block; color: white; font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.trial-feature-text p { color: rgba(255,255,255,0.8); font-size: 0.9rem; line-height: 1.6; margin: 0; }

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════ */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.testimonial-card {
    background: white; border-radius: 24px; padding: 36px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    transition: all 0.35s ease;
    display: flex; flex-direction: column; gap: 20px;
}
.testimonial-card:hover {
    border-color: #667eea;
    box-shadow: 0 16px 48px rgba(102,126,234,0.1);
    transform: translateY(-6px);
}
.testimonial-stars { color: #f59e0b; font-size: 1.2rem; letter-spacing: 2px; }
.testimonial-text { color: #4a5568; line-height: 1.75; font-size: 1rem; font-style: italic; flex: 1; margin: 0; }
.testimonial-author {
    display: flex; align-items: center; gap: 14px;
    border-top: 1px solid #f0f4f8; padding-top: 20px;
}
.testimonial-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.1rem; font-weight: 800; flex-shrink: 0;
}
.testimonial-author-info strong { display: block; color: #2d3748; font-size: 0.95rem; font-weight: 700; line-height: 1.3; }
.testimonial-author-info span { color: #a0aec0; font-size: 0.85rem; }

/* ══════════════════════════════════════════════════════════
   COURSES INLINE LIST
══════════════════════════════════════════════════════════ */
.courses-list-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative; overflow: hidden;
}
.courses-list-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.08) 0%, transparent 50%);
}
.courses-list-section .section-title-revolutionary {
    background: linear-gradient(45deg, #ffffff, #f0f9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.courses-list-section .section-subtitle-revolutionary { color: rgba(255,255,255,0.85); }
.courses-inline-list {
    display: flex; flex-direction: column; gap: 8px;
    position: relative; z-index: 2;
    max-width: 860px; margin: 0 auto;
}
.course-inline-item {
    display: grid; grid-template-columns: 36px 1fr auto auto;
    align-items: center; gap: 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 14px; padding: 16px 20px;
    color: white; text-decoration: none;
    transition: all 0.25s ease;
}
.course-inline-item:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.4);
    transform: translateX(4px); color: white; text-decoration: none;
}
.course-inline-icon { font-size: 1.3rem; text-align: center; }
.course-inline-name { font-size: 1rem; font-weight: 700; color: white; line-height: 1.3; }
.course-inline-meta { font-size: 0.85rem; color: rgba(255,255,255,0.65); white-space: nowrap; }
.course-inline-free { color: #86efac; font-weight: 700; }
.course-inline-arrow { color: rgba(255,255,255,0.5); font-size: 1.1rem; transition: transform 0.2s ease; }
.course-inline-item:hover .course-inline-arrow { transform: translateX(4px); color: white; }
.course-inline-empty {
    display: flex; align-items: center; gap: 12px;
    color: rgba(255,255,255,0.7); padding: 20px; font-size: 1rem;
}

/* ══════════════════════════════════════════════════════════
   MENTORS
══════════════════════════════════════════════════════════ */
.mentors-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.mentors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.mentor-card {
    background: white; border: 2px solid #e2e8f0; border-radius: 24px;
    padding: 36px 32px; text-align: center; transition: all 0.35s ease;
    position: relative; overflow: hidden;
}
.mentor-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    opacity: 0; transition: opacity 0.3s ease;
}
.mentor-card:hover {
    border-color: #667eea; transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(102,126,234,0.12);
}
.mentor-card:hover::before { opacity: 1; }
.mentor-photo-wrapper { margin-bottom: 20px; }
.mentor-photo {
    width: 140px; height: 140px; border-radius: 50%;
    margin: 0 auto; object-fit: cover;
    border: 3px solid #e2e8f0; transition: border-color 0.3s ease;
}
.mentor-card:hover .mentor-photo { border-color: #667eea; }
.mentor-photo-placeholder {
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white; font-size: 1.5rem; font-weight: 800; letter-spacing: 1px;
}
.mentor-info { text-align: left; }
.mentor-name { font-size: 1.2rem; font-weight: 800; color: #2d3748; margin-bottom: 6px; line-height: 1.3; }
.mentor-role { display: block; font-size: 0.85rem; color: #667eea; font-weight: 600; margin-bottom: 16px; }
.mentor-bio { color: #718096; font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.mentor-stats {
    display: flex; justify-content: center; gap: 0;
    border-top: 1px solid #f0f4f8; padding-top: 20px;
}
.mentor-stat {
    flex: 1; text-align: center; padding: 0 8px;
    border-right: 1px solid #f0f4f8;
}
.mentor-stat:last-child { border-right: none; }
.mentor-stat strong { display: block; color: #667eea; font-size: 1rem; font-weight: 800; line-height: 1.2; margin-bottom: 3px; }
.mentor-stat span { color: #a0aec0; font-size: 0.78rem; font-weight: 500; }

/* ══════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════ */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.faq-columns {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    max-width: 1000px; margin: 0 auto; align-items: start;
}
.faq-col { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: white; border: 2px solid #e2e8f0; border-radius: 18px;
    overflow: hidden; transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item[open] { border-color: #667eea; box-shadow: 0 8px 32px rgba(102,126,234,0.1); }
.faq-question {
    padding: 24px 28px; font-size: 1.05rem; font-weight: 700; color: #2d3748;
    cursor: pointer; list-style: none;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; user-select: none; transition: color 0.2s ease;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
    content: '+'; font-size: 1.4rem; font-weight: 300; color: #667eea;
    flex-shrink: 0; transition: transform 0.3s ease;
}
.faq-item[open] .faq-question { color: #667eea; }
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding: 0 28px 24px; border-top: 1px solid #f0f4f8; }
.faq-answer p { color: #718096; line-height: 1.75; font-size: 1rem; margin: 16px 0 0; }

/* ══════════════════════════════════════════════════════════
   CTA
══════════════════════════════════════════════════════════ */
.cta-revolutionary {
    padding: 120px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #667eea 100%);
    position: relative; overflow: hidden; text-align: center;
}
.cta-revolutionary::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(255,255,255,0.08) 0%, transparent 50%);
}
.cta-content-revolutionary {
    position: relative; z-index: 2; color: white; max-width: 800px; margin: 0 auto;
}
.cta-title-revolutionary {
    font-size: 3.5rem; font-weight: 900; line-height: 1.2; margin-bottom: 24px;
    background: linear-gradient(45deg, #ffffff, #f0f9ff);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cta-description-revolutionary { font-size: 1.25rem; opacity: 0.9; margin-bottom: 48px; line-height: 1.7; }
.cta-actions-revolutionary { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════
   CONTACT FORM
══════════════════════════════════════════════════════════ */
.contact-form-section {
    padding: 100px 0;
    background: var(--bg-color);
}
.contact-form-container {
    max-width: 680px; margin: 0 auto; padding: 0 20px;
}

/* ══════════════════════════════════════════════════════════
   DARK THEME OVERRIDES
══════════════════════════════════════════════════════════ */
[data-theme="dark"] .section-title-revolutionary {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
[data-theme="dark"] .section-subtitle-revolutionary { color: #a0aec0; }

[data-theme="dark"] .pain-section { background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%); }
[data-theme="dark"] .pain-section::before {
    background: radial-gradient(circle at 15% 50%, rgba(239,68,68,0.06) 0%, transparent 60%),
                radial-gradient(circle at 85% 30%, rgba(102,126,234,0.06) 0%, transparent 60%);
}
[data-theme="dark"] .pain-card {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
    box-shadow: none;
}
[data-theme="dark"] .pain-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.15);
    box-shadow: none;
}
[data-theme="dark"] .pain-card p { color: rgba(255,255,255,0.75); }
[data-theme="dark"] .pain-solution-inner p { color: rgba(255,255,255,0.9); }

[data-theme="dark"] .how-it-works-section { background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%); }
[data-theme="dark"] .how-it-works-section::before {
    background: radial-gradient(circle at 20% 50%, rgba(102,126,234,0.15) 0%, transparent 60%),
                radial-gradient(circle at 80% 50%, rgba(118,75,162,0.1) 0%, transparent 60%);
}
[data-theme="dark"] .how-it-works-section .section-title-revolutionary {
    background: linear-gradient(45deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
[data-theme="dark"] .step-card {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
    box-shadow: none;
}
[data-theme="dark"] .step-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(102,126,234,0.5);
    box-shadow: none;
}
[data-theme="dark"] .step-title { color: white; }
[data-theme="dark"] .step-desc { color: rgba(255,255,255,0.75); }
[data-theme="dark"] .step-tag { background: rgba(102,126,234,0.25); color: #a5b4fc; border-color: rgba(102,126,234,0.3); }
[data-theme="dark"] .step-connector { color: rgba(255,255,255,0.3); }

[data-theme="dark"] .outcomes-section { background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%); border-color: #1e293b; }
[data-theme="dark"] .outcomes-title { color: #f1f5f9; }
[data-theme="dark"] .outcomes-list li { color: #e2e8f0; }
[data-theme="dark"] .outcomes-eyebrow { background: rgba(34,197,94,0.12); color: #4ade80; }
[data-theme="dark"] .outcomes-stat { background: #1e293b; border-color: #334155; }
[data-theme="dark"] .outcomes-stat:hover { border-color: rgba(129,140,248,0.3); }
[data-theme="dark"] .outcomes-stat strong { background: linear-gradient(135deg, #818cf8, #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
[data-theme="dark"] .outcomes-stat span { color: #64748b; }

[data-theme="dark"] .value-section { background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%); }
[data-theme="dark"] .value-stats { background: #1e293b; border-color: #334155; }
[data-theme="dark"] .value-stat strong { background: linear-gradient(135deg, #818cf8, #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
[data-theme="dark"] .value-stat span { color: #64748b; }
[data-theme="dark"] .value-stat-sep { background: #334155; }
[data-theme="dark"] .value-left { background: #1e293b; border-color: #334155; }
[data-theme="dark"] .value-block-label { color: #818cf8; border-bottom-color: rgba(129,140,248,0.15); }
[data-theme="dark"] .value-path-item { border-bottom-color: rgba(255,255,255,0.06); }
[data-theme="dark"] .value-path-name { color: #e2e8f0; }
[data-theme="dark"] .value-path-desc { color: #64748b; }
[data-theme="dark"] .value-service-row { border-bottom-color: rgba(255,255,255,0.06); }
[data-theme="dark"] .value-service-name { color: #e2e8f0; }
[data-theme="dark"] .value-service-price { color: #818cf8; }
[data-theme="dark"] .value-compare { background: linear-gradient(135deg, rgba(102,126,234,0.08), rgba(118,75,162,0.08)); border-color: rgba(129,140,248,0.2); }
[data-theme="dark"] .value-compare-label { color: #64748b; }
[data-theme="dark"] .value-compare-details { color: #94a3b8; }

[data-theme="dark"] .for-whom-section { background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%); }
[data-theme="dark"] .for-whom-card { background: #1e293b; border-color: #334155; }
[data-theme="dark"] .for-whom-card:hover { border-color: #667eea; box-shadow: 0 24px 60px rgba(102,126,234,0.15); }
[data-theme="dark"] .for-whom-title { color: #f1f5f9; }
[data-theme="dark"] .for-whom-desc { color: #94a3b8; }
[data-theme="dark"] .for-whom-list li { color: #cbd5e1; }

[data-theme="dark"] .testimonials-section { background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%); }
[data-theme="dark"] .testimonial-card { background: #1e293b; border-color: #334155; box-shadow: 0 4px 24px rgba(0,0,0,0.2); }
[data-theme="dark"] .testimonial-card:hover { border-color: #667eea; box-shadow: 0 16px 48px rgba(102,126,234,0.15); }
[data-theme="dark"] .testimonial-text { color: #94a3b8; }
[data-theme="dark"] .testimonial-author { border-top-color: #334155; }
[data-theme="dark"] .testimonial-author-info strong { color: #f1f5f9; }
[data-theme="dark"] .testimonial-author-info span { color: #64748b; }

.testimonial-result {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 12px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: 8px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}
.t-before { font-size: 0.78rem; color: #6b7280; font-weight: 500; }
.t-arrow { font-size: 0.78rem; color: #22c55e; font-weight: 700; }
.t-after { font-size: 0.78rem; color: #15803d; font-weight: 700; }
.t-dur {
    margin-left: auto; font-size: 0.72rem; font-weight: 700;
    color: #16a34a; background: rgba(22,163,74,0.12);
    padding: 2px 8px; border-radius: 50px;
}
[data-theme="dark"] .testimonial-result { background: rgba(34,197,94,0.08); }
[data-theme="dark"] .t-before { color: #94a3b8; }
[data-theme="dark"] .t-after { color: #4ade80; }
[data-theme="dark"] .t-dur { color: #4ade80; background: rgba(74,222,128,0.12); }

[data-theme="dark"] .courses-list-section { background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); }

[data-theme="dark"] .mentors-section { background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%); }
[data-theme="dark"] .mentor-card { background: #1e293b; border-color: #334155; }
[data-theme="dark"] .mentor-card:hover { border-color: #667eea; box-shadow: 0 24px 60px rgba(102,126,234,0.15); }
[data-theme="dark"] .mentor-name { color: #f1f5f9; }
[data-theme="dark"] .mentor-bio { color: #94a3b8; }
[data-theme="dark"] .mentor-stats { border-top-color: #334155; }
[data-theme="dark"] .mentor-stat { border-right-color: #334155; }
[data-theme="dark"] .mentor-stat span { color: #64748b; }
[data-theme="dark"] .mentor-photo { border-color: #334155; }

[data-theme="dark"] .faq-section { background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%); }
[data-theme="dark"] .faq-item { background: #1e293b; border-color: #334155; }
[data-theme="dark"] .faq-item[open] { border-color: #667eea; box-shadow: 0 8px 32px rgba(102,126,234,0.12); }
[data-theme="dark"] .faq-question { color: #f1f5f9; }
[data-theme="dark"] .faq-item[open] .faq-question { color: #a5b4fc; }
[data-theme="dark"] .faq-answer { border-top-color: #334155; }
[data-theme="dark"] .faq-answer p { color: #94a3b8; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; gap: 60px; }
    .hero-title { font-size: 3rem; }
    .hero-visual { max-width: 480px; margin: 0 auto; width: 100%; }
    .mentors-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 540px; }
    .outcomes-inner { grid-template-columns: 1fr; gap: 40px; }
    .value-layout { grid-template-columns: 1fr; }
    .value-cta-card { position: static; }
    .steps-grid { grid-template-columns: 1fr; gap: 16px; }
    .step-connector { transform: rotate(90deg); padding: 8px 0; }
    .for-whom-grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .container {
        padding-inline: 16px;
    }

    .hero-container,
    .hero-copy,
    .hero-visual,
    .outcomes-inner,
    .value-layout,
    .value-left,
    .value-cta-card,
    .trial-card,
    .trial-left,
    .trial-right,
    .mentors-grid,
    .mentor-card,
    .mentor-info,
    .faq-columns,
    .faq-col,
    .faq-item,
    .cta-content-revolutionary {
        min-width: 0;
    }

    .section-title-revolutionary { font-size: 2.2rem; }
    .section-header-revolutionary { margin-bottom: 40px; }

    .hero-section { min-height: auto; padding: 64px 0 60px; }
    .hero-title { font-size: 2.4rem; letter-spacing: -1px; }
    .hero-desc { font-size: 1rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn-cta-primary,
    .hero-actions .btn-cta-ghost {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding-inline: 20px;
        text-align: center;
        white-space: normal;
    }
    .hero-trust {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        align-items: start;
    }
    .hero-trust-item { align-items: center; text-align: center; }
    .hero-trust-item strong { font-size: 1rem; }
    .hero-trust-item span {
        font-size: 0.62rem;
        letter-spacing: 0.03em;
        white-space: normal;
    }
    .hero-trust-sep { display: none; }
    .hero-trust-price-wrap { align-items: center; white-space: normal; }
    .hero-trust-price-row {
        justify-content: center;
        flex-wrap: wrap;
        gap: 2px 4px;
        white-space: normal;
    }
    .hv-card { min-width: 0; }
    .hv-editor-meta { min-width: 0; overflow: hidden; }
    .hv-editor-course,
    .hv-editor-lesson {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .hv-editor-body { overflow-x: auto; }

    .pain-grid { grid-template-columns: 1fr; gap: 16px; }
    .pain-solution-inner { flex-direction: column; text-align: center; padding: 24px; }
    .pain-solution-inner p { min-width: 0; }
    .pain-solution-inner .btn-cta-primary {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding-inline: 20px;
        white-space: normal;
    }

    .for-whom-grid { grid-template-columns: 1fr; gap: 24px; }

    .step-connector { padding: 0; }

    .pricing-section { padding: 60px 0; }
    .pricing-main-price { font-size: 3.5rem; }
    .outcomes-section { padding: 60px 0; }
    .outcomes-title { font-size: 1.6rem; }
    .outcomes-list li { font-size: 0.92rem; }
    .outcomes-stat strong { font-size: 1.7rem; }
    .value-section { padding: 60px 0; }
    .value-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0; }
    .value-stats .value-stat {
        min-height: 104px;
        padding: 16px 10px;
        border-top: 0;
        border-left: 0;
    }
    .value-stats .value-stat:nth-child(3),
    .value-stats .value-stat:nth-child(7) { border-left: 1px solid #e2e8f0; }
    .value-stats .value-stat:nth-child(5),
    .value-stats .value-stat:nth-child(7) { border-top: 1px solid #e2e8f0; }
    .value-stat strong {
        min-height: 1.5rem;
        font-size: clamp(1.25rem, 6vw, 1.65rem);
    }
    .value-stat strong.value-stat-compact {
        font-size: clamp(0.8rem, 3.5vw, 1rem);
    }
    .value-stat span { overflow-wrap: anywhere; }
    [data-theme="dark"] .value-stats .value-stat:nth-child(3),
    [data-theme="dark"] .value-stats .value-stat:nth-child(5),
    [data-theme="dark"] .value-stats .value-stat:nth-child(7) {
        border-color: #334155;
    }
    .value-left { padding: 22px 18px; }
    .vpc-grid,
    .vsc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .vsc-block-header { gap: 8px; flex-wrap: wrap; }
    .value-compare { padding: 20px 14px; }
    .value-compare-old { font-size: 1.8rem; }
    .value-compare-new { font-size: 2.2rem; }
    .value-cta-price { font-size: 2.8rem; }
    .value-cta-card { padding: 28px 22px; }
    .value-cta-price-row { flex-wrap: wrap; }

    .trial-card { grid-template-columns: 1fr; gap: 48px; }
    .trial-title { font-size: 2rem; }
    .trial-cta {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        justify-content: center;
        padding-inline: 20px;
        text-align: center;
        white-space: normal;
    }
    .trial-feature { padding: 18px; }
    .trial-feature-text { min-width: 0; }

    .testimonials-grid { grid-template-columns: 1fr; gap: 24px; }

    .course-inline-item { grid-template-columns: 30px 1fr auto; }
    .course-inline-meta { display: none; }

    .mentors-grid { grid-template-columns: 1fr; gap: 24px; }
    .mentor-card { padding: 30px 22px; }
    .mentor-stat { min-width: 0; padding-inline: 5px; }
    .mentor-stat strong,
    .mentor-stat span { overflow-wrap: anywhere; }

    .faq-columns { grid-template-columns: 1fr; }
    .faq-question { font-size: 0.95rem; padding: 20px; }
    .faq-answer { padding: 0 20px 20px; }

    .cta-title-revolutionary { font-size: 2.5rem; }
    .cta-actions-revolutionary { flex-direction: column; align-items: stretch; }
    .cta-actions-revolutionary .btn-cta-primary,
    .cta-actions-revolutionary .btn-cta-ghost {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding-inline: 20px;
        text-align: center;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .container {
        padding-inline: 14px;
    }

    .section-header-revolutionary { margin-bottom: 32px; }
    .section-badge {
        max-width: 100%;
        padding-inline: 14px;
        text-align: left;
    }
    .section-title-revolutionary {
        font-size: clamp(1.85rem, 9vw, 2.2rem);
        overflow-wrap: anywhere;
    }

    .hero-section { padding: 48px 0; }
    .hero-container { gap: 36px; }
    .hero-badge {
        max-width: 100%;
        padding-inline: 14px;
        line-height: 1.35;
        white-space: normal;
    }
    .hero-title {
        font-size: clamp(2rem, 10vw, 2.4rem);
        overflow-wrap: anywhere;
    }
    .hero-actions { margin-bottom: 36px; }
    .hv-card { padding: 16px; }
    .hv-card-editor { padding: 0; }
    .hv-response-badge { display: none; }

    .pain-solution-inner { padding: 20px 16px; }

    .value-section,
    .trial-section,
    .testimonials-section,
    .mentors-section,
    .faq-section,
    .contact-form-section { padding-block: 56px; }
    .value-stats { margin-bottom: 28px; }
    .value-stat { padding-inline: 6px; }
    .vpc-grid,
    .vsc-grid { grid-template-columns: 1fr; }
    .vpc-step { gap: 6px; }
    .vpc-step-num-wrap { width: 30px; }
    .vpc-step-price { font-size: 0.58rem; }
    .value-service-row { align-items: flex-start; }
    .value-service-name { min-width: 0; overflow-wrap: anywhere; }
    .value-compare-old { font-size: 1.55rem; }
    .value-compare-new { font-size: 1.9rem; }
    .value-cta-card { padding: 24px 18px; }
    .value-cta-price { font-size: 2.45rem; }
    .value-cta-discount { padding: 7px 12px; }

    .trial-card { gap: 32px; }
    .trial-feature { gap: 12px; padding: 16px 14px; }

    .mentor-stats { flex-wrap: wrap; row-gap: 16px; }
    .mentor-stat { flex-basis: 33%; }

    .faq-question { padding: 18px 16px; gap: 10px; }
    .faq-answer { padding: 0 16px 18px; }

    .cta-revolutionary { padding: 72px 0; }
    .cta-title-revolutionary {
        font-size: clamp(2rem, 10vw, 2.5rem);
        overflow-wrap: anywhere;
    }
    .cta-description-revolutionary { font-size: 1.05rem; margin-bottom: 36px; }
}

@media (max-width: 360px) {
    .container { padding-inline: 12px; }
    .hero-trust { gap: 5px; }
    .hero-trust-item strong { font-size: 0.9rem; }
    .hero-trust-item span { font-size: 0.56rem; }
    .hero-trust-item .hero-trust-old { font-size: 0.62rem; }
    .value-left,
    .value-cta-card { padding-inline: 14px; }
    .value-cta-price { font-size: 2.2rem; }
    .value-cta-discount { font-size: 0.85rem; }
}
