/* Reusable component layer — shared across every route (/, /audit/, /diagnostic/).
   Every rule here reads only design tokens from tokens/*.css. Route templates and
   the tonsa-core blocks compose pages by referencing these classes; no route
   re-implements its own one-off button/card/badge styling. */

.tonsa-glass { border: 1px solid var(--glass-border); background: var(--glass-surface-1); box-shadow: var(--shadow-glass); -webkit-backdrop-filter: blur(var(--glass-blur)); backdrop-filter: blur(var(--glass-blur)); transition: background var(--duration-standard) var(--ease-standard), border-color var(--duration-standard) var(--ease-standard), box-shadow var(--duration-standard) var(--ease-standard); }
.tonsa-glass:hover { background: var(--glass-surface-2); border-color: var(--glass-border-strong); box-shadow: var(--shadow-glass-hover); }

/* Eyebrow — dash variant is the default for every section head; badge variant
   (pill + dot) is reserved for the Hero's own label on each route. */
.tonsa-eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 1rem; color: var(--color-ink-muted); font-size: var(--text-eyebrow-size); font-weight: 500; line-height: 1.3; letter-spacing: .16em; text-transform: uppercase; }
.tonsa-eyebrow::before { content: ""; flex: none; width: 22px; height: 1.5px; background: var(--color-primary); }
.tonsa-eyebrow--badge { display: inline-flex; width: fit-content; padding: 7px 16px 7px 12px; border-radius: var(--radius-pill); background: var(--glass-surface-1); border: 1px solid var(--glass-border); letter-spacing: .14em; }
.tonsa-eyebrow--badge::before { width: 7px; height: 7px; border-radius: 50%; }

/* Button — matches the real Claude Design system's Button.jsx component exactly
   (pulled via DesignSync from the "Tonsa Design System" project: padding,
   gap, icon size/color, font-weight, hover/active mechanics). Every button on
   every route uses this component with no per-instance style override in the
   canonical source, so this component's own definition is the ground truth —
   not an approximation. justify-content stays space-between (not the source's
   center) because the mockup's own rendered full-width buttons (Hero offer
   card, modal submit) visibly place the label left and the arrow at the far
   right; center only matches source for naturally-sized (non-stretched) buttons,
   where the two behave identically anyway.
   Definition itself lives in critical.css (inlined in <head>), not here — the
   header CTA and mobile-menu toggle need it above the fold on every route. */

/* Badge / pill label */
.tonsa-badge { display: inline-flex; align-items: center; gap: .5rem; padding: 5px 12px; border-radius: var(--radius-pill); font-size: var(--text-caption-size); font-weight: 500; }
.tonsa-badge--accent { background: rgb(172 255 98 / 14%); color: var(--color-primary); border: 1px solid rgb(172 255 98 / 28%); }
.tonsa-badge--muted { background: var(--glass-surface-1); border: 1px solid var(--glass-border); color: var(--color-ink-muted); }

/* Pill meta row — small stat/fact chips under a Hero CTA (e.g. "от 3 дней") */
.tonsa-pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.tonsa-pill-row--center { justify-content: center; }
.tonsa-cta-banner .tonsa-pill-row { margin-top: 1rem; }
.tonsa-pill { font-size: .81rem; font-weight: 500; color: var(--color-ink-muted); border-radius: var(--radius-pill); padding: 9px 15px; background: var(--glass-surface-1); border: 1px solid var(--glass-border); }
.tonsa-pill--accent { color: var(--color-primary); background: rgb(172 255 98 / 10%); border-color: rgb(172 255 98 / 28%); }

