/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Teko', sans-serif;
    overflow: hidden; /* Prevent default scrolling */
    background: #000;
    color: #fff;
    height: 100vh;
}

/* Section container */
.sections-container {
    position: relative;
    height: 100vh;
    width: 100%;
}

/* Each section takes full viewport */
.section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(0);
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    overflow-y: auto;
    z-index: 1;
}

.section.active {
    opacity: 1;
    transform: translateY(0);
    z-index: 10;
}

.section.next {
    opacity: 0;
    transform: translateY(100vh);
}

.section.prev {
    opacity: 0;
    transform: translateY(-100vh);
}

/* Sticky header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255, 0, 222, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo img {
    width: 50px;
    height: auto;
}

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(0, 0, 0, 0.8) 50%,
        rgba(255, 255, 255, 0.05) 100%);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 0.9;
    margin-bottom: 20px;
    color: #fff;
}

.hero-highlight {
    color: #ff00de;
    font-size: clamp(3rem, 10vw, 7rem);
    display: block;
    text-shadow: 0 0 30px rgba(255, 0, 222, 0.8);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 30px rgba(255, 0, 222, 0.8); }
    to { text-shadow: 0 0 50px rgba(255, 0, 222, 1); }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    margin: 20px 0;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.main-cta {
    display: inline-block;
    background: #3ff00a;
    color: #000;
    padding: 18px 40px;
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin: 20px 0;
    box-shadow: 0 0 30px rgba(63, 240, 10, 0.6);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.main-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 40px rgba(63, 240, 10, 0.8);
    background: #39ff14;
}

/* Social proof */
.social-proof {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    margin: 20px 0;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 222, 0.15);
    box-shadow: 0 0 20px rgba(255, 0, 222, 0.1);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 600px;
    margin: auto;
}

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

.proof-stat {
    color: #fff;
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    font-weight: bold;
    display: block;
}

.proof-text {
    font-size: clamp(1rem, 3vw, 1.2rem);
    opacity: 0.7;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, #151515 0%, #0a0a0a 100%);
}

.section-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 40px;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.benefit-stat {
    font-size: clamp(2.5rem, 8vw, 4rem);
    color: #ff00de;
    font-weight: bold;
    margin: 20px 0 10px;
    text-shadow: 0 0 20px rgba(255, 0, 222, 0.5);
}

.benefit-text {
    font-size: clamp(1rem, 3vw, 1.3rem);
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    color: #fff;
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.03) 0%,
        rgba(0, 0, 0, 0.8) 50%,
        rgba(255, 255, 255, 0.03) 100%);
}

.features-section .section-title {
    color: #ff00de;
    text-shadow: 0 0 20px rgba(255, 0, 222, 0.5);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 0, 222, 0.2);
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    border-color: rgba(255, 0, 222, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 222, 0.15);
}

.feature-title {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    color: #fff;
    margin-bottom: 15px;
    font-weight: bold;
}

.feature-card p {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    opacity: 0.8;
    line-height: 1.4;
    color: #fff;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(0, 0, 0, 0.9) 100%);
}

.testimonials-container {
    max-width: 600px;
    position: relative;
    background: rgba(18, 18, 30, 0.95);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 222, 0.1);
}

.testimonials-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(255, 0, 222, 0.3);
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 40px;
}

.testimonial-slides {
    position: relative;
    min-height: 280px;
}

.testimonial {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
    z-index: 0;
}

.testimonial.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
    z-index: 1;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(255, 0, 222, 0.4);
    margin: 0 auto 20px;
    display: block;
    object-fit: cover;
    box-shadow: 0 0 15px rgba(255, 0, 222, 0.2);
}

.quote {
    font-size: clamp(1rem, 4vw, 1.3rem);
    line-height: 1.5;
    margin-bottom: 15px;
    font-style: italic;
    opacity: 0.95;
    position: relative;
    padding: 0 1.5rem;
    color: #fff;
}

.quote::before, .quote::after {
    content: '"';
    font-family: 'Bruno Ace', cursive;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.3);
    opacity: 0.5;
    position: absolute;
}

.quote::before {
    top: -1.5rem;
    left: 0;
}

.quote::after {
    bottom: -1.5rem;
    right: 0;
}

.author {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    color: #fff;
    font-weight: bold;
    opacity: 0.8;
}

.testimonial-dots {
    text-align: center;
    margin-top: 25px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #ff00de;
    box-shadow: 0 0 10px rgba(255, 0, 222, 0.5);
}

.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.testimonial-arrow:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.testimonial-arrow.prev {
    left: 0;
}

.testimonial-arrow.next {
    right: 0;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);
    padding: 40px 20px;
    max-height: 100vh;
    overflow-y: auto;
}

.faq-container {
    max-width: 800px;
}

.faq-item {
    margin: 25px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 222, 0.1);
}

.faq-question {
    font-size: clamp(1.1rem, 4vw, 1.4rem);
    color: #fff;
    margin-bottom: 10px;
    font-weight: bold;
}

.faq-answer {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(0, 0, 0, 0.9) 50%,
        rgba(255, 255, 255, 0.05) 100%);
}

.final-cta-title {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 30px;
    font-family: 'Bebas Neue', cursive;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    color: #fff;
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .section {
        padding: 80px 15px 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .proof-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .testimonials-carousel {
        padding: 0 15px;
    }

    .testimonial-image {
        width: 60px;
        height: 60px;
    }

    .testimonial-slides {
        min-height: 250px;
    }

    .testimonial-arrow {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .quote {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Update sticky header to flex layout */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
}

.login-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-family: 'Teko', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.login-link:hover {
    color: #ff00de;
    text-shadow: 0 0 5px rgba(255, 0, 222, 0.5);
}

@media (max-width: 768px) {
    .login-link {
        font-size: 12px;
    }
}