html { -webkit-text-size-adjust: 100%; }
:root {
  --bg: #f4f6fb;
  --card: #ffffff;
  --txt: #1f2937;
  --muted: #6b7280;
  --line: #d1d5db;
  --brand-blue: #1f6feb;
  --brand-blue-2: #2f80f5;
  --brand-teal: #0f8b86;
  --brand-teal-2: #12a7a0;
  --acc: #0f8b86;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Segoe UI, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(1200px 520px at 8% -8%, #dbe9ff 0%, rgba(219, 233, 255, 0) 62%),
    radial-gradient(900px 480px at 94% -10%, #d5f2ff 0%, rgba(213, 242, 255, 0) 58%),
    var(--bg);
  color: var(--txt);
}
.container { max-width: 1280px; margin: 24px auto; padding: 0 16px; }
@supports (padding: max(0px)) {
  .container {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
    padding-bottom: max(0px, env(safe-area-inset-bottom));
  }
}
.pfa-hero-login {
  position: relative;
  min-height: calc(100vh - 130px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 460px);
  grid-template-areas:
    "content card"
    "illustration card";
  align-items: center;
  gap: 22px 30px;
  padding: 42px clamp(16px, 3vw, 36px);
  border: 1px solid #d7e5f3;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 16px;
  background: linear-gradient(136deg, #f9fcff 0%, #eef6ff 45%, #ffffff 100%);
  box-shadow: 0 16px 44px rgba(20, 60, 120, 0.08);
}
.pfa-hero-login::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(54, 91, 137, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(54, 91, 137, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.16;
  pointer-events: none;
}
.pfa-hero-login::after {
  content: "";
  position: absolute;
  left: 70px;
  bottom: -160px;
  width: 680px;
  height: 410px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(110, 166, 232, 0.22) 0%, rgba(110, 166, 232, 0.07) 52%, rgba(110, 166, 232, 0) 78%);
  pointer-events: none;
}
.pfa-hero-content,
.pfa-hero-illustration,
.pfa-hero-login-card {
  position: relative;
  z-index: 1;
}
.pfa-hero-content {
  grid-area: content;
  max-width: 640px;
}
.pfa-hero-content h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  color: #1c2b36;
}
.pfa-hero-content p {
  margin: 0 0 20px;
  font-size: 19px;
  line-height: 1.6;
  color: #3a4b57;
  max-width: 52ch;
}
.pfa-hero-actions a,
.pfa-hero-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 200px;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal-2));
  box-shadow: 0 10px 22px rgba(18, 128, 184, 0.22);
  border: 1px solid rgba(11, 107, 181, 0.35);
  transition: transform 0.18s ease, filter 0.18s ease;
}
.pfa-hero-actions a:hover,
.pfa-hero-tab:hover {
  filter: brightness(0.97);
  transform: translateY(-1px);
}
.pfa-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
@media (max-width: 560px) {
  .pfa-hero-actions a,
  .pfa-hero-tab {
    min-width: 100%;
  }
}
.pfa-hero-illustration {
  grid-area: illustration;
  align-self: end;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  opacity: 0.36;
  pointer-events: none;
}
.pfa-hero-illustration svg {
  width: min(560px, 98%);
  height: auto;
  display: block;
  filter: saturate(0.88);
}
.pfa-hero-illustration .deadline-calendar,
.pfa-hero-illustration .deadline-pulse-rings {
  transform-box: fill-box;
  transform-origin: center;
}
.pfa-hero-illustration .deadline-calendar {
  animation: deadline-float 5.4s ease-in-out infinite;
}
.pfa-hero-illustration .deadline-calendar-top {
  animation: deadline-topbar 2.8s ease-in-out infinite;
}
.pfa-hero-illustration .deadline-day-text {
  animation: deadline-day-pulse 2.4s ease-in-out infinite;
}
.pfa-hero-illustration .deadline-month-text {
  animation: deadline-month-glow 2.4s ease-in-out infinite;
}
.pfa-hero-illustration .deadline-pulse-rings circle {
  transform-origin: 536px 298px;
  transform-box: view-box;
}
.pfa-hero-illustration .deadline-pulse-rings circle:first-child {
  animation: deadline-ring-1 2.8s ease-out infinite;
}
.pfa-hero-illustration .deadline-pulse-rings circle:last-child {
  animation: deadline-ring-2 2.8s ease-out infinite .55s;
}

