:root {
  --navy: #1B3A6B;
  --navy-dark: #142C52;
  --navy-light: #24488A;
  --red: #E63946;
  --green: #2DC653;
  --yellow: #FFC93C;
  --bg: #F2F5FA;
  --ink: #1A1A2E;
  --muted: #6B7A99;
  --card: #FFFFFF;
  --line: #E5EAF3;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- Header ---------- */
.site-header {
  background: var(--navy);
  padding: 18px 0;
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  color: #fff; text-decoration: none; font-weight: 800; font-size: 19px; letter-spacing: -0.3px;
}
.brand img { width: 34px; height: 34px; border-radius: 8px; }
.header-cta {
  background: #fff; color: var(--navy); text-decoration: none; font-weight: 700;
  font-size: 14px; padding: 9px 18px; border-radius: 10px; white-space: nowrap;
}
.header-cta:hover { background: #E8EEF8; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 64px 0 72px;
  overflow: hidden;
}
.hero .wrap {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center;
}
.hero-badge {
  display: inline-block; background: rgba(255,255,255,0.12); color: #A8C4E8;
  font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 20px; margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 48px); font-weight: 800; letter-spacing: -1px; line-height: 1.15;
  margin-bottom: 18px;
}
.hero h1 .accent { color: var(--yellow); }
.hero p.sub { font-size: 18px; color: #C8D8F0; margin-bottom: 28px; max-width: 46ch; }
.store-buttons { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.store-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #000; color: #fff; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.35); border-radius: 12px; padding: 10px 20px;
}
.store-btn:hover { background: #111; }
.store-btn .icon { font-size: 26px; line-height: 1; }
.store-btn .txt { text-align: left; line-height: 1.2; }
.store-btn .txt small { display: block; font-size: 11px; color: #bbb; }
.store-btn .txt strong { font-size: 16px; }
.store-btn.soon { opacity: 0.55; pointer-events: none; }
.hero-phones {
  display: flex; align-items: center; justify-content: center; gap: 4%;
}
.hero-phones img {
  width: 30%; height: auto; border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.45), 0 0 0 5px rgba(255,255,255,0.08);
}
.hero-phones img.lead-shot {
  width: 34%; transform: translateY(-12px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.5), 0 0 0 5px rgba(255,255,255,0.1);
}

/* ---------- Stats strip ---------- */
.stats { background: var(--card); border-bottom: 1px solid var(--line); }
.stats .wrap {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 26px 24px; text-align: center;
}
.stat b { display: block; font-size: 30px; font-weight: 800; color: var(--navy); letter-spacing: -0.5px; }
.stat.red b { color: var(--red); }
.stat span { font-size: 13px; color: var(--muted); }

/* ---------- Sections ---------- */
section.block { padding: 64px 0; }
section.block.alt { background: var(--card); }
.block h2 { font-size: clamp(24px, 3.4vw, 34px); font-weight: 800; letter-spacing: -0.6px; margin-bottom: 10px; }
.block p.lead { color: var(--muted); font-size: 17px; max-width: 62ch; margin-bottom: 36px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 26px;
}
section.block.alt .step { background: var(--bg); }
.step .num {
  width: 34px; height: 34px; border-radius: 50%; background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px;
  margin-bottom: 14px;
}
.step h3 { font-size: 17px; margin-bottom: 6px; }
.step p { font-size: 14.5px; color: var(--muted); }

.pcn-types { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.pill {
  background: #E8EEF8; color: var(--navy); font-weight: 600; font-size: 13.5px;
  padding: 8px 16px; border-radius: 20px;
}

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); color: #fff; text-align: center; padding: 56px 0; }
.cta-band h2 { font-size: clamp(24px, 3.4vw, 34px); font-weight: 800; margin-bottom: 10px; }
.cta-band p { color: #A8C4E8; margin-bottom: 26px; }
.cta-band .store-buttons { justify-content: center; }

/* ---------- Council pages ---------- */
.article { max-width: 760px; margin: 0 auto; padding: 48px 24px 72px; }
.article h1 { font-size: clamp(26px, 4vw, 38px); font-weight: 800; letter-spacing: -0.7px; line-height: 1.2; margin-bottom: 14px; }
.article .byline { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
.article h2 { font-size: 22px; font-weight: 700; margin: 34px 0 12px; }
.article p, .article li { font-size: 16px; color: #3A4560; }
.article ul, .article ol { padding-left: 24px; margin: 12px 0; }
.article li { margin-bottom: 8px; }
.callout {
  background: #EBF2FF; border: 1px solid #C5DEFF; border-radius: 14px; padding: 18px 20px;
  margin: 24px 0; font-size: 15px;
}
.callout.warn { background: #FFF4F4; border-color: #FFD5D8; }
.callout b { color: var(--navy); }
.app-cta {
  background: var(--navy); border-radius: 18px; color: #fff; padding: 28px;
  margin: 36px 0; text-align: center;
}
.app-cta h3 { font-size: 21px; margin-bottom: 8px; }
.app-cta p { color: #A8C4E8 !important; font-size: 15px !important; margin-bottom: 18px; }
.faq-item { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq-item h3 { font-size: 16.5px; margin-bottom: 6px; }
.faq-item p { font-size: 15px; }

/* ---------- Council index ---------- */
.region-group { margin-bottom: 40px; }
.region-group h2 { font-size: 20px; margin-bottom: 14px; }
.council-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 8px; }
.council-grid a {
  background: var(--card); border: 1px solid var(--line); border-radius: 10px;
  padding: 10px 14px; font-size: 14px; color: var(--navy); text-decoration: none; font-weight: 600;
}
.council-grid a:hover { border-color: var(--navy); }

/* ---------- Breadcrumb ---------- */
.crumb { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.crumb a { color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark); color: #A8C4E8; padding: 40px 0; font-size: 14px;
}
.site-footer .wrap { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.site-footer a { color: #C8D8F0; text-decoration: none; margin-right: 18px; }
.site-footer a:hover { text-decoration: underline; }
.site-footer .fine { font-size: 12px; color: #7A96C4; max-width: 60ch; margin-top: 8px; }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .site-header { padding: 12px 0; }
  .brand { font-size: 16px; white-space: nowrap; }
  .brand img { width: 28px; height: 28px; }
  .header-cta { font-size: 13px; padding: 8px 14px; }
  .hero { padding: 40px 0 48px; }
  .hero .wrap { grid-template-columns: 1fr; text-align: center; gap: 36px; }
  .hero-badge { font-size: 11.5px; }
  .hero p.sub { margin-left: auto; margin-right: auto; font-size: 16px; }
  .store-buttons { justify-content: center; }
  .hero-phones { max-width: 440px; margin: 0 auto; }
  .steps { grid-template-columns: 1fr; }
  .stats .wrap { grid-template-columns: repeat(2, 1fr); gap: 20px 8px; }
  .stat b { font-size: 26px; }
}
