:root {
  --ink: #343132;
  --muted: #686d76;
  --blue: #2e7dff;
  --blue-dark: #155ad1;
  --paper: #ffffff;
  --soft: #f5f7fa;
  --line: #dfe5ee;
  --gold: #c8912e;
  --green: #2f855a;
  --shadow: 0 18px 44px rgba(34, 41, 54, 0.12);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

p {
  margin: 0 0 18px;
}

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

.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 13px;
}

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

.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 {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.2s ease;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 3px 0;
}

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

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

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 24px rgba(46, 125, 255, 0.22);
}

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

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.btn-light {
  background: #fff;
  color: var(--ink);
}

.hero {
  background: linear-gradient(90deg, rgba(245, 247, 250, 0.98) 0%, rgba(245, 247, 250, 0.88) 46%, rgba(245, 247, 250, 0.18) 100%), url("../images/generated-hero-image.png");
  background-size: cover;
  background-position: center right;
  min-height: 620px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.hero-content {
  max-width: 620px;
  padding: 72px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.18;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(38px, 5vw, 62px);
  max-width: 650px;
  margin: 18px 0 18px;
}

h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin-bottom: 16px;
}

h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.lead {
  font-size: 18px;
  color: #4b5058;
  max-width: 680px;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 38px;
  max-width: 640px;
}

.stat {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.stat strong {
  display: block;
  font-size: 22px;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 86px 0;
}

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

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

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--soft);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

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

.badge-list li,
.check-list li {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 13px 14px;
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
  margin-right: 10px;
}

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

.grid {
  display: grid;
  gap: 22px;
}

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

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

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  min-height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 125, 255, 0.1);
  color: var(--blue-dark);
  font-weight: 800;
  margin-bottom: 16px;
}

.service-feature {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  border-radius: var(--radius);
}

.service-feature .split {
  gap: 0;
}

.service-feature .content {
  padding: 46px;
}

.service-feature p {
  color: #d9dde4;
}

.service-feature img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.process {
  counter-reset: step;
}

.process .card {
  position: relative;
}

.process .card::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(46, 125, 255, 0.18);
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial p {
  color: #4c525c;
}

.testimonial strong {
  display: block;
}

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

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

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq p {
  margin-top: 12px;
  color: var(--muted);
}

.page-hero {
  background: var(--soft);
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
}

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

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

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.contact-item strong {
  display: block;
  margin-bottom: 4px;
}

.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

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

.field {
  display: grid;
  gap: 7px;
}

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

label {
  font-size: 13px;
  font-weight: 700;
}

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

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

.map-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.map-box a {
  display: grid;
  min-height: 260px;
  place-items: center;
  text-align: center;
  padding: 28px;
  background: linear-gradient(135deg, rgba(46, 125, 255, 0.12), rgba(200, 145, 46, 0.14));
  color: var(--ink);
  font-weight: 700;
}

.cta-band {
  background: var(--ink);
  color: #fff;
  padding: 54px 0;
}

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

.cta-band p {
  color: #dde2e9;
  margin: 0;
}

.site-footer {
  background: #242222;
  color: #fff;
  padding: 58px 0 24px;
}

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

.footer-logo {
  width: 180px;
  background: #fff;
  border-radius: var(--radius);
  padding: 8px;
  margin-bottom: 16px;
}

.site-footer h3 {
  font-size: 16px;
  margin-bottom: 14px;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: #d7d9dd;
  font-size: 14px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 34px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: #c7c9ce;
  font-size: 13px;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
  }

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

  .nav.open {
    display: flex;
  }

  .hero {
    min-height: auto;
    background: linear-gradient(180deg, rgba(245, 247, 250, 0.98) 0%, rgba(245, 247, 250, 0.9) 100%), url("../images/generated-hero-image.png");
    background-size: cover;
    background-position: center;
  }

  .hero-stats,
  .grid-3,
  .grid-4,
  .split,
  .contact-wrap,
  .footer-grid,
  .cta-band .container {
    grid-template-columns: 1fr;
  }

  .cta-band .container {
    display: grid;
  }

  .service-feature .content {
    padding: 32px;
  }
}

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

  .topbar .container {
    display: none;
  }

  .nav-wrap {
    height: 68px;
  }

  .brand img {
    width: 150px;
  }

  h1 {
    font-size: 34px;
  }

  .section {
    padding: 62px 0;
  }

  .hero-content {
    padding: 58px 0;
  }

  .badge-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .form {
    padding: 22px;
  }
}
/* @vn-deploy:1780861325561 */
