/* =========================================
   Monte-Escalier Local — styles.css
   Design : moderne, rassurant, seniors
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Lora:wght@400;600&display=swap');

/* ---- Variables ---- */
:root {
  --primary: #1A6FAF;
  --primary-dark: #145a8f;
  --primary-light: #E8F4FD;
  --secondary: #2EAF7D;
  --accent: #F4A428;
  --text: #1C2B3A;
  --text-muted: #5A6878;
  --text-light: #8A97A5;
  --bg: #FFFFFF;
  --bg-alt: #F7FAFD;
  --bg-dark: #1C2B3A;
  --border: #DDE6EE;
  --shadow: 0 4px 20px rgba(26,111,175,0.08);
  --shadow-md: 0 8px 32px rgba(26,111,175,0.14);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-title: 'Lora', Georgia, serif;
  --max-w: 1200px;
  --sp: 8px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 3px solid rgba(244,164,40,0.9);
  outline-offset: 3px;
}
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-title); line-height: 1.25; color: var(--text); }
h1 { font-size: 2.45rem; font-weight: 600; }
h2 { font-size: 1.95rem; font-weight: 600; }
h3 { font-size: 1.32rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { margin-bottom: calc(var(--sp) * 2); }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; color: var(--primary-dark); }

/* ---- Layout ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 calc(var(--sp) * 2.5); }
.section { padding: calc(var(--sp) * 8) 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); color: white; }
.section--dark h2, .section--dark h3 { color: white; }

/* ---- Header ---- */
.site-header {
  background: white;
  border-bottom: 2px solid var(--primary-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(26,111,175,0.07);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: calc(var(--sp) * 2);
}
.logo {
  display: flex;
  align-items: center;
  gap: calc(var(--sp) * 1.5);
  text-decoration: none;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 24px; height: 24px; stroke: white; fill: none; stroke-width: 2; }
.logo-text { font-family: var(--font-title); font-size: 1.25rem; font-weight: 600; color: var(--text); line-height: 1.2; }
.logo-text span { display: block; font-size: 0.65rem; font-family: var(--font-body); font-weight: 400; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

.main-nav { display: flex; align-items: center; gap: calc(var(--sp) * 3); }
.main-nav a { font-size: 0.92rem; font-weight: 500; color: var(--text); padding: var(--sp) 0; border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s; white-space: nowrap; }
.main-nav a:hover, .main-nav a.active { color: var(--primary); border-color: var(--primary); text-decoration: none; }

.header-cta { flex-shrink: 0; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp);
  padding: calc(var(--sp) * 1.5) calc(var(--sp) * 3);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
  min-height: 44px;
  transition: all 0.2s;
  text-decoration: none;
  text-align: center;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--primary); color: white; box-shadow: 0 4px 14px rgba(26,111,175,0.3); }
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 6px 20px rgba(26,111,175,0.4); color: white; }
.btn-secondary { background: var(--secondary); color: white; box-shadow: 0 4px 14px rgba(46,175,125,0.3); }
.btn-secondary:hover { background: #24906a; color: white; }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-accent { background: var(--accent); color: white; box-shadow: 0 4px 14px rgba(244,164,40,0.3); }
.btn-accent:hover { background: #d48c1a; color: white; }
.btn-lg { padding: calc(var(--sp) * 2) calc(var(--sp) * 4); font-size: 1.05rem; border-radius: var(--radius); }
.btn-xl { padding: calc(var(--sp) * 2.5) calc(var(--sp) * 5); font-size: 1.15rem; border-radius: var(--radius); }
.btn-full { width: 100%; justify-content: center; }

/* ---- Hero ---- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #2196C4 100%);
  color: white;
  padding: calc(var(--sp) * 10) 0 calc(var(--sp) * 8);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/8805794/pexels-photo-8805794.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200') center/cover;
  opacity: 0.12;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--sp) * 6);
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: calc(var(--sp) * 0.75) calc(var(--sp) * 2);
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: calc(var(--sp) * 2.5);
  backdrop-filter: blur(8px);
}
.hero-badge::before { content: '✓'; font-weight: 700; color: #7CDD9E; }
.hero h1 { color: white; margin-bottom: calc(var(--sp) * 2); font-size: 2.75rem; max-width: 760px; }
.hero-subtitle { font-size: 1.1rem; opacity: 0.9; margin-bottom: calc(var(--sp) * 4); max-width: 520px; }
.hero-ctas { display: flex; gap: calc(var(--sp) * 2); flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: calc(var(--sp) * 1.5); margin-top: calc(var(--sp) * 4); padding-top: calc(var(--sp) * 4); border-top: 1px solid rgba(255,255,255,0.2); max-width: 620px; }
.hero-stats > div {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius);
  padding: calc(var(--sp) * 1.5);
  backdrop-filter: blur(8px);
}
.hero-stat-n { display: block; font-size: 1rem; font-weight: 700; }
.hero-stat-l { display: block; font-size: 0.82rem; opacity: 0.86; margin-top: 2px; }

/* Widget box */
.widget-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: calc(var(--sp) * 3.5);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(255,255,255,0.3);
  color: var(--text);
}
.widget-box-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: calc(var(--sp) * 0.5);
  color: var(--text);
}
.widget-box-sub { font-size: 0.85rem; color: var(--text-muted); margin-bottom: calc(var(--sp) * 2.5); }
.widget-box--hero { border: 1px solid rgba(255,255,255,0.55); }

