/* ── Cactus Dumpsters — Styles ─────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── Variables ──────────────────────────────────────────────────────────────── */
:root {
  --bg: #ffffff;
  --bg2: #f7fbe8;
  --surface: #FFFFFF;
  --border: rgba(0,0,0,0.08);
  --text: #1a1a1a;
  --text-mid: #444444;
  --text-muted: #666666;
  --accent: #76C700;
  --accent-dark: #5FA300;
  --accent-light: #edf7e0;
  --accent-mid: #8DD620;
  --green: #5FA300;
  --green-light: #edf7e0;
  --red: #9B2020;
  --red-light: #F8DADA;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 28px rgba(0,0,0,0.09);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-w: 1160px;
}

/* ── Reset ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, textarea, select { font-family: var(--font-body); }

/* ── Layout ─────────────────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
section { padding: 104px 0; }

/* ── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 24px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 3px 12px rgba(118,199,0,0.30);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(118,199,0,0.35);
}
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--text-mid);
  background: rgba(0,0,0,0.04);
  transform: translateY(-1px);
}
.btn-lg { padding: 15px 30px; font-size: 1rem; font-weight: 600; }

/* ── Navigation ─────────────────────────────────────────────────────────────── */
#nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
#nav.nav-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.nav-logo-mark {
  width: 40px; height: 40px;
  background: var(--accent);
  color: #fff;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(118,199,0,0.28);
}
.nav-logo-img {
  width: 44px; height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
}
.sa-hero-logo {
  width: clamp(240px, 40vw, 400px);
  height: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}
.nav-logo-name { display: block; font-family: var(--font-display); font-weight: 700; font-size: 0.96rem; line-height: 1.2; }
.nav-logo-sub { display: block; font-size: 0.71rem; color: var(--text-muted); letter-spacing: 0.01em; }
.nav-links { display: flex; gap: 2px; margin-left: auto; }
.nav-links a {
  padding: 7px 13px;
  border-radius: 10px;
  font-size: 0.87rem;
  color: var(--text-mid);
  transition: color 0.15s, background 0.15s;
  font-weight: 500;
}
.nav-links a:hover { color: var(--text); background: rgba(0,0,0,0.05); }
.nav-cta { margin-left: 10px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; margin-left: auto; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.2s; }
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile { display: none; flex-direction: column; padding: 12px 24px 20px; gap: 4px; border-top: 1px solid var(--border); }
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 10px 12px; border-radius: 8px; font-size: 0.95rem; }
.nav-mobile a:hover { background: rgba(0,0,0,0.05); }
.nav-mobile .btn { margin-top: 8px; width: 100%; justify-content: center; }

/* ── Hero ───────────────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  padding: 96px 0 112px;
  overflow: hidden;
}
.hero-bg { display: none; }
.hero-deco-text { display: none; }
.hero-inner { position: relative; max-width: 740px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: var(--accent-light);
  border: 1px solid rgba(118,199,0,0.2);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-dark);
  letter-spacing: 0.03em;
  margin-bottom: 22px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 26px;
}
.hero-pill {
  padding: 5px 13px;
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.77rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 16px;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}
.hero-claude-credit {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.8;
}
.hero-sub {
  font-size: 1.07rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-trust svg { opacity: 0.6; flex-shrink: 0; }
.hero-phone-link { color: var(--accent); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ── Section Headers ────────────────────────────────────────────────────────── */
.section-label {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 540px;
  margin-bottom: 52px;
  font-weight: 300;
  line-height: 1.7;
}

/* ── Booking Section ────────────────────────────────────────────────────────── */
#book { background: var(--surface); }

/* Stepper */
.booking-stepper {
  display: flex;
  align-items: center;
  margin: 44px 0;
  gap: 0;
}
.stepper-step {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  flex-shrink: 0;
}
.stepper-step.active { color: var(--text); }
.stepper-step.done { color: var(--green); }
.stepper-num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
  transition: all 0.2s;
}
.stepper-step.active .stepper-num { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 2px 8px rgba(118,199,0,0.3); }
.stepper-step.done .stepper-num { background: var(--green); color: #fff; border-color: var(--green); }
.stepper-line { flex: 1; height: 1.5px; background: var(--border); margin: 0 10px; min-width: 20px; }
.stepper-line.done { background: var(--green); }

/* Step transitions */
.booking-body { min-height: 340px; transition: opacity 0.15s ease; }
.step-fade { opacity: 0; }

.step-intro { margin-bottom: 28px; }
.step-intro h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 7px;
}
.step-intro p { color: var(--text-mid); font-size: 0.95rem; }

