/* ============================================================
   JunkDepot — Design System
   Orange + Charcoal + White. Bold, trustworthy, conversion-first.
   ============================================================ */

:root {
  --orange: #FF6B00;
  --orange-dark: #E65F00;
  --orange-light: #FFF1E6;
  --charcoal: #17181A;
  --charcoal-soft: #232427;
  --gray-900: #1A1A1A;
  --gray-700: #4B4F55;
  --gray-500: #767B84;
  --gray-300: #D8DBE0;
  --gray-100: #F4F5F7;
  --white: #FFFFFF;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(23, 24, 26, 0.06);
  --shadow-md: 0 12px 32px rgba(23, 24, 26, 0.12);
  --shadow-lg: 0 24px 60px rgba(23, 24, 26, 0.22);

  --container-w: 1200px;
  --font-display: 'Archivo Black', 'Arial Black', system-ui, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; margin: 0 0 .5em; letter-spacing: -0.01em; }
p { margin: 0 0 1em; color: var(--gray-700); }
button { font-family: inherit; cursor: pointer; }

.container { max-width: var(--container-w); margin: 0 auto; padding: 0 20px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 28px; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.95rem;
  border: 2px solid transparent; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-dark { background: var(--charcoal); color: var(--white); }
.btn-dark:hover { background: #000; }
.btn-outline { background: transparent; border-color: currentColor; }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: .85rem; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--white); box-shadow: var(--shadow-sm); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 104px; gap: 16px; flex-wrap: nowrap; }
.site-logo { font-family: var(--font-display); font-size: 1.5rem; color: var(--charcoal); display: flex; align-items: center; flex-shrink: 0; white-space: nowrap; }
.site-logo img { height: 72px; width: auto; max-width: 190px; object-fit: contain; }
.site-logo span::after { content: ''; }
.site-nav { min-width: 0; }
.site-nav ul { display: flex; gap: 16px; flex-wrap: nowrap; }
.site-nav a { font-weight: 600; font-size: .88rem; color: var(--gray-700); padding: 6px 2px; border-bottom: 2px solid transparent; white-space: nowrap; }
.site-nav a:hover, .site-nav a.is-active { color: var(--charcoal); border-color: var(--orange); }
.site-header__actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.site-header__actions .btn-primary { padding: 12px 22px; font-size: .88rem; }
.header-phone { font-weight: 700; font-size: .92rem; display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.header-phone:hover { color: var(--orange); }
.site-header__mobile-actions { display: none; align-items: center; gap: 10px; }
.icon-btn { width: 42px; height: 42px; border-radius: 50%; background: var(--gray-100); display: flex; align-items: center; justify-content: center; }
.hamburger { width: 42px; height: 42px; border: none; background: var(--gray-100); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.hamburger span { display: block; width: 18px; height: 2px; background: var(--charcoal); }
.mobile-nav { display: none; background: var(--white); border-top: 1px solid var(--gray-300); padding: 16px 20px 24px; }
.mobile-nav.is-open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; margin-bottom: 16px; }
.mobile-nav a { display: block; padding: 12px 0; font-weight: 600; border-bottom: 1px solid var(--gray-100); }
.mobile-nav a.is-active { color: var(--orange); }

.icon-phone::before { content: "\260E"; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--charcoal); color: var(--white); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero__overlay { position: absolute; inset: 0; background: rgba(10, 10, 11, var(--hero-overlay, 0.55)); }
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; padding: 90px 20px 70px; }
.hero__badge { display: inline-block; background: rgba(255,107,0,.15); color: var(--orange); border: 1px solid rgba(255,107,0,.4); padding: 6px 14px; border-radius: 999px; font-weight: 700; font-size: .8rem; letter-spacing: .04em; margin-bottom: 18px; text-transform: uppercase; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); text-transform: uppercase; }
.hero h1 .highlight { color: var(--orange); }
.hero__sub { color: var(--white); font-size: 1.25rem; font-weight: 700; margin-bottom: 14px; }
.hero__desc { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 540px; }
.hero__ctas { display: flex; gap: 14px; margin: 28px 0; flex-wrap: wrap; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 20px; }
.hero__trust li { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: .9rem; color: rgba(255,255,255,.85); }
.hero__trust li::before { content: "\2713"; color: var(--orange); font-weight: 900; }