/* ViteUnDevis widget wrapper */
.viteunedevis-wrapper {
  min-height: 120px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

/* ---- Trust bar ---- */
.trust-bar {
  background: var(--primary-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: calc(var(--sp) * 2.5) 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(var(--sp) * 5);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--primary-dark);
}
.trust-item svg { width: 18px; height: 18px; stroke: var(--secondary); fill: none; stroke-width: 2.5; }

/* ---- Local CRO helpers ---- */
.page-hero--local {
  background: linear-gradient(135deg, var(--primary-light) 0%, #ffffff 58%, #F3FFF9 100%);
}
.local-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  gap: calc(var(--sp) * 5);
  align-items: center;
}
.hero-ctas--local { margin-top: calc(var(--sp) * 3); }
.local-benefits {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: calc(var(--sp) * 3);
  box-shadow: var(--shadow);
}
.local-benefits-title {
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: calc(var(--sp) * 2);
}
.local-benefits ul { display: flex; flex-direction: column; gap: calc(var(--sp) * 1.5); }
.local-benefits li {
  display: flex;
  justify-content: space-between;
  gap: calc(var(--sp) * 2);
  padding-bottom: calc(var(--sp) * 1.5);
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.local-benefits li:last-child { border-bottom: 0; padding-bottom: 0; }
.local-benefits li span { color: var(--text-muted); }
.local-benefits li strong { text-align: right; }

.check-list {
  display: flex;
  flex-direction: column;
  gap: calc(var(--sp) * 1.5);
}
.check-list li {
  position: relative;
  padding-left: calc(var(--sp) * 3.5);
  color: var(--text-muted);
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: inset 0 0 0 5px white, 0 0 0 1px rgba(46,175,125,0.35);
}
.check-list li span {
  color: var(--text);
  font-weight: 700;
}

/* ---- Cards ---- */
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: calc(var(--sp) * 3);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: calc(var(--sp) * 2);
}
.card-icon svg { width: 26px; height: 26px; stroke: var(--primary); fill: none; stroke-width: 2; }
.card h3 { margin-bottom: var(--sp); }
.card p { font-size: 0.92rem; color: var(--text-muted); }

/* ---- Grid ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: calc(var(--sp) * 3); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: calc(var(--sp) * 3); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: calc(var(--sp) * 2.5); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: calc(var(--sp) * 2); }
.grid-auto-sm { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: calc(var(--sp) * 1.5); }

/* ---- Section titles ---- */
.section-header { text-align: center; margin-bottom: calc(var(--sp) * 5); }
.section-header h2 { margin-bottom: var(--sp); }
.section-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--sp);
}