/* Size Cards */
.size-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.size-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  cursor: pointer;
  transition: all 0.18s ease;
  background: var(--bg);
  position: relative;
}
.size-card:hover { border-color: var(--accent); background: var(--accent-light); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.size-card.selected { border-color: var(--accent); background: var(--accent-light); box-shadow: 0 0 0 3px rgba(118,199,0,0.14), var(--shadow); }
.size-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.size-badge {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}
.size-price { font-size: 0.88rem; font-weight: 700; color: var(--accent); }
.size-dims { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 8px; font-family: monospace; }
.size-desc { font-size: 0.85rem; color: var(--text-mid); margin-bottom: 10px; line-height: 1.5; }
.size-list { list-style: none; font-size: 0.8rem; color: var(--text-mid); display: flex; flex-direction: column; gap: 3px; }
.size-list li::before { content: '• '; color: var(--accent); }
.size-tons { margin-top: 12px; font-size: 0.75rem; font-weight: 600; color: var(--text-muted); background: var(--bg2); display: inline-block; padding: 3px 10px; border-radius: 100px; }

/* Use Case Cards */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}
.usecase-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 14px;
  cursor: pointer;
  transition: all 0.18s ease;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  text-align: center;
}
.usecase-card:hover { border-color: var(--accent); background: var(--accent-light); transform: translateY(-2px); box-shadow: var(--shadow); }
.usecase-card.selected { border-color: var(--accent); background: var(--accent-light); box-shadow: 0 0 0 3px rgba(118,199,0,0.14); }
.usecase-group-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.usecase-icon { font-size: 1.6rem; }
.usecase-label { font-size: 0.82rem; font-weight: 500; line-height: 1.3; }

/* Emergency Toggle */
.emergency-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  margin-bottom: 20px;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  cursor: pointer;
  transition: all 0.18s ease;
  text-align: left;
}
.emergency-toggle:hover {
  border-color: #c0392b;
  background: #fdf3f2;
}
.emergency-toggle.active {
  border-color: #c0392b;
  border-style: solid;
  background: #fdf3f2;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.12);
}
.emergency-icon { font-size: 1.5rem; flex-shrink: 0; }
.emergency-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.emergency-text strong { font-size: 0.95rem; color: #c0392b; }
.emergency-text span { font-size: 0.8rem; color: var(--text-muted); }
.emergency-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
  transition: all 0.15s;
}
.emergency-toggle.active .emergency-check {
  background: #c0392b;
  border-color: #c0392b;
}

