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

:root {
    --primary: #6F02B2;
    --secondary: #00F7EF;
    --dark-bg: #000000;
    --card-bg: #1A1A1A;
    --text-white: #FFFFFF;
    --text-gray: #CCCCCC;
    --border-color: #333333;
    --gradient-purple-cyan: linear-gradient(135deg, #6F02B2 0%, #00F7EF 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

/* HEADER */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: var(--dark-bg);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #6F02B2 0%, #00F7EF 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.125rem;
}

.logo-text {
    font-weight: bold;
    font-size: 1.25rem;
    background: linear-gradient(90deg, #A855F7 0%, #00F7EF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* BUTTONS */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #6F02B2 0%, #7E1BC2 100%);
    color: var(--text-white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #7E1BC2 0%, #8E2BD2 100%);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    width: 100%;
    max-width: 400px;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(180deg, #000000 0%, #111111 100%);
    padding: 4rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.badge {
    display: inline-block;
    background-color: rgba(0, 247, 239, 0.2);
    color: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(0, 247, 239, 0.5);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(90deg, #A855F7 0%, #00F7EF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.benefits {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-gray);
}

.check {
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.25rem;
}

.hero-image {
    display: none;
}

@media (min-width: 768px) {
    .hero-image {
        display: block;
    }

    .hero-image img {
        width: 100%;
        border-radius: 1rem;
        box-shadow: 0 10px 40px rgba(111, 2, 178, 0.3);
        border: 1px solid rgba(111, 2, 178, 0.3);
    }
}

/* STATS SECTION */
.stats {
    background-color: #111111;
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(111, 2, 178, 0.1) 0%, rgba(0, 247, 239, 0.1) 100%);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(111, 2, 178, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(0, 247, 239, 0.5);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, #A855F7 0%, #00F7EF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

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

/* SOCIAL PROOF SECTION */
.social-proof {
    padding: 4rem 0;
    background-color: var(--dark-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

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

.section-image {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(111, 2, 178, 0.3);
    margin-bottom: 3rem;
    border: 1px solid rgba(111, 2, 178, 0.2);
}

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

.testimonial-card {
    background: linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%);
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--secondary);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-left-color: var(--primary);
}

.stars {
    color: #FFD700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.testimonial-location {
    font-size: 0.875rem;
    color: #888888;
}

/* MODULES SECTION */
.modules {
    background-color: #111111;
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
}

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

.module-card {
    background: linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(111, 2, 178, 0.2);
    transition: all 0.3s ease;
}

.module-card:hover {
    border-color: var(--secondary);
}

.module-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.module-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.module-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* GROWTH SECTION */
.growth {
    padding: 4rem 0;
    background-color: var(--dark-bg);
}

/* GUARANTEE SECTION */
.guarantee {
    background: linear-gradient(135deg, rgba(111, 2, 178, 0.2) 0%, rgba(0, 247, 239, 0.2) 100%);
    padding: 2rem 0;
    border-top: 1px solid rgba(111, 2, 178, 0.3);
    border-bottom: 1px solid rgba(111, 2, 178, 0.3);
    text-align: center;
}

.guarantee h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.guarantee p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.guarantee-subtext {
    font-size: 0.95rem;
    color: #888888;
}

/* CTA SECTION */
.cta {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #111111 100%);
}

.cta-card {
    background: linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%);
    border: 1px solid rgba(111, 2, 178, 0.3);
    border-radius: 1rem;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    box-shadow: 0 10px 40px rgba(111, 2, 178, 0.2);
}

.cta-card h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
}

.cta-card > p:nth-of-type(1) {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.input-email {
    padding: 0.75rem 1rem;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-white);
    font-size: 1rem;
}

.input-email::placeholder {
    color: #666666;
}

.input-email:focus {
    outline: none;
    ring: 2px;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(111, 2, 178, 0.2);
}

.success-message {
    background-color: rgba(0, 247, 239, 0.2);
    border: 1px solid rgba(0, 247, 239, 0.5);
    color: var(--secondary);
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
}

.cta-footer {
    text-align: center;
    font-size: 0.875rem;
    color: #666666;
}

.final-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.final-benefit {
    text-align: center;
}

.benefit-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.benefit-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.benefit-desc {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* FOOTER */
.footer {
    background-color: var(--dark-bg);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

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

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

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

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn-large {
        max-width: 100%;
    }

    .cta-card {
        padding: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

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

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

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