/* =========================================================
   Home Care Connections NC — Design System
   ========================================================= */

:root {
  /* Brand palette — sampled from the HCCNC logo */
  --navy: #1B4F8B;
  --navy-deep: #143C6B;
  --blue: #2E86AB;
  --blue-soft: #4A90C4;
  --teal: #4FB8AF;
  --teal-soft: #7FCFC8;
  --sky: #C8E4ED;
  --gold: #E8A04C;
  --gold-soft: #F2C284;

  /* Neutrals */
  --ink: #1A2B3C;
  --ink-soft: #3F546B;
  --muted: #6B7C8E;
  --line: #E3EBF1;
  --line-soft: #EFF4F8;
  --bg: #FFFFFF;
  --bg-alt: #F6FAFC;
  --bg-tint: #EDF6F8;

  /* Semantic */
  --primary: var(--navy);
  --accent: var(--teal);
  --warm: var(--gold);

  /* Type */
  --font-display: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Layout */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(20,60,107,.06), 0 1px 3px rgba(20,60,107,.04);
  --shadow: 0 6px 24px rgba(20,60,107,.08), 0 2px 6px rgba(20,60,107,.04);
  --shadow-lg: 0 18px 50px rgba(20,60,107,.12), 0 6px 18px rgba(20,60,107,.06);

  --container: 1180px;
  --container-narrow: 880px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-deep);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2rem, 4.4vw, 3.25rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
p { margin: 0 0 1em; color: var(--ink-soft); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  color: var(--teal);
  margin-bottom: var(--space-3);
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--space-5); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--space-5); }
.section { padding: var(--space-9) 0; }
.section-sm { padding: var(--space-7) 0; }
.section-tint { background: var(--bg-tint); }
.section-alt { background: var(--bg-alt); }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1rem;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  min-height: 48px;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--navy-deep); box-shadow: var(--shadow-lg); }
.btn-secondary {
  background: #fff;
  color: var(--navy-deep);
  border-color: var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-accent {
  background: var(--gold);
  color: #2B1B05;
  box-shadow: var(--shadow);
}
.btn-accent:hover { background: #D78F3C; }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn-ghost:hover { background: var(--bg-tint); border-color: var(--teal); }
.btn-block { display: flex; width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--space-5);
  max-width: var(--container);
  margin: 0 auto;
  gap: var(--space-5);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy-deep);
}
.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy-deep);
}
.brand-tag {
  font-size: .72rem;
  color: var(--teal);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
}
.nav { display: flex; align-items: center; gap: var(--space-5); }
.nav-list { display: flex; gap: var(--space-5); list-style: none; padding: 0; margin: 0; }
.nav-list a {
  color: var(--ink);
  font-weight: 500;
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
}
.nav-list a:hover { color: var(--navy); text-decoration: none; border-bottom-color: var(--teal); }
.nav-list a.active { color: var(--navy-deep); border-bottom-color: var(--teal); font-weight: 600; }

.header-cta { display: flex; align-items: center; gap: var(--space-3); }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--navy-deep);
  font-family: var(--font-display);
}
.header-phone .ic { color: var(--teal); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
  color: var(--navy-deep);
}

/* Mobile sticky call bar */
.call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  font-weight: 600;
  font-family: var(--font-display);
  box-shadow: 0 -6px 18px rgba(0,0,0,.15);
}
.call-bar a { color: #fff; text-decoration: none; display: inline-flex; gap: 8px; align-items: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(79,184,175,.18), transparent 60%),
    radial-gradient(900px 480px at -10% 110%, rgba(46,134,171,.15), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, #F2F8FB 100%);
  padding: var(--space-9) 0 var(--space-8);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  grid-template-areas:
    "copy-top art"
    "copy-bottom art";
  column-gap: var(--space-8);
  row-gap: 0;
}
.hero-copy-top {
  grid-area: copy-top;
  align-self: end;
  padding-bottom: var(--space-4);
}
.hero-copy-bottom {
  grid-area: copy-bottom;
  align-self: start;
}
.hero-copy-top h1 { color: var(--navy-deep); }
.hero-copy-top h1 .accent { color: var(--teal); }
.hero-lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 560px;
}
.hero-actions { display: flex; gap: var(--space-3); margin: var(--space-5) 0 var(--space-6); flex-wrap: wrap; }
.hero-art {
  grid-area: art;
  position: relative;
  align-self: center;
}
.hero-art img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}
.hero-art::after {
  content: '';
  position: absolute;
  inset: auto -20px -22px auto;
  width: 60%;
  height: 70%;
  background: linear-gradient(135deg, rgba(79,184,175,.18), rgba(46,134,171,.12));
  border-radius: var(--radius-xl);
  z-index: -1;
}