/* Summary emergency row */
.summary-emergency span { color: #c0392b !important; font-weight: 600 !important; }
.summary-emergency strong { color: #c0392b !important; }

/* Dates */
.dates-wrap {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.date-field { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 160px; }
.date-field label { font-size: 0.85rem; font-weight: 500; color: var(--text-mid); }
.date-field input {
  padding: 12px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.date-field input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(118,199,0,0.1); }
.dates-arrow { font-size: 1.2rem; color: var(--text-muted); padding-bottom: 10px; flex-shrink: 0; }
.dates-hint { font-size: 0.88rem; padding: 10px 14px; border-radius: 10px; min-height: 38px; }
.dates-hint.ok { background: var(--green-light); color: var(--green); }
.dates-hint.error { background: var(--red-light); color: var(--red); }

/* Info Form */
.info-form { max-width: 600px; }
.form-row { display: flex; gap: 16px; margin-bottom: 0; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; flex: 1; }
.form-field label { font-size: 0.85rem; font-weight: 500; color: var(--text-mid); }
.form-field input, .form-field textarea {
  padding: 12px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(118,199,0,0.1);
}
.form-field textarea { resize: vertical; line-height: 1.5; }

/* Booking Summary */
.booking-summary {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 20px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
.summary-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; }
.summary-row span { color: var(--text-muted); }
.summary-row strong { color: var(--text); font-weight: 600; }
.summary-total { border-top: 1px solid var(--border); padding-top: 8px; margin-top: 4px; }
.summary-total span { color: var(--text-mid); font-weight: 600; }
.summary-total strong { color: var(--accent); font-size: 1rem; }

.form-error { color: var(--red); font-size: 0.85rem; margin-bottom: 12px; min-height: 20px; }

/* Contact preference toggle */
.contact-pref-toggle { display: flex; gap: 10px; }
.pref-btn {
  flex: 1; padding: 10px 16px; border: 2px solid var(--border);
  border-radius: var(--radius); background: var(--surface); font-size: 0.95rem;
  font-weight: 500; color: var(--text-mid); cursor: pointer; transition: all .15s;
}
.pref-btn:hover { border-color: var(--green); color: var(--green); }
.pref-btn.active { border-color: var(--green); background: var(--green); color: #fff; }

/* Submit note */
.submit-note {
  font-size: 0.85rem; color: var(--text-mid); margin: 4px 0 0;
  text-align: center; font-style: italic;
}

/* Step Nav */
.step-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); }

/* Confirmation */
.confirmation {
  text-align: center;
  padding: 60px 24px;
  max-width: 500px;
  margin: 0 auto;
}
.confirm-icon {
  width: 68px; height: 68px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 22px;
  box-shadow: 0 4px 16px rgba(95,163,0,0.15);
}
.confirmation h3 { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; margin-bottom: 10px; }
.confirmation p { color: var(--text-mid); margin-bottom: 24px; }
.confirm-details { text-align: left; background: var(--bg2); border-radius: var(--radius); padding: 18px 22px; margin-bottom: 28px; display: flex; flex-direction: column; gap: 8px; }

/* ── Service Area ────────────────────────────────────────────────────────────── */
#service-area {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
  gap: 13px;
}
.area-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 17px 20px;
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 500;
  font-size: 0.95rem;
  box-shadow: var(--shadow);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.area-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(118,199,0,0.2);
}
.area-pin { font-size: 1rem; }

