/* ============================================================
   CASHFL0WMASTER — Hormozi-Style Landing Page
   Design System: Dark Purple + Neon Green
   ============================================================ */

/* --- CUSTOM PROPERTIES --- */
:root {
    --bg-dark: #0d0a1a;
    --bg-section: #22133B;
    --bg-card: #1a0f30;
    --bg-card-hover: #2a1a4a;
    --accent: #00FF00;
    --accent-glow: rgba(0, 255, 0, 0.3);
    --accent-dark: #00cc00;
    --text-white: #ffffff;
    --text-light: #c9c3d9;
    --text-muted: #8a7fa3;
    --highlight-yellow: #ffe14d;
    --danger: #ff4444;
    --success: #00FF00;
    --gradient-hero: linear-gradient(160deg, #22133B 0%, #0d0a1a 50%, #1a0830 100%);
    --gradient-accent: linear-gradient(135deg, #00FF00 0%, #00cc00 100%);
    --gradient-card: linear-gradient(145deg, rgba(34, 19, 59, 0.8) 0%, rgba(13, 10, 26, 0.9) 100%);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(0, 255, 0, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font: 'Montserrat', system-ui, -apple-system, sans-serif;
    --max-width: 1200px;
    --header-height: 48px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

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

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

a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover { opacity: 0.8; }

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

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(0, 255, 0, 0.08);
    border: 1px solid rgba(0, 255, 0, 0.2);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 16px;
    text-align: center;
}

.section-title--left { text-align: left; }

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.highlight {
    color: var(--accent);
    position: relative;
}

.highlight-big {
    color: var(--accent);
    font-size: 1.15em;
    text-shadow: 0 0 30px rgba(0, 255, 0, 0.4);
}

/* --- INLINE SVG ICONS --- */
.icon-inline {
    display: inline-block;
    vertical-align: -2px;
    margin-right: 4px;
}

.schedule-icon svg {
    vertical-align: -3px;
}

/* --- SCROLL REVEAL --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ============================================================
   SECTION 1: URGENCY BAR
   ============================================================ */
.urgency-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 20px;
    background: linear-gradient(90deg, #22133B 0%, #0d0a1a 50%, #22133B 100%);
    border-bottom: 1px solid rgba(0, 255, 0, 0.15);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    backdrop-filter: blur(12px);
    flex-wrap: wrap;
}

.urgency-bar__pulse {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.6); }
    50% { box-shadow: 0 0 0 8px rgba(0, 255, 0, 0); }
}

.urgency-bar__live {
    color: var(--accent);
    font-weight: 800;
}

.urgency-bar__text {
    color: var(--text-light);
}

.urgency-bar__cta {
    color: var(--accent);
    cursor: pointer;
    font-weight: 800;
    transition: text-shadow 0.2s;
}

.urgency-bar__cta:hover {
    text-shadow: 0 0 12px rgba(0, 255, 0, 0.5);
}

/* ============================================================
   SECTION 2: HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    background: var(--gradient-hero);
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 255, 0, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(34, 19, 59, 0.5) 0%, transparent 50%);
    pointer-events: none;
}

.hero__container {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero__badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--accent);
    background: rgba(0, 255, 0, 0.08);
    border: 1px solid rgba(0, 255, 0, 0.25);
    padding: 8px 24px;
    border-radius: 100px;
    margin-bottom: 32px;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.hero__subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 36px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero__schedule {
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.schedule-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 0, 0.08);
    border: 1px solid rgba(0, 255, 0, 0.2);
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 8px;
}

.schedule-times {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.hero__scarcity {
    font-size: 0.85rem;
    color: var(--highlight-yellow);
    margin-top: 16px;
    font-weight: 600;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

/* ============================================================
   CTA BUTTON (Global)
   ============================================================ */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bg-dark);
    background: var(--gradient-accent);
    border: none;
    padding: 18px 48px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(0, 255, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: rotate(25deg);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -60%; }
    100% { left: 120%; }
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 255, 0, 0.45);
}

