/* ─────────────────────────────────────────────
   Lohnblick – Design System
   Mobile-first, clean, focused
───────────────────────────────────────────── */
:root {
  --blue:        #1a56db;
  --blue-dark:   #1140b0;
  --blue-light:  #eff4ff;
  --green:       #057a55;
  --green-light: #f0fdf4;
  --red:         #c81e1e;
  --red-light:   #fff5f5;
  --amber:       #d97706;
  --amber-light: #fffbeb;
  --gray-50:     #f9fafb;
  --gray-100:    #f3f4f6;
  --gray-200:    #e5e7eb;
  --gray-400:    #9ca3af;
  --gray-500:    #6b7280;
  --gray-700:    #374151;
  --gray-900:    #111827;
  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.07), 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 12px 32px rgba(0,0,0,.10), 0 4px 8px rgba(0,0,0,.06);
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff;
  color: var(--gray-900);
  line-height: 1.6;
  margin: 0;
}

h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.25; }

/* ── Navbar ── */
.navbar {
  background: #fff !important;
  border-bottom: 1px solid var(--gray-200);
  padding: .75rem 0;
  position: sticky;
  top: 0;
  z-index: 1030;
}

.navbar-brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue) !important;
  display: flex;
  align-items: center;
  gap: .45rem;
  text-decoration: none;
}

.navbar-brand .brand-icon {
  width: 32px;
  height: 32px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .85rem;
  flex-shrink: 0;
}

.nav-link {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-700) !important;
  padding: .4rem .75rem !important;
  border-radius: var(--radius-sm);
  transition: background .15s, color .15s;
}
.nav-link:hover { background: var(--gray-100); color: var(--gray-900) !important; }

.auth-login-link {
  color: var(--blue) !important;
  font-weight: 600;
}

.auth-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  vertical-align: -3px;
  overflow: hidden;
}

.auth-avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auth-email {
  color: var(--gray-500);
  font-size: .78rem;
  max-width: 210px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropdown-menu {
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  border-radius: var(--radius-sm);
  padding: .4rem;
  min-width: 130px;
}
.dropdown-item {
  border-radius: 6px;
  font-size: .88rem;
  padding: .45rem .75rem;
  font-weight: 500;
}
.dropdown-item:hover { background: var(--blue-light); color: var(--blue); }

/* ── Flash alerts ── */
.flash-container { padding: .75rem 0 0; }
.alert {
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-size: .9rem;
  padding: .75rem 1rem;
}
.alert-info    { background: var(--blue-light);  border-color: #c7d7fe; color: #1e429f; }
.alert-success { background: var(--green-light); border-color: #a7f3d0; color: var(--green); }
.alert-danger  { background: var(--red-light);   border-color: #fecaca; color: var(--red); }
.alert-warning { background: var(--amber-light); border-color: #fcd34d; color: var(--amber); }

/* ── Hero / Upload section ── */
.hero-section {
  background: linear-gradient(160deg, var(--blue) 0%, #1140b0 100%);
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: #fff;
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  border-radius: 100px;
  padding: .3rem .9rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: .75rem;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  max-width: 420px;
  margin-bottom: 0;
  line-height: 1.6;
}

/* ── Upload Card ── */
.upload-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.upload-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .35rem;
}

.upload-card-subtitle {
  font-size: .87rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

.upload-drop-zone {
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  background: var(--gray-50);
}

.upload-drop-zone:hover,
.upload-drop-zone.drag-over {
  border-color: var(--blue);
  background: var(--blue-light);
}

.upload-drop-zone .drop-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--blue);
  font-size: 1.4rem;
  transition: transform .2s;
}

.upload-drop-zone:hover .drop-icon { transform: translateY(-2px); }

.drop-label {
  font-size: .95rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: .3rem;
}

.drop-hint {
  font-size: .82rem;
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.btn-select {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: .55rem 1.25rem;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, transform .15s;
}

.btn-select:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* ── File preview chip ── */
.file-chip {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--green-light);
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
}

.file-chip-icon {
  color: var(--green);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.file-chip-name {
  font-weight: 600;
  font-size: .9rem;
  color: var(--gray-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}

.file-chip-size {
  font-size: .8rem;
  color: var(--gray-500);
}

.file-chip-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-shrink: 0;
}

.btn-chip {
  background: none;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: .25rem .55rem;
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--gray-700);
  transition: background .15s;
}

.btn-chip:hover { background: var(--gray-100); }

/* ── CTA button ── */
.btn-cta {
  width: 100%;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: .9rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s, transform .15s, box-shadow .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: 1rem;
}

.btn-cta:hover:not(:disabled) {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26,86,219,.35);
}

.btn-cta:disabled {
  background: var(--gray-200);
  color: var(--gray-400);
  cursor: not-allowed;
}

/* ── Trust badges ── */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.25rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  color: var(--gray-500);
  font-weight: 500;
}

.trust-badge i { color: var(--green); font-size: .7rem; }

/* ── Steps section ── */
.steps-section {
  padding: 4rem 0;
  background: #fff;
}

.steps-section .section-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: .5rem;
}

.steps-section .section-sub {
  color: var(--gray-500);
  font-size: .95rem;
  margin-bottom: 2.5rem;
}

.step-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: box-shadow .2s, transform .2s;
  position: relative;
}

