/* ==========================================================================
   Public pricing page (/pricing) — scoped: .pp-*
   Desktop: comparison table. Mobile: horizontal snap cards.
   ========================================================================== */

.pp-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--primary) / 0.35);
  background-color: hsl(var(--primary) / 0.08);
  color: hsl(var(--primary));
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Controls row (billing toggle + differences filter)
   -------------------------------------------------------------------------- */
.pp-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.9rem 1.5rem;
  margin-bottom: 1.75rem;
}

.pp-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.3rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--card));
}

.pp-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border: none;
  background: transparent;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.pp-toggle-btn:hover {
  color: hsl(var(--foreground));
}

.pp-toggle-btn.is-active {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.pp-toggle-btn .pp-save-chip {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.1rem 0.5rem;
  border-radius: 9999px;
  background-color: hsl(var(--primary) / 0.12);
  color: hsl(var(--primary));
  white-space: nowrap;
}

.pp-toggle-btn.is-active .pp-save-chip {
  background-color: hsl(var(--primary-foreground) / 0.2);
  color: hsl(var(--primary-foreground));
}

/* "Only differences" switch — desktop only, cards show their own lists */
.pp-diff-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
  user-select: none;
}

.pp-diff-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pp-diff-track {
  position: relative;
  flex: none;
  width: 2.15rem;
  height: 1.2rem;
  border-radius: 9999px;
  background-color: hsl(var(--input));
  transition: background-color 0.2s ease;
}

.pp-diff-track::before {
  content: "";
  position: absolute;
  top: 0.15rem;
  left: 0.15rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 9999px;
  background-color: hsl(var(--card));
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.25);
  transition: transform 0.2s ease;
}

.pp-diff-toggle input:checked+.pp-diff-track {
  background-color: hsl(var(--primary));
}

.pp-diff-toggle input:checked+.pp-diff-track::before {
  transform: translateX(0.95rem);
}

.pp-diff-toggle input:focus-visible+.pp-diff-track {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Desktop table
   -------------------------------------------------------------------------- */
.pp-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) + 8px);
  background-color: hsl(var(--card));
}

.pp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.pp-table th,
.pp-table td {
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid hsl(var(--border));
  text-align: center;
  min-width: 172px;
  font-size: 0.9rem;
  background-color: hsl(var(--card));
}

.pp-table tbody tr:last-child th,
.pp-table tbody tr:last-child td {
  border-bottom: none;
}

/* Sticky feature-label column; shadow only appears once actually scrolled */
.pp-table th:first-child,
.pp-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  min-width: 190px;
  max-width: 260px;
  text-align: left;
  font-weight: 500;
  box-shadow: inset -1px 0 0 hsl(var(--border));
}

.pp-table-wrap.is-scrolled .pp-table th:first-child,
.pp-table-wrap.is-scrolled .pp-table td:first-child {
  box-shadow: inset -1px 0 0 hsl(var(--border)), 6px 0 12px -6px rgb(0 0 0 / 0.18);
}

/* Plan header cells */
.pp-table thead th {
  vertical-align: top;
  padding: 1.5rem 1.25rem 1.4rem;
  text-align: left;
}

.pp-plan-header {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pp-plan-badge-row {
  min-height: 1.5rem;
  /* reserved on every column so headers align */
  margin-bottom: 0.35rem;
}

.pp-plan-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.65rem;
  border-radius: 9999px;
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pp-plan-name {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.pp-plan-tagline {
  height: 5.2rem;
  /* four lines, fixed so no description can change the card height */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.3rem;
  color: hsl(var(--muted-foreground));
  white-space: normal;
}

.pp-price-zone {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 4.4rem;
  /* value + note reserved so CTAs align */
  margin: 0.4rem 0 1rem;
}

.pp-price-value {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: hsl(var(--foreground));
}

.pp-price-period {
  font-size: 0.85rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
}

.pp-price-note {
  min-height: 2.2rem;
  /* two small lines: yearly note wraps */
  margin-top: 0.35rem;
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.1rem;
  color: hsl(var(--muted-foreground));
  white-space: normal;
}

.pp-price {
  transition: opacity 0.15s ease;
}

.pp-price[hidden] {
  display: none;
}

.pp-price.is-switching {
  opacity: 0;
}

/* Group header rows */
.pp-table .pp-group-row th,
.pp-table .pp-group-row td {
  padding: 0.65rem 1.1rem;
  background-color: hsl(var(--muted));
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
}

/* Featured column */
.pp-table .is-featured {
  background-color: hsl(var(--primary) / 0.05);
}

.pp-table .pp-group-row .is-featured {
  background-color: hsl(var(--muted));
}

/* Row + column hover highlight */
.pp-table tbody tr:not(.pp-group-row):hover td:not(:first-child) {
  background-color: hsl(var(--accent) / 0.35);
}

.pp-table td.is-col-hover:not(:first-child),
.pp-table thead th.is-col-hover {
  background-color: hsl(var(--accent) / 0.35);
}

.pp-table .is-featured.is-col-hover {
  background-color: hsl(var(--primary) / 0.09);
}

/* "Only differences" filter */
.pp-table.pp-only-diff tr[data-identical="1"] {
  display: none;
}

.pp-table tr.pp-group-hidden {
  display: none;
}

/* Checks & dashes */
.pp-feature-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 9999px;
  background-color: hsl(var(--primary) / 0.12);
  color: hsl(var(--primary));
}

.pp-dash {
  display: inline-block;
  vertical-align: middle;
  color: hsl(var(--muted-foreground));
  opacity: 0.4;
}

/* CTA buttons */
.pp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 2.5rem;
  padding: 0 1rem;
  border-radius: var(--radius);
  font-size: 0.83rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid hsl(var(--primary));
  color: hsl(var(--primary));
  transition: background-color 0.2s ease, color 0.2s ease;
}