/* Trust badges row — sits below the hero grid at full container width */
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-7);
}
.trust-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-5) var(--space-5);
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.trust-card .ic {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-tint);
  color: var(--teal);
  display: grid; place-items: center;
}
.trust-card strong { display: block; color: var(--navy-deep); font-family: var(--font-display); font-size: .98rem; }
.trust-card span { font-size: .85rem; color: var(--muted); }

/* ---------- Section heads ---------- */
.section-head { max-width: 720px; margin: 0 auto var(--space-7); text-align: center; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }

/* ---------- Cards / Services ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.cards.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cards.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(79,184,175,.45);
}
.card .ic {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--bg-tint), #fff);
  color: var(--teal);
  display: grid; place-items: center;
  margin-bottom: var(--space-4);
  border: 1px solid var(--line);
}
.card h3 { margin-bottom: 6px; }
.card p { color: var(--muted); font-size: .96rem; margin-bottom: 0; }

/* ---------- Why us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: var(--space-7);
  align-items: center;
}
.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-3);
}
.why-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--line-soft);
}
.why-list li:last-child { border-bottom: 0; }
.why-list .check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: grid; place-items: center;
  font-size: .85rem;
  flex-shrink: 0;
}
.why-list strong { display: block; color: var(--navy-deep); font-family: var(--font-display); margin-bottom: 2px; }
.why-list span { color: var(--ink-soft); font-size: .95rem; }
.why-img img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

/* ---------- Service area ---------- */
.area-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.area-card h2 { color: #fff; }
.area-card p { color: rgba(255,255,255,.85); }
.county-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: var(--space-5) 0 var(--space-3);
}
.county-pills span {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 500;
  font-family: var(--font-display);
}
.area-note { font-size: .9rem; color: rgba(255,255,255,.7); margin-top: var(--space-3); }

/* ---------- Insurance / Payment band ---------- */
.payment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: center;
  padding: var(--space-7);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}
.payment .ic-wrap {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--bg-tint), #fff);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--teal);
  margin-bottom: var(--space-3);
}

