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

:root {
  --ink: #082d59;
  --paper: #f7f9fc;
  --white: #ffffff;
  --yellow: #ffcd00;
  --blue: #0057b8;
  --muted: #5d6f82;
  --line: rgba(8, 45, 89, 0.16);
  --radius: 18px;
  --shadow: 0 22px 60px rgba(11, 23, 32, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; }
.wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -100px; z-index: 100; padding: 10px 14px; background: var(--yellow); }
.skip-link:focus { top: 12px; }

.site-header { position: sticky; top: 0; z-index: 20; background: rgba(247,249,252,.92); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 900; letter-spacing: -.05em; font-size: 1.3rem; }
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; background: var(--blue); color: var(--yellow); border-radius: 50%; font-size: .8rem; letter-spacing: -.05em; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { text-decoration: none; font-weight: 750; font-size: .92rem; }
.nav-links a:hover, .nav-links a[aria-current="page"] { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.button, .button-dark { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 999px; text-decoration: none; font-weight: 850; transition: transform .2s, box-shadow .2s; }
.button { background: var(--yellow); color: var(--ink); box-shadow: 0 0 0 1px rgba(8,45,89,.1); }
.button-dark { background: var(--ink); color: var(--white); }
.button:hover, .button-dark:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(11,23,32,.15); }
.nav-toggle { display: none; border: 0; background: transparent; font: inherit; font-weight: 800; padding: 10px; }

