: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;
}

/* ALERT BAR */
.alert-bar {
    background: rgba(239, 68, 68, 0.15);
    color: #fff;
    border: 1px solid var(--danger);
    padding: 12px 20px;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
}

/* HERO SECTION */
.hero-section {
    padding: 20px 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: 20px;
    max-width: 650px;
    line-height: 1.5;
}

.subheadline strong {
    color: #fff;
}

.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);
}

.btn-refusal {
    display: inline-block;
    color: var(--text-muted);
    font-size: 1rem;
    text-decoration: underline;
    margin-top: 25px;
    cursor: pointer;
    transition: color 0.3s;
    font-weight: 500;
}

.btn-refusal:hover {
    color: #fff;
}

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

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

@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); }
}

/* 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;
}

/* BRIDGE BLOCK */
.bridge-block p {
    font-size: 1.15rem;
    color: var(--text-main);
    line-height: 1.7;
}
.bridge-block strong {
    color: var(--primary-accent);
}

/* 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;
    text-align: left;
}

.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;
}

/* 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;
    margin-bottom: 25px;
}

/* 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; }
    .alert-bar { font-size: 0.9rem; padding: 10px; }
}
