/* ============================================================
   ClearOut Trash Pickup — shared stylesheet
   ============================================================ */
:root {
  --green-dark: #065F46;
  --green: #15803D;
  --green-bright: #22C55E;
  --green-soft: #ECFDF5;
  --text: #0F172A;
  --muted: #64748B;
  --border: #E5E7EB;
  --white: #FFFFFF;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 2px 4px -2px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 12px 24px -8px rgba(15, 23, 42, 0.12), 0 4px 8px -4px rgba(15, 23, 42, 0.06);
  --radius: 16px;
  --radius-lg: 22px;
  --maxw: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

section { padding: 84px 0; }

.eyebrow {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

h1.page-title,
h2.section-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--text);
}
h1.page-title { font-size: clamp(32px, 5vw, 48px); }

.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 52px;
  font-size: 17px;
}

/* Sub-page header band */
.page-head {
  padding: 64px 0 20px;
}
.page-head .section-sub { margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 26px;
  border-radius: 14px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }
.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 6px 16px -6px rgba(21, 128, 61, 0.55);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 10px 22px -8px rgba(21, 128, 61, 0.6); }
.btn-secondary {
  background: var(--white);
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.btn-ghost-light {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Nav ---------- */
header.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.logo { display: flex; align-items: center; gap: 11px; }
.logo-mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--green-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.logo-mark svg { width: 22px; height: 22px; }
.logo-text { line-height: 1.1; }
.logo-text b { display: block; font-size: 18px; font-weight: 800; letter-spacing: -0.01em; }
.logo-text span { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a.link {
  font-size: 15px; font-weight: 600; color: var(--muted);
  transition: color 0.15s ease;
  position: relative;
}
.nav-links a.link:hover { color: var(--text); }
.nav-links a.link.active { color: var(--green); }
.nav-links a.link.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 3px; border-radius: 2px;
  background: var(--green);
}

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 11px 20px; font-size: 15px; }

.hamburger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  align-items: center; justify-content: center;
  color: var(--text);
}
.hamburger svg { width: 22px; height: 22px; }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 24px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.mobile-menu.open { display: flex; }
.mobile-menu a.link {
  padding: 14px 4px;
  font-size: 17px; font-weight: 600;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.mobile-menu a.link.active { color: var(--green); }
.mobile-menu .btn { margin-top: 18px; }

/* ---------- Hero (home) ---------- */
.hero { padding-top: 60px; padding-bottom: 40px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--green); }
.hero p.lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }

.badges { display: flex; flex-wrap: wrap; gap: 10px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 14px; font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.badge svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.2;
}

/* Image slots (placeholder shows if image file missing) */
.img-slot {
  position: relative;
  width: 100%; height: 100%;
  background:
    linear-gradient(135deg, rgba(6,95,70,0.06), rgba(34,197,94,0.10)),
    var(--green-soft);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  color: var(--green);
  text-align: center; padding: 24px;
}
.img-slot svg { width: 54px; height: 54px; opacity: 0.85; }
.img-slot .cap { font-size: 14px; font-weight: 700; color: var(--green-dark); }
.img-slot .sub { font-size: 12.5px; color: var(--muted); font-weight: 500; max-width: 260px; }
.img-slot > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: 2;
}

/* ---------- Cards ---------- */
.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d6f5e2; }
.icon-circle {
  width: 54px; height: 54px;
  border-radius: 15px;
  background: var(--green-soft);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.icon-circle svg { width: 27px; height: 27px; }
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 14.5px; color: var(--muted); }

.section-cta-row { text-align: center; margin-top: 44px; }

/* ---------- How it works ---------- */
.soft { background: var(--green-soft); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}
.step { text-align: center; position: relative; }
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid #d6f5e2;
  position: relative; z-index: 2;
}
.step-num svg { width: 28px; height: 28px; }
.step .label {
  display: inline-block;
  font-size: 12px; font-weight: 700; color: var(--green);
  background: rgba(34,197,94,0.14);
  padding: 3px 11px; border-radius: 999px;
  margin-bottom: 8px;
}
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--muted); max-width: 220px; margin: 0 auto; }
.steps::before {
  content: "";
  position: absolute;
  top: 32px; left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, #c7ead6 0 8px, transparent 8px 16px);
  z-index: 1;
}