/* Quote card in hero */
.quote-card { background: var(--white); color: var(--gray-900); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-lg); }
.quote-card h3 { font-size: 1.3rem; margin-bottom: 4px; }
.quote-card .step-indicator { display: flex; gap: 8px; margin-bottom: 18px; }
.quote-card .step-indicator span { width: 28px; height: 28px; border-radius: 50%; background: var(--gray-100); color: var(--gray-500); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .8rem; }
.quote-card .step-indicator span.is-active { background: var(--orange); color: var(--white); }
.quote-card .step-indicator span.is-done { background: var(--charcoal); color: var(--white); }

.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 14px 0; }
.checkbox-tile { position: relative; }
.checkbox-tile input { position: absolute; opacity: 0; }
.checkbox-tile label { display: block; border: 2px solid var(--gray-300); border-radius: var(--radius-sm); padding: 12px; font-weight: 600; font-size: .88rem; text-align: center; cursor: pointer; transition: all .15s; }
.checkbox-tile input:checked + label { border-color: var(--orange); background: var(--orange-light); color: var(--orange-dark); }

.service-type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 18px 0; }
.service-type-tile { position: relative; }
.service-type-tile input { position: absolute; opacity: 0; }
.service-type-tile label {
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  border: 2px solid var(--gray-300); border-radius: var(--radius-md); padding: 20px;
  cursor: pointer; transition: all .15s; height: 100%; box-sizing: border-box;
}
.service-type-tile input:checked + label { border-color: var(--orange); background: var(--orange-light); }
.service-type-tile__icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--orange-light); color: var(--orange);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.service-type-tile input:checked + label .service-type-tile__icon { background: var(--orange); color: var(--white); }
.service-type-tile__title { font-weight: 800; font-size: 1.05rem; color: var(--charcoal); }
.service-type-tile__desc { font-size: .85rem; color: var(--gray-700); line-height: 1.4; }

.field { margin-bottom: 14px; }
.field label { display: block; font-weight: 700; font-size: .85rem; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--gray-300); border-radius: var(--radius-sm);
  font-size: .95rem; font-family: inherit; background: var(--white);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.file-drop { border: 2px dashed var(--gray-300); border-radius: var(--radius-sm); padding: 20px; text-align: center; color: var(--gray-500); font-size: .85rem; cursor: pointer; }
.file-drop:hover { border-color: var(--orange); color: var(--orange); }
.file-preview-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.file-preview-list img { width: 56px; height: 56px; object-fit: cover; border-radius: 6px; }

.quote-step { display: none; }
.quote-step.is-active { display: block; }
.quote-nav { display: flex; justify-content: space-between; gap: 10px; margin-top: 18px; }

/* ---------- Section basics ---------- */
section { padding: 80px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); text-transform: uppercase; }
.section-header p { font-size: 1.05rem; }
.section-dark { background: var(--charcoal); color: var(--white); }
.section-dark p { color: rgba(255,255,255,.75); }
.section-dark .section-header h2 { color: var(--white); }
.section-tint { background: var(--gray-100); }

.eyebrow { display: inline-block; color: var(--orange); font-weight: 800; letter-spacing: .06em; text-transform: uppercase; font-size: .8rem; margin: 4px 0 12px; }

.about-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.about-chip {
  display: inline-flex; align-items: center; gap: 6px; background: var(--orange-light); color: var(--orange-dark);
  font-weight: 700; font-size: .85rem; padding: 9px 16px; border-radius: 999px; border: 1px solid rgba(255,107,0,.25);
}
.about-chip::before { content: "\2713"; font-weight: 900; }

.value-card { text-align: left; }
.value-card__icon {
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 16px;
  background: var(--orange-light); color: var(--orange); display: flex; align-items: center; justify-content: center;
}
.value-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.value-card p { font-size: .88rem; color: var(--gray-700); margin: 0; }