/* Generic card grid + card */
.tonsa-card-grid { display: grid; gap: 1.1rem; margin-top: 2.25rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.tonsa-card { padding: clamp(1.5rem, 2.6vw, 2.15rem); border-radius: var(--radius-glass-card); }
.tonsa-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; margin-bottom: 1.1rem; border-radius: var(--radius-lg); background: var(--glass-surface-2); border: 1px solid var(--glass-border); color: var(--color-primary); }
.tonsa-card__media { aspect-ratio: 16 / 10; margin: -.2rem -.2rem 1.1rem; overflow: hidden; border-radius: calc(var(--radius-glass-card) - 6px); border: 1px solid var(--glass-border); background: var(--surface-container-low); }
.tonsa-card__media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.tonsa-card h3 { margin: 0; color: var(--color-ink); font-size: var(--text-card-title-size); font-weight: 600; letter-spacing: -.02em; }
.tonsa-card p { margin: .7rem 0 0; color: var(--color-ink-muted); font-size: .94rem; line-height: 1.55; }
p.tonsa-card__label { margin: 0; color: var(--color-primary); font-size: var(--text-caption-size); font-weight: 500; letter-spacing: .14em; text-transform: uppercase; }

/* Card stack — right column of a sticky-split section (see .tonsa-sticky-split
   in site.css): vertically stacked, larger-type cards, e.g. "Что входит в
   работу". Reuses .tonsa-card/.tonsa-card__icon, overrides the type scale to
   match canon's VALUE-section cards, which run larger than the generic grid. */
.tonsa-card-stack { display: flex; flex-direction: column; gap: 1.25rem; }
.tonsa-card-stack .tonsa-card { padding: clamp(1.75rem, 3.4vw, 2.5rem); }
.tonsa-card-stack .tonsa-card h3 { margin-top: 1.1rem; font-size: clamp(1.375rem, 2.6vw, 1.75rem); font-weight: 500; letter-spacing: -.015em; }
.tonsa-card-stack .tonsa-card p { max-width: 35rem; font-size: clamp(1rem, 1.7vw, 1.125rem); line-height: 1.55; }

