/* ============================================================
   Broker Genius — pricing.css
   Converted from Claude Design "Pricing"
   ============================================================ */

/* ============================================================
   Hero (yellow)
   ============================================================ */
.phero { border-bottom: 2px solid var(--ink); background: var(--accent); padding: 70px 28px 0; }

.phero__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: end;
}

.phero__copy { padding-bottom: 60px; }

.phero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font: 600 11.5px var(--font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid var(--ink);
  padding: 7px 12px;
}
.phero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
  animation: bg-blink 1.8s ease-in-out infinite;
}

.phero__title {
  font-size: 104px;
  line-height: 0.88;
  letter-spacing: -0.05em;
  font-weight: 700;
  font-stretch: 94%;
  margin-top: 24px;
}

.phero__lede { font-size: 19px; line-height: 1.6; color: #4A3A10; margin-top: 24px; max-width: 52ch; text-wrap: pretty; }

.phero__ctas { display: flex; align-items: center; gap: 14px; margin-top: 30px; }

/* Buttons on the yellow hero */
.btn-dark-on-yellow {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: var(--ink);
  padding: 15px 28px;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--card);
  white-space: nowrap;
}
.btn-dark-on-yellow:hover { color: var(--accent); box-shadow: 1px 1px 0 var(--card); }

.btn-ghost-on-yellow {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  padding: 15px 26px;
  border: 2px solid var(--ink);
  white-space: nowrap;
}
.btn-ghost-on-yellow:hover { background: var(--card); color: var(--ink); }

/* --- Sample-month receipt card --- */
.receipt {
  border: 2px solid var(--ink);
  border-bottom: none;
  background: var(--card);
  box-shadow: -8px -8px 0 rgba(11, 11, 11, 0.12);
  align-self: end;
}
.receipt__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  border-bottom: 2px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font: 600 10.5px var(--font-mono);
  letter-spacing: 0.12em;
}
.receipt__bar .ref { color: var(--accent); }
.receipt__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border-bottom: 1px dashed #D8D2C2;
  font: 500 13px var(--font-mono);
}
.receipt__row .k { color: var(--muted); }
.receipt__row .v { font-weight: 600; }
.receipt__total { display: flex; align-items: baseline; justify-content: space-between; padding: 18px; background: var(--accent); }
.receipt__total-label { font: 600 11px var(--font-mono); letter-spacing: 0.12em; }
.receipt__total-value { font-size: 34px; font-weight: 700; letter-spacing: -0.03em; }
.receipt__total-value span { font-size: 15px; font-weight: 600; }

/* ============================================================
   Compare plans
   ============================================================ */
.plans-sec { border-bottom: 2px solid var(--ink); padding: 64px 28px 76px; background: var(--paper); }

.plans-sec__head { display: flex; align-items: end; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.plans-sec__title {
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 700;
  font-stretch: 92%;
  max-width: 16ch;
}

.period-toggle { display: flex; border: 2px solid var(--ink); background: var(--card); }
.period-toggle__btn {
  font: 700 13px var(--font-sans);
  padding: 11px 26px;
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--ink);
}
.period-toggle__btn + .period-toggle__btn { border-left: 2px solid var(--ink); }
.period-toggle__btn.is-active { background: var(--accent); }
.period-toggle__btn .note { font: 600 10px var(--font-mono); }

.plans-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(var(--plan-count, 5), minmax(0, 1fr));
  grid-template-rows: repeat(5, auto);
  border: 2px solid var(--ink);
  background: var(--card);
}

.plan-col {
  display: grid;
  grid-row: 1 / span 5;
  grid-template-rows: subgrid;
  border-right: 2px solid var(--ink);
}
.plan-col:last-child { border-right: none; }
.plan-col--featured { background: var(--accent); }

