* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2a24;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: #1f5b48;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.site-header {
  padding: 24px 6vw 12px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #d9d5cf;
  padding-bottom: 14px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.ad-label {
  background: #1f5b48;
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.section {
  padding: 72px 6vw;
  position: relative;
}

.section.alt {
  background: #ece7e1;
}

.section.bg-ledger {
  color: #ffffff;
  background-image: linear-gradient(120deg, rgba(31, 42, 36, 0.85), rgba(31, 42, 36, 0.4)),
    url("https://images.unsplash.com/photo-1492724441997-5dc865305da7?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section.edge {
  padding-top: 40px;
}

.split {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
}

.offset-up {
  margin-top: -30px;
}

.offset-right {
  margin-left: 40px;
}

.headline {
  font-size: 40px;
  line-height: 1.2;
  margin: 0 0 16px;
}

.subhead {
  font-size: 18px;
  margin: 0 0 20px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 28px;
  background: #1f5b48;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  color: #1f5b48;
  border: 1px solid #1f5b48;
}

.inline-link {
  font-weight: 600;
}

.image-frame {
  background: #d7d2cb;
  padding: 12px;
  border-radius: 24px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 22px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.price {
  font-weight: 700;
  color: #1f5b48;
}

.metrics {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.metric {
  flex: 1 1 180px;
  padding: 18px;
  background: #ffffff;
  border-radius: 18px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 20px;
}

.testimonial {
  background: #ffffff;
  border-left: 4px solid #1f5b48;
  padding: 16px 20px;
  margin-bottom: 16px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfc7bd;
  font-size: 14px;
}

.footer {
  padding: 40px 6vw 60px;
  background: #1f2a24;
  color: #f5f2ee;
}

.footer a {
  color: #f5f2ee;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 200px;
}

.notice {
  font-size: 13px;
  color: #d4cfc8;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 22px;
  background: #1f5b48;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 30px;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 20px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 50px 6vw 30px;
}

.page-hero h1 {
  margin: 0 0 12px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight {
  background: #f0ece6;
  border-radius: 20px;
  padding: 22px;
}
