:root {
  --primary: #1a2d5c;
  --primary-dark: #0f1d44;
  --primary-light: #e6efff;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --accent-soft: #dbeafe;
  --forest: #2c5e4a;
  --bg: #f5f8ff;
  --bg-alt: #ffffff;
  --text: #0f1d3a;
  --muted: #5a6478;
  --border: #dde4ee;
  --shadow-sm: 0 1px 2px rgba(15, 29, 58, 0.05), 0 1px 1px rgba(15, 29, 58, 0.03);
  --shadow: 0 4px 14px rgba(15, 29, 58, 0.07);
  --shadow-lg: 0 12px 32px rgba(15, 29, 58, 0.12);
  --radius: 12px;
  --radius-lg: 18px;
  --max: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { line-height: 1.2; letter-spacing: -0.02em; margin: 0 0 0.5em; color: var(--primary); }
p { margin: 0 0 1em; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--primary); color: #fff; padding: 0.6rem 1rem; border-radius: 0 0 8px 0;
  z-index: 100;
}
.skip-link:focus { left: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(15, 29, 58, 0.02);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.35rem 1.5rem;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-logo {
  height: 72px; width: auto; max-width: 360px;
  object-fit: contain;
  transition: transform 0.2s ease;
}
.brand:hover .brand-logo { transform: scale(1.02); }
.nav { display: flex; gap: 1.5rem; }
.nav a { color: var(--primary); font-weight: 500; opacity: 0.78; }
.nav a:hover { opacity: 1; text-decoration: none; color: var(--accent-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.25rem; border-radius: 10px; font-weight: 600;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  font-size: 0.95rem; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--primary-dark); box-shadow: var(--shadow-lg); }
.btn-ghost { background: transparent; color: var(--primary); border-color: var(--border); }
.btn-ghost:hover { background: var(--primary-light); border-color: var(--accent); color: var(--accent-dark); }
.btn-call { background: var(--accent); color: #ffffff; }
.btn-call:hover { background: var(--accent-dark); color: #ffffff; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(37,99,235,0.18), transparent 60%),
    radial-gradient(900px 400px at -10% 30%, rgba(26,45,92,0.10), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, #ffffff 100%);
  padding: 4rem 0 5rem;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 3rem; align-items: center;
}
.eyebrow {
  display: inline-block; font-weight: 700; font-size: 0.78rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent-dark);
  background: var(--accent-soft); padding: 0.3rem 0.7rem; border-radius: 999px; margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.2vw, 3.6rem); font-weight: 800; margin-bottom: 1rem;
}
.accent { color: var(--accent); }
.lede {
  font-size: 1.15rem; color: var(--muted); max-width: 540px; margin-bottom: 1.75rem;
}
.hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; padding: 0; margin: 0; list-style: none;
  color: var(--muted); font-size: 0.95rem;
}
.trust-strip li::before { content: "✓"; color: var(--accent); font-weight: 700; margin-right: 0.4rem; }
.trust-strip strong { color: var(--text); font-weight: 600; }

.hero-art { display: flex; justify-content: center; }
.hero-art img {
  width: 100%; max-width: 520px; border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(15, 29, 58, 0.15);
}

/* ---------- Sections ---------- */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; }
.section-sub { color: var(--muted); font-size: 1.05rem; }

/* ---------- Cards ---------- */
.cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem;
}
.card {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem; box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--accent);
}
.card-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--accent-soft); color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.card p { color: var(--muted); margin: 0; }

/* ---------- Steps ---------- */
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem;
}
.step {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem; position: relative;
}
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent); color: #fff; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem;
  box-shadow: 0 4px 12px rgba(37,99,235,0.35);
}
.step h3 { font-size: 1.1rem; margin-bottom: 0.35rem; }
.step p { color: var(--muted); margin: 0; }

/* ---------- Two-column section ---------- */
.two-col {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: start;
}
.pill-list {
  display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 0; margin: 1rem 0 0; list-style: none;
}
.pill-list li {
  background: var(--accent-soft); color: var(--accent-dark);
  padding: 0.4rem 0.85rem; border-radius: 999px;
  font-size: 0.9rem; font-weight: 500;
}
.hours-card {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem; box-shadow: var(--shadow);
}
.hours-card h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.hours { margin: 0 0 1.25rem; }
.hours div { display: flex; justify-content: space-between; padding: 0.45rem 0; border-bottom: 1px dashed var(--border); }
.hours div:last-child { border-bottom: 0; }
.hours dt { font-weight: 600; color: var(--text); }
.hours dd { margin: 0; color: var(--muted); }
.muted { color: var(--muted); }
.small { font-size: 0.85rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 0.6rem; }
.faq-list details {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1rem 1.25rem; transition: background 0.15s ease;
}
.faq-list details[open] { background: #fff; box-shadow: var(--shadow-sm); border-color: var(--accent); }
.faq-list summary {
  font-weight: 600; cursor: pointer; list-style: none; position: relative; padding-right: 1.5rem;
  color: var(--primary);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; color: var(--accent); font-weight: 400; transition: transform 0.15s ease;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin: 0.75rem 0 0; color: var(--muted); }

/* ---------- Reviews ---------- */
.reviews { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: #fff; }
.reviews .eyebrow { background: rgba(255,255,255,0.18); color: #ffffff; }
.reviews h2 { color: #fff; }
.reviews p { color: rgba(255,255,255,0.9); margin: 0; }
.reviews-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.reviews .btn-primary { background: #ffffff; color: var(--primary-dark); }
.reviews .btn-primary:hover { background: #f0f5ff; color: var(--primary-dark); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem;
  max-width: 920px; margin: 0 auto;
}
.contact-card {
  display: flex; align-items: center; gap: 1rem;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.25rem 1.5rem; color: var(--text); text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}
a.contact-card:hover {
  text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow);
  border-color: var(--accent);
}
.contact-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--accent-soft); color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-label { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.contact-value { font-weight: 600; font-size: 1.05rem; color: var(--primary); }

/* ---------- Footer ---------- */
.site-footer { background: #0a1832; color: #d1d8e6; padding: 2.5rem 0; }
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; align-items: center;
}
.footer-brand { display: flex; align-items: center; gap: 0.85rem; }
.footer-mark { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; }
.footer-brand .brand-name { color: #fff; font-weight: 700; font-size: 1.05rem; }
.site-footer a { color: #ffffff; }
.site-footer a:hover { color: var(--accent); text-decoration: none; }
.footer-meta { text-align: right; }
.site-footer .muted { color: #8b96a8; }

/* ---------- Floating call (mobile) ---------- */
.floating-call {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 60;
  display: none; align-items: center; gap: 0.5rem;
  background: var(--accent); color: #ffffff; font-weight: 700;
  padding: 0.85rem 1.1rem; border-radius: 999px;
  box-shadow: 0 8px 22px rgba(26,45,92,0.25);
  text-decoration: none;
}
.floating-call:hover { text-decoration: none; background: var(--accent-dark); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-art { order: -1; max-width: 420px; margin: 0 auto; }
  .two-col { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: left; }
  .footer-meta { text-align: left; }
}
@media (max-width: 900px) {
  .brand-logo { height: 60px; max-width: 280px; }
}
@media (max-width: 700px) {
  .nav { display: none; }
  .header-inner { padding: 0.3rem 1rem; }
  .brand-logo { height: 52px; max-width: 220px; }
  .section { padding: 3.5rem 0; }
  .hero { padding: 2.5rem 0 3.5rem; }
  .floating-call { display: inline-flex; }
  .btn-call span { display: none; }
  .btn-call { padding: 0.6rem 0.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
