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

:root {
    --primary: #0B132B;   /* Deep Space Navy */
    --secondary: #1C2541; /* Slate Blue */
    --accent: #00FFCC;    /* Neon Teal */
    --text-dark: #1A1A1A;
    --text-light: #F8F9FA;
    --bg-light: #F4F6F9;
    --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background-color: var(--bg-light); color: var(--text-dark); line-height: 1.6; }
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; color: var(--primary); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* Header */
header { display: flex; justify-content: space-between; align-items: center; padding: 20px 5%; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.logo-box { display: flex; align-items: center; gap: 12px; font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--primary); }
.logo-box img { width: 36px; height: 36px; }
nav { display: flex; gap: 30px; }
nav a { font-weight: 500; font-size: 0.95rem; transition: color 0.3s; }
nav a:hover { color: var(--accent); }
.btn-cta { background: var(--primary); color: var(--accent); padding: 12px 24px; border-radius: 8px; font-weight: 700; transition: all 0.3s; border: 2px solid var(--primary); }
.btn-cta:hover { background: transparent; color: var(--primary); }

/* Hero */
.hero { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 100px 5% 80px; background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); color: var(--text-light); }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--white); margin-bottom: 24px; line-height: 1.1; max-width: 900px; }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 1.2rem; opacity: 0.9; margin-bottom: 40px; max-width: 700px; }
.hero-badges { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; margin-top: 30px; font-size: 0.9rem; font-weight: 600; color: #8A9BB8; }
.hero-badges span { display: flex; align-items: center; gap: 8px; }
.hero-badges i { color: var(--accent); }

/* Random Section (Trust/Problem) */
.random-section { padding: 60px 5%; background: var(--white); text-align: center; border-bottom: 1px solid #E2E8F0; }
.random-section h3 { font-size: 1.8rem; margin-bottom: 15px; }
.random-section p { font-size: 1.1rem; color: #4A5568; max-width: 800px; margin: 0 auto; }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
.stat-box { padding: 30px; background: var(--bg-light); border-radius: 12px; border-left: 4px solid var(--accent); }
.stat-num { font-size: 2.5rem; font-weight: 800; color: var(--primary); margin-bottom: 10px; font-family: 'Outfit', sans-serif; }

/* About */
.about { padding: 80px 5%; max-width: 1200px; margin: 0 auto; text-align: center; }
.about h2 { font-size: 2.5rem; margin-bottom: 24px; }
.about p { font-size: 1.1rem; color: #4A5568; max-width: 800px; margin: 0 auto 20px; }

/* Features (Asymmetric) */
.features { padding: 80px 5%; background: var(--white); }
.feat-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feat-img-wrapper { position: relative; }
.feat-img-wrapper::before { content: ''; position: absolute; top: -20px; left: -20px; width: 100%; height: 100%; background: var(--accent); border-radius: 20px; z-index: 0; opacity: 0.2; }
.feat-img-wrapper img { position: relative; z-index: 1; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.feat-text h2 { font-size: 2.5rem; margin-bottom: 30px; }
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.feat-list li { display: flex; gap: 15px; align-items: flex-start; }
.feat-icon { background: var(--primary); color: var(--accent); width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.feat-list h4 { font-size: 1.2rem; margin-bottom: 5px; }
.feat-list p { color: #4A5568; font-size: 0.95rem; }

/* FAQ */
.faq { padding: 80px 5%; background: var(--bg-light); }
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-wrap h2 { text-align: center; font-size: 2.5rem; margin-bottom: 40px; }
details { background: var(--white); border-radius: 12px; margin-bottom: 15px; box-shadow: 0 4px 6px rgba(0,0,0,0.02); overflow: hidden; border: 1px solid #E2E8F0; }
summary { padding: 20px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; list-style: none; color: var(--primary); font-size: 1.1rem; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '\f067'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--accent); transition: 0.3s; background: var(--primary); width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; }
details[open] summary::after { transform: rotate(45deg); }
.faq-content { padding: 0 20px 20px; color: #4A5568; }

/* Form Section (Questionnaire + Lead Gen) */
.lead-section { padding: 100px 5%; background: var(--secondary); color: var(--white); }
.form-container { max-width: 700px; margin: 0 auto; background: var(--white); padding: 50px; border-radius: 20px; box-shadow: 0 25px 50px rgba(0,0,0,0.2); color: var(--text-dark); position: relative; min-height: 450px; }
.form-container h2 { text-align: center; margin-bottom: 10px; font-size: 2rem; }
.form-container p.subtitle { text-align: center; color: #718096; margin-bottom: 30px; }

.form-step { display: none; opacity: 0; transition: opacity 0.4s ease, transform 0.4s ease; transform: translateY(10px); }
.form-step.active { display: block; opacity: 1; transform: translateY(0); }

.input-group { margin-bottom: 20px; }
.input-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.95rem; }
.input-group select, .input-group input { width: 100%; padding: 14px; border: 2px solid #E2E8F0; border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 1rem; transition: 0.3s; }
.input-group select:focus, .input-group input:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px rgba(0, 255, 204, 0.2); }
.form-nav { display: flex; justify-content: space-between; margin-top: 30px; }
.btn-next, .btn-submit { background: var(--primary); color: var(--accent); padding: 14px 28px; border: none; border-radius: 8px; font-weight: 700; cursor: pointer; transition: 0.3s; font-size: 1.05rem; width: 100%; font-family: 'Outfit', sans-serif; }
.btn-next:hover, .btn-submit:hover { background: var(--accent); color: var(--primary); }

/* Fake Calculation Screen */
.calc-screen { text-align: center; padding: 40px 0; }
.spinner { width: 60px; height: 60px; border: 6px solid #E2E8F0; border-top-color: var(--accent); border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto 20px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Success Screen */
.success-screen { text-align: center; padding: 40px 0; display: none; }
.success-screen i { font-size: 4rem; color: #48BB78; margin-bottom: 20px; }
.success-screen h3 { font-size: 1.8rem; margin-bottom: 10px; }

/* Legal Pages */
.legal-main { padding: 80px 5%; background: var(--bg-light); }
.legal-card { max-width: 900px; margin: 0 auto; background: var(--white); padding: 60px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.legal-card h1 { font-size: 2.5rem; margin-bottom: 30px; border-bottom: 2px solid var(--bg-light); padding-bottom: 15px; }
.legal-card h2 { font-size: 1.5rem; margin: 30px 0 15px; color: var(--secondary); }
.legal-card p, .legal-card ul { margin-bottom: 20px; color: #4A5568; }
.legal-card ul { padding-left: 20px; }
.map-wrap { margin-top: 40px; border-radius: 12px; overflow: hidden; border: 1px solid #E2E8F0; height: 350px; }

/* Footer */
footer { background: var(--primary); color: #A0AEC0; padding: 60px 5% 30px; text-align: center; }
.footer-logo { font-family: 'Outfit', sans-serif; font-size: 1.5rem; color: var(--white); font-weight: 800; margin-bottom: 30px; display: flex; justify-content: center; align-items: center; gap: 10px; }
.footer-logo img { width: 30px; height: 30px; }
.footer-links { display: flex; justify-content: center; gap: 25px; margin-bottom: 30px; flex-wrap: wrap; }
.footer-links a { color: #A0AEC0; transition: 0.3s; font-size: 0.95rem; }
.footer-links a:hover { color: var(--accent); }
.copyright { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; font-size: 0.85rem; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: -120%; left: 0; width: 100%; background: var(--white); padding: 25px 5%; box-shadow: 0 -10px 30px rgba(0,0,0,0.1); z-index: 9999; display: flex; justify-content: space-between; align-items: center; transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1); border-top: 4px solid var(--accent); }
.cookie-banner.show { bottom: 0; }
.cookie-text { font-size: 0.9rem; max-width: 65%; color: var(--text-dark); }
.cookie-btns { display: flex; gap: 15px; }
.btn-cook { padding: 10px 24px; border-radius: 8px; font-weight: 600; cursor: pointer; border: none; font-family: 'Inter', sans-serif; }
.btn-cook.accept { background: var(--primary); color: var(--white); }
.btn-cook.decline { background: var(--bg-light); color: var(--text-dark); }

/* Responsive */
@media (max-width: 768px) {
    nav { display: none; }
    .hero { padding: 60px 5%; }
    .hero h1 { font-size: 2.2rem; }
    .feat-container { grid-template-columns: 1fr; }
    .cookie-banner { flex-direction: column; gap: 20px; text-align: center; }
    .cookie-text { max-width: 100%; }
    .legal-card { padding: 40px 20px; }
}