/* Offer card — the rich Hero-adjacent card (badge + heading + checklist + CTA) */
.tonsa-offer-card { padding: clamp(1.5rem, 3vw, 2.1rem); border-radius: var(--radius-glass-panel); }
.tonsa-offer-card__head { display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.tonsa-offer-card__meta { font-size: var(--text-body-sm-size); color: var(--color-ink-subtle); }
.tonsa-offer-card h2 { margin: 1.1rem 0 0; color: var(--color-ink); font-size: var(--text-headline-size); font-weight: 600; letter-spacing: -.02em; }
.tonsa-offer-card > p { margin: .6rem 0 0; color: var(--color-ink-muted); font-size: .94rem; line-height: 1.5; }
.tonsa-offer-card .tonsa-button { margin-top: 1.35rem; }

/* Checklist — check-badge bullet list, reused inside cards */
.tonsa-checklist-card { margin-top: 2.25rem; padding: clamp(1.5rem, 3vw, 2.5rem); border-radius: var(--radius-glass-card); }
.tonsa-checklist-card__label { margin: 0 0 1.1rem; color: var(--color-primary); font-size: var(--text-caption-size); font-weight: 500; letter-spacing: .14em; text-transform: uppercase; }
.tonsa-checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: .95rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.tonsa-checklist--stacked { grid-template-columns: 1fr; margin-top: 1.25rem; }
.tonsa-checklist li { display: flex; gap: .75rem; align-items: flex-start; color: var(--color-ink-muted); font-size: .95rem; line-height: 1.5; }
.tonsa-checklist li::before { content: "\2713"; flex: none; width: 1.35rem; height: 1.35rem; margin-top: .05rem; border-radius: 50%; background: rgb(172 255 98 / 16%); color: var(--color-primary); font-size: .72rem; font-weight: 700; display: grid; place-items: center; }

/* Pain-point list — each row pins via position:sticky with an escalating
   top offset/z-index, so rows stack on top of each other while scrolling
   past the section (canon RECOGNIZE, lines 243-250 of the source export). */
.tonsa-pain-list { display: flex; flex-direction: column; margin: 1.9rem 0 0; }
.tonsa-pain-list__item { position: sticky; padding-bottom: .875rem; }
.tonsa-pain-list__item:nth-child(1) { top: 96px; z-index: 1; }
.tonsa-pain-list__item:nth-child(2) { top: 112px; z-index: 2; }
.tonsa-pain-list__item:nth-child(3) { top: 128px; z-index: 3; }
.tonsa-pain-list__item:nth-child(4) { top: 144px; z-index: 4; }
.tonsa-pain-list__item:nth-child(5) { top: 160px; z-index: 5; }
.tonsa-pain-list__item:nth-child(6) { top: 176px; z-index: 6; }
.tonsa-pain-list__card { display: flex; gap: 1rem; align-items: flex-start; padding: 1.375rem 1.5rem; border-radius: var(--radius-xl); background: var(--glass-surface-2); border: 1px solid var(--glass-border-strong); -webkit-backdrop-filter: blur(var(--glass-blur)); backdrop-filter: blur(var(--glass-blur)); box-shadow: var(--shadow-glass); color: var(--color-ink); font-size: .93rem; line-height: 1.5; transition: background var(--duration-standard) var(--ease-standard), box-shadow var(--duration-standard) var(--ease-standard); }
.tonsa-pain-list__card:hover { background: var(--glass-surface-3); box-shadow: var(--shadow-glass-hover); }
.tonsa-pain-list__dot { flex: none; margin-top: .125rem; width: 1.1875rem; height: 1.1875rem; border-radius: 50%; border: 1.5px solid var(--color-ink-tertiary); }

/* Recognize section's pill CTA — distinct from .tonsa-cta-banner's full-width
   block: canon renders it as an inline-flex pill with a leading check badge. */
.tonsa-recognize-cta { margin-top: 1.375rem; display: inline-flex; flex-wrap: wrap; align-items: center; gap: .75rem; padding: .875rem 1.375rem; border-radius: var(--radius-xl); background: var(--glass-surface-2); border: 1px solid var(--glass-border-strong); -webkit-backdrop-filter: blur(var(--glass-blur)); backdrop-filter: blur(var(--glass-blur)); box-shadow: var(--shadow-glass); }
.tonsa-recognize-cta__badge { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: var(--color-primary); color: var(--color-on-primary); }
.tonsa-recognize-cta h2 { margin: 0; color: var(--color-ink); font-size: clamp(1rem, 2vw, 1.1875rem); font-weight: 600; letter-spacing: -.01em; }
.tonsa-recognize-cta .tonsa-button { margin-top: 0; }

/* Mechanism — six full-width two-column panels, each pinned via
   position:sticky with an escalating top offset/z-index so they pile into
   a scroll-driven stacking deck (canon MECHANISM, lines 255-269). */
.tonsa-route-frame.tonsa-mechanism { display: flex; flex-direction: column; margin-top: var(--tonsa-component-mechanism-deck-margin-top) !important; }
.tonsa-mechanism__panel { position: sticky; padding-bottom: 1.5rem; }
.tonsa-mechanism__panel:nth-child(1) { top: 96px; z-index: 1; }
.tonsa-mechanism__panel:nth-child(2) { top: 112px; z-index: 2; }
.tonsa-mechanism__panel:nth-child(3) { top: 128px; z-index: 3; }
.tonsa-mechanism__panel:nth-child(4) { top: 144px; z-index: 4; }
.tonsa-mechanism__panel:nth-child(5) { top: 160px; z-index: 5; }
.tonsa-mechanism__panel:nth-child(6) { top: 176px; z-index: 6; }
.tonsa-mechanism__panel:last-child { padding-bottom: 0; }
.tonsa-mechanism__card { display: grid; gap: clamp(1.5rem, 3vw, 2.75rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); align-items: center; min-height: clamp(340px, 46vh, 400px); padding: clamp(1.375rem, 2.6vw, 2.125rem); border-radius: var(--radius-glass-panel); border: 1px solid var(--glass-border); box-shadow: var(--shadow-glass); background: var(--surface-container-low); overflow: hidden; }
.tonsa-mechanism__panel:nth-child(even) .tonsa-mechanism__card { background: var(--surface-container); }
.tonsa-mechanism__index { color: var(--color-primary); font-size: clamp(3.25rem, 7vw, 5rem); font-weight: 600; letter-spacing: -.03em; line-height: .95; }
.tonsa-mechanism__copy h3 { margin: .75rem 0 0; max-width: 22ch; color: var(--color-ink); font-size: clamp(1.5rem, 3vw, 2.125rem); font-weight: 600; letter-spacing: -.02em; line-height: 1.15; text-wrap: balance; }
.tonsa-mechanism__copy p { margin: .875rem 0 0; max-width: 31.25rem; color: var(--color-ink-muted); font-size: clamp(1rem, 1.7vw, 1.125rem); line-height: 1.55; }
.tonsa-mechanism__media { display: flex; align-items: center; justify-content: center; width: 100%; aspect-ratio: 16 / 10; border-radius: var(--radius-glass-card); border: 1px solid var(--glass-border); background: var(--glass-surface-1); overflow: hidden; }
.tonsa-mechanism__media img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* Stat cards — big-number proof cards ("Процесс" sticky-stat section on /) */
.tonsa-stat-grid { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.25rem; }
.tonsa-stat-card { padding: clamp(1.6rem, 3vw, 2.1rem); border-radius: var(--radius-glass-card); }
.tonsa-stat-card--solid { background: var(--color-inverse-surface-1); border: 1px solid rgb(0 0 0 / 6%); box-shadow: var(--shadow-glass); }
.tonsa-stat-card__value { font-size: clamp(2.6rem, 5vw, 3.75rem); font-weight: 600; letter-spacing: -.03em; line-height: 1; color: var(--color-ink); }
.tonsa-stat-card--solid .tonsa-stat-card__value { color: var(--color-inverse-ink); }
.tonsa-stat-card__desc { margin-top: .75rem; color: var(--color-ink-muted); font-size: clamp(.94rem, 1.6vw, 1.06rem); line-height: 1.5; }
.tonsa-stat-card--solid .tonsa-stat-card__desc { color: rgb(30 30 31 / 70%); }

/* FAQ accordion */
.tonsa-faq { margin-top: 2.25rem; display: grid; gap: .7rem; }
.tonsa-faq details { border-radius: var(--radius-xl); overflow: hidden; }
.tonsa-faq summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.3rem; cursor: pointer; list-style: none; color: var(--color-ink); font-size: .98rem; font-weight: 600; }
.tonsa-faq summary::-webkit-details-marker { display: none; }
.tonsa-faq summary::after { content: "+"; flex: none; color: var(--color-primary); font-size: 1.15rem; }
.tonsa-faq details[open] summary::after { content: "\2013"; }
.tonsa-faq details p { margin: 0; padding: 0 1.3rem 1.2rem; color: var(--color-ink-muted); font-size: .93rem; line-height: 1.6; }

