/* ===========================================================
   Melbourne Computer Help — by Between Coffees
   Adapted from the Between Coffees visual system.
   Accent is driven by --accent so it can be tweaked live.
=========================================================== */

:root {
  --ink: #1c1c1c;
  --paper: #faf9f7;
  --muted: rgba(28, 28, 28, 0.64);
  --faint: rgba(28, 28, 28, 0.46);
  --line: rgba(28, 28, 28, 0.10);
  --line-2: rgba(28, 28, 28, 0.06);

  --accent: #c46a2b;
  --accent-dark: color-mix(in srgb, var(--accent) 74%, #000);
  --accent-ink: color-mix(in srgb, var(--accent) 82%, #000);
  --accent-tint: color-mix(in srgb, var(--accent) 7%, #fff);
  --accent-tint-2: color-mix(in srgb, var(--accent) 12%, #fff);

  --wrap: 1120px;
  --font: "Montserrat", Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

a { color: var(--accent-ink); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 1.5rem; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* icon sprite helpers */
.ico {
  width: 24px; height: 24px; flex: 0 0 auto;
  stroke: currentColor; fill: none; vertical-align: middle;
}
.ico-lg { width: 30px; height: 30px; }

/* ============================================================
   HEADER
============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(250, 249, 247, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--wrap); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 0.6rem 1.5rem;
}
.brand { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; }
.brand-mark {
  flex: 0 0 auto; width: 38px; height: 38px; border-radius: 10px;
  background: var(--accent); display: grid; place-items: center;
  box-shadow: 0 6px 16px -8px color-mix(in srgb, var(--accent) 75%, transparent);
}
.brand-mark svg { width: 20px; height: 24px; }
.brand-word {
  display: flex; flex-direction: column; line-height: 1.05;
}
.brand-word b {
  font-weight: 800; font-size: 0.92rem; letter-spacing: 0.02em;
  color: var(--ink); white-space: nowrap;
}
.brand-word span {
  font-size: 0.56rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--faint); margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: clamp(0.8rem, 1.8vw, 1.8rem); }
.nav-links { display: flex; gap: clamp(0.8rem, 1.8vw, 1.8rem); list-style: none; margin: 0; padding: 0; }
.nav-links a {
  text-decoration: none; color: var(--ink);
  font-weight: 700; font-size: 0.74rem; letter-spacing: 0.06em;
  text-transform: uppercase; transition: color 0.18s; white-space: nowrap;
}
.nav-links a:hover { color: var(--accent); }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font); font-weight: 700; font-size: 0.95rem;
  text-decoration: none; cursor: pointer; border: none;
  padding: 0.7rem 1.3rem; border-radius: 999px;
  transition: background-color 0.18s, transform 0.18s, box-shadow 0.18s, color 0.18s;
}
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 12px 26px -14px color-mix(in srgb, var(--accent) 80%, transparent);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); color: #fff; }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--line); 
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-phone { font-size: 0.86rem; padding: 0.55rem 1.05rem; }
.btn .ar { transition: transform 0.18s; }
.btn:hover .ar { transform: translateX(3px); }

.nav-toggle {
  display: none; width: 40px; height: 40px; border: none; background: transparent;
  cursor: pointer; flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; height: 2.5px; width: 22px; margin: 0 auto; background: var(--ink); border-radius: 2px; transition: 0.2s; }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 140% at 12% 0%, #fff 0%, color-mix(in srgb, var(--accent) 9%, #fff) 48%, var(--paper) 100%);
  border-bottom: 1px solid var(--line-2);
}
.hero-inner {
  max-width: var(--wrap); margin: 0 auto;
  padding: clamp(3rem, 6vw, 5.5rem) 1.5rem clamp(2.6rem, 4.5vw, 4rem);
  display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center;
}
.eyebrow {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent); margin: 0 0 1.1rem;
}
.hero h1 {
  margin: 0; font-weight: 800; letter-spacing: -0.022em;
  font-size: clamp(2.2rem, 5.4vw, 4rem); line-height: 1.04; color: var(--ink);
  max-width: 16ch; text-wrap: balance;
}
.hero h1 .accent { color: var(--accent); }
.hero-lead {
  margin: 1.3rem 0 0; font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.6; color: var(--muted); max-width: 52ch; font-weight: 500;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; align-items: center;
}
.hero-note {
  margin: 1.1rem 0 0; font-size: 0.82rem; color: var(--faint); font-weight: 600;
  display: flex; align-items: center; gap: 0.5rem;
}
.hero-note .dot { width: 8px; height: 8px; border-radius: 50%; background: #2f9e54; box-shadow: 0 0 0 4px color-mix(in srgb, #2f9e54 18%, transparent); }

/* corner chevron motif */
.hero-mark {
  position: absolute; top: 50%; right: clamp(1rem, 5vw, 4rem);
  transform: translateY(-50%); width: 46px; height: 64px; opacity: 0.9; pointer-events: none;
}
.hero-mark { color: var(--accent); }

/* right column — "common fixes" scanning panel */
.fixes {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: 18px; padding: 1.5rem 1.5rem 1.5rem 1.4rem;
  box-shadow: 0 28px 60px -38px rgba(28, 28, 28, 0.5);
}
.fixes h2 {
  margin: 0 0 0.3rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--faint);
}
.fixes-list { list-style: none; margin: 0; padding: 0; position: relative; padding-left: 38px; }
.fixes-scan {
  position: absolute; left: 0; top: 0; width: 26px; height: 26px;
  transition: transform 0.45s cubic-bezier(0.5, 0, 0.2, 1);
}
.fixes-scan path { stroke: var(--accent); }
.fixes-list li {
  font-weight: 700; font-size: clamp(1.05rem, 1.7vw, 1.32rem); line-height: 1.25;
  color: var(--ink); padding: 0.32rem 0; transition: color 0.35s, transform 0.35s;
}
.fixes-list li.active { color: var(--accent); transform: translateX(6px); }
.fixes-foot {
  margin: 1.1rem 0 0; padding-top: 1rem; border-top: 1px solid var(--line-2);
  font-size: 0.86rem; color: var(--muted); font-weight: 500;
}

/* ---- hero variant layouts ---- */
.hero[data-hero="split"] .hero-inner { grid-template-columns: 1.08fr 0.92fr; }
.hero[data-hero="split"] .hero-mark { display: none; }

.hero[data-hero="statement"] .hero-inner { grid-template-columns: 1fr; }
.hero[data-hero="statement"] .fixes { display: none; }
.hero[data-hero="statement"] h1 { font-size: clamp(2.4rem, 6.4vw, 4.8rem); max-width: 18ch; }
.hero[data-hero="statement"] .hero-text { max-width: 40ch; }

.hero[data-hero="centered"] .hero-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
.hero[data-hero="centered"] .fixes { display: none; }
.hero[data-hero="centered"] .hero-mark { display: none; }
.hero[data-hero="centered"] h1 { max-width: 20ch; }
.hero[data-hero="centered"] .hero-lead { margin-left: auto; margin-right: auto; }
.hero[data-hero="centered"] .hero-actions { justify-content: center; }
.hero[data-hero="centered"] .hero-note { justify-content: center; }

/* ============================================================
   TRUST BAND
============================================================ */
.trust {
  background: color-mix(in srgb, var(--accent) 8%, #fff);
  border-bottom: 1px solid var(--line-2);
}
.trust-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 0.85rem 1.5rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.7rem 2rem;
}
.trust-item {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent-ink);
}
.trust-item svg { width: 16px; height: 16px; color: var(--accent); fill: none; }

/* ============================================================
   SECTIONS / HEADINGS
============================================================ */
.section { max-width: var(--wrap); margin: 0 auto; padding: clamp(3rem, 5.5vw, 4.75rem) 1.5rem; }
.section + .section { padding-top: 0; }

.section-eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 0.7rem;
}
.section-title {
  margin: 0; font-weight: 800; letter-spacing: -0.02em;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem); line-height: 1.1; color: var(--ink);
}
.section-title::after {
  content: ""; display: block; width: 44px; height: 4px; border-radius: 2px;
  background: var(--accent); margin-top: 0.9rem;
}
.section-intro { margin: 1.1rem 0 0; max-width: 58ch; color: var(--muted); font-weight: 500; font-size: 1.04rem; }

/* ============================================================
   URGENT HELP
============================================================ */
.urgent {
  max-width: var(--wrap); margin: clamp(2rem, 4vw, 3rem) auto -1rem;
  padding: 0 1.5rem;
}
.urgent-box {
  display: flex; align-items: center; gap: 1.2rem;
  background: var(--accent-tint); border: 1.5px solid color-mix(in srgb, var(--accent) 40%, #fff);
  border-radius: 14px; padding: 1.1rem 1.4rem;
}
.urgent-ico {
  flex: 0 0 auto; width: 48px; height: 48px; border-radius: 12px;
  background: var(--accent); display: grid; place-items: center;
}
.urgent-ico svg { width: 26px; height: 26px; color: #fff; fill: none; }
.urgent-text { flex: 1 1 auto; min-width: 0; }
.urgent-text h3 { margin: 0 0 0.15rem; font-size: 1.1rem; font-weight: 800; }
.urgent-text p { margin: 0; font-size: 0.95rem; color: var(--muted); }
.urgent-box .btn { flex: 0 0 auto; white-space: nowrap; }

/* ============================================================
   HELP CARDS (home / business)
============================================================ */
.help-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.2rem; }
.help-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 1.8rem; box-shadow: 0 16px 40px -34px rgba(28, 28, 28, 0.5);
}
.help-card-head { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.4rem; }
.help-card-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--accent-tint-2); display: grid; place-items: center; }
.help-card-ico svg { width: 24px; height: 24px; color: var(--accent); fill: none; }
.help-card h3 { margin: 0; font-size: 1.25rem; font-weight: 800; }
.help-card .help-sub { margin: 0.1rem 0 1.1rem; color: var(--faint); font-size: 0.86rem; font-weight: 600; letter-spacing: 0.02em; }
.help-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.help-list li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.98rem; line-height: 1.45; }
.help-list li svg { width: 20px; height: 20px; margin-top: 2px; color: var(--accent); fill: none; }

