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

:root {
    --bg-dark: #050b14;
    --primary-cyan: #00e5ff;
    --primary-blue: #2979ff;
    --accent-red: #ff1744;
    --accent-gold: #ffd600;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(13, 20, 36, 0.65);
    --glass-border: rgba(0, 229, 255, 0.15);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: 
        linear-gradient(rgba(0, 229, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(600px) rotateX(60deg) translateY(-100px) translateZ(-200px);
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: perspective(600px) rotateX(60deg) translateY(0) translateZ(-200px); }
    100% { transform: perspective(600px) rotateX(60deg) translateY(50px) translateZ(-200px); }
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: float 12s ease-in-out infinite alternate;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-blue), transparent 70%);
}

.orb-2 {
    bottom: -10%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--primary-cyan), transparent 70%);
    animation-delay: -6s;
    animation-direction: alternate-reverse;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 50px) scale(1.1); }
}

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

.section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

/* Typography base */
h1, h2, h3 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-cyan), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
}

.gradient-gold {
    background: linear-gradient(135deg, var(--accent-gold), #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 50px;
    box-shadow: inset 0 0 20px rgba(0, 229, 255, 0.05), var(--glass-shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.glass-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.01) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-glow:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-cyan);
    box-shadow: 0 15px 35px rgba(0, 229, 255, 0.2), inset 0 0 15px rgba(0, 229, 255, 0.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.alert-badge {
    background: rgba(255, 214, 0, 0.1);
    border: 1px solid rgba(255, 214, 0, 0.3);
    color: var(--accent-gold);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-block;
    animation: pulseObj 2.5s infinite;
    text-transform: uppercase;
}

@keyframes pulseObj {
    0% { box-shadow: 0 0 0 0 rgba(255, 214, 0, 0.4); border-color: rgba(255, 214, 0, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(255, 214, 0, 0); border-color: rgba(255, 214, 0, 0.1); }
    100% { box-shadow: 0 0 0 0 rgba(255, 214, 0, 0); border-color: rgba(255, 214, 0, 0.3); }
}

.main-title {
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.highlight-secondary {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-muted);
    display: block;
    margin-top: 15px;
    font-family: var(--font-body);
}

.sub-headline {
    font-size: 1.25rem;
    color: #e2e8f0;
    max-width: 800px;
    margin: 10px auto 30px;
    font-weight: 300;
}

/* Buttons */
.cta-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 22px 50px;
    border-radius: 50px;
    text-transform: uppercase;
    font-family: var(--font-heading);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: 100%;
    max-width: 650px;
}

.primary-btn {
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-cyan), var(--primary-blue));
    background-size: 200% auto;
    color: #000;
    font-weight: 900;
    border: none;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.secondary-btn {
    background: linear-gradient(90deg, #ffaa00, var(--accent-gold), #ffaa00);
    background-size: 200% auto;
    color: #000;
    font-weight: 900;
    border: none;
    animation: gradientShift 3s ease infinite;
}

.glower {
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.5), inset 0 0 10px rgba(255,255,255,0.5);
}

.glower-gold {
    box-shadow: 0 0 20px rgba(255, 214, 0, 0.5), inset 0 0 10px rgba(255,255,255,0.5);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    transform: skewX(-20deg);
    animation: shine 4s infinite;
    z-index: -1;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

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

.pulse-fast-btn {
    animation: pulseLarge 1.5s infinite;
}

@keyframes pulseLarge {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.7); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(0, 229, 255, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 229, 255, 0); }
}

.hover-lift:hover {
    transform: translateY(-5px) scale(1.05);
}

.btn-text {
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.btn-subtext {
    font-size: 0.85rem;
    font-family: var(--font-body);
    text-transform: none;
    font-weight: 700;
    opacity: 0.8;
    margin-top: 4px;
}

/* Problem Section */
.error-card {
    border-color: rgba(255, 23, 68, 0.2);
    box-shadow: inset 0 0 20px rgba(255, 23, 68, 0.05);
}

.problem .section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

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

.glow-red {
    text-shadow: 0 0 15px rgba(255, 23, 68, 0.6);
}

.problem-text {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.problem-text p {
    margin-bottom: 24px;
}

.problem-text strong {
    color: var(--text-main);
}

.social-proof-container {
    margin-top: 40px;
    text-align: center;
}

.social-proof-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    border: 2px solid var(--primary-cyan);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.2);
    margin-bottom: 15px;
}

.social-proof-caption {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
}

.consequence-box {
    background: rgba(255, 23, 68, 0.1);
    border: 1px dashed rgba(255, 23, 68, 0.4);
    padding: 20px;
    border-radius: 12px;
    color: #ff8a8a !important;
    font-weight: 600;
    margin-top: 30px;
}

/* Solution Section */
.solution .section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 10px;
}
.subtitle {
    font-size: 1.6rem;
    color: var(--text-muted);
    font-weight: 400;
    font-family: var(--font-body);
    display: block;
    margin-top: 10px;
}

.solution-intro {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 60px;
    color: var(--text-main);
    font-weight: 300;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(0, 229, 255, 0.6));
}

