:root {
    --bg-color: #050505;
    --card-bg: rgba(255, 255, 255, 0.05);
    --primary: #00ff9d;
    --primary-glow: rgba(0, 255, 157, 0.4);
    --secondary: #bd00ff;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --font-main: 'Outfit', sans-serif;
    --gradient-main: linear-gradient(135deg, #00ff9d 0%, #00b8ff 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Static Background Gradient */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 255, 157, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(189, 0, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 184, 255, 0.1) 0%, transparent 50%);
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(circle at 70% 20%, rgba(0, 255, 157, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 30% 80%, rgba(189, 0, 255, 0.1) 0%, transparent 40%);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1,
h2,
h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 2rem;
    color: var(--primary);
    text-align: center;
}

.highlight {
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
}

.subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

.hero-bg-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, rgba(0, 255, 157, 0.1) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.alert-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 50, 50, 0.15);
    border: 1px solid rgba(255, 50, 50, 0.3);
    color: #ff4d4d;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
}

.pulse {
    width: 8px;
    height: 8px;
    background-color: #ff4d4d;
    border-radius: 50%;
    animation: pulse-red 2s infinite;
}

.hero-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.5s ease;
    z-index: 10;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-indicator svg path {
    filter: drop-shadow(0 0 10px rgba(0, 255, 157, 0.6));
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: var(--gradient-main);
    color: #000;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 0 20px var(--primary-glow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px var(--primary-glow);
}

.pulse-button {
    animation: pulse-green 2s infinite;
}

/* Cards & Grid */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Sections */
.pain-points,
.solution,
.how-it-works,
.offer,
.guarantee {
    padding: 3rem 0;
}

/* Features */
.features-grid {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 3px solid var(--primary);
}

.check-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

/* How It Works */
.steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-number {
    background: var(--primary);
    color: #000;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px var(--primary-glow);
}

.chat-bubble {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 20px;
    margin-top: 1rem;
    display: inline-block;
    font-size: 0.9rem;
}

.chat-bubble.user {
    background: #2a2a2a;
    border-bottom-right-radius: 4px;
    margin-left: auto;
}

.chat-bubble.bot {
    background: rgba(0, 255, 157, 0.2);
    color: var(--primary);
    border-bottom-left-radius: 4px;
    margin-right: auto;
}

.arrow {
    font-size: 2rem;
    color: var(--text-muted);
    transform: rotate(90deg);
}

/* Offer Section */
.offer {
    padding: 4rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 157, 0.05) 100%);
}

.offer-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid var(--primary);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0, 255, 157, 0.1);
}

.offer-header h2 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.price-box {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

.scarcity {
    color: #ff4d4d;
    font-weight: 600;
    margin-bottom: 1rem;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
}

.new-price {
    font-size: 1.2rem;
    margin: 1rem 0;
}

.big-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin: 0.5rem 0;
    text-shadow: 0 0 30px var(--primary-glow);
}

.payment-info {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.benefits-list {
    list-style: none;
    text-align: left;
    max-width: 300px;
    margin: 0 auto 2rem;
}

.benefits-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Guarantee */
.guarantee {
    padding: 4rem 0;
    text-align: center;
}

.guarantee-box {
    max-width: 500px;
    margin: 0 auto;
}

.shield-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-note {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

/* Animations */
@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 77, 77, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 77, 77, 0);
    }
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 157, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 255, 157, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 157, 0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Media Queries */
@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }

    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        flex-direction: row;
        justify-content: center;
    }

    .arrow {
        transform: rotate(0deg);
    }
}

/* Utility for animation on scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}