/* Pricing cards — three-tier price grid ("Цены и сроки…" on /) */
.tonsa-pricing { display: grid; gap: clamp(16px, 2vw, 22px); grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); margin-top: clamp(26px, 3.4vw, 38px); }
.tonsa-pricing-card { display: flex; flex-direction: column; padding: clamp(24px, 3vw, 32px); border-radius: var(--radius-glass-card); }
.tonsa-pricing-card h3 { margin: 0; color: var(--color-ink); font-size: 19px; font-weight: 600; letter-spacing: -.015em; line-height: 1.25; }
.tonsa-pricing-card__meta { margin: 6px 0 0; color: var(--color-ink-subtle); font-size: 14px; line-height: 1.4; }
.tonsa-pricing-card__price { margin-top: auto; padding-top: var(--space-lg); }
.tonsa-pricing-card__old { margin: 0; color: var(--color-ink-subtle); font-size: 16px; line-height: 1.2; }
.tonsa-pricing-card__new { margin: 8px 0 0; color: var(--color-primary); font-size: clamp(28px, 3.6vw, 38px); font-weight: 600; letter-spacing: -.03em; line-height: 1; }
.tonsa-pricing-note { display: flex; gap: 14px; align-items: flex-start; margin-top: clamp(18px, 2.4vw, 24px); padding: 18px 22px; border-radius: var(--radius-xl); background: rgb(172 255 98 / 7%); border: 1px solid rgb(172 255 98 / 24%); }
.tonsa-pricing-note__dot { flex: none; margin-top: 5px; width: 7px; height: 7px; border-radius: 50%; background: var(--color-primary); }
.tonsa-pricing-note p { margin: 0; color: var(--color-ink-muted); font-size: clamp(14.5px, 1.6vw, 16px); line-height: 1.55; }

