/* ============================================
   AI BULGARIA — Brand Design System v2
   Primary: Deep Space #0F172A
   Accent: Electric Indigo #6366F1
   CTA: Spark Amber #F59E0B
   Light mode funnel pages
   ============================================ */

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

:root {
    --primary: #0F172A;
    --accent: #6366F1;
    --accent-light: #4F46E5;
    --accent-dark: #4338CA;
    --cta: #F59E0B;
    --cta-light: #FBBF24;
    --cta-dark: #D97706;
    --bg: #FAFBFF;
    --surface: #F1F5F9;
    --surface-2: #E2E8F0;
    --border: #E2E8F0;
    --border-hover: rgba(99, 102, 241, 0.25);
    --text: #0F172A;
    --text-dim: #475569;
    --text-mid: #64748B;
    --success: #10B981;
    --error: #F43F5E;
    --gold: #F59E0B;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-xs: 6px;
    --radius-pill: 9999px;
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

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

/* ============================================
   GRADIENTS & UTILITY
   ============================================ */
.gradient-text {
    background: linear-gradient(135deg, var(--accent), var(--cta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-green {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   BACKGROUND EFFECTS
   ============================================ */
.bg-glow {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 50% 40% at 50% 0%, rgba(99,102,241,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 80% 50%, rgba(245,158,11,0.04) 0%, transparent 70%);
}

.dot-pattern {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
    background-image: radial-gradient(rgba(15,23,42,0.03) 1px, transparent 1px);
    background-size: 32px 32px;
}

/* ============================================
   SITE HEADER / LOGO
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: rgba(250, 251, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.site-header.has-topbar {
    top: 40px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}

.site-logo img {
    height: 28px;
    width: auto;
}

.site-logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    line-height: 1;
}

.site-logo-text span {
    display: block;
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--text-dim);
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    background: var(--accent);
    text-align: center;
    padding: 10px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.top-bar-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    animation: pulse-bar 2s infinite;
}

@keyframes pulse-bar {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ============================================
   LAYOUT
   ============================================ */
.page {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.container--narrow {
    max-width: 620px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding-top: calc(100px + 2.5rem);
    padding-bottom: 1.5rem;
    text-align: center;
}

.hero.has-topbar {
    padding-top: calc(140px + 2.5rem);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--accent-light);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(99,102,241,0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(99,102,241,0); }
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 8vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-dim);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.hero-sub strong {
    color: var(--text);
    font-weight: 600;
}

/* ============================================
   VIDEO TEASER (blurred, squeeze page)
   ============================================ */
.video-teaser {
    margin-bottom: 1.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.video-teaser-aspect {
    position: relative;
    padding-top: 56.25%;
}

.video-teaser-blur {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #E2E8F0, #CBD5E1);
    display: flex;
    align-items: center;
    justify-content: center;
    filter: blur(4px);
}

.video-blur-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.video-teaser-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(250,251,255,0.5);
}

.video-teaser-text {
    font-size: 0.82rem;
    color: var(--text-dim);
    font-weight: 500;
}

/* ============================================
   VIDEO PLAYER (watch page)
   ============================================ */
.video-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 4px 24px rgba(15,23,42,0.08), 0 0 60px rgba(99,102,241,0.04);
}

.video-aspect {
    position: relative;
    padding-top: 56.25%;
    background: #000;
}

.video-aspect iframe,
.video-aspect video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-poster {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    background: linear-gradient(135deg, #E2E8F0, #CBD5E1);
}

.video-poster:hover .play-ring {
    background: rgba(99,102,241,0.25);
    border-color: var(--accent);
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(99,102,241,0.2);
}

.video-duration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    background: var(--surface);
    border-top: 1px solid var(--border);
    font-size: 0.78rem;
    color: var(--text-dim);
}

/* Shared play button */
.play-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(99,102,241,0.15);
    border: 2px solid rgba(99,102,241,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 0 14px 24px;
    border-color: transparent transparent transparent var(--accent);
    margin-left: 4px;
}

/* ============================================
   OPT-IN CARD
   ============================================ */
.optin-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 16px rgba(15,23,42,0.06);
}

.optin-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.optin-header h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.optin-header p {
    color: var(--text-dim);
    font-size: 0.88rem;
}

.optin-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.input-group input {
    width: 100%;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color var(--transition);
}

.input-group input::placeholder {
    color: var(--text-dim);
    opacity: 0.6;
}

.input-group input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}

.optin-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.7rem;
    color: var(--text-dim);
    opacity: 0.7;
}

.optin-footer svg {
    flex-shrink: 0;
    stroke: var(--text-dim);
}

/* ============================================
   CTA BUTTON
   ============================================ */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 32px;
    background: var(--cta);
    color: var(--bg);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(245,158,11,0.25);
    position: relative;
    overflow: hidden;
}

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