.note-strip {
  display: flex; gap: 0.9rem; align-items: center;
  margin-top: 1.6rem; padding: 1rem 1.2rem;
  background: var(--accent-tint); border-left: 4px solid var(--accent); border-radius: 10px;
}
.note-strip svg { width: 26px; height: 26px; flex: 0 0 auto; color: var(--accent); fill: none; }
.note-strip p { margin: 0; font-size: 0.96rem; }
.note-strip strong { color: var(--ink); }

/* ============================================================
   PRICING
============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 2.2rem; }
.price-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.5rem 1.4rem;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 22px 46px -30px rgba(28, 28, 28, 0.45); border-color: color-mix(in srgb, var(--accent) 35%, var(--line)); }
.price-card.featured { background: var(--accent-tint); border: 1.5px solid var(--accent); }
.price-tag {
  align-self: flex-start; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; background: var(--accent); padding: 0.25rem 0.55rem; border-radius: 999px; margin-bottom: 0.9rem;
}
.price-card h3 { margin: 0; font-size: 1.05rem; font-weight: 800; }
.price-amount { margin: 0.5rem 0 0.2rem; font-size: 1.75rem; font-weight: 800; color: var(--accent-ink); letter-spacing: -0.01em; }
.price-amount small { font-size: 0.82rem; font-weight: 700; color: var(--faint); }
.price-card ul { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: 0.55rem; }
.price-card li { display: flex; gap: 0.55rem; align-items: flex-start; font-size: 0.88rem; line-height: 1.4; color: var(--muted); }
.price-card li svg { width: 17px; height: 17px; margin-top: 2px; color: var(--accent); fill: none; flex: 0 0 auto; }
.price-foot {
  margin: 1.6rem 0 0; font-size: 0.9rem; color: var(--muted);
  display: flex; gap: 0.6rem; align-items: flex-start;
}
.price-foot svg { width: 20px; height: 20px; flex: 0 0 auto; color: var(--accent); fill: none; margin-top: 2px; }

/* ============================================================
   REMOTE SUPPORT STEPS
============================================================ */
.remote { background: color-mix(in srgb, var(--accent) 4%, var(--paper)); border-block: 1px solid var(--line-2); }
.remote-inner { max-width: var(--wrap); margin: 0 auto; padding: clamp(3rem, 5.5vw, 4.75rem) 1.5rem; }
.remote-secure {
  display: flex; gap: 0.9rem; align-items: center; margin-top: 1.8rem;
  padding: 1rem 1.3rem; background: #fff; border: 1px solid var(--line); border-radius: 12px;
}
.remote-secure svg { width: 28px; height: 28px; flex: 0 0 auto; color: var(--accent); fill: none; }
.remote-secure p { margin: 0; font-size: 0.96rem; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 2rem; counter-reset: step; }
.step {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 1.4rem 1.2rem 1.3rem;
}
.step-num {
  width: 34px; height: 34px; border-radius: 10px; background: var(--accent); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 1rem; margin-bottom: 0.8rem;
}
.step h4 { margin: 0 0 0.35rem; font-size: 1rem; font-weight: 800; }
.step p { margin: 0; font-size: 0.9rem; color: var(--muted); line-height: 1.5; }

