/* ============================================================
   home-rehaul.css — conversion components for the homepage
   Matches the existing red (#C2304C) + glassmorphism system.
   Loaded after home-base.css / home-sections.css.
   ============================================================ */

/* Hero: store button row + honest trust line */
.hero-stores {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 0.25rem 0 0.9rem;
}
.hero-stores .store-button { min-width: 190px; }

.hero-trustline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.55rem 1rem;
  margin-top: 0.4rem;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.74);
}
.hero-trustline .ht-item { display: inline-flex; align-items: center; gap: 0.4rem; white-space: nowrap; }
.hero-trustline .ht-star { color: #ffd86b; letter-spacing: 1px; }

/* Honest social-proof band */
.trust-band {
  margin: 2.4rem auto 0;
  max-width: 1000px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.05rem;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.86);
}
.trust-chip strong { color: #fff; font-weight: 700; }
.trust-chip .tc-star { color: #ffd86b; letter-spacing: 1px; }

/* Feature grid (real app capabilities) */
.feature-section { margin: 4.5rem 0 0; }
.feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 1.8rem;
}
.feature-card {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  padding: 1.5rem;
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(88, 12, 27, 0.08);
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 26px 60px rgba(88, 12, 27, 0.18); }
.feature-icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.feature-card h3 { font-size: 1.18rem; font-weight: 700; line-height: 1.25; margin-bottom: 0.5rem; color: #fff; }
.feature-card p { color: rgba(255, 255, 255, 0.78); line-height: 1.55; font-size: 0.95rem; margin: 0; }

/* Pricing teaser */
.pricing-section { margin: 4.5rem 0 0; }
.price-cards {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
  margin: 1.8rem auto 0;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  padding: 1.6rem 1.5rem;
  backdrop-filter: blur(18px);
  text-align: left;
}
.price-card--premium {
  background: #fff;
  color: #2a1117;
  border-color: #fff;
  box-shadow: 0 26px 70px rgba(40, 8, 18, 0.32);
}
.price-badge {
  position: absolute;
  top: -0.85rem;
  right: 1.3rem;
  background: #21242b;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
}
.price-name { font-size: 0.82rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.7; margin-bottom: 0.6rem; }
.price-amount { font-size: 2.6rem; font-weight: 800; line-height: 1; }
.price-amount .price-period { font-size: 1rem; font-weight: 600; opacity: 0.7; }
.price-annual { margin-top: 0.4rem; font-size: 0.9rem; opacity: 0.78; }
.price-annual .save { color: #009c3d; font-weight: 800; }
.price-card--free .price-annual .save { color: #6affa1; }
.price-list { list-style: none; margin: 1.2rem 0 1.5rem; padding: 0; display: grid; gap: 0.6rem; }
.price-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.95rem; line-height: 1.4; }
.price-list .chk { flex: 0 0 auto; width: 1.2rem; height: 1.2rem; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 0.72rem; margin-top: 0.05rem; }
.price-card--free .chk { background: rgba(255, 255, 255, 0.16); color: #fff; }
.price-card--premium .chk { background: #c2304c; color: #fff; }
.price-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.3rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.price-card--free .price-cta { background: rgba(255, 255, 255, 0.14); color: #fff; border: 1px solid rgba(255, 255, 255, 0.22); }
.price-card--premium .price-cta { background: #c2304c; color: #fff; box-shadow: 0 12px 30px rgba(194, 48, 76, 0.4); }
.price-cta:hover { transform: translateY(-2px); }
.price-foot { text-align: center; margin-top: 1.1rem; font-size: 0.84rem; color: rgba(255, 255, 255, 0.62); line-height: 1.5; }
.price-foot a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 720px) {
  .price-cards { grid-template-columns: 1fr; }
  .price-badge { right: 1rem; }
}

/* ---- Product-forward split hero (show the app doing its magic) ---- */
.hero-wrap--split { align-items: center; }
.hero-split {
  max-width: 1140px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  text-align: left;
}
.hero-split .hero-title,
.hero-split .hero-subtitle { margin-left: 0; margin-right: 0; }
.hero-split .hero-subtitle { max-width: 38ch; }
.hero-split .proof-counter,
.hero-split .section-label { justify-content: flex-start; }
.hero-cta-block { margin: 1.4rem 0 0.4rem; }
.hero-split .hero-stores { justify-content: flex-start; }
.hero-split .hero-trustline { justify-content: flex-start; }
.hero-split .signal-row { justify-content: flex-start; margin-top: 1.4rem; }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 560px; }
.hero-phone {
  background: #0c0c0e;
  border-radius: 46px;
  padding: 9px;
  box-shadow: 0 40px 90px rgba(40, 6, 16, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.10);
}
.hero-phone img { display: block; width: 100%; height: auto; border-radius: 38px; }
.hero-phone--front { position: relative; z-index: 2; width: 278px; max-width: 76vw; }
.hero-phone--back {
  position: absolute; z-index: 1; width: 232px;
  right: 2%; top: 50%;
  transform: translateY(-55%) rotate(7deg);
  opacity: 0.97;
}

@media (max-width: 880px) {
  .hero-split { grid-template-columns: 1fr; text-align: center; gap: 1.8rem; }
  .hero-split .hero-subtitle { max-width: 100%; }
  .hero-split .hero-title,
  .hero-split .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-split .proof-counter,
  .hero-split .section-label,
  .hero-split .hero-stores,
  .hero-split .hero-trustline,
  .hero-split .signal-row { justify-content: center; }
  .hero-visual { min-height: 0; }
  .hero-phone--back { display: none; }
  .hero-phone--front { width: 250px; }
}

/* ---- "See it in action" showcase (real screenshots) ---- */
.showcase-section { margin: 4.5rem 0 0; }
.showcase-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 72vw);
  gap: 1.4rem;
  margin-top: 1.8rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.3rem 0.3rem 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.showcase-strip::-webkit-scrollbar { display: none; }
.showcase-card { margin: 0; scroll-snap-align: center; display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-phone--mini { width: 100%; max-width: 218px; padding: 7px; border-radius: 38px; }
.hero-phone--mini img { border-radius: 31px; }
.showcase-card figcaption { margin-top: 1rem; max-width: 240px; }
.showcase-card figcaption strong { display: block; color: #fff; font-weight: 700; font-size: 1rem; }
.showcase-card figcaption span { display: block; color: rgba(255, 255, 255, 0.74); font-size: 0.86rem; line-height: 1.45; margin-top: 0.25rem; }
@media (min-width: 940px) {
  .showcase-strip { grid-auto-flow: row; grid-template-columns: repeat(4, 1fr); grid-auto-columns: auto; overflow: visible; }
}
