@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --bg-color: #0c0e14;
    --surface-color: #161a23;
    --surface-hover: #1e2430;
    --primary-color: #7c4dff;
    --primary-glow: rgba(124, 77, 255, 0.4);
    --secondary-color: #00e5ff;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --nav-height: 70px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Background Decoration */
body::before {
    content: '';
    position: fixed;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    z-index: -1;
    filter: blur(80px);
}

body::after {
    content: '';
    position: fixed;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
    z-index: -1;
    filter: blur(80px);
}

/* Simplified Navigation */
nav {
    height: var(--nav-height);
    background: rgba(12, 14, 20, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 0 20px;
}

.nav-item {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 12px;
    border: 1px solid transparent;
    opacity: 0.6;
}

.nav-item.active {
    background: linear-gradient(135deg, var(--primary-color), #512da8);
    color: white;
    opacity: 1;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.nav-item.completed {
    color: var(--secondary-color);
    opacity: 0.9;
}

/* Main Content */
.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.video-header {
    text-align: center;
}

.video-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.01em;
}

.video-header p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
}

/* Video Section */
.video-card {
    background: var(--surface-color);
    border-radius: 32px;
    padding: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Next Step Action */
.next-step-container {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 60px;
}

.btn-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color), #512da8);
    color: white;
    padding: 18px 48px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px var(--primary-glow);
}

.btn-next:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px var(--primary-glow);
    border-color: rgba(255,255,255,0.2);
}

.btn-next svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-next:hover svg {
    transform: translateX(5px);
}

/* Pricing & Support Section */
.support-intro {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 24px;
    text-align: center;
    margin-bottom: 20px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    background: var(--surface-color);
    border: 1px solid var(--glass-border);
    padding: 30px 20px;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px -10px var(--primary-glow);
}

.pricing-card h3 {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.pricing-card .price span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.pricing-card p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 25px;
}

.btn-plan {
    background: var(--gradient-primary);
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-plan:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px -5px var(--primary-glow);
    filter: brightness(1.1);
}

.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: #25d366;
    color: #fff;
    padding: 20px 50px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-large:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        gap: 6px;
    }
    nav { height: auto; padding: 10px 0; }
    .nav-item { font-size: 0.75rem; padding: 4px 10px; }
    .video-header h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
    .video-header h1 {
        font-size: 1.8rem;
    }
    
    .btn-whatsapp {
        width: 100%;
        padding: 14px 24px;
    }
}