.pp-cta:hover {
  background-color: hsl(var(--primary) / 0.08);
}

.pp-cta--primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.pp-cta--primary:hover {
  background-color: hsl(var(--primary) / 0.9);
  color: hsl(var(--primary-foreground));
}

.pp-table tfoot td {
  padding: 1rem 1.25rem 1.25rem;
  border-bottom: none;
  border-top: 1px solid hsl(var(--border));
}

/* --------------------------------------------------------------------------
   Quota steppers in the plan header — fixed heights keep every column aligned
   -------------------------------------------------------------------------- */
.pp-table {
  table-layout: fixed;
}

.pp-table th:first-child,
.pp-table td:first-child {
  width: 22%;
}

.pp-price-zone {
  min-height: 5.4rem;
}

.pp-plan-header .plan-quota-select {
  margin-bottom: 1rem;
}

.pp-plan-header .pp-cta {
  margin-top: auto;
}

/* --------------------------------------------------------------------------
   Mobile plan cards — the comparison table cannot fit three plans on a phone,
   so below the breakpoint each plan becomes a full-width card carrying its own
   feature list. Exactly one of .pp-cards / .pp-desktop is ever displayed.
   -------------------------------------------------------------------------- */
.pp-cards {
  display: grid;
  gap: 1rem;
}

.pp-desktop {
  display: none;
}

/* 1024px, not 768: below this the plan columns are too narrow for the term
   selector and the taglines start clipping. Tablets get the cards. */
@media (min-width: 1024px) {
  .pp-cards {
    display: none;
  }

  .pp-desktop {
    display: block;
  }
}

.pp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.25rem 1.5rem;
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) + 8px);
  background-color: hsl(var(--card));
}

.pp-card.is-featured {
  border-color: hsl(var(--primary) / 0.55);
  background-color: hsl(var(--primary) / 0.04);
}

.pp-card__badge {
  align-self: flex-start;
  margin-bottom: 0.6rem;
  padding: 0.18rem 0.65rem;
  border-radius: 9999px;
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.pp-card__name {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: hsl(var(--foreground));
}

.pp-card__tagline {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  line-height: 1.35rem;
  color: hsl(var(--muted-foreground));
}

.pp-card__price {
  margin: 1.1rem 0 1.25rem;
}

.pp-card .plan-quota-select {
  margin-bottom: 1.25rem;
}

/* Comfortable touch targets — the compact table sizing is too small for a thumb */
.pp-card .plan-quota-row {
  min-height: 2.5rem;
}

.pp-card .plan-quota-row__label {
  font-size: 0.9rem;
}

.pp-card .plan-quota-stepper__btn {
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1rem;
}

.pp-card .plan-quota-stepper__input {
  width: 2.75rem;
  height: 2.25rem;
  font-size: 0.95rem;
}

.pp-card .pp-cta {
  height: 2.85rem;
  font-size: 0.9rem;
}

.pp-card__features {
  margin-top: 1.35rem;
  padding-top: 1.1rem;
  border-top: 1px solid hsl(var(--border));
}

.pp-card__features-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.35rem 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: hsl(var(--primary));
  cursor: pointer;
  list-style: none;
}

.pp-card__features-toggle::-webkit-details-marker {
  display: none;
}

.pp-card__features-toggle:focus-visible {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 3px;
  border-radius: var(--radius);
}

.pp-card__features-chevron {
  display: inline-flex;
  transition: transform 0.2s ease;
}

.pp-card__features[open] .pp-card__features-chevron {
  transform: rotate(180deg);
}

.pp-card__features-body {
  padding-top: 1rem;
}

.pp-card__group {
  margin-bottom: 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
}

.pp-card__group:not(:first-child) {
  margin-top: 1.35rem;
}

