﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Syne:wght@500;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --primary: #d9f99d;
    --primary-hover: #bef264;
    --accent: #c084fc;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --font-head: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background-color: var(--bg-dark); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }

/* Accessibility */
.skip-link { position: absolute; top: -40px; left: 0; background: var(--primary); color: #000; padding: 8px; z-index: 10000; transition: top 0.3s; }
.skip-link:focus { top: 0; }

/* Header & Nav */
header { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 5%; background: rgba(15, 23, 42, 0.95); position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.05); }
.logo { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--primary); text-decoration: none; display: flex; align-items: center; gap: 10px; }
.logo img { width: 35px; height: 35px; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: var(--text-main); text-decoration: none; font-weight: 600; transition: color 0.3s; }
.nav-links a:hover { color: var(--primary); }
.burger-btn { display: none; background: none; border: none; color: var(--text-main); font-size: 2rem; cursor: pointer; }

/* Hero */
.hero { padding: 8rem 5% 4rem; display: flex; flex-direction: column; align-items: center; text-align: center; background: radial-gradient(circle at top, #1e293b, #0f172a); min-height: 80vh; justify-content: center;}
.hero h1 { font-family: var(--font-head); font-size: 4.5rem; line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -1px; max-width: 900px;}
.hero h1 span { color: var(--primary); }
.hero p { font-size: 1.2rem; color: var(--text-muted); max-width: 700px; margin-bottom: 2.5rem; }
.btn { display: inline-block; background: var(--primary); color: #000; padding: 1rem 2.5rem; border-radius: 50px; font-weight: 700; text-decoration: none; font-family: var(--font-head); font-size: 1.1rem; transition: all 0.3s; border: none; cursor: pointer; }
.btn:hover { background: var(--primary-hover); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(217, 249, 157, 0.2); }

/* Random Sections */
.section { padding: 6rem 5%; }
.section-title { font-family: var(--font-head); font-size: 3rem; margin-bottom: 3rem; text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.img-wrapper img { width: 100%; border-radius: 24px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); object-fit: cover; aspect-ratio: 4/3; }
.text-content h2 { font-family: var(--font-head); font-size: 2.5rem; margin-bottom: 1.5rem; color: var(--accent); }
.text-content ul { list-style: none; margin-top: 1.5rem; }
.text-content li { margin-bottom: 1rem; display: flex; align-items: flex-start; gap: 10px; }
.text-content li i { color: var(--primary); margin-top: 5px; }

/* Features (Asymmetric) */
.features-container { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; margin-top: 3rem; }
.feature-card { background: var(--bg-card); padding: 3rem; border-radius: 24px; flex: 1 1 300px; border: 1px solid rgba(255,255,255,0.05); transition: transform 0.3s; }
.feature-card:hover { transform: translateY(-10px); }
.feature-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 1.5rem; }
.feature-card h3 { font-family: var(--font-head); margin-bottom: 1rem; font-size: 1.5rem; }

/* Form Section */
.form-section { background: var(--bg-card); border-radius: 30px; padding: 4rem; max-width: 800px; margin: 0 auto; position: relative; overflow: hidden; }
.form-section::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(192,132,252,0.1) 0%, transparent 70%); pointer-events: none; }
.lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; position: relative; z-index: 1; }
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
.lead-form input, .lead-form textarea { padding: 1.2rem; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); background: rgba(0,0,0,0.2); color: #fff; font-family: var(--font-body); font-size: 1rem; transition: border-color 0.3s; }
.lead-form input:focus, .lead-form textarea:focus { outline: none; border-color: var(--primary); }
.checkbox-group { display: flex; flex-direction: row; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--text-muted); }
.checkbox-group input { margin-top: 4px; }

/* FAQ */
.faq-item { background: var(--bg-card); margin-bottom: 1rem; border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); }
.faq-question { padding: 1.5rem; width: 100%; text-align: left; background: none; border: none; color: var(--text-main); font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; }
.faq-answer { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out, padding 0.3s ease; color: var(--text-muted); }
.faq-item.active .faq-answer { padding: 0 1.5rem 1.5rem; max-height: 500px; }

/* Trust Layer */
.trust-layer { background: #080c16; padding: 3rem 5%; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.85rem; color: #64748b; }
.trust-layer h3 { color: #94a3b8; font-family: var(--font-head); margin-bottom: 1rem; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 1px; }
.trust-layer p { margin-bottom: 0.5rem; max-width: 900px; margin-inline: auto; }
.trust-layer a { color: var(--primary); text-decoration: none; }

/* Footer */
footer { background: #020617; padding: 3rem 5% 2rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
.footer-col h4 { font-family: var(--font-head); color: var(--primary); margin-bottom: 1.5rem; font-size: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); color: #475569; font-size: 0.8rem; }

/* Cookies Banner */
.cookie-banner { position: fixed; bottom: -100%; left: 0; width: 100%; background: rgba(15, 23, 42, 0.98); backdrop-filter: blur(10px); padding: 1.5rem 5%; display: flex; justify-content: space-between; align-items: center; z-index: 9999; transition: bottom 0.5s ease; border-top: 1px solid var(--primary); box-shadow: 0 -10px 30px rgba(0,0,0,0.5); }
.cookie-banner.show { bottom: 0; }
.cookie-text { font-size: 0.9rem; color: var(--text-muted); max-width: 70%; }
.cookie-btns { display: flex; gap: 1rem; }
.btn-outline { background: transparent; border: 1px solid var(--text-muted); color: var(--text-main); padding: 0.8rem 1.5rem; border-radius: 50px; cursor: pointer; transition: all 0.3s; }
.btn-outline:hover { background: rgba(255,255,255,0.1); }

/* Text Pages (Privacy, Terms) */
.legal-content { max-width: 800px; margin: 4rem auto; padding: 0 5%; }
.legal-content h1 { font-family: var(--font-head); font-size: 3rem; margin-bottom: 2rem; color: var(--accent); }
.legal-content h2 { font-family: var(--font-head); margin: 2rem 0 1rem; color: var(--primary); }
.legal-content p, .legal-content li { margin-bottom: 1rem; color: var(--text-muted); }

@media (max-width: 768px) {
    .nav-links { position: fixed; top: 0; right: -100%; width: 250px; height: 100vh; background: var(--bg-card); flex-direction: column; padding: 6rem 2rem; transition: right 0.3s; box-shadow: -5px 0 15px rgba(0,0,0,0.5); }
    .nav-links.active { right: 0; }
    .burger-btn { display: block; z-index: 1001; }
    .hero h1 { font-size: 2.8rem; }
    .grid-2 { grid-template-columns: 1fr; }
    .lead-form { grid-template-columns: 1fr; }
    .cookie-banner { flex-direction: column; gap: 1rem; text-align: center; }
    .cookie-text { max-width: 100%; }
}
