:root {
  --bg: #f8fafc;
  --bg-soft: #f5f7fa;
  --text: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --white: #ffffff;
  --primary: #0f172a;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(to bottom, #f8fafc, #ffffff, #f8fafc);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px 0;
}
.brand-wrap { display: flex; align-items: center; gap: 20px; }
.logo-box {
  width: 176px; height: 64px; border: 1px solid var(--line); border-radius: 16px;
  background: var(--white); box-shadow: var(--shadow); padding: 5px; overflow: hidden;
}
.logo-box img { width: 100%; height: 100%; object-fit: contain; }
.brand-name { font-size: 14px; font-weight: 700; }
.brand-sub { font-size: 12px; color: var(--muted); }
.nav-links { display: flex; gap: 22px; flex-wrap: wrap; }
.nav-links a { font-size: 14px; font-weight: 500; color: #334155; }
.nav-cta { display: flex; gap: 10px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 18px; border-radius: 16px; font-weight: 600; font-size: 14px;
  border: 1px solid var(--line); cursor: pointer;
}
.btn-primary { background: var(--primary); color: white; border-color: var(--primary); }
.btn-secondary { background: white; color: var(--text); }
.btn.full { width: 100%; }
.hero {
  background: linear-gradient(135deg, #e2e8f0 0%, #f1f5f9 45%, #ffffff 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 32px; align-items: start;
  padding: 88px 0 96px;
}
.pill-row, .trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill, .trust-pill {
  padding: 8px 12px; border-radius: 999px; border: 1px solid var(--line);
  background: rgba(255,255,255,.8); color: #334155; font-size: 14px; box-shadow: var(--shadow);
}
.hero h1 {
  margin: 24px 0 0; font-size: clamp(40px, 5vw, 54px); line-height: 1.05;
  letter-spacing: -0.03em;
}
.tagline { margin-top: 22px; font-size: 28px; font-weight: 700; letter-spacing: .03em; }
.hero-copy { margin-top: 14px; max-width: 650px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; gap: 12px; margin-top: 28px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
.stat-card, .card {
  border: 1px solid var(--line); background: rgba(255,255,255,.82); border-radius: var(--radius); box-shadow: var(--shadow);
}
.stat-card { padding: 22px; }
.stat-value { font-size: 24px; font-weight: 700; }
.stat-label { margin-top: 6px; color: var(--muted); font-size: 14px; }
.trust-row { margin-top: 22px; }
.fit-card { padding: 24px; }
.card-header { display: flex; justify-content: space-between; gap: 12px; align-items: start; }
.card-header h3, .simple-card h3, .service-card h3 { margin: 0; font-size: 21px; }
.card-header p, .simple-card p, .service-card p, .inner-box p { color: var(--muted); line-height: 1.7; }
.badge { background: #eef2ff; border-radius: 999px; padding: 6px 10px; font-size: 12px; font-weight: 600; }
.inner-box { margin-top: 14px; border: 1px solid var(--line); border-radius: 18px; padding: 18px; background: white; }
.inner-title { font-weight: 700; margin-bottom: 10px; }
.check-list, .plain-list { margin: 0; padding-left: 20px; }
.check-list li, .plain-list li { margin: 10px 0; color: #334155; }
.contact-mini { margin-top: 14px; color: var(--muted); font-size: 13px; display: grid; gap: 6px; }
.metro-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #f8fafc; }
.center-text { text-align: center; padding: 24px 0; color: var(--muted); }
.section { padding: 84px 0; }
.soft-bg { background: rgba(248,250,252,.65); }
.section-head { text-align: center; max-width: 780px; margin: 0 auto 42px; }
.eyebrow {
  display: inline-flex; align-items: center; justify-content: center; padding: 8px 12px;
  border-radius: 999px; background: var(--primary); color: white; font-size: 12px; font-weight: 700;
}
.eyebrow.dark { background: var(--primary); }
.section-head h2, #about h2 { font-size: clamp(32px, 4vw, 42px); margin: 16px 0 0; letter-spacing: -0.03em; }
.section-head p, #about p { color: var(--muted); line-height: 1.8; font-size: 16px; }
.grid { display: grid; gap: 22px; }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.simple-card, .service-card, .quote-card { padding: 26px; }
.about-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; }
.about-card { padding: 26px; text-align: center; }
.headshot { width: 224px; height: 288px; border-radius: 18px; object-fit: cover; margin: 0 auto 16px; }
.about-name { font-size: 22px; font-weight: 700; }
.about-role { margin-top: 4px; color: var(--muted); }
.centered { text-align: left; display: inline-block; margin-top: 16px; }
.two-col { columns: 2; column-gap: 28px; }
.mt-lg { margin-top: 28px; }
.mt-md { margin-top: 18px; }
.stars { letter-spacing: 2px; font-size: 16px; margin-bottom: 14px; }
.quote-card p { margin: 0 0 16px; color: #334155; line-height: 1.8; }
.quote-name { font-weight: 700; }
.quote-role { color: var(--muted); font-size: 13px; }
.faq-list { max-width: 860px; margin: 0 auto; display: grid; gap: 14px; }
details {
  border: 1px solid var(--line); background: rgba(255,255,255,.82); border-radius: 18px; padding: 18px 20px; box-shadow: var(--shadow);
}
summary { cursor: pointer; font-weight: 600; }
details p { color: var(--muted); line-height: 1.75; margin: 12px 0 0; }
.contact-grid { align-items: start; }
.contact-block { display: grid; gap: 16px; color: #334155; margin-top: 16px; }
.contact-form { display: grid; gap: 14px; margin-top: 18px; }
.contact-form label { display: grid; gap: 6px; font-size: 14px; font-weight: 500; color: #334155; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 12px 14px; border-radius: 16px; border: 1px solid var(--line);
  font: inherit; color: var(--text); background: white;
}
.tiny-note { font-size: 12px; color: #64748b; line-height: 1.7; margin-top: 18px; }
.footer { border-top: 1px solid var(--line); background: rgba(255,255,255,.8); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .9fr .8fr .9fr; gap: 28px; padding: 42px 0; }
.footer-copy { color: var(--muted); line-height: 1.7; margin-top: 16px; }
.footer-title { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: #64748b; font-weight: 700; margin-bottom: 14px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #334155; }
.footer-links.static span { color: #334155; line-height: 1.6; }
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .hero-grid, .about-grid, .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .grid.three, .grid.two, .stats { grid-template-columns: 1fr; }
  .hero-actions, .nav-cta, .nav-wrap { flex-wrap: wrap; }
  .two-col { columns: 1; }
}
