/* restore Bootstrap list-inline lost when BootstrapAsset was removed */
.list-inline { padding-left: 0; list-style: none; }
.list-inline > li { display: inline-block; padding-right: 5px; padding-left: 5px; }

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

:root {
  --orange: #f04e23;
  --dark:   #111210;
  --mid:    #1e1f1c;
  --light:  #f5f3ee;
  --muted:  #888880;
  --radius: 12px;
}

body { background: var(--light); color: var(--dark); }

.page { font-family: 'Barlow', sans-serif; font-size: 17px; line-height: 1.6; }

/* ── container ── */
.container { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* ── hero ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  background: var(--dark);
  color: var(--light);
  overflow: hidden;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 64px 48px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.0;
  text-transform: uppercase;
}
.accent { color: var(--orange); }
.tagline {
  font-size: 18px;
  color: #bbb;
  max-width: 340px;
}
.hero-img-wrap {
  overflow: hidden;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── cta button ── */
.cta-btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 14px 28px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  transition: opacity .15s, transform .15s;
  align-self: center;
}
.cta-btn:hover { opacity: .88; transform: translateY(-1px); }

/* ── pitch ── */
.pitch {
  padding: 80px 0;
  background: var(--light);
}
.pitch h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 20px;
}
.pitch p { color: #444; max-width: 560px; }

/* ── section label ── */
.section-label {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 24px;
}

/* ── how it works ── */
.how-it-works {
  padding: 80px 0;
  background: var(--mid);
  color: var(--light);
}
.how-it-works .section-label { color: var(--orange); }
.steps { display: flex; flex-direction: column; gap: 36px; }
.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  min-width: 56px;
}
.step strong { display: block; font-size: 18px; margin-bottom: 4px; }
.step p { color: #aaa; margin: 0; }

/* ── testimonial ── */
.testimonial {
  padding: 80px 0;
  background: var(--orange);
  color: #fff;
  text-align: center;
}
blockquote {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 640px;
  margin-inline: auto;
}
cite {
  font-size: 14px;
  font-style: normal;
  opacity: .85;
  letter-spacing: .06em;
}

/* ── preview ── */
.preview {
  padding: 80px 0;
  background: var(--light);
}
.preview p { color: #444; margin-bottom: 32px; }
.preview-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.12);
}
.preview-img-wrap img { width: 100%; display: block; }

/* ── pricing ── */
.pricing {
  padding: 80px 0 100px;
  background: var(--dark);
  color: var(--light);
}
.pricing .section-label { color: var(--orange); }
.pricing p { color: #aaa; max-width: 520px; margin-bottom: 32px; }
.pricing strong { color: var(--light); }
.pricing .cta-btn { display: block; margin: 0 auto; }

/* ── form section ── */
.form-section {
  padding: 80px 0 100px;
  background: var(--mid);
  color: var(--light);
}
.form-heading { margin-bottom: 40px; }
.form-heading h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
}

