/* Next Door Hauling — design system (mobile-first) */
:root {
  --green-950: #0b1610;
  --green-900: #0f1f14;
  --green-800: #1a3c2a;
  --green-700: #24543a;
  --green-600: #2f6b48;
  --green-100: #e7f2eb;
  --green-50: #f3faf6;
  --amber-500: #e8a317;
  --amber-400: #f0b93a;
  --amber-100: #fff6e0;
  --ink: #142019;
  --ink-soft: #3d4f44;
  --muted: #5c6f64;
  --line: #d5e2da;
  --surface: #ffffff;
  --surface-2: #f6faf7;
  --danger: #b42318;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 12px 40px rgba(15, 31, 20, 0.12);
  --shadow-sm: 0 4px 16px rgba(15, 31, 20, 0.08);
  --font: "DM Sans", system-ui, -apple-system, Segoe UI, sans-serif;
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --container: 1120px;
  --header-h: 72px;
  --sticky-cta-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.55;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--sticky-cta-h) + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 900px) {
  body { padding-bottom: 0; }
  .sticky-cta { display: none !important; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-700); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--green-800); }
h1, h2, h3, h4 {
  font-family: var(--display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--green-900);
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.55rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.2rem; font-family: var(--font); letter-spacing: -0.01em; }
p { margin: 0 0 1rem; color: var(--ink-soft); }
ul { margin: 0; padding: 0; }

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.narrow { width: min(100% - 2rem, 720px); margin-inline: auto; }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--amber-500); color: var(--green-950);
  padding: 0.75rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font); font-weight: 600; font-size: 0.98rem;
  border-radius: 999px; border: 2px solid transparent;
  padding: 0.75rem 1.25rem; text-decoration: none; cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--green-800); color: #fff; }
.btn-primary:hover { background: var(--green-700); color: #fff; }
.btn-accent { background: var(--amber-500); color: var(--green-950); }
.btn-accent:hover { background: var(--amber-400); color: var(--green-950); }
.btn-light { background: rgba(255,255,255,0.95); color: var(--green-900); }
.btn-light:hover { background: #fff; color: var(--green-900); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--green-800); }
.btn-ghost:hover { border-color: var(--green-700); color: var(--green-900); background: var(--green-50); }
.btn-lg { padding: 0.95rem 1.5rem; font-size: 1.05rem; }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.9rem; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(213, 226, 218, 0.8);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  min-height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; color: inherit; }
.brand:hover { text-decoration: none; color: inherit; }
.brand-mark { border-radius: 10px; object-fit: cover; box-shadow: var(--shadow-sm); }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--display); font-weight: 700; color: var(--green-900); font-size: 1.1rem; }
.brand-sub { font-size: 0.75rem; color: var(--muted); font-weight: 500; }

.nav-desktop { display: none; align-items: center; gap: 1rem; }
.nav-desktop a { text-decoration: none; color: var(--ink-soft); font-weight: 500; font-size: 0.95rem; }
.nav-desktop a:hover, .nav-desktop a.is-active { color: var(--green-800); }
.header-phone { font-weight: 700 !important; color: var(--green-800) !important; white-space: nowrap; }

.header-actions-mobile { display: flex; align-items: center; gap: 0.35rem; }
.icon-call {
  display: inline-flex; width: 42px; height: 42px; border-radius: 999px;
  align-items: center; justify-content: center; color: var(--green-800);
  background: var(--green-50); text-decoration: none;
}
.nav-toggle {
  width: 44px; height: 44px; border: 0; background: transparent; border-radius: 10px;
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; padding: 10px; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--green-900); border-radius: 2px; transition: .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 1rem 1.25rem 1.25rem;
}
.nav-mobile[hidden] { display: none !important; }
.nav-mobile nav { display: flex; flex-direction: column; gap: 0.65rem; }
.nav-mobile a { text-decoration: none; color: var(--ink); font-weight: 600; padding: 0.45rem 0; }
.mobile-phone { color: var(--green-700) !important; }

@media (min-width: 960px) {
  .nav-desktop { display: flex; }
  .header-actions-mobile { display: none; }
  .nav-mobile { display: none !important; }
}

