/* ── Variables ────────────────────────────────────────────────────────────── */
:root {
  --navy: #1A3A5C;
  --navy-dark: #0F2540;
  --navy-light: #2C5282;
  --gold: #C9A84C;
  --gold-light: #F0D080;
  --green: #28A745;
  --green-bg: #D4EDDA;
  --yellow: #FFC107;
  --yellow-bg: #FFF3CD;
  --red: #DC3545;
  --red-bg: #F8D7DA;
  --blue: #007BFF;
  --blue-bg: #CCE5FF;
  --gray-100: #F8F9FA;
  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-500: #ADB5BD;
  --gray-600: #6C757D;
  --gray-800: #343A40;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(26,58,92,0.08);
  --shadow-md: 0 8px 32px rgba(26,58,92,0.12);
  --shadow-lg: 0 20px 60px rgba(26,58,92,0.16);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
}

/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: #F0F4F8;
  color: var(--gray-800);
  min-height: 100vh;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ───────────────────────────────────────────────────────────────── */
.header {
  background: var(--navy-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold), #E8B84B);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon {
  font-size: 18px;
  color: var(--navy-dark);
  font-weight: 700;
}

.logo-name {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--white);
  display: block;
  line-height: 1.1;
}

.logo-sub {
  font-size: 11px;
  color: var(--gold-light);
  opacity: 0.8;
  letter-spacing: 0.5px;
}

.badge-ia {
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  position: relative;
  padding: 60px 0 50px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(0,123,255,0.06) 0%, transparent 60%);
}

.hero .container { position: relative; }

.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Bancos strip ─────────────────────────────────────────────────────────── */
.bancos-strip {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 12px 0;
}

.bancos-strip .container {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.bancos-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.bancos-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.banco-chip {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.1);
}

.banco-chip--soft {
  background: rgba(201,168,76,0.15);
  color: var(--gold-light);
  border-color: rgba(201,168,76,0.25);
}

/* ── Main ─────────────────────────────────────────────────────────────────── */
.main {
  padding: 40px 0 60px;
}

/* ── Card Upload ──────────────────────────────────────────────────────────── */
.card-upload {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  margin-bottom: 40px;
}

/* ── Steps Header ─────────────────────────────────────────────────────────── */
.steps-header {
  display: flex;
  align-items: center;
  margin-bottom: 36px;
}

.step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.step.active .step-num {
  background: var(--navy);
  color: var(--white);
}

.step.active {
  color: var(--navy);
}

.step.done .step-num {
  background: var(--green);
  color: var(--white);
}

.step.done .step-num::after {
  content: '✓';
}

.step-line {
  flex: 1;
  height: 1px;
  background: var(--gray-200);
  margin: 0 16px;
}

/* ── Empresa Form ─────────────────────────────────────────────────────────── */
.empresa-form {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 24px;
}

.empresa-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 16px;
}

.empresa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 768px) {
  .empresa-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .empresa-grid { grid-template-columns: 1fr; }
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.field-group label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.field-group input {
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 13px;
  font-family: inherit;
  color: var(--gray-800);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.field-group input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,58,92,0.1);
}

.field-group input::placeholder {
  color: var(--gray-500);
  font-size: 12px;
}

.req {
  color: var(--red);
  font-weight: 700;
}

.empresa-hint {
  margin-top: 12px;
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ── Upload Zones ─────────────────────────────────────────────────────────── */
.uploads-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

@media (max-width: 680px) {
  .uploads-grid { grid-template-columns: 1fr; }
}

.upload-zone {
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  background: var(--gray-100);
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.upload-zone:hover {
  border-color: var(--navy-light);
  background: #EBF2FA;
}

.upload-zone.drag-over {
  border-color: var(--navy);
  background: #DCE9F5;
  transform: scale(1.01);
}

.upload-zone.has-file {
  border-color: var(--green);
  border-style: solid;
  background: #F0FBF2;
}

.upload-icon {
  font-size: 36px;
  line-height: 1;
}

.upload-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
}

.upload-desc {
  font-size: 13px;
  color: var(--gray-600);
}

.btn-upload {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}

.btn-upload:hover { background: var(--navy-light); }

.upload-hint {
  font-size: 12px;
  color: var(--gray-500);
}

/* File preview */
.file-preview {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--green);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  width: 100%;
  margin-top: 8px;
}

