:root {
    --primary: #00ff88;
    /* Neon Green */
    --secondary: #ff00ff;
    /* Neon Pink */
    --accent: #7000ff;
    /* Electric Purple */
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --text-main: #ffffff;
    --text-muted: #cccccc;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.text-highlight {
    color: var(--primary);
}

.text-accent {
    color: var(--secondary);
}

.text-center {
    text-align: center;
}

.d-none {
    display: none;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* Buttons */
.btn-cta {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: #000;
    font-weight: 900;
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 400px;
    margin-top: 20px;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(0, 255, 136, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
    }
}

/* Sections */
section {
    padding: 60px 0;
}

/* Hero */
.hero {
    min-height: auto;
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at center, #1a0b2e 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://cdn.rockty.com.br/cdn-cgi/image/quality=80,width=,format=webp/tenants/em4lf2mlieizeya2ag7n4a/images/vQrV7mMmVUSjlC9gZXxdeA.png') center/cover opacity 0.2;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-img-main {
    display: block;
    width: 100%;
    max-width: 90%;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
    margin: 20px auto;
}

.hero-img-main:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.hero p.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0 auto;
    max-width: 600px;
}

.stats-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item h3 {
    color: var(--primary);
    font-size: 2rem;
}

.stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Pain Points */
.pain-points {
    background: var(--card-bg);
}

.pain-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 4px solid var(--secondary);
}

/* Solution */
.solution {
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: #111;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #333;
    transition: 0.3s;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

/* Testimonials */
.testimonials {
    background: linear-gradient(to bottom, var(--dark-bg), #111);
    padding: 80px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.testimonial-card::before {
    display: none;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--primary);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonial-img {
    width: 100%;
    border-radius: 8px;
    display: block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* Guarantee Highlight */
.guarantee-box {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed var(--primary);
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

/* Offer */
.offer-section {
    background: linear-gradient(135deg, #1a0b2e, #000);
    text-align: center;
    border-top: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
}

.price-card {
    background: #fff;
    color: #000;
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 20px;
    position: relative;
}

.price-header {
    text-align: center;
    margin-bottom: 20px;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 1.5rem;
}

.new-price {
    font-size: 4rem;
    font-weight: 800;
    color: #000;
    line-height: 1;
}

.guarantee-badge {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: bold;
}

/* Sticky Mobile CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 15px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    border-top: 1px solid var(--primary);
}

.sticky-cta .btn-cta {
    margin: 0;
    padding: 12px 24px;
    font-size: 1rem;
    width: 100%;
}

@media (min-width: 768px) {
    .sticky-cta {
        display: none;
    }

    .hero {
        min-height: 90vh;
        /* Restore full height on desktop */
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "tag image"
            "title image"
            "subtitle image"
            "button image"
            "stats image";
        text-align: left;
        gap: 20px 60px;
        align-items: center;
        justify-items: start;
    }

    .hero-tag {
        grid-area: tag;
    }

    .hero h1 {
        grid-area: title;
        font-size: 4rem;
        margin-bottom: 20px;
    }

    .hero p.subtitle {
        grid-area: subtitle;
        margin: 0 0 30px 0;
        font-size: 1.2rem;
        text-align: left;
    }

    .btn-cta {
        grid-area: button;
        width: auto;
        padding: 18px 40px;
        margin-top: 0;
    }

    .hero-img-main {
        grid-area: image;
        max-width: 100%;
        margin: 0;
        justify-self: center;
    }

    .stats-bar {
        grid-area: stats;
        justify-content: flex-start;
        display: inline-flex;
        margin-top: 20px;
    }
}

/* Animation Classes */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-up"] {
    transform: translateY(20px);
}

/* Why It Works */
.why-it-works {
    background: #050505;
    color: #fff;
    padding: 80px 0;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.reason-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.reason-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.reason-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.reason-item h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* Before vs After */
.before-after {
    background: #111;
    color: #fff;
    padding: 80px 0;
}

.ba-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

.ba-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.ba-card:hover {
    transform: translateY(-5px);
}

.ba-card.before {
    border-top: 4px solid #ff4444;
}

.ba-card.after {
    border-top: 4px solid var(--primary);
}

.ba-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.ba-card.before .ba-icon {
    filter: grayscale(100%) opacity(0.7);
}

.ba-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.ba-card.before h3 {
    color: #ff4444;
}

.ba-card.after h3 {
    color: var(--primary);
}

.ba-footer p {
    font-size: 1.2rem;
    font-weight: bold;
    max-width: 800px;
    margin: 0 auto;
}