/* ── CRÉDITO DE PIX — FUNIL CSS COMPARTILHADO ─────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0f172a;
  --navy-dark: #070f2b;
  --orange:    #ff5000;
  --orange-dark:#d94400;
  --yellow:    #ffcc00;
  --blue-700:  #ff5000;
  --blue-600:  #ea4900;
  --blue-500:  #ff661a;
  --cyan:      #ff5000;
  --cyan-light:#fff2eb;
  --white:     #ffffff;
  --gray-50:   #f8fafc;
  --gray-100:  #f1f5f9;
  --gray-200:  #e2e8f0;
  --gray-400:  #94a3b8;
  --gray-600:  #475569;
  --gray-800:  #1e293b;
  --green:     #16a34a;
  --red:       #dc2626;
  --radius:    14px;
  --radius-lg: 20px;
  --shadow:    0 2px 16px rgba(255,80,0,.15);
  --shadow-lg: 0 8px 32px rgba(255,80,0,.22);
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: #f1f5f9;
  color: var(--gray-800);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── WRAPPER ────────────────────────────────── */
.page-wrap {
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  background: white;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* ── TOP BAR / HEADER ───────────────────────── */
.top-bar {
  background: var(--navy);
  padding: 20px 20px 28px;
  position: relative;
}
.top-bar .logo-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.logo-bar svg { height: 36px; width: auto; }

/* Progress bar */
.progress-bar {
  height: 4px;
  background: rgba(255,255,255,.15);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-500), var(--cyan));
  border-radius: 4px;
  transition: width 0.5s ease;
}

/* Step indicator */
.step-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.step-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(6,182,212,.15);
  border: 1px solid rgba(6,182,212,.3);
  padding: 3px 10px;
  border-radius: 50px;
}

/* Header icon */
.header-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.header-icon svg { width: 24px; height: 24px; stroke: var(--cyan); fill: none; stroke-width: 2; }

.top-bar h1 {
  font-size: 1.55rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 6px;
}
.top-bar p {
  font-size: 0.85rem;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
}
.top-bar .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  margin-top: 12px;
}
.tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); }

/* ── CONTENT AREA ───────────────────────────── */
.content {
  flex: 1;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── CARDS ──────────────────────────────────── */
.card {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px;
  transition: all var(--transition);
}
.card:hover { border-color: var(--blue-500); box-shadow: var(--shadow); }
.card.selected {
  border-color: var(--blue-700);
  background: #eff6ff;
  box-shadow: 0 0 0 3px rgba(26,68,204,.08);
}

/* Option cards */
.option-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-align: left;
  width: 100%;
  font-family: 'Inter', sans-serif;
}
.option-card:hover { border-color: var(--blue-500); background: #f8faff; }
.option-card.selected {
  border-color: var(--blue-700);
  background: #eff6ff;
}

.option-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gray-100);
}
.option-icon svg { width: 20px; height: 20px; stroke: var(--blue-700); fill: none; stroke-width: 2; }
.option-card.selected .option-icon { background: #dbeafe; }

.option-text h4 { font-size: 0.95rem; font-weight: 700; color: var(--gray-800); margin-bottom: 2px; }
.option-text p  { font-size: 0.78rem; color: var(--gray-400); }

.option-radio {
  margin-left: auto;
  width: 20px; height: 20px; flex-shrink: 0;
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  transition: all var(--transition);
  position: relative;
}
.option-card.selected .option-radio {
  border-color: var(--blue-700);
  background: var(--blue-700);
}
.option-card.selected .option-radio::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 6px; height: 6px;
  background: white;
  border-radius: 50%;
}

/* 2-column option grid */
.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.option-grid .option-card {
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
  gap: 10px;
}
.option-grid .option-radio { margin-left: 0; margin-top: auto; }

/* ── SECTION LABEL ──────────────────────────── */
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue-700);
  margin-bottom: 10px;
}

