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

:root {
    --bg-dark: #09090b;
    --bg-card: #18181b;
    --primary: #f43f5e;
    --primary-hover: #e11d48;
    --accent: #8b5cf6;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', 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: -50px; left: 0; background: var(--primary); color: #fff; padding: 12px; z-index: 10000; font-weight: bold; transition: top 0.3s; text-decoration: none; }
.skip-link:focus { top: 0; }

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

/* Hero */
.hero { padding: 12rem 5% 8rem; display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; min-height: 90vh; justify-content: center; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -20%; left: -10%; width: 50%; height: 50%; background: radial-gradient(circle, rgba(244,63,94,0.15) 0%, transparent 70%); filter: blur(60px); z-index: -1; }
.hero::after { content: ''; position: absolute; bottom: -20%; right: -10%; width: 50%; height: 50%; background: radial-gradient(circle, rgba(139,92,246,0.15) 0%, transparent 70%); filter: blur(60px); z-index: -1; }
.hero h1 { font-family: var(--font-head); font-size: clamp(3rem, 8vw, 6.5rem); line-height: 1.05; margin-bottom: 1.5rem; letter-spacing: -2px; text-transform: uppercase; }
.hero h1 span { background: -webkit-linear-gradient(45deg, var(--primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 1.25rem; color: var(--text-muted); max-width: 700px; margin-bottom: 3rem; }
.btn { display: inline-block; background: var(--primary); color: #fff; padding: 1.2rem 3rem; border-radius: 50px; font-weight: 600; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s; border: none; cursor: pointer; font-family: var(--font-head); }
.btn:hover { background: var(--primary-hover); transform: translateY(-3px); box-shadow: 0 10px 25px rgba(244, 63, 94, 0.3); }

/* Sections & Grids */
.section { padding: 8rem 5%; }
.section-title { font-family: var(--font-head); font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 4rem; text-align: center; letter-spacing: -1px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.img-wrapper { position: relative; border-radius: 24px; overflow: hidden; }
.img-wrapper::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1); border-radius: 24px; pointer-events: none; }
.img-wrapper img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transform: scale(1.02); transition: transform 0.5s; }
.img-wrapper:hover img { transform: scale(1.05); }
.text-content h2 { font-family: var(--font-head); font-size: 3rem; margin-bottom: 1.5rem; line-height: 1.1; }
.text-content ul { list-style: none; margin-top: 2rem; }
.text-content li { margin-bottom: 1.2rem; display: flex; align-items: flex-start; gap: 15px; font-size: 1.1rem; color: var(--text-muted); }
.text-content li i { color: var(--primary); margin-top: 4px; font-size: 1.2rem; }

/* Features (Asymmetric) */
.features-wrapper { display: flex; flex-direction: column; gap: 6rem; }
.feature-block { display: flex; align-items: center; gap: 4rem; background: var(--bg-card); padding: 3rem; border-radius: 30px; border: 1px solid rgba(255,255,255,0.03); }
.feature-block:nth-child(even) { flex-direction: row-reverse; }
.feature-block .img-container { flex: 1; }
.feature-block .img-container img { width: 100%; border-radius: 20px; object-fit: cover; height: 350px; }
.feature-block .text-container { flex: 1; }
.feature-block h3 { font-family: var(--font-head); font-size: 2.2rem; margin-bottom: 1rem; color: var(--accent); }

/* Form Section */
.form-section { background: linear-gradient(145deg, #18181b 0%, #09090b 100%); border-radius: 40px; padding: 5rem; max-width: 900px; margin: 0 auto; border: 1px solid rgba(255,255,255,0.05); box-shadow: 0 25px 50px rgba(0,0,0,0.5); position: relative; }
.lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
.lead-form input, .lead-form textarea { padding: 1.2rem 1.5rem; border-radius: 16px; border: 1px solid rgba(255,255,255,0.1); background: rgba(0,0,0,0.3); color: #fff; font-family: var(--font-body); font-size: 1rem; transition: all 0.3s; }
.lead-form input:focus, .lead-form textarea:focus { outline: none; border-color: var(--primary); background: rgba(0,0,0,0.5); }
.checkbox-group { display: flex; flex-direction: row; align-items: flex-start; gap: 12px; font-size: 0.85rem; color: var(--text-muted); }
.checkbox-group input { margin-top: 5px; accent-color: var(--primary); }

/* FAQ */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--bg-card); margin-bottom: 1rem; border-radius: 16px; border: 1px solid rgba(255,255,255,0.03); overflow: hidden; }
.faq-question { padding: 1.5rem 2rem; width: 100%; text-align: left; background: none; border: none; color: var(--text-main); font-family: var(--font-head); font-size: 1.2rem; font-weight: 500; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-answer { padding: 0 2rem; max-height: 0; overflow: hidden; transition: all 0.4s ease; color: var(--text-muted); }
.faq-item.active .faq-answer { padding: 0 2rem 1.5rem; max-height: 400px; }
.faq-item i { transition: transform 0.3s; color: var(--primary); }
.faq-item.active i { transform: rotate(180deg); }

/* Trust Layer */
.trust-layer { background: #000; padding: 3rem 5%; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.85rem; color: #475569; }
.trust-layer h3 { color: #64748b; font-family: var(--font-head); margin-bottom: 1rem; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 2px; }
.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: #050505; padding: 4rem 5% 2rem; border-top: 1px solid rgba(255,255,255,0.02); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 4rem; margin-bottom: 4rem; }
.footer-col h4 { font-family: var(--font-head); color: var(--text-main); margin-bottom: 1.5rem; font-size: 1.3rem; }
.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: var(--primary); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); color: #334155; font-size: 0.8rem; }

/* Cookies Banner */
.cookie-banner { position: fixed; bottom: -100%; left: 0; width: 100%; background: rgba(24, 24, 27, 0.95); backdrop-filter: blur(10px); padding: 1.5rem 5%; display: flex; justify-content: space-between; align-items: center; z-index: 9999; transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1); border-top: 1px solid rgba(255,255,255,0.1); }
.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 { border-color: var(--text-main); }

/* Legal Pages */
.legal-content { max-width: 800px; margin: 6rem auto; padding: 0 5%; }
.legal-content h1 { font-family: var(--font-head); font-size: 3.5rem; margin-bottom: 2rem; background: -webkit-linear-gradient(45deg, var(--text-main), var(--text-muted)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.legal-content h2 { font-family: var(--font-head); margin: 3rem 0 1rem; color: var(--text-main); font-size: 1.8rem; }
.legal-content p, .legal-content li { margin-bottom: 1.2rem; color: var(--text-muted); font-size: 1.05rem; }

@media (max-width: 992px) {
    .hero h1 { font-size: clamp(2.5rem, 10vw, 4rem); }
    .grid-2, .feature-block, .feature-block:nth-child(even) { grid-template-columns: 1fr; flex-direction: column; gap: 3rem; }
    .form-section { padding: 3rem 2rem; }
    .lead-form { grid-template-columns: 1fr; }
    .nav-links { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background: var(--bg-card); flex-direction: column; padding: 6rem 2rem; transition: right 0.4s ease; border-left: 1px solid rgba(255,255,255,0.05); }
    .nav-links.active { right: 0; }
    .burger-btn { display: block; z-index: 1001; }
    .cookie-banner { flex-direction: column; gap: 1.5rem; text-align: center; }
    .cookie-text { max-width: 100%; }
}
