/* ─── Listora Design System — Pastel Red · Navy · White ─── */

:root {
  --navy:      #0D1E3E;
  --navy-mid:  #162B52;
  --navy-soft: #1E3A6E;
  --red:       #E8605A;
  --red-light: #FDE8E7;
  --red-mid:   #F07C77;
  --white:     #FFFFFF;
  --off-white: #F7F9FC;
  --border:    #E4EAF4;
  --text:      #1A2844;
  --muted:     #5A6B8A;
}

/* Body */
body { background: var(--white); color: var(--text); }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  border-radius: 0.625rem;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.5rem;
  transition: background 0.18s, transform 0.1s;
  box-shadow: 0 4px 14px rgba(232,96,90,0.28);
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: #d44e48; transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
  border-radius: 0.625rem;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.5rem;
  transition: border-color 0.18s, color 0.18s;
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 1rem;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.card:hover {
  border-color: #c5d2e8;
  box-shadow: 0 6px 24px rgba(13,30,62,0.07);
}

/* ── Form inputs ── */
.input-field {
  width: 100%;
  border-radius: 0.5rem;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  padding: 0.625rem 0.875rem;
  color: var(--text);
  font-size: 0.9375rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.input-field::placeholder { color: var(--muted); }
.input-field:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232,96,90,0.12);
}

/* ── Pill badge ── */
.pill {
  display: inline-block;
  background: var(--red-light);
  color: var(--red);
  border-radius: 999px;
  padding: 0.25rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Section label (like AutoReel's "BUILT FOR REAL ESTATE") ── */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

/* ── Stat number ── */
.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

/* ── Step number badge ── */
.step-badge {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: var(--red-light);
  color: var(--red);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-badge.navy {
  background: rgba(13,30,62,0.08);
  color: var(--navy);
}

/* ── Hero video container ── */
.hero-video-wrap {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(13,30,62,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  aspect-ratio: 16/9;
  background: var(--navy-mid);
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Testimonial card ── */
.testi-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
}
.testi-card p { font-size: 0.9rem; line-height: 1.6; color: var(--text); }
.testi-card .avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8605A 0%, #1E3A6E 100%);
  flex-shrink: 0;
}

/* ── FAQ accordion ── */
details.faq-item {
  border: 1.5px solid var(--border);
  border-radius: 0.875rem;
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.15s;
}
details.faq-item[open] { border-color: var(--red); }
details.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 1.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  color: var(--navy);
}
details.faq-item summary .plus {
  font-size: 1.25rem;
  color: var(--muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}
details.faq-item[open] summary .plus { transform: rotate(45deg); color: var(--red); }
details.faq-item .faq-body { padding: 0 1.5rem 1.125rem; font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
