/* ============================================================
   Quotelo — styles.css
   Design: Local Service Platform (Option 5)
   Navy · Soft Blue · Trust Green · Mobile-first
   ============================================================ */

:root {
  --navy-900:   #0a1e35;
  --navy-800:   #0f2640;
  --navy-700:   #1a3a5c;
  --navy-600:   #234d7a;
  --navy-500:   #2d6098;
  --blue-600:   #2e6da4;
  --blue-500:   #3d82bb;
  --blue-400:   #5a9fd4;
  --blue-100:   #d4e8f5;
  --blue-50:    #e8f1f9;
  --green-700:  #1e6b40;
  --green-600:  #27ae60;
  --green-500:  #2ecc71;
  --green-100:  #d4f0e0;
  --green-50:   #eaf7f0;
  --white:      #ffffff;
  --grey-50:    #f7f8fa;
  --grey-100:   #f4f6f9;
  --grey-200:   #e8ecf2;
  --grey-300:   #d1d8e4;
  --grey-500:   #8898aa;
  --grey-600:   #64748b;
  --grey-700:   #4a5568;
  --grey-900:   #1a2332;
  --red-500:    #e53e3e;
  --amber-500:  #d97706;

  --text-dark:  #1a2332;
  --text-body:  #374151;
  --text-muted: #64748b;
  --font:       -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --max-w:      1100px;
  --r:          8px;
  --r-lg:       12px;
  --r-xl:       16px;
  --shadow-xs:  0 1px 3px rgba(0,0,0,0.07);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.09);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.11);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); color: var(--text-body); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Utilities ── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
.container-narrow { max-width: 740px; }
.text-center { text-align: center; }

/* ── Typography ── */
h1, h2, h3, h4 { color: var(--text-dark); line-height: 1.22; font-weight: 700; }
h1 { font-size: clamp(1.875rem, 4.5vw, 2.875rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.125rem); }
h3 { font-size: 1.075rem; font-weight: 700; }
h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Sections ── */
.section { padding: 4.5rem 0; }
.section-light { background: var(--grey-100); }

.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header h2 { margin-bottom: 0.625rem; }
.section-sub { color: var(--text-muted); max-width: 620px; margin: 0 auto; font-size: 1rem; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-600);
  margin-bottom: 0.75rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.75rem 1.625rem;
  border-radius: var(--r);
  font-family: var(--font);
  font-size: 0.975rem;
  font-weight: 600;
  line-height: 1;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: background 0.16s, border-color 0.16s, color 0.16s, transform 0.14s, box-shadow 0.16s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-sm  { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-lg  { padding: 0.875rem 1.875rem; font-size: 1rem; }

.btn-primary       { background: var(--blue-600); color: var(--white); border-color: var(--blue-600); }
.btn-primary:hover { background: var(--navy-700); border-color: var(--navy-700); color: var(--white); }

.btn-outline       { background: transparent; color: var(--navy-700); border-color: var(--navy-700); }
.btn-outline:hover { background: var(--navy-700); color: var(--white); }

.btn-ghost         { background: transparent; color: var(--text-body); border-color: var(--grey-300); }
.btn-ghost:hover   { background: var(--grey-100); border-color: var(--grey-300); color: var(--text-dark); }

.btn-ghost-light       { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); color: var(--white); }

.btn-white       { background: var(--white); color: var(--navy-700); border-color: var(--white); }
.btn-white:hover { background: var(--blue-50); border-color: var(--blue-50); color: var(--navy-700); }

.btn-ghost-white       { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-ghost-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); color: var(--white); }

