:root {
  --primary: #1c4ed8;
  --primary-dark: #143a9e;
  --accent: #f97316;
  --ink: #111827;
  --muted: #6b7280;
  --bg: #ffffff;
  --bg-soft: #f4f6fb;
  --border: #e5e7eb;
  --radius: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* Top bar */
.topbar {
  background: var(--ink);
  color: #d1d5db;
  font-size: 13px;
  padding: 8px 0;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar a { color: #fff; font-weight: 600; }

/* Header / nav */
header.site-header {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(6px);
  z-index: 50;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
  flex-wrap: wrap;
}
.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.logo span { color: var(--primary); }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  font-weight: 600;
  font-size: 15px;
}
.nav-links a:hover { color: var(--primary); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: 0.2s;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: #ea670c; }
.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.phone-link { font-weight: 800; color: var(--primary); font-size: 15px; }

/* Hero */
.hero {
  background: linear-gradient(135deg, #eef3ff 0%, #ffffff 60%);
  padding: 72px 0 56px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e7edff;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.hero h1 em { color: var(--primary); font-style: normal; }
.hero p.lead { font-size: 18px; color: var(--muted); max-width: 540px; margin-bottom: 28px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  max-width: 480px;
}
.hero-features li::before { content: "✓ "; color: var(--accent); font-weight: 800; }
.hero-visual {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 20px 50px -20px rgba(28,78,216,0.25);
}
.hero-visual h3 { font-size: 18px; margin-bottom: 6px; }
.hero-visual p.small { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.visual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.visual-grid a {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  font-weight: 700;
  font-size: 14px;
  transition: 0.2s;
}
.visual-grid a:hover { border-color: var(--primary); background: #f5f8ff; }
.visual-foot { margin-top: 18px; font-size: 13px; color: var(--muted); text-align: center; }

/* Stats */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}
.stats .wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
  padding: 32px 24px;
  gap: 16px;
}
.stat-num { font-size: 28px; font-weight: 800; color: var(--primary); }
.stat-label { font-size: 13px; color: var(--muted); font-weight: 600; }

/* Section generic */
section { padding: 72px 0; }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head .eyebrow { margin: 0 auto 14px; }
.section-head h2 { font-size: 36px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 12px; }
.section-head h2 em { color: var(--primary); font-style: normal; }
.section-head p { color: var(--muted); font-size: 16px; }

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: 0.2s;
}
.card:hover { box-shadow: 0 16px 40px -24px rgba(17,24,39,0.25); transform: translateY(-2px); }
.card .icon { font-size: 28px; margin-bottom: 14px; }
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 14.5px; margin-bottom: 14px; }
.card ul { list-style: none; font-size: 14px; margin-bottom: 16px; }
.card ul li { padding: 4px 0; color: var(--ink); }
.card ul li::before { content: "• "; color: var(--accent); font-weight: 800; }
.card .link { font-weight: 700; color: var(--primary); }
.tag-popular {
  position: absolute; top: -12px; right: 20px;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: 0.5px;
  padding: 4px 10px; border-radius: 999px;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step { text-align: center; padding: 0 12px; }
.step .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary); color: #fff; font-weight: 800; font-size: 18px;
  margin-bottom: 16px;
}
.step h4 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* Coverage chips */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.coverage-chip {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--border); border-radius: 10px;
  padding: 16px; font-weight: 700; font-size: 14.5px;
}
.coverage-chip .icon { font-size: 22px; }

/* Reviews */
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.review {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; background: var(--bg-soft);
}
.review .stars { color: var(--accent); margin-bottom: 10px; letter-spacing: 2px; }
.review p.quote { font-size: 15px; margin-bottom: 14px; }
.review .who { font-weight: 800; font-size: 14px; }
.review .where { color: var(--muted); font-size: 13px; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item summary {
  font-weight: 700; font-size: 16px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; color: var(--primary); font-weight: 400; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin-top: 12px; color: var(--muted); font-size: 15px; }

/* Two-column content (about/why) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split h2 { font-size: 32px; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.5px; }
.split p { color: var(--muted); margin-bottom: 14px; font-size: 16px; }
.mission-box {
  background: var(--bg-soft); border-radius: var(--radius);
  padding: 24px; margin-top: 18px;
}
.mission-box h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--primary); margin-bottom: 8px; }
.mission-box p { font-style: italic; color: var(--ink); margin: 0; }
.visual-block {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius);
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 22px; text-align: center; padding: 32px;
}

/* Values grid */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.value-card h3 { font-size: 18px; margin-bottom: 8px; }
.value-card p { color: var(--muted); font-size: 14.5px; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff; text-align: center; border-radius: var(--radius);
  padding: 56px 32px;
}
.cta-band h2 { font-size: 32px; margin-bottom: 12px; font-weight: 800; }
.cta-band p { opacity: 0.9; margin-bottom: 26px; }
.cta-band .btn-primary { background: #fff; color: var(--primary); }
.cta-band .btn-primary:hover { background: #f3f4f6; }
.cta-foot { margin-top: 16px; font-size: 13px; opacity: 0.85; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}
.contact-info-card, .contact-form-card {
  border: 1px solid var(--border); border-radius: var(--radius); padding: 28px;
}
.contact-info-card h3 { margin-bottom: 18px; font-size: 20px; }
.info-row { margin-bottom: 18px; }
.info-row .label { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 700; margin-bottom: 4px; }
.info-row .value { font-size: 16px; font-weight: 700; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
label { font-size: 13px; font-weight: 700; margin-bottom: 6px; display: block; }
input, select, textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border);
  border-radius: 8px; font-size: 14px; font-family: inherit; background: #fff;
}
textarea { min-height: 100px; resize: vertical; }
.form-note { font-size: 12px; color: var(--muted); margin-top: 12px; }

/* Notice box */
.notice {
  background: #fff7ed; border: 1px solid #fed7aa; border-radius: var(--radius);
  padding: 20px 24px; font-size: 14px; color: #92400e; margin-top: 32px;
}
.notice strong { display: block; margin-bottom: 6px; }

/* Footer */
footer { background: #0f172a; color: #cbd5e1; padding: 56px 0 24px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid .logo { color: #fff; margin-bottom: 12px; }
.footer-grid p { font-size: 14px; color: #94a3b8; }
footer h4 { color: #fff; font-size: 14px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
footer ul { list-style: none; font-size: 14px; }
footer ul li { margin-bottom: 10px; }
footer ul li a:hover { color: #fff; }
.legal {
  font-size: 12px; color: #64748b; padding-top: 24px; line-height: 1.7;
}
.legal .copyright { margin-bottom: 12px; color: #94a3b8; font-size: 13px; }

/* Call popup modal */
.call-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15,23,42,0.55);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  z-index: 200;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.call-modal-overlay.active { opacity: 1; pointer-events: auto; }
.call-modal {
  background: #fff;
  border-radius: 32px;
  width: min(380px, 88vw);
  padding: 44px 32px;
  text-align: center;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.35);
  position: relative;
  transform: scale(0.92);
  transition: transform 0.25s ease;
}
.call-modal-overlay.active .call-modal { transform: scale(1); }
.call-modal-close {
  position: absolute; top: 14px; right: 18px;
  background: none; border: none; font-size: 22px;
  color: var(--muted); cursor: pointer; line-height: 1;
}
.call-modal-close:hover { color: var(--ink); }
.call-modal .icon-circle {
  width: 72px; height: 72px; border-radius: 18px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; color: #fff;
  margin: 0 auto 22px;
}
.call-modal h3 {
  font-size: 26px; font-weight: 800; line-height: 1.25; margin-bottom: 22px;
}
.call-modal h3 em { color: var(--primary); font-style: normal; display: block; }
.call-modal .btn-call {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--ink); color: #fff;
  border-radius: 999px; padding: 16px 24px;
  font-weight: 800; font-size: 17px;
  margin-bottom: 16px; transition: 0.2s;
}
.call-modal .btn-call:hover { background: #1f2937; }
.call-modal .phone-num {
  font-size: 18px; font-weight: 700; letter-spacing: 2px; color: var(--muted);
}

/* Sticky call bar */
.call-sticky {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--ink); color: #fff;
  display: none; align-items: center; justify-content: space-between;
  padding: 12px 20px; z-index: 60;
}
.call-sticky a { color: #fff; font-weight: 800; }

@media (max-width: 980px) {
  .hero-inner, .split, .contact-grid { grid-template-columns: 1fr; }
  .cards-grid, .steps, .coverage-grid, .review-grid, .values-grid, .form-grid { grid-template-columns: 1fr 1fr; }
  .stats .wrap { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 34px; }
  .cards-grid, .steps, .coverage-grid, .review-grid, .values-grid, .form-grid, .footer-grid, .hero-features { grid-template-columns: 1fr; }
  .stats .wrap { grid-template-columns: repeat(2,1fr); }
  .call-sticky { display: flex; }
  body { padding-bottom: 56px; }
}

/* Logo image */
.logo img { display: inline-block; vertical-align: middle; margin-right: 6px; }