/* ── Materials ──────────────────────────────────────────────────────────────── */
#materials {
  background: url('CactusDumpstersHood.png') center/cover no-repeat;
  position: relative;
}
.materials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.materials-col {
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1.5px solid var(--border);
}
.materials-col.accepted { border-color: rgba(95,163,0,0.22); background: rgba(240,255,230,0.97); }
.materials-col.rejected { border-color: rgba(155,32,32,0.18); background: rgba(255,242,240,0.97); }
.materials-header { margin-bottom: 20px; }
.mat-badge {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.mat-badge.yes { background: var(--green); color: #fff; }
.mat-badge.no { background: var(--red); color: #fff; }
.materials-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.materials-col ul li {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.materials-col ul li:last-child { border-bottom: none; }
.materials-col.accepted li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 0.78rem; flex-shrink: 0; }
.materials-col.rejected li::before { content: '✕'; color: var(--red); font-weight: 700; font-size: 0.78rem; flex-shrink: 0; }
.materials-note { font-size: 1.05rem; color: #fff; margin-top: 8px; font-weight: 600; text-align: center; }

/* ── FAQ ────────────────────────────────────────────────────────────────────── */
#faq { background: var(--bg2); }
#faq .container { display: flex; flex-direction: column; align-items: center; text-align: center; }
.faq-list { max-width: 720px; width: 100%; display: flex; flex-direction: column; gap: 6px; text-align: left; }
.faq-item {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.faq-item:hover { border-color: rgba(118,199,0,0.2); }
.faq-item.open { border-color: rgba(118,199,0,0.25); box-shadow: var(--shadow); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 19px 22px;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: none;
  color: var(--text);
  transition: background 0.15s;
}
.faq-q:hover { background: var(--bg); }
.faq-arrow { color: var(--text-muted); font-size: 1rem; transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--accent); }
.faq-a {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 600px; padding: 0 22px 20px; }

/* ── Footer ─────────────────────────────────────────────────────────────────── */
#footer { background: var(--text); color: #fff; padding: 60px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 52px;
  align-items: start;
  padding-bottom: 52px;
}
.footer-brand { display: flex; gap: 14px; align-items: flex-start; }
.footer-brand .nav-logo-mark { background: var(--accent); flex-shrink: 0; box-shadow: none; }
.footer-brand strong { display: block; font-family: var(--font-display); font-size: 1rem; margin-bottom: 5px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-links a:hover { color: #fff; }
.footer-contact p { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-bottom: 7px; }
.footer-phone { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--accent-mid); }
.footer-phone:hover { color: #f07030; }
.footer-address { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 8px; font-style: normal; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px 32px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ── Fade-in animation ──────────────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: none; }


/* ── Payment Step (Step 5) ──────────────────────────────────────────────────── */

/* Order Summary Card */
.payment-summary-card {
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 24px;
  max-width: 600px;
}
.psc-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.psc-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.92rem;
  padding: 4px 0;
  color: var(--text);
}
.psc-dates {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-bottom: 6px;
}
.psc-emergency { color: #c0392b; font-size: 0.82rem; font-weight: 600; }
.psc-divider { border-top: 1px solid var(--border); margin: 10px 0; }
.psc-tax { color: var(--text-mid); font-size: 0.85rem; }
.psc-total {
  font-size: 1rem;
  font-weight: 700;
  padding-top: 8px;
  border-top: 1.5px solid var(--border);
  margin-top: 4px;
}
.psc-total strong { color: var(--accent); font-size: 1.1rem; }

/* Digital wallet buttons (Apple Pay / Google Pay) */
.sq-wallets { display: flex; flex-direction: column; gap: 10px; margin-bottom: 8px; max-width: 600px; }
.sq-wallets > div { display: none; } /* hidden until Square makes them visible */

/* Or pay with card divider */
.payment-or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  max-width: 600px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.payment-or::before, .payment-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Square hosted card container */
#sq-card-container {
  max-width: 600px;
  min-height: 80px;
  margin-bottom: 14px;
}

/* Error & notices */
.sq-error {
  max-width: 600px;
  font-size: 0.85rem;
  color: var(--red);
  min-height: 20px;
  margin-bottom: 8px;
}
.sq-demo-notice {
  background: #FEF3CD;
  border: 1px solid #F0C040;
  border-radius: 8px;
  padding: 12px 16px;
  color: #7A5800;
  font-size: 0.84rem;
  line-height: 1.5;
}

/* Security note */
.sq-secure {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  max-width: 600px;
}

/* Confirmation payment confirmed badge */
.confirm-paid {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  border: 1px solid rgba(95,163,0,0.2);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 14px;
}

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-headline { font-size: 2.6rem; }
  .hero-deco-text { font-size: 7rem; right: -20px; opacity: 0.6; }
  .size-grid { grid-template-columns: 1fr 1fr; }
  .usecase-grid { grid-template-columns: repeat(3, 1fr); }
  .areas-photo-grid .area-photo-card:nth-child(n+7) { display: none; }
  .areas-photo-grid.expanded .area-photo-card:nth-child(n+7) { display: flex; }
  .areas-toggle-btn {
    display: block; width: 100%; text-align: center; margin-top: 16px;
    padding: 12px; border-radius: var(--radius); border: 1.5px solid var(--border);
    background: var(--surface); color: var(--accent); font-weight: 600;
    font-size: 0.9rem; cursor: pointer; transition: all 0.2s;
  }
  .areas-toggle-btn:hover { background: var(--accent-light); border-color: var(--accent); }
  .materials-grid { grid-template-columns: 1fr; }
  .dates-wrap { flex-direction: column; }
  .dates-arrow { display: none; }
  .form-row { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .booking-stepper { overflow-x: auto; padding-bottom: 4px; }
  .stepper-step span { display: none; }
  .booking-summary { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .size-grid { grid-template-columns: 1fr; }
  .usecase-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-deco-text { display: none; }
}

/* ── Scroll Animation Hero ──────────────────────────────────────────────────── */

/* Loader */
#loader {
  position: fixed; inset: 0; background: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity .5s ease, visibility .5s ease;
}
#loader.gone { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-icon { margin-bottom: 1rem; animation: truckbounce 1.4s ease-in-out infinite; }
.loader-icon img { width: 220px; height: auto; }
@keyframes truckbounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.loader-brand { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--text); margin-bottom: .25rem; }
.loader-sub { font-size: .85rem; color: var(--text-muted); margin-bottom: 2rem; }
.loader-track { width: 220px; height: 4px; background: var(--accent-light); border-radius: 2px; overflow: hidden; }
.loader-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--accent), var(--accent-dark)); border-radius: 2px; transition: width .1s ease; }
.loader-pct { font-size: .75rem; color: var(--accent); margin-top: .6rem; }