.floating { animation: floatSmall 4s ease-in-out infinite alternate; }
.float-delay-1 { animation-delay: 1s; }
.float-delay-2 { animation-delay: 2s; }
.float-delay-3 { animation-delay: 3s; }

@keyframes floatSmall {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-cyan);
    letter-spacing: 0.5px;
}

.bonus-container {
    margin: 60px auto 0;
    text-align: center;
    max-width: 800px;
}

.bonus-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 214, 0, 0.3);
}

/* Offer Section */
.highlight-panel {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.golden-border {
    border-width: 2px;
    border-color: rgba(255, 214, 0, 0.4);
    box-shadow: 0 0 50px rgba(255, 214, 0, 0.1), inset 0 0 30px rgba(255, 214, 0, 0.05);
}

.offer-header {
    margin-bottom: 30px;
}

.offer .section-title {
    font-size: 2.8rem;
}

.strikethrough {
    text-decoration: line-through;
    opacity: 0.6;
}

.strikethrough-red {
    text-decoration: line-through;
    color: var(--accent-red);
    font-size: 1.4rem;
    font-weight: 600;
}

.offer-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.offer-highlight {
    font-size: 1.4rem;
    color: var(--text-main);
    font-weight: 600;
}

.cyber-box {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    padding: 40px;
    margin: 40px auto;
    max-width: 550px;
    border: 2px dashed rgba(0, 229, 255, 0.4);
    position: relative;
}

.cyber-box::before, .cyber-box::after {
    content: '';
    position: absolute;
    width: 20px; height: 20px;
    border: 2px solid var(--primary-cyan);
}

.cyber-box::before { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.cyber-box::after { bottom: -2px; right: -2px; border-left: none; border-top: none; }

.price-normal {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.price-special-container {
    margin-top: 15px;
}

.price-special {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--text-main);
}

.giant-price {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    font-family: var(--font-heading);
}

.urgency-wrapper {
    margin-top: 20px;
}

.cyber-pill {
    background: rgba(255, 23, 68, 0.1);
    border: 1px solid rgba(255, 23, 68, 0.3);
    border-radius: 50px;
    display: inline-block;
    padding: 12px 30px;
    margin-top: 30px;
    font-size: 1.2rem;
    font-weight: bold;
}

.neon-text {
    color: #ff4d4d;
    text-shadow: 0 0 10px rgba(255, 23, 68, 0.8), 0 0 20px rgba(255, 23, 68, 0.4);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

/* Guarantee Section */
.shield-card {
    border-color: rgba(255, 214, 0, 0.2);
    text-align: center;
}

.pulse-soft {
    animation: pulseSoft 3s infinite;
}

@keyframes pulseSoft {
    0% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(255, 214, 0, 0.3)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 25px rgba(255, 214, 0, 0.7)); }
    100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(255, 214, 0, 0.3)); }
}

.shield-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    display: inline-block;
}

.guarantee .section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.guarantee-text {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.glow-gold {
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(255, 214, 0, 0.4);
}

.mt-40 {
    margin-top: 40px;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: #02050a;
}

footer p {
    color: var(--text-muted);
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.5;
    margin-top: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.9s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Responsive Adjustments */
@media (max-width: 992px) {
    .main-title { font-size: 3rem; }
    .hero { padding-top: 40px; }
    .giant-price { font-size: 4rem; }
}

@media (max-width: 768px) {
    .glass-panel { padding: 30px 20px; border-radius: 16px; }
.section { padding: 80px 0; }
    
    .hero { min-height: auto; padding-top: 40px; padding-bottom: 20px; }
    .problem { padding-top: 20px; }
    
    .main-title { font-size: 2.2rem; }
    .cta-button { padding: 18px 25px; }
    
    .problem .section-title, .solution .section-title, .offer .section-title, .guarantee .section-title, .bonuses .section-title {
        font-size: 2rem;
    }
    .subtitle { font-size: 1.2rem; }
    .giant-price { font-size: 3.2rem; }
    .section { padding: 60px 0; }
    
    .cyber-box { padding: 25px; }
    .benefits-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .main-title { font-size: 1.8rem; }
    .alert-badge { font-size: 0.8rem; padding: 8px 15px; }
    .btn-text { font-size: 1rem; }
    .giant-price { font-size: 2.8rem; }
}

/* --- BONUSES SECTION --- */
.bonuses {
    position: relative;
    z-index: 10;
}

.bonuses .section-title {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

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

.bonuses-intro {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 50px;
}

.bonuses-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.bonus-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    position: relative;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.bonus-img-item {
    width: 250px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.bonus-wrapper:hover .bonus-img-item {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 229, 255, 0.4);
}

.bonus-content {
    flex-grow: 1;
}

.bonus-badge {
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-cyan));
    color: #000;
    font-weight: 900;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.bonus-title {
    font-size: 1.8rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.bonus-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.bonus-value {
    font-size: 1.1rem;
    color: var(--text-main);
}

.bonus-value s {
    color: var(--accent-red);
    opacity: 0.8;
}

@media (max-width: 600px) {
    .bonuses-grid {
        gap: 30px;
    }
    .bonus-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .bonus-img-item {
        width: 100%;
        max-width: 280px;
    }
    .bonus-title {
        font-size: 1.5rem;
    }
}
