/* =============================================
   LABEL CHECKER — Style
   Coerente con aggiornamentonormativo.eliopalumbieri.it
   ============================================= */

/* Self-hosted fonts (GDPR — no Google Fonts CDN) */
@font-face { font-family: 'Poppins'; font-weight: 300; font-style: normal; font-display: swap; src: url('fonts/poppins-300.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-weight: 400; font-style: normal; font-display: swap; src: url('fonts/poppins-400.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-weight: 500; font-style: normal; font-display: swap; src: url('fonts/poppins-500.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-weight: 600; font-style: normal; font-display: swap; src: url('fonts/poppins-600.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-weight: 700; font-style: normal; font-display: swap; src: url('fonts/poppins-700.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-weight: 600; font-style: normal; font-display: swap; src: url('fonts/playfair-600.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-weight: 700; font-style: normal; font-display: swap; src: url('fonts/playfair-700.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-weight: 400; font-style: normal; font-display: swap; src: url('fonts/dmsans-400.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-weight: 500; font-style: normal; font-display: swap; src: url('fonts/dmsans-500.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-weight: 600; font-style: normal; font-display: swap; src: url('fonts/dmsans-600.woff2') format('woff2'); }

:root {
  --accent: #0693e3;
  --accent-dark: #0578c5;
  --accent-light: #e8f4ff;
  --accent-mid: #b3deff;
  --text: #32373c;
  --muted: #69727d;
  --border: #d9e4ef;
  --bg: #f0f4f8;
  --white: #ffffff;
  --hdr-dark: #0f1f35;
  --hdr-mid: #1a3050;
  --success: #4CAF50;
  --success-bg: #e8f5e9;
  --warning: #FF9800;
  --warning-bg: #fff3e0;
  --error: #F44336;
  --error-bg: #fdecea;
  --info: #2196F3;
  --info-bg: #e3f2fd;
  --na-color: #78909C;
  --na-bg: #eceff1;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 2px 12px rgba(0,0,0,.07);
  --shadow-lg: 0 4px 24px rgba(11,24,41,.08);
}

[hidden] { display: none !important; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); text-decoration: underline; }
h1, h2, h3 { color: var(--hdr-dark); line-height: 1.3; }

/* HEADER */
.hdr {
  background: linear-gradient(135deg, var(--hdr-dark) 0%, var(--hdr-mid) 100%);
  box-shadow: 0 2px 16px rgba(0,0,0,.35);
  position: sticky;
  top: 0;
  z-index: 100;
}
.hdr-top {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  padding: 6px 32px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hdr-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  gap: 16px;
}
.logo-wrap { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 38px; width: auto; }
.hdr-right { display: flex; align-items: center; gap: 12px; }
.badge-status {
  font-size: 11px;
  color: var(--success);
  background: rgba(76,175,80,.12);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.badge-status::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  display: inline-block;
  animation: pulse-live 1.5s ease-in-out infinite;
  box-shadow: 0 0 4px rgba(76,175,80,.5);
}
@keyframes pulse-live {
  0%, 100% { opacity: 1; box-shadow: 0 0 4px rgba(76,175,80,.5); }
  50% { opacity: .4; box-shadow: 0 0 8px rgba(76,175,80,.8); }
}
.btn-contact {
  font-size: 11px;
  color: #fff;
  background: rgba(255,255,255,.1);
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.15);
  transition: background .2s;
}
.btn-contact:hover { background: rgba(255,255,255,.18); text-decoration: none; color: #fff; }

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background .2s, transform .1s;
}
.btn-primary:hover { background: var(--accent-dark); text-decoration: none; color: #fff; }
.btn-primary:active { transform: scale(.98); }
.btn-primary:disabled { opacity: .45; cursor: not-allowed; }
.btn-primary.btn-full { width: 100%; text-align: center; }

.btn-secondary {
  display: inline-block;
  background: var(--white);
  color: var(--accent);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 24px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.btn-secondary:hover { border-color: var(--accent); background: var(--accent-light); text-decoration: none; }
.btn-sm { font-size: 12px; padding: 6px 14px; }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--hdr-dark) 0%, var(--hdr-mid) 60%, #1e3a5f 100%);
  padding: 72px 32px 64px;
  text-align: center;
  color: #fff;
}
.hero-content { max-width: 700px; margin: 0 auto; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,.75);
  margin-bottom: 24px;
  font-weight: 300;
}
.hero-countries { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.country-tag {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
}

/* QUOTE */
.quote-section { padding: 40px 32px 0; max-width: 750px; margin: 0 auto; }
.quote-block {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--hdr-dark);
  text-align: center;
  line-height: 1.7;
  border-left: none;
  padding: 0;
  position: relative;
}
.quote-block cite {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-top: 12px;
}

/* HOW IT WORKS */
.how-it-works { padding: 56px 32px; max-width: 1000px; margin: 0 auto; text-align: center; }
.how-it-works h2 { font-size: 24px; font-weight: 600; margin-bottom: 36px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.step-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.step-num {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-light);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon { font-size: 36px; margin-bottom: 12px; }
.step-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--muted); }

/* INFO SERVICE */
.info-service { padding: 0 32px 48px; max-width: 700px; margin: 0 auto; }
.info-card {
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  border-radius: var(--radius);
  padding: 28px 32px;
  text-align: center;
}
.info-card h3 { font-size: 17px; margin-bottom: 10px; }
.info-card p { font-size: 13px; color: var(--muted); margin-bottom: 12px; }

/* UPDATES SECTION */
.updates-section { padding: 0 32px 48px; max-width: 750px; margin: 0 auto; }
.updates-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.updates-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.updates-subtitle {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.updates-date {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.updates-date strong { color: var(--text); }
.updates-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.updates-list li {
  font-size: 13px;
  color: var(--text);
  line-height: 1.6;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.updates-list li:last-child { border-bottom: none; }
.update-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .5px;
  padding: 2px 8px;
  border-radius: 3px;
  margin-right: 6px;
  vertical-align: middle;
}
.update-tag--eu { background: #e3f2fd; color: #1565c0; }
.update-tag--usa { background: #fce4ec; color: #c62828; }
.update-tag--ca { background: #fff3e0; color: #e65100; }
.update-tag--br { background: #e8f5e9; color: #2e7d32; }
.updates-cta {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-top: 8px;
}
.updates-cta p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.6;
}

/* LOGIN */
.login-section { padding: 48px 32px 64px; display: flex; justify-content: center; }
.login-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-lg);
}
.login-card h2 { font-family: 'DM Sans', sans-serif; font-size: 22px; font-weight: 600; margin-bottom: 8px; }
.login-desc { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.input-wrap { margin-bottom: 16px; }
.input-wrap label { display: block; font-size: 12px; font-weight: 500; color: var(--muted); margin-bottom: 6px; }
.input-wrap input, .select-wrap select {
  width: 100%;
  padding: 11px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.input-wrap input:focus, .select-wrap select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(6,147,227,.1);
}
.login-error {
  font-size: 12px;
  color: var(--error);
  background: var(--error-bg);
  padding: 8px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

/* DASHBOARD */
.dash-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  max-width: 900px;
  margin: 0 auto;
}
.dash-toolbar h2 { font-size: 22px; font-weight: 600; margin-bottom: 0; }
.dash-welcome { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* UPLOAD */
.upload-section { max-width: 900px; margin: 0 auto; padding: 0 32px 32px; }
.upload-area {
  background: var(--white);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 48px 32px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.upload-area:hover, .upload-area.dragover { border-color: var(--accent); background: var(--accent-light); }
.upload-icon { font-size: 48px; margin-bottom: 12px; opacity: .6; }
.upload-text { font-size: 15px; color: var(--text); margin-bottom: 6px; }
.upload-link { color: var(--accent); font-weight: 500; cursor: pointer; }
.upload-link:hover { text-decoration: underline; }
.upload-hint { font-size: 12px; color: var(--muted); }
.file-info {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-top: 12px;
}
.file-icon { font-size: 20px; }
.file-name { flex: 1; font-size: 13px; font-weight: 500; color: var(--text); }
.file-remove {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--muted);
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}
.file-remove:hover { color: var(--error); }
.upload-controls { display: flex; align-items: flex-end; gap: 16px; margin-top: 20px; }
.select-wrap { flex: 1; }
.select-wrap label { display: block; font-size: 12px; font-weight: 500; color: var(--muted); margin-bottom: 6px; }

/* LOADER */
.loader { text-align: center; padding: 64px 32px; max-width: 900px; margin: 0 auto; }
.loader-illustration { margin-bottom: 24px; }
.lawyer-svg { width: 120px; height: 120px; }
.magnifier-anim {
  animation: magnify 2.5s ease-in-out infinite;
  transform-origin: 44px 48px;
}
@keyframes magnify {
  0%, 100% { transform: translate(0, 0) scale(1); }
  30% { transform: translate(8px, -4px) scale(1.05); }
  60% { transform: translate(-6px, 2px) scale(0.97); }
}
.loader-msg {
  font-size: 15px;
  color: var(--accent-dark);
  font-weight: 500;
  min-height: 24px;
  transition: opacity .3s;
}
.loader-msg.fade-out { opacity: 0; }
.loader-bar {
  width: 200px;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin: 16px auto 0;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  width: 30%;
  background: var(--accent);
  border-radius: 2px;
  animation: bar-slide 1.8s ease-in-out infinite;
}
@keyframes bar-slide {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(350%); }
  100% { transform: translateX(-100%); }
}

/* RESULTS */
.results-section { max-width: 900px; margin: 0 auto; padding: 0 32px 48px; }
.disclaimer-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fffde7;
  border: 1px solid #fff9c4;
  border-left: 4px solid var(--warning);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 24px;
}
.disclaimer-icon { font-size: 22px; flex-shrink: 0; line-height: 1.4; }
.disclaimer-box p { font-size: 13px; color: var(--text); line-height: 1.6; }
.results-header {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.8;
}
.results-header strong { font-weight: 600; }
.results-summary { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 10px; }
.summary-badge { font-size: 13px; font-weight: 600; padding: 3px 10px; border-radius: 4px; }
.summary-badge--green  { background: var(--success-bg); color: var(--success); }
.summary-badge--yellow { background: var(--warning-bg); color: var(--warning); }
.summary-badge--red    { background: var(--error-bg);   color: var(--error); }
.summary-badge--blue   { background: var(--info-bg);    color: var(--info); }
.summary-badge--gray   { background: var(--na-bg);      color: var(--na-color); }

/* FINDINGS */
.findings-group { margin-bottom: 24px; }
.findings-title { font-size: 16px; font-weight: 600; margin-bottom: 12px; padding-left: 8px; }
.findings-title--red    { border-left: 4px solid var(--error);   padding-left: 12px; color: var(--error); }
.findings-title--yellow { border-left: 4px solid var(--warning); padding-left: 12px; color: #e68a00; }
.findings-title--green  { border-left: 4px solid var(--success); padding-left: 12px; color: var(--success); }
.findings-title--blue   { border-left: 4px solid var(--info);    padding-left: 12px; color: var(--info); }
.findings-title--gray   { border-left: 4px solid var(--na-color); padding-left: 12px; color: var(--na-color); }
.finding-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 10px;
  border-left: 4px solid var(--border);
  transition: box-shadow .2s;
}
.finding-card:hover { box-shadow: var(--shadow); }
.finding-card--red    { border-left-color: var(--error); }
.finding-card--yellow { border-left-color: var(--warning); }
.finding-card--green  { border-left-color: var(--success); }
.finding-card--blue   { border-left-color: var(--info); }
.finding-card--gray   { border-left-color: var(--na-color); }
.finding-header { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.finding-status { font-size: 16px; }
.finding-title { font-size: 14px; font-weight: 600; color: var(--text); }
.finding-detail { font-size: 13px; color: var(--text); margin-bottom: 8px; line-height: 1.6; }
.finding-ref { font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.finding-action { font-size: 13px; color: var(--accent-dark); font-weight: 500; }
.finding-support {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.finding-support-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-light);
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid var(--accent-mid);
  transition: background .2s, color .2s;
  text-decoration: none;
}
.finding-support-link:hover {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
}

/* CTA BOX */
.cta-box {
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-top: 32px;
  text-align: center;
}
.cta-title { font-size: 16px; font-weight: 600; margin-bottom: 12px; color: var(--hdr-dark); }
.cta-box p { font-size: 14px; margin-bottom: 6px; }
.cta-reminder { margin-top: 16px; font-size: 13px; color: var(--muted); font-style: italic; }
.new-check-wrap { text-align: center; margin-top: 24px; }

/* EXTRA MESSAGES */
.extra-warning {
  background: var(--error-bg);
  border: 1px solid #ef9a9a;
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--error);
  font-weight: 500;
  text-align: center;
}
.all-green-msg {
  background: var(--success-bg);
  border: 1px solid #a5d6a7;
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  margin-bottom: 20px;
  font-size: 13px;
  color: #2e7d32;
  text-align: center;
}

/* FOOTER */
.ftr {
  background: var(--hdr-dark);
  padding: 24px 32px;
  text-align: center;
  margin-top: auto;
}
.ftr-content p { font-size: 12px; color: rgba(255,255,255,.55); margin-bottom: 4px; }
.ftr-links a { color: var(--accent); font-size: 12px; }

/* MODAL */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15,31,53,.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 8px 40px rgba(0,0,0,.2);
  position: relative;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover { color: var(--text); }
.modal-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.modal-desc { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.modal-card textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  color: var(--text);
  resize: vertical;
  transition: border-color .2s, box-shadow .2s;
}
.modal-card textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(6,147,227,.1);
}
.support-success {
  text-align: center;
  padding: 20px 0 0;
  font-size: 14px;
  color: var(--success);
  font-weight: 500;
}

/* PRIVACY CONSENT */
.privacy-wrap { margin: 12px 0 4px; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
}
.checkbox-label a { color: var(--accent); text-decoration: underline; }

/* PRIVACY PAGE */
.privacy-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}
.privacy-container h1 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.privacy-subtitle {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 36px;
}
.privacy-section {
  margin-bottom: 28px;
}
.privacy-section h2 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.privacy-section h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin: 12px 0 6px;
}
.privacy-section p,
.privacy-section li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.privacy-section ul {
  padding-left: 20px;
  margin: 8px 0;
}
.privacy-section a { color: var(--accent); }
.privacy-update {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 40px;
}
.ftr-sub {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  margin: 4px 0 8px;
}
.ftr-sub a { color: rgba(255,255,255,.55); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hdr-top { padding: 6px 16px; }
  .hdr-main { padding: 12px 16px; flex-wrap: wrap; gap: 10px; }
  .logo-wrap { flex-direction: column; gap: 2px; }
  .hero { padding: 48px 16px 40px; }
  .hero h1 { font-size: 28px; }
  .hero-sub { font-size: 14px; }
  .steps-grid { grid-template-columns: 1fr; gap: 12px; }
  .how-it-works, .info-service, .login-section, .upload-section, .results-section, .dash-toolbar, .updates-section { padding-left: 16px; padding-right: 16px; }
  .upload-controls { flex-direction: column; align-items: stretch; }
  .upload-area { padding: 32px 16px; }
  .disclaimer-box { flex-direction: column; gap: 8px; }
  .cta-box { padding: 20px 16px; }
  .ftr { padding: 20px 16px; }
}
