﻿:root {
    --primary: #0B132B; /* Deep Navy */
    --secondary: #1C2541; /* Slate */
    --accent: #00F0FF; /* Electric Cyan */
    --text-dark: #2B2D42;
    --text-light: #F8F9FA;
    --bg-light: #F4F7F6;
    --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background-color: var(--bg-light); color: var(--text-dark); line-height: 1.6; }
h1, h2, h3 { font-family: 'Outfit', sans-serif; color: var(--primary); }
a { text-decoration: none; color: inherit; }

/* Header */
header { display: flex; justify-content: space-between; align-items: center; padding: 20px 5%; background: var(--white); box-shadow: 0 4px 20px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; }
.logo-container { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.5rem; font-family: 'Outfit', sans-serif; color: var(--primary); }
.logo-container img { width: 40px; height: 40px; }
nav { display: flex; gap: 30px; }
nav a { font-weight: 500; transition: color 0.3s; }
nav a:hover { color: var(--accent); }
.btn-header { background: var(--primary); color: var(--white); padding: 10px 24px; border-radius: 8px; font-weight: 600; transition: all 0.3s; }
.btn-header:hover { background: var(--accent); color: var(--primary); }

/* Hero Section */
.hero { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 80px 5%; background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); color: var(--text-light); align-items: center; min-height: 80vh; position: relative; overflow: hidden; }
.hero-content h1 { color: var(--white); font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; }

/* Form Container (Glassmorphism) */
.form-container { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.2); padding: 40px; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.form-container h3 { color: var(--white); margin-bottom: 20px; font-size: 1.8rem; }
.form-group { margin-bottom: 15px; }
.form-group input { width: 100%; padding: 15px; border: 1px solid rgba(255,255,255,0.3); border-radius: 8px; background: rgba(255,255,255,0.9); color: var(--text-dark); font-family: 'Inter', sans-serif; font-size: 1rem; outline: none; transition: all 0.3s; }
.form-group input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.2); }
.checkbox-group { display: flex; gap: 10px; align-items: flex-start; font-size: 0.85rem; color: rgba(255,255,255,0.8); margin-bottom: 20px; }
.checkbox-group a { color: var(--accent); text-decoration: underline; }
.btn-submit { width: 100%; background: var(--accent); color: var(--primary); padding: 15px; border: none; border-radius: 8px; font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: transform 0.2s; }
.btn-submit:hover { transform: translateY(-2px); }
.success-message { display: none; text-align: center; color: var(--white); padding: 40px 0; }
.success-message i { font-size: 4rem; color: var(--accent); margin-bottom: 20px; }

/* Social Proof */
.social-proof { padding: 40px 5%; background: var(--white); text-align: center; border-bottom: 1px solid #EAEAEA; }
.social-proof p { font-size: 0.9rem; color: #777; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; }
.logos { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; opacity: 0.6; filter: grayscale(100%); }
.logos i { font-size: 2.5rem; color: var(--primary); }

/* About & Features */
.section { padding: 80px 5%; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-img { width: 100%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.feature-list { list-style: none; margin-top: 30px; }
.feature-list li { margin-bottom: 20px; display: flex; gap: 15px; align-items: center; font-size: 1.1rem; }
.feature-list i { color: var(--accent); background: var(--primary); padding: 10px; border-radius: 50%; font-size: 1.2rem; }

/* FAQ */
.faq-container { max-width: 800px; margin: 0 auto; }
details { background: var(--white); margin-bottom: 15px; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.03); border: 1px solid #EAEAEA; }
summary { padding: 20px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary:after { content: '\f107'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--primary); transition: transform 0.3s; }
details[open] summary:after { transform: rotate(180deg); }
.faq-content { padding: 0 20px 20px; color: #555; }

/* Legal Pages Styling */
.legal-container { max-width: 900px; margin: 60px auto; background: var(--white); padding: 60px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.legal-container h1 { margin-bottom: 30px; font-size: 2.5rem; }
.legal-container h2 { margin: 30px 0 15px; font-size: 1.5rem; }
.legal-container p, .legal-container ul { margin-bottom: 20px; color: #444; }
.legal-container ul { padding-left: 20px; }
.map-container { margin-top: 40px; border-radius: 12px; overflow: hidden; border: 1px solid #EAEAEA; }

/* Footer */
footer { background: var(--primary); color: var(--text-light); padding: 40px 5% 20px; text-align: center; }
.footer-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.footer-links a { color: #A0AABF; font-size: 0.9rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--white); }
.copyright { color: #55607A; font-size: 0.8rem; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: -100px; left: 0; width: 100%; background: var(--white); padding: 20px 5%; box-shadow: 0 -5px 20px rgba(0,0,0,0.1); display: flex; justify-content: space-between; align-items: center; z-index: 1000; transition: bottom 0.5s ease; border-top: 3px solid var(--accent); }
.cookie-banner.show { bottom: 0; }
.cookie-text { font-size: 0.9rem; max-width: 70%; }
.cookie-buttons { display: flex; gap: 10px; }
.btn-cookie { padding: 10px 20px; border: none; border-radius: 6px; cursor: pointer; font-weight: 600; }
.btn-accept { background: var(--primary); color: var(--white); }
.btn-settings { background: #EAEAEA; color: var(--text-dark); }

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero { grid-template-columns: 1fr; text-align: center; padding-top: 40px; }
    .hero-content h1 { font-size: 2.5rem; }
    .about-grid { grid-template-columns: 1fr; }
    nav { display: none; } /* Simplified for mobile */
    .cookie-banner { flex-direction: column; gap: 15px; text-align: center; }
    .cookie-text { max-width: 100%; }
}