/* Comparison columns */
.tonsa-compare { margin-top: 2.25rem; display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr)); }
.tonsa-compare-col { padding: clamp(1.5rem, 3vw, 2.35rem); border-radius: var(--radius-glass-card); }
.tonsa-compare-col--highlight { background: var(--glass-surface-3); border-color: rgb(172 255 98 / 25%); }
.tonsa-compare-col h3 { margin: 0 0 1.25rem; display: flex; align-items: center; gap: .6rem; color: var(--color-ink-muted); font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.tonsa-compare-col--highlight h3 { color: var(--color-primary); }
.tonsa-compare-icon { display: inline-flex; align-items: center; justify-content: center; flex: none; width: 24px; height: 24px; border-radius: 50%; }
.tonsa-compare-icon--danger { background: rgb(255 180 171 / 12%); color: var(--color-semantic-danger); }
.tonsa-compare-icon--primary { background: rgb(172 255 98 / 16%); color: var(--color-primary); }
.tonsa-compare-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.05rem; }
.tonsa-compare-col strong { display: block; color: var(--color-ink); font-size: .98rem; font-weight: 620; }
.tonsa-compare-col p { margin: .3rem 0 0; color: var(--color-ink-muted); font-size: .88rem; line-height: 1.5; }

/* CTA banner */
.tonsa-cta-banner { margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; align-items: center; justify-content: space-between; padding: clamp(1.75rem, 3vw, 2.6rem); border-radius: var(--radius-glass-card); background: var(--glass-surface-2); border: 1px solid var(--glass-border-strong); -webkit-backdrop-filter: blur(var(--glass-blur)); backdrop-filter: blur(var(--glass-blur)); box-shadow: var(--shadow-glass); }
.tonsa-cta-banner h2 { margin: 0; white-space: nowrap; color: var(--color-ink); font-size: var(--text-display-md-size); font-weight: 600; letter-spacing: -.03em; }
.tonsa-cta-banner--center h2 { white-space: normal; }
.tonsa-cta-banner p { margin: .55rem 0 0; max-width: 34rem; color: var(--color-ink); font-size: .93rem; }
.tonsa-cta-banner .tonsa-button { margin-top: 0; }
.tonsa-cta-banner .tonsa-pill:not(.tonsa-pill--accent) { color: var(--color-ink); background: var(--glass-surface-3); border-color: var(--glass-border-strong); }

/* Centered standalone variant — canon's audit-route FINAL CTA panel (a single
   centered column: heading, lede, pills, button), as opposed to the default
   two-column text-left/button-right banner used for the home Compare CTA. */
.tonsa-cta-banner--center { flex-direction: column; max-width: 56.25rem; margin: clamp(1.75rem, 3vw, 2.5rem) auto 0; text-align: center; }
.tonsa-cta-banner--center h2 { max-width: none; }
.tonsa-cta-banner--center p { margin-inline: auto; }
.tonsa-cta-banner--center .tonsa-pill-row { justify-content: center; }
.tonsa-cta-banner--center .tonsa-button { margin-top: .375rem; }

/* Contact modal — the "Обсудить сайт" request dialog. Markup is output once via
   wp_footer() in functions.php and triggered by any [data-tonsa-open-modal]
   button; assets/js/contact-modal.js owns the open/close/submit behaviour. */