/* Hero */
.hero { position: relative; min-height: min(88vh, 720px); display: grid; align-items: end; color: #fff; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,22,16,0.25) 0%, rgba(11,22,16,0.72) 55%, rgba(11,22,16,0.92) 100%),
    linear-gradient(90deg, rgba(11,22,16,0.65) 0%, rgba(11,22,16,0.2) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 5rem 0 3rem; max-width: 760px; margin-left: max(1rem, calc((100% - var(--container)) / 2)); margin-right: 1rem; width: auto; }
@media (min-width: 1120px) {
  .hero-content { margin-left: max(0px, calc((100% - var(--container)) / 2)); }
}
.hero h1, .page-hero h1, .page-hero-content h1 { color: #fff; }
.hero .section-lead, .hero-lead, .page-hero .section-lead, .page-hero-content .section-lead { color: rgba(255,255,255,0.9); font-size: 1.12rem; max-width: 38rem; }
.hero-lead { margin-bottom: 1.5rem; }
.eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--amber-400); margin: 0 0 0.75rem;
}
.hero-actions, .inline-actions, .section-cta, .cta-band-actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center;
}
.hero-points {
  list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem 1.1rem;
  margin-top: 1.5rem; padding: 0; color: rgba(255,255,255,0.88); font-size: 0.95rem; font-weight: 500;
}
.hero-points li { display: flex; align-items: center; gap: 0.4rem; }
.hero-points li::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--amber-500); flex: 0 0 auto;
}

/* Trust bar */
.trust-bar { background: var(--green-800); color: #fff; }
.trust-bar-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  padding: 1.25rem 0;
}
@media (min-width: 800px) {
  .trust-bar-grid { grid-template-columns: repeat(4, 1fr); padding: 1.5rem 0; }
}
.trust-stat { text-align: center; padding: 0.35rem; }
.trust-value { display: block; font-family: var(--display); font-size: 1.35rem; font-weight: 700; color: var(--amber-400); }
.trust-label { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.82); margin-top: 0.2rem; }

/* Sections */
.section { padding: 3.5rem 0; }
.section-alt { background: var(--surface-2); }
.section-dark { background: var(--green-900); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-head { max-width: 640px; margin-bottom: 2rem; }
.section-head-light .section-lead, .section-head-light p { color: rgba(255,255,255,0.8); }
.section-lead { font-size: 1.08rem; max-width: 40rem; }
.section-cta { margin-top: 2rem; }
.subhead { margin-top: 1.5rem; margin-bottom: 0.75rem; }

/* Cards */
.card-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .three-up { grid-template-columns: repeat(3, 1fr); }
}
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.plain-card { padding: 1.35rem; }
.plain-card:hover { transform: none; }
.card-image { display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--green-100); }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.card:hover .card-image img { transform: scale(1.04); }
.card-body { padding: 1.15rem 1.2rem 1.35rem; display: flex; flex-direction: column; gap: 0.45rem; flex: 1; }
.card-body h2, .card-body h3 { margin: 0; font-size: 1.15rem; }
.card-body h2 a, .card-body h3 a { text-decoration: none; color: inherit; }
.card-body p { margin: 0; flex: 1; font-size: 0.98rem; }
.text-link { font-weight: 700; text-decoration: none; color: var(--green-700); margin-top: 0.35rem; }
.text-link:hover { text-decoration: underline; color: var(--green-900); }
.mini-bullets { list-style: none; margin: 0.4rem 0 0.6rem; padding: 0; }
.mini-bullets li {
  position: relative; padding-left: 1rem; font-size: 0.9rem; color: var(--muted); margin-bottom: 0.3rem;
}
.mini-bullets li::before {
  content: ""; position: absolute; left: 0; top: 0.55em; width: 6px; height: 6px;
  border-radius: 50%; background: var(--amber-500);
}

/* Process */
.process-grid {
  list-style: none; display: grid; gap: 1rem;
  grid-template-columns: 1fr; counter-reset: none;
}
@media (min-width: 800px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.35rem; box-shadow: var(--shadow-sm);
}
.process-num {
  display: inline-block; font-family: var(--display); font-weight: 700;
  color: var(--amber-500); font-size: 1.4rem; margin-bottom: 0.5rem;
}
.process-step h3 { margin-bottom: 0.4rem; }
.process-step p { margin: 0; font-size: 0.95rem; }

/* Split layouts */
.split {
  display: grid; gap: 2rem; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .split-reverse { direction: rtl; }
  .split-reverse > * { direction: ltr; }
}
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.diff-list { list-style: none; display: grid; gap: 1rem; margin: 1.25rem 0; }
.diff-list li { display: grid; gap: 0.25rem; padding-left: 1rem; border-left: 3px solid var(--amber-500); }
.diff-list strong { color: var(--green-900); }
.diff-list span { color: var(--ink-soft); font-size: 0.96rem; }

