@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  color: #102019;
  background-color: #f6f4f0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.6;
  --accent: #2f7d5a;
  --accent-dark: #1f5b41;
  --warm: #e6ddce;
  --soft: #f0efe9;
  --ink: #112018;
  --muted: #4b5a52;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: var(--soft);
  color: var(--ink);
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  background: #fdfbf7;
  border-bottom: 1px solid #e2dbd0;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.main {
  flex: 1;
}

.section {
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.soft {
  background: var(--warm);
}

.section.dark {
  background: #13251d;
  color: #f8f4ea;
}

.section.dark a {
  color: #f8f4ea;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: column;
}

.panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel.tight {
  gap: 12px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--muted);
}

.headline {
  font-size: 2.2rem;
  line-height: 1.2;
  margin: 0;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta {
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.cta-outline {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
}

.cta-link {
  color: var(--accent-dark);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(17, 32, 24, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e3efe8;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 600;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stat {
  flex: 1 1 160px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e2dbd0;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e5ded4;
  flex-wrap: wrap;
}

.price-item span {
  font-weight: 600;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(17, 32, 24, 0.1);
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8d0c5;
  font-family: inherit;
  font-size: 0.95rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 32px 6vw;
  background: #0f1f18;
  color: #e8e2d7;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #1f5b41;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(16, 32, 25, 0.25);
  z-index: 10;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 40px rgba(17, 32, 24, 0.2);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(17, 32, 24, 0.2);
}

.inline-image {
  border-radius: 16px;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.simple-list li {
  margin-left: 16px;
}

.section-note {
  font-size: 0.9rem;
  color: var(--muted);
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .headline {
    font-size: 2.8rem;
  }

  .section {
    padding: 80px 8vw;
  }

  .two-col {
    flex-direction: row;
  }
}
