* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f2a24;
  background: #f7f6f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: #1f4b2f;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 32px 6vw 64px;
}

header {
  padding: 24px 6vw 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand-tagline {
  font-size: 14px;
  color: #4b5a51;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ad-label {
  font-size: 12px;
  color: #4b5a51;
  border: 1px solid #c3c9c0;
  padding: 6px 10px;
  border-radius: 14px;
  background: #ffffff;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-visual {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-visual {
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
  background: #dfe6d7;
  position: relative;
}

.split-visual img {
  width: 100%;
  height: 100%;
}

.inline-visual {
  border-radius: 16px;
  overflow: hidden;
  background: #dfe6d7;
}

.inline-visual img {
  width: 100%;
  height: 100%;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: #6b7a70;
}

.headline {
  font-size: 38px;
  line-height: 1.2;
}

.subhead {
  font-size: 18px;
  color: #38443c;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 24px;
  background: #1f4b2f;
  color: #ffffff;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.btn.secondary {
  background: #ffffff;
  color: #1f4b2f;
  border: 1px solid #1f4b2f;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.card-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 230px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.image-shell {
  background: #e2ead9;
  border-radius: 14px;
  overflow: hidden;
}

.card img {
  height: 180px;
  width: 100%;
}

.card h3 {
  font-size: 18px;
}

.price {
  font-weight: 700;
  color: #1f4b2f;
}

.section-note {
  font-size: 14px;
  color: #4b5a51;
}

.form-shell {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c7cfc6;
  font-size: 15px;
  background: #fefefe;
}

textarea {
  min-height: 120px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #1f4b2f;
  color: #ffffff;
  border-radius: 999px;
  padding: 12px 18px;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
  z-index: 20;
}

.banner.hidden {
  display: none;
}

.banner-actions {
  display: flex;
  gap: 10px;
}

.banner-actions button {
  flex: 1;
}

footer {
  padding: 32px 6vw 48px;
  background: #1f2a24;
  color: #e6efe6;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer a {
  color: #e6efe6;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.reference-list {
  font-size: 14px;
  color: #cbd5cb;
}

@media (max-width: 900px) {
  .headline {
    font-size: 30px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
