:root {
  --blue: #245f93;
  --blue-dark: #173f68;
  --green: #31b857;
  --lime: #a9d83e;
  --ink: #2d2d30;
  --muted: #647280;
  --line: #dfe7ec;
  --soft: #f5f8f5;
  --white: #ffffff;
  --grain: #c7904a;
  --shadow: 0 18px 48px rgba(21, 48, 75, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Raleway, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  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(--blue-dark);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(36, 95, 147, 0.11);
  backdrop-filter: blur(14px);
}

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

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

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

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

.nav a.active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--lime));
}

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

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

.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;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: var(--white);
  box-shadow: 0 14px 32px rgba(36, 95, 147, 0.28);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 650px;
  color: var(--white);
  background: var(--blue-dark);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 43, 70, 0.92), rgba(12, 43, 70, 0.62) 47%, rgba(12, 43, 70, 0.18));
  z-index: 1;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  width: min(650px, 100%);
  padding: 112px 0 84px;
}

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

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--lime);
}

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

h1 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  margin: 18px 0 20px;
  max-width: 790px;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--blue-dark);
}

h3 {
  font-size: 21px;
  line-height: 1.25;
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.metric {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.metric strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
}

.metric span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  margin-top: 6px;
}

section {
  padding: 84px 0;
}

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

.section-head {
  max-width: 720px;
  margin-bottom: 36px;
}

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

.section-head p,
.split p,
.card p,
.service-card p,
.faq p {
  color: var(--muted);
}

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

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

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

.media-frame::after {
  content: "";
  position: absolute;
  inset: auto 20px 20px auto;
  width: 112px;
  height: 112px;
  border-right: 12px solid var(--lime);
  border-bottom: 12px solid var(--green);
}

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

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  content: "OK";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(49, 184, 87, 0.13);
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.cards,
.services-grid,
.testimonials-grid,
.faq-grid {
  display: grid;
  gap: 22px;
}

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

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

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

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

.card,
.service-card,
.testimonial,
.faq,
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.card,
.service-card,
.testimonial,
.faq {
  padding: 26px;
}

.card strong,
.service-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(36, 95, 147, 0.12), rgba(49, 184, 87, 0.16));
  color: var(--blue);
  font-size: 22px;
  font-weight: 900;
}

.service-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.band {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
}

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

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

.process {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.steps {
  display: grid;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--blue-dark);
  font-weight: 900;
}

.testimonial {
  min-height: 250px;
}

.quote {
  color: var(--muted);
  font-size: 15px;
}

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

.cta-strip {
  padding: 54px 0;
  background: linear-gradient(90deg, var(--green), var(--lime));
}

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

.cta-strip h2 {
  margin: 0;
  color: var(--blue-dark);
}

.page-hero {
  padding: 76px 0;
  background: linear-gradient(135deg, rgba(36, 95, 147, 0.1), rgba(49, 184, 87, 0.12));
  border-bottom: 1px solid var(--line);
}

.page-hero p {
  max-width: 750px;
  color: var(--muted);
  font-size: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
}

.contact-card {
  padding: 28px;
}

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

.contact-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}

.contact-item span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: rgba(36, 95, 147, 0.1);
  color: var(--blue);
  font-weight: 900;
}

form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--blue-dark);
  font-weight: 800;
}

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

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

.map-card {
  min-height: 320px;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(36, 95, 147, 0.08), rgba(169, 216, 62, 0.18));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}

.site-footer {
  background: #102d4d;
  color: rgba(255, 255, 255, 0.8);
  padding: 62px 0 24px;
}

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

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

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

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

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

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

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

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

  .nav.open {
    display: flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 82px 0 70px;
  }

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

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

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

  .topbar .container {
    gap: 8px;
  }

  .brand img {
    width: 190px;
  }

  .nav-wrap {
    min-height: 74px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  section {
    padding: 62px 0;
  }

  .hero::before {
    background: rgba(12, 43, 70, 0.76);
  }

  .hero-metrics,
  .cards,
  .services-grid,
  .testimonials-grid,
  .faq-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-strip .container {
    align-items: flex-start;
    flex-direction: column;
  }

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