/* clone.css — PenaltyBack /dreamstrat visual clone (Yaakov Scher, EpiphanyMade)
   Palette + typography lifted from the live page's CSS custom properties.
   Lato + Playfair Display sourced via Google Fonts.
*/

:root {
  --navy: 216 46% 20%;
  --navy-light: 216 30% 46%;
  --slate: 217 33% 17%;
  --cream: 36 100% 98%;
  --violet: 263 58% 59%;
  --violet-light: 263 58% 66%;
  --violet-deep: 263 58% 47%;
  --accent: 263 58% 59%;
  --accent-hover: 263 58% 66%;
  --accent-pressed: 263 58% 47%;
  --accent-light: 270 95% 75%;
  --lavender: 268 86% 77%;
  --muted: 210 40% 96.1%;
  --muted-fg: 215 16% 47%;
  --border: 216 46% 20% / .06;
  --card: 0 0% 100%;
  --primary: 216 46% 20%;
  --foreground: 217 33% 17%;
  --background: 36 100% 98%;
  --shadow-card: 0 1px 3px rgba(27, 42, 74, .06), 0 4px 12px rgba(27, 42, 74, .04);
  --shadow-elevated: 0 8px 30px hsl(263 58% 59% / .1), 0 2px 8px rgba(27, 42, 74, .04);
  --shadow-cta: 0 8px 32px hsl(263 58% 59% / .5), 0 2px 8px rgba(0, 0, 0, .15);
  --shadow-cta-hover: 0 12px 40px hsl(263 58% 66% / .5), 0 4px 12px rgba(0, 0, 0, .2);
  --radius: .75rem;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Lato', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body { overflow-x: hidden; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ── Deadline banner ─────────────────────────────────── */
.pb-banner {
  background: hsl(var(--navy));
  color: hsla(0,0%,100%,.78);
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
}
.pb-banner__hl { color: hsl(var(--accent-light)); font-weight: 700; }
.pb-banner__sep { margin-left: 4px; }
.pb-banner__dot { margin: 0 4px; opacity: .5; }
.pb-banner__cta {
  color: hsl(var(--accent-light));
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pb-banner__cta:hover { opacity: .8; }

/* ── Top nav ─────────────────────────────────────────── */
.pb-nav {
  background: hsl(var(--background));
}
.pb-nav__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid hsla(var(--navy), .08);
}
.pb-brand { display: flex; align-items: baseline; gap: 6px; }
.pb-brand__name { font-family: 'Playfair Display', serif; font-size: 1.65rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.pb-brand__name--primary { color: hsl(var(--primary)); }
.pb-brand__name--accent { color: hsl(var(--accent)); }
.pb-brand__by {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: hsl(var(--muted-fg));
  font-weight: 400;
}
.pb-nav__links { display: flex; align-items: center; gap: 20px; }
.pb-nav__link {
  font-size: 14px;
  color: hsl(var(--muted-fg));
  font-weight: 500;
}
.pb-nav__link:hover { color: hsl(var(--primary)); }
.pb-nav__link--phone { display: inline-flex; align-items: center; gap: 6px; }
.pb-nav__btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; color: hsl(var(--muted-fg)); font-weight: 500;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid hsla(var(--navy), .12);
  background: hsl(var(--background));
}
.pb-nav__btn:hover { border-color: hsla(var(--accent), .4); color: hsl(var(--accent)); }
.pb-nav__lang {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid hsla(var(--navy), .12);
  background: hsl(var(--background));
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  color: hsl(var(--muted-fg));
  cursor: pointer;
}
@media (max-width: 768px) {
  .pb-nav__link, .pb-nav__btn { display: none; }
  .pb-nav__link--phone { display: inline-flex; }
}

/* ── Hero ────────────────────────────────────────────── */
.pb-hero {
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 24px 56px;
}
.pb-hero__grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: start;
}
@media (max-width: 1024px) {
  .pb-hero__grid { grid-template-columns: 1fr; gap: 32px; }
}
.pb-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: hsla(var(--accent), .1);
  border: 1px solid hsla(var(--accent), .3);
  color: hsl(var(--accent));
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.pb-pill__dot { display: inline-block; width: 6px; height: 6px; background: hsl(var(--accent)); border-radius: 999px; animation: pb-pulse 1.6s ease-in-out infinite; }
@keyframes pb-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.pb-pill--small {
  background: hsl(var(--muted));
  border-color: hsla(var(--navy), .08);
  color: hsl(var(--primary));
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.pb-hero__h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 2vw + 1rem, 2.6rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: hsl(var(--primary));
  margin: 0 0 18px;
  font-weight: 800;
  max-width: 580px;
}
.pb-hero__h1 em {
  font-style: normal;
  color: hsl(var(--accent));
}
.pb-hero__lead {
  font-size: 17px;
  line-height: 1.6;
  color: hsl(var(--muted-fg));
  margin: 0 0 24px;
  max-width: 530px;
}
.pb-hero__lead strong { color: hsl(var(--primary)); font-weight: 700; }

