/* ═══════════════════════════════════════════════════
   MEGAN INNER CIRCLE — Creator Academy
   Main Stylesheet
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,600&display=swap');

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

:root {
    --bg: #0a0712;
    --bg2: #1a1030;
    --bg3: #1f1636;
    --purple: #a855f7;
    --pink: #ec4899;
    --red: #f43f5e;
    --border: rgba(196,181,253,.16);
    --text: #e5e7eb;
    --muted: #9ca3af;
    --grad: linear-gradient(90deg, #a855f7, #ec4899, #f43f5e);
    --grad-diag: linear-gradient(135deg, #a855f7, #ec4899, #f43f5e);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100vw;
}

/* ─── NOISE TEXTURE OVERLAY ─── */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
}

h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

.kicker {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 1.25rem;
    display: block;
}

.gradient-text {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.body-text { color: #d1d5db; }
.muted { color: var(--muted); }

/* ─── LAYOUT ─── */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

section { padding: 7rem 0; position: relative; overflow: hidden; }

.container > * { min-width: 0; }

/* ─── DIVIDER ─── */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168,85,247,.3), rgba(236,72,153,.3), transparent);
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.25rem;
    border: none;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    background: var(--grad);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 0 40px rgba(236,72,153,.35), 0 4px 20px rgba(0,0,0,.4);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.15) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.btn:hover::before { transform: translateX(100%); }

.btn:hover {
    box-shadow: 0 0 70px rgba(236,72,153,.6), 0 0 120px rgba(168,85,247,.3), 0 8px 30px rgba(0,0,0,.5);
    transform: translateY(-3px) scale(1.02);
}

.btn:active { transform: translateY(-1px) scale(1); }

.btn-lg {
    padding: 1.25rem 3rem;
    font-size: 1.05rem;
    border-radius: 100px;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 40px rgba(236,72,153,.35), 0 4px 20px rgba(0,0,0,.4); }
    50% { box-shadow: 0 0 80px rgba(236,72,153,.7), 0 0 140px rgba(168,85,247,.4), 0 8px 30px rgba(0,0,0,.5); }
}

.btn-pulse { animation: pulse-glow 2.5s ease-in-out infinite; }

.btn-outline {
    background: transparent;
    border: 1px solid rgba(168,85,247,.4);
    color: var(--purple);
    box-shadow: none;
}

.btn-outline:hover {
    background: rgba(168,85,247,.1);
    border-color: var(--purple);
    box-shadow: 0 0 20px rgba(168,85,247,.3);
}

/* ─── GLASS CARDS ─── */
.glass {
    background: rgba(26,16,48,.6);
    border: 1px solid var(--border);
    border-radius: 20px;
    backdrop-filter: blur(12px);
}

.glass-hover { transition: all 0.3s ease; }

.glass-hover:hover {
    border-color: rgba(236,72,153,.35);
    box-shadow: 0 0 30px rgba(168,85,247,.15), 0 20px 40px rgba(0,0,0,.3);
    transform: translateY(-6px);
}

/* ─── SCROLL REVEAL ─── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 65% 50%, rgba(168,85,247,.14) 0%, transparent 65%),
                radial-gradient(ellipse 40% 40% at 75% 25%, rgba(236,72,153,.1) 0%, transparent 60%),
                var(--bg);
    z-index: 0;
}

.hero-diagonal {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(168,85,247,.025) 40px,
        rgba(168,85,247,.025) 41px
    );
    z-index: 0;
}

/* Two-column grid inside the container */
#hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 100vh;
    gap: 0;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    z-index: 2;
}

.hero-left {
    padding: 7rem 3rem 7rem 0;
    z-index: 2;
    position: relative;
}

.hero-left h1 {
    margin-bottom: 1.5rem;
    font-size: clamp(3.2rem, 4.8vw, 5.2rem);
    line-height: 1.05;
}

.hero-subheading {
    font-size: 1.1rem;
    color: #c4b5fd;
    max-width: 480px;
    margin-bottom: 2.5rem;
    line-height: 1.85;
    border-left: 3px solid var(--pink);
    padding-left: 1.25rem;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
}

.trust-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--muted);
    font-weight: 500;
}

.trust-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--grad);
    flex-shrink: 0;
}

.hero-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.badge {
    padding: 0.45rem 1.1rem;
    border: 1px solid rgba(168,85,247,.3);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #c4b5fd;
    background: rgba(168,85,247,.08);
}