.cta-button:active {
    transform: translateY(0) scale(0.98);
}

.cta-button--dark {
    color: var(--bg-dark);
}

.cta-button--hero { font-size: 1.2rem; padding: 20px 52px; }

.cta-button--form {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 18px 32px;
}

.cta-button--finale {
    font-size: 1.3rem;
    padding: 22px 56px;
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(0, 255, 0, 0.3); }
    50% { box-shadow: 0 4px 40px rgba(0, 255, 0, 0.6); }
}

/* ============================================================
   SECTION 3 / 5 / 9: CTA STRIPS
   ============================================================ */
.cta-strip {
    padding: 48px 24px;
    background: var(--bg-section);
    text-align: center;
    position: relative;
}

.cta-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.3), transparent);
}

.cta-strip::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.3), transparent);
}

.cta-strip__container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-strip__text {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
}

.cta-strip__heading {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 800;
    text-transform: uppercase;
    max-width: 800px;
}

.cta-strip--dark {
    background: var(--bg-dark);
}

.cta-strip--accent {
    background: linear-gradient(135deg, #22133B 0%, #2a1650 50%, #22133B 100%);
}

.cta-strip .cta-button { animation: none; }

/* ============================================================
   SECTION 4: SOCIAL PROOF GRID
   ============================================================ */
.social-proof {
    padding: 100px 0;
    background: var(--bg-dark);
    text-align: center;
    position: relative;
}

/* Torn paper effect top */
.social-proof::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--bg-section);
    clip-path: polygon(0 0, 100% 0, 100% 30%, 95% 55%, 90% 35%, 85% 60%, 80% 40%, 75% 65%, 70% 35%, 65% 55%, 60% 30%, 55% 60%, 50% 40%, 45% 65%, 40% 35%, 35% 55%, 30% 30%, 25% 60%, 20% 45%, 15% 65%, 10% 35%, 5% 55%, 0 40%);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.proof-card {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.proof-card img {
    width: 100%;
    height: auto;
    display: block;
}

.proof-card--tilt-left { transform: rotate(-1.5deg); }
.proof-card--tilt-right { transform: rotate(1.5deg); }
.proof-card--center { transform: rotate(0deg); }

.proof-card--tilt-left.revealed { transform: rotate(-1.5deg); }
.proof-card--tilt-right.revealed { transform: rotate(1.5deg); }
.proof-card--center.revealed { transform: rotate(0deg); }

.proof-card:hover {
    transform: rotate(0deg) scale(1.03) translateY(-8px) !important;
    box-shadow: 0 16px 48px rgba(0, 255, 0, 0.15), var(--shadow-card);
}

/* ============================================================
   MINI COUNTDOWN (CTA Strip #2)
   ============================================================ */
.mini-countdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.mini-countdown__label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.mini-countdown__timer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mini-countdown__unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mini-countdown__unit span {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent);
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.mini-countdown__unit small {
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.mini-countdown__sep {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 14px;
}

/* ============================================================
   SECTION 6: VALUE PROPOSITION (3 Cards)
   ============================================================ */
.value-prop {
    padding: 100px 0;
    background: var(--bg-section);
    text-align: center;
    position: relative;
}

.value-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.value-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 0, 0.2);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s;
}

.value-card:hover::before { opacity: 1; }

.value-card__number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 255, 0, 0.08);
    position: absolute;
    top: 16px;
    right: 24px;
    line-height: 1;
}

.value-card__icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.value-card__title {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--accent);
}

.value-card__text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================================
   SECTION 7: REGISTRATION FORM
   ============================================================ */
.registration {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
}

.registration::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--bg-section);
    clip-path: polygon(0 0, 100% 0, 100% 30%, 95% 55%, 90% 35%, 85% 60%, 80% 40%, 75% 65%, 70% 35%, 65% 55%, 60% 30%, 55% 60%, 50% 40%, 45% 65%, 40% 35%, 35% 55%, 30% 30%, 25% 60%, 20% 45%, 15% 65%, 10% 35%, 5% 55%, 0 40%);
}

