:root {
  --green: #75be9a;
  --green-dark: #4d9d79;
  --indigo: #1d1750;
  --indigo-soft: #2f286b;
  --gold: #d89b21;
  --ink: #1e2430;
  --muted: #667085;
  --line: #e6ece9;
  --surface: #f7fbf9;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(29, 23, 80, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.topbar {
  background: var(--indigo);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
}

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

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

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

.brand img {
  width: 220px;
  height: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--indigo);
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  font-size: 0.95rem;
}

.main-nav a {
  color: var(--indigo);
}

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

.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 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

.btn-secondary {
  background: var(--indigo);
  color: var(--white);
}

.btn-outline {
  border-color: rgba(29, 23, 80, 0.22);
  color: var(--indigo);
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(112deg, rgba(29, 23, 80, 0.94), rgba(29, 23, 80, 0.78)), url("../images/generated-hero-image.png") center right / cover;
  color: var(--white);
}

.hero .container {
  min-height: 630px;
  display: grid;
  align-items: center;
  padding: 86px 0;
}

.hero-content {
  max-width: 650px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3 {
  color: var(--indigo);
  line-height: 1.16;
  margin: 0;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 4.2vw, 4.4rem);
  max-width: 760px;
}

.hero p {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.86);
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
  margin-top: 44px;
}

.metric {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.metric strong {
  display: block;
  color: var(--green);
  font-size: 1.35rem;
}

.metric span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.section {
  padding: 90px 0;
}

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

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2,
.page-hero h1 {
  font-size: clamp(2rem, 3vw, 3.25rem);
}

.section-head p,
.page-hero p {
  color: var(--muted);
  margin: 16px 0 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 54px;
  align-items: center;
}

.image-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--line);
}

.image-panel img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.image-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--indigo);
  box-shadow: 0 10px 34px rgba(29, 23, 80, 0.14);
}

.image-note strong {
  display: block;
  margin-bottom: 4px;
}

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

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

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.65);
}

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

.service-card,
.value-card,
.testimonial,
.contact-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card,
.value-card,
.testimonial,
.contact-card {
  padding: 26px;
}

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

.icon-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: rgba(117, 190, 154, 0.18);
  color: var(--indigo);
  font-weight: 900;
}

.service-card h3,
.value-card h3,
.testimonial h3,
.contact-card h3 {
  font-size: 1.1rem;
}

.service-card p,
.value-card p,
.testimonial p,
.contact-card p {
  color: var(--muted);
  margin: 12px 0 0;
}

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

.process-step {
  counter-increment: process;
  padding: 26px;
  border-left: 3px solid var(--green);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 10px 36px rgba(29, 23, 80, 0.07);
}

.process-step::before {
  content: "0" counter(process);
  display: block;
  color: var(--green-dark);
  font-weight: 900;
  margin-bottom: 12px;
}

.cta-band {
  background: var(--indigo);
  color: var(--white);
  padding: 64px 0;
}

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

.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 2.6vw, 2.7rem);
}

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

.page-hero {
  background: linear-gradient(118deg, rgba(117, 190, 154, 0.16), rgba(29, 23, 80, 0.08));
  padding: 84px 0;
}

.page-hero .container {
  max-width: 960px;
}

.split-band {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: stretch;
}

.split-band .image-panel img {
  min-height: 100%;
}

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

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-item button {
  width: 100%;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--indigo);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

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

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

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
}

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

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

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

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

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--indigo);
  font-weight: 800;
}

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

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

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

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

.footer-logo {
  width: 210px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

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

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

.footer-links a:hover {
  color: var(--green);
}

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

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

  .nav-toggle {
    display: inline-flex;
  }

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

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

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

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

  .hero .container {
    min-height: 560px;
  }

  .hero-metrics,
  .two-col,
  .split-band,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .brand img {
    width: 178px;
  }

  .hero {
    background-position: center;
  }

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

  .hero-metrics,
  .card-grid,
  .process,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 66px 0;
  }

  .image-panel img {
    min-height: 300px;
  }

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

  .btn {
    width: 100%;
  }
}
/* @vn-deploy:1784884209109 */
