/* --- Variables & Reset --- */
:root {
    --bg-dark: #09090b;
    --bg-card: rgba(22, 22, 30, 0.6);
    --primary: #39ff14;
    /* Neon Green */
    --primary-glow: rgba(57, 255, 20, 0.4);
    --secondary: #00f3ff;
    /* Cyber Blue */
    --secondary-glow: rgba(0, 243, 255, 0.4);
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* --- Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.glass {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.neon-text {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.blue-text {
    color: var(--secondary);
    text-shadow: 0 0 10px var(--secondary-glow);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 20px var(--primary-glow);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary);
    box-shadow: 0 0 40px var(--primary-glow);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    box-shadow: 0 0 15px var(--secondary-glow);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.8rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: #000;
    border: none;
}

.btn-sm:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 70px;
    /* Adjusted for banner */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    padding: 15px 30px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    /* Override container padding */
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Update this path to the actual image generated */
    background: url('hero_bg.webp') center/cover no-repeat;
    opacity: 0.4;
    z-index: -1;
}

/* Dark gradient overlay on top of image */
.hero-bg-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--bg-dark) 0%, transparent 50%, var(--bg-dark) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.glitch-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.trust-badges {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #fff;
    opacity: 0.8;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
}


/* Hero Visual Animation */
.hero-visual {
    position: relative;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    max-width: 100%;
    max-height: 500px;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(57, 255, 20, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.floating-anim {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* --- Features Section --- */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 40px 30px;
    transition: var(--transition);
    border-top: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--secondary);
    box-shadow: 0 10px 40px -10px rgba(0, 243, 255, 0.2);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 25px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- VSL Section --- */
.vsl-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 10px;
    overflow: hidden;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .vsl-wrapper {
        padding: 5px;
    }
}

/* --- Pricing Section --- */
.pricing-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    padding: 40px;
    width: 350px;
    text-align: center;
    position: relative;
}

.feature-plan {
    transform: scale(1.05);
    border: 1px solid var(--primary);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.1);
    z-index: 10;
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.plan-header {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

.price {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
    margin-top: 10px;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.plan-features {
    margin-bottom: 40px;
    text-align: left;
}

.plan-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ddd;
}

.plan-features i {
    color: var(--primary);
    font-size: 1.2rem;
}

.fw-full {
    width: 100%;
}

/* --- Footer --- */
.footer {
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #050507;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-btns,
    .trust-badges {
        justify-content: center;
    }

    .hero-visual {
        display: none;
        /* Simplify for mobile for now, or Stack */
    }

    .glitch-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        width: 95%;
        padding: 15px 20px;
    }

    .nav-links,
    .navbar .btn {
        display: none;
        /* Hidden for now - typical hamburger goal */
    }

    .menu-toggle {
        display: block;
    }

    .pricing-wrapper {
        flex-direction: column;
    }

    .feature-plan {
        transform: scale(1);
    }
}

/* --- FAQ Section --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    padding: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
}

.faq-question span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-question i:not(.toggle-icon) {
    color: var(--primary);
    font-size: 1.2rem;
}

.faq-question .toggle-icon {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(90deg);
    color: var(--primary);
}

.faq-item.active .faq-question {
    background: rgba(255, 255, 255, 0.03);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 25px 20px 25px;
    padding-top: 5px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-answer p {
    padding: 0 25px 20px 25px;
    padding-top: 5px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Pricing Ticker --- */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    height: 50px;
    margin-bottom: 40px;
    padding: 0;
    position: relative;
    border: 1px solid var(--primary);
    background: rgba(57, 255, 20, 0.1);
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 20s linear infinite;
    align-items: center;
    height: 100%;
}

.ticker-item {
    padding: 0 40px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    display: inline-flex;
    /* To keep text and span inline */
    align-items: center;
}

.ticker-item span {
    font-family: monospace;
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
    margin: 0 5px;
    color: var(--primary);
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }

    /* Basic indefinite scroll logic needs duplication or calc */
    /* For seamless: we need enough items to fill width + scroll */
}

/* --- Feedback Carousel --- */
.carousel-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
    display: flex;
    justify-content: center;
}

.feedback-img {
    max-width: 100%;
    border-radius: 12px;
    padding: 0;
    /* Remove padding from glass if image is full content */
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

/* --- Exclusive Features (Minimalist) --- */
.exclusive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.glass-sm {
    background: rgba(22, 22, 30, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #eee;
    transition: var(--transition);
}

.glass-sm:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateX(5px);
}

.glass-sm i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.activation-bar {
    width: 100%;
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(37, 117, 252, 0.3);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.activation-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    100% {
        left: 100%;
    }
}

/* --- Payment Modal --- */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: #09090b;
    border: 1px solid var(--glass-border);
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--text-muted);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-main);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(57, 255, 20, 0.1);
}

.modal-footer {
    margin-top: 25px;
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
}

.price-display {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.price-display span {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.5rem;
}

/* Pix Result Styles */
.pix-result {
    text-align: center;
    padding-top: 10px;
}

.success-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.qr-placeholder {
    margin: 20px 0;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    display: inline-block;
}

.copy-paste-container {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.copy-paste-container input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 10px;
    border-radius: 6px;
    flex: 1;
    font-family: monospace;
    font-size: 0.9rem;
}

.btn-copy {
    background: var(--primary);
    border: none;
    color: #000;
    width: 40px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-copy:hover {
    background: var(--primary-glow);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}