* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1c1f;
  --muted: #555a66;
  --accent: #1f6feb;
  --accent-dark: #144aa0;
  --soft: #f5f6f8;
  --soft-2: #eef1f6;
  --highlight: #fff0d9;
  --border: #d7dbe6;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 1.5rem 0;
  background: #ffffff;
}

.topbar-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}

.hero {
  padding: 3rem 0 4rem;
  background: var(--soft);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.split.reverse {
  flex-direction: column;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.split-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.2;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  transition: all 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.button:hover {
  background: var(--accent-dark);
}

.button.secondary:hover {
  background: var(--accent);
  color: #ffffff;
}

.section {
  padding: 3rem 0;
}

.section.alt {
  background: var(--soft-2);
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--highlight);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: #ffffff;
}

.service-card strong {
  font-size: 1.1rem;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
}

.panel {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid var(--border);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 2.5rem 0;
  background: #111318;
  color: #e2e6ef;
}

.footer a {
  color: #e2e6ef;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.sticky-cta {
  position: sticky;
  bottom: 1.25rem;
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
}

.sticky-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #111318;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  max-width: 360px;
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.cookie-actions button {
  flex: 1;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--accent);
}

.image-frame {
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.callout {
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 1rem;
  border-left: 5px solid var(--accent);
}

.meta-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal h1 {
  font-size: 2rem;
}

.legal h2 {
  font-size: 1.25rem;
}

.map-card {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
}

@media (min-width: 900px) {
  .topbar-inner {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 1rem);
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
