:root {
    --bg-color: #050505;
    --bg-secondary: #0f0f11;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --primary-color: #8a2be2;
    /* BlueViolet - Roxo Neon */
    --accent-color: #00ffcc;
    /* Cyan/Green Neon */
    --gradient-hero: linear-gradient(135deg, rgba(138, 43, 226, 0.4) 0%, rgba(5, 5, 5, 0.9) 100%);
    --font-main: 'Outfit', sans-serif;
    --radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- Buttons --- */
.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.6);
    transition: var(--transition);
    border: 2px solid transparent;
}

.cta-button:hover {
    background: transparent;
    border-color: var(--primary-color);
    box-shadow: 0 0 25px rgba(138, 43, 226, 0.9);
    transform: translateY(-3px);
}

.glow-effect {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 15px rgba(138, 43, 226, 0.6);
    }

    50% {
        box-shadow: 0 0 25px rgba(138, 43, 226, 1);
    }

    100% {
        box-shadow: 0 0 15px rgba(138, 43, 226, 0.6);
    }
}

/* --- Navigation --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(to right, #fff, var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-cta {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 10px var(--accent-color);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    /* Space for navbar */
    background: radial-gradient(circle at top center, #1a0b2e 0%, #050505 70%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(to bottom, rgba(5, 5, 5, 0.3) 0%, var(--bg-color) 100%),
        url('assets/images/netflix-bg.jpg?v=2');
    background-size: cover;
    background-position: center top;
    opacity: 0.4;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    margin-top: 2rem;
    font-weight: 300;
}

/* --- Quick Features Strip --- */
.quick-features {
    padding: 30px 0;
    background: linear-gradient(to right, rgba(138, 43, 226, 0.1), rgba(0, 255, 204, 0.05));
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.features-list li {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    transition: var(--transition);
}

.features-list li:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.2);
    transform: translateY(-2px);
}

.features-list li i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* --- Section Layouts --- */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

/* --- Benefits Section --- */
.benefits-section {
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-color);
    padding: 30px;
    border-radius: var(--radius);
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-secondary);
}

/* --- How It Works --- */
.steps-grid {
    display: flex;
    justify-content: center;
    /* Center items instead of strict grid for step flow */
    flex-wrap: wrap;
    gap: 40px;
}

.step-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.step-card h3 {
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

/* --- Testimonials --- */
.testimonials {
    background: radial-gradient(circle at center, #1a0b2e 0%, #050505 100%);
}

.testimonials-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: var(--radius);
    backdrop-filter: blur(10px);
}

.stars {
    color: #ffd700;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.author {
    font-weight: 700;
    color: var(--primary-color);
}

/* --- FAQ --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* --- Footer --- */
.footer {
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #000;
}

.footer-logo {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-support {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
}

.whatsapp-button:hover {
    transform: scale(1.05);
    background: #1ebc59;
}

/* --- Plans Section --- */
.plans-section {
    background: radial-gradient(circle at center, #1a0b2e 0%, #050505 80%);
}

.plans-header-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.plans-subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-top: -30px;
    margin-bottom: 20px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    align-items: stretch;
    /* Make cards same height */
}

.plan-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 20px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.plan-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.plan-header {
    text-align: center;
    margin-bottom: 15px;
}

.plan-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.plan-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-price-box {
    text-align: center;
    margin-bottom: 5px;
    color: white;
}

.plan-price-box .currency {
    font-size: 1.2rem;
    vertical-align: top;
    margin-right: 2px;
}

.plan-price-box .amount {
    font-size: 2.5rem;
    font-weight: 800;
}

.plan-renovation {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.plan-savings {
    text-align: center;
    background: rgba(0, 255, 204, 0.1);
    color: var(--accent-color);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.plan-divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features li {
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: #ddd;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.plan-features li i {
    color: var(--accent-color);
    margin-top: 4px;
}

.plan-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
    border: 1px solid transparent;
}

.plan-button:hover {
    background: white;
    color: black;
}

/* Featured styles */
.plan-card.featured {
    border-color: var(--accent-color);
    background: rgba(0, 255, 204, 0.03);
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.1);
}

.plan-card.featured:hover {
    box-shadow: 0 0 30px rgba(0, 255, 204, 0.2);
}

.plan-card.featured .plan-button.highlight {
    background: var(--accent-color);
    color: black;
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.4);
}

.plan-card.featured .plan-button.highlight:hover {
    background: #00e6b8;
    transform: scale(1.02);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: black;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    z-index: 2;
}

/* Gold/Annual Styles */
.plan-card.featured-gold {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.03);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.plan-card.featured-gold:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.plan-badge.gold {
    background: #ffd700;
}

.plan-card.featured-gold .plan-button.gold-btn {
    background: #ffd700;
    color: black;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.plan-card.featured-gold .plan-button.gold-btn:hover {
    background: #e6c200;
    transform: scale(1.02);
}

.plan-card.featured-gold .plan-savings {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
}

/* Semiannual Blue Tint (Optional) */
.plan-card.semiannual:hover {
    border-color: #4da6ff;
    box-shadow: 0 0 20px rgba(77, 166, 255, 0.2);
}

/* Mobile Tweaks for this section */
@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
        /* Stack vertically */
        max-width: 400px;
        margin: 0 auto;
    }

    .plan-card.featured,
    .plan-card.featured-gold {
        transform: scale(1.02);
        /* Slight prominence on mobile too */
        margin: 10px 0;
    }
}

/* --- Mobile Queries --- */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .features-list {
        flex-direction: column;
        align-items: center;
    }

    .features-list li {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
        text-align: center;
    }

    /* Center text and cards on mobile */
    .feature-card,
    .testimonial-card,
    .step-card {
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .feature-card i {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* Add padding to section for better mobile spacing */
@media (max-width: 480px) {
    section {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 16px 20px;
        font-size: 1rem;
    }
}