:root {
  --bg: #f6f3ef;
  --ink: #1e1e1e;
  --muted: #5f5f5f;
  --accent: #2f6f5e;
  --accent-dark: #235446;
  --sand: #ebe3d9;
  --line: #d4cec6;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

header {
  padding: 24px 6vw 16px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.nav .brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--ink);
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section {
  padding: 56px 6vw;
}

.section.sand {
  background: var(--sand);
}

.section.white {
  background: var(--white);
}

.section.border {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

.split.reverse {
  flex-direction: column;
}

.split > div {
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--muted);
}

.headline {
  font-size: 2.4rem;
  line-height: 1.15;
  margin: 12px 0 18px;
}

.subline {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
}

.note {
  background: var(--white);
  border-left: 3px solid var(--accent);
  padding: 18px 20px;
  font-size: 0.95rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 6px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  border-radius: 12px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.split-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tag {
  font-size: 0.85rem;
  color: var(--muted);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  padding: 18px;
  border-left: 2px solid var(--accent);
  background: var(--white);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.form-footnote {
  font-size: 0.85rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent-dark);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 20;
}

.footer {
  padding: 32px 6vw 48px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-visual {
  background: var(--white);
  border-radius: 20px;
  padding: 18px;
  border: 1px solid var(--line);
}

.bg-shield {
  background-image: url("hero.svg");
  background-size: cover;
  background-position: center;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(50% - 18px);
  }

  .split-card {
    flex-direction: row;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
