:root {
  --bg: #f6f7f9;
  --surface: #ffffff;
  --surface-soft: #eef1f5;
  --text: #111827;
  --muted: #5f6b7a;
  --line: #d9dee7;
  --accent: #1f4e79;
  --accent-dark: #163957;
  --accent-soft: #e4edf5;
  --green: #2f6f5e;
  --warning: #8a5a00;
  --warning-bg: #fff6dc;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.08);
  --radius: 28px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
.page { overflow: hidden; }
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(246, 247, 249, 0.78);
  border-bottom: 1px solid rgba(217, 222, 231, 0.7);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { font-weight: 760; letter-spacing: -0.03em; font-size: 1.05rem; }
.brand span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 14px; font-size: 0.92rem; color: var(--muted); }
.nav-links a:not(.nav-cta) { padding: 9px 11px; border-radius: 999px; }
.nav-links a:not(.nav-cta):hover { background: #fff; color: var(--text); }
.nav-cta { padding: 10px 16px; border-radius: 999px; background: var(--text); color: #fff !important; font-weight: 650; }
.mobile-nav { display: none; max-width: var(--max); margin: 0 auto; padding: 0 16px 14px; overflow-x: auto; scrollbar-width: none; gap: 8px; }
.mobile-nav::-webkit-scrollbar { display: none; }
.mobile-nav a { flex: 0 0 auto; padding: 9px 12px; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: var(--muted); font-size: 0.88rem; font-weight: 680; white-space: nowrap; }
.mobile-nav a:hover { color: var(--text); border-color: #c9d0dc; }
.hero { position: relative; padding: 92px 24px 72px; }
.hero::before { content: ""; position: absolute; inset: -180px -160px auto auto; width: 520px; height: 520px; background: radial-gradient(circle, rgba(31,78,121,0.20), rgba(31,78,121,0)); pointer-events: none; }
.hero-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; padding: 8px 13px; border-radius: 999px; background: var(--accent-soft); color: var(--accent-dark); font-size: 0.86rem; font-weight: 700; }
.dot { width: 8px; height: 8px; border-radius: 999px; background: var(--green); }
h1 { margin: 0; max-width: 790px; font-size: clamp(3rem, 7vw, 5.85rem); line-height: 0.94; letter-spacing: -0.075em; font-weight: 820; }
.hero-lead { margin: 28px 0 0; max-width: 690px; font-size: clamp(1.12rem, 2vw, 1.42rem); color: var(--muted); line-height: 1.48; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 13px 20px; border-radius: 999px; font-weight: 720; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.button:hover { transform: translateY(-2px); }
.primary { background: var(--accent); color: white; box-shadow: 0 16px 34px rgba(31, 78, 121, 0.22); }
.secondary { background: white; border: 1px solid var(--line); color: var(--text); }
.hero-card { position: relative; background: var(--surface); border: 1px solid rgba(217, 222, 231, 0.85); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.hero-card h2 { margin: 0 0 16px; font-size: 1.2rem; letter-spacing: -0.03em; }
.trait-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.trait-list li { display: flex; gap: 10px; color: var(--muted); }
.trait-list li::before { content: ""; flex: 0 0 auto; width: 7px; height: 7px; margin-top: 9px; border-radius: 999px; background: var(--accent); }
.stats { max-width: var(--max); margin: 0 auto; padding: 0 24px 64px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stat { padding: 22px; background: var(--surface); border: 1px solid var(--line); border-radius: 22px; }
.stat strong { display: block; font-size: 1.9rem; letter-spacing: -0.05em; line-height: 1; }
.stat span { display: block; margin-top: 9px; color: var(--muted); font-size: 0.94rem; }
section { padding: 76px 24px; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-kicker { margin: 0 0 14px; color: var(--accent); font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.78rem; }
.section-title { margin: 0; max-width: 820px; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.02; letter-spacing: -0.06em; }
.section-text { margin: 20px 0 0; max-width: 760px; color: var(--muted); font-size: 1.08rem; }
.services { margin-top: 38px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-card { min-height: 265px; padding: 30px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); display: flex; flex-direction: column; justify-content: space-between; }
.service-card h3 { margin: 0; max-width: 460px; font-size: 1.55rem; line-height: 1.08; letter-spacing: -0.045em; }
.service-card p { margin: 22px 0 0; color: var(--muted); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.tag { padding: 7px 10px; border-radius: 999px; background: var(--surface-soft); color: var(--muted); font-size: 0.82rem; font-weight: 650; }
.dark-band { background: #111827; color: #fff; }
.dark-band .section-kicker { color: #9cc5ea; }
.dark-band .section-text { color: #c6ced8; }
.focus-grid { margin-top: 40px; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 24px; align-items: stretch; }
.focus-panel { padding: 32px; border-radius: var(--radius); background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.14); }
.focus-panel h3 { margin: 0; font-size: 1.5rem; letter-spacing: -0.04em; }
.focus-panel p { color: #c6ced8; margin: 18px 0 0; }
.focus-list { display: grid; gap: 12px; }
.focus-item { padding: 20px 22px; border-radius: 20px; background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.12); }
.focus-item strong { display: block; font-size: 1.02rem; }
.focus-item span { display: block; margin-top: 5px; color: #c6ced8; font-size: 0.95rem; }
.references { margin-top: 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.reference-card { padding: 26px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.reference-card .year { display: inline-flex; margin-bottom: 18px; color: var(--accent); font-weight: 800; font-size: 0.88rem; }
.reference-card h3 { margin: 0; font-size: 1.25rem; line-height: 1.16; letter-spacing: -0.04em; }
.reference-card p { margin: 16px 0 0; color: var(--muted); font-size: 0.96rem; }
.profile { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 34px; align-items: start; }
.profile-card { padding: 34px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); }
.profile-card h2 { margin: 0; font-size: 2.1rem; line-height: 1; letter-spacing: -0.06em; }
.profile-card p { margin: 20px 0 0; color: var(--muted); }
.certs { display: grid; gap: 10px; margin-top: 24px; }
.cert { padding: 14px 16px; border-radius: 16px; background: var(--surface-soft); font-weight: 680; color: #344054; }
.quote { padding: 34px; border-radius: var(--radius); background: var(--accent); color: #fff; }
.quote p { margin: 0; font-size: clamp(1.45rem, 3vw, 2.35rem); line-height: 1.13; letter-spacing: -0.055em; font-weight: 760; }
.quote span { display: block; margin-top: 22px; color: rgba(255, 255, 255, 0.76); }
.contact { padding-bottom: 96px; }
.contact-box { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; padding: 42px; border-radius: 34px; background: var(--text); color: white; }
.contact-box h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1; letter-spacing: -0.065em; }
.contact-box p { margin: 16px 0 0; max-width: 680px; color: #c6ced8; }
.contact-links { display: grid; gap: 12px; min-width: 265px; }
.contact-link { display: flex; justify-content: center; padding: 14px 18px; border-radius: 999px; background: #fff; color: var(--text); font-weight: 760; }
.legal-section { padding: 70px 24px; background: #fff; border-top: 1px solid var(--line); }
.legal-layout { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 280px 1fr; gap: 42px; align-items: start; }
.legal-nav { position: sticky; top: 90px; display: grid; gap: 10px; padding: 18px; border: 1px solid var(--line); border-radius: 20px; background: var(--bg); }
.legal-nav a { padding: 10px 12px; border-radius: 12px; color: var(--muted); font-weight: 680; font-size: 0.94rem; }
.legal-nav a:hover { background: #fff; color: var(--text); }
.legal-content { display: grid; gap: 34px; }
.legal-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.legal-card h2 { margin: 0; font-size: clamp(1.9rem, 3vw, 2.7rem); line-height: 1.03; letter-spacing: -0.055em; }
.legal-card h3 { margin: 28px 0 10px; font-size: 1.16rem; letter-spacing: -0.025em; }
.legal-card p, .legal-card li { color: var(--muted); }
.legal-card ul { margin: 10px 0 0; padding-left: 20px; }
.legal-card address { margin-top: 20px; font-style: normal; color: var(--text); font-weight: 620; }
.legal-note { margin-top: 20px; padding: 16px 18px; border-radius: 18px; background: var(--warning-bg); color: var(--warning); border: 1px solid rgba(138, 90, 0, 0.2); font-size: 0.94rem; }
footer { border-top: 1px solid var(--line); padding: 26px 24px; color: var(--muted); font-size: 0.92rem; }
.footer-inner { max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a:hover { color: var(--text); }
@media (max-width: 980px) {
  .nav-links { display: none; }
  .mobile-nav { display: flex; }
  .hero-grid, .focus-grid, .profile, .contact-box, .legal-layout { grid-template-columns: 1fr; }
  .stats, .references { grid-template-columns: repeat(2, 1fr); }
  .services { grid-template-columns: 1fr; }
  .legal-nav { position: relative; top: auto; }
}
@media (max-width: 620px) {
  .hero { padding-top: 64px; }
  .stats, .references { grid-template-columns: 1fr; }
  .hero-card, .service-card, .profile-card, .quote, .contact-box, .legal-card { padding: 24px; }
  .footer-inner { display: grid; }
}
