/* =============================================
   SIMULADOR PÚBLICO — CSS
   ============================================= */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #1a5276;
  --primary-light: #2980b9;
  --primary-dark: #154360;
  --accent: #27ae60;
  --accent-hover: #219a52;
  --danger: #e74c3c;
  --warning: #f39c12;
  --bg: #f0f4f8;
  --card-bg: #ffffff;
  --text: #2d3436;
  --text-muted: #636e72;
  --border: #dfe6e9;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --transition: 0.25s ease;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

/* ── Header ── */
.sim-header {
  background: linear-gradient(90deg, #1DB4FF 0%, #0a0a14 20%, #7B18DD 100%);
  color: #fff;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  position: relative;
}

.sim-header-content {
  flex: 1;
  text-align: center;
}

.sim-header-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.85;
}

.sim-header h1 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.sim-header p {
  font-size: 0.82rem;
  opacity: 0.7;
}

/* ── Container ── */
.sim-container {
  max-width: 680px;
  margin: -0.5rem auto 2rem;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

/* ── Card ── */
.sim-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.sim-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sim-card-title .icon { font-size: 1.2rem; }

/* ── Form ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select {
  padding: 0.7rem 0.9rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(41,128,185,0.15);
}

.form-group input.error,
.form-group select.error {
  border-color: var(--danger);
}

.form-group .field-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.form-group .field-error {
  font-size: 0.75rem;
  color: var(--danger);
  margin-top: 0.25rem;
  display: none;
}

.form-group .field-error.visible {
  display: block;
}

/* ── Date input ── */
.date-input-wrap {
  position: relative;
}

.date-input-wrap input[type="date"] {
  padding: 0.7rem 0.9rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
  font-family: inherit;
}

.date-input-wrap input[type="date"]:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(41,128,185,0.15);
}

.date-input-wrap .date-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  pointer-events: none;
  opacity: 0.5;
}

/* ── Prazo component ── */
.prazo-component {
  background: #f8f9fb;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.2rem 0.8rem;
}

.prazo-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.prazo-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.prazo-unit {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.prazo-meses {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.prazo-slider-wrap {
  position: relative;
  padding: 0 2px;
}

.prazo-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary));
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

.prazo-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.15s;
}

.prazo-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.prazo-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  cursor: pointer;
}

.prazo-ticks {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0 0;
}

.prazo-tick {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-align: center;
  min-width: 20px;
  cursor: pointer;
  transition: color 0.15s;
}

.prazo-tick:hover {
  color: var(--primary);
}

.prazo-tick.active {
  color: var(--primary);
  font-weight: 700;
}

.prazo-manual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.8rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.prazo-manual label {
  font-size: 0.82rem !important;
  text-transform: none !important;
  font-weight: 500 !important;
  color: var(--text-muted) !important;
  margin-bottom: 0 !important;
}

.prazo-input {
  width: 60px;
  padding: 0.35rem 0.5rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  color: var(--primary);
  outline: none;
  transition: border-color var(--transition);
}

.prazo-input:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 2px rgba(41,128,185,0.12);
}

/* ── Tax selector ── */
.tax-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.tax-option {
  position: relative;
  cursor: pointer;
}

.tax-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tax-option .tax-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1rem 0.8rem;
  text-align: center;
  transition: all var(--transition);
  background: #fff;
  position: relative;
  overflow: hidden;
}

.tax-option .tax-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.tax-option input:checked + .tax-card {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(41,128,185,0.06), rgba(41,128,185,0.12));
  box-shadow: 0 0 0 3px rgba(41,128,185,0.15);
}

.tax-option input:checked + .tax-card::after {
  content: "✓";
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.tax-card .tax-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 0.3rem;
}

.tax-card .tax-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.tax-card .tax-suffix {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.tax-card .tax-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  padding-top: 0.4rem;
  border-top: 1px solid var(--border);
  line-height: 1.3;
}

/* ── Entry info bar ── */
.entry-info {
  background: #eaf2f8;
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--primary);
}