.legal-page h2 { margin-top: 40px; font-size: 1.35rem; }
.legal-page ul { padding-left: 22px; margin: 0 0 1em; }
.legal-page li { margin-bottom: 8px; }
.legal-meta { color: var(--gray-500); font-size: .88rem; margin-top: -8px; }
.legal-toc { background: var(--gray-100); border-radius: var(--radius-md); padding: 20px 24px; margin: 24px 0; }
.legal-toc ol { columns: 2; column-gap: 24px; padding-left: 20px; margin: 0; }
.legal-toc li { margin-bottom: 8px; break-inside: avoid; font-size: .92rem; }
.legal-toc a { color: var(--charcoal); font-weight: 600; }
.legal-toc a:hover { color: var(--orange); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card { background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); padding: 30px; transition: transform .18s ease, box-shadow .18s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card__icon { width: 56px; height: 56px; border-radius: 14px; background: var(--orange-light); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 18px; }
.service-card img { border-radius: var(--radius-sm); margin-bottom: 16px; aspect-ratio: 4/3; object-fit: cover; }
.service-card h3 { font-size: 1.2rem; }
.service-card .badge-featured { display: inline-block; background: var(--orange); color: #fff; font-size: .7rem; font-weight: 800; padding: 3px 10px; border-radius: 999px; margin-bottom: 10px; text-transform: uppercase; }

.section-footer-cta { text-align: center; margin-top: 32px; }

/* Delivery teaser (homepage) */
.delivery-teaser {
  position: relative; display: flex; align-items: center; gap: 20px; margin-top: 28px; padding: 30px 28px 22px;
  background: linear-gradient(120deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: var(--radius-md); text-decoration: none; overflow: hidden;
  box-shadow: 0 8px 24px rgba(255,107,0,.28);
  transition: transform .18s ease, box-shadow .18s ease;
}
.delivery-teaser::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120px 120px at 90% 120%, rgba(255,255,255,.18), transparent 70%);
}
.delivery-teaser:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(255,107,0,.38); }
.delivery-teaser__badge {
  position: absolute; top: 12px; left: 20px; background: var(--charcoal); color: var(--white);
  font-size: .65rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 999px;
}
.delivery-teaser__icon {
  position: relative; width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: var(--white); color: var(--orange); display: flex; align-items: center; justify-content: center;
}
.delivery-teaser__ring {
  position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(255,255,255,.65);
  animation: delivery-pulse 2.2s ease-out infinite;
}
@keyframes delivery-pulse {
  0% { transform: scale(.85); opacity: .9; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { opacity: 0; }
}
.delivery-teaser__text { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.delivery-teaser__text strong { color: var(--white); font-size: 1.12rem; font-weight: 800; }
.delivery-teaser__text span { color: rgba(255,255,255,.9); font-size: .9rem; }
.delivery-teaser__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.delivery-teaser__chips span {
  background: rgba(255,255,255,.16); color: var(--white); font-size: .78rem; font-weight: 700;
  padding: 5px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.22);
}
.delivery-teaser__cta {
  display: flex; align-items: center; gap: 6px; flex-shrink: 0; color: var(--white);
  font-weight: 800; font-size: .88rem; white-space: nowrap; background: rgba(255,255,255,.16);
  padding: 10px 16px; border-radius: 999px; transition: gap .15s ease, background .15s ease;
}
.delivery-teaser:hover .delivery-teaser__cta { gap: 10px; background: rgba(255,255,255,.26); }
.delivery-teaser__arrow { font-size: 1.05rem; }

@media (prefers-reduced-motion: reduce) {
  .delivery-teaser__ring { animation: none; }
}

/* Delivery highlight */
.delivery-highlight {
  display: grid; grid-template-columns: 1.15fr 1fr; align-items: stretch;
  background: var(--charcoal); border-radius: var(--radius-lg); overflow: hidden;
}
.delivery-highlight__content { padding: 44px; }
.delivery-highlight__eyebrow {
  display: inline-block; background: rgba(255,107,0,.15); color: var(--orange);
  border: 1px solid rgba(255,107,0,.4); padding: 6px 14px; border-radius: 999px;
  font-weight: 700; font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px;
}
.delivery-highlight__icon {
  width: 64px; height: 64px; border-radius: 16px; margin-bottom: 18px;
  background: rgba(255,107,0,.15); border: 1.5px solid rgba(255,107,0,.4);
  color: var(--orange); display: flex; align-items: center; justify-content: center;
}
.delivery-highlight h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; }
.delivery-highlight__content > p { color: rgba(255,255,255,.72); font-size: 1.05rem; }
.delivery-highlight__features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 20px; margin: 26px 0 30px; }
.delivery-highlight__feature { display: flex; align-items: flex-start; gap: 10px; }
.delivery-highlight__feature svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; margin-top: 1px; }
.delivery-highlight__feature span { font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.88); line-height: 1.35; }
.delivery-highlight__media {
  position: relative; min-height: 280px; background-size: cover; background-position: center;
  background-color: var(--charcoal-soft);
  display: flex; align-items: center; justify-content: center;
}
.delivery-highlight__media-icon {
  width: 110px; height: 110px; border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,107,0,.25), rgba(255,107,0,.05));
  border: 1.5px solid rgba(255,107,0,.35); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
}
.delivery-highlight__media-icon svg { width: 48px; height: 48px; }

