/* ═══════════════════════════════════════════════════════════════
   LUNAR INSPECTIONS — SCHEDULE INSPECTION LAYER
   Extends site-core.css. Page-only: compact scheduling hero,
   pre-scheduling routing cues, three-step request strip, help band.

   The request form itself lives in lunar-schedule-form.css and now
   runs on the sitewide dark theme — no more light-zone override
   (the native form replaces the third-party white iframe that
   required it).
   ═══════════════════════════════════════════════════════════════ */

/* ─── Compact scheduling hero (dark) ────────────────────────── */
.hero-book {
  position: relative;
  padding: clamp(46px, 6vw, 78px) 0 clamp(34px, 4vw, 46px);
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}
.hero-book::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(680px 340px at 16% 0%, rgba(66,133,244,0.16), transparent 66%),
    radial-gradient(520px 300px at 88% 16%, rgba(34,211,238,0.10), transparent 62%),
    linear-gradient(180deg, #02030a, #06090f 60%, #02030a);
}
.hero-book::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.55;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(110% 80% at 50% 0%, #000 40%, transparent 82%);
  mask-image: radial-gradient(110% 80% at 50% 0%, #000 40%, transparent 82%);
}
.hero-book .container { position: relative; z-index: 1; }
.hero-book .hero-badge { margin-bottom: 18px; }
.hero-book h1 {
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.05; letter-spacing: -0.03em;
  color: #fff; max-width: 20ch;
}
.hero-book .hero-sub {
  max-width: 640px; margin-top: 18px;
  font-size: 17px; color: var(--text-secondary); line-height: 1.65;
}
.hero-book .hero-meta { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 26px; }
.hero-book .hero-meta span { display: inline-flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--text-tertiary); }
.hero-book .hero-meta i { color: var(--accent-light); }

/* Breadcrumb inside the dark hero. */
.hero-book .breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; font-size: 12.5px; color: var(--text-muted); margin-bottom: 18px; }
.hero-book .breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 8px; color: var(--text-muted); opacity: 0.55; }
.hero-book .breadcrumb a { color: var(--text-tertiary); }
.hero-book .breadcrumb a:hover { color: var(--accent-light); }
.hero-book .breadcrumb [aria-current="page"] { color: var(--text-secondary); }

/* ─── Pre-scheduling routing cues (dark cards) ──────────────── */
.precue-row {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px;
  margin: clamp(-10px, -1vw, 0) 0 clamp(30px, 3.6vw, 44px);
}
@media (max-width: 860px) { .precue-row { grid-template-columns: 1fr; } }
.precue-card {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px; border-radius: var(--radius-md);
  border: 1px solid var(--border-card); background: var(--bg-card);
  text-decoration: none; transition: border-color .2s ease, transform .2s ease, background .2s ease;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.precue-card:hover, .precue-card:focus-visible { border-color: var(--accent-light); background: var(--bg-card-hover); transform: translateY(-2px); }
.precue-card > i:first-child { flex: none; font-size: 18px; color: var(--accent-light); }
.precue-card > i:last-child { flex: none; font-size: 13px; color: var(--text-tertiary); }
.precue-card h3 { font-size: 14.5px; color: #fff; margin-bottom: 4px; letter-spacing: -0.01em; }
.precue-card p { font-size: 13px; color: var(--text-tertiary); line-height: 1.5; }
.section--flush-top { padding-top: 0; }

/* ─── Three-step request strip (dark) ───────────────────────── */
.step-strip {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-subtle);
  padding: clamp(38px, 4.5vw, 58px) 0;
}
.step-head { margin-bottom: clamp(22px, 2.6vw, 30px); }
.step-head h2 { font-size: clamp(20px, 2.2vw, 26px); color: #fff; letter-spacing: -0.015em; }
.step-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 860px) { .step-grid { grid-template-columns: 1fr; } }
.step-card {
  display: flex; flex-direction: column;
  padding: 26px 24px;
  border: 1px solid var(--border-card); border-radius: var(--radius-lg);
  background: var(--bg-card);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.step-card .step-n {
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 16px;
  font-family: var(--font-display); font-size: 14px; font-weight: 600; color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-electric));
  box-shadow: 0 6px 18px rgba(66,133,244,0.35);
}
.step-card h3 { font-size: 17px; color: #fff; margin-bottom: 8px; letter-spacing: -0.01em; }
.step-card p { font-size: 14px; color: var(--text-tertiary); line-height: 1.6; }

/* Scroll target clears the sticky header. */
#inspection-request-form { scroll-margin-top: calc(var(--header-height) + 24px); }

/* ─── Scheduling help band ───────────────────────────────────
   Dark accent island (same pattern used elsewhere on the site). */
.help-band {
  --text-primary: #ffffff;
  --text-secondary: #c7cad6;
  --text-tertiary: #9ba0b3;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
  padding: clamp(34px, 4vw, 52px) clamp(26px, 5vw, 64px);
  border-radius: var(--radius-xl); border: 1px solid var(--border-card);
  background: linear-gradient(120deg, #070b14 0%, #0b1322 55%, #071018 100%);
}
.help-band::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(560px 300px at 14% 20%, rgba(66,133,244,0.20), transparent 65%),
    radial-gradient(480px 260px at 90% 84%, rgba(34,211,238,0.12), transparent 62%);
}
.help-text { position: relative; z-index: 1; max-width: 620px; }
.help-text h2 { font-size: clamp(24px, 2.8vw, 34px); color: var(--text-primary); letter-spacing: -0.02em; margin-bottom: 12px; }
.help-text p { font-size: 15.5px; color: var(--text-tertiary); line-height: 1.65; }
.help-actions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 767px) { .help-actions .btn { width: 100%; justify-content: center; } }
