* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1b1b;
  --muted: #5a5f66;
  --accent: #0b6d4f;
  --accent-soft: #d9f1e7;
  --sand: #f6f1ea;
  --fog: #f3f6f7;
  --line: #e1e5e8;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

header {
  padding: 28px 6vw 10px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.92rem;
  color: var(--muted);
}

.nav-links a {
  color: inherit;
}

.section {
  padding: 56px 6vw;
}

.section.alt {
  background: var(--fog);
}

.section.sand {
  background: var(--sand);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
  min-width: 280px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

p {
  color: var(--muted);
  margin-bottom: 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.btn {
  background: var(--accent);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px dashed var(--accent);
}

.highlight-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.metric-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.metric:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.metric strong {
  font-size: 1.4rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.list span {
  font-weight: 600;
}

.price-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card {
  padding: 20px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-card strong {
  font-size: 1.2rem;
}

.form-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

select,
input,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 36px 6vw;
  background: #101715;
  color: #f2f5f3;
}

.footer a {
  color: #b7d9c8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  box-shadow: var(--shadow);
  font-weight: 600;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 320px;
  z-index: 30;
  border: 1px solid var(--line);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.inline-cta {
  font-weight: 600;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.page-hero {
  background: var(--sand);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.contact-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal {
  max-width: 820px;
}

@media (max-width: 720px) {
  header {
    padding-top: 18px;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .sticky-cta {
    right: 10px;
    bottom: 10px;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    max-width: none;
  }
}