.cta-btn:hover {
    background: var(--cta-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(245,158,11,0.35);
}

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

.cta-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-btn:hover svg {
    transform: translateX(3px);
}

.cta-btn--full {
    width: 100%;
}

.cta-btn--secondary {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    box-shadow: none;
    font-family: var(--font-heading);
}

.cta-btn--secondary:hover {
    border-color: var(--accent);
    background: rgba(99,102,241,0.05);
    box-shadow: none;
}

.cta-sub {
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-top: 10px;
    text-align: center;
}

.cta-sub span { color: var(--accent-light); }

/* ============================================
   PROOF STRIP
   ============================================ */
.proof-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 3rem;
}

.proof-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.25rem 0.75rem;
    text-align: center;
    transition: border-color var(--transition);
}

.proof-item:hover { border-color: var(--border-hover); }

.proof-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 4px;
}

.proof-label {
    font-size: 0.72rem;
    color: var(--text-dim);
    line-height: 1.35;
    font-weight: 500;
}

@media (max-width: 480px) {
    .proof-strip { grid-template-columns: 1fr; }
    .proof-item { display: flex; align-items: center; gap: 16px; text-align: left; padding: 1rem 1.25rem; }
    .proof-num { margin-bottom: 0; font-size: 1.4rem; min-width: 70px; }
}

/* ============================================
   LEARN / CHECKLIST
   ============================================ */
.learn { margin-bottom: 3rem; }

.section-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-light);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    font-family: var(--font-body);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-align: center;
}

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

.check-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    line-height: 1.5;
    transition: all var(--transition);
}

.check-item:hover {
    border-color: var(--border-hover);
    transform: translateX(4px);
}

.check-icon {
    color: var(--accent);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ============================================
   LEARN CARDS (with icons)
   ============================================ */
.learn-card {
    display: flex;
    gap: 14px;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    transition: all var(--transition);
}

.learn-card:hover {
    border-color: var(--border-hover);
    transform: translateX(4px);
}

.learn-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(99,102,241,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.learn-content h3 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.learn-content p {
    font-size: 0.8rem;
    color: var(--text-dim);
    line-height: 1.5;
}

/* ============================================
   ABOUT CARD
   ============================================ */
.about-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 2.5rem;
}

.about-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--cta));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.about-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-dim);
}

.about-text strong { color: var(--text); }

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.about-tag {
    font-size: 0.68rem;
    padding: 4px 10px;
    background: rgba(99,102,241,0.1);
    border-radius: var(--radius-pill);
    color: var(--accent-light);
    font-weight: 500;
}

/* ============================================
   QUOTE
   ============================================ */
.quote-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2.5rem;
    font-size: 0.88rem;
    font-style: italic;
    color: var(--text-dim);
    line-height: 1.6;
}

.quote-card .author {
    font-style: normal;
    font-weight: 600;
    color: var(--text);
    margin-top: 8px;
    font-size: 0.78rem;
}

/* ============================================
   OTO (One Time Offer) CARD
   ============================================ */
.oto-card {
    background: var(--surface);
    border: 2px solid var(--cta);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.oto-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(245,158,11,0.06), transparent 70%);
    pointer-events: none;
}

.oto-badge {
    display: inline-block;
    background: var(--cta);
    color: var(--bg);
    padding: 4px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.oto-card h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
}

.oto-card .oto-desc {
    color: var(--text-dim);
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
}

.oto-pricing {
    margin-bottom: 1.5rem;
    position: relative;
}