.hero { padding: 78px 0 64px; overflow: hidden; }
.hero-home { background: #eaf1fb; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 20px; font-size: .78rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 10px; height: 10px; background: var(--blue); border-radius: 50%; }
h1, h2, h3 { margin: 0; line-height: 1.02; letter-spacing: -.055em; }
h1 { max-width: 880px; font-size: clamp(3.3rem, 7vw, 7rem); }
h2 { font-size: clamp(2.25rem, 4vw, 4.2rem); }
h3 { font-size: 1.45rem; line-height: 1.18; }
.lead { max-width: 690px; margin: 28px 0 0; color: #36526e; font-size: clamp(1.1rem, 2vw, 1.35rem); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-note { margin-top: 22px; color: var(--muted); font-size: .9rem; font-weight: 650; }

.proof-strip { border-block: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-item { padding: 26px 30px; border-right: 1px solid var(--line); }
.proof-item:first-child { padding-left: 0; }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; }
.proof-item span { color: var(--muted); font-size: .9rem; }

.section { padding: 100px 0; }
.section-dark { background: var(--ink); color: white; }
.section-blue { background: var(--blue); color: white; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 46px; }
.section-heading p { max-width: 520px; margin: 0; color: var(--muted); font-size: 1.05rem; }
.section-dark .section-heading p, .section-blue .section-heading p { color: rgba(255,255,255,.68); }
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.cards-three { grid-template-columns: repeat(3, 1fr); }
.card { padding: 34px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.card-dark { background: #0d3b70; border-color: rgba(255,255,255,.14); }
.card p { color: var(--muted); }
.card-dark p { color: #d1dfec; }
.card-link { display: inline-flex; margin-top: 18px; font-weight: 900; text-underline-offset: 5px; }
.service-index { font-size: .78rem; font-weight: 900; color: var(--blue); letter-spacing: .1em; }
.card-dark .service-index { color: var(--yellow); }
.locations { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.location { min-height: 180px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; background: var(--paper); color: var(--ink); border-radius: var(--radius); text-decoration: none; transition: transform .2s, background .2s; }
.location:hover { transform: translateY(-4px); background: var(--yellow); }
.location span { color: var(--muted); font-size: .9rem; }
.location strong { font-size: 1.4rem; letter-spacing: -.03em; }

.steps { counter-reset: steps; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step { counter-increment: steps; padding-top: 22px; border-top: 2px solid rgba(255,255,255,.22); }
.step::before { content: "0" counter(steps); display: block; color: var(--yellow); font-weight: 900; margin-bottom: 26px; }
.step p { color: rgba(255,255,255,.7); }
.quote { max-width: 920px; font-size: clamp(2rem, 4.2vw, 4.2rem); line-height: 1.1; letter-spacing: -.05em; font-weight: 850; }

.page-hero { padding: 80px 0 72px; }
.page-hero h1 { font-size: clamp(3.2rem, 6.2vw, 6.4rem); }
.about-simple { padding: 90px 0 110px; }
.about-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr); gap: 80px; align-items: center; }
.about-copy h1 { font-size: clamp(3.2rem, 6.2vw, 6.4rem); }
.about-body { max-width: 720px; margin-top: 38px; }
.about-body p { color: #36526e; font-size: 1.05rem; }
.about-photo { margin: 0; }
.about-photo img { display: block; width: 100%; height: 560px; object-fit: cover; object-position: center 28%; border-radius: 28px; box-shadow: var(--shadow); }
.about-feature-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .7fr); gap: 86px; align-items: center; }
.about-feature-grid h2 { max-width: 720px; }
.about-feature-grid p:not(.eyebrow) { max-width: 670px; color: rgba(255,255,255,.72); font-size: 1.05rem; }
.about-feature-grid .button { margin-top: 14px; }
.about-feature-grid figure { margin: 0; }
.about-feature-grid img { display: block; width: 100%; height: 460px; object-fit: cover; object-position: center 26%; border-radius: 28px; }
.breadcrumbs { margin-bottom: 30px; color: var(--muted); font-size: .9rem; }
.breadcrumbs a { text-underline-offset: 4px; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr); }
.prose { max-width: 900px; }
.prose h2 { margin-top: 64px; font-size: clamp(2rem, 4vw, 3.6rem); }
.prose h3 { margin-top: 36px; }
.prose p, .prose li { color: #36526e; }
.prose ul { padding-left: 1.2rem; }
.faq { border-top: 1px solid var(--line); }
details { padding: 22px 0; border-bottom: 1px solid var(--line); }
summary { cursor: pointer; font-weight: 850; font-size: 1.05rem; }
details p { max-width: 740px; }
.cta { padding: 72px 0; background: var(--yellow); }
.cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.cta h2 { max-width: 780px; }
.cta p { margin: 16px 0 0; max-width: 650px; }

.site-footer { padding: 64px 0 28px; background: var(--ink); color: white; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 38px; }
.footer-grid p, .footer-grid a { color: #b6c0c6; }
.footer-grid a:hover { color: white; }
.footer-links { display: grid; gap: 9px; }
.footer-title { color: white; font-weight: 900; margin-bottom: 12px; }
.footer-contact { margin-top: 26px; }
.footer-contact p { margin: 0 0 16px; }
.footer-contact strong { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.13); color: #a9bdd1; font-size: .85rem; }
.footer-bottom a { color: inherit; }

@media (max-width: 1050px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .wrap { width: min(100% - 28px, 720px); }
  .nav-toggle { display: block; }
  .nav-links { display: none; position: absolute; left: 0; right: 0; top: 78px; padding: 22px; background: var(--paper); border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; }
  .nav-links.open { display: flex; }
  .nav-links .button { text-align: center; }
  .hero { padding-top: 50px; }
  .content-grid, .about-grid, .about-feature-grid { grid-template-columns: 1fr; gap: 45px; }
  .about-simple { padding: 64px 0 80px; }
  .about-photo { max-width: 560px; }
  .about-photo img { height: min(560px, 110vw); }
  .about-feature-grid figure { max-width: 560px; }
  .about-feature-grid img { height: min(460px, 110vw); }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item, .proof-item:first-child { padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-item:last-child { border-bottom: 0; }
  .section { padding: 72px 0; }
  .section-heading { display: block; }
  .section-heading p { margin-top: 18px; }
  .cards-three { grid-template-columns: 1fr; }
  .locations { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  h1 { font-size: 3rem; }
  .cards, .locations, .footer-grid, .cta-inner { grid-template-columns: 1fr; }
  .location { min-height: 140px; }
  .hero-actions .button, .hero-actions .button-dark { width: 100%; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
