:root {
    /* Colors */
    --bg-dark: #07070b;
    --bg-card: rgba(25, 25, 35, 0.6);
    --text-primary: #f8f9fa;
    --text-secondary: #a0a0ab;
    --accent-glow: #8a2be2;
    --accent-bright: #00ffff;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Background Glow Effects */
.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
}

.blob-2 {
    top: 40%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-bright) 0%, transparent 70%);
}

/* Typography Helpers */
h1, h2, h3 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(90deg, var(--accent-bright), var(--accent-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 900;
}

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

/* Header */
header {
    padding: 30px 0;
    position: relative;
    z-index: 10;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.logo span {
    color: var(--accent-bright);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(106, 17, 203, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(106, 17, 203, 0.6);
}

.w-full {
    width: 100%;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Glassmorphism */
.glass-panel, .glass-card, .module-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

/* Hero Section */
.hero {
    padding: 80px 0 120px 0;
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.guarantee-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Problem Section */
.problem {
    padding: 60px 0;
}

.problem .glass-panel {
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.problem h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.problem-list {
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 30px auto;
}

.problem-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.shift-text {
    font-size: 1.2rem;
    margin-top: 30px;
    color: var(--accent-bright);
}

/* Solution / Modules Section */
.solution {
    padding: 100px 0;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.module-card {
    padding: 40px 30px;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.module-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.3);
}

.module-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.module-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.module-card p {
    color: var(--text-secondary);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    position: relative;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    padding: 40px;
}

.review {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.user-info h4 {
    margin: 0;
    font-size: 1.1rem;
}

.user-info span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

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

.highlight-border {
    position: relative;
}
.highlight-border::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--accent-bright), var(--accent-glow));
    z-index: -1;
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 50px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.pricing-header h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.price-tag {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.old-price {
    font-size: 1.5rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.new-price {
    font-size: 4rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--accent-bright);
    line-height: 1;
}

.benefits-list {
    list-style: none;
    margin-bottom: 40px;
}

.benefits-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.secure-checkout {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* FAQ */
.faq {
    padding: 80px 0 120px 0;
}

.accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    background: var(--bg-card);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
}

.accordion-header:hover {
    background: rgba(255,255,255,0.02);
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content p {
    padding-bottom: 20px;
    color: var(--text-secondary);
}

/* Footer */
footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 40px 0;
    text-align: center;
}

footer .logo {
    margin-bottom: 20px;
}

footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

/* Animations */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .problem .glass-panel {
        padding: 30px 20px;
    }
    .pricing-card {
        padding: 30px 20px;
    }
    .secure-checkout {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}