/* Testimonials */
.testimonial-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .testimonial-grid { grid-template-columns: 1fr 1fr; } }
.testimonial-card {
  margin: 0; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 1.35rem; box-shadow: none;
}
.testimonial-card p { color: rgba(255,255,255,0.92); font-size: 1.02rem; }
.testimonial-card footer { display: flex; flex-direction: column; gap: 0.15rem; margin-top: 1rem; }
.testimonial-card cite { font-style: normal; font-weight: 700; color: var(--amber-400); }
.testimonial-card span { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

/* Area */
.chip-list { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.5rem 0 1rem; }
.chip-list li, .chip-link {
  background: var(--green-100); color: var(--green-800); border-radius: 999px;
  padding: 0.4rem 0.85rem; font-size: 0.9rem; font-weight: 600;
}
.chip-list-muted li { background: #eef2f0; color: var(--ink-soft); }
.chip-links { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip-link { text-decoration: none; border: 1px solid var(--line); background: #fff; }
.chip-link:hover { background: var(--green-50); color: var(--green-900); }
.area-card {
  background: linear-gradient(160deg, var(--green-800), var(--green-950));
  border-radius: var(--radius); color: #fff; padding: 0.35rem;
  box-shadow: var(--shadow);
}
.area-card-inner { padding: 1.75rem; }
.area-kicker { text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.75rem; font-weight: 700; color: var(--amber-400); margin: 0 0 0.4rem; }
.area-city { font-family: var(--display); font-size: 2rem; font-weight: 700; margin: 0; color: #fff; }
.area-meta { color: rgba(255,255,255,0.75); margin: 0.25rem 0 1rem; }
.area-card hr { border: 0; border-top: 1px solid rgba(255,255,255,0.15); margin: 1rem 0; }
.area-promise { color: rgba(255,255,255,0.88); }
.area-card .btn-ghost { border-color: rgba(255,255,255,0.3); color: #fff; }
.area-card .btn-ghost:hover { background: rgba(255,255,255,0.08); color: #fff; }
.fine-print { font-size: 0.9rem; color: var(--muted); }
.section-dark .fine-print { color: rgba(255,255,255,0.65); }

/* FAQ */
.faq-list { display: grid; gap: 0.65rem; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0.25rem 1rem;
}
.faq-item summary {
  cursor: pointer; font-weight: 700; color: var(--green-900);
  padding: 0.9rem 0; list-style: none; display: flex; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--amber-500); font-size: 1.3rem; font-weight: 500; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin: 0 0 1rem; }

/* CTA band */
.cta-band {
  background:
    radial-gradient(circle at top right, rgba(232,163,23,0.2), transparent 40%),
    linear-gradient(120deg, var(--green-800), var(--green-950));
  color: #fff;
}
.cta-band h2 { color: #fff; margin-bottom: 0.4rem; }
.cta-band p { color: rgba(255,255,255,0.85); margin: 0; }
.cta-band-inner {
  display: flex; flex-direction: column; gap: 1.25rem;
  align-items: flex-start; justify-content: space-between;
}
@media (min-width: 800px) {
  .cta-band-inner { flex-direction: row; align-items: center; }
}

/* Page heroes */
.page-hero {
  background: linear-gradient(145deg, var(--green-900), var(--green-700));
  color: #fff; padding: 3.25rem 0 2.75rem;
}
.page-hero-compact { padding: 2.5rem 0 1.5rem; }
.page-hero .eyebrow { color: var(--amber-400); }
/* Links in page heroes only — never override .btn text (amber-on-amber fails contrast) */
.page-hero a:not(.btn) { color: var(--amber-400); }
.page-hero .btn-accent { background: var(--amber-500); color: var(--green-950); }
.page-hero .btn-light { background: rgba(255, 255, 255, 0.95); color: var(--green-900); }
.page-hero-media { position: relative; min-height: 360px; display: grid; align-items: end; padding: 0; background: var(--green-900); }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-content { position: relative; z-index: 1; padding: 4rem 0 2.5rem; }

/* Quote form */
.quote-layout {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) {
  .quote-layout { grid-template-columns: 1.4fr 0.9fr; align-items: start; }
}
.quote-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.35rem; box-shadow: var(--shadow-sm);
}
@media (min-width: 640px) { .quote-form { padding: 1.75rem; } }
.form-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .field-full { grid-column: 1 / -1; }
}
.field label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 0.35rem; color: var(--green-900); }
.req { color: var(--amber-500); }
.optional { color: var(--muted); font-weight: 500; font-size: 0.85rem; }
.field input, .field select, .field textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: 10px;
  padding: 0.75rem 0.85rem; font: inherit; color: var(--ink); background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green-600); box-shadow: 0 0 0 3px rgba(47,107,72,0.15);
}
.field.has-error input, .field.has-error select, .field.has-error textarea {
  border-color: var(--danger);
}
.field-error { color: var(--danger); font-size: 0.85rem; margin: 0.35rem 0 0; }
.field-check { display: flex; align-items: flex-start; }
.check-label { display: flex; gap: 0.65rem; align-items: flex-start; font-weight: 500; color: var(--ink-soft); cursor: pointer; }
.check-label input { width: auto; margin-top: 0.25rem; }
.form-actions { margin-top: 1.25rem; }
.form-fine { text-align: center; font-size: 0.9rem; color: var(--muted); margin: 0.85rem 0 0; }
.form-alert {
  background: #fef3f2; color: var(--danger); border: 1px solid #fecdca;
  border-radius: 10px; padding: 0.75rem 1rem; margin-bottom: 1rem; font-weight: 600;
}
.hp-field { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.aside-card {
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.35rem; margin-bottom: 1rem;
}
.aside-card h2, .aside-card h3 { font-size: 1.15rem; margin-bottom: 0.65rem; }
.aside-card-accent {
  background: linear-gradient(160deg, var(--green-800), var(--green-950));
  color: #fff; border: 0;
}
.aside-card-accent h2, .aside-card-accent p { color: #fff; }
.aside-card-accent a { color: var(--amber-400); }
.aside-phone { font-family: var(--display); font-size: 1.6rem; font-weight: 700; margin: 0.25rem 0 0.5rem; }
.aside-phone a { text-decoration: none; }
.aside-steps { margin: 0; padding-left: 1.15rem; color: var(--ink-soft); }
.aside-steps li { margin-bottom: 0.5rem; }
.aside-list { list-style: none; }
.aside-list li { padding: 0.4rem 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.aside-list li:last-child { border-bottom: 0; }
.sticky-aside { position: static; }
@media (min-width: 900px) { .sticky-aside { position: sticky; top: calc(var(--header-h) + 1rem); } }

.two-col { display: grid; gap: 2rem; }
@media (min-width: 800px) { .two-col { grid-template-columns: 1fr 1fr; } }

.check-list { list-style: none; margin: 1rem 0 1.5rem; }
.check-list li {
  position: relative; padding: 0.45rem 0 0.45rem 1.7rem; color: var(--ink-soft);
}
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0.45rem;
  color: var(--green-700); font-weight: 800;
}

.thanks-card { text-align: center; padding: 3rem 0; }
.ref-line { background: var(--green-50); display: inline-block; padding: 0.5rem 1rem; border-radius: 999px; font-size: 0.95rem; }
.thanks-card .inline-actions { justify-content: center; margin: 1.5rem 0; }

.prose h2 { margin-top: 2rem; }
.prose ul { padding-left: 1.2rem; margin-bottom: 1rem; color: var(--ink-soft); }

/* Footer */
.site-footer {
  background: var(--green-950); color: rgba(255,255,255,0.82); padding: 3rem 0 2rem;
  margin-top: 0;
}
.footer-grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.4fr 0.8fr 1fr 1.1fr; } }
.footer-brand .brand-name, .footer-brand .brand-sub { color: #fff; }
.footer-brand .brand-sub { color: rgba(255,255,255,0.65); }
.footer-blurb, .footer-hours { font-size: 0.95rem; color: rgba(255,255,255,0.72); }
.footer-heading {
  font-family: var(--font); font-size: 0.8rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--amber-400); margin-bottom: 0.85rem;
}
.footer-links { list-style: none; }
.footer-links a, .footer-links span { color: rgba(255,255,255,0.82); text-decoration: none; font-size: 0.95rem; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-links li { margin-bottom: 0.45rem; }
.footer-cta-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 1.25rem;
}
.footer-cta-card h3 { color: #fff; font-size: 1.15rem; }
.footer-cta-card p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.footer-cta-card .btn-ghost { border-color: rgba(255,255,255,0.25); color: #fff; margin-top: 0.5rem; }
.footer-cta-card .btn-ghost:hover { background: rgba(255,255,255,0.08); color: #fff; }
.footer-cta-card .btn-accent { margin-bottom: 0.5rem; }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between;
  font-size: 0.88rem; color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.75); }
.footer-note { margin: 0; }

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem;
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255,255,255,0.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(15,31,20,0.08);
}
.sticky-cta .btn { width: 100%; }

/* Flashes */
.flash-wrap { padding-top: 1rem; }
.flash { padding: 0.85rem 1rem; border-radius: 10px; font-weight: 600; }
.flash-success { background: var(--green-100); color: var(--green-800); }
.flash-error { background: #fef3f2; color: var(--danger); }

/* Utilities */
.page-quote .sticky-cta { display: none; } /* form page already is the CTA */

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