.registration__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.registration__benefits {
    list-style: none;
    margin: 32px 0;
}

.registration__benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: rgba(0, 255, 0, 0.15);
    color: var(--accent);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 800;
}

.registration__schedule-mini {
    font-size: 0.9rem;
    color: var(--text-muted);
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.1);
    padding: 16px;
    border-radius: var(--radius-md);
}

.registration__form-wrapper {
    background: var(--gradient-card);
    border: 1px solid rgba(0, 255, 0, 0.1);
    border-radius: var(--radius-xl);
    padding: 20px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    min-height: 600px;
    overflow: hidden;
}

.registration__form-wrapper iframe {
    min-height: 580px;
}

.form__title {
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 4px;
}

.form__subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 28px;
}

.form__group {
    margin-bottom: 20px;
}

.form__group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.form__group input {
    width: 100%;
    font-family: var(--font);
    font-size: 1rem;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form__group input::placeholder {
    color: var(--text-muted);
}

.form__group input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 255, 0, 0.1);
}

.form__legal {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
}

.form__legal a {
    color: var(--accent);
    text-decoration: underline;
}

/* ============================================================
   SECTION 8: MENTOR
   ============================================================ */
.mentor {
    padding: 100px 0;
    background: var(--bg-section);
    text-align: center;
}

.mentor__card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    align-items: center;
    text-align: left;
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: 48px;
    margin-top: 48px;
}

.mentor__image-area {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mentor__image-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.1) 0%, transparent 70%);
}

.mentor__photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(0, 255, 0, 0.3);
    position: relative;
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.15);
}

.mentor__name {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mentor__role {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 600;
    margin-top: 4px;
}

.mentor__divider {
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
    margin: 20px 0;
}

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

.mentor__names-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.mentor__badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-white);
    background: rgba(0, 255, 0, 0.08);
    border: 1px solid rgba(0, 255, 0, 0.15);
    padding: 6px 14px;
    border-radius: 100px;
}

.mentor__badge small {
    color: var(--accent);
    font-weight: 400;
}

.mentor__closing {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.mentor__closing strong {
    color: var(--accent);
}

/* ============================================================
   SECTION 10: AUDIENCE FILTER
   ============================================================ */
.audience {
    padding: 100px 0;
    background: var(--bg-dark);
    text-align: center;
}

.audience__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 48px auto 0;
}

.audience__col {
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: left;
}

.audience__col--yes {
    background: rgba(0, 255, 0, 0.04);
    border: 1px solid rgba(0, 255, 0, 0.15);
}

.audience__col--no {
    background: rgba(255, 68, 68, 0.04);
    border: 1px solid rgba(255, 68, 68, 0.15);
}

.audience__col-header {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.audience__col-header--yes { color: var(--accent); }
.audience__col-header--no { color: var(--danger); }

.audience__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 800;
}

.audience__col--yes .audience__icon {
    background: rgba(0, 255, 0, 0.15);
}

.audience__col--no .audience__icon {
    background: rgba(255, 68, 68, 0.15);
}

.audience__list {
    list-style: none;
}

.audience__list li {
    font-size: 0.95rem;
    color: var(--text-light);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.audience__col--yes .audience__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 800;
    font-size: 0.8rem;
}

.audience__col--no .audience__list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--danger);
    font-weight: 800;
    font-size: 0.8rem;
}

/* ============================================================
   SECTION 11: IMPACT STATS
   ============================================================ */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #22133B 0%, #1a0f30 100%);
    text-align: center;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.stat-card {
    padding: 32px 16px;
    border-radius: var(--radius-lg);
    background: rgba(0, 255, 0, 0.03);
    border: 1px solid rgba(0, 255, 0, 0.08);
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 255, 0, 0.25);
}

.stat-card__number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent);
    text-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
    line-height: 1;
    display: inline;
}

.stat-card__suffix {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
    display: inline;
}

.stat-card__label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* ============================================================
   SECTION 12: TEXT TESTIMONIALS
   ============================================================ */
