:root {
  --primary: #2563EB;
  --secondary: #22C55E;
  --accent: #F97316;
  --bg: #0B1220;
  --surface: #111A2E;
  --text: #E5E7EB;
  --muted: #94A3B8;
  --border: #23304A;
  --gradient: linear-gradient(135deg, #2563EB 0%, #22C55E 100%);
  --radius: 16px;
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
  --transition: 0.2s ease-in-out;
  font-size: 16px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--text); text-decoration: none; }
.container { width: min(1200px, 90%); margin: 0 auto; }
.header {
  position: sticky;
  top: 0;
  background: rgba(11,18,32,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}
.nav-wrapper { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.logo { height: 50px; }
.footer-logo { height: 80px; }
.nav { display: flex; gap: 24px; }
.nav a { font-weight: 600; color: var(--text); }
.nav a:hover { color: var(--secondary); }
.burger { display: none; flex-direction: column; gap: 6px; cursor: pointer; }
.burger span { width: 28px; height: 2px; background: var(--text); }
.nav-toggle { display: none; }
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  transform: translateX(100%);
  transition: var(--transition);
  z-index: 20;
}
.mobile-menu a { font-size: 1.4rem; font-weight: 700; }
.mobile-menu .close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2rem;
  cursor: pointer;
}
.nav-toggle:checked ~ .mobile-menu { transform: translateX(0); }
.hero {
  padding: 96px 0;
  background: var(--gradient);
}
.hero.compact { padding: 72px 0; }
.hero-grid { display: grid; gap: 48px; align-items: center; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.hero-content h1 { font-size: clamp(2.4rem, 4vw, 3.6rem); margin-bottom: 16px; }
.hero-content p { color: var(--text); font-size: 1.1rem; }
.hero-highlights { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0; }
.badge {
  padding: 8px 14px;
  background: rgba(17,26,46,0.7);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.9rem;
}
.cta-row { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: var(--transition);
}
.btn.primary { background: var(--primary); color: #fff; }
.btn.primary:hover { background: #1D4ED8; }
.btn.ghost { border-color: var(--border); background: transparent; color: var(--text); }
.btn.ghost:hover { border-color: var(--secondary); color: var(--secondary); }
.section { padding: 72px 0; }
.section.alt { background: var(--surface); }
.section-header { margin-bottom: 32px; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 12px; }
.section-header p { color: var(--muted); }
.card-grid, .media-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.card, .media-card, .step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.media-card h3 { margin-top: 16px; }
.image-rounded { border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); }
.two-column { display: grid; gap: 40px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); align-items: center; }
.checklist { list-style: none; margin-top: 16px; display: grid; gap: 10px; }
.checklist li::before { content: "•"; color: var(--secondary); margin-right: 10px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 12px;
}
.faq summary { font-weight: 600; cursor: pointer; }
.form-grid { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.contact-form { display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 8px; font-weight: 600; }
.contact-form input, .contact-form textarea {
  padding: 12px;
  background: #0F172A;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
}
.contact-form.wide { max-width: 700px; margin: 0 auto; }
.contact-details p { margin-bottom: 10px; }
.step-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.footer {
  padding: 60px 0 20px;
  background: #0A1120;
  border-top: 1px solid var(--border);
}
.footer-grid { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.footer ul { list-style: none; display: grid; gap: 8px; }
.footer a { color: var(--muted); }
.footer a:hover { color: var(--secondary); }
.footer-bottom { text-align: center; padding-top: 20px; color: var(--muted); }
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: none;
  z-index: 30;
}
.cookie-content { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.legal-content h2 { margin-top: 24px; margin-bottom: 12px; }
.legal-content ul { margin-left: 20px; margin-top: 8px; color: var(--muted); }
@media (max-width: 900px) {
  .nav { display: none; }
  .burger { display: flex; }
}
@media (max-width: 600px) {
  .hero { padding: 72px 0; }
  .cta-row { flex-direction: column; }
  .cookie-content { flex-direction: column; align-items: flex-start; }
}