:root {
  --blue: #004ca3;
  --blue-dark: #08366c;
  --aqua: #00ebcc;
  --teal: #00aeb8;
  --ink: #112033;
  --muted: #657386;
  --line: #dce8f2;
  --soft: #f3f9fb;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(6, 42, 82, 0.13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 76, 163, 0.1);
  backdrop-filter: blur(14px);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--blue-dark);
  font-weight: 600;
  font-size: 0.94rem;
}

.site-nav a { position: relative; }

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

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1.2;
}

.nav-cta,
.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #0577be);
  box-shadow: 0 14px 28px rgba(0, 76, 163, 0.2);
}

.btn.secondary {
  color: var(--blue);
  background: rgba(0, 235, 204, 0.13);
  border: 1px solid rgba(0, 76, 163, 0.16);
}

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

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 92px);
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 76px) clamp(36px, 5vw, 70px);
  overflow: hidden;
}

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

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

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

h1 {
  margin-bottom: 20px;
  color: var(--blue-dark);
  font-size: clamp(2.35rem, 4.2vw, 4.65rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  color: var(--blue-dark);
  font-size: clamp(1.7rem, 2.55vw, 3rem);
  line-height: 1.15;
  letter-spacing: 0;
}

h3 { color: var(--blue-dark); font-size: 1.12rem; line-height: 1.3; }

.hero p,
.page-hero p,
.intro-grid p,
.copy-panel p { color: var(--muted); font-size: 1.03rem; }

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.hero-media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 235, 204, 0.18), rgba(0, 76, 163, 0.08));
  pointer-events: none;
}

.hero-media img,
.page-hero img,
.image-panel img,
.process-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: clamp(58px, 7vw, 96px) clamp(18px, 5vw, 76px);
}

.intro-grid,
.split,
.process-band,
.contact-strip,
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.intro-grid {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.image-panel,
.page-hero img,
.process-band img {
  min-height: 440px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.copy-panel { max-width: 650px; }

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--blue-dark);
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  background: var(--aqua);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(0, 235, 204, 0.17);
}

.text-link {
  color: var(--blue);
  font-weight: 700;
  border-bottom: 2px solid var(--aqua);
}

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

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

.service-grid,
.testimonial-grid,
.values-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

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

.service-card,
.values-grid article,
.contact-card,
blockquote,
details,
.map-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(6, 42, 82, 0.06);
}

.service-card,
.values-grid article,
.contact-card,
blockquote { padding: 26px; }

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

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

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

.process-band .eyebrow { opacity: 0.82; }

.steps {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.steps div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.steps span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--aqua);
  font-weight: 700;
}

.steps strong { display: block; font-size: 1.05rem; }

.steps p { margin: 5px 0 0; color: rgba(255, 255, 255, 0.78); }

.process-band img { border: 1px solid rgba(255, 255, 255, 0.2); }

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

blockquote { margin: 0; }

blockquote p { font-size: 1rem; }

cite {
  display: block;
  margin-top: 18px;
  color: var(--blue);
  font-style: normal;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

details { padding: 20px 24px; }

summary {
  cursor: pointer;
  color: var(--blue-dark);
  font-weight: 700;
}

details p { margin: 12px 0 0; color: var(--muted); }

.contact-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.page-hero {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 76px);
  background: linear-gradient(180deg, #f8fcfd 0%, #ffffff 100%);
}

.page-hero h1 { font-size: clamp(2.2rem, 3.8vw, 4.25rem); }

.reverse { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }

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

.values-grid span {
  color: var(--aqua);
  font-weight: 700;
}

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

.contact-card span {
  display: block;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-card a {
  display: inline-block;
  margin-top: 10px;
  color: var(--blue-dark);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.map-block {
  background: var(--soft);
}

.map-panel {
  min-height: 330px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 76, 163, 0.88), rgba(0, 174, 184, 0.82)),
    url("../images/generated-services-image.png") center/cover;
}

.map-card {
  width: min(420px, 90%);
  padding: 26px;
}

.map-card strong { color: var(--blue-dark); }

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(2, minmax(180px, 0.8fr));
  gap: 34px;
  padding: 48px clamp(18px, 5vw, 76px);
  color: rgba(255, 255, 255, 0.8);
  background: #08284d;
}

.site-footer img { width: 260px; max-width: 100%; filter: brightness(0) invert(1); }

.site-footer h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 1080px) {
  .hero,
  .intro-grid,
  .split,
  .process-band,
  .contact-strip,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .service-grid.full,
  .testimonial-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

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

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

  .site-nav a { padding: 12px; }

  .nav-cta { margin-top: 8px; }

  .hero { min-height: auto; padding-top: 44px; }

  .section-head { display: block; }

  .section-head .text-link { display: inline-block; margin-top: 14px; }

  .values-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .brand img { width: min(245px, 66vw); }

  h1 { font-size: 2.15rem; }

  .hero-actions,
  .contact-actions { align-items: stretch; flex-direction: column; }

  .btn,
  .nav-cta { width: 100%; }

  .service-grid,
  .service-grid.full,
  .testimonial-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .image-panel,
  .page-hero img,
  .process-band img {
    min-height: 280px;
  }
}
/* @vn-deploy:1781899259963 */
