@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");

:root {
  --navy: #25355f;
  --navy-deep: #192647;
  --orange: #f58220;
  --orange-dark: #d96609;
  --blue: #2e7dff;
  --cream: #fffaf4;
  --paper: #ffffff;
  --mist: #f5f7fa;
  --ink: #222938;
  --muted: #667085;
  --line: #e4e7ec;
  --shadow: 0 24px 60px rgba(25, 38, 71, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(46, 125, 255, 0.45); outline-offset: 3px; }

.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 1000;
  padding: 10px 16px;
  color: #fff;
  background: var(--navy-deep);
  border-radius: 8px;
}
.skip-link:focus { top: 16px; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-sm { padding: 72px 0; }
.section-mist { background: var(--mist); }
.section-cream { background: var(--cream); }
.section-navy { color: #fff; background: var(--navy-deep); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 2px; content: ""; background: var(--orange); }
.section-navy .eyebrow { color: #ffc38f; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy-deep); line-height: 1.18; }
h1 { margin-bottom: 22px; font-size: clamp(2.35rem, 4.5vw, 4.65rem); letter-spacing: -0.045em; }
h2 { margin-bottom: 18px; font-size: clamp(2rem, 3.4vw, 3.15rem); letter-spacing: -0.035em; }
h3 { margin-bottom: 10px; font-size: 1.12rem; }
.section-navy h2, .section-navy h3 { color: #fff; }
.lead { color: #4b5565; font-size: clamp(1.02rem, 1.5vw, 1.18rem); line-height: 1.8; }
.section-navy .lead { color: #cdd5e7; }
.section-heading { max-width: 740px; margin-bottom: 44px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }
.section-heading.center .eyebrow::after { width: 28px; height: 2px; content: ""; background: var(--orange); }

.topbar { color: #dbe2f2; background: var(--navy-deep); font-size: 0.77rem; }
.topbar-inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.topbar-list { display: flex; align-items: center; gap: 20px; }
.topbar a:hover { color: #fff; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(228, 231, 236, 0.8);
  backdrop-filter: blur(16px);
}
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand img { width: min(355px, 36vw); height: auto; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav > a:not(.button) { position: relative; color: #3d4658; font-size: 0.9rem; font-weight: 700; }
.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 180ms ease;
}
.site-nav > a:hover::after, .site-nav > a.active::after { transform: scaleX(1); }
.site-nav > a.active { color: var(--navy-deep); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--navy);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  content: "";
  background: currentColor;
  transition: 180ms ease;
}
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--orange); box-shadow: 0 12px 24px rgba(245, 130, 32, 0.25); }
.button-primary:hover { background: var(--orange-dark); box-shadow: 0 16px 30px rgba(245, 130, 32, 0.32); }
.button-secondary { color: var(--navy-deep); background: #fff; border: 1px solid var(--line); }
.button-secondary:hover { border-color: #c7ced8; box-shadow: 0 10px 25px rgba(25, 38, 71, 0.09); }
.button-dark { color: #fff; background: var(--navy-deep); }
.button-arrow::after { content: "→"; font-size: 1.1rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }

.hero { position: relative; min-height: 680px; display: grid; align-items: center; overflow: hidden; background: var(--navy-deep); }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(19, 30, 57, 0.98) 0%, rgba(25, 38, 71, 0.9) 39%, rgba(25, 38, 71, 0.12) 68%, rgba(25, 38, 71, 0.04) 100%);
}
.hero-content { position: relative; z-index: 1; width: min(650px, 58%); padding: 100px 0; color: #fff; }
.hero h1 { color: #fff; }
.hero h1 span { color: #ffac66; }
.hero .lead { max-width: 610px; color: #d7deeb; }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px 22px; margin: 26px 0 0; padding: 0; list-style: none; }
.hero-points li { display: flex; align-items: center; gap: 8px; color: #e8ecf4; font-size: 0.82rem; font-weight: 700; }
.hero-points li::before { width: 8px; height: 8px; content: ""; background: var(--orange); border-radius: 50%; }
.trust-strip { position: relative; z-index: 4; margin-top: -1px; background: #fff; border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { min-height: 118px; padding: 25px; border-right: 1px solid var(--line); }
.trust-item:last-child { border: 0; }
.trust-item strong { display: block; margin-bottom: 3px; color: var(--navy-deep); font-size: 1.1rem; }
.trust-item span { color: var(--muted); font-size: 0.81rem; }

.split { display: grid; grid-template-columns: 1.02fr 0.98fr; align-items: center; gap: clamp(48px, 7vw, 86px); }
.media-card { position: relative; }
.media-card > img { width: 100%; min-height: 480px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.media-badge {
  position: absolute;
  right: -24px;
  bottom: 30px;
  width: 190px;
  padding: 20px;
  color: #fff;
  background: var(--navy-deep);
  border: 5px solid #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.media-badge strong { display: block; color: #ffac66; font-size: 1.55rem; }
.media-badge span { font-size: 0.76rem; font-weight: 600; line-height: 1.45; }
.check-list { display: grid; gap: 13px; margin: 24px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 12px; color: #3e4654; font-weight: 600; }
.check-list li::before {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  color: #fff;
  content: "✓";
  background: var(--orange);
  border-radius: 50%;
  font-size: 0.74rem;
}

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.card:hover { border-color: rgba(245, 130, 32, 0.45); box-shadow: 0 20px 44px rgba(25, 38, 71, 0.1); transform: translateY(-5px); }
.card-number { display: block; margin-bottom: 18px; color: var(--orange-dark); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; }
.card p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.card-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; color: var(--navy); font-size: 0.82rem; font-weight: 800; }
.card-link::after { content: "→"; transition: transform 180ms ease; }
.card-link:hover::after { transform: translateX(4px); }
.service-feature { padding: 0; overflow: hidden; }
.service-feature img { width: 100%; height: 230px; object-fit: cover; }
.service-feature-content { padding: 28px; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.process-step { position: relative; padding: 0 28px; border-left: 1px solid rgba(255, 255, 255, 0.15); }
.process-step:first-child { padding-left: 0; border-left: 0; }
.process-step:last-child { padding-right: 0; }
.process-step b { display: grid; width: 48px; height: 48px; margin-bottom: 20px; place-items: center; color: #fff; background: var(--orange); border-radius: 14px; }
.process-step p { margin-bottom: 0; color: #cbd3e3; font-size: 0.88rem; }

.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.industry-item { padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.industry-icon { display: grid; width: 42px; height: 42px; margin-bottom: 16px; place-items: center; color: var(--orange-dark); background: #fff0e3; border-radius: 12px; font-size: 1.2rem; }
.industry-item p { margin: 0; color: var(--muted); font-size: 0.82rem; }

.testimonial-shell { position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 450ms cubic-bezier(.22,.61,.36,1); }
.testimonial { min-width: 100%; display: grid; grid-template-columns: 0.82fr 1.18fr; align-items: center; gap: 60px; }
.quote-mark { color: var(--orange); font-family: Georgia, serif; font-size: 6rem; line-height: 0.8; }
.testimonial blockquote { margin: 15px 0 22px; color: var(--navy-deep); font-size: clamp(1.25rem, 2.4vw, 1.8rem); font-weight: 600; line-height: 1.55; }
.testimonial cite { color: var(--muted); font-size: 0.85rem; font-style: normal; }
.testimonial cite strong { color: var(--navy-deep); }
.testimonial-controls { display: flex; gap: 9px; margin-top: 28px; }
.slider-button { width: 44px; height: 44px; color: var(--navy); background: #fff; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; }
.slider-button:hover { color: #fff; background: var(--navy); }
.testimonial-image img { width: 100%; height: 430px; object-fit: cover; border-radius: var(--radius-lg); }

.faq-list { max-width: 850px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  color: var(--navy-deep);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
}
.faq-question::after { content: "+"; color: var(--orange-dark); font-size: 1.7rem; font-weight: 400; }
.faq-question[aria-expanded="true"]::after { content: "−"; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 220ms ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { margin: 0; padding: 0 50px 22px 0; color: var(--muted); }
.faq-question[aria-expanded="true"] + .faq-answer { grid-template-rows: 1fr; }

.cta-band { position: relative; overflow: hidden; padding: 72px 0; color: #fff; background: var(--navy-deep); }
.cta-band::after {
  position: absolute;
  top: -100px;
  right: -70px;
  width: 350px;
  height: 350px;
  content: "";
  border: 60px solid rgba(245, 130, 32, 0.14);
  border-radius: 50%;
}
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.cta-inner h2 { max-width: 700px; margin: 0; color: #fff; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.cta-inner p { max-width: 700px; margin: 10px 0 0; color: #cdd5e7; }

.page-hero { padding: 94px 0 84px; color: #fff; background: linear-gradient(120deg, var(--navy-deep), #354976); }
.page-hero .eyebrow { color: #ffbc82; }
.page-hero h1 { max-width: 820px; margin-bottom: 18px; color: #fff; font-size: clamp(2.4rem, 5vw, 4.2rem); }
.page-hero p { max-width: 720px; margin: 0; color: #d9e0ee; font-size: 1.08rem; }
.breadcrumbs { margin-bottom: 28px; color: #bfc9dc; font-size: 0.8rem; font-weight: 600; }
.breadcrumbs a { color: #fff; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { padding: 28px; background: var(--mist); border-radius: 16px; }
.value-card b { display: block; margin-bottom: 10px; color: var(--orange-dark); font-size: 0.76rem; letter-spacing: 0.08em; }
.value-card p { margin: 0; color: var(--muted); font-size: 0.88rem; }
.stats-band { background: var(--orange); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 36px 20px; color: #fff; text-align: center; border-right: 1px solid rgba(255,255,255,.3); }
.stat:last-child { border: 0; }
.stat strong { display: block; color: #fff; font-size: 1.55rem; }
.stat span { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; }

.services-hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.services-hero-grid img { width: 100%; height: 430px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.services-list-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.service-row { display: flex; gap: 17px; padding: 23px; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.service-row b { display: grid; width: 34px; height: 34px; flex: 0 0 34px; place-items: center; color: #fff; background: var(--navy); border-radius: 9px; font-size: 0.75rem; }
.service-row p { margin: 5px 0 0; color: var(--muted); font-size: 0.82rem; }

.contact-layout { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 50px; }
.contact-card { padding: 35px; color: #fff; background: var(--navy-deep); border-radius: var(--radius-lg); }
.contact-card h2, .contact-card h3 { color: #fff; }
.contact-list { display: grid; gap: 22px; margin: 28px 0; padding: 0; list-style: none; }
.contact-list li { display: grid; grid-template-columns: 42px 1fr; gap: 14px; }
.contact-list .contact-icon { display: grid; width: 42px; height: 42px; place-items: center; color: #fff; background: rgba(245,130,32,.16); border: 1px solid rgba(245,130,32,.35); border-radius: 12px; }
.contact-list strong { display: block; color: #fff; font-size: 0.78rem; }
.contact-list span, .contact-list a { color: #cdd5e7; font-size: 0.82rem; line-height: 1.6; }
.contact-list a:hover { color: #fff; }
.form-card { padding: 36px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-group { display: grid; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
label { color: var(--navy-deep); font-size: 0.78rem; font-weight: 700; }
input, select, textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: #fff; border: 1px solid #d5dae2; border-radius: 10px; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); outline: 3px solid rgba(46,125,255,.12); }
textarea { min-height: 130px; resize: vertical; }
.form-status { min-height: 24px; margin: 14px 0 0; color: var(--muted); font-size: .8rem; }
.map-wrap { height: 430px; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

.site-footer { color: #cbd3e3; background: #111b34; }
.footer-main { display: grid; grid-template-columns: 1.45fr .72fr .85fr 1.2fr; gap: 50px; padding: 72px 0 55px; }
.footer-brand img { width: 310px; margin-bottom: 22px; filter: drop-shadow(0 6px 14px rgba(0,0,0,.12)); }
.footer-brand p { max-width: 420px; font-size: 0.85rem; }
.footer-title { margin-bottom: 20px; color: #fff; font-size: .92rem; }
.footer-links { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; font-size: .82rem; }
.footer-links a:hover { color: #fff; }
.footer-contact { font-size: .82rem; line-height: 1.7; }
.footer-contact a { color: #fff; font-weight: 600; }
.footer-bottom { display: flex; min-height: 62px; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: .72rem; }
.footer-bottom a { color: #fff; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .topbar { display: none; }
  .header-inner { min-height: 74px; }
  .brand img { width: min(300px, 68vw); }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    top: 74px;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 24px;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 180ms ease;
  }
  .site-nav.open { opacity: 1; pointer-events: auto; transform: none; }
  .site-nav > a:not(.button) { padding: 18px 4px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .site-nav > a:not(.button)::after { display: none; }
  .site-nav .button { margin-top: 24px; }
  .hero { min-height: 660px; }
  .hero-media img { object-position: 62% center; }
  .hero-media::after { background: rgba(25,38,71,.84); }
  .hero-content { width: min(700px, 100%); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split, .services-hero-grid, .contact-layout { grid-template-columns: 1fr; }
  .media-card { max-width: 680px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid, .industry-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .process-step, .process-step:first-child, .process-step:last-child { padding: 0 24px; border-left: 1px solid rgba(255,255,255,.15); }
  .testimonial { grid-template-columns: 1fr; }
  .testimonial-image { display: none; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .section-sm { padding: 56px 0; }
  h1 { font-size: clamp(2.2rem, 11vw, 3.25rem); }
  h2 { font-size: clamp(1.85rem, 8vw, 2.55rem); }
  .hero { min-height: 680px; }
  .hero-content { padding: 75px 0; }
  .hero-points { display: grid; gap: 9px; }
  .button-row .button { width: 100%; }
  .trust-item { padding: 20px 14px; }
  .trust-item strong { font-size: .94rem; }
  .trust-item span { font-size: .72rem; }
  .media-card > img { min-height: 360px; }
  .media-badge { right: 10px; bottom: 10px; width: 175px; }
  .card-grid, .industry-grid, .values-grid, .services-list-grid, .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step, .process-step:first-child, .process-step:last-child { padding: 0 0 25px 62px; border: 0; }
  .process-step b { position: absolute; top: 0; left: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.3); }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .cta-inner .button { width: 100%; }
  .page-hero { padding: 70px 0; }
  .form-card, .contact-card { padding: 26px 20px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 38px 24px; }
  .footer-brand, .footer-main > :last-child { grid-column: 1 / -1; }
  .footer-brand img { width: 275px; }
  .footer-bottom { padding: 18px 0; align-items: flex-start; flex-direction: column; justify-content: center; }
}
/* @vn-deploy:1784920309772 */
