:root {
  --green: #5ebb5b;
  --green-dark: #237a3e;
  --yellow: #ffda48;
  --ink: #173024;
  --muted: #627166;
  --line: #dbe7dc;
  --soft: #f6fbf4;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(20, 65, 35, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand span {
  max-width: 260px;
  line-height: 1.15;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 15px;
  font-weight: 700;
}

.nav-links a {
  color: #314437;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 6px;
  font-size: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.2;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(94, 187, 91, 0.22);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(246, 251, 244, 0.98) 0%, rgba(246, 251, 244, 0.9) 43%, rgba(246, 251, 244, 0.12) 100%), url("../images/generated-hero-image.png") center right / cover no-repeat;
}

.hero .container {
  min-height: 650px;
  display: flex;
  align-items: center;
  padding: 86px 0 120px;
}

.hero-content {
  width: min(590px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 4px;
  background: var(--yellow);
  border-radius: 99px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(38px, 5vw, 62px);
  margin-top: 18px;
}

h2 {
  font-size: clamp(30px, 3.2vw, 44px);
}

h3 {
  font-size: 21px;
}

p {
  margin: 0;
}

.lead {
  margin-top: 22px;
  color: #405347;
  font-size: 18px;
  max-width: 690px;
}

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

.hero-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid var(--line);
}

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

.metric {
  padding: 22px 18px;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  color: var(--green-dark);
  font-size: 24px;
}

.metric span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 84px 0;
}

.section-soft {
  background: var(--soft);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 38px;
}

.section-head p {
  max-width: 560px;
  color: var(--muted);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.feature-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

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

.content-stack {
  display: grid;
  gap: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #344a39;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  background: var(--yellow);
  border: 4px solid var(--green);
  border-radius: 50%;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 10px 26px rgba(23, 48, 36, 0.05);
}

.card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(94, 187, 91, 0.13);
  color: var(--green-dark);
  font-weight: 900;
  margin-bottom: 18px;
}

.card p {
  color: var(--muted);
  margin-top: 10px;
}

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

.step {
  border-left: 4px solid var(--yellow);
}

.step strong {
  color: var(--green-dark);
  display: block;
  margin-bottom: 8px;
}

.testimonial-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.quote {
  font-size: 15px;
}

.quote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-weight: 800;
  color: var(--ink);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--ink);
}

.faq-item p {
  color: var(--muted);
  margin-top: 12px;
}

.page-hero {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
  padding: 74px 0;
}

.page-hero h1 {
  max-width: 850px;
}

.page-hero p {
  max-width: 760px;
}

.split-band {
  background: var(--ink);
  color: var(--white);
}

.split-band .lead,
.split-band p {
  color: rgba(255, 255, 255, 0.78);
}

.split-band .eyebrow {
  color: var(--yellow);
}

.split-band .feature-image {
  box-shadow: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-list a,
.contact-list div {
  display: block;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-list strong {
  display: block;
  margin-bottom: 4px;
}

.form {
  display: grid;
  gap: 14px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

.form textarea {
  min-height: 130px;
  resize: vertical;
}

.map {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 8px;
  filter: saturate(0.9);
}

.cta-band {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
  padding: 52px 0;
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 10px;
}

.site-footer {
  background: #102219;
  color: rgba(255, 255, 255, 0.78);
  padding: 46px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 34px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 900;
}

.footer-brand img {
  width: 46px;
  height: 46px;
}

.site-footer h3 {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}

.powered a {
  color: var(--yellow);
  font-weight: 800;
}

@media (max-width: 900px) {
  .topbar .container,
  .cta-band .container,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 12px;
  }

  .hero {
    background: linear-gradient(180deg, rgba(246, 251, 244, 0.96), rgba(246, 251, 244, 0.84)), url("../images/generated-hero-image.png") center / cover no-repeat;
  }

  .hero .container {
    min-height: auto;
    padding: 72px 0 250px;
  }

  .hero-metrics,
  .service-grid,
  .process,
  .testimonial-grid,
  .faq-grid,
  .grid-2,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-head {
    display: grid;
  }

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

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

  .brand span {
    max-width: 190px;
    font-size: 14px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  .section,
  .page-hero {
    padding: 58px 0;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .card {
    padding: 22px;
  }
}
/* @vn-deploy:1778702445502 */
