:root {
    --bg-color: #050505;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --accent-primary: #8a2be2;
    --accent-secondary: #00d2ff;
    --gradient-1: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

/* Card Utilities */
.card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--card-border);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Typography & Colors */
.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.logo .highlight {
    color: var(--accent-secondary);
}

/* Buttons */
.btn-outline, .btn-primary, .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 6px 25px rgba(138, 43, 226, 0.6);
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 5% 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8; /* Much more visible */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(5, 5, 5, 1) 100%);
}

.hero-content {
    max-width: 900px;
    padding: 60px 40px;
    position: relative;
    z-index: 1; /* Ensure content is above video */
    background: transparent;
    box-shadow: none;
    border: none;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: var(--accent-primary);
    filter: blur(100px);
    opacity: 0.5;
    z-index: -1;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-primary);
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.hero .badge {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 20px;
    color: #ffffff; /* Explicit white for visibility over video */
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.8);
}

/* Main Layout */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 100px 0;
}

.relative-section {
    position: relative;
    overflow: hidden;
    padding: 150px 0 100px;
    margin-top: 50px;
    border-radius: 40px;
}

.section-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.section-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 5, 5, 1) 0%, rgba(5, 5, 5, 0.5) 20%, rgba(5, 5, 5, 0.5) 80%, rgba(5, 5, 5, 1) 100%);
}

/* Features Structure */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 5%;
}

.feature-card {
    padding: 40px 30px;
}

.icon-container {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(138, 43, 226, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    color: var(--accent-secondary);
}

.feature-card h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing {
    display: flex;
    justify-content: center;
}

.pricing-card {
    max-width: 500px;
    width: 100%;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.premium-card {
    background: linear-gradient(180deg, rgba(20, 20, 30, 0.8) 0%, rgba(10, 10, 15, 0.9) 100%);
    border: 1px solid rgba(138, 43, 226, 0.3);
    position: relative;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-1);
}

.pricing-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.tier {
    color: var(--accent-secondary);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.price {
    margin: 40px 0;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.current-price {
    font-size: 3.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
}

.period {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 40px 0;
}

.pricing-features li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.pricing-features lucide-icon, .pricing-features i {
    color: #00d2ff;
    flex-shrink: 0;
    margin-top: 2px;
}

/* CTA */
.cta {
    text-align: center;
    padding-bottom: 100px;
}

.cta-content {
    padding: 60px 40px;
    display: inline-block;
    max-width: 800px;
}

.glow-panel {
    position: relative;
}

.glow-panel::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    background: var(--gradient-1);
    z-index: -1;
    filter: blur(15px);
    opacity: 0.3;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    font-size: 1.1rem;
    padding: 16px 36px;
}

.btn-whatsapp:hover {
    background: #1ebc59;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transform: translateY(-3px);
}

/* Footer */
footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        padding: 40px 20px;
    }
    .pricing-card {
        padding: 40px 20px;
    }
    .current-price {
        font-size: 2.8rem;
    }
}