/* "As reported by" press card */
.pb-press {
  position: relative;
  border: 1px solid hsla(var(--accent), .2);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, hsla(var(--accent), .06) 0%, hsla(var(--accent), .02) 100%);
  margin-bottom: 24px;
}
.pb-press__label {
  padding: 10px 16px 6px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: hsl(var(--accent));
}
.pb-press__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 640px) {
  .pb-press__grid { grid-template-columns: 1fr; }
}
.pb-press__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-top: 1px solid hsla(var(--accent), .15);
  transition: background-color .2s;
}
.pb-press__grid > .pb-press__item:nth-child(odd) { border-right: 1px solid hsla(var(--accent), .15); }
@media (max-width: 640px) {
  .pb-press__grid > .pb-press__item:nth-child(odd) { border-right: 0; }
}
.pb-press__item:hover { background: hsla(var(--accent), .04); }
.pb-press__icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: hsla(var(--accent), .1);
  border: 1px solid hsla(var(--accent), .2);
  color: hsl(var(--accent));
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
  flex-shrink: 0;
}
.pb-press__body { flex: 1; min-width: 0; }
.pb-press__head { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.pb-press__src {
  font-family: 'Playfair Display', serif;
  font-size: 13.5px;
  font-weight: 700;
  color: hsl(var(--primary));
  line-height: 1.2;
}
.pb-press__date {
  font-size: 11px;
  color: hsla(var(--muted-fg), .8);
}
.pb-press__quote {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: hsla(var(--navy), .8);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pb-press__ext {
  color: hsla(var(--accent), .6);
  flex-shrink: 0;
  margin-top: 4px;
}
.pb-press__item:hover .pb-press__ext { color: hsl(var(--accent)); transform: translateX(2px); transition: transform .2s; }

/* Founder card */
.pb-founder-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  background: hsl(var(--card));
  border: 1px solid hsla(var(--navy), .08);
  border-radius: 16px;
  padding: 0;
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
@media (max-width: 520px) {
  .pb-founder-card { grid-template-columns: 100px 1fr; }
}
.pb-founder-card__img {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: hsla(var(--primary), .1);
  align-self: stretch;
}
.pb-founder-card__img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 60%);
  pointer-events: none;
}
.pb-founder-card__verified {
  position: absolute; top: 8px; left: 8px;
  background: hsl(var(--accent));
  color: white;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 3px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
}
.pb-founder-card__dur {
  position: absolute; bottom: 8px; left: 8px;
  background: rgba(0,0,0,.6);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 6px;
  z-index: 2;
}
.pb-founder-card__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 999px;
  background: white;
  color: hsl(var(--accent));
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  padding-left: 3px;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  z-index: 2;
}
.pb-founder-card__body { padding: 14px 16px 14px 0; }
@media (max-width: 520px) { .pb-founder-card__body { padding: 12px 14px 12px 0; } }
.pb-founder-card__kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: hsl(var(--accent));
  text-transform: uppercase;
}
.pb-founder-card__h3 {
  margin: 4px 0 6px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: hsl(var(--primary));
  line-height: 1.2;
}
.pb-founder-card__arrow { color: hsl(var(--accent)); margin-left: 6px; font-weight: 400; }
.pb-founder-card__name { font-size: 13px; font-weight: 700; color: hsl(var(--primary)); }
.pb-founder-card__bio { font-size: 12px; color: hsl(var(--muted-fg)); margin-bottom: 8px; }
.pb-founder-card__pts { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.pb-founder-card__pts li { display: flex; align-items: flex-start; gap: 6px; font-size: 12px; color: hsla(var(--navy), .85); }
.pb-founder-card__pts svg { color: hsl(var(--accent)); margin-top: 2px; flex-shrink: 0; }

/* Trust row */
.pb-trust { display: flex; gap: 20px; flex-wrap: wrap; font-size: 13px; color: hsl(var(--muted-fg)); }
.pb-trust__item { display: inline-flex; align-items: center; gap: 6px; }
.pb-trust__item svg { color: hsl(var(--accent)); }

/* Form column (iframe) */
.pb-form-col { position: sticky; top: 20px; align-self: start; }
@media (max-width: 1024px) { .pb-form-col { position: static; } }
.pb-form-card {
  background: hsl(var(--card));
  border: 1px solid hsla(var(--navy), .08);
  border-radius: 24px;
  box-shadow: var(--shadow-elevated);
  overflow: hidden;
  position: relative;
}
.pb-form-card::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(to right, hsl(var(--accent)), hsla(var(--accent), .8) 50%, hsla(var(--accent), .6));
}
#penaltyback-embed {
  display: block;
  width: 100%;
  height: 820px;
  border: none;
  background: white;
}
@media (max-width: 1024px) {
  #penaltyback-embed { height: 900px; }
}