/* ---- Prices ---- */
.price-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: calc(var(--sp) * 3);
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.price-card.featured { border-color: var(--primary); box-shadow: var(--shadow-md); }
.price-card h3 { font-size: 1rem; margin-bottom: var(--sp); }
.price-range { font-size: 1.6rem; font-weight: 700; color: var(--primary); font-family: var(--font-title); }
.price-unit { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }
.price-desc { font-size: 0.85rem; color: var(--text-muted); margin-top: var(--sp); }
.price-grid .price-card { display: flex; flex-direction: column; justify-content: space-between; min-height: 178px; }

/* ---- Aides ---- */
.aide-card {
  display: flex;
  gap: calc(var(--sp) * 2);
  padding: calc(var(--sp) * 2.5);
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 4px solid var(--secondary);
}
.aide-card-icon { font-size: 1.6rem; flex-shrink: 0; }
.aide-card h4 { margin-bottom: 4px; }
.aide-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ---- FAQ ---- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: calc(var(--sp) * 1.5);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: calc(var(--sp) * 2) calc(var(--sp) * 2.5);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  background: white;
  transition: background 0.15s;
  gap: calc(var(--sp) * 2);
}
.faq-question:hover { background: var(--bg-alt); }
.faq-icon { width: 22px; height: 22px; flex-shrink: 0; transition: transform 0.2s; stroke: var(--primary); fill: none; stroke-width: 2.5; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 calc(var(--sp) * 2.5) calc(var(--sp) * 2.5);
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  background: var(--bg-alt);
}
.faq-item.open .faq-answer { display: block; }

/* ---- City grid ---- */
.city-link {
  display: flex;
  align-items: center;
  gap: var(--sp);
  padding: calc(var(--sp) * 1.25) calc(var(--sp) * 1.5);
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.15s;
  text-decoration: none;
}
.city-link:hover { background: var(--primary); color: white; border-color: var(--primary); text-decoration: none; }
.city-link .zip { font-size: 0.75rem; color: var(--text-light); margin-left: auto; }
.city-link:hover .zip { color: rgba(255,255,255,0.7); }

/* ---- Steps ---- */
.steps { display: flex; gap: calc(var(--sp) * 2.5); }
.step { flex: 1; text-align: center; }
.step-num {
  width: 50px; height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto calc(var(--sp) * 2);
  font-family: var(--font-title);
}
.step h4 { margin-bottom: var(--sp); }
.step p { font-size: 0.88rem; color: var(--text-muted); }

/* ---- Breadcrumb ---- */
.breadcrumb {
  padding: calc(var(--sp) * 1.5) 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: var(--sp);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--text-light); }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: calc(var(--sp) * 6) calc(var(--sp) * 5);
  text-align: center;
}
.cta-banner h2 { color: white; margin-bottom: var(--sp); }
.cta-banner p { opacity: 0.9; margin-bottom: calc(var(--sp) * 3); max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-banner .btns { display: flex; gap: calc(var(--sp) * 2); justify-content: center; flex-wrap: wrap; }

/* ---- Region/Dept listing ---- */
.listing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: calc(var(--sp) * 2); }
.listing-card {
  display: block;
  padding: calc(var(--sp) * 2.5) calc(var(--sp) * 2.5);
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
}
.listing-card:hover { border-color: var(--primary); box-shadow: var(--shadow); text-decoration: none; transform: translateY(-2px); }
.listing-card-name { font-weight: 600; margin-bottom: 4px; }
.listing-card-meta { font-size: 0.8rem; color: var(--text-muted); }

/* ---- Footer ---- */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.8);
  padding: calc(var(--sp) * 7) 0 calc(var(--sp) * 3);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: calc(var(--sp) * 4); margin-bottom: calc(var(--sp) * 5); }