/* Scroll progress bar */
#spb { position: fixed; top: 0; left: 0; width: 0%; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-dark)); z-index: 1000; pointer-events: none; }

/* Scroll animation section */
#sa { height: 300vh; position: relative; }
.sa-sticky { position: sticky; top: 0; width: 100%; height: 100vh; overflow: hidden; background: #fff; }
#vc { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* White glow behind hero text */
.sa-vignette {
  position: absolute; inset: 0; pointer-events: none; z-index: 5;
  background: radial-gradient(ellipse 65% 55% at 50% 50%, rgba(255,255,255,.95) 0%, rgba(255,255,255,.75) 25%, rgba(255,255,255,.35) 55%, transparent 80%);
}

/* Hero content overlay */
#hero-overlay {
  position: absolute; inset: 0; z-index: 10;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 8rem 2rem 4rem;
  will-change: opacity, transform;
}
.sa-hero-eyebrow {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--accent-light); color: var(--accent-dark);
  font-size: .82rem; font-weight: 700; padding: .35rem .95rem; border-radius: 100px;
  font-family: var(--font-display); letter-spacing: .03em; margin-bottom: 1.5rem;
}
.sa-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6rem); font-weight: 800;
  line-height: 1.05; letter-spacing: -.03em; color: var(--text); margin-bottom: 1.3rem;
}
.sa-hero-title .green { color: var(--accent); }
.sa-hero-title-sub {
  display: block;
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: -.01em;
  margin-top: .2rem;
}
.sa-hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem); color: var(--text-muted);
  max-width: 520px; margin: 0 auto 2.4rem; line-height: 1.65;
}
.sa-hero-btns { display: flex; gap: .9rem; flex-wrap: wrap; justify-content: center; margin-bottom: 4rem; }
.sa-btn-p {
  background: var(--accent); color: #fff; border: none; padding: .85rem 2rem; border-radius: 100px;
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  cursor: pointer; text-decoration: none; display: inline-block;
  box-shadow: 0 4px 20px rgba(118,199,0,0.35); transition: all .25s;
}
.sa-btn-p:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(118,199,0,.4); }
.sa-btn-s {
  background: rgba(255,255,255,.8); color: var(--text); border: 2px solid var(--border);
  padding: .85rem 2rem; border-radius: 100px;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  cursor: pointer; text-decoration: none; display: inline-block;
  backdrop-filter: blur(8px); transition: all .25s;
}
.sa-btn-s:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.scroll-hint { display: flex; flex-direction: column; align-items: center; gap: .4rem; color: var(--text-muted); font-size: .82rem; animation: bncdown 2s ease-in-out infinite; pointer-events: none; }
.scroll-hint svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@keyframes bncdown { 0%,100%{transform:translateY(0)} 50%{transform:translateY(7px)} }

#anim-complete {
  position: absolute; bottom: 3rem; left: 0; right: 0;
  z-index: 20; opacity: 0; pointer-events: none;
  text-align: center; padding: 0 2rem;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--accent); letter-spacing: -.03em; line-height: 1.1;
  transition: opacity 0.4s ease;
}
@media (min-width: 769px) {
  #anim-complete { display: none; }
}

/* Hide the old static hero section */
section#hero { display: none !important; }

@media (max-width: 768px) {
  #sa { height: 220vh; }
  #hero-overlay {
    padding: 100px 20px 40px;
  }
  .sa-hero-title { font-size: 2.8rem; }
  .sa-hero-title-sub { font-size: 1.4rem; }
}

