:root {
    --red: #e11d48;
    --red-dark: #be123c;
    --dark: #0f172a;
    --grey: #334155;
    --white: #ffffff;
    --light: #f1f5f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background: var(--light);
    color: var(--grey);
}

h1, h2, h3 {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
}

/* Scarcity Bar */
.scarcity-bar {
    background: #fbbf24;
    color: var(--dark);
    text-align: center;
    padding: 10px;
    font-weight: 700;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

/* Hero */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 40px;
    overflow: hidden;
}

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

.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9));
}

.hero-content {
    max-width: 800px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.highlight {
    color: var(--red);
}

.subheadline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: #cbd5e1;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    cursor: pointer;
}

.video-wrapper img {
    width: 100%;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(225, 29, 72, 0); }
    100% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0); }
}

.btn-cta {
    background: var(--red);
    color: var(--white);
    padding: 20px 50px;
    font-size: 1.5rem;
    font-weight: 900;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    transition: 0.3s;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(225, 29, 72, 0.4);
}

.btn-cta:hover {
    background: var(--red-dark);
    transform: scale(1.05);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    color: var(--dark);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Pain Points */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 40px 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card i {
    font-size: 3rem;
    color: var(--red);
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Modules */
.dark-bg {
    background: var(--dark);
    color: var(--white);
}

.white { color: var(--white); }

.module-list {
    max-width: 800px;
    margin: 0 auto;
}

.module-item {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.05);
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}

.module-item:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--red);
}

.mod-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--red);
    margin-right: 30px;
    font-family: 'Bebas Neue', cursive;
}

.mod-info h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.mod-info p {
    color: #94a3b8;
}

/* Pricing */
.offer-card {
    background: var(--white);
    max-width: 500px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 2px solid var(--red);
    position: relative;
    overflow: hidden;
}

.ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--red);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.offer-card h3 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.price-block {
    margin-bottom: 30px;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 1.2rem;
}

.new-price {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--dark);
    font-family: 'Bebas Neue', cursive;
}

.features-check {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
    display: inline-block;
}

.features-check li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-check i {
    color: #10b981;
}

.btn-large {
    width: 100%;
}

.guarantee {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #64748b;
}

footer {
    background: var(--dark);
    color: #64748b;
    text-align: center;
    padding: 30px;
}

/* Scroll Animation */
[data-scroll] {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease;
}
[data-scroll="fade-up"] { transform: translateY(30px); }
[data-scroll="fade-right"] { transform: translateX(-30px); }
[data-scroll="zoom-in"] { transform: scale(0.9); }
[data-scroll].scrolled { opacity: 1; transform: translate(0) scale(1); }

@media (max-width: 768px) {
    .hero h1 { font-size: 3.5rem; }
    .btn-cta { padding: 15px 30px; font-size: 1.2rem; }
}
