@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #1D4ED8;
  --secondary: #7C3AED;
  --accent: #22C55E;
  --dark: #0B1220;
  --light: #F8FAFC;
  --text: #0F172A;
  --text-light: #E2E8F0;
  --muted: #334155;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  background: var(--dark);
  color: var(--text-light);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  height: 50px;
}

.logo-footer {
  height: 100px;
}

.nav-desktop a {
  color: var(--text-light);
  text-decoration: none;
  margin-left: 24px;
  font-weight: 600;
}

.nav-desktop a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
}

.burger {
  display: none;
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.nav-mobile {
  display: none;
}

.hero {
  background: linear-gradient(130deg, var(--dark), #111b33);
  color: var(--text-light);
  padding: 70px 0;
}

.hero.small {
  padding: 50px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.hero-media img {
  border-radius: 12px;
  border: 1px solid var(--muted);
}

.section {
  padding: 60px 0;
}

.section.light {
  background: var(--light);
  color: var(--text);
}

.section.dark {
  background: var(--dark);
  color: var(--text-light);
}

.grid-3, .grid-4 {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card, .feature {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.section.dark .card,
.section.dark .feature {
  background: #111b33;
  border-color: var(--muted);
}

.card h3, .feature h3 {
  margin: 12px 0;
}

.outcomes {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 24px;
}

.keywords p {
  margin-top: 20px;
  background: #eef2ff;
  padding: 16px;
  border-radius: 8px;
  font-weight: 600;
}

.faq details {
  margin-bottom: 12px;
  background: #fff;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.section.dark .faq details {
  background: #111b33;
  border-color: var(--muted);
}

.contact-section .contact-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: start;
}

.form label {
  display: block;
  margin-bottom: 14px;
  font-weight: 600;
}

.form input, .form select, .form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #cbd5f5;
  margin-top: 6px;
  background: #fff;
  font-family: inherit;
}

.btn {
  background: var(--primary);
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: var(--secondary);
}

.location {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 20px;
}

.legal-list {
  list-style: disc;
  padding-left: 20px;
}

.site-footer {
  background: var(--dark);
  color: var(--text-light);
  padding: 40px 0 20px;
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-menu a {
  color: var(--text-light);
  text-decoration: none;
  display: block;
  margin: 6px 0;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  color: #cbd5e1;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 900px;
  background: #111b33;
  color: var(--text-light);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--muted);
  z-index: 9999;
}

.cookie-actions {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .nav-desktop {
    display: none;
  }
  .burger {
    display: inline-block;
  }
  .nav-mobile {
    position: fixed;
    inset: 0;
    background: var(--dark);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    padding: 80px 30px;
    gap: 20px;
    transform: translateX(100%);
  }
  .nav-mobile a {
    color: var(--text-light);
    font-size: 1.2rem;
    text-decoration: none;
  }
  .nav-mobile .close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    cursor: pointer;
  }
  .nav-toggle:checked ~ .nav-mobile {
    transform: translateX(0);
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 2rem;
  }
}