/* ══════════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════════ */
.top-bar {
  background: var(--navy-800);
  padding: 0.5rem 0;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.top-bar span { font-size: 0.78rem; color: rgba(255,255,255,0.65); }
.top-bar a    { font-size: 0.78rem; color: var(--blue-400); text-decoration: none; font-weight: 600; white-space: nowrap; }
.top-bar a:hover { color: var(--white); text-decoration: none; }

/* ══════════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy-700);
  box-shadow: 0 2px 16px rgba(0,0,0,0.28);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
  position: relative;
}
.nav-logo { display: flex; align-items: baseline; gap: 1px; text-decoration: none !important; flex-shrink: 0; }
.logo-mark { font-size: 1.25rem; font-weight: 800; color: var(--white); letter-spacing: -0.03em; }
.logo-tld  { font-size: 0.9rem; font-weight: 600; color: var(--blue-400); letter-spacing: -0.01em; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.28s ease;
}
.nav-open .nav-toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-open .nav-toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--navy-800);
  padding: 1.25rem 1.25rem 1.5rem;
  gap: 0.125rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 10px 24px rgba(0,0,0,0.3);
}
.nav-open .nav-links { display: flex; }
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.925rem;
  padding: 0.6rem 0.5rem;
  border-radius: var(--r);
  transition: color 0.14s, background 0.14s;
  text-decoration: none;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); text-decoration: none; }
.nav-links a.active { color: var(--white); font-weight: 600; }
.nav-cta-item { margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid rgba(255,255,255,0.07); }
.nav-cta-item .btn { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  background: linear-gradient(148deg, var(--navy-900) 0%, var(--navy-700) 55%, var(--navy-600) 100%);
  padding: 5rem 0 4.5rem;
  overflow: hidden;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.06);
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.125rem;
}
.eyebrow-pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-500);
  flex-shrink: 0;
}
.hero-content h1 { color: var(--white); margin-bottom: 1.125rem; }
.hero-sub { color: rgba(255,255,255,0.82); font-size: 1.075rem; line-height: 1.7; margin-bottom: 1.5rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.58);
}
.hero-trust-row span { display: flex; align-items: center; gap: 0.375rem; }
.tc { color: var(--green-500); font-weight: 700; }

/* Hero card */
.hero-visual { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.hero-card {
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  width: 100%;
  max-width: 320px;
}
.hero-card-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hero-card-icon { font-size: 1.5rem; }
.hero-card-title { font-weight: 700; color: var(--white); font-size: 0.95rem; }
.hero-checklist { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.375rem; }
.hero-checklist li { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.82); font-size: 0.9rem; }
.hc { color: var(--green-500); font-weight: 700; font-size: 0.82rem; flex-shrink: 0; }
.hero-card-cta {
  display: block;
  text-align: center;
  background: var(--blue-600);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1rem;
  border-radius: var(--r);
  text-decoration: none !important;
  transition: background 0.16s;
}
.hero-card-cta:hover { background: var(--blue-500); }
.hero-card-note { font-size: 0.78rem; color: rgba(255,255,255,0.4); text-align: center; }

/* ══════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════ */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--grey-200); padding: 1.125rem 0; }
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0;
}
.trust-stat { display: flex; flex-direction: column; align-items: center; padding: 0 1.5rem; }
.ts-num   { font-size: 1.25rem; font-weight: 800; color: var(--navy-700); line-height: 1.1; }
.ts-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; text-align: center; }
.trust-div { width: 1px; height: 32px; background: var(--grey-200); }

/* ══════════════════════════════════════════════
   PROBLEM
══════════════════════════════════════════════ */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}
.problem-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r);
  padding: 1.125rem 1.25rem;
  box-shadow: var(--shadow-xs);
}
.prob-icon { font-size: 1.375rem; flex-shrink: 0; margin-top: 0.05rem; }
.problem-card p { color: var(--text-body); font-size: 0.95rem; line-height: 1.5; margin: 0; }