/* ---------- Pickup banner ---------- */
.pickup-banner {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex; align-items: center; gap: 24px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.pickup-banner .pb-icon {
  width: 58px; height: 58px; flex-shrink: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
.pickup-banner .pb-icon svg { width: 30px; height: 30px; }
.pickup-banner h3 { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.pickup-banner p { font-size: 15px; color: rgba(255,255,255,0.85); }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
}
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.about-text h1, .about-text h2 { text-align: left; }
.about-text h2 { font-size: clamp(26px, 3.6vw, 36px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 20px; }
.about-text p { font-size: 17px; color: var(--muted); margin-bottom: 18px; }
.about-text .signoff {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; color: var(--green-dark);
  background: var(--green-soft);
  padding: 12px 18px; border-radius: 12px;
  font-size: 15px;
}
.about-text .signoff svg { width: 20px; height: 20px; color: var(--green); }

/* Home about teaser strip */
.about-teaser {
  display: flex; align-items: center; gap: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}
.about-teaser .thumb {
  width: 84px; height: 84px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 3px solid var(--green-soft);
  box-shadow: var(--shadow-sm);
}
.about-teaser .thumb img { width: 100%; height: 100%; object-fit: cover; object-position: 65% 20%; }
.about-teaser .tcopy { flex: 1; min-width: 240px; }
.about-teaser .tcopy h3 { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.about-teaser .tcopy p { font-size: 14.5px; color: var(--muted); }

/* ---------- Pricing ---------- */
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d6f5e2; }
.price-card .icon-circle { margin: 0 auto 16px; }
.price-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.price-card .starting { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.price-card .amount {
  font-size: 40px; font-weight: 800; color: var(--green);
  letter-spacing: -0.02em; margin: 4px 0 12px;
}
.price-card p { font-size: 14px; color: var(--muted); flex: 1; }
.price-disclaimer {
  text-align: center; color: var(--muted);
  font-size: 14px; margin-top: 28px;
}

/* ---------- Important notes ---------- */
.notes {
  background: var(--green-soft);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.notes h3 { font-size: 20px; font-weight: 800; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.notes h3 svg { width: 24px; height: 24px; color: var(--green); }
.notes ul { list-style: none; display: grid; gap: 14px; }
.notes li { display: flex; gap: 12px; font-size: 15.5px; color: #334155; align-items: flex-start; }
.notes li svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; margin-top: 2px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item.open { border-color: #cdeede; box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px;
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 16.5px; font-weight: 700; color: var(--text);
  text-align: left;
}
.faq-q .chev {
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 8px; background: var(--green-soft); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s ease, background 0.2s ease;
}
.faq-q .chev svg { width: 18px; height: 18px; }
.faq-item.open .chev { transform: rotate(180deg); background: var(--green); color: var(--white); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a p { padding: 0 22px 22px; color: var(--muted); font-size: 15.5px; }

/* ---------- Final CTA ---------- */
.final-cta { padding: 40px 0 90px; }
.final-cta-inner {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  flex-wrap: wrap;
}
.final-cta-inner .cta-copy { display: flex; align-items: center; gap: 20px; }
.final-cta-inner .cta-icon {
  width: 60px; height: 60px; flex-shrink: 0;
  background: rgba(255,255,255,0.15); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
.final-cta-inner .cta-icon svg { width: 30px; height: 30px; }
.final-cta-inner h2 { font-size: 26px; font-weight: 800; line-height: 1.2; }
.final-cta-inner p { color: rgba(255,255,255,0.85); font-size: 16px; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 54px 0 30px;
}
.footer-top {
  display: flex; justify-content: space-between; gap: 30px;
  flex-wrap: wrap;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-mark { background: rgba(34,197,94,0.18); color: var(--green-bright); }
.footer-brand .logo-text b { color: var(--white); }
.footer-brand .logo-text span { color: rgba(255,255,255,0.55); }
.footer-brand p { margin-top: 14px; font-size: 14.5px; max-width: 280px; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.footer-links a { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.75); transition: color 0.15s ease; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 14px;
  flex-wrap: wrap;
  font-size: 13.5px; color: rgba(255,255,255,0.5);
}
.footer-bottom .tags { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.footer-bottom .tags span { color: rgba(255,255,255,0.65); }

/* ---------- Quote modal ---------- */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  align-items: flex-start; justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
}
.modal-overlay.open { display: flex; animation: fade 0.2s ease; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 560px; width: 100%;
  box-shadow: var(--shadow-lg);
  animation: pop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  margin: auto 0;
}
@keyframes pop { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }
.modal-header {
  padding: 26px 28px 20px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
}
.modal-header h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; }
.modal-header p { font-size: 14.5px; color: var(--muted); margin-top: 4px; }
.modal-close {
  width: 38px; height: 38px; flex-shrink: 0;
  border: 1px solid var(--border); border-radius: 10px;
  background: var(--white); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: background 0.15s ease;
}
.modal-close:hover { background: var(--green-soft); color: var(--green); }
.modal-close svg { width: 20px; height: 20px; }
.modal-body { padding: 24px 28px 28px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 7px; }
.field label .req { color: var(--green); }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: inherit; font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 11px;
  background: var(--white); color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.15);
}
.field textarea { resize: vertical; min-height: 84px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.file-drop {
  border: 1.5px dashed var(--border);
  border-radius: 11px; padding: 18px;
  text-align: center; cursor: pointer;
  color: var(--muted); font-size: 14px;
  transition: border-color 0.15s ease, background 0.15s ease;
  display: block;
}
.file-drop:hover { border-color: var(--green); background: var(--green-soft); }
.file-drop svg { width: 26px; height: 26px; color: var(--green); margin: 0 auto 6px; }
.file-drop input { display: none; }
.file-drop .fname { color: var(--green-dark); font-weight: 600; margin-top: 4px; }
.form-note { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 12px; }

.form-success {
  display: none; text-align: center; padding: 20px 8px 8px;
}
.form-success.show { display: block; }
.form-success .ok {
  width: 64px; height: 64px; margin: 0 auto 16px;
  background: var(--green-soft); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--green);
}
.form-success .ok svg { width: 34px; height: 34px; }
.form-success h4 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: 15px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .cards-4 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 34px 22px; }
  .steps::before { display: none; }
}

@media (max-width: 820px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding-top: 34px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-media { order: -1; aspect-ratio: 16 / 11; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-actions .btn { flex: 1; }

  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-photo { max-width: 440px; }

  .pickup-banner { flex-direction: column; text-align: center; }
  .final-cta-inner { flex-direction: column; text-align: center; }
  .final-cta-inner .cta-copy { flex-direction: column; }
  .final-cta-inner .btn { width: 100%; }
}

@media (max-width: 560px) {
  section { padding: 60px 0; }
  .wrap { padding: 0 18px; }
  .cards-4 { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr !important; }
  .field-row { grid-template-columns: 1fr; }
  .notes { padding: 28px 22px; }
  .pickup-banner, .final-cta-inner { padding: 32px 24px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .about-teaser { flex-direction: column; text-align: center; }
}

/* ============================================================
   PREMIUM POLISH PASS
   ============================================================ */

/* Typography refinements */
h1.page-title, h2.section-title, .hero h1 { text-wrap: balance; }
.price-card .amount { font-variant-numeric: tabular-nums; }
::selection { background: rgba(34,197,94,0.25); }

/* Focus + press states — every interactive element responds */
:focus-visible {
  outline: 3px solid rgba(34,197,94,0.45);
  outline-offset: 2px;
  border-radius: 6px;
}
.btn:focus-visible { outline-offset: 3px; }
.btn:active { transform: translateY(0) scale(0.97); }
.service-card:active, .price-card:active { transform: translateY(-1px) scale(0.99); }

/* Header elevates on scroll */
header.nav { transition: box-shadow 0.25s ease; }
header.nav.scrolled { box-shadow: 0 4px 16px -8px rgba(15,23,42,0.14); }

/* Scroll-reveal entrances (JS adds .reveal / .in) */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.reveal { opacity: 0; }
.reveal.in { opacity: 1; animation: fadeUp 0.55s cubic-bezier(0.25, 0.1, 0.25, 1) backwards; }
.cards-4 > .reveal.in:nth-child(2), .steps > .reveal.in:nth-child(2) { animation-delay: 0.08s; }
.cards-4 > .reveal.in:nth-child(3), .steps > .reveal.in:nth-child(3) { animation-delay: 0.16s; }
.cards-4 > .reveal.in:nth-child(4), .steps > .reveal.in:nth-child(4) { animation-delay: 0.24s; }
.faq-list > .reveal.in:nth-child(2) { animation-delay: 0.06s; }
.faq-list > .reveal.in:nth-child(3) { animation-delay: 0.12s; }
.faq-list > .reveal.in:nth-child(4) { animation-delay: 0.18s; }
.faq-list > .reveal.in:nth-child(5) { animation-delay: 0.24s; }
.faq-list > .reveal.in:nth-child(6) { animation-delay: 0.30s; }

/* Hero trust chip (floating over the truck photo) */
.hero-chip {
  position: absolute;
  left: 16px; bottom: 16px;
  z-index: 3;
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 7px 18px 7px 8px;
  box-shadow: 0 8px 24px -6px rgba(15,23,42,0.25);
}
.hero-chip img {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover; object-position: 65% 18%;
  border: 2px solid var(--white);
}
.hero-chip .hc-text { line-height: 1.25; }
.hero-chip .hc-text b { display: block; font-size: 13.5px; font-weight: 800; color: var(--text); }
.hero-chip .hc-text small {
  display: flex; align-items: center; gap: 5px;
  font-size: 11.5px; font-weight: 600; color: var(--muted);
}
.hero-chip .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.22);
  flex-shrink: 0;
}

/* "Most popular" pricing tier */
.price-card { position: relative; }
.price-card.popular {
  border-color: rgba(21,128,61,0.45);
  box-shadow: 0 10px 28px -12px rgba(21,128,61,0.3);
}
.price-card.popular:hover { border-color: var(--green); }
.pop-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 13px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 10px -3px rgba(21,128,61,0.5);
}

/* Sticky mobile CTA bar */
.mobile-cta {
  position: fixed;
  left: 12px; right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 900;
  display: none;
  align-items: center; justify-content: space-between; gap: 12px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 10px 10px 10px 16px;
  box-shadow: 0 12px 32px -8px rgba(15,23,42,0.28);
  transform: translateY(130%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.35s ease;
}
.mobile-cta.show { transform: none; opacity: 1; }
.mobile-cta .mc-text b { display: block; font-size: 14.5px; font-weight: 800; }
.mobile-cta .mc-text span { font-size: 12px; color: var(--muted); font-weight: 600; }
.mobile-cta .btn { padding: 12px 18px; font-size: 14.5px; flex-shrink: 0; }
@media (max-width: 820px) { .mobile-cta { display: flex; } }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; }
}

/* ---------- Tap-to-text links ---------- */
.hero-alt {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--muted);
  margin: -14px 0 28px;
}
.hero-alt a, .text-link {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-alt a:hover, .text-link:hover { color: var(--green-dark); }
.footer-phone {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px;
  font-size: 15px; font-weight: 700;
  color: var(--white);
  transition: color 0.15s ease;
}
.footer-phone:hover { color: var(--green-bright); }
.footer-phone svg { width: 16px; height: 16px; color: var(--green-bright); flex-shrink: 0; }
