:root {
  --teal: #079f93;
  --teal-dark: #047a72;
  --lime: #a7f20b;
  --green: #4fca5b;
  --blue: #2e7dff;
  --ink: #102a28;
  --muted: #5c706c;
  --line: #dbe8e4;
  --soft: #f5f7fa;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(9, 80, 73, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, 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(1160px, calc(100% - 40px));
  margin: 0 auto;
}

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

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

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

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

.nav-menu a {
  color: #284340;
}

.nav-menu a.active,
.nav-menu a:hover {
  color: var(--teal);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 46px;
  padding: 0 22px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta {
  background: linear-gradient(135deg, var(--teal), var(--green));
  color: var(--white) !important;
  box-shadow: 0 12px 24px rgba(7, 159, 147, 0.2);
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--green));
  color: var(--white);
  box-shadow: 0 18px 32px rgba(7, 159, 147, 0.22);
}

.btn-secondary {
  background: var(--white);
  color: var(--teal-dark);
  border: 1px solid var(--line);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
}

.hero {
  padding: 74px 0 88px;
  background:
    radial-gradient(circle at 8% 8%, rgba(167, 242, 11, 0.2), transparent 28%),
    linear-gradient(135deg, #f7fff6 0%, #ffffff 48%, #eefbf8 100%);
}

.hero-grid,
.page-hero-grid,
.split,
.contact-grid,
.contact-layout,
.industry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero h1,
.page-hero h1 {
  margin: 14px 0 18px;
  max-width: 760px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(2.3rem, 4.7vw, 4.15rem);
}

.hero p,
.page-hero p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 650px;
}

.eyebrow {
  display: inline-flex;
  color: var(--teal-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span,
.pill-list span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 0.86rem;
  font-weight: 700;
  color: #36534f;
}

.hero-media img,
.page-hero img,
.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media {
  position: relative;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 26px -22px 26px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--lime));
  opacity: 0.22;
  filter: blur(14px);
}

.section {
  padding: 88px 0;
}

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

h2 {
  margin: 10px 0 16px;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.14;
}

h3 {
  margin: 0 0 10px;
  line-height: 1.25;
}

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

.section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.service-grid,
.testimonial-grid,
.values-grid,
.services-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card,
.values-grid article,
.services-list article,
blockquote,
.contact-form,
.stat-panel,
.contact-details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(16, 42, 40, 0.05);
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  width: 42px;
  height: 4px;
  display: block;
  border-radius: 999px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--teal), var(--lime));
}

.center-action {
  text-align: center;
  margin-top: 34px;
}

.text-link {
  display: inline-flex;
  color: var(--teal-dark);
  font-weight: 800;
  border-bottom: 2px solid var(--lime);
  padding-bottom: 3px;
}

.feature-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: var(--white);
  border-radius: 8px;
  padding: 46px;
}

.feature-band p,
.feature-band .eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.feature-list div {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 20px;
}

.feature-list strong {
  display: block;
  color: var(--lime);
  margin-bottom: 8px;
}

.process-list {
  display: grid;
  gap: 18px;
}

.process-list div {
  border-left: 4px solid var(--teal);
  padding-left: 18px;
}

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

blockquote {
  margin: 0;
}

blockquote p {
  font-size: 1.08rem;
  color: #2e4945;
}

cite {
  color: var(--teal-dark);
  font-style: normal;
  font-weight: 800;
}

.faq-wrap {
  max-width: 920px;
}

.faq-item {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  margin-top: 12px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  transition: max-height 0.25s ease;
  padding: 0 20px;
}

.contact-strip {
  background: linear-gradient(135deg, #f7fff4, #eefbf8);
}

.contact-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
  font-size: 0.9rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fbfdfc;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(7, 159, 147, 0.14);
  border-color: var(--teal);
}

.site-footer {
  background: #092b28;
  color: var(--white);
  padding: 54px 0 24px;
}

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

.footer-logo {
  width: 260px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

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

.site-footer h3 {
  color: var(--lime);
  font-size: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 34px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.page-hero {
  padding: 72px 0;
  background: linear-gradient(135deg, #f7fff4, #ffffff 58%, #ecfbf8);
}

.page-hero img {
  max-height: 430px;
}

.stat-panel {
  display: grid;
  gap: 18px;
}

.stat-panel div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.stat-panel div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.stat-panel strong {
  display: block;
  font-size: 2rem;
  color: var(--teal-dark);
}

.stat-panel span {
  color: var(--muted);
  font-weight: 700;
}

.values-grid {
  grid-template-columns: repeat(4, 1fr);
}

.cta-panel {
  text-align: center;
  max-width: 860px;
  background: linear-gradient(135deg, #f7fff4, #eefbf8);
  border-radius: 8px;
  padding: 52px;
}

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

.services-list article h2 {
  font-size: 1.35rem;
  margin-top: 0;
}

.industry-grid {
  grid-template-columns: 0.85fr 1.15fr;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-hero {
  text-align: center;
}

.contact-hero p,
.contact-hero h1 {
  margin-left: auto;
  margin-right: auto;
}

.contact-layout {
  align-items: start;
  grid-template-columns: 0.85fr 1.15fr;
}

.contact-details {
  display: grid;
  gap: 22px;
}

.contact-details span {
  display: block;
  color: var(--teal-dark);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}

.contact-details a {
  font-size: 1.1rem;
  font-weight: 800;
}

.map-section {
  padding: 0 0 88px;
}

.map-heading {
  margin-bottom: 22px;
}

iframe {
  width: 100%;
  min-height: 390px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

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

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

  .hero-grid,
  .page-hero-grid,
  .split,
  .contact-grid,
  .contact-layout,
  .industry-grid,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .reverse .image-card {
    order: 2;
  }

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

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

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

  .nav {
    min-height: 74px;
  }

  .brand img {
    width: 220px;
  }

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

  .hero-actions,
  .footer-bottom {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .service-grid,
  .testimonial-grid,
  .values-grid,
  .services-list,
  .feature-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-band,
  .cta-panel {
    padding: 28px;
  }

  .footer-logo {
    width: 220px;
  }
}
/* @vn-deploy:1779801875753 */
