* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  --bg: #f6f7fb;
  --ink: #1b1f2a;
  --muted: #5a6476;
  --accent: #1f4acc;
  --accent-dark: #122c77;
  --soft: #e7ebf7;
  --highlight: #f2f7ff;
  --warning: #ffeadb;
}

body {
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 28px 0 10px;
}

.nav-split {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--ink);
}

.hero-note {
  font-size: 0.95rem;
  color: var(--muted);
}

.split-section {
  padding: 64px 0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column;
}

.panel {
  background: #fff;
  padding: 32px;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(21, 34, 66, 0.08);
}

.panel.light {
  background: var(--highlight);
  box-shadow: none;
}

.panel.soft {
  background: var(--soft);
  box-shadow: none;
}

.headline {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  margin-bottom: 16px;
}

.muted {
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(31, 74, 204, 0.2);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.badge {
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(21, 34, 66, 0.08);
}

.service-price {
  font-weight: 700;
  font-size: 1.1rem;
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d2d8ea;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.inline-link {
  font-weight: 600;
}

.quote {
  font-style: italic;
  padding: 16px 0;
  border-top: 1px solid #dfe4f3;
}

.split-bg {
  background: linear-gradient(135deg, #f2f7ff 0%, #ffffff 60%);
}

.dark-bg {
  background: #131a2b;
  color: #fff;
}

.dark-bg a {
  color: #b7ccff;
}

.highlight-bg {
  background: var(--warning);
}

.footer {
  padding: 40px 0 60px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(18, 44, 119, 0.3);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(980px, 92%);
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(21, 34, 66, 0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner.hidden {
  display: none;
}

.mini-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mini-card {
  background: #fff;
  border-radius: 14px;
  padding: 14px;
}

.address {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
}

@media (min-width: 900px) {
  .nav-split {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .split > * {
    flex: 1;
  }

  .service-cards {
    flex-direction: row;
  }

  .service-card {
    flex: 1;
  }

  .mini-grid {
    flex-direction: row;
  }

  .mini-card {
    flex: 1;
  }
}
