* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1b1f;
  --muted: #5b5b66;
  --accent: #a60b56;
  --accent-soft: #f6d7e7;
  --stone: #f4f1ee;
  --sky: #e8f0ff;
  --sand: #faf6f2;
  --border: #e2e2e7;
  --shadow: 0 18px 40px rgba(20, 20, 30, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

header {
  padding: 24px 6vw;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.92rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.cta-btn.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.cta-btn.ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--ink);
}

.cta-inline {
  color: var(--accent);
  font-weight: 600;
}

.hero {
  background: linear-gradient(140deg, #ffffff 40%, var(--accent-soft) 100%);
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 56px 6vw;
}

.split-section.reverse {
  flex-direction: column;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-panel {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
}

h1 {
  font-size: 2.5rem;
  line-height: 1.15;
}

h2 {
  font-size: 1.9rem;
  line-height: 1.2;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--stone);
  font-size: 0.85rem;
}

.section-alt {
  background: var(--sand);
}

.section-sky {
  background: var(--sky);
}

.section-stone {
  background: var(--stone);
}

.numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.number-card {
  flex: 1 1 140px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #ffffff;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #ffffff;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #ffffff;
}

label {
  font-size: 0.85rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

footer {
  padding: 40px 6vw;
  background: #0f0f14;
  color: #f5f5f7;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: #d9d9df;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  padding: 12px 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-hero {
  padding: 48px 6vw 24px;
}

.split-page {
  padding: 32px 6vw 56px;
}

@media (min-width: 900px) {
  .split-section {
    flex-direction: row;
    align-items: center;
  }

  .split-section.reverse {
    flex-direction: row-reverse;
  }

  .split-panel {
    padding: 36px;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
