* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1f1b;
  background: #f6f4f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: #0b5b38;
  text-decoration: none;
}

header {
  padding: 28px 0;
  background: #f6f4f0;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: #0b5b38;
  color: #fff;
  font-weight: 600;
}

.hero {
  padding: 30px 0 10px;
}

.hero-layout {
  display: flex;
  gap: 30px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.hero-text h1 {
  font-size: 2.6rem;
  margin: 0;
}

.hero-image {
  flex: 1 1 340px;
  position: relative;
}

.hero-image img {
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mag-section {
  padding: 56px 0;
}

.mag-columns {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.mag-columns > div {
  flex: 1 1 260px;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #4a6b5a;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 18px;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 1px solid #0b5b38;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  padding: 18px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  border-radius: 12px;
}

.stats-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat {
  flex: 1 1 180px;
  background: #0b5b38;
  color: #fff;
  padding: 20px;
  border-radius: 14px;
}

.quote {
  background: #fff;
  border-left: 4px solid #0b5b38;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.pricing-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1 1 220px;
  background: #162019;
  color: #fff;
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-card span {
  font-size: 1.4rem;
  font-weight: 700;
}

.price-card a {
  margin-top: auto;
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  width: fit-content;
}

.process-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.process-step {
  flex: 1 1 200px;
  background: #f0ebe2;
  padding: 18px;
  border-radius: 14px;
}

.form-wrap {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: stretch;
}

.form-card {
  flex: 1 1 320px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d2d2d2;
  font-size: 1rem;
}

button {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: #0b5b38;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.section-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #0b5b38;
  color: #0b5b38;
  font-weight: 600;
}

.split-feature {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.split-feature .text {
  flex: 1 1 280px;
}

.split-feature .image {
  flex: 1 1 280px;
}

.bg-forest {
  background: #e3ede6;
}

.bg-sand {
  background: #f4ede1;
}

.bg-deep {
  background: #111a14;
  color: #fff;
}

.bg-deep a {
  color: #d7f2e4;
}

.footer {
  padding: 40px 0 60px;
  background: #121512;
  color: #e6ede5;
}

.footer .nav-links a {
  color: #e6ede5;
}

.footer small {
  color: #b1b7b0;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  margin-top: 40px;
  background: #fef6e8;
  padding: 14px;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #1f1f1c;
  color: #fff;
  padding: 16px;
  border-radius: 16px;
  display: none;
  z-index: 20;
}

.cookie-banner p {
  margin: 0 0 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  background: #fff;
  color: #1f1f1c;
}

.cookie-actions button.reject {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.page-header {
  padding: 50px 0 30px;
}

.page-header h1 {
  margin: 0 0 10px;
  font-size: 2.3rem;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-text {
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 720px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .nav-links {
    justify-content: flex-start;
  }
}