.entry-info.full-width {
  grid-column: 1 / -1;
}

.entry-info .entry-label { font-weight: 600; }

/* ── Button ── */
.btn-primary {
  display: block;
  width: 100%;
  padding: 0.9rem;
  margin-top: 1.5rem;
  background: #26539C;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  background: #1e4480;
  box-shadow: 0 4px 16px rgba(38,83,156,0.35);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-contract {
  display: block;
  width: 100%;
  padding: 0.9rem;
  margin-top: 1rem;
  background: #CBDB2A;
  color: #1a1a1a;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  text-align: center;
}

.btn-contract:hover {
  background: #b8c826;
  box-shadow: 0 4px 16px rgba(203,219,42,0.4);
  transform: translateY(-1px);
}

.btn-secondary {
  display: block;
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.6rem;
  background: transparent;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-secondary:hover {
  border-color: var(--primary-light);
  background: rgba(41,128,185,0.04);
}

/* ── Spinner ── */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 0.5rem;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Errors alert ── */
.alert-errors {
  background: #fdf0ef;
  border: 1px solid #f5c6cb;
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  margin-bottom: 1.2rem;
  display: none;
}

.alert-errors.visible { display: block; }

.alert-errors .alert-title {
  font-weight: 700;
  color: var(--danger);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.alert-errors ul {
  list-style: none;
  padding: 0;
}

.alert-errors li {
  font-size: 0.85rem;
  color: #721c24;
  padding: 0.15rem 0;
}

.alert-errors li::before {
  content: "• ";
  color: var(--danger);
}

/* =============================================
   RESULTADO
   ============================================= */

#result-section {
  display: none;
}

#result-section.visible {
  display: block;
  animation: fadeSlideIn 0.5s ease;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Main result highlight ── */
.result-highlight {
  background: #26539C;
  color: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.result-highlight .result-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.88;
  margin-bottom: 0.3rem;
}

.result-highlight .result-value {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
}

.result-highlight .result-suffix {
  font-size: 0.85rem;
  opacity: 0.75;
  margin-top: 0.3rem;
}

/* ── Result details grid ── */
.result-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.result-item {
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary-light);
}

.result-item .ri-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 0.2rem;
}

.result-item .ri-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.result-item .ri-detail {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ── Comparativo ── */
.comparativo-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
}

.comparativo-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
}

.comp-table th {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-align: left;
  padding: 0.5rem 0.6rem;
  border-bottom: 2px solid var(--border);
}

.comp-table td {
  padding: 0.65rem 0.6rem;
  font-size: 0.9rem;
  border-bottom: 1px solid #f0f0f0;
}

.comp-table tr:last-child td { border-bottom: none; }

.comp-table .highlight-row {
  background: rgba(41,128,185,0.06);
  font-weight: 700;
}

.comp-table .highlight-row td:first-child::before {
  content: "★ ";
  color: var(--warning);
}

.comp-diff {
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  padding: 0.15rem 0.5rem;
}

.comp-diff.positive {
  background: #e8f8ef;
  color: var(--accent);
}

.comp-diff.negative {
  background: #fdf0ef;
  color: var(--danger);
}

.comp-diff.neutral {
  background: #eaf2f8;
  color: var(--primary);
}

/* ── Chart Evolução da Dívida ── */
.chart-evolucao-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem 2rem 1.2rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.chart-evolucao-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.chart-evolucao-wrap {
  position: relative;
  width: 100%;
  cursor: crosshair;
}

.chart-evolucao-wrap canvas {
  width: 100%;
  height: auto;
  display: block;
}

.chart-tooltip {
  display: none;
  position: absolute;
  pointer-events: none;
  background: rgba(16, 15, 44, 0.92);
  color: #fff;
  border-radius: 8px;
  padding: 0.6rem 0.85rem;
  font-size: 0.78rem;
  line-height: 1.55;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  z-index: 10;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(29, 180, 255, 0.3);
  transition: opacity 0.15s;
}

