/*
 * Pricing page styles — loaded only on page-pricing.php template
 */

/* ─── Dark page background ─── */
body.baat-pricing-page {
  background: #0B1120;
}

/* ─── Tokens (pricing-specific) ─── */
.baat-pricing-page {
  --pr-blue:      #0057FF;
  --pr-blue-mid:  #1A6AFF;
  --pr-blue-dark: #0046CC;
  --pr-blue-light:#EBF0FF;
  --pr-navy:      #0B1120;
  --pr-navy-2:    #0F1A2E;
  --pr-border:    rgba(255,255,255,.07);
  --pr-white:     #ffffff;
}

/* ─── Active nav link override ─── */
body.baat-pricing-page .baat-nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,.06);
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.pr-hero {
  padding: 120px 40px 64px;
  text-align: center;
  background: var(--pr-navy);
  position: relative;
  overflow: hidden;
}
.pr-hero-bg-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.pr-hero-bg-orb {
  position: absolute; width: 700px; height: 500px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,87,255,.1) 0%, transparent 65%);
  top: -80px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.pr-hero-inner {
  position: relative; z-index: 1;
  max-width: 680px; margin: 0 auto;
}
.pr-hero-h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800; letter-spacing: -.04em;
  line-height: 1.05; color: #fff; margin-bottom: 14px;
}
.pr-hero-sub {
  font-size: 17px; color: rgba(255,255,255,.45);
  line-height: 1.7; margin-bottom: 36px;
  max-width: 500px; margin-left: auto; margin-right: auto;
}

/* ─── Billing toggle ─── */
.pr-currency-switch {
  font-size: 12px; color: rgba(255,255,255,.3);
  margin-top: 12px; margin-bottom: 0;
}
.pr-currency-switch a { color: rgba(255,255,255,.45); text-decoration: underline; }
.pr-currency-switch a:hover { color: rgba(255,255,255,.7); }

.pr-billing-toggle {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px; padding: 6px 6px 6px 18px;
}
.pr-bt-label {
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,.35); transition: color .2s;
}
.pr-bt-label.on { color: rgba(255,255,255,.9); }
.pr-bt-pill {
  width: 48px; height: 26px; border-radius: 100px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  position: relative; cursor: pointer; transition: background .2s;
}
.pr-bt-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--pr-blue);
  position: absolute; top: 2px; left: 2px; transition: left .2s;
}
.pr-bt-pill.annual .pr-bt-thumb { left: 26px; }
.pr-bt-pill.annual { background: rgba(0,87,255,.15); border-color: rgba(0,87,255,.3); }
.pr-bt-save {
  background: rgba(37,211,102,.12); border: 1px solid rgba(37,211,102,.22);
  color: #4ADE80; font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 100px; white-space: nowrap; margin-right: 4px;
}

/* ═══════════════════════════════════════════
   PRICING CARDS
═══════════════════════════════════════════ */
.pr-cards-section {
  padding: 8px 40px 80px;
  background: var(--pr-navy);
}
.pr-cards-grid {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; align-items: start;
  padding-top: 16px;
}

