:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #5b6472;
  --line: #e5e7eb;
  --blue: #2563eb;
  --orange: #ea580c;
  --bg: #f8fafc;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 18px; }
.brand { font-weight: 800; font-size: 22px; text-decoration: none; letter-spacing: 0; }
.brand span { color: var(--blue); }
.navlinks { display: flex; gap: 18px; flex-wrap: wrap; justify-content: flex-end; }
.navlinks a { text-decoration: none; color: #374151; font-weight: 700; font-size: 14px; }
.navlinks a:hover { color: var(--blue); }
.hero {
  background: #0f172a;
  color: white;
  padding: 54px 0 42px;
}
.hero-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(320px, 460px); gap: 34px; align-items: center; }
.eyebrow { color: #facc15; font-weight: 800; text-transform: uppercase; font-size: 13px; letter-spacing: .08em; margin: 0 0 12px; }
h1 { font-size: clamp(34px, 5vw, 58px); line-height: 1.02; margin: 0 0 18px; letter-spacing: 0; }
.lead { font-size: 18px; color: #e5e7eb; margin: 0 0 24px; max-width: 760px; }
.hero img, .media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  aspect-ratio: 16 / 10;
  background: #d1d5db;
}
.hero img { box-shadow: 0 20px 50px rgba(0,0,0,.35); }
.btnrow { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
}
.btn.primary { background: var(--blue); color: white; }
.btn.secondary { color: white; border-color: rgba(255,255,255,.35); }
.facts { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; margin-top: 26px; }
.fact { border: 1px solid rgba(255,255,255,.16); border-radius: 8px; padding: 14px; background: rgba(255,255,255,.06); }
.fact b { display: block; font-size: 14px; }
.fact span { display: block; color: #cbd5e1; font-size: 13px; }
main { padding: 48px 0; }
.section { background: white; border: 1px solid var(--line); border-radius: 8px; padding: 28px; margin-bottom: 22px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
h2 { font-size: 28px; line-height: 1.18; margin: 0 0 12px; letter-spacing: 0; }
h3 { margin: 0 0 8px; font-size: 18px; }
p { margin: 0 0 14px; }
ul { margin: 0; padding-left: 20px; }
.cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.card { border: 1px solid var(--line); border-radius: 8px; padding: 16px; background: #fbfdff; text-decoration: none; }
.card:hover { border-color: #93c5fd; }
.muted { color: var(--muted); }
.faq details { border-top: 1px solid var(--line); padding: 14px 0; }
.faq details:first-child { border-top: 0; }
.faq summary { cursor: pointer; font-weight: 800; }
.footer { background: #111827; color: white; padding: 32px 0; }
.footer a { color: #cbd5e1; text-decoration: none; }
.footer-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 24px; }
.footer-links { display: flex; gap: 12px 18px; flex-wrap: wrap; }
.service-schema-note { font-size: 13px; color: var(--muted); }
img[loading="lazy"] {
  content-visibility: auto;
  contain-intrinsic-size: 640px 400px;
}

@media (max-width: 820px) {
  .hero-grid, .split, .footer-grid { grid-template-columns: 1fr; }
  .facts, .cards { grid-template-columns: 1fr; }
  .nav { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .navlinks { justify-content: flex-start; }
}
