﻿@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,700&family=Syne:wght@500;700;800&display=swap');

:root {
    --primary: #0D0E15;   /* Very Dark Slate */
    --secondary: #2A2D43; /* Muted Indigo */
    --accent: #FF6B35;    /* Vibrant Coral/Orange */
    --text-main: #4A4D60;
    --bg-light: #F7F8FA;
    --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background-color: var(--bg-light); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Syne', 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.9); backdrop-filter: blur(12px); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(0,0,0,0.05); }
.logo { display: flex; align-items: center; gap: 12px; font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.6rem; color: var(--primary); }
.logo img { width: 42px; height: 42px; }
nav { display: flex; gap: 35px; }
nav a { font-weight: 500; color: var(--secondary); transition: color 0.3s; font-size: 1rem; }
nav a:hover { color: var(--accent); }
.btn-cta { background: var(--accent); color: var(--white); padding: 12px 28px; border-radius: 50px; font-weight: 700; transition: transform 0.3s, box-shadow 0.3s; }
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3); color: var(--white); }

/* Hero */
.hero { padding: 120px 5% 100px; text-align: center; background: var(--primary); color: var(--white); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(42,45,67,0.8) 0%, rgba(13,14,21,1) 60%); z-index: 0; pointer-events: none; }
.hero-content { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); color: var(--white); margin-bottom: 25px; line-height: 1.1; letter-spacing: -1px; }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 1.25rem; color: #A0A3B5; margin-bottom: 40px; font-weight: 400; max-width: 700px; margin-inline: auto; }
.hero-btn { display: inline-block; background: var(--white); color: var(--primary); padding: 16px 40px; border-radius: 50px; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.1rem; transition: all 0.3s; }
.hero-btn:hover { background: var(--accent); color: var(--white); }

