:root {
    /* Color Palette */
    --bg-primary: #07080d;
    --bg-secondary: #0f121b;
    --bg-card: rgba(15, 23, 42, 0.6);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    /* Neon Accents */
    --neon-cyan: #00f0ff;
    --neon-blue: #0072ff;
    --neon-red: #ff0055;
    --neon-green: #00ff88;
    --neon-purple: #8a2be2;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Borders & Gradients */
    --border-glass: rgba(255, 255, 255, 0.08);
    --gradient-blue: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    --gradient-red: linear-gradient(135deg, #ff416c, #ff4b2b);
    
    /* Shadows */
    --shadow-cyan: 0 0 20px rgba(0, 240, 255, 0.3);
    --shadow-red: 0 0 20px rgba(255, 0, 85, 0.3);
    --shadow-card: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

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

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

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-2-col {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.dark-section {
    background-color: var(--bg-secondary);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

/* Typography Gradients */
.text-gradient-cyan {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-gradient-red {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-gradient-green {
    background: linear-gradient(135deg, #00ff88, #00b35c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.highlight-red {
    color: var(--neon-red);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 0, 85, 0.4);
}

/* Top Alert Bar */
.top-bar {
    background-color: #ff005515;
    border-bottom: 1px solid rgba(255, 0, 85, 0.2);
    padding: 0.5rem 0;
    font-size: 0.85rem;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.top-bar p { margin: 0; display: inline-flex; align-items: center; gap: 10px; }

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--neon-red);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

/* Hero Section */
#hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 50% 0%, rgba(0, 114, 255, 0.15) 0%, transparent 70%);
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding-top: 2rem;
}

@media (min-width: 992px) {
    .hero-container {
        flex-direction: row;
        justify-content: space-between;
    }
    .hero-content {
        flex: 1;
        max-width: 600px;
    }
    .hero-image-wrapper {
        flex: 1;
        display: flex;
        justify-content: center;
    }
}

.headline-content {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.headline-content.hidden {
    display: none;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.danger-badge {
    background: rgba(255, 0, 85, 0.1);
    border: 1px solid var(--neon-red);
    color: var(--neon-red);
    box-shadow: 0 0 10px rgba(255, 0, 85, 0.2);
}

.success-badge {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-content h1 { font-size: 3.5rem; }
}

.subheadline {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1rem;
    border-left: 3px solid var(--neon-cyan);
    padding-left: 1rem;
    margin-bottom: 2.5rem;
    background: linear-gradient(90deg, rgba(0,240,255,0.05) 0%, transparent 100%);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
}

@media (min-width: 768px) {
    .cta-button { width: auto; }
}

.primary-cta {
    background: var(--gradient-blue);
    color: white;
    box-shadow: var(--shadow-cyan);
    position: relative;
    overflow: hidden;
}

.primary-cta::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s ease;
}

.primary-cta:hover::before {
    left: 100%;
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.4);
}

.giant-cta {
    font-size: 1.3rem;
    padding: 1.5rem 3rem;
    border-radius: 12px;
    margin: 2rem 0;
}

/* Headline Toggle Switch */
.headline-toggle-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-card);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid var(--border-glass);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.toggle-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input { opacity: 0; width: 0; height: 0; }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: var(--neon-red);
    transition: .4s;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--neon-green);
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.slider.round { border-radius: 34px; }
.slider.round:before { border-radius: 50%; }

/* Book Mockup 3D Effect */
.book-mockup {
    position: relative;
    width: 220px;
    height: 320px;
    perspective: 1000px;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

@media (min-width: 768px) {
    .book-mockup { width: 280px; height: 400px; }
}

.book-front {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--bg-secondary);
    border-radius: 5px 15px 15px 5px;
    box-shadow: inset 4px 0 10px rgba(0,0,0,0.1), 15px 20px 35px rgba(0,0,0,0.4), inset -1px 0 2px rgba(255,255,255,0.3);
    border: 1px solid rgba(0, 240, 255, 0.3);
    transform-origin: left center;
    transform: rotateY(-15deg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.book-front::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.book-spine {
    position: absolute;
    width: 30px;
    height: 100%;
    background: #040508;
    left: -15px;
    top: 0;
    transform-origin: right center;
    transform: rotateY(75deg);
    border-radius: 5px 0 0 5px;
}

.book-cover-content {
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, #030a1c 100%);
    position: relative;
}

.book-tag {
    font-size: 0.7rem;
    background: var(--neon-cyan);
    color: #000;
    padding: 2px 8px;
    border-radius: 4px;
    align-self: flex-start;
    margin-bottom: 1rem;
    font-weight: 700;
}

.book-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 0 10px rgba(0,240,255,0.5);
}

.book-subtitle {
    font-size: 1rem;
    color: var(--neon-cyan);
    margin-bottom: auto;
    font-weight: 600;
}

.book-author {
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
}

.glow-effect {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--neon-cyan);
    filter: blur(80px);
    opacity: 0.2;
    z-index: 1;
    border-radius: 50%;
}

/* Identification Section */
.questions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .questions-grid { grid-template-columns: repeat(3, 1fr); }
}

.question-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.question-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 240, 255, 0.3);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: var(--neon-cyan);
}

.icon-wrapper svg { width: 30px; height: 30px; }

.question-card h3 {
    font-size: 1.2rem;
    font-weight: 500;
}

.harsh-truth-box {
    background: rgba(255, 0, 85, 0.05);
    border-left: 4px solid var(--neon-red);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Chat & Pain Section */
.error-list {
    list-style: none;
    margin: 2rem 0;
}

.error-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    background: rgba(255,255,255,0.03);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255,0,85,0.1);
}

