* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1f24;
  --muted: #5a6570;
  --paper: #f6f4f1;
  --accent: #1b3a57;
  --accent-soft: #dbe6ef;
  --warm: #f0e7db;
  --line: #d7d1c7;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.5;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 6%;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.2px;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
  background: var(--warm);
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
}

main {
  flex: 1;
}

.split {
  display: flex;
  align-items: stretch;
  gap: 32px;
  padding: 70px 6%;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel p {
  color: var(--muted);
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: 2.6rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.2rem;
}

.pill {
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
  background: var(--accent);
  color: #ffffff;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.ghost {
  background: var(--accent-soft);
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.img-wrap {
  background-color: var(--paper);
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  display: flex;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 220px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.form-block {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  background: #ffffff;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-form label {
  font-weight: 600;
  font-size: 0.95rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  padding: 40px 6%;
  border-top: 1px solid var(--line);
  background: #fbfbfb;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #233a52;
  color: #ffffff;
  text-decoration: none;
  z-index: 20;
}

.bg-legal-1 {
  background-image: url("https://images.unsplash.com/photo-1526304640581-d334cdbbf45e?w=1400&q=80");
  background-color: #efe9e1;
  background-size: cover;
  background-position: center;
}

.bg-legal-2 {
  background-image: url("https://images.unsplash.com/photo-1492724441997-5dc865305da7?w=1400&q=80");
  background-color: #f2eee8;
  background-size: cover;
  background-position: center;
}

.bg-legal-3 {
  background-image: url("https://images.unsplash.com/photo-1524995997946-a1c2e315a42f?w=1400&q=80");
  background-color: #e6edf3;
  background-size: cover;
  background-position: center;
}

.bg-overlay {
  background-color: rgba(255, 255, 255, 0.92);
  padding: 24px;
  border-radius: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f2730;
  color: #ffffff;
  padding: 16px 6%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-banner.is-hidden {
  display: none;
}

.legal-hero {
  background: var(--paper);
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