/* ── INFO ROWS ──────────────────────────────── */
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}
.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-row-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 8px; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
}
.info-row-icon svg { width: 18px; height: 18px; stroke: var(--blue-700); fill: none; stroke-width: 2; }
.info-row-label { font-size: 0.72rem; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.info-row-value { font-size: 0.95rem; font-weight: 700; color: var(--gray-800); }

/* ── CHECK LIST ─────────────────────────────── */
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-200);
  transition: all 0.4s ease;
}
.check-item.done  { border-color: #bbf7d0; background: #f0fdf4; }
.check-item.active { border-color: var(--blue-500); background: #eff6ff; }
.check-item.pending { opacity: 0.45; }

.check-circle {
  width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.check-item.done .check-circle  { border-color: var(--green); background: var(--green); }
.check-item.active .check-circle { border-color: var(--blue-700); }
.check-circle svg { width: 13px; height: 13px; stroke: white; fill: none; stroke-width: 2.5; }
.check-item.active .check-circle svg { display: none; }

.check-spinner {
  width: 14px; height: 14px;
  border: 2px solid rgba(26,68,204,.2);
  border-top-color: var(--blue-700);
  border-radius: 50%;
  display: none;
  animation: spin 0.8s linear infinite;
}
.check-item.active .check-spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

.check-text h4 { font-size: 0.9rem; font-weight: 600; color: var(--gray-800); }
.check-text p  { font-size: 0.78rem; color: var(--gray-400); margin-top: 1px; }
.check-ok {
  margin-left: auto;
  font-size: 0.72rem; font-weight: 700;
  color: var(--green);
  background: #dcfce7; padding: 3px 8px; border-radius: 6px;
  display: none;
}
.check-item.done .check-ok { display: block; }

/* ── SUMMARY TABLE ──────────────────────────── */
.summary-table { border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--gray-200); }
.summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--gray-100);
}
.summary-row:last-child { border-bottom: none; }
.summary-row .label { font-size: 0.85rem; color: var(--gray-600); }
.summary-row .value { font-size: 0.9rem; font-weight: 700; color: var(--gray-800); }
.summary-row .value.blue { color: var(--blue-700); }
.summary-row .value.green { color: var(--green); }

/* ── INPUT ──────────────────────────────────── */
.input-wrap {
  position: relative;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  background: white;
  transition: border-color var(--transition);
}
.input-wrap:focus-within { border-color: var(--blue-700); box-shadow: 0 0 0 3px rgba(26,68,204,.08); }
.input-wrap.valid { border-color: var(--green); }
.input-icon { width: 20px; height: 20px; flex-shrink: 0; stroke: var(--gray-400); fill: none; stroke-width: 2; }
.input-wrap input {
  flex: 1; border: none; outline: none; font-size: 0.95rem;
  font-weight: 600; color: var(--gray-800); font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
}
.input-wrap input::placeholder { color: var(--gray-400); font-weight: 400; letter-spacing: 0; }
.input-check { width: 20px; height: 20px; stroke: var(--green); fill: none; stroke-width: 2.5; opacity: 0; transition: opacity 0.3s; }
.input-wrap.valid .input-check { opacity: 1; }
.input-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray-400); margin-bottom: 6px; }

/* ── SLIDER ─────────────────────────────────── */
.slider-section { padding: 4px 0; }
.slider-amount {
  font-size: 2.6rem; font-weight: 900; color: var(--navy);
  letter-spacing: -1.5px; text-align: center; margin-bottom: 16px;
}
.slider-amount sup { font-size: 45%; vertical-align: super; font-weight: 700; letter-spacing: 0; }

input[type="range"] {
  -webkit-appearance: none; width: 100%; height: 5px;
  background: var(--gray-200); border-radius: 50px; outline: none; cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  box-shadow: 0 2px 10px rgba(26,68,204,.4); cursor: pointer;
  transition: transform var(--transition);
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.slider-labels { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--gray-400); font-weight: 500; margin-top: 8px; }

/* Quick select chips */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.chip {
  padding: 7px 14px; border-radius: 50px;
  border: 1.5px solid var(--gray-200);
  background: white; color: var(--gray-600);
  font-size: 0.82rem; font-weight: 600;
  cursor: pointer; transition: all var(--transition);
  font-family: 'Inter', sans-serif;
}
.chip:hover { border-color: var(--blue-500); color: var(--blue-700); }
.chip.active { background: var(--navy); border-color: var(--navy); color: white; }

/* ── RESULT BOX ─────────────────────────────── */
.result-box {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 4px;
}
.result-box .rb-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.5); margin-bottom: 4px; }
.result-box .rb-amount { font-size: 2rem; font-weight: 900; color: white; letter-spacing: -1px; }
.result-box .rb-detail { font-size: 0.78rem; color: rgba(255,255,255,.55); margin-top: 2px; }
.result-box .rb-badge {
  background: linear-gradient(135deg, var(--blue-700), var(--cyan));
  color: white; font-size: 0.72rem; font-weight: 700;
  padding: 4px 10px; border-radius: 6px;
  display: inline-block; margin-top: 10px;
}
.result-info {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,.5);
}
.result-info svg { width: 14px; height: 14px; stroke: rgba(255,255,255,.4); fill:none; stroke-width:2; flex-shrink:0; }