.file-icon { font-size: 18px; }

.file-name {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-800);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}

.btn-remove {
  background: none;
  border: none;
  color: var(--gray-500);
  cursor: pointer;
  font-size: 14px;
  padding: 2px 6px;
  border-radius: 4px;
  transition: all 0.15s;
}

.btn-remove:hover { background: var(--red-bg); color: var(--red); }

/* ── Alerts ───────────────────────────────────────────────────────────────── */
.alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 16px;
}

.alert-error {
  background: var(--red-bg);
  color: #721C24;
  border: 1px solid #F5C6CB;
}

/* ── Form Actions ─────────────────────────────────────────────────────────── */
.form-actions {
  text-align: center;
  padding-top: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  border: none;
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s;
  box-shadow: 0 4px 15px rgba(26,58,92,0.35);
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26,58,92,0.45);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-arrow {
  font-size: 18px;
  transition: transform 0.2s;
}

.btn-primary:hover:not(:disabled) .btn-arrow {
  transform: translateX(4px);
}

.form-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--gray-500);
}

/* ── Progress Section ─────────────────────────────────────────────────────── */
.progress-section {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 20px 0;
}

@media (max-width: 560px) {
  .progress-section { flex-direction: column; gap: 24px; }
}

.progress-animation {
  flex-shrink: 0;
}

.progress-ring {
  position: relative;
  width: 100px;
  height: 100px;
}

.progress-ring svg {
  width: 100px;
  height: 100px;
  transform: rotate(-90deg);
}

.progress-track {
  fill: none;
  stroke: var(--gray-200);
  stroke-width: 6;
}

.progress-fill {
  fill: none;
  stroke: var(--navy);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 201;
  stroke-dashoffset: 201;
  transition: stroke-dashoffset 0.5s ease;
}

.progress-pct {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}

.progress-info { flex: 1; }

.progress-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 20px;
}

.progress-steps-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pstep {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-500);
  transition: color 0.3s;
}

.pstep.active { color: var(--navy); font-weight: 500; }
.pstep.done { color: var(--green); }

.pstep-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  flex-shrink: 0;
  transition: background 0.3s;
}

.pstep.active .pstep-dot {
  background: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,58,92,0.2);
  animation: pulse 1.5s infinite;
}

.pstep.done .pstep-dot { background: var(--green); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(26,58,92,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(26,58,92,0.1); }
}

/* ── Results Section ──────────────────────────────────────────────────────── */
.results-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.results-check {
  width: 44px;
  height: 44px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.results-title {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  color: var(--gray-800);
}

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

@media (max-width: 680px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.stat-card {
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.8;
  line-height: 1.3;
}

/* Diferencia banner */
.diferencia-banner {
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.diferencia-label {
  font-size: 14px;
  font-weight: 600;
}

.diferencia-valor {
  font-size: 22px;
  font-weight: 700;
}

/* Results actions */
.results-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn-download {
  background: linear-gradient(135deg, #1D7A3A, var(--green));
  color: white;
  border: none;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  box-shadow: 0 4px 15px rgba(40,167,69,0.35);
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(40,167,69,0.45);
}

.btn-secondary {
  background: white;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-secondary:hover {
  background: var(--navy);
  color: white;
}

/* Sheets legend */
.sheets-legend {
  border-top: 1px solid var(--gray-200);
  padding-top: 20px;
}

.legend-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.legend-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-700);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── Features grid ────────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
}

.feature-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
  font-weight: 700;
  color: var(--navy);
}

.feature-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  padding: 24px 0;
  text-align: center;
}

.footer p {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}

/* ── Mejoras adicionales ─────────────────────────────────────────────────── */
.field-select {
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 13px;
  font-family: inherit;
  color: var(--gray-800);
  cursor: pointer;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}

.field-select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,58,92,0.1);
}

