:root {
  --primary: #3cabd2;
  --secondary: #3e4095;
  --ink: #152033;
  --muted: #5f6d7e;
  --line: #d9e6ee;
  --soft: #f3f8fb;
  --white: #ffffff;
  --grain: #f6efe2;
  --shadow: 0 18px 45px rgba(21, 32, 51, 0.12);
  --radius: 8px;
  font-family: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  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(--secondary);
  color: var(--white);
  font-size: 0.9rem;
}

.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.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

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

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  color: #26354b;
}

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

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

.nav-toggle {
  display: none;
  border: 0;
  background: var(--soft);
  color: var(--secondary);
  font-size: 1.6rem;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
}

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

.btn-primary {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(62, 64, 149, 0.22);
}

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

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

.hero {
  position: relative;
  min-height: 610px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #0f1c32;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 26, 48, 0.86) 0%, rgba(18, 36, 61, 0.72) 45%, rgba(18, 36, 61, 0.16) 100%);
  z-index: 1;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  color: var(--white);
  padding: 76px 0;
}

.eyebrow {
  color: var(--primary);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.82rem;
}

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

h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin-top: 14px;
}

h2 {
  font-size: clamp(1.85rem, 3vw, 2.8rem);
}

h3 {
  font-size: 1.18rem;
}

p {
  margin: 0;
}

.hero p {
  margin: 22px 0 28px;
  font-size: 1.08rem;
  color: #eef7fb;
  max-width: 620px;
}

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

.section {
  padding: 86px 0;
}

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

.section.grain {
  background: linear-gradient(180deg, var(--grain), #ffffff);
}

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

.section-head p {
  max-width: 590px;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 52px;
}

.split img,
.feature-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.kicker {
  margin-bottom: 10px;
}

.lead {
  color: var(--muted);
  font-size: 1.03rem;
  margin-top: 18px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 28px;
}

.stat {
  background: var(--white);
  padding: 22px;
}

.stat strong {
  display: block;
  color: var(--secondary);
  font-size: 1.55rem;
  line-height: 1;
}

.stat span {
  display: block;
  color: var(--muted);
  margin-top: 8px;
  font-size: 0.92rem;
}

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

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

.card h3 {
  color: var(--secondary);
  margin-bottom: 10px;
}

.card p,
.card li {
  color: var(--muted);
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(60, 171, 210, 0.14);
  color: var(--secondary);
  font-weight: 900;
  margin-bottom: 18px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.service-pill {
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  font-weight: 800;
  color: #25324a;
}

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

.process .card {
  position: relative;
}

.process .card::before {
  counter-increment: step;
  content: "0" counter(step);
  color: var(--primary);
  font-weight: 900;
  display: block;
  margin-bottom: 18px;
}

.testimonial {
  min-height: 230px;
}

.quote {
  color: #344056;
  font-size: 0.98rem;
}

.person {
  margin-top: 18px;
  color: var(--secondary);
  font-weight: 900;
}

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

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

.faq summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--secondary);
}

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

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

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

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

.contact-item strong {
  display: block;
  color: var(--secondary);
}

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

.form label {
  display: block;
  font-weight: 800;
  margin-bottom: 6px;
}

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

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

.page-hero {
  background: linear-gradient(135deg, #12203a, #223976 56%, #3cabd2);
  color: var(--white);
  padding: 76px 0;
}

.page-hero p {
  color: #edf8fc;
  max-width: 760px;
  margin-top: 18px;
}

.site-footer {
  background: #111a2c;
  color: #dfeaf2;
  padding: 56px 0 26px;
}

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

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

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

.site-footer a,
.site-footer p {
  color: #dfeaf2;
}

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

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 34px;
  padding-top: 18px;
  color: #aebdcc;
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .topbar .container,
  .section-head,
  .split,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 22px;
  }

  .nav-links.open {
    display: grid;
    gap: 4px;
  }

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

  .grid,
  .process,
  .stats,
  .service-list {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .brand img {
    width: 190px;
  }

  .hero {
    min-height: 560px;
  }

  .hero::before {
    background: rgba(13, 26, 48, 0.78);
  }

  .section {
    padding: 58px 0;
  }

  .grid,
  .process,
  .stats,
  .service-list {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .section-actions {
    display: grid;
  }

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