.x-icon { font-size: 1.2rem; }

.chat-simulator-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 500px;
    background: #111;
    border-radius: 30px;
    border: 8px solid #222;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .phone-mockup { width: 340px; height: 550px; }
}

.chat-header {
    background: var(--bg-secondary);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #333;
}

.chat-avatar {
    width: 40px; height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.chat-info { display: flex; flex-direction: column; }
.chat-name { font-weight: 600; font-size: 0.9rem; }
.chat-status { font-size: 0.75rem; color: var(--neon-green); }

.chat-body {
    flex: 1;
    background: #0a0a0a;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
}

.chat-bubble {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
    animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    opacity: 0;
    transform: scale(0.8);
}

.chat-bubble.sent {
    align-self: flex-end;
    background: #005c4b; /* WhatsApp dark sent color */
    color: white;
    border-bottom-right-radius: 2px;
}

.chat-bubble.received {
    align-self: flex-start;
    background: #202c33; /* WhatsApp dark received color */
    color: white;
    border-bottom-left-radius: 2px;
}

.chat-time {
    display: block;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.5);
    text-align: right;
    margin-top: 5px;
}

.typing-indicator {
    align-self: flex-start;
    background: #202c33;
    padding: 12px 15px;
    border-radius: 15px;
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}

.typing-indicator span {
    width: 6px; height: 6px;
    background: #aaa;
    border-radius: 50%;
    animation: typing 1s infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

/* Calculator Section */
.calculator-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-width: 800px;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
}

.calc-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.calc-checkbox {
    display: block;
    position: relative;
    padding-left: 45px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 1.1rem;
    user-select: none;
    transition: color 0.3s;
}

.calc-checkbox:hover { color: var(--neon-cyan); }

.calc-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    transition: all 0.3s;
}

.calc-checkbox:hover input ~ .checkmark {
    background-color: rgba(255,255,255,0.2);
}

.calc-checkbox input:checked ~ .checkmark {
    background-color: var(--neon-red);
    border-color: var(--neon-red);
    box-shadow: 0 0 10px rgba(255,0,85,0.5);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.calc-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.calc-checkbox .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.calc-result {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0,0,0,0.3);
    border-radius: 12px;
    border-top: 2px solid var(--neon-red);
}

.loss-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--neon-red);
    text-shadow: 0 0 20px rgba(255,0,85,0.5);
    font-family: var(--font-heading);
    margin: 1rem 0;
}

/* Solution Section */
.product-name {
    font-size: 2.5rem;
    margin: 1rem 0 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
    width: 100%;
}

@media (min-width: 768px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--neon-cyan);
    text-align: left;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateX(10px);
}

.check-icon {
    background: rgba(0,240,255,0.1);
    color: var(--neon-cyan);
    width: 30px; height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    flex-shrink: 0;
}

/* Discovery List */
.discovery-list {
    width: 100%;
    max-width: 700px;
    margin-top: 3rem;
}

.discovery-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.highlight-item {
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 8px;
    margin-top: 1rem;
}

.neon-bullet {
    width: 10px; height: 10px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-cyan);
    flex-shrink: 0;
}

.and-more {
    margin-top: 2rem;
    font-weight: bold;
    color: var(--neon-cyan);
}

/* Authority */
.cyber-frame {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
    position: relative;
    z-index: 2;
}

.lawyer-silhouette {
    width: 100%; height: 100%;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
}

.lawyer-silhouette svg { width: 100px; height: 100px; opacity: 0.5; }

.quote-box {
    margin-top: 2rem;
    font-style: italic;
    border-left: 3px solid var(--neon-cyan);
    padding-left: 1rem;
    color: #cbd5e1;
}

/* Urgency / Alert */
.alert-section {
    background: linear-gradient(to bottom, var(--bg-primary), rgba(255,0,85,0.05), var(--bg-primary));
}

.alert-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.urgency-text {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Offer */
.offer-box {
    background: var(--bg-card);
    border: 1px solid rgba(0,240,255,0.3);
    border-radius: 16px;
    padding: 3rem 2rem;
    margin-top: 3rem;
    box-shadow: var(--shadow-cyan);
    max-width: 600px;
    width: 100%;
}

.offer-box p { margin-bottom: 1.5rem; font-size: 1.1rem; }

.cta-sub {
    font-size: 0.9rem !important;
    color: var(--text-muted);
    margin-top: 1rem;
}

.price-display {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin: 1.5rem 0 0.5rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.price-display .currency {
    font-size: 2rem;
    font-weight: 700;
    margin-right: 5px;
}

.price-display .amount {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1;
}

.price-display .cents {
    font-size: 2rem;
    font-weight: 700;
}

.price-sub {
    font-size: 0.9rem !important;
    color: var(--text-muted);
    margin-bottom: 2.5rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Guarantee */
.shield-bg {
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 24 24" fill="none" stroke="rgba(0,240,255,0.05)" stroke-width="1" xmlns="http://www.w3.org/2000/svg"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"></path></svg>') center/cover;
}

.guarantee-icon svg {
    width: 80px; height: 80px;
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 10px rgba(0,240,255,0.5));
}

/* Footer */
footer {
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: #040508;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-links { margin: 1rem 0; }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--neon-cyan); }
.disclaimer { font-size: 0.75rem; opacity: 0.5; max-width: 800px; margin: 0 auto; }

/* Animations */
@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

@keyframes float {
    0% { transform: translateY(0px) rotateY(-15deg); }
    50% { transform: translateY(-15px) rotateY(-12deg); }
    100% { transform: translateY(0px) rotateY(-15deg); }
}

@keyframes popIn {
    0% { opacity: 0; transform: scale(0.8) translateY(10px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes typing {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
