@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: #1f2a1f;
  background: #f5f6f1;
  line-height: 1.6;
}

a {
  color: #1f5c39;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: #edf1ea;
  border-bottom: 1px solid #d7dfd2;
}

.nav-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ad-label {
  background: #d7e6d7;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: #1f4c2e;
}

.split {
  display: flex;
  align-items: stretch;
  gap: 32px;
  padding: 64px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-image {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.image-frame {
  width: 100%;
  background: #cdd8c8;
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero {
  background: #1e3523 url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?w=1400&q=80")
    center/cover no-repeat;
  color: #f3f6f2;
}

.hero .split {
  padding-top: 96px;
  padding-bottom: 96px;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.15;
  margin: 0;
}

.hero p {
  max-width: 520px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: none;
  border-radius: 999px;
  background: #2f6a3a;
  color: #f7faf5;
  font-weight: 600;
  cursor: pointer;
  gap: 8px;
}

.btn.secondary {
  background: #f0f4ef;
  color: #275131;
  border: 1px solid #c9d6c5;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: #e2eadf;
  font-size: 13px;
}

.band {
  background: #e7efe4;
}

.band-dark {
  background: #233a2a;
  color: #eef3ee;
}

.card-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #f9fbf8;
  border: 1px solid #d6e0d4;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: #1f5c39;
}

.section-title {
  font-size: 28px;
  margin: 0;
}

.two-col {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-panel {
  background: #f9fbf8;
  border: 1px solid #d6e0d4;
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid #c9d6c5;
  border-radius: 10px;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  background: #1f2a1f;
  color: #e7efe4;
  padding: 32px 24px;
}

.footer a {
  color: #cfe4cf;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.notice {
  font-size: 13px;
  color: #c9d6c5;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #f3f6f2;
  border: 1px solid #c9d6c5;
  padding: 12px 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20;
}

.sticky-cta button {
  padding: 8px 14px;
}

.banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  background: #ffffff;
  border: 1px solid #c9d6c5;
  border-radius: 16px;
  padding: 16px;
  max-width: 340px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.banner-actions {
  display: flex;
  gap: 12px;
}

.hero-short {
  background: #294333 url("https://images.unsplash.com/photo-1500534623283-312aade485b7?w=1400&q=80")
    center/cover no-repeat;
  color: #f2f6f1;
}

.hero-short .split {
  padding-top: 72px;
  padding-bottom: 72px;
}

.about-image {
  background: #1d2f20 url("https://images.unsplash.com/photo-1441716844725-09cedc13a4e7?w=800&q=80")
    center/cover no-repeat;
  min-height: 320px;
  border-radius: 16px;
}

.service-hero {
  background: #1f3524 url("https://images.unsplash.com/photo-1470770841072-f978cf4d019e?w=1400&q=80")
    center/cover no-repeat;
  color: #f2f6f1;
}

.service-hero .split {
  padding-top: 80px;
  padding-bottom: 80px;
}

.process-band {
  background: #203423 url("https://images.unsplash.com/photo-1472214103451-9374bd1c798e?w=1400&q=80")
    center/cover no-repeat;
  color: #eef3ee;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
