:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-alt: #eef4ff;
  --text: #0f172a;
  --muted: #475569;
  --line: #dbe4f0;
  --brand: #2563eb;
  --brand-dark: #1d4ed8;
  --accent: #0f172a;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; }
.container { width: min(1100px, calc(100% - 2rem)); margin: 0 auto; }
.site-header, .site-footer { background: #0f172a; color: #fff; }
.nav, .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}
.brand-name { font-size: 1.2rem; font-weight: 800; }
.brand-sub { font-size: 0.95rem; color: #cbd5e1; }
.nav-actions, .hero-actions, .contact-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero { padding: 4rem 0; }
.hero-grid, .cards.three-up, .cards.two-up { display: grid; gap: 1.25rem; }
.hero-grid { grid-template-columns: 1.5fr 1fr; align-items: start; }
.cards.three-up { grid-template-columns: repeat(3, 1fr); }
.cards.two-up { grid-template-columns: repeat(2, 1fr); }
.cards.one-up { display: grid; }
.section { padding: 4rem 0; }
.section-alt { background: var(--surface-alt); }
.card, .hero-card, .contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}
.eyebrow { text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.78rem; color: var(--brand-dark); font-weight: 700; }
h1, h2, h3 { line-height: 1.15; margin-top: 0; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 0.75rem; }
.lead { font-size: 1.1rem; color: var(--muted); max-width: 56rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  background: var(--brand);
  color: #fff;
  border: 1px solid var(--brand);
}
.button:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
.button-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.ticks, .hero-card ul, .card ul { padding-left: 1.2rem; }
.price { font-size: 2rem; font-weight: 800; margin: 0.5rem 0; }
.badge {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 0.78rem;
  font-weight: 700;
}
.contact-box { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 1.25rem; }
.lookup-card { max-width: 720px; }
.lookup-form { display: grid; gap: 0.85rem; }
.lookup-form input {
  width: 100%;
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  font-size: 1rem;
  background: #fff;
}
.form-help, .lookup-result { color: var(--muted); }
.lookup-result {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid var(--line);
}
.site-footer a { color: #bfdbfe; }
@media (max-width: 800px) {
  .hero-grid, .cards.three-up, .cards.two-up, .contact-box, .nav, .footer-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
}