.step-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
}

.step-number.n1 { background: var(--blue); }
.step-number.n2 { background: #7c3aed; }
.step-number.n3 { background: var(--green); }

.step-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .4rem;
  color: var(--gray-900);
}

.step-desc {
  font-size: .88rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}

/* ── Loading modal ── */
.loading-modal-content {
  border: none;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
}

.spinner-ring {
  width: 56px;
  height: 56px;
  border: 4px solid var(--gray-200);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1.25rem;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loading-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .35rem;
}

.loading-text {
  font-size: .88rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.loading-progress {
  background: var(--gray-200);
  border-radius: 100px;
  height: 5px;
  overflow: hidden;
}

.loading-progress-bar {
  height: 100%;
  background: var(--blue);
  border-radius: 100px;
  transition: width .6s ease;
}

/* ── Analysis page ── */
.analysis-hero {
  background: linear-gradient(160deg, var(--blue) 0%, #1140b0 100%);
  padding: 3rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.analysis-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 50px;
  background: var(--gray-50);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.analysis-hero-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: .4rem;
}

.analysis-hero-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: .5rem;
}

.analysis-hero-sub {
  font-size: .95rem;
  color: rgba(255,255,255,.75);
}

.salary-pill {
  display: inline-flex;
  flex-direction: column;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  padding: 1.1rem 1.5rem;
  text-align: center;
  min-width: 140px;
}

.salary-pill-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: .3rem;
}

.salary-pill-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.salary-pill-value.net { color: #6ee7b7; }

/* ── Analysis content ── */
.analysis-body {
  background: var(--gray-50);
  padding: 2.5rem 0 4rem;
}

.analysis-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  overflow: hidden;
}

.analysis-card-header {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--gray-100);
  cursor: pointer;
  user-select: none;
}

.analysis-card-header h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
  flex: 1;
}

.card-header-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
}

.icon-blue   { background: var(--blue-light); color: var(--blue); }
.icon-green  { background: var(--green-light); color: var(--green); }
.icon-red    { background: var(--red-light); color: var(--red); }
.icon-amber  { background: var(--amber-light); color: var(--amber); }
.icon-purple { background: #f5f3ff; color: #7c3aed; }

.chevron {
  color: var(--gray-400);
  font-size: .8rem;
  transition: transform .2s;
}

.analysis-card-header.collapsed .chevron { transform: rotate(-90deg); }

.analysis-card-body {
  padding: 1.25rem 1.5rem;
}

/* Summary alert */
.summary-text {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--blue-light);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.25rem;
  margin: 0;
}

/* Info grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: .75rem;
}

.info-item {
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
}

.info-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: .25rem;
}

.info-value {
  font-size: .95rem;
  font-weight: 600;
  color: var(--gray-900);
}

/* Deductions list */
.deduction-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .9rem;
}

.deduction-item:last-child { border-bottom: none; }

.deduction-name { color: var(--gray-700); }
.deduction-amount { font-weight: 700; color: var(--red); }

/* Recommendation items */
.rec-item {
  display: flex;
  gap: .75rem;
  padding: .6rem 0;
  font-size: .9rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  align-items: flex-start;
}

.rec-item:last-child { border-bottom: none; }

.rec-bullet {
  width: 22px;
  height: 22px;
  background: var(--amber-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: .65rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

/* Analysis text */
.analysis-text {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--gray-700);
}

/* ── Feedback ── */
.feedback-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  margin-top: 1.25rem;
}

.rating-stars {
  display: flex;
  gap: .35rem;
}

.rating-star {
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--gray-200);
  transition: color .15s, transform .15s;
  line-height: 1;
}

