/* ===== CSS VARIABLES ===== */
:root {
    --bg: #000000;
    --bg-card: #0a0a0f;
    --bg-card-hover: #0f0f18;
    --bg-glass: rgba(138, 43, 226, 0.06);
    --bg-glass-border: rgba(138, 43, 226, 0.15);
    --purple: #a855f7;
    --purple-light: #c084fc;
    --purple-dark: #7c3aed;
    --purple-glow: rgba(168, 85, 247, 0.4);
    --purple-glow-soft: rgba(168, 85, 247, 0.15);
    --neon: #bf5af2;
    --neon-bright: #d946ef;
    --text-primary: #f0f0f5;
    --text-secondary: #a0a0b0;
    --text-muted: #6b6b80;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(168, 85, 247, 0.3);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== RESET & BASE ===== */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }

/* ===== CONTAINER ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; }

/* ===== SECTION ===== */
.section { padding: 100px 0; position: relative; }

/* ===== TYPOGRAPHY UTILITIES ===== */
.gradient-text {
    background: linear-gradient(135deg, var(--purple-light), var(--neon-bright), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-label {
    color: var(--purple-light);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 60px;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--purple-dark), var(--purple), var(--neon));
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 0 30px var(--purple-glow), 0 4px 15px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px var(--purple-glow), 0 8px 25px rgba(0,0,0,0.4);
}
.btn-primary:active { transform: scale(0.97); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.btn-outline:hover {
    border-color: var(--purple);
    background: rgba(168, 85, 247, 0.05);
    color: var(--purple-light);
}
.btn-outline:active { transform: scale(0.97); }

.btn-lg { padding: 20px 40px; font-size: 1.05rem; }

.btn-text {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}
.btn-text:hover { color: var(--purple-light); }

.btn-primary-sm {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--purple-dark), var(--purple));
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(168,85,247,0.25);
}
.btn-primary-sm:hover {
    box-shadow: 0 0 35px rgba(168,85,247,0.4);
    transform: translateY(-1px);
}

/* ===== HEADER ===== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.header-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 8px; }
.logo-icon {
    width: 32px;
    height: 32px;
    color: var(--purple);
    filter: drop-shadow(0 0 8px var(--purple-glow));
}
.nav-desktop { display: flex; gap: 32px; }
.nav-desktop a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}
.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--purple);
    transition: var(--transition);
    border-radius: 2px;
}
.nav-desktop a:hover { color: var(--text-primary); }
.nav-desktop a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 16px; }

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
}
.nav-mobile a {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 0;
    transition: var(--transition);
}
.nav-mobile a:hover { color: var(--purple-light); }
.mobile-nav-actions { display: flex; gap: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.nav-mobile.open { display: flex; }

/* ===== HERO ===== */
#hero {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, var(--purple-glow-soft), transparent 70%);
    pointer-events: none;
    animation: pulse-glow 4s ease-in-out infinite alternate;
}
.hero-glow-2 {
    position: absolute;
    top: 100px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(217, 70, 239, 0.08), transparent 70%);
    pointer-events: none;
    animation: pulse-glow 6s ease-in-out infinite alternate-reverse;
}
@keyframes pulse-glow {
    0% { opacity: 0.5; transform: translateX(-50%) scale(0.95); }
    100% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 50px;
    color: var(--purple-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease both;
}
.hero-badge svg { color: var(--purple); }

.hero-title {
    font-size: clamp(2rem, 5.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.1s both;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s both;
}
.hero-integrations-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 60px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

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

/* Integrations Bar */
.integrations-bar {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    animation: fadeInUp 0.8s ease 0.5s both;
}
.integrations-track {
    display: flex;
    gap: 12px;
    animation: scroll-horizontal 25s linear infinite;
    width: max-content;
}
@keyframes scroll-horizontal {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.integration-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.825rem;
    font-weight: 500;
    white-space: nowrap;
    transition: var(--transition);
}
.integration-chip:hover {
    border-color: var(--border-hover);
    background: rgba(168, 85, 247, 0.05);
    color: var(--purple-light);
}
.integration-chip svg { color: var(--purple); opacity: 0.7; }

/* ===== MOCKUP WINDOW ===== */
.mockup-window {
    background: #0c0c14;
    border: 1px solid var(--bg-glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 80px;
    box-shadow: 0 0 60px rgba(168, 85, 247, 0.08), 0 20px 60px rgba(0,0,0,0.5);
    animation: fadeInUp 0.8s ease 0.3s both;
}
.mockup-header {
    padding: 14px 20px;
    background: #080810;
    border-bottom: 1px solid var(--border);
}
.mockup-dots { display: flex; gap: 8px; }
.dot {
    width: 12px; height: 12px;
    border-radius: 50%;
}
.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28c840; }

.mockup-body { display: flex; min-height: 300px; }
.mockup-sidebar {
    width: 220px;
    padding: 20px 16px;
    background: #060610;
    border-right: 1px solid var(--border);
    flex-shrink: 0;
}
.mockup-logo-small { margin-bottom: 20px; }
.mockup-btn-new {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, var(--purple-dark), var(--purple));
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 8px;
    margin-bottom: 24px;
    transition: var(--transition);
}
.mockup-btn-new:hover { box-shadow: 0 0 20px rgba(168,85,247,0.3); }
.mockup-sidebar-menu { display: flex; flex-direction: column; gap: 4px; }
.sidebar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.825rem;
    color: var(--text-secondary);
    transition: var(--transition);
    cursor: pointer;
}
.sidebar-item:hover { background: rgba(255,255,255,0.03); color: var(--text-primary); }
.sidebar-item.active {
    background: rgba(168, 85, 247, 0.1);
    color: var(--purple-light);
    border: 1px solid rgba(168, 85, 247, 0.15);
}

