:root {
  --forest: #244f2f;
  --leaf: #5d9a46;
  --fresh: #8fbd56;
  --gold: #efbd4f;
  --corn: #ffd978;
  --earth: #8a6848;
  --cream: #fbf7ee;
  --white: #ffffff;
  --text: #263328;
  --muted: #667064;
  --line: #e6eadf;
  --shadow: 0 18px 46px rgba(63, 91, 53, 0.16);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.mini-label {
  color: var(--earth);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-modern {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-modern::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(36, 79, 47, 0.88), rgba(36, 79, 47, 0.42) 58%, rgba(36, 79, 47, 0.14)),
    linear-gradient(0deg, rgba(251, 247, 238, 1), rgba(251, 247, 238, 0) 36%);
}

.hero-modern-content {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0 110px;
  color: var(--white);
}

.hero-modern-content .mini-label {
  color: var(--corn);
}

.hero-modern h1 {
  max-width: 780px;
  margin-top: 10px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.92;
  font-weight: 950;
}

.hero-modern p:not(.mini-label) {
  max-width: 610px;
  margin-top: 20px;
  color: #f7f4e8;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-modern-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn-main,
.btn-light {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.3rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-main {
  color: #273016;
  background: linear-gradient(135deg, var(--corn), var(--gold));
  box-shadow: 0 14px 30px rgba(239, 189, 79, 0.28);
}

.btn-light {
  color: var(--forest);
  background: rgba(255, 255, 255, 0.9);
}

.btn-main:hover,
.btn-light:hover {
  transform: translateY(-2px);
}

.quick-benefits {
  width: min(1120px, calc(100% - 32px));
  margin: -54px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.benefit-item {
  min-height: 112px;
  padding: 22px;
  border: 1px solid rgba(93, 154, 70, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.benefit-item strong,
.benefit-item span {
  display: block;
}

.benefit-item strong {
  color: var(--forest);
  font-size: 1.05rem;
}

.benefit-item span {
  margin-top: 6px;
  color: var(--muted);
}

.section-soft,
.split-section,
.services-clean,
.final-cta {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-soft {
  width: min(1320px, calc(100% - 32px));
  padding: 90px 0 46px;
}

.section-title {
  max-width: 680px;
  margin-bottom: 26px;
}

.section-title h2,
.split-copy h2,
.final-cta h2 {
  margin-top: 8px;
  color: var(--forest);
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 950;
}

.carousel-wrap {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(330px, 1fr);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 22px;
  scrollbar-color: var(--fresh) transparent;
}

.products-wide {
  margin-left: calc((100% - min(1320px, 100%)) / 2);
}

.carousel-card {
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(63, 91, 53, 0.1);
  scroll-snap-align: start;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.carousel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.carousel-card img {
  width: 100%;
  height: 285px;
  object-fit: cover;
}

.carousel-card div {
  padding: 22px;
}

.carousel-card span {
  color: var(--earth);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.carousel-card h3 {
  margin-top: 6px;
  color: var(--forest);
  font-size: 1.45rem;
}

.carousel-card p,
.split-copy p,
.service-mini p {
  margin-top: 8px;
  color: var(--muted);
}

.card-btn {
  min-width: 86px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  color: var(--forest);
  background: #f7d36d;
  font-size: 0.92rem;
  font-weight: 950;
  box-shadow: 0 10px 22px rgba(239, 189, 79, 0.18);
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 34px;
  padding: 56px 0;
}

.split-copy {
  padding: 32px 0;
}

.split-copy .btn-main {
  margin-top: 24px;
}

.split-image {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.split-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.services-clean {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 40px 0 84px;
}

.service-mini {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-mini:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-mini img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.service-mini h3,
.service-mini p,
.service-mini .card-btn {
  padding-left: 20px;
  padding-right: 20px;
}

.service-mini h3 {
  padding-top: 20px;
  color: var(--forest);
  font-size: 1.25rem;
}

.service-mini p {
  padding-bottom: 10px;
}

.service-mini .card-btn {
  margin-left: 20px;
  margin-bottom: 22px;
}

.service-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.42rem 0.85rem;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.final-cta {
  margin-bottom: 70px;
  padding: 48px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 217, 120, 0.32), rgba(255, 255, 255, 0)),
    var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.final-cta .btn-main {
  margin-top: 24px;
}

.footer-modern {
  padding: 26px 16px;
  color: #eef5e8;
  background: var(--forest);
  text-align: center;
}

@media (max-width: 900px) {
  .quick-benefits,
  .services-clean,
  .split-section {
    grid-template-columns: 1fr;
  }

  .quick-benefits {
    margin-top: -32px;
  }

  .split-section {
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .hero-modern {
    min-height: 590px;
  }

  .hero-modern-content {
    padding-bottom: 86px;
  }

  .hero-modern h1 {
    font-size: 3.1rem;
  }

  .btn-main,
  .btn-light {
    width: 100%;
  }

  .carousel-wrap {
    grid-auto-columns: 84%;
  }

  .carousel-card {
    min-height: 430px;
  }

  .carousel-card img {
    height: 235px;
  }

  .split-image img {
    height: 320px;
  }

  .final-cta {
    padding: 34px 22px;
    border-radius: 22px;
  }
}