.rating-star:hover,
.rating-star.active { color: #f59e0b; transform: scale(1.1); }

.rating-input { display: none; }

/* ── Action bar ── */
.action-bar {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.btn-action {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border-radius: 9px;
  padding: .7rem 1.4rem;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .15s;
}

.btn-action-primary {
  background: var(--blue);
  color: #fff;
}
.btn-action-primary:hover { background: var(--blue-dark); color: #fff; }

.btn-action-outline {
  background: #fff;
  color: var(--gray-700);
  border: 1.5px solid var(--gray-200);
}
.btn-action-outline:hover { background: var(--gray-50); border-color: var(--gray-400); }

/* ── Footer ── */
footer {
  background: var(--gray-900) !important;
  padding: 2rem 0;
}

footer .foot-brand {
  font-weight: 700;
  color: #fff;
  font-size: .95rem;
  margin-bottom: .25rem;
}

footer .foot-sub {
  font-size: .82rem;
  color: var(--gray-400);
  margin: 0;
}

footer a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: .85rem;
  transition: color .15s;
}
footer a:hover { color: #fff; }

/* ── Analysis two-column layout ── */
.analysis-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.hero-pills { display: flex; gap: .75rem; flex-wrap: wrap; }

.analysis-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 1.5rem;
  align-items: start;
}

.analysis-col { min-width: 0; }

/* ── Chat panel ── */
.chat-panel {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  height: calc(100vh - 120px);
  min-height: 540px;
  max-height: 860px;
  position: sticky;
  top: 76px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .9rem 1.1rem;
  border-bottom: 1px solid var(--gray-100);
  flex-shrink: 0;
}

.chat-avatar {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #1a56db, #7c3aed);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.chat-title  { font-weight: 700; font-size: .88rem; color: var(--gray-900); margin: 0; }
.chat-subtitle { font-size: .74rem; color: var(--gray-500); margin: 0; }

.chat-status {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  color: var(--gray-500);
  font-weight: 500;
  flex-shrink: 0;
}

.status-dot {
  width: 7px; height: 7px;
  background: #057a55;
  border-radius: 50%;
  display: inline-block;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: .9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  scroll-behavior: smooth;
}

.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 4px; }

.chat-msg { display: flex; align-items: flex-start; gap: .5rem; }
.chat-msg.user { justify-content: flex-end; }

.msg-avatar {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, #1a56db, #7c3aed);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.msg-bubble {
  max-width: 82%;
  background: var(--gray-100);
  color: var(--gray-900);
  border-radius: 4px 14px 14px 14px;
  padding: .6rem .85rem;
  font-size: .84rem;
  line-height: 1.6;
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
}

.user-bubble {
  background: var(--blue);
  color: #fff;
  border-radius: 14px 14px 4px 14px;
}

.typing-dots { display: inline-flex; gap: 3px; align-items: center; }
.typing-dots span {
  width: 5px; height: 5px;
  background: var(--gray-400);
  border-radius: 50%;
  animation: typingBounce .9s infinite ease-in-out;
}
.typing-dots span:nth-child(2) { animation-delay: .15s; }
.typing-dots span:nth-child(3) { animation-delay: .3s; }

@keyframes typingBounce {
  0%,80%,100% { transform: translateY(0); opacity: .5; }
  40% { transform: translateY(-5px); opacity: 1; }
}

.chat-suggestions {
  padding: .5rem .9rem;
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--gray-100);
  flex-shrink: 0;
}

.chat-chip {
  background: var(--blue-light);
  color: var(--blue);
  border: 1px solid #c7d7fe;
  border-radius: 100px;
  padding: .28rem .7rem;
  font-size: .74rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
}
.chat-chip:hover { background: #dbeafe; }

.chat-input-row {
  padding: .75rem 1rem;
  border-top: 1px solid var(--gray-200);
  display: flex;
  gap: .5rem;
  align-items: flex-end;
  flex-shrink: 0;
}

.chat-input {
  flex: 1;
  border: 1.5px solid var(--gray-200);
  border-radius: 9px;
  padding: .55rem .85rem;
  font-size: .85rem;
  font-family: inherit;
  resize: none;
  outline: none;
  line-height: 1.5;
  color: var(--gray-900);
  transition: border-color .15s;
  min-height: 38px;
  max-height: 110px;
  overflow-y: auto;
}
.chat-input:focus { border-color: var(--blue); }

.chat-send {
  width: 38px; height: 38px;
  background: var(--gray-200);
  color: var(--gray-400);
  border: none;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  cursor: not-allowed;
  font-size: .85rem;
  flex-shrink: 0;
  transition: background .15s, color .15s;
}
.chat-send:not(:disabled) { background: var(--blue); color: #fff; cursor: pointer; }
.chat-send:not(:disabled):hover { background: var(--blue-dark); }

@media (max-width: 1100px) {
  .analysis-layout { grid-template-columns: 1fr; }
  .chat-panel { position: static; height: 500px; max-height: 500px; }
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .hero-section { padding: 2.5rem 0 4rem; }
  .upload-card { padding: 1.5rem; border-radius: var(--radius); }
  .upload-drop-zone { padding: 2rem 1rem; }
  .hero-title { font-size: 1.8rem; }
  .steps-section { padding: 2.5rem 0; }

  .analysis-hero { padding: 2rem 0 3.5rem; }
  .salary-pill { min-width: 120px; }
  .salary-pill-value { font-size: 1.3rem; }

  .analysis-card-body { padding: 1rem 1.1rem; }
  .trust-row { gap: .45rem; }
}

@media (min-width: 768px) {
  .hero-section { padding: 5rem 0 6rem; }
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp .45s ease both; }
.fade-up-delay { animation: fadeUp .45s .15s ease both; }

/* ── Print ── */
@media print {
  .navbar, footer, .feedback-card, .action-bar { display: none !important; }
}