.delivery-highlight--intro { grid-template-columns: 1fr; }
.delivery-highlight--intro .delivery-highlight__content { max-width: 680px; padding: 40px 44px; }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; counter-reset: step; }
.step { text-align: center; padding: 10px; }
.step__num { font-family: var(--font-display); font-size: 3rem; color: var(--orange); opacity: .9; }
.step h3 { font-size: 1.25rem; }

/* Before/after */
.ba-filters { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.ba-filter { padding: 8px 18px; border-radius: 999px; border: 1.5px solid var(--gray-300); font-weight: 700; font-size: .85rem; background: var(--white); }
.ba-filter.is-active { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.ba-slider { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-sm); user-select: none; }
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-slider .ba-after { clip-path: inset(0 0 0 50%); }
.ba-slider .ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 4px; background: var(--white); transform: translateX(-2px); cursor: ew-resize; }
.ba-slider .ba-handle::after { content: "\21c6"; position: absolute; top: 50%; left: 50%; width: 40px; height: 40px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; transform: translate(-50%, -50%); box-shadow: var(--shadow-sm); font-weight: 900; color: var(--charcoal); }
.ba-slider .ba-label { position: absolute; top: 12px; z-index: 2; background: rgba(0,0,0,.6); color: #fff; font-size: .7rem; font-weight: 800; padding: 4px 10px; border-radius: 4px; text-transform: uppercase; }
.ba-slider .ba-label--before { left: 12px; }
.ba-slider .ba-label--after { right: 12px; }
.ba-caption { margin-top: 12px; }
.ba-caption h4 { margin: 0 0 4px; font-size: 1rem; }

/* Why choose us */
.why-card { text-align: center; }
.why-card__icon {
  width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%;
  background: rgba(255,107,0,.15); border: 1.5px solid rgba(255,107,0,.4);
  color: var(--orange); display: flex; align-items: center; justify-content: center;
}

/* Residential/commercial */
.split-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.split-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 320px; display: flex; align-items: flex-end; padding: 32px; color: #fff; background-size: cover; background-position: center; }
.split-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.75)); }
.split-card > * { position: relative; z-index: 1; }
.split-card h3 { font-size: 1.6rem; text-transform: uppercase; }

/* Reviews */
.review-card { background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); padding: 26px; display: flex; flex-direction: column; height: 100%; }
.review-card .stars { color: var(--orange); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 10px; }
.review-card .source { font-size: .78rem; font-weight: 800; text-transform: uppercase; color: var(--gray-500); margin-bottom: 12px; }
.review-card__text-wrap { position: relative; }
.review-card__text {
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 4;
  overflow: hidden;
}
.review-card.is-expanded .review-card__text { -webkit-line-clamp: unset; overflow: visible; }
.review-card__text-wrap--short .review-card__text { -webkit-line-clamp: unset; overflow: visible; }
.review-card__toggle {
  background: none; border: none; padding: 6px 0 0; margin-bottom: 4px; cursor: pointer;
  color: var(--orange); font-weight: 700; font-size: .85rem; align-self: flex-start;
}
.review-card__toggle:hover { text-decoration: underline; }
.review-card__footer { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 16px; }
.review-card__footer img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.review-card__name { font-weight: 700; }
.review-card__city { font-size: .8rem; color: var(--gray-500); }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat__value { font-family: var(--font-display); font-size: 2.6rem; color: var(--orange); }
.stat__label { font-weight: 600; color: rgba(255,255,255,.8); }

/* Service areas */
.area-chip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.area-chip { display: block; background: var(--white); border: 1.5px solid var(--gray-300); border-radius: var(--radius-sm); padding: 16px; text-align: center; font-weight: 700; }
.area-chip:hover { border-color: var(--orange); color: var(--orange); }

