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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0f051f 0%, #1a0033 100%);
    color: white;
    line-height: 1.6;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo img {
    height: 55px;
}

.nav-links a {
    color: white;
    margin: 0 22px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #c4b5fd;
}

.cta-button {
    background: linear-gradient(90deg, #8b5cf6, #ec4899);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 5% 100px;
}

.hero-content {
    max-width: 1000px;
}

.hero-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.25);
    color: #c4b5fd;
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.8rem;
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.35rem;
    opacity: 0.92;
    margin-bottom: 40px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.hero-video {
    margin: 50px auto;
    max-width: 1100px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.hero-video video {
    width: 100%;
    display: block;
    border-radius: 24px;
}

video-container {
    margin: 50px auto 70px;
}

.video-container .relative {
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.75);
    border-radius: 24px;
    overflow: hidden;
}

.price-box {
    margin: 40px 0;
}

.price {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.big-cta {
    display: inline-block;
    background: linear-gradient(90deg, #8b5cf6, #ec4899);
    color: white;
    font-size: 1.6rem;
    padding: 22px 70px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 700;
    margin: 20px 0;
    transition: all 0.4s;
}

.big-cta:hover {
    transform: scale(1.06);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.5);
}

.benefits {
    padding: 110px 5%;
    background: rgba(0, 0, 0, 0.45);
}

.benefits h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 70px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(255,255,255,0.06);
    padding: 45px 35px;
    border-radius: 24px;
    transition: all 0.4s;
}

.benefit-card:hover {
    transform: translateY(-12px);
    background: rgba(255,255,255,0.12);
}

footer {
    text-align: center;
    padding: 60px 20px;
    opacity: 0.75;
    font-size: 0.95rem;
}
