:root {
  --blue: #064fe8;
  --blue-dark: #05359e;
  --blue-soft: #eaf1ff;
  --orange: #ff5a00;
  --orange-soft: #fff1e9;
  --teal: #008f83;
  --teal-dark: #006a63;
  --teal-soft: #e8faf7;
  --ink: #11223c;
  --muted: #5a6a7d;
  --line: #dbe4ee;
  --cloud: #f5f8fc;
  --white: #fff;
  --shadow: 0 16px 40px rgba(10, 43, 92, .1);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 36px), var(--max)); margin-inline: auto; }
.section { padding: 82px 0; }
.section-sm { padding: 54px 0; }
.section-tint { background: var(--cloud); }
.section-blue { color: var(--white); background: linear-gradient(135deg, var(--blue-dark), var(--blue)); }
.section-teal { color: var(--white); background: linear-gradient(135deg, var(--teal-dark), var(--teal)); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { width: 24px; height: 3px; content: ""; background: var(--orange); border-radius: 10px; }
h1, h2, h3 { margin: 0; letter-spacing: -.035em; line-height: 1.1; }
h1 { font-size: clamp(2.45rem, 5.5vw, 4.75rem); }
h2 { font-size: clamp(2rem, 3.7vw, 3.15rem); }
h3 { font-size: 1.28rem; }
p { margin: 0; }
.section-head { max-width: 760px; margin-bottom: 30px; }
.section-head p { margin-top: 15px; color: var(--muted); font-size: 1.06rem; }
.section-blue .section-head p, .section-teal .section-head p { color: rgba(255,255,255,.82); }
.lead { color: var(--muted); font-size: 1.1rem; }
.muted { color: var(--muted); }
.note { padding: 14px 16px; color: var(--muted); background: var(--cloud); border-left: 4px solid var(--orange); border-radius: 10px; font-size: .92rem; }
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stack { display: grid; gap: 18px; }
.card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(10, 43, 92, .05);
}
.card h3 { margin: 14px 0 8px; }
.card p { color: var(--muted); font-size: .96rem; }
.card-emphasis { border-color: rgba(6,79,232,.25); box-shadow: var(--shadow); }
.service-card { position: relative; overflow: hidden; transition: transform .22s ease, box-shadow .22s ease; }
.service-card::after {
  position: absolute;
  right: -28px;
  bottom: -30px;
  width: 90px;
  height: 90px;
  content: "";
  background: var(--blue-soft);
  border-radius: 50%;
  transition: transform .22s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card:hover::after { transform: scale(1.25); }
.service-card .text-link { position: relative; z-index: 1; }
.icon {
  display: inline-grid;
  width: 45px;
  height: 45px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 13px;
  place-items: center;
}
.icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.icon-orange { color: var(--orange); background: var(--orange-soft); }
.icon-teal { color: var(--teal); background: var(--teal-soft); }
.text-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; color: var(--blue); font-weight: 800; }
.text-link:hover { color: var(--orange); }
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  color: var(--white);
  background: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { background: var(--blue-dark); border-color: var(--blue-dark); box-shadow: 0 10px 20px rgba(6,79,232,.2); transform: translateY(-2px); }
