/* ── Hero ── */
.hero {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 64px 0;
  width: 100%;
}

.hero-title {
  font-size: clamp(26px, 5vw, 44px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: clamp(15px, 2.5vw, 18px);
  color: rgba(255,255,255,0.88);
  margin-bottom: 28px;
  line-height: 1.6;
  max-width: 560px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-outline-white {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.18);
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 767px) {
  .hero { min-height: 320px; }

  .hero-inner {
    padding: 44px 0;
    text-align: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

/* ── How it works ── */
.how-it-works {
  padding: 48px var(--spacing);
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 20px;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

.step-card {
  text-align: center;
  padding: 24px 16px;
}

.step-num {
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.step-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ── Home body layout ── */
.home-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-top: 32px;
  padding-bottom: 48px;
}

@media (min-width: 768px) {
  .home-body { grid-template-columns: 1fr 300px; }
}

/* ── Section head ── */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.section-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
}

/* ── Question list ── */
.question-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.question-card {
  padding: 16px 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.question-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}

.question-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.city-tag {
  display: inline-block;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 99px;
  text-decoration: none;
}
.city-tag:hover {
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
}

.question-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.4;
}
.question-title a { color: var(--color-text); }
.question-title a:hover { color: var(--color-primary); text-decoration: none; }

.question-excerpt {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}

.question-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

.answer-count {
  font-size: 13px;
  color: var(--color-text-muted);
  background: var(--color-bg);
  padding: 2px 10px;
  border-radius: 99px;
}
.answer-count.has-answers {
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 600;
}

/* ── Sidebar ── */
.sidebar-card { margin-bottom: 16px; }

.sidebar-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--color-text);
}

/* ── City list (sidebar) ── */
.city-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.city-list-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition);
}
.city-list-link:hover {
  background: var(--color-primary-light);
  text-decoration: none;
}

.city-name {
  font-size: 14px;
  color: var(--color-text);
  font-weight: 500;
}
.city-count {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 1px 8px;
  border-radius: 99px;
}

/* ── CTA business ── */
.cta-business h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.cta-business p  { font-size: 13px; color: var(--color-text-muted); line-height: 1.5; }

/* ── Sponsor logo placeholder ── */
.sponsor-logo-placeholder {
  width: 56px;
  height: 56px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}