:root {
  --green: #346b06;
  --green-dark: #234b04;
  --gold: #de9a35;
  --gold-dark: #bd7f22;
  --ink: #202020;
  --muted: #626262;
  --line: #e9e2d7;
  --surface: #fffaf2;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(32, 32, 32, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Raleway, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

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

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

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

.brand img {
  width: min(300px, 62vw);
  height: auto;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--green);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #363636;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  padding: 8px 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

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

.btn-secondary {
  background: var(--gold);
  color: #24160a;
}

.btn-outline {
  border-color: rgba(52, 107, 6, 0.28);
  color: var(--green);
  background: var(--white);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: #222;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.05rem, 4vw, 4rem);
  max-width: 760px;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.7rem);
}

h3 {
  font-size: 1.16rem;
}

p {
  margin: 0;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 720px;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #111;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 24, 12, 0.86) 0%, rgba(25, 38, 15, 0.68) 43%, rgba(25, 38, 15, 0.22) 100%);
  z-index: 1;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 96px 0 120px;
  color: var(--white);
}

.hero h1,
.hero .lead {
  color: var(--white);
}

.hero .lead {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin-top: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.16);
}

.hero-stat {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stat strong {
  display: block;
  color: var(--gold);
  font-size: 1.45rem;
  line-height: 1;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
}

.section {
  padding: 88px 0;
}

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

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

.section-head .lead {
  max-width: 560px;
}

.split {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 52px;
  align-items: center;
}

.image-panel {
  position: relative;
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.badge-panel {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: min(250px, calc(100% - 40px));
  padding: 18px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16);
}

.badge-panel strong {
  display: block;
  color: var(--green);
  font-size: 1.5rem;
  line-height: 1;
}

.badge-panel span {
  color: var(--muted);
  font-size: 0.9rem;
}

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

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

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(222, 154, 53, 0.14);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  min-height: 100%;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
}

.service-card {
  border-top: 4px solid var(--gold);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: rgba(52, 107, 6, 0.1);
  color: var(--green);
  font-weight: 900;
}

.process-band {
  background: var(--green);
  color: var(--white);
}

.process-band h2,
.process-band h3 {
  color: var(--white);
}

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

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

.process-step {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: #1c1308;
  font-weight: 900;
}

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

.quote {
  padding: 26px;
  border-left: 4px solid var(--green);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(32, 32, 32, 0.06);
}

.quote p {
  color: #444;
}

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

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: #222;
  text-align: left;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  color: var(--green);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item.open button::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.page-hero {
  padding: 88px 0;
  background: linear-gradient(135deg, rgba(52, 107, 6, 0.96), rgba(29, 51, 9, 0.94)), url("../images/generated-process-image.png") center/cover;
  color: var(--white);
}

.page-hero h1,
.page-hero .lead {
  color: var(--white);
}

.page-hero .lead {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.86);
}

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

.contact-panel {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--white);
}

.contact-panel h2,
.contact-panel h3 {
  color: var(--white);
}

.contact-panel p,
.contact-panel a {
  color: rgba(255, 255, 255, 0.85);
}

.contact-methods {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.contact-method {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: #333;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  color: var(--ink);
  background: #fff;
}

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

.map-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  min-height: 360px;
  background: var(--surface);
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.cta-band {
  padding: 60px 0;
  background: linear-gradient(90deg, var(--gold), #ebb866);
  color: #24160a;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner h2 {
  color: #24160a;
}

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

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

.footer-logo {
  width: 260px;
  padding: 8px;
  border-radius: var(--radius);
  background: var(--white);
}

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

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

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

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

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

  .site-nav .btn {
    margin-top: 8px;
  }

  .hero {
    min-height: 620px;
  }

  .hero::before {
    background: rgba(16, 24, 12, 0.74);
  }

  .section-head,
  .split,
  .contact-grid,
  .cta-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: start;
  }

  .card-grid,
  .testimonial-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .brand img {
    width: min(220px, 64vw);
  }

  .hero {
    min-height: 650px;
  }

  .hero-content {
    padding: 74px 0 92px;
  }

  .hero-actions,
  .cta-inner {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-stats,
  .card-grid,
  .testimonial-grid,
  .process-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .page-hero {
    padding: 64px 0;
  }

  .badge-panel {
    position: static;
    width: 100%;
    margin-top: 14px;
  }
}
/* @vn-deploy:1784884647057 */
