﻿:root {
    --primary: #0a192f;
    --secondary: #64ffda;
    --accent: #112240;
    --text-main: #ccd6f6;
    --text-muted: #8892b0;
    --bg-light: #f9f9f9;
    --text-dark: #0f172a;
    --font-heading: 'Helvetica Neue', Arial, sans-serif;
    --font-body: 'Segoe UI', Roboto, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); background-color: #ffffff; line-height: 1.6; }
.skip-link { position: absolute; top: -50px; left: 0; background: var(--secondary); color: var(--primary); padding: 10px; z-index: 9999; text-decoration: none; font-weight: bold; transition: top 0.3s; }
.skip-link:focus { top: 0; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* Header & Nav */
header { background: var(--primary); color: var(--text-main); position: sticky; top: 0; z-index: 1000; padding: 1rem 5%; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.logo-container { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; color: var(--text-main); }
.logo-container img { width: 40px; height: 40px; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--secondary); }
.burger-menu { display: none; background: none; border: none; color: var(--secondary); font-size: 2rem; cursor: pointer; }

/* Hero Section */
.hero { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); color: var(--text-main); padding: 8rem 5% 6rem; text-align: center; }
.hero h1 { font-family: var(--font-heading); font-size: 4.5rem; font-weight: 900; line-height: 1.1; margin-bottom: 1.5rem; color: #ffffff; }
.hero p { font-size: 1.3rem; color: var(--text-muted); max-width: 800px; margin: 0 auto 2.5rem; }
.btn-primary { background: var(--secondary); color: var(--primary); padding: 15px 35px; font-size: 1.1rem; font-weight: bold; border-radius: 4px; display: inline-block; transition: transform 0.2s, box-shadow 0.2s; border: none; cursor: pointer; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(100, 255, 218, 0.2); }

/* Sections */
section { padding: 5rem 5%; }
.section-title { font-size: 2.5rem; font-family: var(--font-heading); text-align: center; margin-bottom: 3rem; color: var(--primary); }

/* Asymmetrical Features */
.features { background: var(--bg-light); display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.feature-image img { border-radius: 8px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.feature-content h2 { font-size: 2.5rem; margin-bottom: 1.5rem; color: var(--primary); }
.feature-list li { font-size: 1.1rem; margin-bottom: 1rem; position: relative; padding-left: 2rem; }
.feature-list li::before { content: '✓'; color: var(--secondary); position: absolute; left: 0; font-weight: bold; font-size: 1.2rem; }

/* Content Blocks */
.content-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.card { background: #fff; padding: 2rem; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); text-align: center; }
.card i { font-size: 3rem; color: var(--primary); margin-bottom: 1.5rem; }
.card h3 { font-size: 1.5rem; margin-bottom: 1rem; }

/* Form Section */
.form-section { background: var(--primary); color: var(--text-main); }
.form-section .section-title { color: #fff; }
.lead-form { max-width: 600px; margin: 0 auto; background: var(--accent); padding: 3rem; border-radius: 12px; box-shadow: 0 15px 35px rgba(0,0,0,0.2); }
.form-group { margin-bottom: 1.5rem; }
.form-group input:not([type="checkbox"]), .form-group textarea { width: 100%; padding: 15px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); color: #fff; border-radius: 4px; font-size: 1rem; outline: none; }
.form-group input:not([type="checkbox"]):focus { border-color: var(--secondary); }
.checkbox-group { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: var(--text-muted); }
.lead-form button { width: 100%; margin-top: 1rem; }

/* FAQ Accordion */
.faq-item { background: #fff; border: 1px solid #eee; margin-bottom: 1rem; border-radius: 4px; overflow: hidden; }
.faq-question { width: 100%; text-align: left; padding: 1.5rem; font-size: 1.2rem; background: var(--bg-light); border: none; cursor: pointer; font-weight: bold; color: var(--primary); display: flex; justify-content: space-between; align-items: center; }
.faq-answer { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; background: #fff; }
.faq-item.active .faq-answer { padding: 1.5rem; max-height: 500px; }

/* Trust Layer */
.trust-layer { background: #e2e8f0; padding: 2rem 5%; font-size: 0.85rem; color: #475569; text-align: center; border-top: 1px solid #cbd5e1; }
.trust-layer h4 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--primary); }
.trust-layer p { max-width: 1000px; margin: 0 auto 0.5rem auto; line-height: 1.5; }

/* Footer */
footer { background: var(--primary); color: var(--text-muted); padding: 3rem 5% 1rem; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 2rem; }
.footer-col h4 { color: #fff; margin-bottom: 1rem; font-size: 1.1rem; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col a:hover { color: var(--secondary); }
.footer-bottom { text-align: center; font-size: 0.8rem; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background: #ffffff; box-shadow: 0 -5px 20px rgba(0,0,0,0.1); padding: 1.5rem 5%; display: none; justify-content: space-between; align-items: center; z-index: 10000; border-top: 4px solid var(--primary); }
.cookie-text { font-size: 0.9rem; color: var(--text-dark); max-width: 70%; }
.cookie-buttons { display: flex; gap: 10px; }
.btn-cookie-accept { background: var(--primary); color: #fff; border: none; padding: 10px 20px; border-radius: 4px; cursor: pointer; }
.btn-cookie-reject { background: #ccc; color: #333; border: none; padding: 10px 20px; border-radius: 4px; cursor: pointer; }

/* Responsive */
@media (max-width: 992px) {
    .features { grid-template-columns: 1fr; }
    .hero h1 { font-size: 3.5rem; }
}
@media (max-width: 768px) {
    .burger-menu { display: block; }
    .nav-links { position: fixed; top: 70px; left: -100%; width: 100%; background: var(--primary); flex-direction: column; text-align: center; padding: 2rem 0; transition: left 0.3s; box-shadow: 0 10px 10px rgba(0,0,0,0.1); }
    .nav-links.active { left: 0; }
    .hero h1 { font-size: 2.5rem; }
    .hero { padding: 6rem 5% 4rem; }
    .cookie-banner { flex-direction: column; text-align: center; gap: 1rem; }
    .cookie-text { max-width: 100%; }
}
.legal-content { max-width: 900px; margin: 0 auto; padding: 4rem 5%; }
.legal-content h1 { margin-bottom: 2rem; color: var(--primary); }
.legal-content h2 { margin: 2rem 0 1rem; color: var(--accent); }
.legal-content p, .legal-content ul { margin-bottom: 1rem; }
.legal-content ul { padding-left: 2rem; list-style-type: disc; }