/* ── step indicator ── */
.step-indicator {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.step-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid #444;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #666;
  flex-shrink: 0;
  transition: all .25s;
}
.step-dot.current {
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: 0 0 0 4px rgba(240,78,35,.15);
}
.step-dot.done {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.step-line {
  flex: 1;
  height: 2px;
  background: #333;
  margin: 0 8px;
  transition: background .25s;
}
.step-line.done { background: var(--orange); }

/* ── step content ── */
.step-wrapper { min-height: 340px; }
.step-content { max-width: 560px; }
.step-header { margin-bottom: 32px; }
.step-eyebrow {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 8px;
}
.step-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
}
.step-sub { color: #888; margin-top: 6px; }

/* ── fields ── */
.field { margin-bottom: 24px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 8px;
}
.field input[type="text"],
.field input[type="email"] {
  width: 100%;
  background: #2a2b28;
  border: 1.5px solid #3a3b37;
  border-radius: var(--radius);
  color: var(--light);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  padding: 13px 16px;
  outline: none;
  transition: border-color .15s;
}
.field input:focus { border-color: var(--orange); }
.field input.error { border-color: #e04040; }
.field input::placeholder { color: #555; }
.field-error { display: block; color: #e04040; font-size: 13px; margin-top: 6px; }
.field-ok { display: block; color: #4caf50; font-size: 13px; margin-top: 6px; }

/* ── location input ── */
.location-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: #2a2b28;
  border: 1.5px solid #3a3b37;
  border-radius: var(--radius);
  transition: border-color .15s;
}
.location-input-wrap:focus-within { border-color: var(--orange); }
.location-input-wrap.error { border-color: #e04040; }
.location-input-wrap.loading { border-color: #888; }
.location-icon { padding: 0 4px 0 14px; font-size: 16px; }
.location-spinner {
  padding: 0 14px 0 4px;
  color: #888;
  animation: spin .8s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }
.location-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--light);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  padding: 13px 16px 13px 8px;
  outline: none;
}
.location-input-wrap input::placeholder { color: #555; }

/* ── suggestions dropdown ── */
.suggestions {
  list-style: none;
  background: #222320;
  border: 1.5px solid #3a3b37;
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  margin: 0;
  padding: 4px 0;
  max-height: 220px;
  overflow-y: auto;
}
.suggestions li {
  padding: 10px 16px;
  font-size: 14px;
  color: #bbb;
  cursor: pointer;
}
.suggestions li:hover,
.suggestions li.highlighted {
  background: rgba(240,78,35,.12);
  color: var(--light);
}
.location-input-wrap.has-error { border-color: #e04040; }

/* ── pills ── */
.pill-group { display: flex; gap: 10px; flex-wrap: wrap; }
.pill {
  background: transparent;
  border: 1.5px solid #3a3b37;
  border-radius: 999px;
  color: #aaa;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 20px;
  cursor: pointer;
  transition: all .15s;
}
.pill:hover { border-color: #666; color: var(--light); }
.pill.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.pill-group--lg .pill { padding: 12px 24px; font-size: 15px; }

/* ── distance groups ── */
.distance-groups { display: flex; gap: 24px; margin-bottom: 8px; }
.distance-group { flex: 1; }
.group-label {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #666;
  font-weight: 600;
  margin-bottom: 10px;
}
.distance-chips { display: flex; flex-direction: column; gap: 8px; }
.distance-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #2a2b28;
  border: 1.5px solid #3a3b37;
  border-radius: var(--radius);
  color: #aaa;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 12px;
  cursor: pointer;
  transition: all .15s;
  text-align: left;
  width: 100%;
}
.distance-chip:hover { border-color: #666; color: var(--light); }
.distance-chip.active {
  background: rgba(240,78,35,.12);
  border-color: var(--orange);
  color: var(--light);
}
.chip-emoji { font-size: 16px; flex-shrink: 0; }
.chip-label { line-height: 1; }

/* ── nav buttons ── */
.step-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}
.btn-next, .btn-back, .btn-submit {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  padding: 13px 28px;
  cursor: pointer;
  border: none;
  transition: opacity .15s, transform .15s;
}
.btn-next, .btn-submit {
  background: var(--orange);
  color: #fff;
}
.btn-next:hover, .btn-submit:hover { opacity: .88; transform: translateY(-1px); }
.btn-submit { padding: 15px 32px; font-size: 16px; }
.btn-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.btn-back {
  background: transparent;
  color: #888;
  border: 1.5px solid #3a3b37;
}
.btn-back:hover { color: var(--light); border-color: #666; }
.btn-back:disabled { opacity: .4; cursor: not-allowed; }
.submit-error { display: block; margin-top: 12px; }
.submit-footnote { color: #555; font-size: 13px; margin-top: 14px; }

/* ── success ── */
.success-message { text-align: center; padding: 60px 0; }
.success-icon { font-size: 56px; margin-bottom: 16px; }
.success-message h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.success-message p { color: #aaa; font-size: 18px; }
.success-cta { display: inline-block; margin-top: 32px; text-decoration: none; }

/* ── step transitions ── */
.slide-fwd-enter-active, .slide-fwd-leave-active,
.slide-bwd-enter-active, .slide-bwd-leave-active {
  transition: all .25s ease;
}
.slide-fwd-enter-from  { transform: translateX(32px); opacity: 0; }
.slide-fwd-leave-to    { transform: translateX(-32px); opacity: 0; }
.slide-bwd-enter-from  { transform: translateX(-32px); opacity: 0; }
.slide-bwd-leave-to    { transform: translateX(32px); opacity: 0; }

/* ── responsive ── */
@media (max-width: 680px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-inner { padding: 48px 24px; }
  .hero-img-wrap { height: 260px; }
}