:root {
    --bg-dark: #120418;
    --bg-card: #1f0b29;
    --primary: #c300ff; /* Neon Purple */
    --primary-glow: rgba(195, 0, 255, 0.5);
    --secondary: #00ffff; /* Cyber Blue */
    --text-main: #ffffff;
    --text-muted: #bdaec4;
    --accent: #ff0055;
    --success: #00ff9d;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

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

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

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Hero Section */
.hero-section {
    padding: 60px 0;
    text-align: center;
    background: radial-gradient(circle at 50% 50%, #2a0a45 0%, var(--bg-dark) 70%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.hero-badge {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: #000;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.9rem;
    box-shadow: 0 0 15px var(--primary-glow);
}

h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 15px;
    background: linear-gradient(180deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.cta-button {
    background: linear-gradient(90deg, var(--accent), var(--primary));
    color: white;
    font-weight: 800;
    padding: 18px 32px;
    border-radius: 50px;
    font-size: 1.2rem;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(255, 0, 85, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 85, 0.6);
}

.crypto-note {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 15px;
}

.floating-phone {
    width: 100%;
    max-width: 350px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Audience Section */
.audience-section {
    padding: 60px 0;
    background: var(--bg-card);
}

.audience-section h2, .benefits-section h2, .faq-section h2 {
    text-align: center;
    color: var(--secondary);
    margin-bottom: 40px;
    font-size: 1.8rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.checklist-grid {
    display: grid;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.check-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.check-icon {
    color: var(--success);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Benefits Section */
.benefits-section {
    padding: 60px 0;
}

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

.benefit-card {
    background: border-box;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 16px;
    background: linear-gradient(145deg, #240d30, #1a0624);
}

.benefit-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.benefit-summary {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 30px;
    color: #fff;
}

/* Offer Section */
.offer-section {
    padding: 60px 0;
    text-align: center;
}

.offer-box {
    background: linear-gradient(180deg, #2A0A3B 0%, #150021 100%);
    border: 2px solid var(--primary);
    border-radius: 24px;
    padding: 40px 20px;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 40px rgba(195, 0, 255, 0.2);
}

.offer-tag {
    background: var(--accent);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.price-container {
    margin: 20px 0 10px;
}

.currency {
    font-size: 2rem;
    vertical-align: top;
    color: var(--text-muted);
}

.value {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    font-family: var(--font-heading);
}

.price-compare {
    color: var(--secondary);
    font-style: italic;
    margin-bottom: 30px;
}

.offer-list {
    list-style: none;
    text-align: left;
    margin: 0 auto 30px;
    display: inline-block;
}

.offer-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: var(--bg-card);
}

.accordion-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    max-width: 700px;
    margin: 0 auto;
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-heading);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--text-muted);
}

.accordion-content p {
    padding-bottom: 20px;
}

.icon {
    font-weight: 300;
    font-size: 1.5rem;
    color: var(--primary);
}

/* Guarantee Section */
.guarantee-section {
    padding: 60px 0;
    text-align: center;
}

.guarantee-box {
    background: #1a1a1a;
    display: inline-block;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #333;
}

.lock-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.guarantee-box h3 {
    margin-bottom: 10px;
}

footer {
    text-align: center;
    padding: 40px 0;
    color: #666;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .value {
        font-size: 4rem;
    }
    
    .checklist-grid {
        grid-template-columns: 1fr;
    }
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 85, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 0, 85, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 85, 0);
    }
}
