:root {
    --bg-color: #050508;
    --box-bg: rgba(20, 20, 30, 0.6);
    --primary-accent: #EAB308;
    --primary-accent-hover: #F8CB2E;
    --text-main: #E2E8F0;
    --text-muted: #94A3B8;
    --danger: #EF4444;
    --success: #22C55E;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    background-image: radial-gradient(circle at top center, rgba(30,30,45,0.8) 0%, #050508 60%);
    background-attachment: fixed;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

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

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

/* HERO SECTION */
.hero-section {
    padding: 60px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.headline {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.subheadline {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 650px;
}

.subheadline strong {
    color: #fff;
}

.product-mockup {
    max-width: 300px;
    width: 100%;
    margin: 0 auto 40px;
    display: block;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(234, 179, 8, 0.15), 0 0 0 1px rgba(255,255,255,0.05);
    transition: transform 0.3s ease;
}

.product-mockup:hover {
    transform: translateY(-5px);
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    max-width: 500px;
    margin-bottom: 15px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    transform: scale(1.02) translateY(-2px);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.5);
}

.pulse {
    animation: pulse-animation 2s infinite;
}

.pulse-strong {
    animation: pulse-strong-animation 1.5s infinite;
}

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

@keyframes pulse-strong-animation {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.8); }
    50% { transform: scale(1.03); box-shadow: 0 0 25px 12px rgba(245, 158, 11, 0.3); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.secure-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* SECTIONS */
section {
    padding: 50px 30px;
    margin-bottom: 25px;
    border-radius: 16px;
    background: var(--box-bg);
    border: 1px solid rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #fff;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* LISTS */
ul {
    list-style: none;
}

.pain-list li {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(239, 68, 68, 0.05);
    border-left: 4px solid var(--danger);
    border-radius: 4px 8px 8px 4px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.pain-list .icon-check {
    font-style: normal;
    font-size: 1.2rem;
}

/* ALERT BOX */
.alert-box {
    background: rgba(234, 179, 8, 0.05);
    border: 1px solid rgba(234, 179, 8, 0.2);
    padding: 30px;
    border-radius: 12px;
}

.alert-box h3 {
    color: var(--primary-accent);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.alert-box p {
    font-size: 1.1rem;
}

/* BENEFITS GRID */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s;
}

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

.benefit-card h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
}

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

/* CHECK LIST */
.check-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding: 15px 20px;
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* OFFER SECTION */
.offer-section {
    background: linear-gradient(to bottom, rgba(20, 20, 30, 0.6), rgba(234, 179, 8, 0.05));
    border-color: rgba(234, 179, 8, 0.2);
    padding: 60px 20px;
}

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

.price-pre {
    color: var(--text-muted);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-heading);
}

.price-main {
    font-size: 5.5rem;
    font-weight: 800;
    color: var(--primary-accent);
    line-height: 1;
    margin: 10px 0;
    text-shadow: 0 0 25px rgba(234, 179, 8, 0.4);
}

.price-sub {
    font-size: 1.1rem;
    color: #fff;
}

.trust-badges {
    max-width: 100%;
    width: 300px;
    margin-top: 25px;
    opacity: 0.8;
}

/* CLOSING */
.closing-section {
    padding: 40px 20px;
    font-size: 1.1rem;
}

.closing-section strong {
    color: #fff;
}

.copyright {
    font-size: 0.8rem;
    color: #64748B;
    margin-top: 30px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .headline { font-size: 2.2rem; }
    .section-title { font-size: 1.6rem; }
    .benefits-grid { grid-template-columns: 1fr; }
    .price-main { font-size: 4.5rem; }
    .btn-primary { font-size: 1.1rem; padding: 18px 20px; }
    section { padding: 40px 20px; }
}