/* ── BUTTONS ────────────────────────────────── */
.btn-primary {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 17px;
  background: linear-gradient(135deg, #ff5000 0%, #ff6e00 100%);
  color: white; font-size: 0.98rem; font-weight: 800;
  border-radius: 50px; border: none; cursor: pointer;
  box-shadow: 0 6px 20px rgba(255,80,0,.35);
  transition: all var(--transition); letter-spacing: 0.2px;
  font-family: 'Inter', sans-serif; text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,80,0,.48); background: linear-gradient(135deg, #ff5e00 0%, #ff7a1a 100%); }
.btn-primary:active { transform: translateY(0); }
.btn-primary svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 2.5; }
.btn-primary:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

.btn-secondary {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px; background: none; border: none;
  color: var(--gray-400); font-size: 0.85rem; font-weight: 500;
  cursor: pointer; font-family: 'Inter', sans-serif;
  transition: color var(--transition);
}
.btn-secondary:hover { color: var(--blue-700); }
.btn-secondary svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ── STICKY FOOTER ACTIONS ──────────────────── */
.sticky-actions {
  padding: 16px 20px 24px;
  background: white;
  border-top: 1px solid var(--gray-100);
  display: flex; flex-direction: column; gap: 8px;
}

/* ── TRUST ROW ──────────────────────────────── */
.trust-row {
  display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
  padding: 10px 0 2px;
}
.trust-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.73rem; font-weight: 600; color: var(--gray-400);
}
.trust-item svg { width: 13px; height: 13px; stroke: var(--gray-400); fill: none; stroke-width: 2; }