/* ── Stats bar ─────────────────────────────────────── */
.pb-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 40px;
  text-align: center;
}
@media (max-width: 880px) { .pb-stats { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (max-width: 480px) { .pb-stats { grid-template-columns: repeat(2, 1fr); } }
.pb-stat__n {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 800;
  color: hsl(var(--primary));
  letter-spacing: -0.02em;
}
.pb-stat__star { color: hsl(var(--accent)); margin-left: 2px; font-size: 22px; }
.pb-stat__l {
  font-size: 12px;
  color: hsl(var(--muted-fg));
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* ── Press strip ───────────────────────────────────── */
.pb-press-strip {
  padding: 28px 24px;
  background: hsl(var(--background));
}
.pb-press-strip__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.pb-press-strip__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: hsl(var(--muted-fg));
  text-transform: uppercase;
}
.pb-press-strip__logos {
  display: flex;
  justify-content: center;
  gap: 8px 24px;
  flex-wrap: wrap;
}
.pb-press-strip__logos span {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: hsla(var(--primary), .7);
  letter-spacing: -0.01em;
}

/* ── Section base ──────────────────────────────────── */
.pb-section {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.pb-section--narrow { max-width: 880px; }
.pb-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 1.5vw + 1rem, 1.9rem);
  font-weight: 800;
  color: hsl(var(--primary));
  text-align: center;
  letter-spacing: -0.02em;
  margin: 12px 0 12px;
  line-height: 1.2;
}
.pb-sub {
  text-align: center;
  font-size: 15px;
  color: hsl(var(--muted-fg));
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.55;
}

/* CTA button (large purple breathing) */
.pb-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: hsl(var(--accent));
  color: white;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-cta);
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.pb-cta:hover {
  background: hsl(var(--accent-hover));
  box-shadow: var(--shadow-cta-hover);
  transform: translateY(-2px);
}
.pb-cta:active { transform: translateY(0) scale(.97); background: hsl(var(--accent-pressed)); }
.pb-cta--center { display: flex; max-width: max-content; margin: 32px auto 0; }
.pb-cta--block { display: flex; width: 100%; max-width: none; }

@keyframes pb-breathe {
  0%, 100% { box-shadow: var(--shadow-cta); }
  50% { box-shadow: var(--shadow-cta-hover); }
}
.pb-cta { animation: pb-breathe 3s ease-in-out infinite; }