/* Right side: full-height image panel */
.hero-right {
    position: relative;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.hero-image-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Fade left edge into background so it blends with text column */
.hero-image-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--bg) 0%, rgba(10,7,18,.4) 25%, transparent 55%);
    z-index: 2;
    pointer-events: none;
}

/* Fade bottom edge */
.hero-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg) 0%, transparent 20%);
    z-index: 2;
    pointer-events: none;
}

/* ═══════════════════════════════════════
   PROBLEM
═══════════════════════════════════════ */
#problem { background: var(--bg2); padding: 5rem 0; }

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.problem-image {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 60px rgba(168,85,247,.2);
    aspect-ratio: 4/3;
}

.problem-image img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 20px; }

.problem-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid rgba(168,85,247,.3);
}

.pain-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.pain-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(31,22,54,.5);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.pain-item:hover {
    border-color: rgba(244,63,94,.3);
    background: rgba(244,63,94,.05);
    transform: translateX(6px);
}

.pain-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }

.pain-text { color: #e5e7eb; font-size: 0.95rem; font-weight: 500; }

.problem-closing {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(168,85,247,.1), rgba(236,72,153,.08));
    border: 1px solid rgba(236,72,153,.2);
    border-radius: 14px;
    font-size: 1rem;
    color: #e5e7eb;
    font-style: italic;
    line-height: 1.7;
}

/* ═══════════════════════════════════════
   SHIFT
═══════════════════════════════════════ */
#shift { text-align: center; position: relative; overflow: hidden; }

.shift-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(168,85,247,.1) 0%, transparent 70%);
    z-index: 0;
}

.shift-intro {
    max-width: 680px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    color: #c4b5fd;
    line-height: 1.8;
}

.trust-ladder {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: 3rem 0;
    flex-wrap: nowrap;
}

.ladder-step {
    flex: 1;
    max-width: 200px;
    padding: 2rem 1.5rem;
    background: rgba(26,16,48,.6);
    border: 1px solid var(--border);
    border-radius: 0;
    text-align: center;
    position: relative;
}

.ladder-step:first-child { border-radius: 16px 0 0 16px; }
.ladder-step:last-child { border-radius: 0 16px 16px 0; }

.ladder-step.active {
    background: linear-gradient(135deg, rgba(168,85,247,.2), rgba(236,72,153,.15));
    border-color: rgba(236,72,153,.4);
    box-shadow: 0 0 40px rgba(236,72,153,.2);
    z-index: 1;
}

.ladder-step-num {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.ladder-step-icon {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    display: block;
}

.ladder-step-label {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.ladder-step.active .ladder-step-label {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ladder-arrow-wrap { color: rgba(168,85,247,.5); font-size: 1.2rem; padding: 0 0.25rem; }

.stat-callout {
    max-width: 700px;
    margin: 3rem auto 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(168,85,247,.12), rgba(236,72,153,.08));
    border: 1px solid rgba(236,72,153,.25);
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(168,85,247,.1);
}

.stat-callout p { font-size: 1.2rem; color: #e5e7eb; line-height: 1.7; }

.stat-callout strong {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shift-image-row {
    margin-top: 4rem;
    border-radius: 20px;
    overflow: hidden;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 80px rgba(168,85,247,.2);
}

.shift-image-row img { width: 100%; display: block; }

/* ═══════════════════════════════════════
   MENTOR
═══════════════════════════════════════ */
#mentor { background: var(--bg2); }

.mentor-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: center;
}

.mentor-image-wrap { position: relative; }

.mentor-image-wrap img {
    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 0 80px rgba(168,85,247,.25);
}

.mentor-image-wrap::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: var(--grad);
    z-index: -1;
    opacity: 0.5;
}

.mentor-name-tag {
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26,16,48,.95);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 0.75rem 2rem;
    white-space: nowrap;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 30px rgba(168,85,247,.2);
}

.mentor-name-tag span {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1rem;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mentor-content { padding-top: 1rem; }

.mentor-bio {
    font-size: 1.05rem;
    color: #c4b5fd;
    line-height: 1.9;
    margin: 1.5rem 0 2rem;
}

.mentor-quote {
    padding: 2rem;
    background: rgba(31,22,54,.5);
    border-left: 4px solid var(--purple);
    border-radius: 0 14px 14px 0;
    font-size: 1.05rem;
    font-style: italic;
    color: #e5e7eb;
    line-height: 1.8;
    position: relative;
}

.mentor-quote::before {
    content: '"';
    font-family: 'Fraunces', serif;
    font-size: 5rem;
    color: rgba(168,85,247,.2);
    position: absolute;
    top: -1rem;
    left: 1rem;
    line-height: 1;
}

/* ═══════════════════════════════════════
   CURRICULUM
═══════════════════════════════════════ */
#curriculum { position: relative; overflow: hidden; }

.curriculum-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
    min-width: 0;
}

.curriculum-header > * { min-width: 0; }

.curriculum-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(168,85,247,.2);
    max-width: 100%;
    min-width: 0;
}

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