.tonsa-modal-overlay { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: clamp(1rem, 4vw, 2rem); }
.tonsa-modal-overlay.is-open { display: flex; }
.tonsa-modal-overlay__backdrop { position: absolute; inset: 0; background: rgb(6 9 8 / 62%); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); animation: tonsa-modal-fade .18s var(--ease-standard); }
.tonsa-modal { position: relative; width: 100%; max-width: 460px; max-height: calc(100dvh - 3rem); overflow-y: auto; background: var(--glass-surface-2); border: 1px solid var(--glass-border-strong); border-radius: var(--radius-glass-panel); padding: clamp(1.5rem, 3.5vw, 2.25rem); -webkit-backdrop-filter: blur(var(--glass-blur)); backdrop-filter: blur(var(--glass-blur)); box-shadow: var(--shadow-glass); animation: tonsa-modal-pop .22s var(--ease-standard); }
@keyframes tonsa-modal-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes tonsa-modal-pop { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .tonsa-modal-overlay__backdrop, .tonsa-modal { animation: none; }
}
.tonsa-modal__close { position: absolute; top: 9px; right: 9px; width: 44px; height: 44px; border: 1px solid var(--glass-border); border-radius: 50%; background: var(--glass-surface-1); color: var(--color-ink-muted); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; appearance: none; transition: background var(--duration-standard) var(--ease-standard), color var(--duration-standard) var(--ease-standard); }
.tonsa-modal__close:hover { background: var(--glass-surface-3); color: var(--color-ink); }
.tonsa-modal h2 { margin: 1.1rem 0 0; color: var(--color-ink); font-size: clamp(1.375rem, 3vw, 1.6875rem); font-weight: 600; line-height: 1.15; letter-spacing: -.02em; }
.tonsa-modal > p { margin: .5rem 0 0; color: var(--color-ink-muted); font-size: .9rem; line-height: 1.5; }
.tonsa-modal__fields { display: flex; flex-direction: column; gap: .75rem; margin-top: 1.35rem; }
.tonsa-field { width: 100%; box-sizing: border-box; background: var(--glass-surface-1); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); color: var(--color-ink); font: 400 15px/1.4 var(--font-text); padding: 13px 16px; outline: none; transition: border-color var(--duration-standard) var(--ease-standard), background var(--duration-standard) var(--ease-standard); }
.tonsa-field::placeholder { color: var(--color-ink-subtle); }
.tonsa-field:focus { border-color: var(--color-primary); background: var(--glass-surface-2); }
.tonsa-modal__consent { display: flex; gap: 10px; align-items: flex-start; margin-top: 14px; cursor: pointer; }
.tonsa-modal__consent input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--color-primary); }
.tonsa-modal__consent span { color: var(--color-ink-subtle); font-size: 12.5px; line-height: 1.45; }
.tonsa-modal__honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.tonsa-modal .tonsa-button { margin-top: 20px; }
.tonsa-modal .tonsa-button.is-submitting { pointer-events: none; }
.tonsa-modal__status { margin: 12px 0 0; font-size: .85rem; line-height: 1.45; display: none; }
.tonsa-modal__status.is-visible { display: block; }
.tonsa-modal__status--error { color: #ffb4ab; }
.tonsa-modal__status--success { color: var(--color-primary); }

@media (max-width: 767px) {
  .tonsa-button { width: 100%; margin-top: 1.35rem; }
  .tonsa-cta-banner { padding: 1.6rem; }
  .tonsa-cta-banner .tonsa-button { width: 100%; }
  /* The two-column banner's nowrap heading (kept for the desktop single-line
     canon look) has no room at mobile widths and forces page-wide horizontal
     overflow — wrap it here instead. */
  .tonsa-cta-banner h2 { white-space: normal; }
  .tonsa-stat-card__value { font-size: clamp(2.2rem, 8vw, 2.8rem); }
}

@media (prefers-reduced-transparency: reduce) {
  .tonsa-glass, .tonsa-cta-banner, .tonsa-offer-card, .tonsa-modal { background: var(--surface-container-low); -webkit-backdrop-filter: none; backdrop-filter: none; }
  .tonsa-modal-overlay__backdrop { -webkit-backdrop-filter: none; backdrop-filter: none; }
}
