* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2428;
  --muted: #5b6670;
  --accent: #4b6bff;
  --accent-soft: #e7ebff;
  --warm: #f8f2ea;
  --line: #e6e2dd;
  --shadow: 0 24px 60px rgba(31, 36, 40, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fbfbfd;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.nav-wrap {
  padding: 28px 0 18px;
}

.nav-asym {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateY(6px);
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 48px 0 64px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 12% 8% auto auto;
  width: 42%;
  height: 62%;
  background: var(--accent-soft);
  border-radius: 40px;
  z-index: -1;
  transform: rotate(-4deg);
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  line-height: 1.1;
}

.hero p {
  color: var(--muted);
  max-width: 520px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  gap: 8px;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.section {
  padding: 64px 0;
  position: relative;
}

.section.alt {
  background: var(--warm);
}

.section .label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 12px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.offset-card {
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.offset-card.raise {
  transform: translateX(12px);
}

.offset-card.lower {
  transform: translateX(-12px);
}

.mini-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mini-grid .item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.mini-grid img {
  width: 64px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.price {
  font-weight: 700;
  font-size: 1.2rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

.testimonial {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-shell form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-select {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.service-option input {
  accent-color: var(--accent);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  padding: 40px 0 60px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #0e1e33;
  color: #fff;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  z-index: 30;
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-stack img {
  border-radius: 20px;
  border: 1px solid var(--line);
}

.aside-note {
  background: #fff;
  border-radius: 24px;
  padding: 22px;
  border: 1px dashed var(--line);
  color: var(--muted);
}

.page-title {
  padding: 28px 0 8px;
}

.page-title h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.policy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--muted);
}

@media (min-width: 900px) {
  .hero-grid {
    flex-direction: row;
    align-items: center;
  }

  .hero-copy {
    flex: 1;
  }

  .hero-media {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .mini-grid {
    flex-direction: row;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service {
    flex: 1 1 260px;
  }
}
