:root {
  --primary: #3e4095;
  --secondary: #00afef;
  --ink: #1f2544;
  --muted: #667085;
  --line: #e4e9f2;
  --soft: #f5f8fc;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(31, 37, 68, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Lato", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { color: var(--muted); margin: 0 0 1rem; }
h1, h2, h3 { margin: 0 0 1rem; line-height: 1.12; color: var(--ink); }
h1 { font-size: clamp(2rem, 4vw, 4.15rem); letter-spacing: 0; }
h2 { font-size: clamp(1.65rem, 2.8vw, 2.85rem); }
h3 { font-size: 1.1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem clamp(1rem, 4vw, 4.5rem);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand img { width: min(318px, 52vw); height: auto; }
.site-nav { display: flex; align-items: center; gap: 1.35rem; font-weight: 700; color: #39405f; }
.site-nav a { padding: 0.45rem 0; border-bottom: 2px solid transparent; white-space: nowrap; }
.site-nav a.active, .site-nav a:hover { color: var(--primary); border-bottom-color: var(--secondary); }
.nav-cta {
  border: 0 !important;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 0.75rem 1rem !important;
  border-radius: 7px;
  box-shadow: 0 10px 22px rgba(0, 175, 239, 0.22);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 7px;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--primary); margin: 5px auto; }

.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  align-items: stretch;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 4vw, 4.5rem);
  background: linear-gradient(105deg, #ffffff 0%, #f7fbff 52%, #eaf8ff 100%);
}

.hero-copy { align-self: center; max-width: 660px; }
.hero-copy p { font-size: 1.08rem; }
.hero-media { min-height: 520px; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); align-self: center; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

.eyebrow {
  color: var(--secondary);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  margin-bottom: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.82rem 1.15rem;
  border-radius: 7px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: var(--primary); box-shadow: 0 12px 24px rgba(62, 64, 149, 0.22); }
.btn-secondary { color: var(--primary); border-color: rgba(62, 64, 149, 0.22); background: var(--white); }
.btn-light { color: var(--primary); background: var(--white); }
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-top: 1.8rem; }

.section { padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 4vw, 4.5rem); }
.section-heading { max-width: 760px; margin-bottom: 2rem; }
.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
  border-bottom: 1px solid var(--line);
}
.intro-grid p:last-child { font-size: 1.08rem; }

.feature-band, .image-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  background: var(--soft);
}
.feature-band.reverse .feature-media { order: 2; }
.feature-media img, .image-text img, .page-hero-split img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.feature-copy { max-width: 620px; }
.check-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 0.85rem; }
.check-list li { position: relative; padding-left: 1.75rem; color: #39405f; font-weight: 700; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 0.52rem; width: 9px; height: 9px; border-radius: 50%; background: var(--secondary); box-shadow: 0 0 0 5px rgba(0, 175, 239, 0.12); }

.service-grid, .values-grid, .process-grid, .testimonial-grid, .service-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.service-card, .values-grid article, .process-grid div, .service-detail-grid article, blockquote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.35rem;
  box-shadow: 0 8px 22px rgba(31, 37, 68, 0.06);
}
.service-card span {
  display: inline-flex;
  color: var(--secondary);
  font-weight: 900;
  margin-bottom: 1rem;
}
.center-action { text-align: center; margin-top: 2rem; }

.process-section { background: linear-gradient(135deg, #26296f, #3e4095); }
.process-section h2, .process-section h3, .process-grid strong { color: var(--white); }
.process-section p { color: rgba(255, 255, 255, 0.78); }
.process-grid div { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.16); box-shadow: none; }
.process-grid strong { display: block; margin-bottom: 1rem; }

.testimonials { background: #fbfcff; }
.testimonial-grid { grid-template-columns: repeat(3, 1fr); }
blockquote { margin: 0; }
blockquote p { color: #3f4764; }
cite { display: block; color: var(--primary); font-weight: 900; font-style: normal; margin-top: 1rem; }

.faq-list { display: grid; gap: 0.85rem; max-width: 920px; }
details { border: 1px solid var(--line); border-radius: 8px; padding: 1rem 1.2rem; background: var(--white); }
summary { cursor: pointer; font-weight: 900; color: var(--ink); }
details p { margin-top: 0.8rem; margin-bottom: 0; }

.contact-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(135deg, var(--primary), #1e8dd2);
}
.contact-strip h2, .contact-strip p { color: var(--white); }
.contact-strip p { opacity: 0.86; max-width: 780px; }

.page-hero {
  padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 4vw, 4.5rem);
  background: linear-gradient(110deg, #ffffff, #f2fbff);
}
.page-hero > div { max-width: 850px; }
.page-hero h1 { max-width: 820px; }
.page-hero p { font-size: 1.08rem; max-width: 760px; }
.page-hero-split {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: center;
  gap: 3rem;
}

.values-grid { grid-template-columns: repeat(4, 1fr); }
.image-text { background: var(--white); }
.service-detail-grid { grid-template-columns: repeat(3, 1fr); }
.service-detail-grid article:last-child { grid-column: span 3; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
}
.contact-panel, .contact-form, .map-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.5rem;
  background: var(--white);
  box-shadow: var(--shadow);
}
.contact-panel { display: grid; gap: 1rem; }
.contact-panel a, .contact-panel div { display: grid; gap: 0.25rem; }
.contact-panel strong { color: var(--primary); }
.contact-panel span { color: var(--muted); }
.contact-form { display: grid; gap: 1rem; }
.contact-form label { display: grid; gap: 0.4rem; font-weight: 900; color: var(--ink); }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0.85rem;
  font: inherit;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid rgba(0, 175, 239, 0.22); border-color: var(--secondary); }
.map-card iframe { width: 100%; height: 420px; border: 0; border-radius: 8px; margin-bottom: 1rem; }

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 2rem;
  padding: 3rem clamp(1rem, 4vw, 4.5rem) 1.4rem;
  background: #151936;
  color: var(--white);
}
.site-footer img { width: 260px; background: var(--white); padding: 0.7rem; border-radius: 8px; margin-bottom: 1rem; }
.site-footer h3 { color: var(--white); font-size: 1rem; }
.site-footer p, .site-footer a { color: rgba(255, 255, 255, 0.72); }
.site-footer a { display: block; margin-bottom: 0.55rem; }
.site-footer a:hover { color: var(--secondary); }
.powered {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1rem;
  color: rgba(255, 255, 255, 0.72);
}
.powered a { display: inline; color: var(--secondary); margin: 0; }

@media (max-width: 1040px) {
  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .nav-toggle { display: block; }
  .hero, .feature-band, .image-text, .page-hero-split, .contact-grid, .intro-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-media { min-height: 360px; }
  .service-grid, .values-grid, .process-grid, .testimonial-grid, .service-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-grid article:last-child { grid-column: span 2; }
  .feature-band.reverse .feature-media { order: 0; }
}

@media (max-width: 680px) {
  .site-header { padding: 0.85rem 1rem; }
  .brand img { width: min(245px, 64vw); }
  .hero, .section, .page-hero { padding-left: 1rem; padding-right: 1rem; }
  .hero-media { min-height: 270px; }
  .service-grid, .values-grid, .process-grid, .testimonial-grid, .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-grid article:last-child { grid-column: span 1; }
  .contact-strip { flex-direction: column; align-items: flex-start; }
  .site-footer { grid-template-columns: 1fr; }
  .map-card iframe { height: 320px; }
}
/* @vn-deploy:1778701670270 */