@keyframes deadline-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes deadline-topbar {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.84; }
}
@keyframes deadline-day-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  40% { transform: scale(1.025); opacity: 1; }
  60% { transform: scale(0.995); opacity: 0.92; }
}
@keyframes deadline-month-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.78; }
}
@keyframes deadline-ring-1 {
  0% { transform: scale(0.86); opacity: 0.18; }
  70% { transform: scale(1.08); opacity: 0.03; }
  100% { transform: scale(1.12); opacity: 0; }
}
@keyframes deadline-ring-2 {
  0% { transform: scale(0.9); opacity: 0.12; }
  70% { transform: scale(1.14); opacity: 0.02; }
  100% { transform: scale(1.18); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .pfa-hero-illustration .deadline-calendar,
  .pfa-hero-illustration .deadline-calendar-top,
  .pfa-hero-illustration .deadline-day-text,
  .pfa-hero-illustration .deadline-month-text,
  .pfa-hero-illustration .deadline-pulse-rings circle {
    animation: none !important;
  }
}
.pfa-hero-login-card {
  grid-area: card;
  width: 100%;
  max-width: 460px;
  justify-self: end;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #dbe8f6;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(23, 78, 166, 0.08);
}
.pfa-hero-login-card h2 {
  margin: 0 0 10px;
  color: #102544;
}
.auth-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 0 10px;
}
.auth-tab-btn {
  height: 42px;
  border-radius: 10px;
  border: 1px solid #93c5fd;
  background: #ffffff;
  color: #1f6feb;
  font-weight: 700;
}
.auth-tab-btn:hover {
  filter: none;
  background: #f8fbff;
}
.auth-tab-btn.is-active {
  color: #ffffff;
  border-color: #1f6feb;
  background: linear-gradient(180deg, #2f80f5, #1f6feb);
  box-shadow: 0 8px 20px rgba(31, 111, 235, 0.22);
}
.auth-meta-line {
  margin: 0 0 10px;
  font-size: 13px;
}
.auth-meta-line a {
  color: #1f6feb;
  text-decoration: none;
  font-weight: 600;
}
.auth-meta-line a:hover {
  text-decoration: underline;
}
.plan-choice-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.plan-choice-label {
  font-weight: 700;
  color: #12315f;
  font-size: 14px;
}
.plan-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.plan-choice-card {
  position: relative;
  display: block;
  cursor: pointer;
}
.plan-choice-card input[type='radio'] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.plan-choice-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 74px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c9d9ee;
  background: #fbfdff;
  color: #12315f;
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease, transform .15s ease;
}
.plan-choice-body small {
  color: #5f6f85;
  font-size: 12px;
}
.plan-choice-card:hover .plan-choice-body {
  border-color: #93c5fd;
  background: #f7fbff;
}
.plan-choice-card input[type='radio']:checked + .plan-choice-body {
  border-color: #1f6feb;
  background: linear-gradient(180deg, #f8fbff, #eef6ff);
  box-shadow: 0 8px 20px rgba(31, 111, 235, 0.14);
}
.plan-choice-card input[type='radio']:focus-visible + .plan-choice-body {
  outline: 2px solid #93c5fd;
  outline-offset: 2px;
}
.auth-form-section-title {
  margin-top: 4px;
  font-weight: 700;
  color: #12315f;
  font-size: 14px;
}
.pfa-hero-login-card #login-form button {
  grid-column: 1 / -1;
}
.pfa-hero-login-card #register-form button {
  grid-column: 1 / -1;
}
.site-footer {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  padding: 10px 16px 20px;
}
.site-footer-legal-note {
  margin: 8px 0;
}
.site-footer-legal-note a {
  color: #1f4f8c;
  font-weight: 700;
  text-decoration: none;
}
.site-footer-legal-note a:hover {
  text-decoration: underline;
}
.anpc-badges {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.anpc-badges a {
  display: inline-flex;
}
.anpc-badges img {
  width: 250px;
  height: 50px;
  border: 0;
}
.legal-links {
  margin: 6px 0 0;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
.legal-links a {
  color: #2b7bb9;
  text-decoration: none;
  font-weight: 600;
}
.legal-links a:hover {
  text-decoration: underline;
}
.visitor-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 6px 0 10px;
  justify-content: flex-start;
}
.footer-visitor-pills {
  width: 100%;
  margin: 2px 0 6px;
  justify-content: flex-start;
}
.visitor-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #c7d2fe;
  background: #eef2ff;
  color: #1e3a8a;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  line-height: 1.1;
}
.visitor-pill strong {
  color: #0f172a;
}
.pfa-pricing {
  grid-column: 1 / -1;
  position: relative;
  z-index: 1;
  margin-top: 6px;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #d8e5f4;
  background: rgba(255, 255, 255, 0.9);
}
.pfa-pricing-head h2 {
  margin: 0 0 6px;
  color: #102544;
  font-size: clamp(24px, 3vw, 30px);
}
.pfa-pricing-head p {
  margin: 0 0 14px;
  color: #496184;
  font-size: 15px;
}
.pfa-pricing-note {
  margin-top: -8px;
  font-size: 13px;
  color: #334155;
  font-weight: 600;
}
.pfa-pricing-support {
  margin-top: -6px;
  margin-bottom: 14px;
  font-size: 14px;
}
.pfa-pricing-support a {
  color: #1f4f8c;
  font-weight: 700;
  text-decoration: none;
}
.pfa-pricing-support a:hover {
  text-decoration: underline;
}
.pfa-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.pfa-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #d6e4f5;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 8px 22px rgba(20, 60, 120, 0.07);
}
.pfa-plan-card h3 {
  margin: 0 0 8px;
  color: #12315f;
  font-size: 20px;
}
.pfa-plan-desc {
  margin: 0 0 10px;
  color: #3f5777;
  font-size: 14px;
  line-height: 1.5;
}
.pfa-plan-card ul {
  margin: 0 0 12px;
  padding-left: 18px;
  color: #2f4f75;
}
.pfa-plan-card li {
  margin-bottom: 6px;
  font-size: 14px;
}
.pfa-plan-price {
  margin: auto 0 10px;
  color: #0b2a57;
  font-weight: 800;
  font-size: 22px;
}
.pfa-plan-price span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.pfa-plan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  border-radius: 10px;
  border: 1px solid #128ea0;
  background: linear-gradient(135deg, #1f6feb, #0ea5a1);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  margin-top: auto;
}
.pfa-plan-btn:hover {
  filter: brightness(0.96);
  transform: translateY(-1px);
}
.pfa-plan-actions {
  display: grid;
  gap: 8px;
  margin-top: auto;
}
.pfa-plan-demo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 38px;
  border-radius: 10px;
  border: 1px solid #c6d4e6;
  background: #ffffff;
  color: #12315f;
  text-decoration: none;
  font-weight: 700;
}
.pfa-plan-demo-link:hover {
  background: #f8fbff;
  border-color: #9eb9da;
  transform: translateY(-1px);
}
.pfa-plan-popular {
  border-color: #66afea;
  box-shadow: 0 10px 24px rgba(31, 111, 235, 0.18);
}
.pfa-plan-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  background: #1f6feb;
  border-radius: 999px;
  padding: 4px 10px;
}
.card { background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 16px; margin-bottom: 16px; }
.support-contact-mail {
  color: #1f4f8c;
  font-weight: 700;
  text-decoration: none;
}
.support-contact-mail:hover {
  text-decoration: underline;
}
.hidden { display: none !important; }
h1,h2,h3 { margin: 0 0 12px; }
.grid2, .grid4 { display: grid; gap: 12px; }
.grid2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.full-row { grid-column: 1 / -1; }
label { display: flex; flex-direction: column; gap: 6px; font-size: 14px; color: var(--muted); }
input, select, button { height: 38px; padding: 8px 10px; border: 1px solid var(--line); border-radius: 8px; font-size: 14px; }
button { background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal)); color: white; border-color: #128ea0; cursor: pointer; }
button:hover { filter: brightness(0.95); }
.update-pulse {
  animation: pulse-update 1.2s infinite;
  background: #b45309;
  border-color: #b45309;
}
@keyframes pulse-update {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(180,83,9,.45); }
  70% { transform: scale(1.03); box-shadow: 0 0 0 10px rgba(180,83,9,0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(180,83,9,0); }
}
.toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.active-year-warning {
  position: fixed;
  top: 84px;
  left: 10px;
  z-index: 40;
  max-width: 280px;
  border: 1px solid #ef4444;
  background: #fef2f2;
  color: #991b1b;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.35;
  box-shadow: 0 8px 20px rgba(127, 29, 29, 0.12);
}
.subscription-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  padding: 4px 10px;
  margin-left: 8px;
  font-size: 12px;
  font-weight: 700;
  background: #f8fafc;
  color: #0f172a;
}
.subscription-active {
  background: #dcfce7;
  border-color: #86efac;
  color: #166534;
}
.subscription-expiring {
  background: #fef3c7;
  border-color: #fcd34d;
  color: #92400e;
}
.subscription-grace {
  background: #ffedd5;
  border-color: #fdba74;
  color: #9a3412;
}
.subscription-expired {
  background: #fee2e2;
  border-color: #fca5a5;
  color: #991b1b;
}
.inline-form { display: flex; flex-wrap: wrap; gap: 10px; align-items: end; }
.msg { min-height: 22px; color: #b91c1c; }
.summary-grid { display: grid; gap: 8px; grid-template-columns: repeat(4, minmax(0,1fr)); }
.summary-item { background: #f8fafc; border: 1px solid var(--line); border-radius: 8px; padding: 10px; }
.summary-item-alert {
  border-color: #fca5a5;
  background: #fef2f2;
  color: #991b1b;
}
.summary-item-warning {
  border-color: #fcd34d;
  background: #fffbeb;
  color: #92400e;
}
.summary-actions { display: flex; justify-content: flex-end; gap: 8px; margin-bottom: 10px; }
.guide-box { background: #f8fafc; border: 1px solid var(--line); border-radius: 8px; padding: 12px; }
.guide-box p { margin: 0 0 6px; }
.doc-status {
  display: inline-flex;
  align-items: center;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  padding: 2px 9px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.doc-status-ok {
  background: #dcfce7;
  color: #166534;
  border-color: #86efac;
}
.doc-status-warn {
  background: #fffbeb;
  color: #92400e;
  border-color: #fcd34d;
}
.doc-status-na {
  background: #eef2ff;
  color: #1e3a8a;
  border-color: #c7d2fe;
}
.doc-status-error {
  background: #fee2e2;
  color: #991b1b;
  border-color: #fca5a5;
}
.radar-client-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.radar-client-head h3,
.radar-client-head p {
  margin-top: 0;
}
.radar-client-grid {
  display: grid;
  grid-template-columns: minmax(140px, 180px) repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.radar-client-score,
.radar-client-panel {
  border: 1px solid #dbe8f6;
  border-radius: 10px;
  background: #f8fbff;
  padding: 12px;
}
.radar-client-score {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 150px;
  color: #12315f;
}
.radar-client-score span,
.radar-client-score small {
  color: var(--muted);
  font-weight: 600;
}
.radar-client-score strong {
  display: block;
  margin: 4px 0;
  font-size: 42px;
  line-height: 1;
  color: #0f8b86;
}
.radar-client-panel h4 {
  margin: 0 0 8px;
  color: #12315f;
}
.radar-client-list {
  margin: 0;
  padding-left: 18px;
}
.radar-client-list li {
  margin-bottom: 6px;
  line-height: 1.4;
}
.radar-client-note {
  margin: 10px 0 0;
}
.radar-admin-actions {
  min-width: 260px;
}
.radar-admin-actions button {
  height: 32px;
  margin: 2px;
  padding: 5px 8px;
  font-size: 12px;
}
.bank-statement-selected td {
  background: #f0fdfa;
}
.oblio-imported-row td {
  background: #f7fee7;
}
.spv-received-imported-row td {
  background: #f0fdf4;
}
.doc-legal-link {
  color: #1f4f8c;
  text-decoration: none;
  font-weight: 600;
}
.doc-legal-link:hover {
  text-decoration: underline;
}
.tax-status-ok {
  display: inline-block;
  background: #dcfce7;
  color: #166534;
  border: 1px solid #86efac;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
}
.tax-status-pending {
  display: inline-block;
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fcd34d;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
}
.card h4 {
  margin: 14px 0 10px;
}
.month-card { background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 12px; margin-bottom: 14px; }
.month-head { display: flex; justify-content: space-between; gap: 8px; align-items: center; margin-bottom: 10px; }
.totals { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 10px; font-size: 13px; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 1100px; }
th, td { border: 1px solid var(--line); padding: 6px; font-size: 13px; text-align: left; }
th { background: #eff6ff; }
.num { text-align: right; }
tr.deductibility-row-50 td:nth-child(5),
tr.deductibility-row-50 td:nth-child(8),
tr.deductibility-row-50 td:nth-child(9) {
  background: #fff7ed;
}
tr.deductibility-row-0 td:nth-child(5),
tr.deductibility-row-0 td:nth-child(8),
tr.deductibility-row-0 td:nth-child(9) {
  background: #fef2f2;
}
.deductibility-chip {
  display: inline-flex;
  margin-left: 6px;
  padding: 1px 6px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid transparent;
}
.deductibility-chip-50 {
  background: #ffedd5;
  color: #9a3412;
  border-color: #fdba74;
}
.deductibility-chip-0 {
  background: #fee2e2;
  color: #991b1b;
  border-color: #fca5a5;
}
small.muted { color: var(--muted); }
.balance-normal { color: var(--txt); }
.balance-negative { color: #b91c1c; }
.balance-warning {
  margin: 0 0 10px;
  padding: 8px 10px;
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #991b1b;
  border-radius: 8px;
  font-size: 13px;
}

@media (max-width: 1024px) {
  .active-year-warning {
    left: 8px;
    right: 8px;
    top: 72px;
    max-width: none;
  }
  .grid4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .summary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .radar-client-grid { grid-template-columns: 1fr; }
  .pfa-pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .pfa-hero-login {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "illustration"
      "card";
    align-items: stretch;
  }
  .pfa-hero-login-card {
    max-width: none;
    justify-self: stretch;
  }
  .pfa-pricing { text-align: left; }
  .pfa-pricing-grid { grid-template-columns: 1fr; }
  .plan-choice-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .grid2, .grid4 { grid-template-columns: 1fr; }
  .summary-grid { grid-template-columns: 1fr; }
  .summary-actions { justify-content: stretch; }
  .summary-actions button { width: 100%; }
  .radar-client-head {
    flex-direction: column;
    align-items: stretch;
  }
  .radar-client-score {
    min-height: auto;
  }
  .visitor-pills { gap: 8px; }
  .visitor-pill { width: 100%; justify-content: space-between; }
  .anpc-badges img {
    width: 100%;
    max-width: 250px;
    height: auto;
  }
}