/* ---------- Final CTA ---------- */
.final-cta {
  text-align: center;
  background:
    radial-gradient(800px 300px at 50% 0%, rgba(232,160,76,.12), transparent 60%),
    linear-gradient(180deg, var(--bg-tint) 0%, #fff 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid var(--line);
}
.final-cta h2 { margin-bottom: 10px; }
.final-cta .actions { display: inline-flex; gap: var(--space-3); flex-wrap: wrap; justify-content: center; margin-top: var(--space-4); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.85);
  padding: var(--space-8) 0 var(--space-5);
  margin-top: var(--space-9);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--space-7);
}
.footer-grid h4 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: var(--space-3); }
.footer-brand { display: flex; gap: 12px; align-items: center; margin-bottom: var(--space-3); }
.footer-brand img { width: 52px; height: 52px; background: #fff; padding: 6px; border-radius: 12px; }
.footer-brand strong { font-family: var(--font-display); color: #fff; font-size: 1.05rem; display: block; }
.footer-brand span { font-size: .82rem; color: var(--teal-soft); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer a { color: rgba(255,255,255,.85); }
.site-footer a:hover { color: #fff; }
.contact-line { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; }
.contact-line .ic { color: var(--teal-soft); margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: var(--space-7);
  padding-top: var(--space-4);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: .88rem;
  color: rgba(255,255,255,.65);
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background:
    radial-gradient(900px 380px at 90% -20%, rgba(79,184,175,.18), transparent 60%),
    linear-gradient(180deg, #fff 0%, #F2F8FB 100%);
  padding: var(--space-8) 0 var(--space-7);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { max-width: 800px; }
.page-hero p { font-size: 1.1rem; max-width: 720px; }
.crumbs { font-size: .85rem; color: var(--muted); margin-bottom: var(--space-3); }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--navy); }

/* ---------- Service deep sections ---------- */
.service-block {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: var(--space-7);
  align-items: center;
  margin-bottom: var(--space-8);
}
.service-block.flip { grid-template-columns: .9fr 1.1fr; }
.service-block.flip .service-art { order: -1; }
.service-art img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.service-block ul { padding-left: 1.2em; color: var(--ink-soft); }
.service-block ul li { margin-bottom: 6px; }
.inline-cta { margin-top: var(--space-4); }

/* ---------- Forms ---------- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: var(--space-7);
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4) var(--space-5);
}
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--navy-deep);
  font-size: .92rem;
  margin-bottom: 6px;
}
.field .req { color: var(--gold); margin-left: 2px; }
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: var(--teal-soft); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(79,184,175,.18);
}
.field textarea { min-height: 130px; resize: vertical; }
.checkbox {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  font-size: .92rem;
  color: var(--ink-soft);
  cursor: pointer;
}
.checkbox input { width: 22px; height: 22px; margin-top: 2px; accent-color: var(--teal); }
.form-note {
  background: var(--bg-tint);
  border-left: 4px solid var(--teal);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: .92rem;
  color: var(--ink-soft);
  margin-bottom: var(--space-5);
}
.form-success {
  background: #E8F8F3;
  border: 1px solid #A8DEC8;
  color: #1F5D44;
  padding: 16px 18px;
  border-radius: 14px;
  margin-bottom: var(--space-4);
  display: none;
}
.form-success.show { display: block; }

.form-error {
  background: #FCEDEC;
  border: 1px solid #E8B7B3;
  color: #842029;
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: var(--space-4);
  font-size: .95rem;
  display: none;
}
.form-error.show { display: block; }

/* Cloudflare Turnstile widget — ensure it sits cleanly in the form grid. */
.cf-turnstile {
  margin: 4px 0 4px;
  min-height: 65px;
}

/* Honeypot — hidden from real users without using display:none (some bots
   skip non-rendered fields). */
.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.privacy-note {
  margin-top: 16px;
  font-size: .85rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ---------- Contact aside ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-7);
  align-items: start;
}
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.info-card + .info-card { margin-top: var(--space-4); }
.info-row {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 10px 0;
  align-items: start;
  border-bottom: 1px solid var(--line-soft);
}
.info-row:last-child { border-bottom: 0; }
.info-row .ic {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--bg-tint);
  color: var(--teal);
  display: grid; place-items: center;
}
.info-row strong { display: block; color: var(--navy-deep); font-family: var(--font-display); font-size: .95rem; }
.info-row a, .info-row span { color: var(--ink-soft); font-size: .96rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: var(--space-3); }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq details[open] { border-color: var(--teal); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--teal);
  font-weight: 400;
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: '−'; }
.faq .faq-body { padding: 0 22px 18px; color: var(--ink-soft); }

/* ---------- Privacy / Long-form ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-top: 2em; }
.prose h3 { margin-top: 1.5em; }
.prose ul { padding-left: 1.3em; color: var(--ink-soft); }
.prose ul li { margin-bottom: 8px; }
.prose .meta { color: var(--muted); font-size: .92rem; margin-bottom: var(--space-5); }

/* ---------- Disclaimer ---------- */
.disclaimer {
  font-size: .82rem;
  color: var(--muted);
  background: var(--bg-alt);
  padding: var(--space-4);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin-top: var(--space-5);
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 100;
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; outline: 2px solid var(--gold); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy-top"
      "art"
      "copy-bottom";
    gap: var(--space-5);
  }
  .hero-copy-top { padding-bottom: 0; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .cards, .cards.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .service-block, .service-block.flip { grid-template-columns: 1fr; }
  .service-block.flip .service-art { order: 0; }
  .payment { grid-template-columns: 1fr; padding: var(--space-6); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .section { padding: var(--space-8) 0; }
  .nav-list, .header-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-list {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    padding: var(--space-4);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    gap: 4px;
  }
  .nav.open .nav-list a {
    padding: 12px 8px;
    border-bottom: 1px solid var(--line-soft);
    border-radius: 8px;
  }
  .header-cta .btn { padding: 10px 16px; min-height: 42px; font-size: .92rem; }
  .site-header { position: fixed; left: 0; right: 0; }
  #main { padding-top: 75px; }
  .call-bar { display: block; }
  body { padding-bottom: calc(56px + env(safe-area-inset-bottom)); }
  .cards, .cards.cols-3, .cards.cols-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
  .trust-card { flex-direction: column; align-items: flex-start; padding: var(--space-4); gap: 8px; }
  .trust-card .ic { width: 36px; height: 36px; border-radius: 10px; }
  .trust-card strong { font-size: .9rem; }
  .trust-card span { font-size: .8rem; }
  .area-card, .form-card, .final-cta { padding: var(--space-6); }
  .brand-tag { display: none; }
  .hero { padding: var(--space-7) 0 var(--space-7); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