.testimonials {
    padding: 100px 0;
    background: var(--bg-dark);
    text-align: center;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: left;
    transition: transform 0.3s, border-color 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 255, 0, 0.15);
}

.testimonial-card__stars {
    color: var(--highlight-yellow);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card__text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card__text mark {
    background: rgba(0, 255, 0, 0.15);
    color: var(--accent);
    padding: 2px 6px;
    border-radius: 4px;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--bg-dark);
}

.testimonial-card__author strong {
    display: block;
    font-size: 0.9rem;
}

.testimonial-card__author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================================
   SECTION 13: FINALE + COUNTDOWN
   ============================================================ */
.finale {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-dark) 100%);
    text-align: center;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 48px auto;
}

.countdown__unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown__number {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--accent);
    text-shadow: 0 0 40px rgba(0, 255, 0, 0.4);
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.15);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    min-width: 90px;
    line-height: 1;
}

.countdown__label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 8px;
}

.countdown__separator {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.finale__schedule {
    margin-bottom: 40px;
    color: var(--text-light);
    font-size: 1rem;
}

.finale__schedule p:first-child {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

/* ============================================================
   SECTION 14: FOOTER
   ============================================================ */
.footer {
    padding: 60px 0 32px;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer__brand {
    text-align: center;
    margin-bottom: 40px;
}

.footer__logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 4px;
}

.footer__tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-style: italic;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.footer__col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer__col a {
    font-size: 0.9rem;
    color: var(--text-light);
}

.footer__social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.footer__social-link:hover {
    background: var(--accent);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.footer__bottom {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
    opacity: 1;
}

/* ============================================================
   RESPONSIVE — TABLET (max-width: 900px)
   ============================================================ */
@media (max-width: 900px) {
    .registration__wrapper {
        grid-template-columns: 1fr;
    }

    .mentor__card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 36px 24px;
    }

    .mentor__photo {
        width: 180px;
        height: 180px;
    }

    .mentor__divider { margin: 20px auto; }
    .mentor__names-grid { justify-content: center; }

    .audience__columns {
        grid-template-columns: 1fr;
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max-width: 640px)
   ============================================================ */
@media (max-width: 640px) {

    /* --- Urgency Bar --- */
    .urgency-bar {
        font-size: 0.65rem;
        padding: 8px 12px;
        gap: 6px;
    }
    .urgency-bar__text { display: none; }

    /* --- Hero --- */
    .hero {
        padding: 80px 16px 48px;
        min-height: auto;
    }
    .hero__badge {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
        padding: 6px 16px;
        margin-bottom: 20px;
    }
    .hero__title {
        font-size: 1.45rem;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    .hero__subtitle {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }
    .hero__schedule { margin-bottom: 24px; }
    .schedule-pill {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
    .schedule-times { font-size: 0.75rem; }
    .hero__scarcity { font-size: 0.8rem; }

    /* --- CTA Buttons — Mobile --- */
    .cta-button {
        font-size: 0.85rem;
        padding: 14px 24px;
        width: 100%;
        justify-content: center;
    }
    .cta-button--hero {
        font-size: 0.95rem;
        padding: 16px 28px;
    }
    .cta-button--finale {
        font-size: 1rem;
        padding: 18px 32px;
    }

    /* --- CTA Strips --- */
    .cta-strip { padding: 32px 16px; }
    .cta-strip__text { font-size: 0.95rem; }
    .cta-strip__heading { font-size: 1.1rem; }

    /* --- Section Common --- */
    .section-container { padding: 0 16px; }
    .section-title { font-size: 1.35rem; }
    .section-subtitle { font-size: 0.95rem; margin-bottom: 32px; }
    .section-label {
        font-size: 0.65rem;
        letter-spacing: 2px;
        padding: 5px 12px;
    }

    /* --- Social Proof Grid --- */
    .social-proof { padding: 70px 0 60px; }
    .social-proof::before { height: 35px; }
    .proof-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }
    .proof-card--tilt-left,
    .proof-card--tilt-right,
    .proof-card--tilt-left.revealed,
    .proof-card--tilt-right.revealed {
        transform: rotate(0deg);
    }

    /* --- Mini Countdown --- */
    .mini-countdown__unit span { font-size: 1.4rem; }
    .mini-countdown__sep { font-size: 1.2rem; margin-bottom: 10px; }

    /* --- Value Proposition Cards --- */
    .value-prop { padding: 60px 0; }
    .value-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 32px;
    }
    .value-card {
        padding: 28px 20px;
    }
    .value-card__icon svg {
        width: 28px;
        height: 28px;
    }
    .value-card__number { font-size: 3rem; }
    .value-card__title { font-size: 0.95rem; }
    .value-card__text { font-size: 0.9rem; }

    /* --- Registration Form (iframe) --- */
    .registration { padding: 70px 0 60px; }
    .registration::before { height: 35px; }
    .registration__wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .section-title--left { text-align: center; }
    .registration__benefits { margin: 20px 0; }
    .registration__benefits li { font-size: 0.9rem; margin-bottom: 12px; }
    .registration__schedule-mini { font-size: 0.8rem; padding: 12px; }
    .registration__form-wrapper {
        padding: 12px;
        border-radius: var(--radius-lg);
        min-height: 500px;
    }
    .registration__form-wrapper iframe {
        min-height: 480px;
    }

    /* --- Mentor --- */
    .mentor { padding: 60px 0; }
    .mentor__card {
        padding: 28px 20px;
        gap: 24px;
    }
    .mentor__photo {
        width: 150px;
        height: 150px;
    }
    .mentor__name {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    .mentor__role { font-size: 0.9rem; }
    .mentor__bio { font-size: 0.85rem; }
    .mentor__badge {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
    .mentor__closing { font-size: 0.85rem; }

    /* --- Audience Filter --- */
    .audience { padding: 60px 0; }
    .audience__columns {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 32px;
    }
    .audience__col { padding: 24px 20px; }
    .audience__col-header { font-size: 0.85rem; }
    .audience__list li { font-size: 0.88rem; padding: 6px 0 6px 20px; }

    /* --- Impact Stats --- */
    .stats { padding: 60px 0; }
    .stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 32px;
    }
    .stat-card { padding: 24px 12px; }
    .stat-card__number { font-size: 2.2rem; }
    .stat-card__suffix { font-size: 1.4rem; }
    .stat-card__label { font-size: 0.65rem; letter-spacing: 1px; }

    /* --- Testimonials --- */
    .testimonials { padding: 60px 0; }
    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 32px;
    }
    .testimonial-card { padding: 24px 20px; }
    .testimonial-card__text { font-size: 0.88rem; }
    .testimonial-card__stars { font-size: 1rem; }

    /* --- Finale Countdown --- */
    .finale { padding: 60px 0; }
    .countdown {
        gap: 8px;
        margin: 32px auto;
    }
    .countdown__number {
        font-size: 1.6rem;
        padding: 10px 12px;
        min-width: 55px;
    }
    .countdown__separator {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }
    .countdown__label {
        font-size: 0.55rem;
        letter-spacing: 1px;
    }
    .finale__schedule { margin-bottom: 28px; }
    .finale__schedule p:first-child { font-size: 1rem; }
    .finale__schedule p:last-child { font-size: 0.85rem; }

    /* --- Footer --- */
    .footer { padding: 40px 0 24px; }
    .footer__logo { font-size: 1.3rem; letter-spacing: 2px; }
    .footer__tagline { font-size: 0.75rem; }
    .footer__links {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 28px;
    }
    .footer__col h4 { font-size: 0.7rem; }
    .footer__col a { font-size: 0.8rem; }
    .footer__social { gap: 12px; margin-bottom: 24px; }
    .footer__social-link { width: 40px; height: 40px; }
    .footer__bottom { font-size: 0.65rem; }

    /* --- WhatsApp Float --- */
    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 16px;
        right: 16px;
    }
    .whatsapp-float svg { width: 22px; height: 22px; }
}
