/* ===== RESET ===== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #f7f8fa;
}

/* ===== LAYOUT ===== */

.container {
  width: 90%;
  max-width: 920px;
  margin: 0 auto;
}

/* ===== HEADER ===== */

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e6e8eb;
}

.brand {
  display: inline-block;
  font-weight: 600;
  font-size: 18px;
  color: #0b3a5b;
  text-decoration: none;
  padding: 18px 0;
}

/* ===== TYPOGRAPHY ===== */

h1 {
  font-size: 32px;
  line-height: 1.2;
  margin-top: 40px;
  margin-bottom: 16px;
}

h2 {
  font-size: 22px;
  margin-top: 36px;
  margin-bottom: 12px;
}

h3 {
  font-size: 18px;
  margin-top: 28px;
}

p {
  margin: 16px 0;
}

.lead {
  font-size: 18px;
  color: #3a3f45;
}

/* ===== ARTICLE ===== */

.article {
  padding-bottom: 60px;
}

/* ===== BOXES ===== */

.info-box {
  background: #eef6ff;
  border-left: 4px solid #2f7dd1;
  padding: 18px;
  margin: 28px 0;
  border-radius: 6px;
}

.cta-box {
  background: #ffffff;
  border: 1px solid #e6e8eb;
  padding: 28px;
  border-radius: 10px;
  margin-top: 40px;
}

/* ===== BUTTON ===== */

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.btn.primary {
  background: #0b3a5b;
  color: white;
}

.btn.primary:hover {
  opacity: 0.92;
}

/* ===== LINKS ===== */

a {
  color: #2f7dd1;
}

a:hover {
  text-decoration: underline;
}

/* ===== FOOTER ===== */

.site-footer {
  border-top: 1px solid #e6e8eb;
  background: #ffffff;
  margin-top: 60px;
}

.site-footer .micro {
  font-size: 13px;
  color: #6b7280;
  padding: 20px 0;
}

/* ===== LEGAL ===== */

.legal h1 {
  margin-top: 50px;
}

.legal p {
  max-width: 780px;
}

/* ===== MOBILE ===== */

@media (max-width: 640px) {
  h1 { font-size: 26px; }
  h2 { font-size: 20px; }
  .lead { font-size: 17px; }
}
/* =========================
   CITY GRID — HOMEPAGE
========================= */

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

/* =========================
   CITY CARD
========================= */

.city {
  display: block;
  text-decoration: none;

  padding: 22px 20px;

  background: #ffffff;
  border: 1px solid #e7ecf2;
  border-radius: 14px;

  transition: all .18s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}

.city:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  border-color: #dbe3ee;
}

/* =========================
   CITY TEXT
========================= */

.city-name {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0b1b2b;
  margin-bottom: 6px;
}

.city-meta {
  display: block;
  font-size: .92rem;
  color: #5b6b7c;
}

/* =========================
   MOBILE POLISH
========================= */

@media (max-width: 640px) {
  .city {
    padding: 18px 16px;
  }
}

/* =========================
   SECTIONS
========================= */

.section {
  padding: 70px 0;
}

.section.soft {
  background: #f2f5f9;
}

/* =========================
   HERO
========================= */

.hero {
  padding: 70px 0 50px;
}

.hero-inner {
  max-width: 720px;
}

.trust-strip {
  margin-top: 20px;
  background: #eef4f9;
  border: 1px solid #dde6ef;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  color: #4b5a6a;
}

/* =========================
   CTA ROW
========================= */

.cta-row {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* =========================
   CARD GRID
========================= */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.card {
  background: white;
  border: 1px solid #e6e8eb;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0,0,0,.04);
}

.card-link a {
  font-weight: 600;
  text-decoration: none;
}

/* =========================
   CHECKLIST
========================= */

.checklist {
  margin-top: 24px;
  padding-left: 20px;
}

.checklist li {
  margin-bottom: 10px;
}

/* =========================
   STEPS
========================= */

.steps {
  margin-top: 30px;
  display: grid;
  gap: 24px;
}

.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.step-num {
  background: #0b3a5b;
  color: white;
  font-weight: 700;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.step-body h3 {
  margin-top: 0;
}

/* =========================
   NOTE BLOCK
========================= */

.note {
  background: #f3f7fb;
  border-left: 4px solid #0b3a5b;
  padding: 18px;
  margin-top: 26px;
  border-radius: 8px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 640px) {
  .section {
    padding: 50px 0;
  }

  .hero {
    padding: 50px 0 40px;
  }
}
/* =========================
DANGEROUS NAV
========================= */

.nav-container {
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.dangerous-nav a {
  margin-left:22px;
  text-decoration:none;
  font-weight:600;
  color:#243447;
}

.nav-primary {
  color:#0b3a5b;
}

/* =========================
TIGHT HERO
========================= */

.hero-tight {
  padding: 60px 0 48px;
}

.btn-xl {
  padding:16px 28px;
  font-size:1.05rem;
}

.hero-micro {
  margin-top:14px;
}

/* =========================
FLOW STRIP
========================= */

.flow-strip {
  background:#0b3a5b;
  color:white;
  font-size:.95rem;
}

.flow-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  padding:14px 0;
  text-align:center;
}

/* =========================
STEP CARDS
========================= */

.steps-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:22px;
  margin-top:26px;
}

.step-card {
  background:white;
  border:1px solid #e7ecf2;
  border-radius:14px;
  padding:24px;
  box-shadow:0 4px 14px rgba(0,0,0,0.04);
}

.step-card a {
  font-weight:600;
}

.step-num {
  width:36px;
  height:36px;
  border-radius:50%;
  background:#0b3a5b;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  margin-bottom:14px;
}

