/* chytryadmin.cz — shared styles */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --blue:        #2563eb;
  --blue-dark:   #1d4ed8;
  --blue-light:  #eff6ff;
  --blue-mid:    #bfdbfe;
  --green:       #16a34a;
  --green-dark:  #15803d;
  --green-light: #f0fdf4;
  --green-mid:   #bbf7d0;
  --orange:      #ea580c;
  --red:         #dc2626;
  --red-light:   #fef2f2;
  --yellow:      #d97706;
  --yellow-light:#fffbeb;
  --gray-50:     #f9fafb;
  --gray-100:    #f3f4f6;
  --gray-200:    #e5e7eb;
  --gray-300:    #d1d5db;
  --gray-400:    #9ca3af;
  --gray-500:    #6b7280;
  --gray-600:    #4b5563;
  --gray-700:    #374151;
  --gray-800:    #1f2937;
  --gray-900:    #111827;
  --white:       #ffffff;
  --promo-bg:    #f0f9ff;
  --promo-border:#bae6fd;
  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow:      0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.05);
  --shadow-lg:   0 10px 30px rgba(0,0,0,.10), 0 4px 10px rgba(0,0,0,.06);
  --transition:  .2s ease;
}

html { font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--gray-50);
  color: var(--gray-800);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Layout ─────────────────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-sm {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-md {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Site Header ─────────────────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.site-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: -.02em;
}
.site-logo span { color: var(--gray-700); font-weight: 400; }
.header-tagline {
  font-size: .78rem;
  color: var(--gray-500);
  display: none;
}
@media (min-width: 640px) { .header-tagline { display: block; } }

/* ── Site Footer ─────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 28px 0;
  margin-top: 60px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: .82rem;
  color: var(--gray-400);
}
.footer-links {
  display: flex;
  gap: 20px;
  font-size: .82rem;
}
.footer-links a { color: var(--gray-400); }
.footer-links a:hover { color: var(--gray-600); text-decoration: none; }

/* ── Breadcrumb ─────────────────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .84rem;
  color: var(--gray-500);
  padding: 16px 0 0;
}
.breadcrumb a {
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 4px;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: var(--gray-300); }
.breadcrumb .current { color: var(--gray-700); font-weight: 500; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  text-align: center;
  padding: 60px 0 48px;
}
.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -.03em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.hero p {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Tool Grid ─────────────────────────────────────────────────────────── */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  padding-bottom: 48px;
}
.tool-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.tool-card:hover {
  border-color: var(--blue-mid);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  text-decoration: none;
}
.tool-card-icon {
  font-size: 2.2rem;
  line-height: 1;
}
.tool-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
}
.tool-card-desc {
  font-size: .875rem;
  color: var(--gray-500);
  line-height: 1.5;
  flex: 1;
}
.tool-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: 4px;
}
.tool-card:hover .tool-card-btn { text-decoration: underline; }

/* ── Promo Box ─────────────────────────────────────────────────────────── */
.promo-box {
  background: var(--promo-bg);
  border: 1px solid var(--promo-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 8px 0 48px;
  flex-wrap: wrap;
}
.promo-box-text h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.promo-box-text p {
  font-size: .875rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.promo-box-text p strong { color: var(--blue); }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: .9rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 2px 8px rgba(37,99,235,.3);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: 0 4px 14px rgba(37,99,235,.4);
  color: var(--white);
}
.btn-secondary {
  background: transparent;
  color: var(--gray-700);
  border-color: var(--gray-300);
}
.btn-secondary:hover {
  background: var(--gray-50);
  border-color: var(--gray-400);
  color: var(--gray-800);
}
.btn-success {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 2px 8px rgba(22,163,74,.25);
}
.btn-success:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 4px 14px rgba(22,163,74,.35);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--blue);
  border-color: transparent;
  padding-left: 8px;
  padding-right: 8px;
}
.btn-ghost:hover { background: var(--blue-light); }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-sm { padding: 7px 14px; font-size: .8rem; }
.btn-full { width: 100%; }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ── Cards / Panels ──────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.card-sm { padding: 20px 24px; }
.card + .card { margin-top: 20px; }

/* ── Page Header (tools) ─────────────────────────────────────────────────── */
.page-header {
  padding: 32px 0 28px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 32px;
}
.page-header h1 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -.02em;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.page-header p {
  font-size: .9rem;
  color: var(--gray-500);
}

/* ── Wizard ──────────────────────────────────────────────────────────────── */
.wizard-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 24px 0 48px;
}

/* Progress */
.wizard-progress {
  margin-bottom: 32px;
}
.wizard-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: var(--gray-500);
  margin-bottom: 8px;
}
.wizard-progress-bar-wrap {
  height: 6px;
  background: var(--gray-200);
  border-radius: 99px;
  overflow: hidden;
}
.wizard-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), #60a5fa);
  border-radius: 99px;
  transition: width .4s cubic-bezier(.4,0,.2,1);
}

