:root {
  --primary: #2563EB;
  --secondary: #0F172A;
  --accent: #22C55E;
  --bg: #F8FAFC;
  --text: #111827;
  --neutral: #CBD5E1;
}

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

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

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

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--neutral);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo-img {
  width: auto;
  height: 50px;
}

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

.nav a {
  color: var(--secondary);
  font-weight: 600;
}

.nav-toggle {
  display: none;
}

.nav-burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.nav-burger span {
  width: 26px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

.nav-close {
  display: none;
}

.hero {
  padding: 80px 0 60px;
  background: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-group {
  display: flex;
  gap: 16px;
  margin: 24px 0;
}

.btn {
  padding: 12px 22px;
  border-radius: 8px;
  display: inline-block;
  font-weight: 600;
  border: 2px solid var(--primary);
}

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

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

.btn.small {
  padding: 8px 16px;
  border-radius: 6px;
}

.section {
  padding: 70px 0;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.section p {
  margin-bottom: 14px;
}

.section.muted {
  background: #eef2f7;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

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

.card {
  background: #fff;
  padding: 24px;
  border: 1px solid var(--neutral);
  border-radius: 12px;
}

.checklist {
  list-style: none;
  margin-top: 12px;
}

.checklist li {
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
}

.checklist li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

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

.stats strong {
  font-size: 24px;
  color: var(--primary);
  display: block;
}

.faq {
  display: grid;
  gap: 18px;
}

.faq-item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--neutral);
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline span {
  font-weight: 700;
  color: var(--primary);
}

.form {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--neutral);
  display: grid;
  gap: 14px;
}

.form input,
.form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--neutral);
  border-radius: 6px;
  font-size: 15px;
}

.site-footer {
  background: var(--secondary);
  color: #fff;
  padding: 50px 0 20px;
}

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

.site-footer a {
  color: #fff;
}

.logo-footer {
  width: auto;
  height: 100px;
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 16px;
  text-align: center;
}

.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid var(--neutral);
  padding: 12px 0;
  z-index: 999;
}

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

.keywords {
  font-size: 12px;
  color: #6b7280;
}

.thanks-page {
  padding: 80px 0;
}

.summary-box {
  background: #fff;
  padding: 20px;
  margin: 20px 0;
  border-radius: 10px;
  border: 1px solid var(--neutral);
}

@media (max-width: 900px) {
  .hero-grid, .split {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 34px;
  }
  .nav {
    position: fixed;
    inset: 0;
    background: var(--secondary);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: none;
  }
  .nav a {
    color: #fff;
    font-size: 20px;
  }
  .nav-toggle:checked ~ .nav {
    transform: translateX(0);
  }
  .nav-burger {
    display: flex;
  }
  .nav-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
  }
}

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