.footer-brand .logo-text { color: white; }
.footer-brand .logo-text span { color: rgba(255,255,255,0.5); }
.footer-desc { font-size: 0.88rem; margin-top: calc(var(--sp) * 2); opacity: 0.7; line-height: 1.7; }
.footer-col h4 { color: white; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: calc(var(--sp) * 2); font-family: var(--font-body); }
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp); }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: color 0.15s; }
.footer-col a:hover { color: white; text-decoration: none; }

/* ---- Footer cross-site resources ---- */
.footer-crosslinks {
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: calc(var(--sp) * 2.5) 0;
  margin-bottom: calc(var(--sp) * 3);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: calc(var(--sp) * 3);
}
.footer-crosslinks h4 {
  color: white;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: calc(var(--sp) * 0.75);
  font-family: var(--font-body);
}
.footer-crosslinks p {
  max-width: 430px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.62);
}
.footer-crosslinks ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: calc(var(--sp) * 1.25) calc(var(--sp) * 2);
}
.footer-crosslinks a {
  color: rgba(255,255,255,0.72);
  font-size: 0.86rem;
}
.footer-crosslinks a:hover {
  color: white;
  text-decoration: none;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: calc(var(--sp) * 3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: calc(var(--sp) * 2);
}
.footer-legal { font-size: 0.8rem; opacity: 0.5; }
.footer-links { display: flex; gap: calc(var(--sp) * 2.5); }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-links a:hover { color: white; }

/* ---- Reveal on scroll ---- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Alert / notice ---- */
.notice {
  padding: calc(var(--sp) * 1.5) calc(var(--sp) * 2);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  border-left: 4px solid;
}
.notice-info { background: var(--primary-light); border-color: var(--primary); color: var(--primary-dark); }
.notice-warn { background: #FFF8E8; border-color: var(--accent); color: #7A5B00; }

/* ---- Department code badge ---- */
.dept-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

/* ---- Page hero (inside pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
  border-bottom: 1px solid var(--border);
  padding: calc(var(--sp) * 6) 0 calc(var(--sp) * 4);
}
.page-hero h1 { margin-bottom: var(--sp); }
.page-hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 700px; }

/* ---- Mobile sticky CTA ---- */
.mobile-sticky-cta { display: none; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .widget-box { max-width: 560px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .local-hero-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  body { padding-bottom: 84px; }
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.18rem; }
  .main-nav { display: none; position: fixed; inset: 68px 0 0; background: white; flex-direction: column; align-items: flex-start; padding: calc(var(--sp) * 3); gap: calc(var(--sp) * 0.5); overflow-y: auto; z-index: 999; border-top: 1px solid var(--border); }
  .main-nav.open { display: flex; }
  .main-nav a { font-size: 1rem; padding: calc(var(--sp) * 1.5) 0; border-bottom: 1px solid var(--border); width: 100%; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .hero { padding: calc(var(--sp) * 5) 0 calc(var(--sp) * 4); }
  .hero h1 { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: calc(var(--sp) * 1.25); }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: calc(var(--sp) * 3); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-crosslinks { flex-direction: column; gap: calc(var(--sp) * 2); }
  .footer-crosslinks ul { justify-content: flex-start; flex-direction: column; }
  .trust-bar-inner { gap: calc(var(--sp) * 2.5); justify-content: flex-start; }
  .cta-banner { padding: calc(var(--sp) * 4) calc(var(--sp) * 3); }
  .listing-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .section { padding: calc(var(--sp) * 5) 0; }
  .page-hero { padding: calc(var(--sp) * 4) 0 calc(var(--sp) * 3); }
  .local-benefits { display: none; }
  .local-benefits li { display: block; }
  .local-benefits li strong { display: block; text-align: left; margin-top: 2px; }
  .price-grid .price-card { min-height: auto; text-align: left; }
  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    display: block;
    padding: 10px calc(var(--sp) * 2.5) calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.96);
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 24px rgba(28,43,58,0.12);
  }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
  .hero-stats { grid-template-columns: 1fr; }
  .grid-auto-sm { grid-template-columns: repeat(2, 1fr); }
  .cta-banner .btns { flex-direction: column; align-items: center; }
}
