:root {
  --primary: #2e7dff;
  --primary-dark: #1f5fc9;
  --accent: #f47a2b;
  --ink: #172033;
  --muted: #627086;
  --soft: #f5f7fa;
  --line: #dfe6ef;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(23, 32, 51, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

.topbar {
  background: #142039;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
}

.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.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(223, 230, 239, 0.8);
}

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

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 600;
  color: #2b3548;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transition: width 0.2s ease;
}

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

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

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  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 {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 12px 30px rgba(46, 125, 255, 0.24);
}

.btn-secondary {
  color: var(--primary-dark);
  background: var(--white);
  border-color: rgba(46, 125, 255, 0.3);
}

.btn-light {
  background: var(--white);
  color: var(--primary-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(110deg, rgba(245, 247, 250, 0.96) 0%, rgba(245, 247, 250, 0.86) 46%, rgba(255, 255, 255, 0.18) 72%), url("../images/generated-hero-image.png") center right / cover no-repeat;
}

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

.hero-content {
  width: min(620px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 3px;
  background: var(--accent);
  border-radius: 99px;
}

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

h1 {
  margin-top: 16px;
  font-size: clamp(2.15rem, 4.8vw, 4rem);
  max-width: 780px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.75rem);
}

h3 {
  font-size: 1.16rem;
}

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

.lead {
  margin-top: 20px;
  font-size: 1.08rem;
  color: #4b596d;
  max-width: 620px;
}

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

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

.stat {
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(223, 230, 239, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(23, 32, 51, 0.08);
}

.stat strong {
  display: block;
  font-size: 1.4rem;
  color: var(--ink);
}

.stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 92px 0;
}

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

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 38px;
}

.section-head p {
  max-width: 560px;
}

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

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

.image-frame img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.image-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 35px rgba(23, 32, 51, 0.14);
  font-weight: 700;
  color: var(--ink);
}

.image-badge span {
  display: block;
  color: var(--primary-dark);
  font-size: 0.84rem;
}

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

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #3d485c;
}

.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  flex: 0 0 auto;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 16px 45px rgba(23, 32, 51, 0.06);
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--primary));
  font-weight: 800;
  margin-bottom: 18px;
}

.card p,
.testimonial p,
.faq-answer {
  margin-top: 12px;
}

.split-band {
  color: var(--white);
  background: linear-gradient(135deg, #142039, #234f9d);
}

.split-band p,
.split-band .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.split-band .eyebrow::before {
  background: var(--accent);
}

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

.process-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
}

.process-number {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 800;
}

.process-item h3 {
  color: var(--white);
}

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

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

.testimonial strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
}

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

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

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 20px 22px;
  font: inherit;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
}

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

.page-hero {
  padding: 88px 0;
  background: linear-gradient(135deg, rgba(46, 125, 255, 0.12), rgba(244, 122, 43, 0.1)), var(--soft);
}

.page-hero p {
  max-width: 720px;
  margin-top: 18px;
}

.service-feature {
  min-height: 360px;
  background: linear-gradient(90deg, rgba(20, 32, 57, 0.8), rgba(20, 32, 57, 0.22)), url("../images/generated-services-image.png") center / cover no-repeat;
  border-radius: var(--radius);
  padding: 42px;
  display: flex;
  align-items: end;
  color: var(--white);
  box-shadow: var(--shadow);
}

.service-feature p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 600px;
  margin-top: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
}

.contact-panel,
.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 30px;
  box-shadow: 0 18px 45px rgba(23, 32, 51, 0.07);
}

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

.contact-list a,
.contact-list div {
  display: block;
  color: #3d485c;
}

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

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

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

label {
  font-weight: 700;
  color: #2b3548;
  font-size: 0.92rem;
}

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

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

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

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

.cta-band {
  padding: 58px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

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

.cta-band p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 640px;
  margin-top: 10px;
}

.footer {
  background: #101828;
  color: rgba(255, 255, 255, 0.82);
  padding: 58px 0 22px;
}

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

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

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

.footer a {
  display: block;
  margin-bottom: 8px;
}

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

@media (max-width: 900px) {
  .brand img {
    width: 200px;
  }

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

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

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

  .hero {
    background: linear-gradient(110deg, rgba(245, 247, 250, 0.98), rgba(245, 247, 250, 0.88)), url("../images/generated-hero-image.png") center / cover no-repeat;
  }

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

  .grid-2,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .section-head,
  .cta-band .container {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .topbar .container {
    flex-direction: column;
    gap: 4px;
  }

  .brand img {
    width: 174px;
  }

  .hero-stats,
  .cards,
  .testimonials,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .image-frame img {
    height: 320px;
  }

  .service-feature {
    padding: 26px;
  }
}
/* @vn-deploy:1779816580829 */