/* ── APPROVED BANNER ────────────────────────── */
.approved-banner {
  background: linear-gradient(135deg, var(--navy), #0f2a80);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
}
.approved-banner .ab-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: var(--cyan); font-size: 0.75rem; font-weight: 700;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 12px;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.approved-banner .ab-label { font-size: 0.72rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; font-weight: 600; }
.approved-banner .ab-amount { font-size: 2.4rem; font-weight: 900; color: white; letter-spacing: -1.5px; }
.approved-banner .ab-via { font-size: 0.8rem; color: rgba(255,255,255,.55); margin-top: 4px; }

/* ── INSTALLMENT GRID ───────────────────────── */
.installment-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.installment-card {
  background: white; border: 1.5px solid var(--gray-200);
  border-radius: 10px; padding: 12px 8px; text-align: center;
  cursor: pointer; transition: all var(--transition);
}
.installment-card:hover { border-color: var(--blue-500); }
.installment-card.highlight {
  background: var(--navy); border-color: var(--navy);
}
.installment-card .ic-n { font-size: 0.78rem; color: var(--gray-400); font-weight: 600; margin-bottom: 3px; }
.installment-card .ic-amount { font-size: 0.88rem; font-weight: 800; color: var(--gray-800); }
.installment-card .ic-total  { font-size: 0.68rem; color: var(--gray-400); margin-top: 2px; }
.installment-card.highlight .ic-n,
.installment-card.highlight .ic-amount,
.installment-card.highlight .ic-total { color: white; }

/* ── DATE GRID ──────────────────────────────── */
.date-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.date-card {
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  padding: 16px; text-align: center; cursor: pointer;
  transition: all var(--transition); background: white;
}
.date-card:hover { border-color: var(--blue-500); }
.date-card.selected { border-color: var(--blue-700); background: #eff6ff; }
.date-card .dc-num {
  font-size: 1.8rem; font-weight: 900; color: var(--navy);
  line-height: 1; margin-bottom: 6px;
}
.date-card.selected .dc-num { color: var(--blue-700); }
.date-card .dc-label { font-size: 0.8rem; font-weight: 700; color: var(--gray-800); margin-bottom: 2px; }
.date-card .dc-desc  { font-size: 0.73rem; color: var(--gray-400); }

/* ── NUMPAD ─────────────────────────────────── */
.numpad { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.numpad-key {
  background: #1e293b; border: none; border-radius: 12px;
  padding: 18px; text-align: center; cursor: pointer;
  transition: all var(--transition); font-family: 'Inter', sans-serif;
}
.numpad-key:hover { background: #2d3f5f; }
.numpad-key:active { transform: scale(0.95); }
.numpad-key .key-num { font-size: 1.4rem; font-weight: 700; color: white; line-height: 1; }
.numpad-key .key-sub { font-size: 0.6rem; font-weight: 600; color: rgba(255,255,255,.4); letter-spacing: 1px; margin-top: 2px; }
.numpad-key.action { background: var(--blue-700); }
.numpad-key.action svg { width: 22px; height: 22px; stroke: white; fill: none; stroke-width: 2; }

/* PIN dots */
.pin-display { display: flex; justify-content: center; gap: 14px; margin: 28px 0; }
.pin-dot {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3); background: transparent;
  transition: all 0.2s ease;
}
.pin-dot.filled { background: var(--cyan); border-color: var(--cyan); }

/* ── DASH CARD ──────────────────────────────── */
.dash-card {
  background: linear-gradient(135deg, #0f2a80, var(--navy));
  border-radius: var(--radius-lg); padding: 28px 24px;
  position: relative; overflow: hidden;
}
.dash-card::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(6,182,212,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.dash-card .dc-bank { font-size: 0.72rem; color: rgba(255,255,255,.5); margin-bottom: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.dash-card .dc-balance-label { font-size: 0.78rem; color: rgba(255,255,255,.5); margin-bottom: 4px; }
.dash-card .dc-balance { font-size: 2.2rem; font-weight: 900; color: white; letter-spacing: -1.5px; }
.dash-card .dc-status { font-size: 0.78rem; color: var(--cyan); font-weight: 600; margin-top: 4px; }
.dash-card .dc-footer { display: flex; justify-content: space-between; margin-top: 20px; }
.dash-card .dc-holder { font-size: 0.8rem; color: rgba(255,255,255,.6); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.dash-card .dc-date { font-size: 0.8rem; color: rgba(255,255,255,.5); }

/* Dash actions */
.dash-actions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.dash-action {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 14px 8px; border-radius: var(--radius);
  border: 1.5px solid var(--gray-200); background: white;
  cursor: pointer; transition: all var(--transition);
}
.dash-action:first-child { background: var(--navy); border-color: var(--navy); }
.dash-action:first-child span { color: white; }
.dash-action svg { width: 20px; height: 20px; stroke: var(--blue-700); fill: none; stroke-width: 2; }
.dash-action:first-child svg { stroke: white; }
.dash-action span { font-size: 0.72rem; font-weight: 700; color: var(--gray-600); }

/* ── LOADING OVERLAY ────────────────────────── */
.loading-header {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
  min-height: 220px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 40px 24px;
  position: relative; overflow: hidden;
}
.loading-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(6,182,212,.12) 0%, transparent 60%);
}

.loading-ring {
  width: 72px; height: 72px; border-radius: 50%;
  border: 4px solid rgba(255,255,255,.1);
  border-top-color: var(--cyan);
  animation: spin 1.2s linear infinite;
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.loading-ring-inner {
  position: absolute; inset: 6px;
  border: 3px solid rgba(255,255,255,.06);
  border-bottom-color: var(--blue-500);
  border-radius: 50%;
  animation: spin 0.8s linear infinite reverse;
}

.loading-header h2 { font-size: 1.3rem; font-weight: 800; color: white; margin-bottom: 6px; position: relative; z-index: 1; }
.loading-header p { font-size: 0.83rem; color: rgba(255,255,255,.55); position: relative; z-index: 1; }

.loading-progress {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 6px;
}
.loading-progress span { font-size: 0.78rem; font-weight: 600; }
.loading-progress .lp-label { color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.5px; }
.loading-progress .lp-pct { color: var(--blue-700); }

/* ── INFO CARD ──────────────────────────────── */
.info-card {
  border-radius: var(--radius); padding: 14px 16px;
  display: flex; align-items: flex-start; gap: 12px;
}
.info-card.blue { background: #eff6ff; border: 1px solid #bfdbfe; }
.info-card.amber { background: #fffbeb; border: 1px solid #fde68a; }
.info-card.red   { background: #fef2f2; border: 1px solid #fecaca; }
.info-card.green { background: #f0fdf4; border: 1px solid #bbf7d0; }
.info-card svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; fill: none; stroke-width: 2; }
.info-card.blue svg { stroke: var(--blue-700); }
.info-card.amber svg { stroke: #d97706; }
.info-card.red svg { stroke: var(--red); }
.info-card.green svg { stroke: var(--green); }
.info-card p { font-size: 0.83rem; color: var(--gray-700); line-height: 1.55; }
.info-card strong { color: var(--gray-800); }

/* ── NAV BACK ───────────────────────────────── */
.nav-back {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none; cursor: pointer;
  font-size: 0.83rem; font-weight: 600; color: rgba(255,255,255,.6);
  font-family: 'Inter', sans-serif; padding: 0;
  transition: color var(--transition);
}
.nav-back:hover { color: white; }
.nav-back svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* ── SECURITY BADGES ────────────────────────── */
.security-row {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
  padding: 10px 0;
}
.security-badge {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.7rem; font-weight: 600; color: var(--gray-400);
}
.security-badge svg { width: 12px; height: 12px; stroke: var(--gray-400); fill: none; stroke-width: 2; }

/* ── TIMER ──────────────────────────────────── */
.timer-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: #fbbf24; font-size: 0.8rem; font-weight: 700;
  padding: 6px 16px; border-radius: 50px;
}
.timer-badge svg { width: 14px; height: 14px; stroke: #fbbf24; fill: none; stroke-width: 2; }

/* ── RESPONSIVE ─────────────────────────────── */
@media (min-width: 480px) {
  .page-wrap { box-shadow: 0 0 60px rgba(0,0,0,.1); }
}