.ruc-feedback {
  font-size: 11px;
  font-weight: 500;
  margin-top: 3px;
  display: block;
  min-height: 16px;
  transition: all 0.2s;
}

.ruc-feedback.ok    { color: var(--green); }
.ruc-feedback.error { color: var(--red);   }

/* Saldo cuadra banner en resultados */
.saldo-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 500;
}
.saldo-check.ok    { background: var(--green-bg);  color: #155724; border: 1px solid #C3E6CB; }
.saldo-check.warn  { background: var(--yellow-bg); color: #856404; border: 1px solid #FFEEBA; }

.nav-link-hist {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  transition: all 0.2s;
  margin-right: 6px;
}
.nav-link-hist:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* ── Panel de Recomendaciones IA ─────────────────────────────────────────── */
.rec-panel {
  background: #fff;
  border: 1.5px solid #C9A84C40;
  border-radius: var(--radius);
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(201,168,76,0.12);
}

.rec-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: linear-gradient(135deg, #0F2540, #1A3A5C);
  gap: 16px;
  flex-wrap: wrap;
}

.rec-header-left { display: flex; flex-direction: column; gap: 4px; }

.rec-ia-badge {
  display: inline-block;
  background: rgba(201,168,76,0.25);
  color: #F0D080;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 12px;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  width: fit-content;
}

.rec-titulo {
  font-family: 'DM Serif Display', serif;
  font-size: 17px;
  color: #fff;
}

.rec-puntaje {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 10px;
  min-width: 140px;
}

.rec-puntaje-emoji { font-size: 24px; line-height: 1; }
.rec-puntaje-val   { font-size: 26px; font-weight: 800; line-height: 1; }
.rec-puntaje-val span { font-size: 14px; font-weight: 400; opacity: 0.7; }
.rec-puntaje-label { font-size: 11px; font-weight: 500; opacity: 0.85; margin-top: 2px; }

.rec-resumen {
  padding: 16px 22px;
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.7;
  background: #FAFBFC;
  border-bottom: 1px solid var(--gray-200);
}

.rec-seccion { padding: 16px 22px; border-bottom: 1px solid var(--gray-200); }
.rec-seccion:last-of-type { border-bottom: none; }

.rec-seccion-titulo {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
  margin-bottom: 10px;
}

/* Alertas */
.rec-alerta {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 6px;
  font-size: 12px;
}
.rec-alerta:last-child { margin-bottom: 0; }
.rec-alerta-icono { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.rec-alerta strong { font-size: 12px; display: block; margin-bottom: 2px; }
.rec-alerta span   { color: var(--gray-600); }

/* Plan de acción */
.rec-plan { display: flex; flex-direction: column; gap: 8px; }

.rec-plan-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  background: var(--gray-100);
  border-radius: 8px;
}

.rec-plan-num {
  width: 26px;
  height: 26px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.rec-plan-body { flex: 1; }
.rec-plan-accion { font-size: 12px; font-weight: 500; color: var(--gray-800); margin-bottom: 3px; }
.rec-plan-meta   { font-size: 11px; color: var(--gray-500); }
.rec-plan-plazo  { font-weight: 600; }

/* Riesgos */
.rec-riesgo {
  background: #FFF5F5;
  border-left: 3px solid var(--red);
  padding: 8px 12px;
  border-radius: 0 6px 6px 0;
  font-size: 12px;
  color: #721C24;
  margin-bottom: 6px;
}
.rec-riesgo:last-child { margin-bottom: 0; }

/* Tendencias */
.rec-tendencia {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: italic;
  background: var(--gray-100);
  padding: 10px 12px;
  border-radius: 6px;
}

.rec-disclaimer {
  padding: 10px 22px 14px;
  font-size: 10px;
  color: var(--gray-500);
  text-align: center;
  font-style: italic;
  background: #FAFBFC;
}
