:root {
  --green-950: #07331b;
  --green-900: #0d4f29;
  --green-800: #126437;
  --green-700: #197444;
  --green-100: #e7f2eb;
  --orange-600: #e87f19;
  --orange-500: #f08a24;
  --orange-100: #fff0df;
  --ink: #173126;
  --muted: #617168;
  --cream: #fbfaf5;
  --line: #dfe7e1;
  --white: #fff;
  --shadow: 0 18px 50px rgba(7, 51, 27, .11);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-soft { background: var(--cream); }
.section-green { background: var(--green-950); color: var(--white); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--orange-600);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.18; letter-spacing: -.025em; }
h1 { font-size: clamp(2.35rem, 5vw, 4.35rem); margin-bottom: 22px; }
h2 { font-size: clamp(2rem, 3.7vw, 3.1rem); margin-bottom: 18px; }
h3 { font-size: 1.2rem; margin-bottom: 10px; }
p { margin-bottom: 20px; }
.lead { max-width: 720px; color: var(--muted); font-size: 1.08rem; }
.section-green .lead { color: rgba(255,255,255,.72); }
.section-heading { margin-bottom: 45px; }
.section-heading.center { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--orange-500);
  color: var(--white);
  font-weight: 800;
  line-height: 1.2;
  transition: transform .2s, background .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); background: #d96f0d; }
.btn-outline { border-color: rgba(255,255,255,.45); background: transparent; }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-green { background: var(--green-900); }
.btn-green:hover { background: var(--green-800); }
.text-link { color: var(--green-800); font-weight: 800; }
.text-link::after { content: " →"; color: var(--orange-600); }

