:root {
  --primary: #0B1220;
  --secondary: #1E40AF;
  --accent: #22C55E;
  --background: #F8FAFC;
  --surface: #FFFFFF;
  --text: #0F172A;
  --muted: #64748B;
  --border: #E2E8F0;
  --shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  --radius: 16px;
  --font: "Inter", "Segoe UI", sans-serif;
}

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

body {
  font-family: var(--font);
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

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

.logo {
  max-height: 50px;
}

.footer-logo {
  max-height: 100px;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  background: var(--secondary);
  color: white;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 24px;
  list-style: none;
  font-weight: 600;
}

.nav-list a {
  color: var(--text);
}

.hero {
  padding: 64px 0;
}

.hero-small {
  padding: 48px 0;
}

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

.hero-content h1 {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  margin-bottom: 16px;
}

.hero-content p {
  margin-bottom: 16px;
  color: var(--muted);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 0.2s ease;
}

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

.btn-outline {
  border-color: var(--secondary);
  color: var(--secondary);
  background: transparent;
}

.btn-accent {
  background: var(--accent);
  color: var(--primary);
}

.section {
  padding: 64px 0;
}

.section-muted {
  background: var(--surface);
}

.section-cta {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.08), rgba(34, 197, 94, 0.12));
}

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

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

.card {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.card h3 {
  margin-bottom: 12px;
}

.image-card {
  background: var(--surface);
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-wide {
  margin-top: 32px;
}

.steps {
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.checklist li::before {
  content: "•";
  margin-right: 10px;
  color: var(--accent);
  font-weight: 700;
}

.faq {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.faq-item {
  background: var(--surface);
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.contact-form {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-family: inherit;
}

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

.site-footer {
  background: var(--primary);
  color: white;
  padding: 48px 0 24px;
}

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

.footer-nav ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-nav a {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 32px;
  padding-top: 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--primary);
  color: white;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 50;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.legal-hero {
  padding: 48px 0;
}

.legal-section {
  padding: 32px 0;
}

.legal-list {
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.thanks-box {
  background: var(--surface);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

@media (max-width: 860px) {
  .nav-toggle-label {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: 0;
    background: var(--primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: none;
    text-align: center;
  }

  .nav-list {
    flex-direction: column;
    gap: 24px;
    font-size: 1.2rem;
  }

  .nav-list a {
    color: white;
  }

  .nav-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
  }

  .nav-toggle:checked ~ .nav {
    display: flex;
  }
}

@media (max-width: 600px) {
  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
  }
}