*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --ink: #1c1c1e;
  --muted: #5a5c63;
  --surface: #f6f3ef;
  --surface-2: #ffffff;
  --accent: #1b7f7a;
  --accent-dark: #155c58;
  --warm: #f1e2cf;
  --line: #d7d1c7;
  --shadow: 0 18px 40px rgba(23, 22, 21, 0.12);
  --radius: 22px;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}

.nav-split {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 20px 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 15px;
}

.nav-cta {
  margin-left: auto;
  padding: 10px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  align-self: flex-start;
}

.main {
  flex: 1;
}

.section {
  padding: 64px 20px;
}

.section-tight {
  padding: 42px 20px;
}

.section-dark {
  background: var(--ink);
  color: #f5f3ef;
}

.section-light {
  background: var(--surface-2);
}

.section-warm {
  background: var(--warm);
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.asym-row.reverse {
  flex-direction: column-reverse;
}

.panel {
  background: var(--surface-2);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel.flat {
  box-shadow: none;
  border: 1px solid var(--line);
}

.offset-block {
  margin-top: -40px;
}

.overlap-card {
  margin-top: -30px;
  border-left: 6px solid var(--accent);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--muted);
}

.headline {
  font-size: clamp(28px, 5vw, 46px);
  margin: 12px 0 18px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-light {
  background: #fff;
  color: var(--accent-dark);
  border-color: #fff;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(27, 127, 122, 0.12);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 600;
}

.grid-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 16px;
}

.price {
  font-size: 20px;
  font-weight: 700;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.tag {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-index {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quote {
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  font-size: 14px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 14px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  max-width: 320px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.site-footer {
  padding: 32px 20px 46px;
  background: var(--ink);
  color: #f5f3ef;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (min-width: 768px) {
  .nav-split {
    flex-direction: row;
    align-items: center;
  }

  .nav-links {
    margin-left: auto;
  }

  .asym-row {
    flex-direction: row;
    align-items: center;
  }

  .asym-row.reverse {
    flex-direction: row-reverse;
  }

  .grid-cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .form-wrap {
    flex-direction: row;
    gap: 24px;
  }

  .form-wrap > * {
    flex: 1;
  }
}
