/* AVident marketing site — shared styles. Self-contained (no external assets). */
:root {
  --navy: #0b2545;
  --navy-2: #13315c;
  --sky: #2f6fed;
  --sky-light: #eaf1fe;
  --ink: #1f2937;
  --muted: #5b6472;
  --line: #e5e9f0;
  --bg: #ffffff;
  --radius: 12px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
.container { max-width: 980px; margin: 0 auto; padding: 0 24px; }

header.site {
  background: var(--navy);
  color: #fff;
}
header.site .bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.brand { display: flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; }
.brand svg { display: block; }
.brand .name { font-size: 20px; font-weight: 700; letter-spacing: 0.3px; }
nav.top a {
  color: #cfe0ff; text-decoration: none; margin-left: 22px; font-size: 15px;
}
nav.top a:hover { color: #fff; }

.hero { padding: 72px 0 80px; background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; }
.hero h1 { font-size: 40px; line-height: 1.2; max-width: 640px; }
.hero p.lead { margin-top: 18px; font-size: 19px; color: #d7e3f8; max-width: 620px; }
.hero .cta { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 12px 22px; border-radius: 8px; font-weight: 600;
  text-decoration: none; font-size: 15px;
}
.btn.primary { background: var(--sky); color: #fff; }
.btn.primary:hover { background: #2559c7; }
.btn.ghost { border: 1px solid #4a6ea9; color: #dbe7fb; }
.btn.ghost:hover { border-color: #fff; color: #fff; }

section { padding: 56px 0; }
section.alt { background: #f7f9fc; }
h2 { font-size: 28px; color: var(--navy); margin-bottom: 8px; }
p.sub { color: var(--muted); max-width: 640px; margin-bottom: 28px; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px;
}
.card h3 { font-size: 17px; color: var(--navy); margin-bottom: 6px; }
.card p { font-size: 15px; color: var(--muted); }
.card .price { margin-top: 10px; font-size: 14px; color: var(--ink); font-weight: 600; }

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.step { position: relative; padding: 22px 22px 22px 62px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 20px; top: 22px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--sky-light); color: var(--sky);
  font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { font-size: 16px; color: var(--navy); margin-bottom: 4px; }
.step p { font-size: 14px; color: var(--muted); }

.pricing-box {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; max-width: 640px;
}
.pricing-box ul { margin: 12px 0 0 20px; color: var(--muted); font-size: 15px; }
.pricing-box li { margin-bottom: 8px; }
.pricing-box li strong { color: var(--ink); }

.contact-box { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }

footer.site { background: var(--navy); color: #b9c9e4; padding: 36px 0; font-size: 14px; }
footer.site .cols { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
footer.site a { color: #dbe7fb; text-decoration: none; margin-right: 18px; }
footer.site a:hover { text-decoration: underline; }
footer.site .legal { margin-top: 18px; color: #8fa3c4; }

/* Legal / policy pages */
main.doc { padding: 48px 0 72px; }
main.doc h1 { font-size: 32px; color: var(--navy); margin-bottom: 6px; }
main.doc .updated { color: var(--muted); font-size: 14px; margin-bottom: 30px; }
main.doc h2 { font-size: 21px; margin: 32px 0 10px; }
main.doc h3 { font-size: 17px; color: var(--navy); margin: 22px 0 8px; }
main.doc p, main.doc li { font-size: 15.5px; color: var(--ink); }
main.doc ul, main.doc ol { margin: 10px 0 10px 24px; }
main.doc li { margin-bottom: 6px; }
main.doc .doc-body { max-width: 760px; }

@media (max-width: 640px) {
  .hero h1 { font-size: 30px; }
  nav.top a { margin-left: 14px; font-size: 14px; }
}
