:root {
  --bg: #f7f8fc;
  --panel: #ffffff;
  --ink: #1f2530;
  --muted: #5e6977;
  --brand: #0b5fff;
  --brand-2: #14a58b;
  --line: #dde3ef;
  --shadow: 0 14px 30px rgba(18, 32, 60, 0.1);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% -5%, #e8eeff, transparent 40%),
    radial-gradient(circle at 90% 2%, #e6fff7, transparent 40%),
    var(--bg);
}
.container { width: min(1120px, 92%); margin: 0 auto; }
.site-header { position: sticky; top: 0; background: rgba(247, 248, 252, 0.9); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); z-index: 50; }
.nav-wrap { display: flex; justify-content: space-between; align-items: center; min-height: 74px; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); font-family: "Space Grotesk", sans-serif; font-weight: 700; }
.brand img { width: 40px; height: 40px; }
nav { display: flex; gap: 1.1rem; align-items: center; }
nav a { text-decoration: none; color: var(--ink); font-weight: 600; }
.menu-btn { display: none; border: 1px solid var(--line); background: #fff; border-radius: 8px; padding: .35rem .7rem; }
.hero { padding: 4.8rem 0 2.4rem; }
.hero-grid { display: grid; grid-template-columns: 1.2fr .95fr; gap: 1.2rem; align-items: start; }
.eyebrow { text-transform: uppercase; letter-spacing: .1em; color: var(--brand); font-size: .84rem; font-weight: 800; }
h1,h2,h3 { font-family: "Space Grotesk", sans-serif; line-height: 1.15; }
h1 { margin: .6rem 0 1rem; font-size: clamp(2rem, 4vw, 3.25rem); }
.lead { color: var(--muted); max-width: 60ch; }
.btn { display: inline-block; text-decoration: none; border: 0; background: linear-gradient(110deg, var(--brand), #0a49c2); color: #fff; padding: .75rem 1.15rem; border-radius: 10px; font-weight: 700; }
.btn-sm { padding: .48rem .85rem; }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid #bac7da; }
.cta-row { display: flex; gap: .7rem; margin: 1.3rem 0; }
.hero-stats { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats article { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: .8rem 1rem; }
.hero-card { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 18px; padding: 1rem; }
.hero-card img { width: 100%; border-radius: 12px; border: 1px solid var(--line); }
.hero-card a { color: var(--brand); font-weight: 700; text-decoration: none; }
.section { padding: 4rem 0; }
.section-alt { background: #eef4ff; }
.card-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; margin-top: 1.2rem; }
.two-col { grid-template-columns: repeat(2,minmax(0,1fr)); }
.card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1rem; }
.card ul { margin: .5rem 0 0; padding-left: 1.1rem; color: var(--muted); }
.split { display: grid; grid-template-columns: 1.3fr 1fr; gap: 1rem; }
.split ol { padding-left: 1.2rem; line-height: 1.8; }
.quote-card { background: linear-gradient(140deg, #0b3b9f, #0b5fff); color: #edf2ff; border-radius: 16px; padding: 1.2rem; box-shadow: var(--shadow); }
.contact { background: linear-gradient(180deg,#fff,#f3f7ff); }
.contact-form { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: .9rem; }
label { display: flex; flex-direction: column; gap: .4rem; font-weight: 700; }
input,select,textarea { font: inherit; border: 1px solid #c7d3e8; border-radius: 8px; padding: .65rem; background: #fff; }
.full { grid-column: 1 / -1; }
.site-footer { border-top: 1px solid var(--line); background: #eef2fb; padding: 1rem 0; }
.foot-wrap { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.foot-wrap a { color: var(--brand); font-weight: 700; text-decoration: none; }

@media (max-width: 920px) {
  .hero-grid,.two-col,.split,.contact-form { grid-template-columns: 1fr; }
  .menu-btn { display: inline-block; }
  nav { position: absolute; right: 4%; top: 72px; background: #fff; border: 1px solid var(--line); border-radius: 12px; width: min(260px, 88vw); flex-direction: column; align-items: flex-start; padding: 1rem; display: none; }
  nav.show { display: flex; }
}
