* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary: #ff0080;
    --primary-dark: #cc0066;
    --primary-light: #ff3399;
    --secondary: #00d9ff;
    --secondary-dark: #00b8d4;
    --accent: #ffeb3b;
    --dark: #0a0e27;
    --dark-light: #151b3d;
    --dark-lighter: #1f2847;
    --text: #ffffff;
    --text-secondary: #e0e7ff;
    --text-muted: #a5b4fc;
    --gradient: linear-gradient(135deg, #ff0080 0%, #ff8c00 50%, #ffeb3b 100%);
    --gradient-alt: linear-gradient(135deg, #00d9ff 0%, #7b2ff7 100%);
    --gradient-dark: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
    --shadow: 0 20px 60px rgba(255, 0, 128, 0.4);
    --shadow-sm: 0 4px 20px rgba(0, 217, 255, 0.3);
    --glow: 0 0 30px rgba(255, 0, 128, 0.6);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 0, 128, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 217, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 235, 59, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    position: relative;
    padding: 80px 20px 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
    background: rgba(10, 14, 39, 0.85);
    backdrop-filter: blur(20px);
    padding: 60px 40px;
    border-radius: 30px;
    border: 2px solid rgba(255, 0, 128, 0.3);
}

.brand {
    margin-bottom: 40px;
}

.logo-img {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 0, 128, 0.5));
}

.logo {
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    filter: drop-shadow(0 0 20px rgba(255, 0, 128, 0.5));
}

.hero-text {
    margin-bottom: 48px;
}

.headline {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.6);
}

.highlight {
    color: #fff;
    position: relative;
    text-shadow: 
        0 0 20px rgba(255, 0, 128, 0.8),
        0 0 40px rgba(255, 140, 0, 0.6),
        0 4px 20px rgba(0, 0, 0, 0.8);
}

.subheadline {
    font-size: 22px;
    color: #fff;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8), 0 1px 5px rgba(0, 0, 0, 0.6);
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: rgba(10, 14, 39, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 217, 255, 0.4);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow);
    border-color: var(--secondary);
    background: rgba(10, 14, 39, 0.9);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    color: var(--secondary);
    filter: drop-shadow(0 0 10px var(--secondary));
}

.benefit-card span {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px 48px;
    font-size: 20px;
    font-weight: 700;
    color: #0a0e27;
    background: var(--gradient);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    font-family: inherit;
    position: relative;
    text-decoration: none;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 0, 128, 0.6);
}

.cta-button:active {
    transform: translateY(-1px) scale(1);
}

.cta-button .arrow {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    stroke: #0a0e27;
}

.cta-button:hover .arrow {
    transform: translateX(5px);
}

.cta-button.secondary {
    background: var(--gradient-alt);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.4);
}

.cta-button.secondary:hover {
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.6);
}

.cta-button.large {
    padding: 26px 56px;
    font-size: 22px;
}

.hero-disclaimer {
    margin-top: 24px;
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.6);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Features Section */
.features {
    padding: 100px 20px;
    background: var(--dark);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--dark-light);
    border: 2px solid rgba(255, 0, 128, 0.2);
    border-radius: 20px;
    padding: 36px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    color: var(--secondary);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px var(--secondary));
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 20px;
    background: var(--dark-light);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    z-index: 0;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: var(--glow);
    animation: pulse 2s ease-in-out infinite;
    border: 4px solid var(--dark-light);
    position: relative;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: var(--glow);
    }
    50% {
        box-shadow: 0 0 50px rgba(255, 0, 128, 0.8);
    }
}

.step-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.how-it-works-cta {
    text-align: center;
    margin-top: 60px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 20px;
    background: var(--dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--dark-light);
    border: 2px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.3);
    transform: translateY(-5px);
}

.stars {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-muted);
}

/* FAQ Section */
.faq {
    padding: 100px 20px;
    background: var(--dark-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark);
    border: 2px solid rgba(255, 0, 128, 0.2);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(90deg, rgba(255, 0, 128, 0.1) 0%, rgba(0, 217, 255, 0.1) 100%);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--secondary);
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 5px var(--secondary));
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 20px;
    background: var(--gradient);
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.final-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    background: rgba(10, 14, 39, 0.85);
    backdrop-filter: blur(20px);
    padding: 60px 40px;
    border-radius: 30px;
    border: 2px solid rgba(0, 217, 255, 0.3);
    max-width: 900px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.6);
}

.final-cta-content > p {
    font-size: 22px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 40px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
}

.final-disclaimer {
    margin-top: 24px;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 8px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .headline {
        font-size: 40px;
    }
    
    .subheadline {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .hero-benefits {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .hero-content {
        padding: 40px 30px;
    }
    
    .final-cta-content {
        padding: 40px 30px;
    }
    
    .cta-button {
        padding: 20px 36px;
        font-size: 18px;
    }
    
    .cta-button.large {
        padding: 22px 40px;
        font-size: 18px;
    }
    
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        flex-direction: column;
        gap: 60px;
    }
    
    .steps::before {
        display: none;
    }
    
    .step {
        padding: 0;
    }
    
    .final-cta-content h2 {
        font-size: 36px;
    }
    
    .final-cta-content > p {
        font-size: 18px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo-img {
        max-width: 220px;
    }
    
    .footer-logo {
        max-width: 160px;
    }
    
    .logo {
        font-size: 32px;
    }
    
    .headline {
        font-size: 32px;
    }
    
    .subheadline {
        font-size: 16px;
    }
    
    .hero {
        padding: 60px 20px 40px;
    }
    
    .hero-content {
        padding: 40px 24px;
        border-radius: 20px;
    }
    
    .final-cta-content {
        padding: 40px 24px;
        border-radius: 20px;
    }
    
    .features,
    .how-it-works,
    .testimonials,
    .faq,
    .final-cta {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
}
