﻿:root {
  --clr-primary: #0A1128; /* Deep Space Blue */
  --clr-secondary: #00E5FF; /* Cyan/Neon Blue */
  --clr-accent: #FFC107; /* Golden Conversion Accent */
  --clr-bg: #F8F9FA;
  --clr-surface: #FFFFFF;
  --clr-text-main: #1A1A1A;
  --clr-text-muted: #6C757D;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --shadow-soft: 0 10px 30px rgba(10, 17, 40, 0.08);
  --shadow-hover: 0 15px 40px rgba(0, 229, 255, 0.2);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

/* Typography */
h1, h2, h3 { font-family: var(--font-heading); color: var(--clr-primary); font-weight: 700; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; margin-bottom: 1rem; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
p { font-size: 1.1rem; color: var(--clr-text-muted); margin-bottom: 1rem; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

/* Header */
.site-header { position: sticky; top: 0; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); z-index: 1000; padding: 1rem 5%; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(0,0,0,0.05); }
.logo-area { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; color: var(--clr-primary); }
.logo-area img { width: 40px; height: 40px; }
.main-nav { display: none; }
.btn-primary { background: var(--clr-accent); color: var(--clr-primary); padding: 0.8rem 1.8rem; border-radius: 50px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5); }

/* Hero Section */
.hero { min-height: 90vh; display: grid; grid-template-columns: 1fr; gap: 3rem; padding: 4rem 5%; background: linear-gradient(135deg, rgba(10,17,40,0.95) 0%, rgba(10,17,40,0.8) 100%), url('hero-bg.jpg') center/cover; color: white; align-items: center; }
.hero h1 { color: white; }
.hero p { color: rgba(255,255,255,0.8); }
.hero-content { max-width: 600px; }

/* Lead Form */
.lead-form-wrapper { background: var(--clr-surface); padding: 2.5rem; border-radius: var(--radius); box-shadow: var(--shadow-soft); position: relative; }
.lead-form-wrapper h3 { color: var(--clr-primary); margin-bottom: 1.5rem; font-size: 1.5rem; }
.form-group { margin-bottom: 1.2rem; }
.form-control { width: 100%; padding: 1rem; border: 1px solid #E0E0E0; border-radius: 8px; font-family: var(--font-body); font-size: 1rem; background: var(--clr-bg); transition: var(--transition); }
.form-control:focus { outline: none; border-color: var(--clr-secondary); box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1); background: var(--clr-surface); }
.checkbox-group { display: flex; gap: 10px; align-items: flex-start; font-size: 0.85rem; color: var(--clr-text-muted); }
.checkbox-group input { margin-top: 4px; }
.btn-submit { width: 100%; background: var(--clr-primary); color: white; padding: 1.2rem; border: none; border-radius: 8px; font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: var(--transition); margin-top: 1rem; }
.btn-submit:hover { background: var(--clr-secondary); color: var(--clr-primary); }
.success-message { display: none; text-align: center; padding: 2rem 0; }
.success-message i { font-size: 4rem; color: #28a745; margin-bottom: 1rem; }

/* Social Proof */
.social-proof { padding: 3rem 5%; background: white; text-align: center; border-bottom: 1px solid #E0E0E0; }
.social-proof p { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.5rem; font-weight: 600; }
.logos { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; opacity: 0.5; filter: grayscale(100%); transition: var(--transition); }
.logos i { font-size: 2.5rem; }
.logos:hover { opacity: 0.8; }

/* About & Features */
.section { padding: 6rem 5%; }
.container { max-width: 1200px; margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.img-wrapper img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-soft); }

.features { background: var(--clr-primary); color: white; }
.features h2 { color: white; }
.features p { color: rgba(255,255,255,0.7); }
.feature-list { list-style: none; margin-top: 2rem; }
.feature-list li { display: flex; align-items: center; gap: 15px; margin-bottom: 1.5rem; font-size: 1.1rem; }
.feature-list i { color: var(--clr-secondary); font-size: 1.5rem; background: rgba(0, 229, 255, 0.1); padding: 10px; border-radius: 50%; }

/* FAQ */
.faq-container { max-width: 800px; margin: 0 auto; }
details { background: var(--clr-surface); margin-bottom: 1rem; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.03); overflow: hidden; }
summary { padding: 1.5rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-heading); }
summary::-webkit-details-marker { display: none; }
summary:after { content: '\f067'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--clr-secondary); }
details[open] summary:after { content: '\f068'; }
.faq-content { padding: 0 1.5rem 1.5rem; color: var(--clr-text-muted); }

/* Footer */
.site-footer { background: #050814; color: rgba(255,255,255,0.6); padding: 4rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 1200px; margin: 0 auto; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a:hover { color: var(--clr-secondary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 3rem; padding-top: 2rem; text-align: center; font-size: 0.9rem; }

/* Legal Pages Wrapper */
.legal-wrapper { max-width: 900px; margin: 4rem auto; background: var(--clr-surface); padding: 3rem; border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.legal-wrapper h1 { margin-bottom: 2rem; font-size: 2.5rem; }
.legal-wrapper h2 { font-size: 1.5rem; margin-top: 2rem; margin-bottom: 1rem; }
.map-container { width: 100%; height: 400px; border-radius: 8px; overflow: hidden; margin-top: 2rem; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: -100%; left: 0; width: 100%; background: var(--clr-primary); color: white; padding: 1.5rem 5%; display: flex; flex-direction: column; gap: 1rem; z-index: 2000; transition: bottom 0.5s ease-in-out; box-shadow: 0 -10px 30px rgba(0,0,0,0.2); }
.cookie-banner.show { bottom: 0; }
.cookie-text { font-size: 0.9rem; }
.cookie-buttons { display: flex; gap: 1rem; }
.btn-cookie-accept { background: var(--clr-accent); color: var(--clr-primary); padding: 0.6rem 1.2rem; border: none; border-radius: 5px; font-weight: bold; cursor: pointer; }
.btn-cookie-settings { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.3); padding: 0.6rem 1.2rem; border-radius: 5px; cursor: pointer; }

/* Responsive Media Queries */
@media (min-width: 768px) {
  .hero { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .features .about-grid { grid-template-columns: 1.2fr 0.8fr; }
  .main-nav { display: flex; gap: 2rem; align-items: center; font-weight: 500; }
  .cookie-banner { flex-direction: row; justify-content: space-between; align-items: center; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