/* Social Proof */
.brands { background: var(--white); padding: 40px 5%; border-bottom: 1px solid #EAECEF; text-align: center; }
.brands p { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: #8A8D9E; margin-bottom: 20px; font-weight: 700; }
.brand-logos { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; align-items: center; }
.brand-item { display: flex; align-items: center; gap: 8px; font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 700; color: #B0B3C5; opacity: 0.6; transition: all 0.3s; }
.brand-item:hover { opacity: 1; color: var(--secondary); }

/* About */
.section { padding: 100px 5%; max-width: 1300px; margin: 0 auto; }
.about-container { max-width: 800px; margin: 0 auto; text-align: center; }
.about-container h2 { font-size: 2.5rem; margin-bottom: 30px; }
.about-container p { font-size: 1.15rem; margin-bottom: 20px; color: var(--text-main); }

/* Features (Asymmetric) */
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 60px; }
.feat-img { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 30px 60px rgba(13, 14, 21, 0.1); }
.feat-text h2 { font-size: 2.5rem; margin-bottom: 30px; line-height: 1.2; }
.bullet-list { list-style: none; display: flex; flex-direction: column; gap: 25px; }
.bullet-item { display: flex; gap: 20px; align-items: flex-start; }
.bullet-icon { background: rgba(255, 107, 53, 0.1); color: var(--accent); width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.bullet-content h4 { font-size: 1.2rem; margin-bottom: 8px; font-family: 'DM Sans', sans-serif; font-weight: 700; }

/* FAQ */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-wrap h2 { text-align: center; font-size: 2.5rem; margin-bottom: 50px; }
details { background: var(--white); border-radius: 16px; margin-bottom: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.03); overflow: hidden; transition: all 0.3s; border: 1px solid transparent; }
details[open] { border-color: var(--accent); box-shadow: 0 10px 30px rgba(255, 107, 53, 0.08); }
summary { padding: 24px; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; list-style: none; font-size: 1.1rem; color: var(--primary); }
summary::-webkit-details-marker { display: none; }
summary:after { content: '\f067'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--accent); transition: transform 0.3s; }
details[open] summary:after { transform: rotate(45deg); }
.faq-body { padding: 0 24px 24px; color: var(--text-main); }

/* Form Section */
.form-section { background: var(--secondary); padding: 100px 5%; position: relative; overflow: hidden; }
.form-wrapper { max-width: 600px; margin: 0 auto; background: var(--white); padding: 50px; border-radius: 24px; box-shadow: 0 40px 80px rgba(0,0,0,0.2); position: relative; z-index: 2; }
.form-wrapper h2 { text-align: center; margin-bottom: 10px; font-size: 2.2rem; }
.form-wrapper > p { text-align: center; margin-bottom: 30px; color: var(--text-main); }
.input-group { margin-bottom: 20px; }
.input-group label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 0.9rem; color: var(--primary); }
.input-control { width: 100%; padding: 16px; border: 1px solid #EAECEF; border-radius: 12px; font-family: 'DM Sans', sans-serif; font-size: 1rem; background: var(--bg-light); transition: all 0.3s; }
.input-control:focus { outline: none; border-color: var(--accent); background: var(--white); box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.consent-box { display: flex; gap: 12px; align-items: flex-start; margin: 25px 0; font-size: 0.85rem; color: #666; }
.consent-box input { margin-top: 4px; accent-color: var(--accent); width: 16px; height: 16px; }
.consent-box a { color: var(--accent); text-decoration: underline; }
.btn-submit { width: 100%; padding: 18px; background: var(--accent); color: var(--white); border: none; border-radius: 12px; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.2rem; cursor: pointer; transition: all 0.3s; }
.btn-submit:hover { background: #E55A2A; box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2); }

.success-msg { display: none; text-align: center; padding: 40px 20px; }
.success-msg i { font-size: 4rem; color: #10B981; margin-bottom: 20px; }
.success-msg h3 { font-size: 2rem; margin-bottom: 10px; }

/* Footer & Legal */
footer { background: var(--primary); padding: 60px 5% 30px; color: #A0A3B5; text-align: center; }
.footer-logo { font-family: 'Syne', sans-serif; font-size: 1.8rem; color: var(--white); font-weight: 800; margin-bottom: 30px; display: inline-flex; align-items: center; gap: 10px; }
.footer-logo img { width: 36px; height: 36px; filter: grayscale(100%) brightness(200%); }
.footer-nav { display: flex; justify-content: center; gap: 30px; margin-bottom: 40px; flex-wrap: wrap; }
.footer-nav a { transition: color 0.3s; }
.footer-nav a:hover { color: var(--white); }
.copyright { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; font-size: 0.85rem; }

.legal-page { padding: 80px 5%; }
.legal-content { max-width: 900px; margin: 0 auto; background: var(--white); padding: 60px; border-radius: 24px; box-shadow: 0 20px 40px rgba(0,0,0,0.03); }
.legal-content h1 { font-size: 2.5rem; margin-bottom: 40px; border-bottom: 2px solid var(--bg-light); padding-bottom: 20px; }
.legal-content h2 { font-size: 1.5rem; margin: 30px 0 15px; }
.legal-content p, .legal-content ul { margin-bottom: 20px; }
.legal-content ul { padding-left: 20px; }
.map-box { margin-top: 40px; border-radius: 16px; overflow: hidden; height: 400px; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: -150%; left: 0; width: 100%; background: var(--white); padding: 20px 5%; box-shadow: 0 -10px 40px rgba(0,0,0,0.1); z-index: 9999; display: flex; justify-content: space-between; align-items: center; transition: bottom 0.5s ease; }
.cookie-banner.active { bottom: 0; }
.cookie-text { font-size: 0.9rem; max-width: 70%; }
.cookie-actions { display: flex; gap: 15px; }
.btn-cook { padding: 12px 24px; border-radius: 8px; font-weight: 700; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.btn-cook.accept { background: var(--primary); color: var(--white); }
.btn-cook.settings { background: var(--bg-light); color: var(--text-main); }

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