.topbar { background: var(--green-950); color: rgba(255,255,255,.86); font-size: .8rem; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-links { display: flex; align-items: center; gap: 22px; }
.topbar a:hover { color: var(--white); }
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand-logo { width: 240px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav > a:not(.btn) { position: relative; color: #35473e; font-size: .92rem; font-weight: 700; }
.site-nav > a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 100%; height: 2px; background: var(--orange-500); transform: scaleX(0); transition: transform .2s; }
.site-nav > a:hover::after, .site-nav > a.active::after { transform: scaleX(1); }
.site-nav > a.active { color: var(--green-900); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--green-100); color: var(--green-900); font-size: 1.35rem; }

.hero { position: relative; min-height: 660px; display: grid; align-items: center; overflow: hidden; color: var(--white); background: var(--green-950); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,27,14,.95) 0%, rgba(5,36,19,.82) 38%, rgba(5,36,19,.18) 72%); }
.hero-content { position: relative; z-index: 1; max-width: 660px; padding: 90px 0 130px; }
.hero .eyebrow { color: #ffad5d; }
.hero p { max-width: 620px; color: rgba(255,255,255,.82); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 38px; color: rgba(255,255,255,.86); font-size: .86rem; font-weight: 700; }
.hero-trust span::before { content: "✓"; margin-right: 8px; color: #ffad5d; }
.hero-stats { position: absolute; z-index: 2; bottom: 0; left: 50%; width: min(calc(100% - 40px), var(--container)); transform: translateX(-50%); display: grid; grid-template-columns: repeat(4, 1fr); border-radius: 20px 20px 0 0; overflow: hidden; box-shadow: var(--shadow); }
.hero-stat { padding: 21px 26px; background: rgba(255,255,255,.96); color: var(--ink); border-right: 1px solid var(--line); }
.hero-stat:last-child { border: 0; }
.hero-stat strong { display: block; color: var(--green-900); font-size: 1.1rem; }
.hero-stat span { color: var(--muted); font-size: .78rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.image-frame { position: relative; }
.image-frame img { width: 100%; min-height: 480px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.image-badge { position: absolute; right: -22px; bottom: 28px; width: 185px; padding: 20px; border-radius: 18px; background: var(--green-900); color: var(--white); box-shadow: var(--shadow); }
.image-badge strong { display: block; color: #ffae63; font-size: 1.5rem; }
.check-list { display: grid; gap: 13px; padding: 0; margin: 28px 0; list-style: none; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 650; }
.check-list li::before { content: "✓"; flex: 0 0 25px; width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: var(--orange-100); color: var(--orange-600); font-size: .8rem; font-weight: 900; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { position: relative; min-height: 250px; padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); overflow: hidden; transition: transform .25s, box-shadow .25s, border-color .25s; }
.service-card:hover { transform: translateY(-6px); border-color: #b9d4c2; box-shadow: var(--shadow); }
.service-card::after { content: ""; position: absolute; right: -30px; bottom: -35px; width: 110px; height: 110px; border-radius: 50%; background: var(--green-100); opacity: .75; }
.card-number { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 26px; border-radius: 14px; background: var(--green-900); color: var(--white); font-size: .8rem; font-weight: 800; }
.service-card p { position: relative; z-index: 1; color: var(--muted); font-size: .91rem; }
.service-card h3 { position: relative; z-index: 1; }

.product-band { display: grid; grid-template-columns: 1.1fr .9fr; align-items: stretch; min-height: 540px; }
.product-band-image img { width: 100%; height: 100%; object-fit: cover; }
.product-band-content { display: flex; flex-direction: column; justify-content: center; padding: 70px max(40px, calc((100vw - var(--container))/2)); padding-left: 70px; background: var(--green-950); color: var(--white); }
.product-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.product-pills span { padding: 8px 13px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(255,255,255,.07); font-size: .81rem; font-weight: 700; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { counter-increment: step; position: relative; padding: 28px 24px; border-left: 3px solid var(--orange-500); background: var(--white); box-shadow: 0 8px 30px rgba(7,51,27,.07); }
.step::before { content: "0" counter(step); display: block; margin-bottom: 18px; color: var(--orange-600); font-size: .78rem; font-weight: 900; letter-spacing: .1em; }
.step p { margin: 0; color: var(--muted); font-size: .88rem; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote-card { padding: 30px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.06); }
.quote-mark { color: var(--orange-500); font: 700 3rem Georgia, serif; line-height: .7; }
.quote-card p { color: rgba(255,255,255,.77); font-size: .93rem; }
.quote-card strong { display: block; }
.quote-card span { color: #ffad5d; font-size: .78rem; }

.faq-list { max-width: 850px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: flex; justify-content: space-between; gap: 24px; padding: 23px 4px; border: 0; background: transparent; color: var(--ink); text-align: left; font-weight: 800; }
.faq-question::after { content: "+"; color: var(--orange-600); font-size: 1.4rem; line-height: 1; }
.faq-item.open .faq-question::after { content: "−"; }
.faq-answer { display: none; max-width: 760px; padding: 0 4px 22px; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { margin: 0; }

.cta-band { padding: 70px 0; background: linear-gradient(110deg, var(--green-900), var(--green-950)); color: var(--white); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-inner h2 { max-width: 710px; margin: 0; font-size: clamp(1.8rem, 3.5vw, 2.8rem); }

.page-hero { position: relative; overflow: hidden; padding: 100px 0 92px; background: var(--green-950); color: var(--white); }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 88% 20%, rgba(240,138,36,.24), transparent 28%), linear-gradient(120deg, transparent 62%, rgba(255,255,255,.05)); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 780px; font-size: clamp(2.35rem, 5vw, 3.8rem); }
.page-hero p { max-width: 700px; color: rgba(255,255,255,.74); }
.breadcrumbs { margin-bottom: 18px; color: #ffb56e; font-size: .79rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card { padding: 26px; border-top: 3px solid var(--orange-500); background: var(--cream); }
.value-card p { margin: 0; color: var(--muted); font-size: .87rem; }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 45px; background: rgba(255,255,255,.12); }
.metric { padding: 30px; background: var(--green-950); }
.metric strong { display: block; color: #ffad5d; font-size: 2rem; }
.metric span { color: rgba(255,255,255,.68); font-size: .83rem; }

.service-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-detail { display: grid; grid-template-columns: 54px 1fr; gap: 20px; padding: 28px; border: 1px solid var(--line); border-radius: 16px; }
.service-detail .card-number { margin: 0; }
.service-detail p { margin: 0; color: var(--muted); font-size: .9rem; }
.industries { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.industry { padding: 22px 12px; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; text-align: center; background: rgba(255,255,255,.05); font-weight: 750; font-size: .83rem; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 52px; align-items: start; }
.contact-cards { display: grid; gap: 14px; margin-top: 30px; }
.contact-card { display: grid; grid-template-columns: 44px 1fr; gap: 14px; padding: 18px; border: 1px solid var(--line); border-radius: 14px; }
.contact-icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--orange-100); color: var(--orange-600); font-weight: 900; }
.contact-card strong { display: block; font-size: .9rem; }
.contact-card span, .contact-card a { color: var(--muted); font-size: .87rem; line-height: 1.45; }
.form-card { padding: 38px; border-radius: var(--radius); background: var(--cream); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; margin-bottom: 7px; font-size: .8rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; padding: 14px 15px; border: 1px solid #ccd8cf; border-radius: 10px; background: var(--white); color: var(--ink); outline: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green-700); box-shadow: 0 0 0 3px rgba(25,116,68,.11); }
.field textarea { min-height: 135px; resize: vertical; }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: .76rem; }
.form-status { display: none; margin: 14px 0 0; padding: 12px; border-radius: 9px; background: var(--green-100); color: var(--green-900); font-size: .84rem; font-weight: 700; }
.map-wrap { height: 440px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

.site-footer { background: #052814; color: var(--white); }
.footer-main { padding: 70px 0 48px; display: grid; grid-template-columns: 1.4fr .7fr .9fr 1.15fr; gap: 52px; }
.footer-logo { width: 230px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-about { color: rgba(255,255,255,.66); font-size: .88rem; }
.footer-title { margin-bottom: 18px; color: #ffad5d; font-size: .76rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; color: rgba(255,255,255,.72); font-size: .86rem; }
.footer-links a:hover { color: var(--white); }
.footer-contact { display: grid; gap: 12px; color: rgba(255,255,255,.72); font-size: .84rem; }
.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.5); font-size: .76rem; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 20px; }

.floating-call { position: fixed; z-index: 900; right: 22px; bottom: 22px; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--orange-500); color: var(--white); box-shadow: 0 10px 30px rgba(232,127,25,.35); font-size: 1.35rem; }

@media (max-width: 980px) {
  .topbar { display: none; }
  .nav-wrap { min-height: 74px; }
  .brand-logo { width: 210px; }
  .menu-toggle { display: grid; place-items: center; }
  .site-nav { position: fixed; inset: 74px 0 0; display: flex; flex-direction: column; align-items: flex-start; gap: 0; padding: 24px 20px; background: var(--white); transform: translateX(100%); transition: transform .25s; }
  .site-nav.open { transform: translateX(0); }
  .site-nav > a { width: 100%; padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .site-nav > a.btn { margin-top: 18px; border: 0; }
  .site-nav > a:not(.btn)::after { display: none; }
  .hero { min-height: 720px; }
  .hero-content { padding: 75px 0 190px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 45px; }
  .image-frame { max-width: 720px; }
  .card-grid, .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .steps, .values-grid { grid-template-columns: 1fr 1fr; }
  .product-band { grid-template-columns: 1fr; }
  .product-band-image { height: 450px; }
  .product-band-content { padding: 60px max(20px, calc((100vw - var(--container))/2)); }
  .industries { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1.2fr .8fr 1fr; }
  .footer-main > div:first-child { grid-column: 1 / -1; max-width: 650px; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 70px 0; }
  h1 { font-size: 2.45rem; }
  h2 { font-size: 2rem; }
  .hero { min-height: 770px; }
  .hero::after { background: linear-gradient(90deg, rgba(3,27,14,.93), rgba(3,27,14,.62)); }
  .hero-content { padding-top: 62px; }
  .hero p { font-size: .96rem; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { gap: 9px; }
  .hero-stats { width: calc(100% - 30px); }
  .hero-stat { padding: 16px; }
  .hero-stat strong { font-size: .92rem; }
  .hero-stat span { font-size: .68rem; }
  .card-grid, .testimonial-grid, .steps, .values-grid, .service-detail-grid, .metric-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .image-frame img { min-height: 360px; }
  .image-badge { right: 12px; bottom: 12px; }
  .product-band-image { height: 350px; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .cta-inner .btn { width: 100%; }
  .industries { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-card { padding: 25px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .map-wrap { height: 350px; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-main > div:first-child { grid-column: auto; }
  .footer-bottom .container { flex-direction: column; gap: 5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
/* @vn-deploy:1785757211473 */