/* ── 3-step process ─────────────────────────────────── */
.pb-steps { padding: 64px 0; background: hsl(var(--muted)); }
.pb-steps .pb-section { max-width: 900px; }
.pb-steps__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 880px) {
  .pb-steps__grid { grid-template-columns: 1fr; }
}
.pb-step {
  position: relative;
  background: hsl(var(--card));
  border: 1px solid hsla(var(--navy), .08);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: box-shadow .2s;
}
.pb-step:hover { box-shadow: var(--shadow-elevated); }
.pb-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -18px; top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 700;
  color: hsla(var(--navy), .25);
  z-index: 1;
}
@media (max-width: 880px) {
  .pb-step:not(:last-child)::after { display: none; }
}
.pb-step__n {
  width: 40px; height: 40px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: hsla(var(--accent), .1);
  border: 2px solid hsla(var(--accent), .3);
  color: hsl(var(--accent));
  font-weight: 800;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.pb-step__h {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: hsl(var(--primary));
  margin: 0 0 6px;
}
.pb-step__p {
  font-size: 14px;
  color: hsl(var(--muted-fg));
  margin: 0;
  line-height: 1.55;
}
.pb-step--arrow { display: none; }

/* ── Kwong estimator section ───────────────────────── */
.pb-estimator { padding: 56px 0; }
.pb-estimator .pb-section--narrow { max-width: 600px; }
.pb-estimator .pb-pill--small {
  display: flex;
  margin: 0 auto 8px;
  width: max-content;
}
.pb-estimator .pb-h2 {
  font-size: clamp(1.3rem, 1.5vw + 0.7rem, 1.65rem);
  margin: 8px 0 8px;
}
.pb-estimator .pb-sub { font-size: 14px; margin-bottom: 24px; }
.pb-estimator__card {
  background: hsl(var(--card));
  border: 1px solid hsla(var(--navy), .08);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}
@media (min-width: 640px) { .pb-estimator__card { padding: 32px; } }
.pb-estimator__powered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: hsl(var(--primary));
  margin: 0 -8px 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid hsla(var(--navy), .08);
  text-transform: uppercase;
}
.pb-estimator__powered::before {
  content: "";
  width: 24px; height: 24px;
  background: hsla(var(--accent), .1);
  border-radius: 999px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237B5BD9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M13 2L3 14h9l-1 8 10-12h-9l1-8z'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
}
.pb-est-row { margin-bottom: 22px; }
.pb-est-label {
  font-size: 14px;
  font-weight: 600;
  color: hsl(var(--primary));
  margin-bottom: 12px;
}
.pb-est-options { display: grid; gap: 10px; }
.pb-est-options--2 { grid-template-columns: 1fr 1fr; }
.pb-est-options--4 { grid-template-columns: repeat(4, 1fr); }
.pb-est-options--5 { grid-template-columns: 1fr; gap: 8px; } /* stacked full-width for amounts */
@media (max-width: 540px) {
  .pb-est-options--4 { grid-template-columns: 1fr 1fr; }
}
.pb-est-opt {
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 2px solid hsla(var(--navy), .08);
  background: hsl(var(--card));
  color: hsl(var(--primary));
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: border-color .15s, background-color .15s;
  text-align: center;
}
.pb-est-options--5 .pb-est-opt {
  text-align: left;
  padding: 12px 18px;
}
.pb-est-opt:hover { border-color: hsla(var(--accent), .5); }
.pb-est-opt--active {
  border-color: hsl(var(--accent));
  background: hsla(var(--accent), .1);
  color: hsl(var(--accent));
  font-weight: 700;
}
.pb-est-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 20px 0 16px;
  padding-top: 20px;
  text-align: center;
  border-top: 1px solid hsla(var(--navy), .08);
}
.pb-est-foot__cell { background: hsl(var(--muted)); border-radius: 8px; padding: 12px 8px; }
.pb-est-foot__n {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: hsl(var(--primary));
}
.pb-est-foot__l { font-size: 10px; color: hsl(var(--muted-fg)); letter-spacing: 0.06em; font-weight: 600; margin-top: 4px; text-transform: uppercase; }

/* ── Ruling / court block ──────────────────────────── */
.pb-ruling { padding: 64px 0; }
.pb-ruling .pb-pill--small {
  display: flex;
  margin: 0 auto 8px;
  width: max-content;
}
.pb-ruling__card {
  background: hsl(var(--card));
  border: 1px solid hsla(var(--navy), .08);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-card);
}
.pb-ruling__h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  color: hsl(var(--primary));
  margin: 0 0 14px;
}
.pb-ruling__p { color: hsla(var(--navy), .82); font-size: 15px; line-height: 1.65; margin: 0 0 14px; }
.pb-ruling__cases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}
@media (max-width: 640px) { .pb-ruling__cases { grid-template-columns: 1fr; } }
.pb-ruling__case {
  padding: 16px;
  background: hsl(var(--muted));
  border-radius: 12px;
  border-left: 3px solid hsl(var(--accent));
}
.pb-ruling__case-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 15px;
  color: hsl(var(--primary));
}
.pb-ruling__case-name span { color: hsl(var(--muted-fg)); font-weight: 500; }
.pb-ruling__case-meta { font-size: 12.5px; color: hsl(var(--muted-fg)); margin-top: 4px; line-height: 1.4; }
.pb-ruling__team {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: hsla(var(--accent), .04);
  border: 1px solid hsla(var(--accent), .15);
  border-radius: 12px;
  padding: 16px;
  margin-top: 8px;
}
.pb-ruling__avatar { flex-shrink: 0; }
.pb-ruling__avatar img { width: 56px; height: 56px; border-radius: 999px; object-fit: cover; }
.pb-ruling__team-title { font-weight: 700; color: hsl(var(--primary)); margin-bottom: 4px; font-size: 14px; }
.pb-ruling__team-body { font-size: 13px; color: hsla(var(--navy), .82); line-height: 1.5; }
.pb-ruling__cta-note {
  text-align: center;
  font-size: 14px;
  color: hsl(var(--muted-fg));
  margin: 28px 0 0;
}