/* Step */
.wizard-step { display: none; }
.wizard-step.active { display: block; }

.wizard-question {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 20px;
  line-height: 1.4;
}
.wizard-question .q-num {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 50%;
  font-size: .8rem;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  margin-right: 8px;
  flex-shrink: 0;
}

/* Choice cards */
.choice-grid {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}
.choice-grid.two-col { grid-template-columns: 1fr 1fr; }
.choice-card {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 16px 20px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  font-size: .95rem;
  font-weight: 500;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  user-select: none;
}
.choice-card:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  color: var(--blue);
}
.choice-card.selected {
  border-color: var(--blue);
  background: var(--blue-light);
  color: var(--blue);
}
.choice-card .choice-icon { font-size: 1.3rem; flex-shrink: 0; }
.choice-card .choice-label { font-weight: 600; }
.choice-card .choice-sub {
  font-size: .8rem;
  font-weight: 400;
  color: var(--gray-500);
  display: block;
  margin-top: 1px;
}
.choice-card.selected .choice-sub { color: var(--blue); opacity: .8; }

/* Wizard nav */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

/* ── Forms ──────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-group label .req { color: var(--red); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 10px 14px;
  font-size: .9rem;
  font-family: inherit;
  color: var(--gray-800);
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-hint {
  font-size: .78rem;
  color: var(--gray-400);
  margin-top: 4px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* Checkbox */
.check-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: var(--gray-700);
  cursor: pointer;
}
.check-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--blue);
  cursor: pointer;
}

/* Honeypot */
.hp-field { display: none !important; }

/* ── Result Box ──────────────────────────────────────────────────────────── */
.result-box {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.result-box-header {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.result-box-title {
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-700);
}
.result-box-actions { display: flex; gap: 8px; }
.result-box-content {
  padding: 24px;
  font-size: .9rem;
  line-height: 1.8;
  color: var(--gray-700);
  white-space: pre-wrap;
  max-height: 480px;
  overflow-y: auto;
}
.result-box-content.html-result { white-space: normal; }
.result-box-content h2 { font-size: 1rem; color: var(--gray-900); margin: 20px 0 8px; }
.result-box-content h3 { font-size: .9rem; color: var(--gray-800); margin: 16px 0 6px; }
.result-box-content p { margin-bottom: 10px; }
.result-box-content ul, .result-box-content ol { margin: 8px 0 10px 20px; }

/* ── Alerts ──────────────────────────────────────────────────────────────── */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: .875rem;
  line-height: 1.6;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.alert-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.alert-info { background: var(--blue-light); color: #1e40af; border: 1px solid var(--blue-mid); }
.alert-success { background: var(--green-light); color: #14532d; border: 1px solid var(--green-mid); }
.alert-warning { background: var(--yellow-light); color: #78350f; border: 1px solid #fde68a; }
.alert-error { background: var(--red-light); color: #991b1b; border: 1px solid #fecaca; }

/* ── Score / Status ──────────────────────────────────────────────────────── */
.score-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin: 0 auto 20px;
}
.score-circle .score-num { font-size: 1.8rem; line-height: 1; }
.score-circle .score-label { font-size: .7rem; font-weight: 600; margin-top: 2px; opacity: .8; }
.score-green { background: var(--green-light); color: var(--green); border: 3px solid var(--green); }
.score-yellow { background: var(--yellow-light); color: var(--yellow); border: 3px solid var(--yellow); }
.score-red { background: var(--red-light); color: var(--red); border: 3px solid var(--red); }

/* ── Lead capture form ──────────────────────────────────────────────────── */
.lead-form-wrap {
  background: var(--gray-50);
  border: 1px dashed var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 24px;
}
.lead-form-wrap h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--gray-800);
}
.lead-form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.lead-form-row .form-control { flex: 1; min-width: 200px; }
.lead-sent {
  background: var(--green-light);
  border: 1px solid var(--green-mid);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--green-dark);
  font-size: .875rem;
  font-weight: 600;
  text-align: center;
  display: none;
}

/* ── Spinner / Loading ──────────────────────────────────────────────────── */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  vertical-align: middle;
}
.spinner-blue {
  border-color: rgba(37,99,235,.2);
  border-top-color: var(--blue);
}
@keyframes spin { to { transform: rotate(360deg); } }

.loading-dots::after {
  content: '';
  animation: dots 1.4s steps(4, end) infinite;
}
@keyframes dots {
  0%,20% { content: ''; }
  40% { content: '.'; }
  60% { content: '..'; }
  80%,100% { content: '...'; }
}

/* ── Code / Textarea readonly ────────────────────────────────────────────── */
.code-area {
  width: 100%;
  font-family: 'Courier New', monospace;
  font-size: .8rem;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 14px;
  color: var(--gray-700);
  resize: vertical;
  min-height: 160px;
  outline: none;
}
.code-area:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }

