* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  color: #1f2a2e;
  background-color: #f6f3ee;
  line-height: 1.6;
}

a {
  color: #1b6b5f;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

header {
  background: #f0ede7;
  border-bottom: 1px solid #e2ddd6;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 8%;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
}

.ad-label {
  font-size: 13px;
  background: #1f2a2e;
  color: #f6f3ee;
  padding: 6px 10px;
  border-radius: 14px;
}

.section {
  padding: 70px 8%;
  position: relative;
}

.section.alt {
  background: #ffffff;
}

.section.soft {
  background: #eef4f1;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero {
  min-height: 70vh;
  padding-top: 90px;
  padding-bottom: 90px;
}

.hero-content h1 {
  font-size: 40px;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 18px;
  max-width: 520px;
}

.primary-btn,
.ghost-btn,
.sticky-cta {
  background: #1b6b5f;
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 22px;
  cursor: pointer;
}

.ghost-btn {
  background: transparent;
  border: 1px solid #1b6b5f;
  color: #1b6b5f;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.image-box {
  background-color: #d9e2df;
  border-radius: 16px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.inline-image {
  max-width: 420px;
}

.card-grid {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card-grid.spaced {
  margin-top: 28px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(31, 42, 46, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
}

.price-tag {
  font-weight: 700;
  color: #1b6b5f;
}

.layered {
  background: #fef8f2;
}

.layered .panel {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(31, 42, 46, 0.1);
}

.bg-growth {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-growth .panel {
  background: rgba(31, 42, 46, 0.75);
  color: #ffffff;
}

.testimonial {
  border-left: 3px solid #1b6b5f;
  padding-left: 16px;
  margin: 18px 0;
}

.form-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(31, 42, 46, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #c9d3d1;
  font-size: 15px;
}

.footer {
  background: #1f2a2e;
  color: #f6f3ee;
  padding: 40px 8%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f6f3ee;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(31, 42, 46, 0.2);
  padding: 18px;
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9;
}

.simple-hero {
  padding-top: 60px;
}

.page-hero {
  background: #ffffff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(31, 42, 46, 0.08);
}

.contact-grid {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(31, 42, 46, 0.08);
}

@media (max-width: 860px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
    padding: 10px 16px;
  }
}