.oto-old-price {
    font-size: 1rem;
    color: var(--text-dim);
    text-decoration: line-through;
}

.oto-new-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cta);
    display: block;
    line-height: 1.2;
}

.oto-savings {
    font-size: 0.78rem;
    color: var(--accent-light);
    font-weight: 600;
}

.oto-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 32px;
    background: var(--cta);
    color: var(--bg);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(245,158,11,0.25);
    position: relative;
}

.oto-btn:hover {
    background: var(--cta-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(245,158,11,0.35);
}

.oto-skip {
    display: block;
    margin-top: 12px;
    font-size: 0.75rem;
    color: var(--text-dim);
    text-decoration: underline;
    cursor: pointer;
    opacity: 0.6;
    background: none;
    border: none;
    font-family: inherit;
}

.oto-skip:hover { opacity: 1; }

.oto-features {
    text-align: left;
    margin-bottom: 1.5rem;
    position: relative;
}

.oto-features li {
    list-style: none;
    padding: 6px 0;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.oto-features li::before {
    content: '\2713';
    color: var(--cta);
    font-weight: 700;
}

/* ============================================
   COUNTDOWN TIMER
   ============================================ */
.countdown {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.countdown-unit {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    padding: 12px 16px;
    min-width: 64px;
    text-align: center;
}

.countdown-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.countdown-label {
    font-size: 0.6rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

/* ============================================
   CHALLENGE PAGE SPECIFICS
   ============================================ */
.day-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    transition: all var(--transition);
}

.day-card:hover {
    border-color: var(--border-hover);
}

.day-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--accent);
}

.day-content h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.day-content p {
    font-size: 0.8rem;
    color: var(--text-dim);
    line-height: 1.5;
}

/* STACK */
.stack-card {
    background: var(--surface);
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 2rem;
}

.stack-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
}

.stack-item:last-child { border-bottom: none; }

.stack-item .value {
    color: var(--text-dim);
    text-decoration: line-through;
    font-size: 0.82rem;
}

.stack-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 2px solid var(--accent);
    margin-top: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

.stack-total .value {
    color: var(--accent);
    font-size: 1.3rem;
    text-decoration: none;
}

/* ============================================
   APPLICATION FORM
   ============================================ */
.app-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.app-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    color: var(--text);
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    resize: vertical;
    min-height: 80px;
    transition: border-color var(--transition);
}

.app-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}

.app-form select {
    width: 100%;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    color: var(--text);
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394A3B8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.app-form select:focus {
    border-color: var(--accent);
}

/* ============================================
   GUARANTEE
   ============================================ */
.guarantee {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(99,102,241,0.05);
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    margin-bottom: 2rem;
}

.guarantee-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.guarantee h3 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.guarantee p {
    font-size: 0.8rem;
    color: var(--text-dim);
    line-height: 1.5;
}

/* ============================================
   BOTTOM CTA
   ============================================ */
.bottom-cta {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid var(--border);
}

.bottom-cta h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.bottom-cta p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.faq-q {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-q::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-q::after {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.6;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding-top: 12px;
}

/* ============================================
   SUCCESS STATE
   ============================================ */
.success-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 2.5rem;
}

.success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.success-card h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.success-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.7rem;
    color: var(--text-dim);
    opacity: 0.7;
    font-family: var(--font-body);
}

footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

footer .footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color var(--transition);
}

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

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
}

.legal-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.legal-content .legal-meta {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-content p,
.legal-content li {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.legal-content ul,
.legal-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.4rem;
}

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

.legal-content strong {
    font-weight: 700;
    color: var(--text);
}

.legal-content .legal-callout {
    background: rgba(99, 102, 241, 0.06);
    border-left: 3px solid var(--accent);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-xs);
    margin: 1.25rem 0;
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 480px) {
    .optin-card { padding: 1.5rem; }
    .oto-card { padding: 1.5rem; }
    .stack-card { padding: 1.5rem; }
    .about-card { flex-direction: column; align-items: center; text-align: center; }
    .about-tags { justify-content: center; }
    .site-header { padding: 10px 16px; }
    .site-logo img { height: 24px; }
}