/* CTA section */
.cta-section { background: var(--orange); color: var(--white); text-align: center; }
.cta-section h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.6rem); }
.cta-section p { color: rgba(255,255,255,.9); font-size: 1.05rem; }
.cta-section .btn-dark { background: var(--charcoal); }
.cta-section .btn-outline-light { border-color: rgba(255,255,255,.7); }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-300); }
.faq-item__q { width: 100%; text-align: left; background: none; border: none; padding: 20px 4px; font-weight: 700; font-size: 1.05rem; display: flex; justify-content: space-between; align-items: center; }
.faq-item__q::after { content: "+"; font-size: 1.4rem; color: var(--orange); transition: transform .2s; }
.faq-item.is-open .faq-item__q::after { transform: rotate(45deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item__a p { padding: 0 4px 20px; }

/* Footer */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,.75); padding: 68px 0 0; border-top: 4px solid var(--orange); }
.site-footer p { color: rgba(255,255,255,.65); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 48px; }
.footer-brand .site-logo--footer { color: var(--white); margin-bottom: 14px; }
.footer-brand .site-logo--footer img { height: 56px; width: auto; max-width: 180px; object-fit: contain; }
.footer-brand .site-logo--footer span { color: var(--white); }
.footer-tagline { max-width: 260px; font-size: .92rem; line-height: 1.6; }
.footer-col h3 { color: var(--white); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 12px; font-size: .92rem; }
.footer-col a { color: rgba(255,255,255,.75); }
.footer-col a:hover { color: var(--orange); }
.footer-contact li { display: flex; align-items: flex-start; gap: 0; }
.footer-hours li { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: .88rem; color: rgba(255,255,255,.6); }
.footer-hours li span:last-child { color: rgba(255,255,255,.85); font-weight: 600; }
.hours-list li { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: .88rem; color: var(--gray-700); }
.hours-list li span:last-child { color: var(--gray-900); font-weight: 600; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.footer-social a {
  font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .03em;
  padding: 8px 14px; border-radius: 999px; border: 1.5px solid rgba(255,255,255,.2); color: rgba(255,255,255,.85);
}
.footer-social a:hover { border-color: var(--orange); color: var(--orange); background: rgba(255,107,0,.08); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 28px 0 90px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px;
  font-size: .82rem; color: rgba(255,255,255,.5);
}
.footer-copyright { margin: 0; justify-self: start; text-align: left; }
.footer-credit {
  display: inline-flex; align-items: center; gap: 8px; width: fit-content; justify-self: center;
  padding: 7px 14px 7px 12px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.6); font-size: .78rem; font-weight: 600;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.footer-credit:hover { border-color: rgba(255,107,0,.45); background: rgba(255,107,0,.08); color: var(--orange); }
.footer-credit__logo { height: 20px; width: auto; object-fit: contain; }
.footer-legal { display: flex; gap: 20px; justify-self: end; }
.footer-legal a { color: rgba(255,255,255,.6); }
.footer-legal a:hover { color: var(--orange); }

/* Mobile sticky CTA bar */
.mobile-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: var(--charcoal); box-shadow: 0 -4px 16px rgba(0,0,0,.2); }
.mobile-cta-bar a { flex: 1; text-align: center; padding: 16px 10px; font-weight: 800; }
.mobile-cta-bar__call { color: var(--white); border-right: 1px solid rgba(255,255,255,.15); }
.mobile-cta-bar__quote { background: var(--orange); color: var(--white); }

/* Alerts */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); font-weight: 600; margin-bottom: 16px; }
.alert-error { background: #FDECEC; color: #B42318; }
.alert-success { background: #E8F8EE; color: #1B7A3D; }

/* Auth pages */
.auth-page { background: var(--charcoal); min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; }
.auth-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; width: 100%; max-width: 400px; box-shadow: var(--shadow-lg); }
.auth-logo { font-family: var(--font-display); color: var(--orange); font-size: 1.3rem; margin-bottom: 14px; text-align: center; }
.auth-logo img { height: 56px; width: auto; max-width: 220px; object-fit: contain; margin: 0 auto; }
.auth-card h1 { font-size: 1.4rem; margin-bottom: 20px; }
.auth-card label { display: block; font-weight: 700; font-size: .85rem; margin: 14px 0 6px; }
.auth-card input { width: 100%; padding: 12px 14px; border-radius: 8px; border: 1.5px solid var(--gray-300); font-size: .95rem; }
.auth-card .btn { margin-top: 20px; }
.auth-back { display: block; margin-top: 18px; text-align: center; font-size: .85rem; color: var(--gray-500); }

/* Thank you page */
.thankyou { text-align: center; padding: 100px 20px; max-width: 560px; margin: 0 auto; }
.thankyou .ref-code { display: inline-block; background: var(--orange-light); color: var(--orange-dark); font-weight: 800; padding: 10px 20px; border-radius: 999px; margin: 18px 0; }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.badge { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: .75rem; font-weight: 800; text-transform: uppercase; }
.badge-new { background: #E0F2FE; color: #0369A1; }
.badge-contacted { background: #FEF3C7; color: #92400E; }
.badge-quoted { background: #EDE9FE; color: #5B21B6; }
.badge-booked { background: #DCFCE7; color: #166534; }
.badge-completed { background: #E5E7EB; color: #374151; }
.badge-cancelled { background: #FEE2E2; color: #991B1B; }