/* ── City / Service Area Pages ───────────────────────────────────────────────── */

/* Hero */
.city-hero {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  color: #fff; padding: 110px 0 80px; position: relative; overflow: hidden;
}
.city-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 90% 40%, rgba(255,255,255,0.09) 0%, transparent 60%);
  pointer-events: none;
}
.city-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px; padding: 5px 16px; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px;
}
.city-hero-title {
  font-family: var(--font-display); font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -0.025em; margin-bottom: 20px; color: #fff;
}
.city-hero-title span { color: rgba(255,255,255,0.82); }
.city-hero-sub {
  font-size: 1.08rem; color: rgba(255,255,255,0.85); max-width: 560px;
  margin-bottom: 32px; line-height: 1.65;
}
.city-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.city-hero .btn-primary { background: #fff; color: var(--accent-dark); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.city-hero .btn-primary:hover { background: #f0fdf0; transform: translateY(-2px); }
.city-hero .btn-ghost { border-color: rgba(255,255,255,0.45); color: #fff; }
.city-hero .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); transform: translateY(-1px); }
.city-hero-trust { display: flex; gap: 22px; flex-wrap: wrap; font-size: 0.82rem; color: rgba(255,255,255,0.8); font-weight: 500; }

/* Sizing cards */
.city-sizes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.city-size-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px; transition: all 0.2s;
}
.city-size-card:hover { border-color: var(--accent); box-shadow: 0 8px 32px rgba(118,199,0,0.15); transform: translateY(-2px); }
.city-size-label { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.city-size-price { font-size: 2rem; font-weight: 800; font-family: var(--font-display); color: var(--accent); margin-bottom: 2px; }
.city-size-price span { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); }
.city-size-dims { font-size: 0.72rem; color: var(--text-muted); font-family: monospace; margin-bottom: 14px; }
.city-size-list { list-style: none; font-size: 0.82rem; color: var(--text-mid); margin-bottom: 16px; }
.city-size-list li { padding: 4px 0; }
.city-size-list li::before { content: '✓ '; color: var(--accent); font-weight: 700; }
.city-size-footer { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border); font-size: 0.73rem; color: var(--text-muted); font-weight: 600; }
.city-size-btn { display: block; width: 100%; text-align: center; margin-top: 14px; padding: 10px; border-radius: var(--radius); background: var(--accent-light); color: var(--accent-dark); font-weight: 600; font-size: 0.875rem; transition: all 0.2s; }
.city-size-btn:hover { background: var(--accent); color: #fff; }

/* City content */
.city-content { background: var(--bg2); }
.city-content-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 56px; align-items: start; margin-top: 40px; }
.city-text p { margin-bottom: 16px; line-height: 1.78; color: var(--text-mid); }
.city-text h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin: 28px 0 12px; color: var(--text); }
.city-hoods { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.city-hoods li { background: var(--surface); border: 1px solid var(--border); border-radius: 100px; padding: 4px 14px; font-size: 0.79rem; font-weight: 500; color: var(--text-mid); }
.city-zips { font-size: 0.82rem; color: var(--text-muted); background: var(--surface); padding: 10px 16px; border-radius: var(--radius); border: 1px solid var(--border); }
.city-projects-card { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 28px; position: sticky; top: 90px; }
.city-projects-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 16px; }
.city-projects-list { list-style: none; }
.city-projects-list li { padding: 9px 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 0.875rem; color: var(--text-mid); display: flex; align-items: center; gap: 10px; }
.city-projects-list li:last-child { border-bottom: none; }
.city-projects-list li::before { content: '→'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* FAQ */
.city-faq { background: var(--bg); }
.city-faq-list { max-width: 760px; display: flex; flex-direction: column; gap: 8px; margin-top: 40px; }
.city-faq-item { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.city-faq-q { width: 100%; text-align: left; padding: 18px 22px; font-size: 0.95rem; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 12px; cursor: pointer; background: none; font-family: var(--font-body); color: var(--text); border: none; transition: background 0.15s; }
.city-faq-q:hover { background: var(--bg); }
.city-faq-q .fi { flex-shrink: 0; color: var(--accent); font-size: 1.2rem; transition: transform 0.25s; line-height: 1; }
.city-faq-item.open .city-faq-q .fi { transform: rotate(45deg); }
.city-faq-a { font-size: 0.9rem; color: var(--text-mid); padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; line-height: 1.75; }
.city-faq-item.open .city-faq-a { max-height: 400px; padding: 0 22px 20px; }

/* CTA */
.city-cta { background: var(--accent); text-align: center; padding: 84px 0; position: relative; overflow: hidden; }
.city-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 25% 50%, rgba(255,255,255,0.13) 0%, transparent 55%); pointer-events: none; }
.city-cta-inner { position: relative; }
.city-cta h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; margin-bottom: 12px; letter-spacing: -0.02em; }
.city-cta p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 480px; margin: 0 auto 32px; line-height: 1.65; }
.city-cta .btn-primary { background: #fff; color: var(--accent-dark); box-shadow: 0 4px 24px rgba(0,0,0,0.15); }
.city-cta .btn-primary:hover { background: #f0fdf0; transform: translateY(-2px); }

/* All cities grid */
.all-cities { background: var(--bg2); }
.all-cities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; margin-top: 36px; }
.all-cities-grid a { display: block; padding: 11px 16px; background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 0.875rem; font-weight: 500; color: var(--text-mid); transition: all 0.15s; text-align: center; }
.all-cities-grid a:hover { border-color: var(--accent); color: var(--accent-dark); background: var(--accent-light); transform: translateY(-1px); }
.all-cities-grid a.current { border-color: var(--accent); color: var(--accent-dark); background: var(--accent-light); font-weight: 600; }
@media (max-width: 768px) {
  .all-cities-grid a:nth-child(n+7) { display: none; }
  .all-cities-grid.expanded a:nth-child(n+7) { display: block; }
}
.all-cities-toggle-btn {
  display: none; width: 100%; text-align: center; margin-top: 16px;
  padding: 12px; border-radius: var(--radius); border: 1.5px solid var(--border);
  background: var(--surface); color: var(--accent); font-weight: 600;
  font-size: 0.9rem; cursor: pointer; transition: all 0.2s;
}
.all-cities-toggle-btn:hover { background: var(--accent-light); border-color: var(--accent); }
@media (max-width: 768px) {
  .all-cities-toggle-btn { display: block; }
}

/* City footer */
.city-footer { background: var(--text); color: #fff; padding: 52px 0 20px; }
.city-footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 32px 40px; display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 20px; }
.city-footer-brand strong { font-family: var(--font-display); font-size: 1rem; color: #fff; display: block; margin-bottom: 5px; }
.city-footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.6; }
.city-footer-links { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.city-footer-links a { color: rgba(255,255,255,0.55); font-size: 0.875rem; transition: color 0.15s; }
.city-footer-links a:hover { color: var(--accent); }
.city-footer-copy { text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.22); padding: 0 32px; }

/* Responsive */
@media (max-width: 900px) {
  .city-sizes { grid-template-columns: 1fr 1fr; }
  .city-content-grid { grid-template-columns: 1fr; gap: 32px; }
  .city-projects-card { position: static; }
}
@media (max-width: 600px) {
  .city-hero { padding: 80px 0 60px; }
  .city-sizes { grid-template-columns: 1fr; }
  .city-hero-trust { gap: 12px; font-size: 0.78rem; }
  .city-footer-inner { flex-direction: column; }
  .city-footer-links { flex-direction: column; gap: 12px; }
}

/* ── Service area photo grid ─────────────────────────────────────────────────── */
.areas-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.area-photo-card {
  position: relative; display: block; border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 4/3; text-decoration: none;
  box-shadow: var(--shadow-md); transition: all 0.25s;
  background: var(--bg2);
}
.area-photo-card:hover { transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow-lg); }
.area-photo-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.area-photo-card:hover img { transform: scale(1.06); }
.area-photo-card .area-photo-name {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  color: #fff; font-family: var(--font-display); font-size: 0.9rem;
  font-weight: 700; letter-spacing: 0.01em;
}
.area-photo-card.img-err { background: var(--accent-light); }
.area-photo-card.img-err img { display: none; }
.area-photo-card.img-err .area-photo-name {
  position: static; background: none; color: var(--accent-dark); padding: 28px 14px;
  text-align: center; font-size: 1rem;
}
@media (max-width: 768px) {
  .areas-photo-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
}
@media (max-width: 480px) {
  .areas-photo-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mesa-template class aliases & additions ─────────────────────────────────── */

/* Inner containers (centered max-width wrappers) */
.city-hero-inner,
.city-sizes-inner,
.city-content-inner,
.city-faq-inner,
.city-cta-inner,
.all-cities-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

/* Hero badge ("Mesa, AZ" pill) */
.city-hero-badge {
  display: inline-block; background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.35);
  border-radius: 100px; padding: 5px 16px; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; color: #fff; margin-bottom: 18px;
}