.pp-card__list {
  display: grid;
  gap: 0.55rem;
}

.pp-card__item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  line-height: 1.3rem;
  color: hsl(var(--foreground));
}

.pp-card__item .pp-feature-check {
  flex: none;
  margin-top: 0.05rem;
}

/* --------------------------------------------------------------------------
   Pinned plan names — the comparison table runs ~80 rows, so you need to know
   which column you are reading. It is an overlay with no height of its own:
   pinning the real header would cover half the viewport, and an extra table row
   would sit there empty until it stuck.
   -------------------------------------------------------------------------- */
.pp-sticky-names {
  position: sticky;
  top: var(--pp-header-offset, 73px);
  /* 73px = .tidy-header height (sticky, top:0) so the bar parks under it */
  z-index: 5;
  height: 0;
  display: grid;
  /* Mirrors the table: fixed first column, remaining width split evenly.
     grid-auto-flow handles any number of plans without a hardcoded count. */
  grid-template-columns: 22%;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.pp-sticky-names.is-stuck {
  opacity: 1;
}

.pp-sticky-names__cell {
  align-self: start;
  display: flex;
  align-items: center;
  /* Centred to sit over the centred feature columns below it */
  justify-content: center;
  height: 2.75rem;
  padding: 0 1.1rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: hsl(var(--foreground));
  /* Opaque: the table scrolls underneath */
  background-color: hsl(var(--card));
  border-bottom: 1px solid hsl(var(--border));
}

.pp-sticky-names__cell.is-featured {
  background-image: linear-gradient(hsl(var(--primary) / 0.05), hsl(var(--primary) / 0.05));
  color: hsl(var(--primary));
}

/* --------------------------------------------------------------------------
   Yearly saving + trial line
   -------------------------------------------------------------------------- */
/* Fixed height, rendered empty on non-yearly terms, so switching term never
   changes the card height. */
.price-terms__save {
  display: block;
  margin-top: 0.15rem;
  height: 1.05rem;
  line-height: 1.05rem;
  font-weight: 600;
  color: hsl(var(--primary));
}

/* --------------------------------------------------------------------------
   "Compare all plans" — CSS-only disclosure below the table breakpoint
   -------------------------------------------------------------------------- */
.pp-compare-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pp-compare-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 1.25rem auto 0;
  padding: 0.6rem 1.1rem;
  border: 1px solid hsl(var(--border));
  border-radius: 9999px;
  background-color: hsl(var(--card));
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  cursor: pointer;
}

.pp-compare-btn__close {
  display: none;
}

.pp-compare-btn__chevron {
  display: inline-flex;
  transition: transform 0.2s ease;
}

.pp-compare-input:focus-visible + .pp-compare-btn {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}

/* Phone / tablet: table hidden until the toggle is checked, then scrolls sideways */
@media (max-width: 1023px) {
  .pp-compare-btn {
    display: inline-flex;
  }

  .pp-compare-input:checked ~ .pp-compare-btn .pp-compare-btn__open {
    display: none;
  }

  .pp-compare-input:checked ~ .pp-compare-btn .pp-compare-btn__close {
    display: inline;
  }

  .pp-compare-input:checked ~ .pp-compare-btn .pp-compare-btn__chevron {
    transform: rotate(180deg);
  }

  .pp-compare-input:checked ~ .pp-desktop {
    display: block;
    margin-top: 1rem;
  }

  /* Auto layout so the min-widths apply and .pp-table-wrap scrolls horizontally */
  .pp-desktop .pp-table {
    table-layout: auto;
  }

  .pp-desktop .pp-table th,
  .pp-desktop .pp-table td {
    padding: 0.7rem 0.8rem;
    min-width: 168px;
    font-size: 0.85rem;
  }

  .pp-desktop .pp-table th:first-child,
  .pp-desktop .pp-table td:first-child {
    width: auto;
    min-width: 150px;
    max-width: 190px;
  }

  /* The plan header cards are for the card stack; the table only needs labels */
  .pp-desktop .pp-plan-tagline,
  .pp-desktop .pp-price-zone,
  .pp-desktop .pp-plan-header .plan-quota-select,
  .pp-desktop .pp-plan-header .pp-cta,
  .pp-desktop .pp-controls {
    display: none;
  }

  .pp-desktop .pp-table thead th {
    position: static;
  }

  /* The wrap scrolls horizontally here, and the overlay cannot follow it */
  .pp-desktop .pp-sticky-names {
    display: none;
  }
}

/* Desktop: the toggle is irrelevant, the table is always visible */
@media (min-width: 1024px) {
  .pp-compare-btn {
    display: none;
  }

  /* `overflow-x: auto` makes the wrap the scrollport, which kills position:sticky
     on the header row. `clip` is not a scroll container, so the sticky row parks
     against the viewport while the wrap still clips to its rounded corners.
     Both axes must be clip — `overflow-y: visible` would stop the clipping. */
  .pp-table-wrap {
    overflow: clip;
  }
}