/* ── Timeline (vertical with circular badges) ───────── */
.pb-timeline { padding: 64px 0; }
.pb-timeline .pb-section--narrow { max-width: 700px; }
.pb-timeline__list {
  position: relative;
  padding-left: 56px;
}
.pb-timeline__list::before {
  content: "";
  position: absolute;
  left: 20px; top: 0; bottom: 0;
  width: 2px;
  background: hsla(var(--navy), .12);
}
.pb-tl-item {
  position: relative;
  margin-bottom: 32px;
}
.pb-tl-item:last-child { margin-bottom: 0; }
.pb-tl-year {
  position: absolute;
  left: -56px;
  top: 0;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: hsla(var(--primary), .5);
  color: white;
  font-size: 11px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.pb-tl-item:nth-child(2) .pb-tl-year { background: hsl(var(--accent)); }
.pb-tl-item--now .pb-tl-year {
  background: #f59e0b;  /* yellow-500 */
  animation: pb-pulse 1.6s ease-in-out infinite;
}
.pb-tl-body { padding-left: 8px; }
.pb-tl-body h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: hsl(var(--primary));
}
.pb-tl-body p { margin: 0; color: hsl(var(--muted-fg)); font-size: 14px; line-height: 1.6; }
.pb-tl-body em { font-style: italic; color: hsla(var(--navy), .9); }
.pb-tl-body strong { color: hsl(var(--primary)); }