.remote-foot {
  display: flex; flex-wrap: wrap; gap: 1.4rem; align-items: center; justify-content: space-between;
  margin-top: 1.8rem; padding: 1.4rem 1.6rem;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
}
.remote-foot p { margin: 0; font-size: 0.96rem; max-width: 56ch; }
.remote-foot strong { color: var(--ink); }

/* ============================================================
   SERVICE AREAS
============================================================ */
.areas-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 2rem; margin-top: 2.2rem; align-items: stretch; }
.areas-list-box {
  background: var(--accent-tint); border: 1.5px solid color-mix(in srgb, var(--accent) 32%, #fff);
  border-radius: 16px; padding: 1.6rem;
}
.areas-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1.5rem; margin: 1rem 0 0; padding: 0; list-style: none; }
.areas-cols li { display: flex; gap: 0.5rem; align-items: center; font-size: 0.95rem; font-weight: 600; }
.areas-cols li svg { width: 15px; height: 15px; color: var(--accent); fill: none; flex: 0 0 auto; }
.areas-more { margin: 1.2rem 0 0; font-size: 0.9rem; color: var(--muted); }
.map-frame { border-radius: 16px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 16px 40px -34px rgba(28, 28, 28, 0.5); min-height: 320px; }
.map-frame iframe { display: block; width: 100%; height: 100%; min-height: 320px; border: 0; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.2rem; }
.testi-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.8rem;
  box-shadow: 0 16px 40px -34px rgba(28, 28, 28, 0.5);
}
.testi-mark { font-size: 2.6rem; line-height: 0.5; font-weight: 800; color: var(--accent); height: 0.7em; }
.testi-quote { margin: 0 0 1.4rem; font-size: 1.04rem; line-height: 1.62; color: var(--ink); }
.testi-meta { margin-top: auto; display: flex; align-items: center; gap: 0.85rem; padding-top: 1.2rem; border-top: 1px solid var(--line-2); }
.testi-avatar {
  width: 44px; height: 44px; flex: 0 0 auto; border-radius: 50%;
  background: var(--accent-tint-2); color: var(--accent-ink);
  display: grid; place-items: center; font-weight: 800; font-size: 0.92rem; letter-spacing: 0.02em;
}
.testi-meta b { display: block; font-size: 0.96rem; font-weight: 800; color: var(--ink); }
.testi-meta span { font-size: 0.85rem; color: var(--faint); font-weight: 600; }