/* ── Stats row ──────────────────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}
.stat-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}
.stat-box .stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-box .stat-lbl {
  font-size: .75rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.stat-box.highlight { background: var(--green-light); border-color: var(--green-mid); }
.stat-box.highlight .stat-val { color: var(--green); }
.stat-box.highlight .stat-lbl { color: var(--green); opacity: .8; }

/* ── Tags / Badges ──────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 99px;
  font-size: .75rem;
  font-weight: 600;
}
.badge-green { background: var(--green-light); color: var(--green); }
.badge-yellow { background: var(--yellow-light); color: var(--yellow); }
.badge-red { background: var(--red-light); color: var(--red); }
.badge-blue { background: var(--blue-light); color: var(--blue); }
.badge-gray { background: var(--gray-100); color: var(--gray-500); }

/* ── Divider ─────────────────────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 24px 0;
}

/* ── IČO Result ─────────────────────────────────────────────────────────── */
.ico-result {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 24px;
  display: none;
}
.ico-result.visible { display: block; }
.ico-result-header {
  background: var(--blue-light);
  padding: 16px 24px;
  border-bottom: 1px solid var(--blue-mid);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ico-result-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
}
.ico-result-body { padding: 20px 24px; }
.ico-table { width: 100%; border-collapse: collapse; }
.ico-table tr + tr td { border-top: 1px solid var(--gray-100); }
.ico-table td {
  padding: 9px 0;
  font-size: .875rem;
  vertical-align: top;
}
.ico-table td:first-child {
  width: 160px;
  font-weight: 600;
  color: var(--gray-500);
  padding-right: 16px;
}

/* ── QR Result ──────────────────────────────────────────────────────────── */
.qr-result {
  text-align: center;
  padding: 28px;
}
.qr-result img {
  max-width: 220px;
  border: 8px solid var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.qr-spd {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: monospace;
  font-size: .78rem;
  color: var(--gray-600);
  word-break: break-all;
  text-align: left;
  margin-top: 16px;
}

/* ── Checklist ──────────────────────────────────────────────────────────── */
.checklist { list-style: none; padding: 0; margin: 12px 0; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .875rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
  line-height: 1.5;
}
.checklist li:last-child { border-bottom: none; }
.checklist .ci { flex-shrink: 0; margin-top: 1px; }
.checklist .ci-ok { color: var(--green); }
.checklist .ci-warn { color: var(--yellow); }
.checklist .ci-err { color: var(--red); }

/* ── Risk Levels ──────────────────────────────────────────────────────────── */
.risk-level {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
}
.risk-minimal { background: var(--green-light); border: 1.5px solid var(--green-mid); }
.risk-limited { background: var(--yellow-light); border: 1.5px solid #fde68a; }
.risk-high { background: var(--red-light); border: 1.5px solid #fecaca; }
.risk-icon { font-size: 2.2rem; flex-shrink: 0; }
.risk-text h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.risk-minimal .risk-text h3 { color: var(--green-dark); }
.risk-limited .risk-text h3 { color: var(--yellow); }
.risk-high .risk-text h3 { color: var(--red); }
.risk-text p { font-size: .875rem; color: var(--gray-600); }

/* ── CSS Cleaner Dropzone ─────────────────────────────────────────────────── */
.dropzone {
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  background: var(--gray-50);
  position: relative;
}
.dropzone:hover, .dropzone.drag-over {
  border-color: var(--blue);
  background: var(--blue-light);
}
.dropzone.has-file {
  border-color: var(--green);
  background: var(--green-light);
}
.dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.drop-icon { font-size: 2.4rem; margin-bottom: 10px; }
.drop-title { font-size: .95rem; font-weight: 600; color: var(--gray-700); margin-bottom: 4px; }
.drop-sub { font-size: .82rem; color: var(--gray-400); }
.drop-filename { font-size: .875rem; font-weight: 600; color: var(--green); margin-top: 8px; display: none; }
.dropzone.has-file .drop-filename { display: block; }
.dropzone.has-file .drop-default { display: none; }

.or-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: var(--gray-400);
  font-size: .8rem;
  font-weight: 500;
}
.or-divider::before, .or-divider::after {
  content: '';
  flex: 1;
  border-top: 1px solid var(--gray-200);
}

/* ── Utility ─────────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-sm { font-size: .875rem; }
.text-xs { font-size: .78rem; }
.text-muted { color: var(--gray-500); }
.text-success { color: var(--green); }
.text-danger { color: var(--red); }
.font-bold { font-weight: 700; }
.mt-4 { margin-top: 4px; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.hidden { display: none !important; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.w-full { width: 100%; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .tools-grid { grid-template-columns: 1fr; }
  .choice-grid.two-col { grid-template-columns: 1fr; }
  .promo-box { flex-direction: column; text-align: center; }
  .card { padding: 20px 18px; }
  .wizard-wrap { padding: 16px 0 40px; }
  .hero { padding: 40px 0 32px; }
  .hero h1 { font-size: 1.6rem; }
  .page-header { padding: 24px 0 20px; margin-bottom: 24px; }
  .form-row { grid-template-columns: 1fr; }
}