/* ── Founder quote (bg-muted background per PB) ───── */
.pb-founder-quote { padding: 56px 0 64px; background: hsl(var(--muted)); }
.pb-founder-quote .pb-section--narrow { max-width: 820px; text-align: center; }
.pb-founder-quote .pb-pill--small {
  display: flex; margin: 0 auto 18px; width: max-content;
}
.pb-fq__quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 1.8vw + 0.7rem, 1.75rem);
  line-height: 1.4;
  color: hsl(var(--primary));
  text-align: center;
  font-style: italic;
  margin: 0 0 28px;
  font-weight: 700;
}
.pb-fq__attr {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-bottom: 20px;
}
.pb-fq__avatar img { width: 56px; height: 56px; border-radius: 999px; object-fit: cover; }
.pb-fq__name { font-weight: 700; color: hsl(var(--primary)); }
.pb-fq__role { font-size: 13px; color: hsl(var(--muted-fg)); }
.pb-fq__creds {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 20px;
}
.pb-fq__cred {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  background: hsla(var(--accent), .1);
  border: 1px solid hsla(var(--accent), .2);
  border-radius: 999px;
  color: hsl(var(--accent));
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pb-fq__watch {
  display: block;
  text-align: center;
  color: hsl(var(--accent));
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Testimonials ──────────────────────────────────── */
.pb-testimonials { padding: 64px 0; }
.pb-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) { .pb-testimonials__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pb-testimonials__grid { grid-template-columns: 1fr; } }
.pb-testi {
  background: hsl(var(--card));
  border: 1px solid hsla(var(--navy), .08);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.pb-testi__stars { color: #f59e0b; font-size: 14px; letter-spacing: 1px; margin-bottom: 8px; }
.pb-testi__quote { font-size: 14px; line-height: 1.55; color: hsl(var(--muted-fg)); margin: 0 0 16px; }
.pb-testi__quote strong { color: hsl(var(--primary)); font-weight: 600; }
.pb-testi__refund {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  background: hsla(var(--accent), .1);
  border: 1px solid hsla(var(--accent), .2);
  border-radius: 999px;
  color: hsl(var(--accent));
  margin-bottom: 16px;
}
.pb-testi__refund strong { font-weight: 800; }
.pb-testi__person { display: flex; align-items: center; gap: 12px; }
.pb-testi__person img {
  width: 36px; height: 36px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 0 0 2px hsla(var(--accent), .2);
}
.pb-testi__name { font-weight: 700; font-size: 12px; color: hsl(var(--primary)); }
.pb-testi__loc { font-size: 11px; color: hsl(var(--muted-fg)); }

.pb-testimonials__count {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-top: 32px;
  color: hsl(var(--muted-fg));
  font-size: 14px;
  font-weight: 600;
}
.pb-testi-avatars { display: flex; }
.pb-testi-avatars img {
  width: 28px; height: 28px; border-radius: 999px; object-fit: cover;
  border: 2px solid hsl(var(--background));
  margin-left: -8px;
}
.pb-testi-avatars img:first-child { margin-left: 0; }

/* ── $0 upfront block (wrapped in card on bg-muted) ── */
.pb-zero { padding: 80px 0; background: hsl(var(--muted)); }
.pb-zero .pb-section--narrow { max-width: 780px; }
.pb-zero__card {
  background: hsl(var(--card));
  border: 1px solid hsla(var(--navy), .08);
  border-radius: 24px;
  padding: 56px 32px;
  text-align: center;
  box-shadow: var(--shadow-elevated);
}
@media (max-width: 600px) { .pb-zero__card { padding: 40px 20px; } }
.pb-zero .pb-pill--small {
  display: flex; margin: 0 auto 12px; width: max-content;
  background: transparent; border: none; padding: 0;
  font-size: 11px; letter-spacing: 0.18em;
  color: hsl(var(--accent));
}
.pb-zero__h2 {
  font-size: clamp(2rem, 3vw + 1rem, 2.5rem);
  color: hsl(var(--primary));
  margin: 0 0 8px;
}
.pb-zero .pb-sub { font-size: 17px; margin-bottom: 28px; max-width: 540px; }
.pb-zero__pts {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
  color: hsl(var(--primary));
  font-weight: 500;
}
.pb-zero__pts li {
  display: inline-flex; align-items: center; gap: 6px;
  background: hsl(var(--muted));
  border: 1px solid hsla(var(--navy), .08);
  border-radius: 999px;
  padding: 8px 18px;
}
.pb-zero__pts svg { color: hsl(var(--accent)); }
.pb-zero .pb-cta { margin: 0; }

/* ── FAQ ───────────────────────────────────────────── */
.pb-faq { padding: 64px 0; background: hsl(var(--muted)); }
.pb-faq__list { display: flex; flex-direction: column; gap: 10px; }
.pb-faq__item {
  background: hsl(var(--card));
  border: 1px solid hsla(var(--navy), .08);
  border-radius: 14px;
  padding: 0;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.pb-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 15px;
  color: hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.pb-faq__item summary::-webkit-details-marker { display: none; }
.pb-faq__item summary::after {
  content: "";
  width: 12px; height: 12px;
  border-right: 2px solid hsl(var(--muted-fg));
  border-bottom: 2px solid hsl(var(--muted-fg));
  transform: rotate(45deg) translateY(-3px);
  transition: transform .2s;
  flex-shrink: 0;
  margin-left: 12px;
}
.pb-faq__item[open] summary::after { transform: rotate(-135deg) translateY(0); }
.pb-faq__item p {
  padding: 0 22px 18px;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: hsla(var(--navy), .82);
}

/* ── Final CTA ─────────────────────────────────────── */
.pb-final-cta { padding: 64px 24px; text-align: center; }
.pb-final-cta .pb-h2 { margin-bottom: 14px; }
.pb-final-cta .pb-sub { max-width: 640px; }
.pb-final-cta__phone {
  margin-top: 20px;
  color: hsl(var(--muted-fg));
  font-size: 14px;
}
.pb-final-cta__phone a { color: hsl(var(--accent)); font-weight: 700; }

/* ── Footer ────────────────────────────────────────── */
.pb-footer {
  background: hsl(var(--navy));
  color: hsla(0,0%,100%,.6);
  text-align: center;
  padding: 36px 24px;
  font-size: 13px;
}
.pb-footer__brand {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}
.pb-footer__sub { margin-bottom: 6px; }
.pb-footer__sub a { color: hsla(0,0%,100%,.85); text-decoration: underline; text-underline-offset: 3px; }
.pb-footer__phone { margin-top: 10px; }
.pb-footer__phone a { color: hsla(0,0%,100%,.85); font-weight: 600; }