/* Hero tag (italic tagline below h1) */
.city-hero-tag { font-size: 1.1rem; color: rgba(255,255,255,0.88); margin-bottom: 24px; line-height: 1.55; }

/* Hero meta (checkmarks row) */
.city-hero-meta { display: flex; gap: 20px; flex-wrap: wrap; font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.9); margin-bottom: 28px; }

/* Hero phone link */
.city-hero-phone { display: inline-block; margin-top: 14px; color: rgba(255,255,255,0.82); font-size: 1rem; font-weight: 600; text-decoration: none; transition: color 0.2s; }
.city-hero-phone:hover { color: #fff; }

/* Sizes section */
.city-sizes-section { padding: 80px 0; background: var(--bg); }
.city-sizes-sub { color: var(--text-muted); font-size: 0.95rem; margin-top: 8px; }

/* Content section */
.city-content-section { padding: 80px 0; background: var(--bg2); }
.city-content-main { max-width: 820px; }
.city-content-main > p { color: var(--text-mid); line-height: 1.78; margin-bottom: 16px; }
.city-content-main > h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 20px; }

/* Details grid (neighborhoods / zips / projects) */
.city-details-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.city-detail-block { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.city-detail-block h3 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; margin-bottom: 14px; color: var(--text); }
.city-detail-list { list-style: none; }
.city-detail-list li { font-size: 0.85rem; color: var(--text-mid); padding: 5px 0; border-bottom: 1px solid rgba(0,0,0,0.04); }
.city-detail-list li:last-child { border-bottom: none; }
.city-detail-list li::before { content: '· '; color: var(--accent); font-weight: 700; }

