/* selr-private-install.css: the /services/private-install journey page.
 *
 * The page shell (nav, hero type, buttons, chips, close band, footer, motion)
 * comes from selr-services-hub.css. This file adds only the sections unique
 * to this page, under a .pi- prefix so nothing leaks either way.
 *
 * Every value follows the measured design language (skill selr-design-language,
 * tokens.css): warm canvas #F7F5EF, cards #FFFFFA, ink #242424 / #616161, one
 * accent #6736E2, radii 20/30/40, Manrope Variable display at wght 585,
 * negative tracking everywhere, no drop shadows anywhere.
 */

/* ---------- hero additions ---------- */
.pi-hero-spine {
  max-width: 560px;
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: var(--svc-muted);
}
.pi-hero-cta { margin-top: 40px; }

/* ---------- how the day runs: three cards ---------- */
.pi-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 80px;
}
.pi-card {
  background: var(--svc-surface);
  border-radius: 30px;
  padding: 40px;
  display: flex;
  flex-direction: column;
}
.pi-card h3 {
  margin-top: 25px;
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: -0.04em;
}
.pi-card p {
  margin-top: 15px;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: var(--svc-muted);
}

/* ---------- what gets installed: four tiles + ownership note ---------- */
.pi-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 80px;
}
.pi-tile {
  background: var(--svc-surface-2);
  border-radius: 30px;
  padding: 40px;
}
.pi-tile h3 {
  font-size: 25px;
  line-height: 1.3;
  letter-spacing: -0.03em;
}
.pi-tile p {
  margin-top: 15px;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: var(--svc-muted);
  max-width: 520px;
}

.pi-own {
  margin-top: 20px;
  background: var(--svc-dark);
  color: rgba(255, 255, 255, 0.75);
  border-radius: 30px;
  padding: 40px;
}
.pi-own p {
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.03em;
  max-width: 720px;
}
.pi-own b {
  color: var(--svc-invert);
  font-weight: 600;
}

/* ---------- who it's for: two cards ---------- */
.pi-who {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 80px;
}
.pi-who-card {
  background: var(--svc-surface);
  border-radius: 30px;
  padding: 40px;
}
.pi-who-card h3 {
  font-size: 25px;
  line-height: 1.3;
  letter-spacing: -0.03em;
}
.pi-list {
  list-style: none;
  margin: 25px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pi-list li {
  position: relative;
  padding-left: 25px;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: var(--svc-muted);
}
.pi-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: var(--svc-purple);
}
.pi-link {
  color: var(--svc-ink);
  text-decoration: underline;
  text-decoration-color: var(--svc-purple);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  transition: color .3s var(--svc-ease-sym);
}
.pi-link:hover { color: var(--svc-purple); }

/* ---------- proof: testimonial + case card ---------- */
.pi-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 80px;
}
.pi-quote {
  margin: 0;
  background: var(--svc-surface);
  border-radius: 30px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
.pi-quote blockquote {
  margin: 0;
  font-family: 'Manrope Variable', 'Manrope', sans-serif;
  font-variation-settings: 'wght' 585;
  font-weight: 400;
  font-size: 25px;
  line-height: 1.3;
  letter-spacing: -0.03em;
}
.pi-quote figcaption {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: var(--svc-muted);
}
.pi-quote figcaption b { color: var(--svc-ink); font-weight: 600; }
.pi-quote figcaption img {
  width: 44px;
  height: 44px;
  border-radius: 100%;
  object-fit: cover;
  flex: none;
}

.pi-case {
  background: var(--svc-dark);
  color: var(--svc-invert);
  border-radius: 30px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}
.pi-case-kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: rgba(255, 255, 255, 0.55);
}
.pi-case h3 {
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: -0.04em;
  color: var(--svc-surface-2);
  max-width: 560px;
}
.pi-case-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 50px;
}
.pi-case-stats > div { display: flex; flex-direction: column; gap: 5px; }
.pi-stat-num {
  font-family: 'Manrope Variable', 'Manrope', sans-serif;
  font-variation-settings: 'wght' 585;
  font-weight: 400;
  font-size: 54px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--svc-surface-2);
}
.pi-stat-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: rgba(255, 255, 255, 0.55);
}
.pi-case .svc-btn--dark {
  background: rgba(255, 255, 255, 0.12);
  margin-top: auto;
}
.pi-case .svc-btn--dark:hover { background: var(--svc-purple); }

/* ---------- the journey: after the install ---------- */
.pi-journey {
  background: var(--svc-purple);
  color: var(--svc-on-purple);
  border-radius: 30px;
  padding: 80px 40px;
  margin-top: 120px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.pi-journey-kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--svc-on-purple);
}
.pi-journey h2 {
  margin-top: 20px;
  font-size: 45px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--svc-surface-2);
}
.pi-journey h2 .svc-dim { color: rgba(255, 255, 255, 0.55); }
.pi-journey-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.pi-journey-right p {
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.03em;
  max-width: 480px;
}
.pi-journey .svc-btn--purple {
  background: var(--svc-surface-2);
  color: var(--svc-ink);
}
.pi-journey .svc-btn--purple .svc-dot { background: var(--svc-purple); }
.pi-journey .svc-btn--purple:hover { background: var(--svc-invert); }

/* ============================================================
   RESPONSIVE: Framer's own breakpoints, 810 and 1200
   ============================================================ */
@media (max-width: 1199px) {
  .pi-cards { grid-template-columns: 1fr; }
  .pi-proof { grid-template-columns: 1fr; }
  .pi-journey { grid-template-columns: 1fr; }
  .pi-journey h2 { font-size: 30px; }
}

@media (max-width: 809px) {
  .pi-hero-cta { margin-top: 30px; }
  .pi-cards, .pi-tiles, .pi-who, .pi-proof { margin-top: 40px; }
  .pi-tiles, .pi-who { grid-template-columns: 1fr; }
  .pi-card, .pi-tile, .pi-who-card, .pi-quote, .pi-case, .pi-own { padding: 20px; }
  .pi-card h3 { font-size: 25px; }
  .pi-tile h3, .pi-who-card h3 { font-size: 20px; }
  .pi-card p, .pi-tile p, .pi-list li, .pi-own p,
  .pi-journey-right p { font-size: 15px; }
  .pi-quote blockquote { font-size: 20px; }
  .pi-case h3 { font-size: 25px; }
  .pi-stat-num { font-size: 48px; }
  .pi-case-stats { gap: 15px 30px; }
  .pi-journey { padding: 40px 20px; margin-top: 60px; }
  .pi-journey h2 { font-size: 25px; }
}
