* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1a2418;
  --forest: #1f4d3a;
  --moss: #4f7f63;
  --mist: #f2f6f1;
  --clay: #efe6dc;
  --accent: #e0b43b;
  --sunset: #c96a4c;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: var(--forest);
  text-decoration: none;
}

header {
  padding: 24px 6%;
  background: #ffffff;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 15px;
}

.nav-cta {
  padding: 10px 18px;
  background: var(--forest);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.split-section {
  padding: 72px 6%;
}

.split-section.alt {
  background: var(--mist);
}

.split-section.earth {
  background: var(--clay);
}

.split-section.deep {
  background: #0e1b13;
  color: #f4f7f2;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: column;
}

.split-content {
  flex: 1;
  min-width: 280px;
}

.split-visual {
  flex: 1;
  min-width: 280px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--moss);
  margin-bottom: 12px;
  font-weight: 600;
}

h1, h2, h3 {
  line-height: 1.2;
}

h1 {
  font-size: 42px;
  margin-bottom: 18px;
}

h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

p {
  margin-bottom: 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: var(--forest);
  color: #ffffff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.light {
  background: #ffffff;
  color: var(--forest);
  border: 1px solid var(--forest);
}

.btn.sunset {
  background: var(--sunset);
}

.inline-link {
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat-item {
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 14px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-item {
  padding: 16px 20px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.pricing-item span {
  display: block;
  font-weight: 600;
  color: var(--forest);
}

.quote {
  padding: 18px 22px;
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

.form-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

select, input, textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ccd5c6;
  font-size: 15px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 36px 6%;
  background: #0f1a12;
  color: #e7efe5;
}

.footer a {
  color: #e7efe5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #1a2418;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  padding: 16px;
  display: none;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  border: none;
  padding: 10px 12px;
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--forest);
  color: #ffffff;
}

.cookie-actions .reject {
  background: #e5e9e1;
}

.legal-page {
  padding: 72px 10%;
}

.legal-page h1 {
  margin-bottom: 20px;
}

@media (min-width: 900px) {
  h1 {
    font-size: 52px;
  }

  .split {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }
}
