* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f7f4;
  --ink: #14231f;
  --muted: #4b5a52;
  --accent: #2f7a63;
  --accent-dark: #1d5a48;
  --surface: #ffffff;
  --line: #dde3dd;
  --soft: #eef2ee;
  --highlight: #f0f6f1;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px 80px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.nav-left {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.hero {
  padding: 50px 0 20px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
}

.split-media {
  flex: 1;
  background: #dfe7e2;
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
}

.hero h1 {
  font-size: 46px;
  line-height: 1.1;
  margin: 0 0 14px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 22px;
}

.cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
}

.cta-row.spaced {
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 0;
}

.btn.secondary {
  background: var(--soft);
  color: var(--accent-dark);
  border: 1px solid var(--line);
}

.text-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.section {
  padding: 70px 0;
}

.section.soft {
  background: var(--highlight);
}

.section h2 {
  margin: 0 0 12px;
  font-size: 30px;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  background: var(--soft);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--muted);
}

.card-row {
  display: flex;
  gap: 18px;
  margin-top: 24px;
}

.card {
  flex: 1;
  background: var(--surface);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.card .card-body {
  padding: 18px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 16px;
}

.quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
}

.form-wrap {
  background: var(--surface);
  border-radius: 18px;
  padding: 26px;
  border: 1px solid var(--line);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}

label {
  font-size: 13px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 90px;
  resize: vertical;
}

.footer {
  padding: 40px 28px 70px;
  background: #0f1f1a;
  color: #c7d2cb;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  margin-top: 14px;
}

.footer .note {
  font-size: 12px;
  color: #9fb0a6;
  max-width: 700px;
}

.helper-note {
  color: var(--muted);
  margin-top: 18px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  max-width: 340px;
  z-index: 30;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hidden {
  display: none;
}

.page-header {
  padding: 40px 0 10px;
}

.simple-section {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.simple-section .panel {
  flex: 1;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 20px;
}

.full-width {
  width: 100%;
}

.image-frame {
  background: #e1e7e1;
  border-radius: 16px;
  overflow: hidden;
}

.legal {
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 24px;
  margin-top: 20px;
}

.reference-list {
  font-size: 12px;
  color: #a5b3ab;
  margin-top: 12px;
}

.reference-list a {
  color: inherit;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .split,
  .split.reverse,
  .card-row,
  .simple-section {
    flex-direction: column;
  }

  .sticky-cta {
    left: 24px;
    right: auto;
  }
}
