/* ============================================
   ReadPuppy Landing — landing.css ?v=2.0
   ============================================ */

/* --- HERO --- */
.rp-hero {
  background: linear-gradient(160deg, #0f0c29 0%, #302b63 60%, #1a1a2e 100%);
  padding: 60px 0 70px;
  color: #fff;
}
.rp-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .rp-hero__inner { flex-direction: row; align-items: flex-start; gap: 60px; }
  .rp-hero__left { flex: 1.1; }
  .rp-hero__right { flex: 0.9; }
}
.rp-hero__badge {
  display: inline-block;
  background: rgba(255,215,0,0.15);
  color: #FFD700;
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.rp-hero__headline {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 18px;
}
.rp-hero__gold { color: #FFD700; }
.rp-hero__sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 520px;
}
.rp-btn--gold {
  background: #FFD700;
  color: #1a1a1a;
  font-weight: 700;
  border: none;
}
.rp-btn--gold:hover { background: #e6c200; color: #1a1a1a; }
.rp-btn--sm { padding: 10px 20px; font-size: 0.9rem; width: auto; display: inline-block; }
.rp-hero__trust {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  margin-top: 12px;
  text-align: center;
}

/* --- URGENCY WIDGET --- */
.rp-urgency-widget {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 24px;
  backdrop-filter: blur(4px);
}
.rp-urgency-widget__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFD700;
  margin-bottom: 14px;
  text-align: center;
}
.rp-urgency-widget__input-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.rp-urgency-input {
  width: 70px;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255,215,0,0.4);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
}
.rp-urgency-input:focus { outline: none; border-color: #FFD700; background: rgba(255,255,255,0.15); }
.rp-urgency-widget__hint { color: rgba(255,255,255,0.35); font-size: 0.8rem; text-align: center; margin-top: 12px; }
.rp-urgency-result { margin-top: 8px; }
.rp-urgency-summary {
  font-size: 0.95rem;
  color: #fff;
  text-align: center;
  margin-bottom: 14px;
  font-weight: 600;
}
.rp-urgency-timeline { margin-bottom: 16px; }
.rp-urgency-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 0.82rem;
}
.rp-urgency-row__badge {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.rp-urgency-row__badge--critical { background: #ff4444; }
.rp-urgency-row__badge--soon { background: #FFD700; }
.rp-urgency-row__badge--ok { background: #44bb44; }
.rp-urgency-row__badge--closed { background: #555; }
.rp-urgency-row__label { color: rgba(255,255,255,0.85); flex: 1; }
.rp-urgency-row__status { font-size: 0.75rem; font-weight: 600; }
.rp-urgency-row__status--critical { color: #ff6666; }
.rp-urgency-row__status--soon { color: #FFD700; }
.rp-urgency-row__status--ok { color: #66dd66; }
.rp-urgency-row__status--closed { color: #666; }

/* --- PROBLEM --- */
.rp-problem {
  padding: 72px 0;
  text-align: center;
  background: #fff;
}
.rp-problem h2 {
  max-width: 580px;
  margin: 0 auto 40px;
  color: var(--rp-dark);
}
.rp-problem__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto 32px;
  text-align: left;
}
@media (min-width: 768px) { .rp-problem__cols { grid-template-columns: repeat(3, 1fr); } }
.rp-problem__col {
  background: #f9f9f9;
  border-left: 4px solid var(--rp-red);
  border-radius: 0 8px 8px 0;
  padding: 20px;
}
.rp-problem__icon { font-size: 1.8rem; margin-bottom: 10px; }
.rp-problem__col p { color: var(--rp-mid); font-size: 0.95rem; line-height: 1.65; margin: 0; }
.rp-problem__pivot {
  display: inline-block;
  background: linear-gradient(90deg, var(--rp-purple), var(--rp-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 8px;
}

/* --- SECTION UTILITY --- */
.rp-section-sub { text-align: center; color: var(--rp-muted); margin-bottom: 36px; font-size: 1rem; }

/* --- TIMELINE SECTION --- */
.rp-timeline-section {
  padding: 72px 0;
  background: var(--rp-bg);
}
.rp-timeline-section h2 { text-align: center; margin-bottom: 8px; }
.rp-timeline {
  max-width: 800px;
  margin: 36px auto 0;
}
.rp-timeline__bar {
  display: flex;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}
.rp-timeline__zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.3;
}
.rp-timeline__zone small { font-weight: 400; opacity: 0.85; font-size: 0.68rem; }
.rp-timeline__zone--red { background: #c0392b; }
.rp-timeline__zone--amber { background: #e67e22; }
.rp-timeline__zone--green { background: var(--rp-green); }
.rp-timeline__topics {
  position: relative;
  height: 32px;
  font-size: 0.75rem;
  color: var(--rp-muted);
}
.rp-tl-topic {
  position: absolute;
  transform: translateX(-50%);
  white-space: nowrap;
  top: 6px;
}

/* --- TOPICS GRID --- */
.rp-topics {
  padding: 72px 0;
  background: #fff;
}
.rp-topics h2 { text-align: center; margin-bottom: 36px; }
.rp-topics__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) { .rp-topics__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .rp-topics__grid { grid-template-columns: repeat(5, 1fr); } }
.rp-topic-card {
  border: 1px solid var(--rp-border);
  border-top: 4px solid var(--rp-purple);
  border-radius: 10px;
  padding: 20px 14px;
  text-align: center;
  background: #fff;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.rp-topic-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.rp-topic-card--green { border-top-color: var(--rp-green); }
.rp-topic-card__icon { font-size: 2rem; margin-bottom: 8px; }
.rp-topic-card__title { font-weight: 600; font-size: 0.9rem; color: var(--rp-dark); margin-bottom: 5px; }
.rp-topic-card__desc { font-size: 0.8rem; color: var(--rp-muted); line-height: 1.5; }

/* --- PREVIEW BOXES --- */
.rp-preview {
  padding: 72px 0;
  background: var(--rp-bg);
}
.rp-preview h2 { text-align: center; margin-bottom: 8px; }
.rp-preview__boxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 36px auto 0;
}
@media (min-width: 768px) { .rp-preview__boxes { grid-template-columns: repeat(3, 1fr); } }

/* --- CREDIBILITY --- */
.rp-credibility {
  padding: 72px 0;
  background: linear-gradient(160deg, #0f0c29 0%, #302b63 100%);
  text-align: center;
  color: #fff;
}
.rp-credibility__inner { max-width: 620px; margin: 0 auto; }
.rp-credibility__badge { font-size: 3rem; margin-bottom: 16px; }
.rp-credibility h2 { color: #fff; margin-bottom: 16px; }
.rp-credibility p { color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.75; margin-bottom: 10px; }

/* --- PRICING --- */
.rp-pricing {
  padding: 80px 0;
  background: #fff;
}
.rp-pricing__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 768px) { .rp-pricing__inner { flex-direction: row; align-items: flex-start; gap: 60px; } }
.rp-pricing__left { flex: 1; }
.rp-pricing__left h2 { margin-bottom: 20px; }
.rp-pricing__list { list-style: none; padding: 0; }
.rp-pricing__list li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--rp-mid);
  font-size: 0.95rem;
  border-bottom: 1px solid #f0f0f0;
}
.rp-pricing__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--rp-green);
  font-weight: 700;
}
.rp-pricing__right { flex: 0 0 280px; }
.rp-pricing__card {
  background: linear-gradient(160deg, #0f0c29, #302b63);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  color: #fff;
}
.rp-pricing__price { font-size: 3.5rem; font-weight: 800; color: #FFD700; line-height: 1; margin-bottom: 6px; }
.rp-pricing__note { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 8px; }
.rp-pricing__compare { color: rgba(255,255,255,0.45); font-size: 0.8rem; margin-bottom: 24px; }

/* --- FAQ --- */
.rp-faq {
  padding: 72px 0;
  background: var(--rp-bg);
}
.rp-faq h2 { text-align: center; margin-bottom: 36px; }
.rp-faq__list { max-width: 720px; margin: 0 auto; }
.rp-faq__item {
  border: 1px solid var(--rp-border);
  border-radius: 10px;
  margin-bottom: 10px;
  background: #fff;
  overflow: hidden;
}
.rp-faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--rp-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rp-faq__q::after { content: "+"; font-size: 1.4rem; color: var(--rp-purple); font-weight: 300; }
.rp-faq__item.open .rp-faq__q::after { content: "−"; }
.rp-faq__a {
  display: none;
  padding: 0 20px 18px;
  color: var(--rp-mid);
  font-size: 0.95rem;
  line-height: 1.7;
}
.rp-faq__item.open .rp-faq__a { display: block; }

/* --- PURCHASE PAGE --- */
.rp-purchase__card { max-width: 520px; margin: 0 auto; }
.rp-purchase__header { text-align: center; margin-bottom: 28px; }
.rp-purchase__price { font-size: 2rem; font-weight: 700; color: #FFD700; margin-top: 8px; }
.rp-purchase__includes { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.15); }
.rp-purchase__includes li { padding: 4px 0 4px 24px; position: relative; color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.rp-purchase__includes li::before { content: "✓"; position: absolute; left: 0; color: #FFD700; font-weight: 700; }
.rp-purchase__test-badge { text-align: center; margin-bottom: 20px; }
.rp-badge--test { background: rgba(255,215,0,0.15); color: #FFD700; border: 1px solid rgba(255,215,0,0.3); border-radius: 20px; padding: 4px 12px; font-size: 0.78rem; font-weight: 600; }

@media (max-width: 480px) {
  .rp-hero__headline { font-size: 2rem; }
  .rp-pricing__right { flex: none; width: 100%; }
}