.chart-tooltip.visible {
  display: block;
}

.chart-tooltip .tt-title {
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 0.25rem;
  color: #1DB4FF;
}

.chart-tooltip .tt-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.chart-tooltip .tt-label {
  color: rgba(255,255,255,0.7);
}

.chart-tooltip .tt-value {
  font-weight: 700;
}

.chart-tooltip .tt-pago {
  color: #27ae60;
}

.chart-tooltip .tt-restante {
  color: #1DB4FF;
}

.chart-evolucao-legend {
  display: flex;
  justify-content: center;
  margin-top: 0.8rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--border);
}

.chart-legend-item {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.chart-legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: linear-gradient(90deg, #1DB4FF, #7B18DD);
}

/* ── Info Importante ── */
.info-importante {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.5rem;
}

.info-importante-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #e65100;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.info-importante p {
  font-size: 0.82rem;
  color: #5d4037;
  line-height: 1.6;
}

/* ── Breakdown ── */
.breakdown-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
}

.breakdown-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breakdown-rows {}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 0.88rem;
}

.breakdown-row:last-child { border-bottom: none; }

.breakdown-row .br-label { color: var(--text-muted); }

.breakdown-row .br-value { font-weight: 600; color: var(--text); }

.breakdown-row.total {
  border-top: 2px solid var(--primary-light);
  margin-top: 0.3rem;
  padding-top: 0.7rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.breakdown-row.total .br-label { color: var(--primary); }
.breakdown-row.total .br-value { color: var(--primary); }

/* ── Disclaimer ── */
.disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  padding: 1rem 1.5rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* ── Footer ── */
.sim-footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* =============================================
   CTA - DOWNLOAD PDF + LEAD CAPTURE
   ============================================= */

.pdf-cta-card {
  background: linear-gradient(135deg, #f0f7ff 0%, #f8f0ff 100%);
  border: 2px solid var(--primary-light);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.pdf-cta-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pdf-cta-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.pdf-cta-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.pdf-cta-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pdf-lead-form .pdf-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.pdf-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 0.3rem;
}

.pdf-field input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.pdf-field input:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(41,128,185,0.15);
}

.pdf-field input.error {
  border-color: var(--danger);
}

.btn-pdf-download {
  display: block;
  width: 100%;
  padding: 0.9rem;
  background: #26539C;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-pdf-download:hover {
  background: #1e4480;
  box-shadow: 0 4px 16px rgba(38,83,156,0.35);
  transform: translateY(-1px);
}

.btn-pdf-download:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.pdf-btn-icon { margin-right: 0.4rem; }

.pdf-lgpd {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.8rem;
  line-height: 1.4;
}

.pdf-success {
  text-align: center;
  padding: 1rem 0;
}

.pdf-success-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.8rem;
}

.pdf-success p {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.pdf-success .btn-pdf-download {
  max-width: 300px;
  margin: 0 auto;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 640px) {
  .sim-header { padding: 0.75rem 1rem; }
  .sim-header h1 { font-size: 1rem; }
  .sim-header-logo { height: 22px; right: 0.75rem; }

  .sim-container { padding: 0 0.75rem; margin-top: -1rem; }

  .sim-card { padding: 1.5rem; }

  .form-grid { grid-template-columns: 1fr; gap: 1rem; }

  .tax-options { grid-template-columns: 1fr; }

  .prazo-number { font-size: 1.8rem; }
  .prazo-component { padding: 1rem; }

  .result-highlight .result-value { font-size: 1.8rem; }

  .result-details { grid-template-columns: 1fr; }

  .comparativo-card, .breakdown-card { padding: 1.2rem; }

  .comp-table th, .comp-table td { padding: 0.5rem 0.4rem; font-size: 0.82rem; }

  .entry-info { flex-direction: column; gap: 0.3rem; text-align: center; }

  .pdf-cta-card { padding: 1.5rem; }
  .pdf-lead-form .pdf-form-grid { grid-template-columns: 1fr; }
}
