@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/raleway-400.ttf") format("truetype");
}

:root {
  --primary: #3e4095;
  --secondary: #00afef;
  --ink: #182033;
  --muted: #5f697a;
  --line: #dce3ee;
  --soft: #f4f8fc;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(24, 32, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

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

button,
input,
textarea {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--white);
  background: var(--primary);
  border-radius: 6px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(0, 175, 239, 0.45);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 84px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 227, 238, 0.85);
  backdrop-filter: blur(12px);
}

.brand img {
  width: min(320px, 46vw);
  max-height: 56px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  font-weight: 700;
  color: #26304a;
}

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

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  content: "";
  background: var(--secondary);
  transition: width 0.2s ease;
}

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

.site-nav a.active {
  color: var(--primary);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 0;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-cta,
.btn.primary {
  color: var(--white);
  background: var(--primary);
}

.btn.secondary {
  color: var(--primary);
  background: #eaf7fe;
}

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

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(24, 32, 51, 0.16);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--primary);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px) 48px;
  overflow: hidden;
}

.hero-copy,
.page-hero {
  max-width: 740px;
}

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

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

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

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.hero p,
.page-hero p,
.section p,
.site-footer p {
  color: var(--muted);
}

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

.hero-media {
  position: relative;
}

.hero-media::before {
  position: absolute;
  inset: -24px -24px auto auto;
  width: 62%;
  height: 72%;
  content: "";
  background: linear-gradient(135deg, rgba(0, 175, 239, 0.18), rgba(62, 64, 149, 0.16));
  border-radius: 8px;
  z-index: -1;
}

.hero-media img,
.section-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 clamp(20px, 5vw, 72px) 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.trust-strip div {
  padding: 22px;
  background: var(--white);
}

.trust-strip strong {
  display: block;
  color: var(--primary);
  font-size: 1.45rem;
  line-height: 1.1;
}

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

.section {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.95fr);
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
}

.split.reverse {
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1fr);
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.card-grid {
  display: grid;
  gap: 22px;
}

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

.service-card,
.quote-card,
.services-list article,
.process-grid div,
.contact-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(24, 32, 51, 0.06);
}

.service-card,
.quote-card,
.services-list article {
  padding: 26px;
}

.service-card span,
.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--white);
  font-weight: 800;
  background: var(--secondary);
  border-radius: 50%;
}

.center-action {
  margin-top: 30px;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--primary);
  font-weight: 800;
}

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

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

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 18px;
  height: 18px;
  content: "";
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: inset 0 0 0 5px #dff6ff;
}

.quote-card p {
  color: #39445a;
}

.quote-card strong,
.quote-card span {
  display: block;
}

.quote-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

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

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

summary {
  color: var(--primary);
  font-weight: 800;
  cursor: pointer;
}

details p {
  margin: 12px 0 0;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 clamp(20px, 5vw, 72px) clamp(56px, 8vw, 96px);
  padding: clamp(28px, 5vw, 48px);
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), #252769);
  border-radius: 8px;
}

.cta-band h2,
.cta-band p {
  max-width: 790px;
  margin-bottom: 0;
  color: var(--white);
}

.page-hero {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px) 42px;
  background: linear-gradient(145deg, #f7fbff 0%, #ffffff 58%, #eef4ff 100%);
}

.services-hero {
  max-width: 820px;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

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

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

.process-grid div {
  padding: 24px;
}

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

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

.contact-card {
  display: grid;
  gap: 16px;
}

.contact-card a:not(.btn),
.contact-card div {
  display: grid;
  gap: 4px;
  color: var(--muted);
}

.contact-card strong {
  color: var(--primary);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #29334a;
  font-weight: 700;
}

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

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

.form-note,
.form-status {
  margin: 0;
  font-size: 0.92rem;
}

.form-status {
  min-height: 1.5em;
  color: var(--primary);
  font-weight: 700;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(0, 175, 239, 0.24);
  border-color: var(--secondary);
}

.map-band {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 0 clamp(20px, 5vw, 72px) clamp(56px, 8vw, 96px);
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.map-band p {
  max-width: 760px;
  color: var(--muted);
}

.contact-preview {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}

.contact-preview article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-preview address {
  color: var(--muted);
  font-style: normal;
}

.contact-preview a:not(.btn) {
  display: block;
  margin-top: 8px;
  color: var(--primary);
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr 0.7fr;
  gap: 28px;
  padding: 48px clamp(20px, 5vw, 72px) 24px;
  border-top: 1px solid var(--line);
  background: #f9fbfd;
}

.site-footer img {
  width: min(300px, 78vw);
  margin-bottom: 12px;
}

.site-footer h3 {
  color: var(--primary);
}

.site-footer a,
.site-footer p {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 20px;
  margin: 10px 0 0;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    order: 5;
    margin-left: 0;
    padding: 18px 0 4px;
  }

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

  .header-cta {
    display: none;
  }

  .hero,
  .split,
  .split.reverse,
  .contact-layout,
  .contact-preview {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .card-grid.three,
  .testimonials-grid,
  .services-list,
  .process-grid,
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .cta-band,
  .map-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 74px;
    padding: 12px 18px;
  }

  .brand img {
    width: min(230px, 68vw);
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.58rem;
  }

  .hero,
  .page-hero,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .trust-strip,
  .card-grid.three,
  .testimonials-grid,
  .services-list,
  .process-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .cta-band,
  .map-band {
    margin-left: 18px;
    margin-right: 18px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
/* @vn-deploy:1784882657275 */