.curriculum-stats { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }

.stat-box {
    text-align: center;
    padding: 1.25rem 0.75rem;
    background: rgba(26,16,48,.6);
    border: 1px solid var(--border);
    border-radius: 14px;
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
}

.stat-num {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.6rem, 5vw, 2.5rem);
    font-weight: 700;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.module-list { display: flex; flex-direction: column; gap: 1rem; }

.module-card {
    background: rgba(26,16,48,.5);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.module-card.active { border-color: rgba(168,85,247,.4); }

.module-header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background 0.3s ease;
}

.module-header:hover { background: rgba(168,85,247,.06); }

.module-num {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--purple);
    text-transform: uppercase;
    white-space: nowrap;
}

.module-title { flex: 1; font-weight: 600; color: #e5e7eb; font-size: 0.95rem; }

.module-meta { font-size: 0.8rem; color: var(--muted); white-space: nowrap; }

.module-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(168,85,247,.15);
    border: 1px solid rgba(168,85,247,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.module-card.active .module-toggle { transform: rotate(45deg); background: rgba(168,85,247,.3); }

.module-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(.4,0,.2,1);
}

.module-card.active .module-body { max-height: 600px; }

.module-lessons {
    padding: 0 2rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.lesson-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    font-size: 0.88rem;
    color: #c4b5fd;
    transition: background 0.2s ease;
}

.lesson-item:hover { background: rgba(168,85,247,.08); }

.lesson-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--grad);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════
   BONUSES
═══════════════════════════════════════ */
#bonuses { background: var(--bg2); text-align: center; }

.bonuses-hero-image {
    max-width: 900px;
    margin: 3rem auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 80px rgba(168,85,247,.25);
}

.bonuses-hero-image img { width: 100%; display: block; }

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.bonus-card {
    padding: 2rem;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad);
}

.bonus-tag {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    background: var(--grad);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.bonus-title {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.bonus-desc { font-size: 0.9rem; color: #c4b5fd; line-height: 1.7; }

.bonus-card.featured {
    background: linear-gradient(135deg, rgba(168,85,247,.15), rgba(236,72,153,.1));
    border-color: rgba(236,72,153,.3);
    box-shadow: 0 0 40px rgba(168,85,247,.15);
}

.bonus-value-tag {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    padding: 0.3rem 0.85rem;
    background: rgba(168,85,247,.15);
    border: 1px solid rgba(168,85,247,.35);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #c4b5fd;
    letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════
   SOCIAL PROOF
═══════════════════════════════════════ */
#proof { position: relative; }

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

.proof-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.15; }

.proof-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--bg) 0%, transparent 20%, transparent 80%, var(--bg) 100%),
                linear-gradient(to right, var(--bg) 0%, transparent 20%, transparent 80%, var(--bg) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial-card { padding: 2rem; position: relative; }

.testimonial-stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }

.star { color: var(--pink); font-size: 0.9rem; }

.testimonial-quote {
    font-size: 0.95rem;
    color: #e5e7eb;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 1rem; }

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
}

.author-name { font-weight: 700; color: #fff; font-size: 0.95rem; }
.author-niche { font-size: 0.8rem; color: var(--muted); }

/* ═══════════════════════════════════════
   CHECKOUT
═══════════════════════════════════════ */
#checkout { position: relative; overflow: hidden; }

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

.checkout-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }

.checkout-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--bg) 0%, rgba(10,7,18,.7) 50%, var(--bg) 100%);
}

.checkout-card {
    max-width: 760px;
    margin: 0 auto;
    padding: 3.5rem;
    background: rgba(26,16,48,.85);
    border: 1px solid rgba(236,72,153,.3);
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 0 80px rgba(168,85,247,.25), 0 0 160px rgba(236,72,153,.1);
    backdrop-filter: blur(20px);
}

.value-table { margin: 2.5rem 0; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); }