/* --------------------------------------------------------------------------
   Trust strip
   -------------------------------------------------------------------------- */
.pp-trust {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding: 1.5rem;
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) + 8px);
  background-color: hsl(var(--card));
}

.pp-trust__group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.pp-trust__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
}

.pp-trust__providers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pp-trust__provider {
  padding: 0.3rem 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: 9999px;
  background-color: hsl(var(--muted));
  font-size: 0.8rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.pp-trust__points {
  display: grid;
  gap: 0.6rem;
}

.pp-trust__point {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  line-height: 1.3rem;
  color: hsl(var(--muted-foreground));
}

.pp-trust__point .pp-feature-check {
  flex: none;
  margin-top: 0.05rem;
}

@media (min-width: 768px) {
  .pp-trust {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 1.75rem;
  }

  .pp-trust__group {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .pp-trust__points {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

/* --------------------------------------------------------------------------
   Enterprise band
   -------------------------------------------------------------------------- */
.pp-enterprise {
  display: grid;
  gap: 1.75rem;
  margin-top: 1rem;
  padding: 1.75rem 1.5rem;
  border: 1px solid hsl(var(--primary) / 0.35);
  border-radius: calc(var(--radius) + 8px);
  background-color: hsl(var(--primary) / 0.04);
}

.pp-enterprise__eyebrow {
  display: inline-flex;
  padding: 0.2rem 0.7rem;
  border-radius: 9999px;
  background-color: hsl(var(--primary) / 0.12);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: hsl(var(--primary));
}

.pp-enterprise__title {
  margin-top: 0.75rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: hsl(var(--foreground));
}

.pp-enterprise__text {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.45rem;
  color: hsl(var(--muted-foreground));
}

.pp-enterprise__list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.pp-enterprise__item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  line-height: 1.3rem;
  color: hsl(var(--foreground));
}

.pp-enterprise__item .pp-feature-check {
  flex: none;
  margin-top: 0.05rem;
}

.pp-enterprise__action {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  padding-top: 1.25rem;
  border-top: 1px solid hsl(var(--primary) / 0.2);
}

.pp-enterprise__price {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: hsl(var(--foreground));
}

.pp-enterprise__price-note {
  margin-bottom: 0.85rem;
  font-size: 0.8rem;
  line-height: 1.15rem;
  color: hsl(var(--muted-foreground));
}

@media (min-width: 768px) {
  .pp-enterprise {
    grid-template-columns: 1fr minmax(220px, 280px);
    align-items: center;
    padding: 2rem 2.25rem;
  }

  .pp-enterprise__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem 1.5rem;
  }

  .pp-enterprise__action {
    padding-top: 0;
    border-top: none;
    border-left: 1px solid hsl(var(--primary) / 0.2);
    padding-left: 2rem;
  }
}

/* --------------------------------------------------------------------------
   Pricing FAQ
   -------------------------------------------------------------------------- */
.pp-faq {
  margin-top: 3.5rem;
}

.pp-faq__head {
  text-align: center;
}

.pp-faq__title {
  margin-top: 0.9rem;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: hsl(var(--foreground));
}

.pp-faq__lead {
  margin: 0.5rem auto 0;
  max-width: 34rem;
  font-size: 0.9rem;
  line-height: 1.45rem;
  color: hsl(var(--muted-foreground));
}

.pp-faq__list {
  display: grid;
  gap: 0.6rem;
  margin: 1.75rem auto 0;
  max-width: 46rem;
}

.pp-faq__item {
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background-color: hsl(var(--card));
}

.pp-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  cursor: pointer;
  list-style: none;
}

.pp-faq__question::-webkit-details-marker {
  display: none;
}

.pp-faq__question:focus-visible {
  outline: 2px solid hsl(var(--ring));
  outline-offset: -2px;
  border-radius: var(--radius);
}

.pp-faq__chevron {
  display: inline-flex;
  flex: none;
  color: hsl(var(--muted-foreground));
  transition: transform 0.2s ease;
}

.pp-faq__item[open] .pp-faq__chevron {
  transform: rotate(180deg);
}

.pp-faq__answer {
  padding: 0 1.1rem 1.1rem;
  font-size: 0.9rem;
  line-height: 1.5rem;
  color: hsl(var(--muted-foreground));
}

.pp-faq__answer p + p {
  margin-top: 0.7rem;
}

.pp-faq__more {
  margin-top: 1.75rem;
  text-align: center;
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
}

.pp-faq__more a {
  color: hsl(var(--primary));
}

.pp-faq__more a:hover {
  text-decoration: underline;
}
