/* Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c1f1a;
  --muted: #5d655a;
  --accent: #2f7a5c;
  --accent-dark: #1f5d45;
  --stone: #f4f2ec;
  --fog: #e8eee7;
  --sun: #f8d27a;
  --coal: #2b2b2b;
  --card: #ffffff;
  --radius: 18px;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fbfbf7;
  line-height: 1.55;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.offset {
  transform: translateX(6%);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--muted);
}

.headline {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.15;
}

.lede {
  font-size: 1.05rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn-ghost {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid #e4e6df;
}

.pill {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--fog);
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.8rem;
}

.site-header {
  padding: 28px 0 12px;
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
}

.hero {
  padding: 50px 0 60px;
  background: linear-gradient(140deg, #f8f6ef 0%, #e7efe8 60%, #fdf7e1 100%);
}

.hero-card {
  background: var(--card);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(32, 60, 47, 0.12);
}

.hero-image {
  background: #f0f5ef;
  border-radius: var(--radius);
  padding: 18px;
}

.floating-shape {
  position: relative;
  overflow: hidden;
}

.floating-shape::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(248, 210, 122, 0.3);
  border-radius: 50%;
  right: -60px;
  top: -40px;
}

.section {
  padding: 70px 0;
}

.section-muted {
  background: var(--stone);
}

.section-dark {
  background: var(--coal);
  color: white;
}

.section-dark .lede,
.section-dark .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 12px 32px rgba(41, 60, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card h3 {
  font-size: 1.2rem;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-dark);
}

.banner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px;
  border-radius: var(--radius);
  background: #ffffff;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.metric {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 12px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list li {
  list-style: none;
  padding-left: 20px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.form-wrap {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 18px 40px rgba(33, 45, 39, 0.12);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9dfd5;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.footer {
  margin-top: auto;
  padding: 40px 0;
  background: #1f2a23;
  color: rgba(255, 255, 255, 0.85);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.subtle {
  color: var(--muted);
  font-size: 0.95rem;
}

.tight {
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-grid {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.visual-panel {
  border-radius: var(--radius);
  background: #edf2ec;
  padding: 22px;
}

.visual-panel svg {
  height: 180px;
}

.note {
  background: #f5f1e2;
  padding: 18px;
  border-radius: 14px;
  font-size: 0.95rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}

.spacer {
  height: 16px;
}

.page-hero {
  padding: 40px 0 30px;
  background: #f5f4ee;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  border-radius: var(--radius);
  padding: 20px;
}

.media-inline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.notice {
  background: #e6f2ea;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 0.9rem;
}

@media (min-width: 780px) {
  .nav-wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .nav-row {
    flex-direction: row;
    align-items: flex-end;
    gap: 28px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split-reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 280px;
  }

  .metrics {
    flex-direction: row;
  }

  .metric {
    flex: 1;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 14px;
  }

  .metric:last-child {
    border-right: none;
  }

  .section-grid {
    flex-direction: row;
  }

  .banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .media-inline {
    flex-direction: row;
  }
}