/* White floating card */
.pr-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  display: flex; flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,.38), 0 6px 20px rgba(0,0,0,.16);
  transition: box-shadow .22s, transform .22s;
  position: relative;
}
.pr-card:hover {
  box-shadow: 0 28px 72px rgba(0,0,0,.44), 0 10px 28px rgba(0,0,0,.18);
  transform: translateY(-3px);
}
.pr-card.popular {
  transform: translateY(-12px);
  box-shadow:
    0 0 0 2px var(--pr-blue),
    0 32px 80px rgba(0,87,255,.28),
    0 16px 48px rgba(0,0,0,.22);
}
.pr-card.popular::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, #0057FF, #60A5FA, #0057FF, transparent);
  border-radius: 20px 20px 0 0;
}
.pr-card.popular:hover {
  transform: translateY(-16px);
  box-shadow:
    0 0 0 2px var(--pr-blue),
    0 40px 90px rgba(0,87,255,.35),
    0 20px 56px rgba(0,0,0,.26);
}
.pr-pop-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--pr-blue); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 4px 14px; border-radius: 100px; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,87,255,.45);
}
.pr-card-name {
  font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: #9CA3AF; margin-bottom: 16px;
}
.pr-card.popular .pr-card-name { color: var(--pr-blue); }
.pr-card-price { margin-bottom: 4px; line-height: 1; }
.pr-card-amount {
  font-size: 2.5rem; font-weight: 800;
  color: #0F172A; letter-spacing: -.04em;
}
.pr-card-amount.custom { font-size: 1.75rem; }
.pr-card-period { font-size: 14px; color: #9CA3AF; font-weight: 500; }
.pr-card-annual { font-size: 11px; color: #9CA3AF; margin-bottom: 14px; min-height: 18px; }
.pr-card-annual strong { color: #16A34A; }
.pr-card-desc {
  font-size: 13px; color: #6B7280;
  line-height: 1.55; margin-bottom: 22px; min-height: 44px;
}
.pr-card-cta {
  display: flex; align-items: center; justify-content: center;
  background: #F1F5F9; border: 1px solid #E2E8F0;
  color: #374151; font-size: 14px; font-weight: 700;
  padding: 12px; border-radius: 10px; text-decoration: none;
  transition: background .15s, border-color .15s; margin-bottom: 22px;
}
.pr-card-cta:hover { background: #E8EEF4; border-color: #CBD5E1; color: #0F172A; text-decoration: none; }
.pr-card.popular .pr-card-cta {
  background: var(--pr-blue); border-color: var(--pr-blue); color: #fff;
  box-shadow: 0 6px 20px rgba(0,87,255,.35);
}
.pr-card.popular .pr-card-cta:hover {
  background: var(--pr-blue-dark); border-color: var(--pr-blue-dark); color: #fff;
}
.pr-card-divider { height: 1px; background: #F1F5F9; margin-bottom: 20px; }
.pr-card-features { list-style: none; margin: 0; padding: 0; flex: 1; display: flex; flex-direction: column; gap: 9px; }
.pr-card-feature {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 13px; color: #374151; line-height: 1.4;
}
.pr-cf-check {
  width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 7L5.5 10.5L12 3' stroke='%230057FF' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.pr-card-highlight { color: #0F172A; font-weight: 700; }

/* ═══════════════════════════════════════════
   CONVERSATION COSTS
═══════════════════════════════════════════ */
.pr-conv-section {
  padding: 56px 40px;
  background: var(--pr-navy-2);
  border-top: 1px solid var(--pr-border);
  border-bottom: 1px solid var(--pr-border);
}
.pr-conv-inner {
  max-width: 1060px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.pr-conv-h {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800; letter-spacing: -.03em;
  line-height: 1.2; color: #fff; margin-bottom: 16px;
}
.pr-conv-sub {
  font-size: 15px; color: rgba(255,255,255,.45);
  line-height: 1.8; margin-bottom: 20px;
}
.pr-conv-note { font-size: 13px; color: rgba(255,255,255,.28); line-height: 1.65; }
.pr-conv-note a { color: rgba(96,165,250,.8); text-decoration: none; }
.pr-conv-note a:hover { color: #60A5FA; text-decoration: underline; }

/* Rates table (dark) */
.pr-conv-table {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px; overflow: hidden;
}
.pr-conv-table-hdr {
  background: rgba(255,255,255,.04); padding: 14px 20px;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  color: rgba(255,255,255,.35); border-bottom: 1px solid rgba(255,255,255,.07);
}
.pr-conv-row {
  padding: 14px 20px; display: grid; grid-template-columns: 2fr 1fr 1fr;
  font-size: 13px; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: background .15s;
}
.pr-conv-row:last-child { border-bottom: none; }
.pr-conv-row:hover { background: rgba(255,255,255,.03); }
.pr-conv-row-label { color: rgba(255,255,255,.7); font-weight: 500; }
.pr-conv-row-label small { display: block; font-size: 11px; color: rgba(255,255,255,.3); margin-top: 1px; font-weight: 400; }
.pr-conv-row-cost { color: rgba(255,255,255,.85); font-weight: 700; font-size: 14px; }
.pr-conv-row-cost.free { color: #4ADE80; }
.pr-conv-badge {
  font-size: 11px; font-weight: 700; padding: 2px 8px;
  border-radius: 100px; width: fit-content;
}
.pr-conv-marketing { background: rgba(251,191,36,.1);  color: #FBBF24; border: 1px solid rgba(251,191,36,.2); }
.pr-conv-service   { background: rgba(74,222,128,.1);  color: #4ADE80; border: 1px solid rgba(74,222,128,.2); }
.pr-conv-utility   { background: rgba(96,165,250,.1);  color: #60A5FA; border: 1px solid rgba(96,165,250,.2); }
.pr-conv-auth      { background: rgba(167,139,250,.1); color: #A78BFA; border: 1px solid rgba(167,139,250,.2); }

/* ═══════════════════════════════════════════
   COMPARISON TABLE
═══════════════════════════════════════════ */
.pr-compare-section { padding: 80px 40px; background: var(--pr-navy); }
.pr-compare-header { text-align: center; margin-bottom: 44px; }
.pr-sec-h {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800; letter-spacing: -.035em; line-height: 1.1; color: #fff;
}
.pr-compare-scroll-hint { display: none; }

/* White card wrapping table */
.pr-compare-wrap {
  max-width: 1060px; margin: 0 auto;
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.35), 0 8px 24px rgba(0,0,0,.12);
}
.pr-compare-table { width: 100%; border-collapse: collapse; }
.pr-compare-table thead tr th {
  padding: 18px 20px; text-align: left;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; color: #9CA3AF;
  background: #F8FAFC; border-bottom: 1px solid #E2E8F0;
}
.pr-compare-table thead tr th:not(:first-child) { text-align: center; }
.pr-th-plan-name {
  font-size: 15px; font-weight: 800; color: #0F172A;
  text-transform: none; letter-spacing: -.01em; display: block; margin-bottom: 2px;
}
.pr-th-plan-price { font-size: 11px; color: #9CA3AF; font-weight: 500; text-transform: none; letter-spacing: 0; }
.pr-th-popular-col { background: var(--pr-blue-light); border-left: 1px solid rgba(0,87,255,.2); border-right: 1px solid rgba(0,87,255,.2); }
.pr-th-popular-col .pr-th-plan-name { color: var(--pr-blue); }
.pr-th-popular-col .pr-th-plan-price { color: var(--pr-blue); font-weight: 600; }

.pr-compare-table .pr-group-row td {
  padding: 14px 20px 8px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: #9CA3AF; background: #FAFBFC;
  border-top: 1px solid #E2E8F0; border-bottom: 1px solid #F1F5F9;
}
.pr-compare-table .pr-feat-row td {
  padding: 10px 20px; border-bottom: 1px solid #F8FAFC;
  font-size: 13px; color: #374151;
}
.pr-compare-table .pr-feat-row:hover td { background: #FAFBFF; }
.pr-compare-table .pr-feat-row td:not(:first-child) { text-align: center; }
.pr-feat-label { font-weight: 500; color: #0F172A; }
.pr-feat-sub { font-size: 11px; color: #9CA3AF; margin-top: 2px; }
.pr-compare-table .pr-feat-row td.is-popular {
  background: rgba(0,87,255,.04);
  border-left: 1px solid rgba(0,87,255,.12);
  border-right: 1px solid rgba(0,87,255,.12);
}
.pr-compare-table .pr-feat-row:hover td.is-popular { background: rgba(0,87,255,.06); }

.pr-check-yes { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; }
.pr-check-yes svg { color: #16A34A; }
.pr-check-no  { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; }
.pr-check-no svg { color: #D1D5DB; }
.pr-check-val { font-size: 13px; font-weight: 600; color: #374151; }
.pr-check-val.blue  { color: var(--pr-blue); }
.pr-check-val.green { color: #16A34A; }

.pr-compare-cta-row td {
  padding: 20px; border-top: 1px solid #E2E8F0; background: #F8FAFC;
}
.pr-compare-cta-row td:not(:first-child) { text-align: center; }
.pr-compare-cta-row td.is-popular {
  background: var(--pr-blue-light);
  border-left: 1px solid rgba(0,87,255,.2);
  border-right: 1px solid rgba(0,87,255,.2);
  border-bottom: 1px solid rgba(0,87,255,.15);
}
.pr-cmp-cta {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid #E2E8F0;
  color: #374151; font-size: 13px; font-weight: 700;
  padding: 10px 18px; border-radius: 9px; text-decoration: none;
  transition: background .15s, border-color .15s;
}
.pr-cmp-cta:hover { background: #F1F5F9; border-color: #CBD5E1; color: #0F172A; text-decoration: none; }
.pr-cmp-cta.primary {
  background: var(--pr-blue); border-color: var(--pr-blue); color: #fff;
  box-shadow: 0 4px 16px rgba(0,87,255,.3);
}
.pr-cmp-cta.primary:hover { background: var(--pr-blue-dark); border-color: var(--pr-blue-dark); }

/* ═══════════════════════════════════════════
   ENTERPRISE
═══════════════════════════════════════════ */
.pr-enterprise-section { padding: 0 40px 80px; background: var(--pr-navy); }
.pr-enterprise-card {
  max-width: 1060px; margin: 0 auto;
  background: #fff; border-radius: 20px;
  padding: 48px 52px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 56px; align-items: center;
  box-shadow: 0 24px 64px rgba(0,0,0,.35), 0 8px 24px rgba(0,0,0,.1);
}
.pr-ent-kicker {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: #9CA3AF; margin-bottom: 12px;
}
.pr-ent-h {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.2; color: #0F172A; margin-bottom: 12px;
}
.pr-ent-sub { font-size: 15px; color: #6B7280; line-height: 1.75; max-width: 520px; }
.pr-ent-numbers { display: flex; gap: 0; margin-top: 28px; }
.pr-ent-num-item { padding-right: 24px; margin-right: 24px; border-right: 1px solid #E2E8F0; }
.pr-ent-num-item:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.pr-ent-num { display: block; font-size: 1.4rem; font-weight: 800; color: #0F172A; letter-spacing: -.03em; line-height: 1.1; }
.pr-ent-num-lbl { display: block; font-size: 11px; color: #9CA3AF; font-weight: 500; margin-top: 4px; white-space: nowrap; }
.pr-ent-cta { display: flex; flex-direction: column; gap: 10px; align-items: center; flex-shrink: 0; }
.pr-ent-cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--pr-blue); color: #fff; font-size: 15px; font-weight: 700;
  padding: 14px 28px; border-radius: 11px; border: none; cursor: pointer; text-decoration: none;
  white-space: nowrap; transition: background .15s, box-shadow .15s, transform .1s;
  box-shadow: 0 6px 20px rgba(0,87,255,.35);
}
.pr-ent-cta-btn:hover { background: var(--pr-blue-dark); box-shadow: 0 8px 26px rgba(0,87,255,.45); transform: translateY(-1px); text-decoration: none; color: #fff; }
.pr-ent-cta-note { font-size: 12px; color: #9CA3AF; text-align: center; line-height: 1.5; }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.pr-faq-section {
  padding: 80px 40px;
  background: var(--pr-navy-2);
  border-top: 1px solid var(--pr-border);
}
.pr-faq-header { text-align: center; margin-bottom: 44px; }
.pr-faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 6px; }
.pr-faq-item {
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px; overflow: hidden;
  transition: border-color .2s;
}
.pr-faq-item.open { border-color: rgba(255,255,255,.14); }
.pr-faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; cursor: pointer;
  font-size: 15px; font-weight: 600; color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.02); transition: background .15s; user-select: none;
}
.pr-faq-q:hover { background: rgba(255,255,255,.04); }
.pr-faq-icon {
  width: 22px; height: 22px; min-width: 22px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .3s; flex-shrink: 0;
}
.pr-faq-item.open .pr-faq-icon { background: rgba(0,87,255,.2); transform: rotate(45deg); }
.pr-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s ease; padding: 0 24px; }
.pr-faq-item.open .pr-faq-a { max-height: 240px; padding: 0 24px 20px; }
.pr-faq-a p {
  font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.8;
  padding-top: 4px; border-top: 1px solid rgba(255,255,255,.05); margin: 0;
}

/* ═══════════════════════════════════════════
   CTA STRIP
═══════════════════════════════════════════ */
.pr-cta-strip {
  padding: 100px 40px; background: var(--pr-navy);
  position: relative; overflow: hidden; text-align: center;
}
.pr-cta-glow {
  position: absolute; width: 700px; height: 500px; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: radial-gradient(ellipse, rgba(0,87,255,.16) 0%, transparent 65%);
  pointer-events: none;
}
.pr-cta-inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.pr-cta-h {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800;
  letter-spacing: -.035em; line-height: 1.1; color: #fff; margin-bottom: 14px;
}
.pr-cta-sub { font-size: 16px; color: rgba(255,255,255,.4); margin-bottom: 32px; line-height: 1.65; }
.pr-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.pr-btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: #0B1120; font-size: 15px; font-weight: 700;
  padding: 13px 26px; border-radius: 10px; border: none; text-decoration: none;
  transition: box-shadow .15s, transform .1s;
}
.pr-btn-white:hover { box-shadow: 0 8px 22px rgba(0,0,0,.22); transform: translateY(-1px); text-decoration: none; color: #0B1120; }
.pr-btn-ghost {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.75); font-size: 15px; font-weight: 600;
  padding: 13px 26px; border-radius: 10px; text-decoration: none;
  transition: background .15s, border-color .15s;
}
.pr-btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.22); text-decoration: none; color: rgba(255,255,255,.9); }
.pr-cta-trust {
  margin-top: 20px; font-size: 13px; color: rgba(255,255,255,.22);
  display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap;
}
.pr-cta-trust span { display: flex; align-items: center; gap: 5px; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */

/* Tablet landscape (≤ 1080px) */
@media (max-width: 1080px) {
  .pr-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; max-width: 720px;
  }
  .pr-card.popular { transform: translateY(0); }
  .pr-card.popular:hover { transform: translateY(-3px); }

  .pr-compare-section { padding: 60px 24px; }
  .pr-compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 16px; }
  .pr-compare-table { min-width: 700px; }

  .pr-enterprise-card { gap: 32px; padding: 40px 44px; }
}

/* Tablet portrait (≤ 860px) */
@media (max-width: 860px) {
  .pr-hero { padding: 104px 24px 56px; }
  .pr-cards-section { padding: 8px 24px 64px; }

  .pr-conv-section { padding: 56px 24px; }
  .pr-conv-inner { grid-template-columns: 1fr; gap: 32px; }

  .pr-enterprise-section { padding: 0 24px 64px; }
  .pr-enterprise-card { grid-template-columns: 1fr; gap: 28px; padding: 36px 36px; }
  .pr-ent-cta { flex-direction: row; align-items: center; gap: 20px; }
  .pr-ent-cta-note { text-align: left; }

  .pr-faq-section { padding: 64px 24px; }
  .pr-cta-strip { padding: 80px 24px; }
}

/* Mobile (≤ 640px) */
@media (max-width: 640px) {
  .pr-hero { padding: 84px 20px 44px; }
  .pr-hero-sub { font-size: 15px; }

  .pr-billing-toggle {
    display: inline-grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 8px 10px; padding: 10px 14px; border-radius: 14px;
  }
  .pr-bt-save { grid-column: 1 / -1; text-align: center; margin-right: 0; font-size: 10px; padding: 3px 10px; }

  .pr-cards-section { padding: 8px 16px 56px; }
  .pr-cards-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; gap: 14px; }
  .pr-card { padding: 22px 20px; }
  .pr-card-amount { font-size: 2.1rem; }

  .pr-conv-section { padding: 44px 16px; }
  .pr-conv-table-hdr, .pr-conv-row { padding: 11px 14px; }
  .pr-conv-table-hdr { font-size: 10px; }

  .pr-compare-section { padding: 44px 0; }
  .pr-compare-header { padding: 0 16px; margin-bottom: 16px; }
  .pr-sec-h { font-size: 1.6rem; }
  .pr-compare-wrap { border-radius: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; box-shadow: none; margin: 0; }
  .pr-compare-table { min-width: 580px; }
  .pr-compare-scroll-hint {
    display: block; text-align: center; font-size: 12px;
    color: rgba(255,255,255,.3); letter-spacing: .05em; margin-bottom: 10px;
  }

  .pr-enterprise-section { padding: 0 16px 52px; }
  .pr-enterprise-card { padding: 26px 22px; gap: 22px; }
  .pr-ent-h { font-size: 1.45rem; }
  .pr-ent-sub { font-size: 14px; }
  .pr-ent-numbers { flex-wrap: wrap; gap: 18px 0; }
  .pr-ent-num-item { width: 50%; border-right: none; padding-right: 0; margin-right: 0; }
  .pr-ent-cta { flex-direction: column; align-items: stretch; gap: 8px; }
  .pr-ent-cta-btn { width: 100%; justify-content: center; }
  .pr-ent-cta-note { text-align: center; }

  .pr-faq-section { padding: 52px 16px; }
  .pr-faq-q { font-size: 14px; padding: 16px 18px; }
  .pr-faq-a { padding: 0 18px; }
  .pr-faq-item.open .pr-faq-a { padding: 0 18px 16px; }

  .pr-cta-strip { padding: 60px 20px; }
  .pr-cta-h { font-size: 2rem; }
  .pr-cta-actions { flex-direction: column; gap: 10px; align-items: center; }
  .pr-btn-white, .pr-btn-ghost { width: 100%; max-width: 300px; justify-content: center; }
  .pr-cta-trust { gap: 12px; font-size: 12px; }
}

/* Very small (≤ 380px) */
@media (max-width: 380px) {
  .pr-hero-h1 { font-size: 1.9rem; }
  .pr-cards-grid { max-width: 100%; }
}
