:root {
  --navy: #0f1d39;
  --green: #68ba93;
  --blue: #2e7dff;
  --ink: #172033;
  --muted: #647084;
  --soft: #f5f7fa;
  --line: #dfe6ef;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(15, 29, 57, 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 {
  max-width: 100%;
  display: block;
}

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

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

.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.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(12px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
  color: var(--navy);
}

.nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

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

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

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--green);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(104, 186, 147, 0.28);
}

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

.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  color: var(--white);
  background: linear-gradient(90deg, rgba(15, 29, 57, 0.92), rgba(15, 29, 57, 0.68) 48%, rgba(15, 29, 57, 0.2)),
    url("../images/generated-hero-image.png") center / cover no-repeat;
}

.hero-inner {
  max-width: 660px;
  padding: 92px 0;
}

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

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--green);
}

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

.hero h1 {
  color: var(--white);
  font-size: clamp(34px, 5vw, 58px);
  max-width: 720px;
}

.hero p {
  max-width: 620px;
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: -54px;
  position: relative;
  z-index: 2;
  background: var(--line);
  box-shadow: var(--shadow);
}

.proof-card {
  background: var(--white);
  padding: 24px;
}

.proof-card strong {
  display: block;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.1;
}

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

section {
  padding: 86px 0;
}

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

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

.section-head h2,
.page-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
}

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

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

.image-panel {
  position: relative;
}

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

.badge-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 250px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

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

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

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--green);
}

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

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

.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card .icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--navy);
  background: rgba(104, 186, 147, 0.18);
  font-weight: 900;
}

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

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

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

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

.step {
  padding: 24px;
  border-left: 3px solid var(--green);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(15, 29, 57, 0.07);
  counter-increment: step;
}

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

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

.quote {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.quote p {
  margin: 0 0 16px;
  color: var(--ink);
}

.quote strong {
  color: var(--navy);
}

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

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

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

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

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

.page-hero {
  padding: 76px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 55%, rgba(104, 186, 147, 0.16) 100%);
}

.breadcrumbs {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 14px;
}

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

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

.info-row {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.info-row span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.info-row strong {
  color: var(--navy);
}

.form {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.field.full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
}

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

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

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

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

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

.cta-band h2 {
  color: var(--white);
  font-size: clamp(26px, 4vw, 38px);
}

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

.footer {
  background: #091429;
  color: rgba(255, 255, 255, 0.78);
  padding: 56px 0 24px;
}

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

.footer img {
  width: 245px;
  margin-bottom: 18px;
  padding: 10px;
  border-radius: var(--radius);
  background: var(--white);
}

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

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

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

.copyright {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

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

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 20px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 12px 0;
  }

  .brand img {
    width: 220px;
  }

  .hero {
    min-height: 560px;
    background-position: center;
  }

  .hero-proof,
  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  section {
    padding: 62px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 72px 0 108px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-proof,
  .cards,
  .process,
  .testimonial-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .badge-card {
    position: static;
    margin-top: -18px;
    max-width: none;
  }

  .brand img {
    width: 190px;
  }
}
/* @vn-deploy:1779817021467 */