.value-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.value-row:last-child { border-bottom: none; }
.value-row-label { color: #c4b5fd; }
.value-row-amount { font-weight: 600; color: #e5e7eb; }

.value-total-row { background: rgba(168,85,247,.1); padding: 1.25rem 1.5rem; }
.value-total-label { font-weight: 700; color: #fff; }

.value-total-amount {
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--purple);
}

.price-reveal { margin: 2.5rem 0; }

.price-was { font-size: 1.1rem; color: var(--muted); text-decoration: line-through; margin-bottom: 0.5rem; }

.price-now {
    font-family: 'Fraunces', serif;
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.price-terms { font-size: 1rem; color: #c4b5fd; }

.checkout-cta { margin: 2rem 0 1.5rem; }

.payment-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.payment-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--muted); }

/* ═══════════════════════════════════════
   GUARANTEE
═══════════════════════════════════════ */
#guarantee { background: var(--bg2); }

.guarantee-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-badge-wrap { width: 180px; flex-shrink: 0; }

.guarantee-badge-wrap img { width: 100%; filter: drop-shadow(0 0 30px rgba(168,85,247,.5)); }

.guarantee-content h2 { margin-bottom: 1.5rem; }

.guarantee-copy { font-size: 1.05rem; color: #c4b5fd; line-height: 1.9; }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
#faq { position: relative; }

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(26,16,48,.5);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.active { border-color: rgba(168,85,247,.35); }

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: #e5e7eb;
    font-size: 0.95rem;
    transition: background 0.3s ease;
}

.faq-question:hover { background: rgba(168,85,247,.06); }

.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(168,85,247,.15);
    border: 1px solid rgba(168,85,247,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle { transform: rotate(45deg); background: rgba(168,85,247,.3); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(.4,0,.2,1);
}

.faq-item.active .faq-answer { max-height: 400px; }

.faq-answer-body {
    padding: 0 2rem 1.5rem;
    font-size: 0.93rem;
    color: #c4b5fd;
    line-height: 1.8;
}

/* ═══════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════ */
#final-cta { text-align: center; position: relative; overflow: hidden; }

.final-cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(168,85,247,.15) 0%, transparent 70%);
    z-index: 0;
}

.final-closing {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    color: #e5e7eb;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.5;
}

.final-guarantee { margin-top: 1.5rem; font-size: 0.88rem; color: var(--muted); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
    background: rgba(5,3,10,1);
    border-top: 1px solid var(--border);
    padding: 3rem 0;
    text-align: center;
}

.footer-logo { width: 48px; height: 48px; margin: 0 auto 1.5rem; filter: drop-shadow(0 0 10px rgba(168,85,247,.5)); }

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.88rem; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--purple); }

.footer-disclaimer {
    max-width: 700px;
    margin: 0 auto;
    font-size: 0.8rem;
    color: rgba(156,163,175,.5);
    line-height: 1.7;
}

/* ═══════════════════════════════════════
   STICKY BAR
═══════════════════════════════════════ */
.sticky-bar {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: rgba(15,8,24,.95);
    border-top: 1px solid rgba(168,85,247,.3);
    padding: 0.875rem 0;
    z-index: 9998;
    backdrop-filter: blur(20px);
    transition: bottom 0.4s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 -10px 40px rgba(168,85,247,.15);
}

.sticky-bar.show { bottom: 0; }

.sticky-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.sticky-info { display: flex; align-items: center; gap: 1.5rem; }

