:root {
  --blue: #126bd1;
  --bright-blue: #14c7e7;
  --indigo: #6633e8;
  --magenta: #d900ff;
  --ink: #101828;
  --muted: #5f6b7a;
  --line: #e5ebf3;
  --soft: #f5f7fa;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(16, 24, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", Arial, Helvetica, 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: linear-gradient(90deg, var(--blue), var(--indigo), var(--magenta));
  color: var(--white);
  font-size: 13px;
}

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

.topbar a {
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(229, 235, 243, 0.92);
  backdrop-filter: blur(14px);
}

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

.brand img {
  width: min(330px, 52vw);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 12px;
  color: #263243;
  font-weight: 700;
  font-size: 14px;
}

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

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

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  border-radius: 99px;
  background: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 800;
  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 {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--indigo) 56%, var(--magenta));
  box-shadow: 0 14px 30px rgba(102, 51, 232, 0.24);
}

.btn-secondary {
  color: var(--blue);
  background: var(--white);
  border-color: rgba(18, 107, 209, 0.26);
}

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

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 43%, rgba(255, 255, 255, 0.28) 74%),
    url("../images/generated-hero-image.png") center right / cover no-repeat;
}

.hero .container {
  min-height: 650px;
  display: grid;
  align-items: center;
  padding: 84px 0 118px;
}

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

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

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--bright-blue), var(--magenta));
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.16;
  margin-bottom: 16px;
  letter-spacing: 0;
}

h3 {
  font-size: 20px;
  line-height: 1.28;
  margin-bottom: 10px;
}

.hero p {
  max-width: 580px;
  color: #344054;
  font-size: 18px;
}

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

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

.stat {
  padding: 18px;
  border: 1px solid rgba(18, 107, 209, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 26px rgba(16, 24, 40, 0.08);
}

.stat strong {
  display: block;
  color: var(--blue);
  font-size: 24px;
  line-height: 1;
}

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

.section {
  padding: 86px 0;
}

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

.section-dark {
  color: var(--white);
  background: linear-gradient(135deg, #0c2857, #16206f 52%, #6200cd);
}

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

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

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

.section-dark .section-head p,
.section-dark .feature-list li,
.section-dark .cta-panel p {
  color: rgba(255, 255, 255, 0.82);
}

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

.split.reverse {
  grid-template-columns: 0.92fr 1fr;
}

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

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

.image-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(0deg, rgba(12, 40, 87, 0.36), transparent);
}

.check-grid,
.service-grid,
.value-grid,
.testimonial-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

.check-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

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

.check-item {
  padding: 18px;
  font-weight: 800;
  color: #23314a;
}

.check-item::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bright-blue), var(--magenta));
}

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

.service-card {
  padding: 26px;
  min-height: 222px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(18, 107, 209, 0.24);
  box-shadow: 0 18px 38px rgba(16, 24, 40, 0.1);
}

.service-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, var(--bright-blue), var(--blue), var(--magenta));
}

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

.card {
  padding: 24px;
}

.card strong {
  display: block;
  color: var(--blue);
  margin-bottom: 8px;
  font-size: 15px;
  text-transform: uppercase;
}

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

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

.step {
  position: relative;
  padding: 20px 20px 20px 72px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 20px;
  top: 22px;
  color: var(--bright-blue);
  font-weight: 900;
}

.step h3 {
  margin-bottom: 4px;
}

.step p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.testimonial {
  padding: 24px;
}

.testimonial p {
  font-style: italic;
}

.testimonial strong {
  display: block;
  color: var(--ink);
}

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

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  padding: 22px 24px;
}

.faq-item p {
  margin-bottom: 0;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--indigo), var(--magenta));
  color: var(--white);
}

.cta-panel p {
  margin-bottom: 0;
}

.page-hero {
  padding: 74px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(12, 40, 87, 0.94), rgba(102, 51, 232, 0.86)),
    url("../images/generated-process-image.png") center / cover no-repeat;
}

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

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.feature-list {
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.feature-list li {
  padding-left: 26px;
  position: relative;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bright-blue), var(--magenta));
}

.contact-grid {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
}

.contact-card,
.form-card {
  padding: 28px;
}

.contact-line {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-line:last-child {
  border-bottom: 0;
}

.contact-line strong {
  display: block;
  color: var(--blue);
}

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

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

label {
  display: block;
  margin-bottom: 7px;
  font-weight: 800;
  color: #263243;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #d9e2ee;
  border-radius: 6px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

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

.map-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 900;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: #091a38;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 0.75fr 1fr;
  gap: 30px;
  padding: 56px 0 38px;
}

.footer-logo {
  max-width: 300px;
  padding: 10px 12px;
  border-radius: 6px;
  background: var(--white);
}

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

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

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

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

@media (max-width: 920px) {
  .topbar .container {
    flex-direction: column;
    gap: 4px;
  }

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

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

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

  .nav-links .btn {
    width: 100%;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 58%, rgba(255, 255, 255, 0.78) 100%),
      url("../images/generated-hero-image.png") center / cover no-repeat;
  }

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

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

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

  .cta-panel {
    padding: 30px;
  }
}

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

  .brand img {
    width: min(245px, 66vw);
  }

  .hero-stats,
  .service-grid,
  .value-grid,
  .testimonial-grid,
  .check-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .image-frame img {
    min-height: 300px;
  }

  .hero-actions,
  .cta-panel {
    align-items: stretch;
  }

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