/* ══════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  padding: 2rem 1.625rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.125rem;
  flex-shrink: 0;
}
.step-card h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.step-card p  { color: var(--text-muted); font-size: 0.93rem; line-height: 1.6; margin-bottom: 1.125rem; flex-grow: 1; }
.step-link    { font-size: 0.875rem; font-weight: 600; color: var(--blue-600); text-decoration: none; margin-top: auto; }
.step-link:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════
   CHECKLIST
══════════════════════════════════════════════ */
.checklist-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
.checklist-text h2   { margin-bottom: 1rem; }
.checklist-text p    { color: var(--text-muted); }
.checklist-note      { font-size: 0.875rem !important; font-style: italic; color: var(--grey-600) !important; margin-bottom: 1.5rem !important; }
.checklist-ctas      { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.5rem; }

.checklist-box {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.ci {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--grey-200);
}
.ci:last-child { border-bottom: none; }
.ci-check { color: var(--green-600); font-weight: 700; font-size: 0.9rem; flex-shrink: 0; margin-top: 0.15rem; }
.ci div { display: flex; flex-direction: column; gap: 0.1rem; }
.ci strong { font-size: 0.93rem; color: var(--text-dark); font-weight: 600; }
.ci p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* ══════════════════════════════════════════════
   WHY DIFFERENT — COMPARISON
══════════════════════════════════════════════ */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: center;
}
.compare-vs {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--grey-500);
  padding: 0.25rem 0;
}
.compare-col {
  border-radius: var(--r-lg);
  padding: 1.625rem;
  border: 1px solid var(--grey-200);
}
.compare-col.bad  { background: var(--grey-50); }
.compare-col.good { background: var(--green-50); border-color: var(--green-100); }
.compare-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1rem;
}
.compare-label-bad  { color: var(--grey-500); }
.compare-label-good { color: var(--green-700); }
.compare-list { display: flex; flex-direction: column; gap: 0.625rem; }
.bad-item, .good-item { font-size: 0.93rem; line-height: 1.5; padding-left: 1.375rem; position: relative; }
.bad-item  { color: var(--grey-700); }
.bad-item::before  { content: '–'; position: absolute; left: 0; color: var(--grey-500); font-weight: 700; }
.good-item { color: var(--text-body); }
.good-item::before { content: '✓'; position: absolute; left: 0; color: var(--green-600); font-weight: 700; font-size: 0.85rem; }
.why-disclaimer {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-left: 3px solid var(--blue-600);
  border-radius: var(--r);
  padding: 1rem 1.25rem;
  max-width: 720px;
  margin: 0 auto;
}
.why-disclaimer p { font-size: 0.875rem; color: var(--grey-700); margin: 0; line-height: 1.7; }