.mockup-content { flex: 1; padding: 28px; }
.mockup-content-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.mockup-content-subtitle { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 24px; }
.mockup-tabs { display: flex; gap: 4px; margin-bottom: 24px; flex-wrap: wrap; }
.mockup-tab {
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: transparent;
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
}
.mockup-tab.active {
    background: rgba(168, 85, 247, 0.12);
    color: var(--purple-light);
    border-color: rgba(168, 85, 247, 0.3);
}
.mockup-tab:hover:not(.active) { border-color: var(--border-hover); }

.mockup-placeholder { padding: 20px; }
.mockup-placeholder-lines { display: flex; flex-direction: column; gap: 12px; }
.placeholder-line {
    height: 10px;
    background: rgba(255,255,255,0.04);
    border-radius: 4px;
}
.w80 { width: 80%; }
.w60 { width: 60%; }
.w90 { width: 90%; }
.w45 { width: 45%; }

/* ===== STEPS ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-dark), var(--purple), var(--neon-bright));
    opacity: 0;
    transition: var(--transition);
}
.step-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.08);
}
.step-card:hover::before { opacity: 1; }
.step-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--purple), var(--neon-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}
.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.step-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== MODULES ===== */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.module-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.module-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(168,85,247,0.08), transparent 60%);
    opacity: 0;
    transition: var(--transition);
}
.module-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}
.module-card:hover::after { opacity: 1; }
.module-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 16px;
    color: var(--purple);
    position: relative;
    z-index: 1;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.15);
}
.module-badge {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--purple-light);
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.module-title {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}
.module-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* ===== PRICING ===== */
.stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple-light), var(--neon-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

.pricing-title { margin-bottom: 50px; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto 50px;
    align-items: start;
}
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    position: relative;
    transition: var(--transition);
}
.pricing-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}
.pricing-card.popular {
    border-color: var(--purple);
    box-shadow: 0 0 50px rgba(168, 85, 247, 0.12), 0 20px 60px rgba(0,0,0,0.3);
    background: linear-gradient(180deg, rgba(168,85,247,0.06) 0%, var(--bg-card) 40%);
}
.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 24px;
    background: linear-gradient(135deg, var(--purple-dark), var(--purple));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 20px rgba(168,85,247,0.4);
}
.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.plan-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 28px;
}
.price-currency { font-size: 1.1rem; font-weight: 600; color: var(--text-muted); }
.price-value {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--text-primary), var(--purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.price-period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}
.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.btn-pricing {
    display: block;
    width: 100%;
    padding: 16px;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    border: 1px solid var(--border);
    color: var(--text-primary);
    background: transparent;
    transition: var(--transition);
}
.btn-pricing:hover {
    border-color: var(--purple);
    background: rgba(168,85,247,0.06);
    color: var(--purple-light);
}
.btn-pricing-popular {
    display: block;
    width: 100%;
    padding: 16px;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--purple-dark), var(--purple), var(--neon));
    color: white;
    transition: var(--transition);
    box-shadow: 0 0 30px rgba(168,85,247,0.3);
}
.btn-pricing-popular:hover {
    box-shadow: 0 0 50px rgba(168,85,247,0.5);
    transform: translateY(-2px);
}