/* FAQ section */
.city-faq-section { padding: 80px 0; background: var(--bg); }

/* CTA section */
.city-cta-section { background: var(--accent); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.city-cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 25% 50%, rgba(255,255,255,0.12) 0%, transparent 55%); pointer-events: none; }
.city-cta-inner { position: relative; }
.city-cta-section h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: #fff; margin-bottom: 12px; letter-spacing: -0.02em; }
.city-cta-section p { color: rgba(255,255,255,0.85); font-size: 1rem; max-width: 460px; margin: 0 auto 28px; line-height: 1.65; }
.city-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.city-cta-section .btn-primary { background: #fff; color: var(--accent-dark); box-shadow: 0 4px 24px rgba(0,0,0,0.15); }
.city-cta-section .btn-primary:hover { background: #f0fdf0; transform: translateY(-2px); }

/* Secondary button */
.btn-secondary { display: inline-block; padding: .85rem 2rem; border-radius: 100px; font-family: var(--font-display); font-weight: 600; font-size: .95rem; border: 2px solid rgba(255,255,255,0.5); color: #fff; background: transparent; text-decoration: none; transition: all 0.2s; cursor: pointer; }
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.12); transform: translateY(-2px); }

/* All cities section */
.all-cities-section { background: var(--bg2); padding: 72px 0; }
.all-cities-section h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 4px; }

/* Responsive for new classes */
@media (max-width: 900px) {
  .city-details-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .city-details-grid { grid-template-columns: 1fr; }
  .city-hero-inner, .city-sizes-inner, .city-content-inner,
  .city-faq-inner, .city-cta-inner, .all-cities-inner { padding: 0 20px; }
  .city-sizes-section, .city-content-section, .city-faq-section,
  .city-cta-section, .all-cities-section { padding: 56px 0; }
}
