/* =========================================================
   PRICING PAGE — plan cards, price block, launch tag, note
   Loaded AFTER styles.css (per-page override contract).
   House rules honored: hairline borders only (no filled
   emphasis bands, no accent bars on rounded edges); the
   launch tag is a square-cornered hairline outline, no fill;
   the note is boxless (thin top rule + text).
   ========================================================= */

.pricing-section { padding-top: clamp(40px, 5vw, 64px); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  align-items: stretch;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ---- Card: white surface, hairline border, no accent edge ---- */
.price-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(24px, 2.5vw, 34px);
  transition: border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.price-card:hover { border-color: var(--line-3); box-shadow: var(--shadow-card); }

.price-card-head { margin-bottom: 22px; }
.price-card-name { color: var(--ink); margin-bottom: 6px; }
.price-card-aud { font-size: 14px; line-height: 1.6; color: var(--body-2); }

/* ---- Price block ---- */
.price-block {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  padding-block-end: 22px;
  border-block-end: 1px solid var(--line);
}
.price-old { font-size: 16px; color: var(--body-2); }
.price-old s { text-decoration-thickness: 1px; }
.price-now {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
[dir="rtl"] .price-now { font-family: var(--serif-ar); letter-spacing: 0; line-height: 1.35; }
.price-now.is-custom { font-size: clamp(26px, 2.2vw, 32px); }
.price-period { font-size: 14px; color: var(--body-2); }

/* Launch-offer tag: square-cornered (≤3px) hairline outline, NO fill. */
.price-tag {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--accent-2);
  border: 1px solid var(--line-3);
  border-radius: 3px;
  padding: 3px 8px;
  align-self: center;
}
[dir="rtl"] .price-tag { font-family: var(--sans-ar); letter-spacing: 0; }

/* ---- Feature list: hairline-separated rows, typography-led ---- */
.price-features {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  flex: 1;
}
.price-features li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--body);
  padding-block: 13px;
  border-block-end: 1px solid var(--line);
}
.price-features li:last-child { border-block-end: 0; }

.price-cta { margin-top: auto; }
.price-cta .btn { width: 100%; }

/* ---- Boxless note under the cards: thin top rule + text ---- */
.pricing-note {
  margin-top: clamp(36px, 4vw, 56px);
  padding-block-start: 18px;
  border-block-start: 1px solid var(--line-2);
  font-size: 14px;
  line-height: 1.7;
  color: var(--body-2);
}
