/* ============================================
   CSS Variables & Reset
   ============================================ */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #10b981;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --text: #f8fafc;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.1);
    --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --glow: 0 0 60px rgba(99, 102, 241, 0.3);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-icon {
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 500px;
}

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

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 320px;
    background: #1a1a2e;
    border-radius: 40px;
    padding: 12px;
    border: 3px solid #2a2a3e;
    box-shadow: var(--glow), 0 40px 80px rgba(0, 0, 0, 0.5);
}

.phone-screen {
    background: #0f0f1a;
    border-radius: 32px;
    padding: 20px 16px;
    min-height: 500px;
}

.telegram-message {
    background: linear-gradient(135deg, #1a3a5c 0%, #1a2742 100%);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 16px;
    border-left: 4px solid var(--secondary);
    animation: slideIn 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.telegram-message.delayed {
    animation-delay: 0.3s;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.telegram-header {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 12px;
    color: #4ade80;
}

.telegram-body {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
}

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

.telegram-link {
    display: block;
    margin-top: 12px;
    color: #60a5fa;
    font-size: 0.875rem;
}

.hero-gradient {
    position: absolute;
    top: 0;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* ============================================
   Problem Section
   ============================================ */
.problem {
    padding: 100px 0;
    background: var(--dark-light);
}

.problem-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.problem h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.strikethrough {
    text-decoration: line-through;
    color: var(--text-muted);
}

.problem-subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 48px;
}

.problem-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: left;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--dark);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.problem-icon {
    font-size: 1.5rem;
}

.problem-item p {
    color: var(--text-muted);
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* ============================================
   Features Section
   ============================================ */
.features {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    padding: 32px;
    background: var(--dark-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--glow);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
}

/* ============================================
   How It Works
   ============================================ */
.how-it-works {
    padding: 100px 0;
    background: var(--dark-light);
}

.steps {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 280px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.step-content p {
    color: var(--text-muted);
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
}

.pricing-card {
    padding: 40px 32px;
    background: var(--dark-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--glow);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--gradient);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.period {
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: var(--dark-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    padding: 32px;
    background: var(--dark);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-style: italic;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
    padding: 100px 0;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--text-muted);
}

/* ============================================
   CTA Section
   ============================================ */
.cta {
    padding: 100px 0;
    background: var(--dark-light);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.cta-note {
    margin-top: 16px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 12px;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--text);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .features-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

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

    .problem-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 40px;
    }

    .form-row {
        flex-direction: column;
    }

    .proof-quotes {
        grid-template-columns: 1fr;
    }

    .savings-callout {
        flex-direction: column;
        gap: 16px;
    }

    .savings-arrow {
        transform: rotate(90deg);
    }

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

/* ============================================
   Savings Callout (Hero)
   ============================================ */
.savings-callout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    padding: 24px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.savings-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.savings-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.savings-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.savings-value.strikethrough {
    text-decoration: line-through;
    color: var(--text-muted);
}

.savings-value.highlight {
    color: var(--secondary);
}

.savings-arrow {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.savings-total .savings-value {
    color: var(--secondary);
    font-size: 2rem;
}

.price-drop {
    color: var(--secondary);
    font-weight: 700;
}

/* ============================================
   Savings Section
   ============================================ */
.savings-section {
    padding: 100px 0;
}

.savings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.savings-card {
    padding: 32px;
    background: var(--dark-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
}

.savings-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.savings-card h3 {
    margin-bottom: 12px;
}

.savings-calc {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.savings-detail {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   Pricing (Single Card)
   ============================================ */
.pricing-single {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.pricing-single .pricing-card {
    max-width: 400px;
    width: 100%;
    transform: none;
}

.pricing-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 8px;
}

.pricing-math {
    padding: 20px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius);
    margin-bottom: 24px;
    text-align: center;
}

.pricing-roi {
    color: var(--secondary);
    font-weight: 600;
    margin-top: 8px;
}

.pricing-addon {
    text-align: center;
    padding: 24px 32px;
    background: var(--dark-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.pricing-addon h4 {
    margin-bottom: 8px;
}

.addon-note {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 8px;
}

/* ============================================
   Social Proof
   ============================================ */
.social-proof {
    padding: 100px 0;
    background: var(--dark-light);
}

.proof-content {
    text-align: center;
}

.proof-content h2 {
    font-size: 2.5rem;
    margin-bottom: 48px;
}

.proof-quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.proof-quote {
    padding: 32px;
    background: var(--dark);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.proof-quote p {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.proof-quote span {
    font-size: 0.875rem;
    color: var(--primary-light);
}

/* ============================================
   Waitlist Section
   ============================================ */
.waitlist {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 100%);
}

.waitlist-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.waitlist h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.waitlist-content>p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.waitlist-form {
    margin-bottom: 24px;
}

.form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.waitlist-form input {
    flex: 1;
    padding: 16px 20px;
    background: var(--dark);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
}

.waitlist-form input:focus {
    outline: none;
    border-color: var(--primary);
}

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

.form-extras {
    margin-bottom: 16px;
}

.form-extras input {
    width: 100%;
    padding: 14px 20px;
}

.waitlist-note {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 32px;
}

.waitlist-count {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.count-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-light);
}

.count-label {
    color: var(--text-muted);
}

/* ============================================
   Scarcity Banner
   ============================================ */
.scarcity-banner {
    padding: 16px 0;
    background: linear-gradient(90deg, var(--primary) 0%, #8b5cf6 100%);
}

.scarcity-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.scarcity-icon {
    font-size: 1.25rem;
}

.scarcity-content p {
    margin: 0;
    font-size: 0.95rem;
}

.spots-left {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 600;
    margin-left: 8px;
}

/* ============================================
   Donation Options
   ============================================ */
.donation-options {
    margin-bottom: 24px;
    text-align: center;
}

.donation-label {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 12px;
}

.donation-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.donation-btn {
    padding: 10px 16px;
    background: var(--dark);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    font-size: 0.875rem;
    transition: var(--transition);
}

.donation-btn:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

/* ============================================
   Legal Disclaimer
   ============================================ */
.disclaimer {
    padding: 40px 0;
    background: var(--dark);
    border-top: 1px solid var(--border);
}

.disclaimer p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   Mobile Menu
   ============================================ */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    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);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--primary-light);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-cta {
        display: none;
    }
}

/* ============================================
   Form Success State
   ============================================ */
.form-success {
    padding: 40px;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--secondary);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    animation: fadeInScale 0.5s ease forwards;
}

.form-success .success-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--secondary);
}

.form-success p {
    color: var(--text-muted);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================
   Button Loading State
   ============================================ */
.btn .spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   Visual Polish - Hover Effects
   ============================================ */
.savings-card {
    transition: var(--transition);
}

.savings-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--glow);
}

.proof-quote {
    transition: var(--transition);
}

.proof-quote:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.step {
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-4px);
}

.step:hover .step-number {
    box-shadow: var(--glow);
}

/* Telegram Message Pulse Effect */
.telegram-message {
    position: relative;
}

.telegram-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    border: 2px solid var(--secondary);
    opacity: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.02);
    }
}

/* Gradient Text Animation */
.gradient-text {
    background-size: 200% 200%;
    animation: gradientFlow 3s ease infinite;
}

@keyframes gradientFlow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Scarcity Banner Shimmer */
.spots-left {
    position: relative;
    overflow: hidden;
}

.spots-left::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% {
        left: 100%;
    }
}

/* Button Hover Enhancement */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

/* Stats Counter Animation */
.stat-value {
    transition: transform 0.3s ease;
}

.stat:hover .stat-value {
    transform: scale(1.1);
    color: var(--primary-light);
}

/* FAQ Smooth Transition */
.faq-answer {
    transition: max-height 0.3s ease, padding 0.3s ease;
}

/* Input Focus Glow */
.waitlist-form input:focus {
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}