/* ══════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════ */
.section-cta-band {
  background: var(--navy-700);
  padding: 4rem 0;
}
.cta-band-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.cta-band-text h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band-text p  { color: rgba(255,255,255,0.75); font-size: 1rem; margin: 0; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ══════════════════════════════════════════════
   CONTRACTORS
══════════════════════════════════════════════ */
.contractor-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
.contractor-text h2   { margin-bottom: 1rem; }
.contractor-text p    { color: var(--text-body); }
.contractor-note      { font-size: 0.875rem !important; font-style: italic; color: var(--text-muted) !important; margin-bottom: 1.5rem !important; }
.contractor-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  padding: 1.625rem;
  box-shadow: var(--shadow-sm);
}
.contractor-card-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.contractor-list { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.contractor-list li {
  font-size: 0.9rem;
  color: var(--text-body);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}
.contractor-list li::before { content: '→'; position: absolute; left: 0; color: var(--blue-600); font-size: 0.85rem; }
.contractor-card-link { font-size: 0.875rem; font-weight: 600; color: var(--blue-600); }
.contractor-card-link:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════
   FREE TOOLS
══════════════════════════════════════════════ */
.tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.tool-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.16s, transform 0.14s;
}
.tool-card:not(.tool-card-soon):hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.tool-card-soon { opacity: 0.65; }
.tool-top { display: flex; align-items: center; justify-content: space-between; }
.tool-icon-wrap { font-size: 1.75rem; }
.tool-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
}
.badge-free { background: var(--green-50); color: var(--green-700); }
.badge-paid { background: #fff3e0; color: #b45309; }
.badge-soon { background: var(--grey-200); color: var(--grey-600); }
.tool-card h3 { font-size: 1rem; color: var(--navy-700); margin: 0; }
.tool-card p  { font-size: 0.9rem; color: var(--text-muted); flex-grow: 1; margin: 0; line-height: 1.55; }
.tool-link      { font-size: 0.875rem; font-weight: 600; color: var(--blue-600); margin-top: auto; }
.tool-link:hover { text-decoration: underline; }
.tool-link-muted { font-size: 0.875rem; color: var(--grey-500); margin-top: auto; }
.tools-footer-row { text-align: center; margin-top: 2rem; }

/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
#about .section-header { margin-bottom: 1.5rem; }
#about p { color: var(--text-body); max-width: 680px; margin: 0 auto 1rem; text-align: center; }

/* ══════════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════════ */
#final-cta h2       { margin-bottom: 0.75rem; }
#final-cta .section-sub { margin-bottom: 1.875rem; }
.final-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* ══════════════════════════════════════════════
   DISCLAIMER BAR
══════════════════════════════════════════════ */
.disclaimer-bar {
  background: #f0f4f8;
  border-top: 1px solid var(--grey-300);
  padding: 1.25rem 0;
}
.disclaimer-bar p {
  font-size: 0.79rem;
  color: var(--grey-600);
  line-height: 1.75;
  text-align: center;
  margin: 0;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.72);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-logo     { font-size: 1.25rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.footer-logo-tld { color: var(--blue-400); font-weight: 600; }
.footer-tagline  { font-size: 0.85rem; color: rgba(255,255,255,0.5); font-style: italic; margin-bottom: 0.375rem; line-height: 1.6; }
.footer-phase    { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-bottom: 0.875rem; }
.footer-email    { color: var(--blue-400); font-size: 0.875rem; }
.footer-email:hover { color: var(--white); text-decoration: underline; }
.site-footer h4  { font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255,255,255,0.85); margin-bottom: 0.875rem; }
.footer-nav-col ul { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-nav-col ul li, .footer-nav-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.58); }
.footer-nav-col ul li a:hover { color: var(--white); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem; }
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.35); text-align: center; line-height: 1.8; margin: 0; }

/* ══════════════════════════════════════════════
   RESPONSIVE — 600px+
══════════════════════════════════════════════ */
@media (min-width: 600px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-grid   { grid-template-columns: repeat(2, 1fr); }
  .compare-grid { grid-template-columns: 1fr auto 1fr; align-items: stretch; }
  .compare-vs   { writing-mode: horizontal-tb; display: flex; align-items: center; padding: 0 0.5rem; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — 900px+
══════════════════════════════════════════════ */
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav-links {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: none;
    padding: 0;
    gap: 0.125rem;
    border: none;
    box-shadow: none;
    align-items: center;
  }
  .nav-links a { padding: 0.4rem 0.625rem; font-size: 0.875rem; }
  .nav-cta-item { margin: 0 0 0 0.5rem; padding: 0; border: none; }
  .nav-cta-item .btn { width: auto; }

  .hero { padding: 6rem 0 5rem; }
  .hero-layout { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .hero-visual { align-items: flex-end; }
  .hero-card { max-width: 300px; }

  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .checklist-layout { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .problem-grid { grid-template-columns: repeat(3, 1fr); }
  .contractor-layout { grid-template-columns: 3fr 2fr; gap: 3rem; }
  .cta-band-layout { grid-template-columns: 1fr auto; gap: 3rem; }
  .footer-grid { grid-template-columns: 2fr 1fr 1.25fr; gap: 3rem; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — 1100px+
══════════════════════════════════════════════ */
@media (min-width: 1100px) {
  .section { padding: 5.5rem 0; }
  .hero { padding: 7rem 0 6rem; }
}

/* ══════════════════════════════════════════════
   ACCESSIBILITY
══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
}
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--blue-400);
  outline-offset: 3px;
  border-radius: 3px;
}