/* Urgency Bar */
.urgency-bar {
    background: var(--bg-card);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    max-width: 600px;
    margin: 0 auto;
}
.urgency-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 14px;
}
.urgency-progress-bg {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}
.urgency-progress-fill {
    width: 98.6%;
    height: 100%;
    background: linear-gradient(90deg, var(--purple-dark), var(--purple), var(--neon-bright));
    border-radius: 10px;
    box-shadow: 0 0 12px var(--purple-glow);
    animation: progress-pulse 2s ease-in-out infinite alternate;
}
@keyframes progress-pulse {
    0% { box-shadow: 0 0 8px var(--purple-glow); }
    100% { box-shadow: 0 0 20px var(--purple-glow); }
}
.urgency-count {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: right;
}

/* ===== FAQ ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover, .faq-item.open { border-color: var(--border-hover); }
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    transition: var(--transition);
}
.faq-question:hover { color: var(--purple-light); }
.faq-chevron {
    color: var(--text-muted);
    transition: var(--transition);
    flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--purple); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
    padding: 0 24px;
}
.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}
.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== GUARANTEE ===== */
.guarantee-card {
    text-align: center;
    padding: 60px 40px;
    background: var(--bg-card);
    border: 1px solid var(--bg-glass-border);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}
.guarantee-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1), transparent 70%);
    pointer-events: none;
}
.guarantee-icon { margin-bottom: 24px; position: relative; z-index: 1; }
.guarantee-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.guarantee-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ===== CTA FINAL ===== */
#cta-final {
    text-align: center;
    position: relative;
    overflow: hidden;
}
.final-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(168, 85, 247, 0.12), transparent 70%);
    pointer-events: none;
    animation: pulse-glow 4s ease-in-out infinite alternate;
}
.final-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.final-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

/* ===== FOOTER ===== */
#footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-icon-sm {
    width: 24px;
    height: 24px;
}
.footer-brand {
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--purple-light), var(--neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.footer-links {
    display: flex;
    gap: 12px;
    font-size: 0.8rem;
}
.footer-links a {
    color: var(--text-muted);
    transition: var(--transition);
}
.footer-links a:hover { color: var(--purple-light); }
.footer-divider { color: var(--text-muted); }

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-desktop { display: none; }
    .header-actions { display: none; }
    .mobile-menu-btn { display: flex; }

    #hero { padding: 120px 0 60px; }
    .hero-title { font-size: clamp(1.75rem, 6vw, 2.5rem); }
    .hero-buttons { flex-direction: column; align-items: center; }

    .steps-grid,
    .modules-grid { grid-template-columns: 1fr; }

    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }

    .stats-bar { gap: 20px; }
    .stat-divider { display: none; }

    .mockup-sidebar { display: none; }
    .mockup-tabs { flex-wrap: wrap; }

    .guarantee-card { padding: 40px 24px; }

    .urgency-bar { padding: 20px; }

    .section { padding: 70px 0; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 1.6rem; }
    .hero-badge { font-size: 0.65rem; padding: 8px 14px; }
    .section-title { font-size: 1.4rem; }
    .pricing-card { padding: 32px 24px; }
    .price-value { font-size: 2.5rem; }
}