.plan-col__head { padding: 22px 20px 20px; border-bottom: 2px solid var(--ink); }
.plan-col__tag { font: 600 10.5px var(--font-mono); letter-spacing: 0.12em; color: #8A8F9E; }
.plan-col--featured .plan-col__tag { color: #4A3A10; }
.plan-col__name { font-size: 26px; font-weight: 700; letter-spacing: -0.03em; margin-top: 10px; }
.plan-col__price { font-size: 38px; font-weight: 700; letter-spacing: -0.04em; margin-top: 6px; line-height: 1; }
.plan-col__per { font: 500 12px var(--font-mono); color: #6A6F7E; margin-top: 6px; }
.plan-col__cta {
  display: block;
  text-align: center;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  background: var(--accent);
  color: var(--ink);
}
.plan-col__cta:hover { box-shadow: 3px 3px 0 var(--ink); color: var(--ink); }
.plan-col--featured .plan-col__cta { background: var(--ink); color: #fff; }
.plan-col--featured .plan-col__cta:hover { color: #fff; }

.plan-col__row { padding: 14px 20px; border-bottom: 1px solid var(--line-soft); }
.plan-col__row-k { font: 600 9.5px var(--font-mono); letter-spacing: 0.1em; color: #8A8F9E; }
.plan-col__row-v { font-size: 14px; line-height: 1.5; margin-top: 5px; font-weight: 500; }
.plan-col__row-v--bold { font-weight: 700; }
.plan-col__row-v--semi { font-weight: 600; }

.plans-sec__footnote { font: 500 12px var(--font-mono); color: #6A6F7E; margin-top: 16px; }

/* ============================================================
   Pricing FAQ
   ============================================================ */
.pfaq { border-bottom: 2px solid var(--ink); padding: 76px 28px; background: var(--tint); }

.pfaq__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 56px;
  align-items: start;
}

.pfaq__aside { position: sticky; top: 94px; }
.pfaq__blurb { font-size: 16px; line-height: 1.65; color: var(--muted); margin-top: 16px; max-width: 36ch; }
.pfaq__contact-btn {
  display: inline-block;
  margin-top: 22px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  background: var(--accent);
  padding: 14px 26px;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.pfaq__contact-btn:hover { color: var(--ink); box-shadow: 1px 1px 0 var(--ink); }

.pfaq__list { border: 2px solid var(--ink); background: var(--card); }
.pfaq__item { border-bottom: 1px solid #E4DDCD; }
.pfaq__item:last-child { border-bottom: none; }

.pfaq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 18px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  font: 700 16px var(--font-sans);
  color: var(--ink);
}
.pfaq__sign { font: 600 18px var(--font-mono); flex: 0 0 auto; }
.pfaq__a { display: none; padding: 0 20px 20px; font-size: 15px; line-height: 1.7; color: var(--muted); max-width: 70ch; }

.pfaq__item.is-open .pfaq__q { background: var(--accent); }
.pfaq__item.is-open .pfaq__a { display: block; }

/* ============================================================
   Testimonials (dark)
   ============================================================ */
.ptestimonials { border-bottom: 2px solid var(--ink); padding: 76px 28px; background: var(--ink); color: #fff; }

.ptestimonials__badge {
  display: inline-block;
  font: 600 10.5px var(--font-mono);
  letter-spacing: 0.12em;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 7px 12px;
}
.ptestimonials .section-title { margin-top: 22px; max-width: 20ch; }
.ptestimonials__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; margin-top: 40px; }

.tq-card {
  border: 2px solid var(--accent);
  background: #141414;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}
.tq-card__stat { font-size: 22px; font-weight: 700; letter-spacing: -0.03em; color: var(--accent); }
.tq-card__body { font-size: 14.5px; line-height: 1.65; color: #CFC9BB; margin-top: 12px; }
.tq-card__foot { border-top: 1px solid rgba(255, 255, 255, 0.2); padding-top: 12px; }
.tq-card__name { font-size: 14px; font-weight: 700; }
.tq-card__role { font: 500 11.5px var(--font-mono); color: #9A958A; margin-top: 3px; }

/* ============================================================
   Free-trial band (yellow)
   ============================================================ */
.trial-band { border-bottom: 2px solid var(--ink); padding: 88px 28px; background: var(--accent); }
.trial-band__inner { max-width: 820px; margin: 0 auto; text-align: center; }
.trial-band__title {
  font-size: 58px;
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 700;
  font-stretch: 92%;
  text-wrap: balance;
}
.trial-band__sub { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; margin-top: 12px; }
.trial-band__blurb { font-size: 16px; line-height: 1.6; color: #4A3A10; margin: 18px auto 0; max-width: 54ch; }
.trial-band__cta {
  display: inline-block;
  margin-top: 28px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: var(--ink);
  padding: 16px 30px;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--card);
}
.trial-band__cta:hover { color: var(--accent); box-shadow: 1px 1px 0 var(--card); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .phero__grid { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .phero__title { font-size: 72px; }
  .plans-grid { grid-template-columns: minmax(0, 1fr); grid-template-rows: none; }
  .plan-col { display: block; grid-row: auto; border-right: none; border-bottom: 2px solid var(--ink); }
  .plan-col:last-child { border-bottom: none; }
  .pfaq__grid { grid-template-columns: minmax(0, 1fr); }
  .pfaq__aside { position: static; }
  .ptestimonials__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .phero__title { font-size: 48px; }
  .plans-sec__title { font-size: 36px; }
  .ptestimonials__grid { grid-template-columns: minmax(0, 1fr); }
  .trial-band__title { font-size: 40px; }
}
