/* 99Pages sections.css — page-specific section components.
   Hero / Stories / Pricing / Voucher / Trust / Ladder / Depth-link. */

/* === Hero === */
.hero {
  max-width: 960px;
  margin: 80px auto 120px;
  padding: 0 48px;
  text-align: center;
}
.hero-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.hero-sub {
  font-size: 22px;
  color: var(--ink-soft);
  margin-bottom: 48px;
  line-height: 1.5;
}
.segment-tags {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.tag {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  color: var(--ink-soft);
  transition: all 0.2s;
}
.tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}
.hero-quote {
  font-size: 19px;
  color: var(--ink-soft);
  background: var(--bg-soft);
  padding: 28px 36px;
  border-radius: var(--radius);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === Stories === */
.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.story {
  background: var(--bg-card);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: all 0.25s;
}
.story:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.story-tag {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.story h3 { font-size: 19px; margin-bottom: 12px; font-weight: 600; }
.story p { color: var(--ink-soft); margin-bottom: 20px; font-size: 15px; }
.story-stats { list-style: none; margin-bottom: 24px; }
.story-stats li {
  font-size: 14px;
  color: var(--ink-soft);
  padding: 6px 0;
  border-top: 1px solid var(--line);
}
.story-stats li:first-child { border-top: none; }
.story-cta { color: var(--accent); font-weight: 500; font-size: 15px; }

/* === Pricing === */
.price-table {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 48px;
}
.price-row {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr 2fr;
  align-items: center;
  padding: 28px 36px;
  border-bottom: 1px solid var(--line);
  gap: 16px;
}
.price-row:last-child { border-bottom: none; }
.price-name { font-weight: 600; font-size: 17px; }
.price-rate .accent { font-size: 32px; font-weight: 700; }
.price-rate .unit { color: var(--muted); font-size: 15px; margin-left: 4px; }
.price-role { color: var(--ink-soft); font-size: 15px; }
.price-cmp { color: var(--muted); font-size: 14px; }
.price-summary {
  text-align: center;
  padding: 32px;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
}
.price-summary p { margin-bottom: 8px; font-size: 18px; }
.price-summary .accent.big { font-size: 36px; font-weight: 700; }
.price-summary .btn { margin-top: 24px; }

/* === Voucher === */
.voucher-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.voucher-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.25s;
}
.voucher-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.voucher-card.featured {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.voucher-card.featured .voucher-perk { color: var(--accent-soft); }
.voucher-amount {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.voucher-label { color: var(--muted); margin-bottom: 24px; font-size: 15px; }
.voucher-card.featured .voucher-label { color: rgba(255,255,255,0.6); }
.voucher-perk {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 28px;
  line-height: 1.5;
  min-height: 42px;
}

/* === Trust === */
.trust { max-width: 760px; }
.trust-list { list-style: none; }
.trust-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
  color: var(--ink-soft);
}
.trust-list li:last-child { border-bottom: none; }
.check { color: var(--accent); font-weight: 700; flex-shrink: 0; font-size: 18px; }

/* === Ladder === */
.ladder-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.ladder-steps li {
  background: var(--bg-card);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 20px;
}
.ladder-steps h3 { font-size: 19px; font-weight: 600; margin-bottom: 12px; }
.ladder-steps p { color: var(--ink-soft); font-size: 15px; }
.ladder-cta { text-align: center; }

/* === Depth link === */
.depth-link {
  text-align: center;
  padding: 80px 48px;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}
.depth-link p { font-size: 18px; color: var(--ink-soft); margin-bottom: 16px; }

/* === Responsive overrides === */
@media (max-width: 768px) {
  .hero { margin: 48px auto 80px; padding: 0 24px; }
  .hero-title { font-size: 40px; }
  .hero-sub { font-size: 18px; }
  .hero-quote { font-size: 16px; padding: 20px 24px; }
  .price-row { grid-template-columns: 1fr 1fr; gap: 8px; padding: 20px 24px; }
  .price-cmp { grid-column: 1 / -1; }
}