/* ============================================================
   FINAL CTA
============================================================ */
.cta-band { background: var(--accent); color: #fff; }
.cta-inner {
  max-width: var(--wrap); margin: 0 auto; padding: clamp(2.8rem, 5vw, 4rem) 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1.6rem 2.5rem; align-items: center; justify-content: space-between;
}
.cta-inner h2 { margin: 0; font-size: clamp(1.6rem, 3.2vw, 2.3rem); font-weight: 800; letter-spacing: -0.02em; max-width: 18ch; }
.cta-inner p { margin: 0.7rem 0 0; font-size: 1.05rem; color: rgba(255, 255, 255, 0.86); max-width: 46ch; font-weight: 500; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.cta-band .btn-primary { background: #fff; color: var(--accent-ink); box-shadow: 0 14px 30px -16px rgba(0, 0, 0, 0.5); }
.cta-band .btn-primary:hover { background: #1c1c1c; color: #fff; }
.cta-band .btn-ghost { border-color: rgba(255, 255, 255, 0.55); color: #fff; }
.cta-band .btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.12); color: #fff; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer { background: var(--ink); color: #fff; }
.footer-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 3rem 1.5rem 2.2rem;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem;
}
.footer-brand .brand-mark { width: 42px; height: 42px; }
.footer-brand b { font-size: 1.05rem; font-weight: 800; display: block; }
.footer-brand .by { color: rgba(255, 255, 255, 0.6); font-size: 0.82rem; margin-top: 0.2rem; font-weight: 600; }
.footer-brand p { margin: 1rem 0 0; color: rgba(255, 255, 255, 0.66); font-size: 0.92rem; max-width: 38ch; }
.footer-col h4 {
  margin: 0 0 1rem; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; padding-bottom: 0.4rem; border-bottom: 2px solid var(--accent); display: inline-block;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer-col a {
  color: rgba(255, 255, 255, 0.8); text-decoration: none; font-size: 0.92rem;
  display: flex; align-items: center; gap: 0.55rem; transition: color 0.18s; word-break: break-word;
}
.footer-col a:hover { color: var(--accent); }
.footer-col a svg { width: 18px; height: 18px; stroke: currentColor; fill: none; flex: 0 0 auto; }
.footer-bottom {
  max-width: var(--wrap); margin: 0 auto; padding: 1.2rem 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; justify-content: space-between;
  font-size: 0.8rem; color: rgba(255, 255, 255, 0.5);
}
.footer-bottom a { color: rgba(255, 255, 255, 0.7); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 940px) {
  .hero[data-hero="split"] .hero-inner { grid-template-columns: 1fr; }
  .hero[data-hero="split"] .fixes { max-width: 460px; }
  .help-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .nav-links, .header-actions-extra { display: none; }
  .nav-toggle { display: flex; }
  .site-header.open .nav-links {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: center; gap: 0; background: var(--paper);
    border-bottom: 1px solid var(--line); padding: 0.5rem 0 1rem;
  }
  .site-header.open .nav-links a { padding: 0.8rem 1rem; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .pricing-grid, .steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .urgent-box { flex-direction: column; align-items: flex-start; }
  .areas-cols { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fixes-scan { transition: none; }
}
