/* ==========================================================================
   HOMESERVICESCONNECT — design system
   Palette: warm-cool paper, deep navy ink, teal + amber "connection" accents
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root{
  /* colors */
  --ink: #16233C;
  --ink-soft: #4E5B72;
  --ink-faint: #8791A2;
  --paper: #F2F3EE;
  --paper-deep: #E9EBE2;
  --surface: #FFFFFF;
  --line: #DEE1D6;
  --line-strong: #C9CDBF;
  --teal: #1F6E68;
  --teal-deep: #154F4B;
  --teal-tint: #E4EEEC;
  --amber: #BD7B2C;
  --amber-deep: #96611F;
  --amber-tint: #F6EBDA;
  --sage: #6E8A72;

  /* type */
  --font-display: 'Fraunces', ui-serif, Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  /* geometry */
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(22,35,60,.06), 0 1px 1px rgba(22,35,60,.05);
  --shadow-md: 0 14px 34px -14px rgba(22,35,60,.28);
  --shadow-lg: 0 24px 60px -20px rgba(22,35,60,.32);
  --maxw: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
p{ margin: 0 0 1em; color: var(--ink-soft); }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; }

.wrap{ max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.eyebrow{
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.eyebrow::before{
  content:"";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-tint);
}

/* skip link / focus */
.skip-link{
  position:absolute; left:-9999px; top:auto;
  background: var(--ink); color:#fff; padding: 10px 16px; border-radius: 0 0 8px 0; z-index: 999;
}
.skip-link:focus{ left:0; top:0; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline: 2.5px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15.5px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{
  background: var(--amber);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover{ background: var(--amber-deep); box-shadow: var(--shadow-md); }
.btn-ink{
  background: var(--ink);
  color: #fff;
}
.btn-ink:hover{ background: #0F1A2E; box-shadow: var(--shadow-md); }
.btn-outline{
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}
.btn-outline:hover{ border-color: var(--ink); background: var(--surface); }
.btn-sm{ padding: 9px 18px; font-size: 14px; }
.btn-block{ width: 100%; }
.btn svg{ width: 17px; height: 17px; flex-shrink:0; }

/* ---------- header ---------- */
.site-header{
  position: sticky; top: 0; z-index: 100;
  background: rgba(242,243,238,.86);
  backdrop-filter: blur(10px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap{
  display:flex; align-items:center; justify-content:space-between;
  height: 76px;
  gap: 24px;
}
.logo{
  display:flex; align-items:center; gap:10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.logo .logo-img{
  height: 46px; width: auto; max-width: 100%; display:block;
}
.logo .mark{
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(155deg, var(--teal), var(--teal-deep));
  position: relative; flex-shrink:0;
}
.logo .mark::before, .logo .mark::after{
  content:""; position:absolute; border-radius: 50%; background: var(--amber);
}
.logo .mark::before{ width:6px; height:6px; top:9px; left:8px; }
.logo .mark::after{ width:6px; height:6px; bottom:9px; right:8px; }
.logo .mark .bridge{ position:absolute; left:12px; top:12px; width:11px; height:11px; border-top:2px solid #fff; border-right:2px solid #fff; opacity:.85; border-radius: 0 4px 0 0;}
.logo .word b{ font-weight:700; color: var(--teal-deep); }
.logo small{
  display:block;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 1px;
}

.main-nav{ display:flex; align-items:center; gap: 6px; }
.main-nav a{
  font-size: 15px; font-weight: 500; color: var(--ink-soft);
  padding: 9px 14px; border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}
.main-nav a:hover{ background: var(--surface); color: var(--ink); }
.main-nav a.active{ color: var(--ink); background: var(--surface); box-shadow: var(--shadow-sm); }

.header-cta{ display:flex; align-items:center; gap:10px; }
.header-cta .call-chip{
  display:flex; align-items:center; gap:8px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink-soft);
}

.nav-toggle{
  display:none;
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--surface); border: 1px solid var(--line);
  align-items:center; justify-content:center; cursor:pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:""; display:block; width: 18px; height: 2px; background: var(--ink); position:relative;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before{ position:absolute; top:-6px; }
.nav-toggle span::after{ position:absolute; top:6px; }

/* ---------- hero ---------- */
.hero{ padding: 76px 0 84px; position: relative; overflow:hidden; }
.hero-grid{
  display:grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items:center;
}
.hero h1{
  font-size: clamp(38px, 5.2vw, 60px);
  color: var(--ink);
  max-width: 13ch;
}
.hero h1 em{ font-style: italic; color: var(--teal-deep); font-weight:500; }
.hero .lede{ font-size: 18px; max-width: 46ch; margin-bottom: 30px; }
.hero-ctas{ display:flex; gap: 14px; flex-wrap: wrap; }

.hero-visual{
  position:relative; aspect-ratio: 1/1; max-width: 460px; margin-left:auto; width:100%;
}
.orbit-field{ position:absolute; inset:0; }
.orbit-ring{
  position:absolute; border:1px solid var(--line-strong); border-radius:50%;
  top:50%; left:50%; transform: translate(-50%,-50%);
}
.orbit-ring.r1{ width: 100%; height:100%; }
.orbit-ring.r2{ width: 72%; height:72%; border-style:dashed; opacity:.7; }
.orbit-ring.r3{ width: 44%; height:44%; }
.hero-node{
  position:absolute; display:flex; align-items:center; justify-content:center;
  width: 64px; height:64px; border-radius: 18px; background: var(--surface);
  box-shadow: var(--shadow-md); border:1px solid var(--line);
}
.hero-node svg{ width:26px; height:26px; color: var(--teal); }
.hero-node.center{
  width:118px; height:118px; border-radius: 28px; left:50%; top:50%; transform: translate(-50%,-50%);
  background: var(--ink); color:#fff; box-shadow: var(--shadow-lg);
  flex-direction: column; gap:4px;
}
.hero-node.center svg{ width:34px; height:34px; color: var(--amber); }
.hero-node.center span{ font-family: var(--font-mono); font-size: 10.5px; letter-spacing:.08em; text-transform:uppercase; color: #C7CCDB; }
.hero-node.n1{ top: 2%; left: 50%; transform: translate(-50%,0); }
.hero-node.n2{ top: 50%; right: 0; transform: translate(0,-50%); }
.hero-node.n3{ bottom: 2%; left: 50%; transform: translate(-50%,0); }
.hero-node.n4{ top: 50%; left: 0; transform: translate(0,-50%); }
.hero-dot{ position:absolute; width:8px; height:8px; border-radius:50%; background: var(--amber); }

@keyframes pulse-ring{
  0%{ box-shadow: 0 0 0 0 rgba(31,110,104,.28); }
  70%{ box-shadow: 0 0 0 16px rgba(31,110,104,0); }
  100%{ box-shadow: 0 0 0 0 rgba(31,110,104,0); }
}
.hero-node.center{ animation: pulse-ring 3.2s ease-out infinite; }

/* ---------- sections generic ---------- */
section{ padding: 88px 0; }
.section-tight{ padding: 64px 0; }
.section-head{ max-width: 640px; margin-bottom: 46px; }
.img-disclaimer{
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-faint);
  font-style: italic;
  margin: -20px 0 30px;
  max-width: 640px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size: clamp(28px, 3.4vw, 40px); }
.section-head p{ font-size: 17px; }

.bg-surface{ background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.bg-ink{ background: var(--ink); color:#fff; }
.bg-ink p{ color: #B9C2D6; }
.bg-ink h2, .bg-ink h3{ color:#fff; }

/* ---------- how it works ---------- */
.process{
  position:relative;
}
.process-track{
  display:grid; grid-template-columns: repeat(4,1fr); gap: 0; position:relative; margin-top: 10px;
}
.process-line{
  position:absolute; top: 34px; left: 12.5%; right:12.5%; height: 2px; background: var(--line-strong);
  z-index:0;
}
.process-line-fill{
  position:absolute; top:0; left:0; height:100%; width:0%;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  animation: fillLine 6s ease-in-out infinite;
}
@keyframes fillLine{
  0%{ width:0%; }
  20%{ width:33%; }
  45%{ width:33%; }
  65%{ width:66%; }
  85%{ width:100%; }
  100%{ width:100%; }
}
.process-step{ position:relative; z-index:1; padding: 0 16px; text-align:center; }
.process-step .node{
  width: 68px; height:68px; border-radius:50%; background: var(--surface);
  border: 2px solid var(--line-strong); display:flex; align-items:center; justify-content:center;
  margin: 0 auto 20px; position:relative; transition: border-color .3s ease, transform .3s ease;
}
.process-step .node svg{ width: 26px; height:26px; color: var(--ink-soft); transition: color .3s ease; }
.process-step:nth-child(1) .node{ animation: stepGlow 6s ease-in-out infinite; animation-delay:0s; }
.process-step:nth-child(2) .node{ animation: stepGlow 6s ease-in-out infinite; animation-delay:1.2s; }
.process-step:nth-child(3) .node{ animation: stepGlow 6s ease-in-out infinite; animation-delay:2.6s; }
.process-step:nth-child(4) .node{ animation: stepGlow 6s ease-in-out infinite; animation-delay:4s; }
@keyframes stepGlow{
  0%, 8%{ border-color: var(--line-strong); }
  14%, 90%{ border-color: var(--teal); box-shadow: 0 0 0 6px var(--teal-tint); }
  96%,100%{ border-color: var(--line-strong); box-shadow:none; }
}
.process-step .num{
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-faint);
  letter-spacing:.1em; margin-bottom: 6px; display:block;
}
.process-step h3{ font-size: 17px; margin-bottom: 6px; }
.process-step p{ font-size: 14.5px; max-width: 22ch; margin: 0 auto; }

@media (prefers-reduced-motion: reduce){
  .process-line-fill, .process-step .node, .hero-node.center{ animation: none !important; }
  .process-line-fill{ width: 100%; }
}

/* ---------- service cards ---------- */
.cards-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.svc-card{
  background: var(--surface); border:1px solid var(--line); border-radius: var(--radius-md);
  overflow:hidden; display:flex; flex-direction:column; transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.svc-card:hover{ box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--line-strong); }
.svc-card .thumb{ aspect-ratio: 4/3; overflow:hidden; background: var(--paper-deep); position:relative; }
.svc-card .thumb img{ width:100%; height:100%; object-fit:cover; }
.svc-card .thumb.no-photo{ display:flex; align-items:center; justify-content:center; }
.svc-card .thumb.no-photo svg{ width:44px; height:44px; color: var(--teal); }
.svc-card .body{ padding: 20px 22px 22px; display:flex; flex-direction:column; gap:10px; flex:1; }
.svc-card .icon-chip{
  width:38px; height:38px; border-radius:10px; background: var(--teal-tint); color: var(--teal-deep);
  display:flex; align-items:center; justify-content:center; margin-bottom: 2px;
}
.svc-card .icon-chip svg{ width:19px; height:19px; }
.svc-card h3{ font-size: 19px; margin-bottom:2px; }
.svc-card p{ font-size: 14.5px; flex:1; margin-bottom: 14px; }
.svc-card .card-cta{ display:flex; align-items:center; justify-content:space-between; gap:10px; }

/* icon-only card (no photo, e.g. water damage on some listings) */
.icon-card-visual{
  aspect-ratio: 4/3; display:flex; align-items:center; justify-content:center;
  background: linear-gradient(155deg, var(--teal-tint), var(--paper-deep));
}
.icon-card-visual svg{ width:52px; height:52px; color: var(--teal-deep); }

/* ---------- trust section ---------- */
.trust-grid{ display:grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items:start; }
.trust-copy p{ font-size: 17px; }
.trust-points{ display:grid; gap: 18px; }
.trust-point{
  background: var(--surface); border:1px solid var(--line); border-radius: var(--radius-md);
  padding: 22px 24px; display:flex; gap: 16px; align-items:flex-start;
}
.trust-point .icon-chip{
  width:40px; height:40px; border-radius:10px; background: var(--amber-tint); color: var(--amber-deep);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.trust-point .icon-chip svg{ width:19px; height:19px; }
.trust-point h4{ font-size: 16.5px; margin-bottom:4px; }
.trust-point p{ font-size: 14.5px; margin:0; }

/* ---------- CTA band ---------- */
.cta-band{
  background: var(--ink); border-radius: var(--radius-lg); padding: 56px 52px;
  display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap;
  position:relative; overflow:hidden;
}
.cta-band::after{
  content:""; position:absolute; right:-60px; top:-60px; width:220px; height:220px; border-radius:50%;
  background: radial-gradient(circle, rgba(189,123,44,.35), transparent 70%);
}
.cta-band h2{ color:#fff; font-size: clamp(24px,3vw,32px); max-width: 18ch; margin-bottom:8px; }
.cta-band p{ color:#B9C2D6; margin:0; max-width:40ch; }
.cta-band .actions{ display:flex; gap:12px; flex-wrap:wrap; position:relative; z-index:1; }

/* ---------- footer ---------- */
.site-footer{ background: var(--ink); color:#B9C2D6; padding: 64px 0 32px; }
.footer-top{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand .logo{ color:#fff; }
.footer-brand .logo small{ color:#8792AA; }
.footer-brand p{ color:#8792AA; font-size:14.5px; margin-top:14px; max-width:34ch; }
.footer-col h5{
  font-family: var(--font-mono); font-size: 12px; letter-spacing:.1em; text-transform:uppercase;
  color:#8792AA; margin-bottom: 14px; font-weight:500;
}
.footer-col ul{ display:grid; gap:10px; }
.footer-col a{ font-size:14.5px; color:#D7DCE8; }
.footer-col a:hover{ color:#fff; }
.footer-disclosure{
  margin-top: 30px; padding-top: 24px;
  font-size: 13px; color: #7C879D; line-height:1.6;
}
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; margin-top: 26px; flex-wrap:wrap; gap:12px; }
.footer-bottom span{ font-size: 13px; color:#7C879D; }

/* ---------- generic page hero (service, static pages) ---------- */
.page-hero{ padding: 56px 0 0; }
.breadcrumbs{
  font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-faint);
  display:flex; gap:8px; align-items:center; margin-bottom: 22px;
}
.breadcrumbs a{ color: var(--ink-soft); }
.breadcrumbs a:hover{ color: var(--teal-deep); }
.page-hero-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:48px; align-items:center; padding-bottom: 56px; }
.page-hero h1{ font-size: clamp(32px,4.2vw,48px); }
.page-hero .lede{ font-size: 17.5px; max-width: 48ch; }
.page-hero-media{ border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16/11; }
.page-hero-media img{ width:100%; height:100%; object-fit:cover; }
.page-hero-media.no-photo{
  display:flex; align-items:center; justify-content:center; background: linear-gradient(160deg, var(--teal-tint), var(--paper-deep));
  border: 1px solid var(--line);
}
.page-hero-media.no-photo svg{ width:88px; height:88px; color: var(--teal-deep); opacity:.85; }

.phone-cta-inline{
  display:flex; align-items:center; gap:14px; flex-wrap:wrap;
}
.phone-number{
  font-family: var(--font-mono); font-weight:500; font-size: 15px; color: var(--ink-soft);
}
.disclosure-note{
  font-size: 13px; color: var(--ink-faint); max-width: 52ch; margin-top: 14px;
}

/* two column content + sidebar CTA */
.content-grid{ display:grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items:start; }
.content-main h2{ font-size: 24px; margin-top: 4px; }
.content-main h2:not(:first-child){ margin-top: 40px; }
.needs-list{ display:grid; gap: 12px; margin: 18px 0 6px; }
.needs-list li{
  display:flex; gap:12px; align-items:flex-start; font-size:15.5px; color: var(--ink-soft);
  background: var(--surface); border:1px solid var(--line); border-radius: var(--radius-sm); padding: 13px 16px;
}
.needs-list li svg{ width:17px; height:17px; color: var(--teal); flex-shrink:0; margin-top:2px; }
.sidebar-card{
  background: var(--surface); border:1px solid var(--line); border-radius: var(--radius-md);
  padding: 26px; box-shadow: var(--shadow-sm); position: sticky; top: 96px;
}
.sidebar-card h3{ font-size: 18px; }
.sidebar-card .big-phone{
  font-family: var(--font-mono); font-size: 21px; font-weight:500; color: var(--ink);
  display:block; margin: 14px 0; word-break: break-word;
}
.related-list{ display:grid; gap:2px; margin-top: 26px; padding-top: 20px; border-top:1px solid var(--line); }
.related-list h5{ font-family: var(--font-mono); font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--ink-faint); margin-bottom:10px; }
.related-list a{
  display:flex; align-items:center; justify-content:space-between; padding: 9px 4px; font-size:14.5px; color: var(--ink-soft);
  border-radius: 8px;
}
.related-list a:hover{ color: var(--teal-deep); background: var(--paper); }

/* ---------- category tabs on services listing ---------- */
.services-toc{ display:flex; gap:10px; margin-bottom: 40px; flex-wrap:wrap; }
.services-toc a{
  font-size:14px; font-weight:500; padding:9px 16px; border-radius:999px; border:1px solid var(--line);
  background: var(--surface); color: var(--ink-soft);
}
.services-toc a:hover{ border-color: var(--teal); color: var(--teal-deep); }

/* ---------- generic content pages (about, faq, legal) ---------- */
.prose{ max-width: 760px; }
.prose h2{ font-size: 24px; margin-top: 42px; }
.prose h2:first-child{ margin-top:0; }
.prose h3{ font-size: 18px; margin-top: 28px; }
.prose p, .prose li{ font-size: 16px; color: var(--ink-soft); }
.prose ul{ list-style: disc; padding-left: 22px; display:grid; gap:8px; margin-bottom:1em; }
.prose li{ padding-left:4px; }
.prose a{ color: var(--teal-deep); text-decoration: underline; text-underline-offset:3px; }

.faq-item{
  border-bottom: 1px solid var(--line); padding: 22px 0;
}
.faq-item summary{
  cursor:pointer; font-family: var(--font-display); font-size: 18px; font-weight:600;
  display:flex; justify-content:space-between; align-items:center; gap: 16px; list-style:none;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary .plus{
  width: 26px; height:26px; border-radius:50%; border:1px solid var(--line-strong); flex-shrink:0;
  display:flex; align-items:center; justify-content:center; position:relative; transition: transform .2s ease;
}
.faq-item summary .plus::before, .faq-item summary .plus::after{
  content:""; position:absolute; background: var(--ink); border-radius:2px;
}
.faq-item summary .plus::before{ width:11px; height:2px; }
.faq-item summary .plus::after{ width:2px; height:11px; }
.faq-item[open] summary .plus::after{ display:none; }
.faq-item[open] summary .plus{ background: var(--teal); border-color: var(--teal); }
.faq-item[open] summary .plus::before{ background:#fff; }
.faq-item p{ margin-top: 14px; font-size:15.5px; max-width: 68ch; }

/* about page stat-free trust strip */
.about-strip{ display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 46px; }
.about-strip .item{ border-top: 2px solid var(--teal); padding-top: 16px; }
.about-strip .item h4{ font-size:16px; margin-bottom:6px; }
.about-strip .item p{ font-size:14.5px; }

/* legal notice box */
.notice-box{
  background: var(--teal-tint); border:1px solid #C9DEDB; border-radius: var(--radius-md);
  padding: 22px 24px; font-size: 15px; color: var(--teal-deep); margin: 26px 0;
}
.notice-box strong{ display:block; margin-bottom:4px; font-family: var(--font-display); font-size:16px; }

/* mobile sticky call bar */
.mobile-call-bar{
  display:none; position:fixed; left:0; right:0; bottom:0; z-index: 90;
  background: var(--surface); border-top:1px solid var(--line); padding: 12px 16px;
  box-shadow: 0 -8px 24px rgba(20,33,61,.12);
}
.mobile-call-bar .btn{ width:100%; }

/* ================= responsive ================= */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-visual{ margin: 0 auto; max-width: 340px; order:-1; }
  .cards-grid{ grid-template-columns: repeat(2,1fr); }
  .trust-grid{ grid-template-columns:1fr; }
  .footer-top{ grid-template-columns: 1fr 1fr; }
  .page-hero-grid{ grid-template-columns:1fr; }
  .content-grid{ grid-template-columns:1fr; }
  .sidebar-card{ position:static; }
  .about-strip{ grid-template-columns:1fr; }
}
@media (max-width: 720px){
  .main-nav, .header-cta .call-chip{ display:none; }
  .nav-toggle{ display:flex; }
  .site-header .wrap{ height:68px; }
  .logo{ min-width:0; flex:0 1 auto; }
  .logo .logo-img{ height:34px; }
  .cards-grid{ grid-template-columns: 1fr; }
  .process-track{ grid-template-columns:1fr; gap: 34px; }
  .process-line{ display:none; }
  section{ padding: 60px 0; }
  .cta-band{ padding: 38px 26px; flex-direction:column; align-items:flex-start; }
  .mobile-call-bar{ display:block; }
  body{ padding-bottom: 74px; }
  .footer-top{ grid-template-columns: 1fr; }
}
@media (max-width: 400px){
  .logo .logo-img{ height:28px; }
}

/* mobile nav panel */
.mobile-nav{
  display:none; position:fixed; inset:68px 0 0 0; background: var(--paper); z-index: 95;
  padding: 24px 28px; overflow-y:auto;
}
.mobile-nav.open{ display:block; }
.mobile-nav a{
  display:block; font-family: var(--font-display); font-size: 24px; padding: 14px 0; border-bottom:1px solid var(--line);
}
.mobile-nav .btn{ margin-top: 24px; }