.sticky-name { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1rem; color: #fff; }
.sticky-price { font-size: 0.9rem; color: var(--muted); }

.sticky-btn { padding: 0.7rem 1.75rem; font-size: 0.88rem; }

/* ═══════════════════════════════════════
   TOAST
═══════════════════════════════════════ */
.toast {
    position: fixed;
    bottom: 90px;
    right: 24px;
    background: rgba(26,16,48,.98);
    color: #e5e7eb;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(168,85,247,.3);
    z-index: 10000;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 0 30px rgba(168,85,247,.2);
    backdrop-filter: blur(12px);
    transform: translateX(400px);
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}

.toast.show { transform: translateX(0); }

.toast-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 900px) {
    /* ── HERO ── */
    #hero .container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
    .hero-left {
        padding: 5rem 0 2rem;
        order: 1;
    }
    .hero-right {
        order: 2;
        height: 65vw;
        max-height: 400px;
        width: 100%;
    }
    .hero-image-wrap::before {
        background: linear-gradient(to bottom, transparent 60%, var(--bg) 100%),
                    linear-gradient(to right, var(--bg) 0%, transparent 30%);
    }

    /* ── PROBLEM: imagem abaixo do título ── */
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .problem-image {
        order: 2;
        aspect-ratio: 16/9;
    }
    .problem-content {
        order: 1;
    }

    /* ── SHIFT: trust ladder em grid 2x2 com setas ── */
    .trust-ladder {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        grid-template-rows: auto auto;
        gap: 0.5rem 0;
        justify-items: stretch;
        align-items: center;
        margin: 2rem 0;
    }
    .ladder-step {
        flex: unset;
        min-width: unset;
        max-width: unset;
        border-radius: 12px !important;
        padding: 1.25rem 0.75rem;
        text-align: center;
    }
    /* Posicionar os 4 steps e 3 setas no grid */
    .trust-ladder .ladder-step:nth-child(1) { grid-column: 1; grid-row: 1; }
    .trust-ladder .ladder-arrow-wrap:nth-child(2) { grid-column: 2; grid-row: 1; font-size: 0.8rem; padding: 0 0.25rem; }
    .trust-ladder .ladder-step:nth-child(3) { grid-column: 3; grid-row: 1; }
    /* Seta de linha 1 para linha 2: escondida, usamos seta abaixo */
    .trust-ladder .ladder-arrow-wrap:nth-child(4) { display: none; }
    .trust-ladder .ladder-step:nth-child(5) { grid-column: 1; grid-row: 2; }
    .trust-ladder .ladder-arrow-wrap:nth-child(6) { grid-column: 2; grid-row: 2; font-size: 0.8rem; padding: 0 0.25rem; }
    .trust-ladder .ladder-step:nth-child(7) { grid-column: 3; grid-row: 2; }
    .ladder-step-icon { font-size: 1.4rem; }
    .ladder-step-label { font-size: 0.88rem; }

    /* ── MENTOR: imagem abaixo do título ── */
    .mentor-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .mentor-image-wrap {
        order: 2;
        max-width: 360px;
        margin: 0 auto;
    }
    .mentor-content {
        order: 1;
    }

    /* ── CURRICULUM ── */
    .curriculum-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .curriculum-stats { gap: 1rem; }

    /* ── MODULE HEADER: evitar quebra de linha ruim ── */
    .module-header {
        padding: 1.25rem 1rem;
        gap: 0.75rem;
        align-items: flex-start;
    }
    .module-num {
        font-size: 0.65rem;
        white-space: nowrap;
        padding-top: 0.15rem;
    }
    .module-title {
        font-size: 0.9rem;
        line-height: 1.4;
        font-weight: 600;
    }
    .module-meta { display: none; }
    .module-toggle { flex-shrink: 0; margin-top: 0.1rem; }
    .module-lessons { grid-template-columns: 1fr; padding: 0 1rem 1.25rem; }

    /* ── BONUSES & TESTIMONIALS ── */
    .bonus-grid, .testimonials-grid { grid-template-columns: 1fr; }

    /* ── GUARANTEE ── */
    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .guarantee-badge-wrap { margin: 0 auto; }

    /* ── CHECKOUT ── */
    .checkout-card { padding: 2rem 1.5rem; }
    .price-now { font-size: 4rem; }

    /* ── STICKY BAR ── */
    .sticky-inner {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 0.75rem;
    }
    .sticky-info {
        flex-direction: column;
        gap: 0.1rem;
        align-items: flex-start;
        flex: 1;
    }
    .sticky-name { font-size: 0.88rem; }
    .sticky-price { font-size: 0.78rem; }
    .sticky-btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.82rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
}

@media (max-width: 600px) {
    section { padding: 4rem 0; }
    .hero-left { padding: 4rem 0 1.5rem; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.75rem; }
    .hero-badges { display: none; }
    .trust-row { flex-direction: column; gap: 0.75rem; }

    /* Curriculum image não vaza */
    .curriculum-image {
        margin: 0;
        border-radius: 14px;
        width: 100%;
        overflow: hidden;
    }
    .curriculum-image img { border-radius: 14px; }

    /* Checkout card sem padding lateral excessivo */
    .checkout-card { padding: 1.75rem 1.25rem; }
    .value-table { font-size: 0.85rem; }

    /* Sticky bar compacta */
    .sticky-bar { padding: 0.75rem 0; }
}
