:root {
  --blue: #0d74b8;
  --blue-strong: #075b91;
  --navy: #17466c;
  --violet: #8c6ab1;
  --charcoal: #323033;
  --text: #1f2933;
  --muted: #687383;
  --line: #dde6ee;
  --soft: #f5f8fb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(16, 48, 74, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}

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

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

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

.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: 0.86rem;
}

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

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

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

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  color: var(--charcoal);
  font-size: 0.94rem;
}

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

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  border-radius: 6px;
  font-size: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.2;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--navy));
  box-shadow: 0 10px 24px rgba(13, 116, 184, 0.24);
}

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

.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 50, 78, 0.9), rgba(13, 50, 78, 0.64) 46%, rgba(13, 50, 78, 0.12));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 690px;
  padding: 86px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #c8ecff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.1rem, 4vw, 4.1rem);
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: 0;
}

h2 {
  color: var(--charcoal);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.18;
  margin-bottom: 16px;
  letter-spacing: 0;
}

h3 {
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 10px;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  max-width: 640px;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  max-width: 650px;
}

.stat {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.stat strong {
  display: block;
  font-size: 1.28rem;
}

.stat span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
}

.section {
  padding: 82px 0;
}

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

.section-header {
  max-width: 760px;
  margin-bottom: 36px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.9fr);
  align-items: center;
  gap: 48px;
}

.image-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.grid-3,
.grid-4 {
  display: grid;
  gap: 22px;
}

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

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

.card {
  height: 100%;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 26px rgba(19, 57, 86, 0.06);
}

.card strong,
.service-card strong {
  color: var(--blue);
}

.service-card {
  min-height: 168px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.process-list {
  display: grid;
  gap: 16px;
  counter-reset: step;
}

.process-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
}

.process-item::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--violet));
  border-radius: 8px;
  font-weight: 900;
}

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

.testimonial blockquote {
  margin: 0;
  color: var(--text);
}

.testimonial cite {
  color: var(--blue-strong);
  font-style: normal;
  font-weight: 800;
}

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

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 22px;
}

.faq-item h3 {
  font-size: 1rem;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.page-hero {
  padding: 78px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.page-hero h1 {
  max-width: 760px;
}

.page-hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-band {
  background: var(--navy);
  color: var(--white);
}

.contact-band h2,
.contact-band h3 {
  color: var(--white);
}

.contact-band .lead,
.contact-band p {
  color: rgba(255, 255, 255, 0.82);
}

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

.contact-card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.contact-card a {
  color: var(--white);
  font-weight: 800;
}

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

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

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

.map-box {
  min-height: 310px;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 28px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(13, 116, 184, 0.09), rgba(140, 106, 177, 0.12));
}

.site-footer {
  background: #20272f;
  color: rgba(255, 255, 255, 0.82);
  padding: 54px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 30px;
}

.footer-logo {
  width: 230px;
  padding: 10px;
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 16px;
}

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

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 34px;
  padding-top: 18px;
  font-size: 0.86rem;
}

@media (max-width: 900px) {
  .topbar .container,
  .nav {
    align-items: flex-start;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 77px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

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

  .nav-links a {
    padding: 12px 0;
  }

  .nav-links .btn {
    margin-top: 10px;
  }

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

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

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

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

  .brand img {
    width: 210px;
  }

  .hero {
    min-height: 600px;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(13, 50, 78, 0.92), rgba(13, 50, 78, 0.72));
  }

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

  .hero-stats,
  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

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

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