:root {
    --primary: #8b5cf6;
    --primary-dark: #7c3aed;
    --secondary: #06b6d4;
    --accent: #f472b6;
    --dark-bg: #0f172a;
    --darker-bg: #020617;
    --card-bg: rgba(30, 41, 59, 0.7);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --success: #10b981;
    --danger: #ef4444;
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient-main: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    --gradient-text: linear-gradient(to right, #c084fc, #6366f1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography & Utilities */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

.gradient-text-alt {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

.glass {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 3rem;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-main);
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.7);
}

.cta-button.large {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
    width: 100%;
    justify-content: center;
    max-width: 500px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.2), transparent 40%),
        radial-gradient(circle at bottom left, rgba(6, 182, 212, 0.2), transparent 40%);
    text-align: center;
    padding: 4rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(139, 92, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pain Points */
.pain-points {
    padding: 6rem 0;
    background-color: var(--darker-bg);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.pain-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.revelation {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
}

.revelation-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--danger);
    margin-top: 0.5rem;
}

/* Problem Section */
.problem {
    padding: 6rem 0;
}

.not-problem {
    text-align: center;
    margin-top: 2rem;
}

.not-problem h3 {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.problem-box {
    padding: 3rem;
    text-align: center;
    margin: 3rem 0;
}

.formula {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.not-equal {
    color: var(--danger);
    font-size: 2.5rem;
}

.brain-hijack {
    text-align: center;
    margin-top: 4rem;
}

.distraction-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 3rem 0;
    perspective: 1000px;
}

.tag {
    background: rgba(255, 255, 255, 0.03);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.tag:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
    text-shadow: 0 0 8px rgba(139, 92, 246, 0.5);
}

.tag:hover::before {
    transform: translateX(100%);
}

/* Staggered Animation Delays for Organic Feel */
.tag:nth-child(1) {
    animation-delay: 0s;
    border-bottom: 2px solid #ef4444;
}

.tag:nth-child(2) {
    animation-delay: 1s;
    border-bottom: 2px solid #f97316;
}

.tag:nth-child(3) {
    animation-delay: 2s;
    border-bottom: 2px solid #eab308;
}

.tag:nth-child(4) {
    animation-delay: 0.5s;
    border-bottom: 2px solid #22c55e;
}

.tag:nth-child(5) {
    animation-delay: 1.5s;
    border-bottom: 2px solid #06b6d4;
}

.tag:nth-child(6) {
    animation-delay: 2.5s;
    border-bottom: 2px solid #3b82f6;
}

.tag:nth-child(7) {
    animation-delay: 1.2s;
    border-bottom: 2px solid #a855f7;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.danger-text {
    font-size: 3rem;
    color: var(--danger);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Solution Section */
.solution {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--darker-bg), var(--dark-bg));
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.benefit-card {
    padding: 2rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.method-reveal {
    text-align: center;
    margin-top: 5rem;
}

.giant-text {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
}

/* Modules Section */
.modules {
    padding: 6rem 0;
}

.module-list {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.module-card {
    padding: 2rem;
    transition: transform 0.3s ease;
}

.module-card:hover {
    transform: scale(1.02);
    border-color: var(--primary);
}

.module-header {
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.module-number {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.module-title {
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.module-content ul {
    list-style: none;
    margin: 1rem 0;
}

.module-content li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.module-content li::before {
    content: "•";
    color: var(--secondary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.module-result {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    margin-top: 1rem;
}

/* Bonus Section */
.bonus {
    padding: 6rem 0;
    background-color: var(--darker-bg);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.bonus-card {
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--primary);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.1);
}

.bonus-number {
    background: var(--gradient-main);
    color: white;
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.bonus-value {
    color: var(--text-muted);
    text-decoration: line-through;
    margin: 0.5rem 0;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
}

.comparison-box {
    max-width: 600px;
    margin: 0 auto 4rem;
    padding: 2rem;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.comparison-total {
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
    font-size: 1.25rem;
    color: var(--danger);
}

.pricing-reveal {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.price-comparison {
    margin: 2rem 0;
}

.old-price {
    font-size: 1.5rem;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.7;
}

.current-price-box {
    padding: 3rem;
    border: 2px solid var(--primary);
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.current-price-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-main);
}

.installment-times {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.installment-price {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
}

.cash-price {
    font-size: 1.25rem;
    margin: 1rem 0;
}

/* Countdown */
.urgency-box {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    font-weight: 700;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-value {
    font-size: 2.5rem;
    font-family: monospace;
    color: var(--danger);
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

.countdown-separator {
    font-size: 2.5rem;
    color: var(--danger);
    margin-top: -5px;
}

/* Guarantee */
.guarantee {
    padding: 6rem 0;
}

.guarantee-box {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-shield {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

/* Choice Section */
.choice {
    padding: 6rem 0;
    background-color: var(--darker-bg);
    text-align: center;
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.choice-card {
    padding: 2rem;
    border-radius: 16px;
}

.choice-card.wrong {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.choice-card.right {
    border: 2px solid var(--success);
    background: rgba(16, 185, 129, 0.05);
}

.choice-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.choice-card ul {
    list-style: none;
}

.choice-card li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.choice-card.wrong li::before {
    content: "❌";
    position: absolute;
    left: 0;
}

.choice-card.right li::before {
    content: "✅";
    position: absolute;
    left: 0;
}

/* FAQ */
.faq {
    padding: 6rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.faq-item {
    padding: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    margin-top: 1rem;
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
}

.final-box {
    text-align: center;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.final-text {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.final-note {
    margin-top: 2rem;
    font-weight: 600;
}

.limited-spots {
    color: var(--danger);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .giant-text {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-button.large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}