:root {
    --primary-color: #00ff88;
    /* Neon Green for CTAs */
    --secondary-color: #8a2be2;
    /* Purple for accents */
    --bg-dark: #0b0c10;
    --bg-card: #1f2833;
    --text-light: #c5c6c7;
    --text-white: #ffffff;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-white);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--primary-color);
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.hero-text .btn {
    margin-top: 20px;
}

.btn:hover {
    background-color: #00cc6a;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.6);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: rgba(0, 255, 136, 0.1);
    color: var(--text-white);
}

/* Header */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background-color: rgba(11, 12, 16, 0.95);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    background: radial-gradient(circle at top right, rgba(138, 43, 226, 0.15), transparent 40%),
        radial-gradient(circle at bottom left, rgba(0, 255, 136, 0.1), transparent 40%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 900px;
    margin-bottom: 60px;
}

.hero-image video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}



.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    line-height: 1;
}

.hero-text h1 span {
    color: var(--primary-color);
    background: -webkit-linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 600px;
}


.price-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--primary-color);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.countdown-timer {
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-white);
    background: rgba(255, 0, 0, 0.1);
    /* Optional: slight highlight */
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto 40px;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }

    .btn {
        width: 100%;
    }
}

/* Section Common */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.highlight {
    color: var(--primary-color);
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* About Section */
.about {
    background-color: var(--bg-dark);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.about-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.about-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-card h3 {
    margin-bottom: 15px;
    color: var(--text-white);
}

.price-highlight {
    background: rgba(138, 43, 226, 0.1);
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
    border: 1px solid var(--secondary-color);
}

.price-highlight p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 1.2rem;
    margin-right: 10px;
}

.new-price {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.text-center {
    text-align: center;
}

/* How it Works Section */
.how-it-works {
    background-color: #0f1115;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
}

.step-item {
    text-align: center;
    position: relative;
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step-content p {
    color: var(--text-light);
}


/* Benefits Section */
.benefits {
    background-color: var(--bg-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    background: var(--bg-card);
    padding: 20px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.benefit-item:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.check-icon {
    background: var(--primary-color);
    color: #000;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.benefit-item p {
    color: var(--text-white);
    font-weight: 600;
    margin: 0;
}


/* Testimonials Section */
.testimonials {
    background-color: #0f1115;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.quote {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.author {
    display: flex;
    align-items: center;
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-white);
    margin-right: 15px;
}

.info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--text-white);
}

.info span {
    font-size: 0.85rem;
    color: #888;
}


/* CTA Section */
.cta {
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.05), transparent 70%);
    padding: 100px 0;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    margin-top: 50px;
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.15);
    transform: scale(1.05);
    z-index: 2;
    padding: 50px 30px;
}

.pricing-card.featured::before {
    content: 'OFERTA';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--secondary-color);
    color: #fff;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-white);
}

.price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.currency {
    font-size: 1.15rem;
    vertical-align: top;
}

.period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.original-price {
    text-decoration: line-through;
    color: #888;
    margin-bottom: 30px;
}

.benefits-list {
    text-align: left;
    margin-bottom: 30px;
    display: inline-block;
}

.benefits-list li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.btn-large {
    width: 100%;
    padding: 20px;
    font-size: 1.3rem;
}

.guarantee {
    font-size: 0.85rem;
    color: #888;
    margin-top: 15px;
}

/* Footer */
footer {
    background-color: #050608;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-links ul {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-light);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-links ul {
        flex-direction: column;
        gap: 15px;
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .pricing-card.featured {
        transform: scale(1);
        width: 100%;
        max-width: 500px;
        order: -1;
        /* Highlighted plan first on mobile */
    }

    .pricing-card {
        width: 100%;
        max-width: 500px;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }
}


/* FAQ Section */
.faq {
    background-color: var(--bg-dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-white);
}

.toggle-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Adjust as needed */
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}


/* Mobile Menu & Navigation */
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.desktop-nav {
    display: none;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
        gap: 20px;
    }

    .desktop-nav a {
        color: var(--text-light);
        text-decoration: none;
        font-weight: 500;
        transition: var(--transition);
    }

    .desktop-nav a:hover {
        color: var(--primary-color);
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-white);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu a {
    color: var(--text-white);
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: 600;
}

.mobile-menu .btn {
    margin-top: 20px;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }

    .mobile-menu {
        display: none;
    }
}


/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}


/* Countdown Timer */
.countdown-timer {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
    background: rgba(0, 255, 136, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid var(--primary-color);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 12, 16, 0.95);
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    display: none;
}

.sticky-cta.visible {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .sticky-cta {
        display: block;
    }
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-content p {
    color: var(--text-white);
    font-weight: 600;
    margin: 0;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .sticky-cta {
        display: none;
    }
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column-reverse;
    /* Stack from bottom to top */
    gap: 15px;
    z-index: 1000;
    align-items: center;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.float-btn:hover {
    transform: translateY(-5px);
}

.whatsapp-btn {
    background-color: #25D366;
}

.whatsapp-btn:hover {
    background-color: #20bd5a;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.back-to-top {
    background-color: var(--secondary-color);
    height: 0;
    width: 0;
    opacity: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy effect */
}

.back-to-top.visible {
    height: 50px;
    width: 50px;
    opacity: 1;
    margin-top: 0;
    /* Reset margin if needed */
}

.back-to-top:hover {
    background-color: #7a26c9;
    box-shadow: 0 5px 20px rgba(138, 43, 226, 0.4);
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 90px;
        /* Adjust for sticky CTA */
        right: 20px;
    }

    .float-btn,
    .back-to-top.visible {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}