@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --green-950: #0d2922;
  --green-900: #173f35;
  --green-800: #235548;
  --green-700: #2f6f5d;
  --green-100: #dceae5;
  --cream: #f5f1e8;
  --paper: #fffdf8;
  --ink: #17211e;
  --muted: #5f6b67;
  --line: #d8dedb;
  --accent: #d8b45b;
  --shadow: 0 20px 60px rgba(16, 45, 37, 0.12);
  --radius: 24px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(23, 63, 53, 0.08);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green-900);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  margin-top: -2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.92rem;
  font-weight: 600;
}

.main-nav a:not(.nav-cta):hover {
  color: var(--green-700);
}

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--green-900);
  color: white;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  background:
    radial-gradient(circle at 76% 26%, rgba(216, 180, 91, 0.22), transparent 26%),
    linear-gradient(135deg, #eff4f0 0%, #f7f3ea 54%, #eef4f0 100%);
  overflow: hidden;
}

.hero-grid {
  min-height: 700px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 70px;
  padding-block: 90px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--green-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #b8dbcf;
}

.hero h1,
.section h2 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 5.8vw, 5.5rem);
}

.hero-copy > p {
  max-width: 690px;
  margin: 25px 0 32px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: white;
  background: var(--green-900);
  box-shadow: 0 12px 30px rgba(23, 63, 53, 0.22);
}

.button.secondary {
  border: 1px solid rgba(23, 63, 53, 0.18);
  background: rgba(255,255,255,0.68);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 46px;
  max-width: 650px;
}

.trust-row div {
  padding-top: 16px;
  border-top: 1px solid rgba(23, 63, 53, 0.18);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-panel {
  position: relative;
  padding: 42px;
  border-radius: 34px;
  color: white;
  background: var(--green-950);
  box-shadow: var(--shadow);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -70px -70px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 36px solid rgba(255,255,255,0.035);
}

.panel-badge {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  color: #cfdfd9;
  background: rgba(255,255,255,0.08);
  font-size: 0.74rem;
  font-weight: 700;
}

.hero-panel h2 {
  margin: 28px 0 24px;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.17;
  letter-spacing: -0.04em;
}

.hero-panel ul {
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.hero-panel li {
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.hero-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-panel a {
  color: #d8e8e2;
  font-weight: 700;
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section h2 {
  font-size: clamp(2.2rem, 4.5vw, 4.3rem);
}

.section-heading p,
.lead {
  color: var(--muted);
  font-size: 1.02rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 290px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.card-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  color: var(--green-900);
  background: var(--green-100);
  font-weight: 800;
  font-size: 0.8rem;
}

.service-card h3 {
  margin: 58px 0 10px;
  font-size: 1.25rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.products {
  background: var(--cream);
}

.products-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 80px;
  align-items: start;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--green-700);
  font-weight: 800;
}

.product-list {
  border-top: 1px solid rgba(23, 63, 53, 0.18);
}

.product-list div {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(23, 63, 53, 0.18);
}

.product-list strong {
  font-size: 1.05rem;
}

.product-list span {
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-box {
  padding: 55px;
  border-radius: 30px;
  color: white;
  background: var(--green-900);
}

.about-box h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.about-box p {
  color: #d6e2de;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 45px;
}

.about-copy h3 {
  margin-top: 0;
  font-size: 1.7rem;
}

.check-list p {
  padding: 16px 0;
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.check-list span {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  margin-right: 10px;
  border-radius: 50%;
  color: white;
  background: var(--green-700);
  font-weight: 800;
}

.process {
  padding-top: 20px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.steps div {
  padding: 25px 0;
  border-top: 2px solid var(--green-900);
}

.steps span {
  display: block;
  color: var(--green-700);
  font-weight: 800;
}

.steps strong {
  display: block;
  margin: 22px 0 8px;
  font-size: 1.15rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact {
  color: white;
  background: var(--green-950);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 70px;
  align-items: center;
}

.contact h2 {
  max-width: 720px;
}

.contact p {
  max-width: 650px;
  color: #c5d7d1;
}

.contact-card {
  padding: 18px 34px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  background: rgba(255,255,255,0.06);
}

.contact-card div {
  padding: 19px 0;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}

.contact-card div:last-child {
  border-bottom: 0;
}

.contact-card span,
.contact-card a,
.contact-card strong {
  display: block;
}

.contact-card span {
  color: #9fb8af;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-card a,
.contact-card strong {
  margin-top: 4px;
  font-size: 1.04rem;
}

footer {
  padding: 42px 0 20px;
  color: #d7e3df;
  background: #081d18;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.footer-row p {
  margin: 4px 0 0;
  color: #8fa79f;
}

.footer-row a {
  font-weight: 700;
}

.copyright {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #80968f;
  font-size: 0.8rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .products-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    gap: 45px;
    padding-block: 70px;
  }

  .card-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    gap: 45px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .menu-button {
    display: block;
    cursor: pointer;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    left: 14px;
    right: 14px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 12px;
  }

  .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .hero-grid {
    padding-block: 54px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 4.3rem);
  }

  .hero-panel {
    padding: 30px 24px;
    border-radius: 25px;
  }

  .trust-row,
  .card-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .trust-row {
    gap: 4px;
  }

  .section {
    padding: 78px 0;
  }

  .service-card {
    min-height: 235px;
  }

  .service-card h3 {
    margin-top: 36px;
  }

  .product-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .about-box,
  .about-copy {
    padding: 34px 24px;
  }

  .footer-row {
    flex-direction: column;
  }
}