.btn-orange { background: var(--orange); border-color: var(--orange); }
.btn-orange:hover { background: #d94c00; border-color: #d94c00; }
.btn-outline { color: var(--blue); background: transparent; border-color: rgba(6,79,232,.26); }
.btn-outline:hover { color: var(--white); background: var(--blue); border-color: var(--blue); }
.btn-light { color: var(--blue); background: var(--white); border-color: var(--white); }
.btn-light:hover { color: var(--white); background: var(--orange); border-color: var(--orange); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  color: var(--blue-dark);
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .79rem;
  font-weight: 800;
}
.check-list { display: grid; gap: 10px; padding: 0; margin: 18px 0 0; list-style: none; }
.check-list li { position: relative; padding-left: 25px; color: var(--muted); }
.check-list li::before { position: absolute; left: 0; color: var(--teal); content: "✓"; font-weight: 900; }
.site-header { position: sticky; z-index: 30; top: 0; background: rgba(255,255,255,.95); border-bottom: 1px solid rgba(219,228,238,.8); backdrop-filter: blur(18px); }
.nav { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 66px; height: 66px; border-radius: 14px; object-fit: cover; }
.brand-text { display: grid; color: var(--blue); font-size: 1.18rem; font-weight: 950; letter-spacing: -.05em; line-height: .95; text-transform: uppercase; }
.brand-text small { margin-top: 4px; color: var(--teal-dark); font-size: .58rem; letter-spacing: .1em; }
.main-nav { display: flex; align-items: center; gap: 16px; }
.main-nav a { color: #35465c; font-size: .86rem; font-weight: 750; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--blue); }
.nav-actions { display: flex; align-items: center; gap: 9px; }
.nav-actions .btn { min-height: 42px; padding: 0 15px; font-size: .84rem; }
.menu-toggle { display: none; padding: 8px; color: var(--blue); background: transparent; border: 0; }
.menu-toggle svg { width: 29px; height: 29px; stroke: currentColor; stroke-width: 2.3; }
.hero { position: relative; overflow: hidden; padding: 76px 0 70px; background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 62%, #f2fffc 100%); }
.hero::before, .hero::after { position: absolute; content: ""; border-radius: 50%; filter: blur(2px); }
.hero::before { top: -120px; right: -70px; width: 390px; height: 390px; background: rgba(255,90,0,.08); }
.hero::after { bottom: -180px; left: -140px; width: 400px; height: 400px; background: rgba(0,143,131,.1); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: 45px; }
.hero p { max-width: 690px; margin-top: 20px; color: var(--muted); font-size: 1.12rem; }
.hero-media { position: relative; min-height: 475px; }
.hero-logo {
  position: absolute;
  inset: 4% 5% 7% 6%;
  padding: 20px;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}
.hero-logo img { width: 100%; height: 100%; object-fit: contain; }
.status-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 15px 28px rgba(10,43,92,.14);
  font-size: .77rem;
  font-weight: 850;
}
.status-card strong { display: block; color: var(--blue); font-size: .9rem; }
.status-a { top: 0; right: 0; }
.status-b { bottom: 12%; left: -5%; }
.status-dot { width: 12px; height: 12px; background: var(--teal); border-radius: 50%; box-shadow: 0 0 0 5px rgba(0,143,131,.14); }
.metric-strip { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.metric { padding: 22px 18px; text-align: center; }
.metric + .metric { border-left: 1px solid var(--line); }
.metric strong { display: block; color: var(--blue); font-size: 1.13rem; }
.metric span { color: var(--muted); font-size: .86rem; font-weight: 700; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: 42px; }
.feature-panel { padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.process { display: grid; grid-template-columns: repeat(7, minmax(0,1fr)); gap: 12px; margin-top: 30px; }
.process-step { position: relative; padding: 18px 14px; background: var(--white); border: 1px solid var(--line); border-radius: 15px; }
.process-step b { display: grid; width: 29px; height: 29px; color: var(--white); background: var(--blue); border-radius: 50%; place-items: center; font-size: .82rem; }
.process-step strong { display: block; margin-top: 12px; font-size: .86rem; line-height: 1.25; }
.area-card { padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.area-card h3 { color: var(--blue-dark); }
.area-card p { margin-top: 7px; color: var(--muted); font-size: .91rem; }
.response-card { padding: 22px; border-radius: var(--radius); }
.response-card strong { display: block; color: var(--blue); font-size: 1.15rem; }
.response-card span { color: var(--muted); font-size: .9rem; }
.cta-band { padding: 34px; color: var(--white); background: linear-gradient(125deg, var(--blue-dark), var(--blue) 64%, #1473ff); border-radius: 26px; box-shadow: var(--shadow); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.cta-band h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.cta-band p { max-width: 680px; margin-top: 10px; color: rgba(255,255,255,.83); }
.faq { display: grid; gap: 10px; }
.faq-item { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 14px; }
.faq-button { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 16px; padding: 17px 18px; color: var(--ink); background: transparent; border: 0; font-weight: 820; text-align: left; }
.faq-button span:last-child { color: var(--blue); font-size: 1.3rem; }
.faq-answer { display: none; padding: 0 18px 17px; color: var(--muted); font-size: .95rem; }
.faq-item.open .faq-answer { display: block; }
.page-hero { padding: 68px 0 58px; background: linear-gradient(135deg, #edf4ff, #f8fbff 66%, #edfcf9); }
.page-hero p { max-width: 760px; margin-top: 16px; color: var(--muted); font-size: 1.08rem; }
.breadcrumbs { margin-bottom: 18px; color: var(--teal-dark); font-size: .8rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.breadcrumbs a:hover { color: var(--orange); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; }
table { width: 100%; border-collapse: collapse; background: var(--white); font-size: .92rem; }
th, td { padding: 14px 15px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--white); background: var(--blue-dark); font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; }
tr:last-child td { border-bottom: 0; }
.service-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px 22px; padding: 0; margin: 18px 0 0; list-style: none; }
.service-list li { position: relative; padding-left: 20px; color: var(--muted); font-size: .93rem; }
.service-list li::before { position: absolute; left: 0; color: var(--teal); content: "✓"; font-weight: 900; }
.form-card { padding: 26px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 15px; }
.field { display: grid; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field label, .legend { color: var(--ink); font-size: .82rem; font-weight: 850; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 47px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #c7d4e2;
  border-radius: 10px;
  outline: none;
}
.field textarea { min-height: 116px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(6,79,232,.12); }
.checkbox { display: flex; align-items: flex-start; gap: 9px; color: var(--muted); font-size: .8rem; }
.checkbox input { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 3px; accent-color: var(--blue); }
.checkbox a { color: var(--blue); font-weight: 800; }
.form-status { display: none; padding: 11px 13px; margin-top: 14px; color: var(--teal-dark); background: var(--teal-soft); border-radius: 10px; font-size: .9rem; font-weight: 700; }
.form-status.show { display: block; }
.policy { max-width: 900px; }
.policy section { padding: 20px 0; border-bottom: 1px solid var(--line); }
.policy h2 { color: var(--blue-dark); font-size: 1.45rem; }
.policy p, .policy li { margin-top: 8px; color: var(--muted); }
.policy ul { margin: 8px 0 0; padding-left: 22px; }
.contact-list { display: grid; gap: 14px; padding: 0; margin: 22px 0 0; list-style: none; }
.contact-list li { display: flex; gap: 11px; color: var(--muted); }
.contact-list strong { display: block; color: var(--ink); }
.footer { padding: 54px 0 96px; color: rgba(255,255,255,.78); background: #071f43; }
.footer-grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr 1.2fr; gap: 28px; }
.footer h3 { margin-bottom: 13px; color: var(--white); font-size: 1rem; letter-spacing: -.01em; }
.footer p, .footer a, .footer li { color: rgba(255,255,255,.73); font-size: .88rem; }
.footer a:hover { color: var(--white); }
.footer ul { display: grid; gap: 6px; padding: 0; margin: 0; list-style: none; }
.footer-logo { width: 80px; height: 80px; margin-bottom: 15px; border-radius: 16px; object-fit: cover; }
.footer-bottom { padding-top: 22px; margin-top: 34px; border-top: 1px solid rgba(255,255,255,.15); font-size: .8rem; }
.footer-disclaimer { margin-top: 10px; color: rgba(255,255,255,.58); }
.mobile-call {
  position: fixed;
  z-index: 28;
  right: 16px;
  bottom: 15px;
  display: none;
  min-height: 50px;
  align-items: center;
  gap: 8px;
  padding: 0 17px;
  color: var(--white);
  background: var(--orange);
  border-radius: 999px;
  box-shadow: 0 12px 22px rgba(217,76,0,.3);
  font-weight: 850;
}
.not-found { min-height: 66vh; display: grid; place-items: center; text-align: center; }
.not-found strong { display: block; color: var(--blue); font-size: clamp(5rem, 16vw, 10rem); letter-spacing: -.1em; line-height: .8; }

@media (max-width: 1080px) {
  .main-nav { display: none; position: absolute; top: 82px; left: 0; width: 100%; padding: 18px; background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .main-nav.open { display: grid; }
  .main-nav a { padding: 7px 0; font-size: .95rem; }
  .menu-toggle { display: inline-flex; }
  .nav-actions .btn-outline { display: none; }
  .process { grid-template-columns: repeat(4,minmax(0,1fr)); }
}
@media (max-width: 860px) {
  .section { padding: 62px 0; }
  .hero { padding: 56px 0 46px; }
  .hero-grid, .split { grid-template-columns: 1fr; gap: 28px; }
  .hero-media { min-height: 390px; }
  .grid-4 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .grid-3 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 600px) {
  .container { width: min(calc(100% - 24px), var(--max)); }
  .section { padding: 50px 0; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .brand img { width: 54px; height: 54px; }
  .brand-text { font-size: 1rem; }
  .nav { min-height: 70px; }
  .main-nav { top: 70px; }
  .nav-actions .btn { min-height: 40px; padding: 0 12px; font-size: .75rem; }
  .hero-media { min-height: 315px; }
  .hero-logo { padding: 10px; border-radius: 20px; }
  .status-card { padding: 9px 10px; font-size: .65rem; }
  .status-card strong { font-size: .76rem; }
  .status-b { left: 0; bottom: 5%; }
  .metric-strip { grid-template-columns: 1fr; }
  .metric + .metric { border-top: 1px solid var(--line); border-left: 0; }
  .grid-2, .grid-3, .grid-4, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .service-list { grid-template-columns: 1fr; }
  .process { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .cta-band { padding: 25px; }
  .cta-band-inner { display: block; }
  .cta-band .button-row { margin-top: 20px; }
  .mobile-call { display: inline-flex; }
  .footer { padding-bottom: 96px; }
}
