/* ================================================================
   WORKI — Design System
   Plataforma de emprego para Angola
   ================================================================ */

/* -------- Reset & Base -------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: var(--primary); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--primary-dark); }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* -------- Design tokens -------- */
:root {
  /* Cores */
  --primary: #0B3D91;
  --primary-dark: #08306E;
  --primary-light: #1E5BB8;
  --primary-50: #EEF3FB;
  --primary-100: #D6E1F4;

  --accent: #FF6B35;
  --accent-dark: #E5551F;
  --accent-light: #FF8758;
  --accent-50: #FFF1EB;

  --success: #00A86B;
  --success-dark: #008855;
  --success-50: #E6F7EF;

  --danger: #DC2626;
  --warning: #F59E0B;
  --info: #0EA5E9;

  --text: #1F2937;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;

  --bg: #FFFFFF;
  --bg-soft: #F9FAFB;
  --bg-muted: #F3F4F6;

  --border: #E5E7EB;
  --border-strong: #D1D5DB;

  /* Tipografia */
  --font-heading: 'Poppins', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Sombras */
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.05);
  --shadow: 0 4px 6px -1px rgba(15,23,42,0.08), 0 2px 4px -2px rgba(15,23,42,0.04);
  --shadow-md: 0 10px 15px -3px rgba(15,23,42,0.08), 0 4px 6px -4px rgba(15,23,42,0.04);
  --shadow-lg: 0 20px 25px -5px rgba(15,23,42,0.1), 0 8px 10px -6px rgba(15,23,42,0.04);

  /* Raios */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Espaçamento */
  --container: 1200px;
  --container-narrow: 880px;
}

/* -------- Tipografia -------- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.625rem, 3vw, 2.25rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; font-weight: 600; }
p { margin-bottom: 1rem; color: var(--text-muted); }
.lead { font-size: 1.125rem; line-height: 1.65; color: var(--text-muted); }
.text-sm { font-size: .875rem; }
.text-xs { font-size: .75rem; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-success { color: var(--success); }

/* -------- Layout -------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }
.section-lg { padding: 6rem 0; }
@media (max-width: 768px) { .section { padding: 3rem 0; } .section-lg { padding: 4rem 0; } }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.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-2 { gap: .5rem; } .gap-3 { gap: .75rem; } .gap-4 { gap: 1rem; } .gap-6 { gap: 1.5rem; }
.mt-2 { margin-top: .5rem; } .mt-4 { margin-top: 1rem; } .mt-6 { margin-top: 1.5rem; } .mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: .5rem; } .mb-4 { margin-bottom: 1rem; } .mb-6 { margin-bottom: 1.5rem; } .mb-8 { margin-bottom: 2rem; }

/* -------- Botões -------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1.5rem; border-radius: var(--radius);
  font-weight: 600; font-size: .95rem; line-height: 1;
  transition: all .18s ease; white-space: nowrap; cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); color: white; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { background: var(--accent-dark); color: white; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-success { background: var(--success); color: white; }
.btn-success:hover { background: var(--success-dark); color: white; }
.btn-outline { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-ghost { background: transparent; color: var(--text); }
.btn-ghost:hover { background: var(--bg-muted); color: var(--text); }
.btn-white { background: white; color: var(--primary); }
.btn-white:hover { background: var(--bg-soft); color: var(--primary); }
.btn-lg { padding: 1rem 2rem; font-size: 1.0625rem; border-radius: var(--radius); }
.btn-sm { padding: .5rem 1rem; font-size: .875rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }

/* -------- Forms -------- */
.field { display: flex; flex-direction: column; gap: .375rem; margin-bottom: 1rem; }
.label { font-size: .875rem; font-weight: 600; color: var(--text); }
.input, .textarea, .select {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  background: white; color: var(--text); transition: all .15s ease;
}
.input:focus, .textarea:focus, .select:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-50);
}
.textarea { resize: vertical; min-height: 100px; }
.input-help { font-size: .8125rem; color: var(--text-muted); }
.input-error { color: var(--danger); font-size: .8125rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

/* Checkbox / Radio */
.check { display: flex; align-items: center; gap: .5rem; cursor: pointer; font-size: .9375rem; }
.check input { width: 18px; height: 18px; accent-color: var(--primary); }

/* -------- Cartões -------- */
.card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.5rem; box-shadow: var(--shadow-sm); transition: all .2s ease;
}
.card:hover { box-shadow: var(--shadow-md); }
.card-link { display: block; color: inherit; }
.card-link:hover { transform: translateY(-2px); color: inherit; }

/* -------- Badges -------- */
.badge {
  display: inline-flex; align-items: center; gap: .25rem;
  padding: .25rem .625rem; border-radius: var(--radius-full);
  font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .03em;
}
.badge-primary { background: var(--primary-50); color: var(--primary); }
.badge-accent { background: var(--accent-50); color: var(--accent-dark); }
.badge-success { background: var(--success-50); color: var(--success-dark); }
.badge-muted { background: var(--bg-muted); color: var(--text-muted); }
.badge-verified { background: var(--success); color: white; }

/* -------- Navbar -------- */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 2rem;
}
.navbar-logo { display: flex; align-items: center; gap: .5rem; font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; color: var(--primary); }
.navbar-logo-mark { width: 36px; height: 36px; }
.navbar-links { display: flex; gap: 1.5rem; align-items: center; flex: 1; }
.navbar-link { color: var(--text); font-weight: 500; font-size: .9375rem; padding: .5rem 0; position: relative; }
.navbar-link:hover { color: var(--primary); }
.navbar-actions { display: flex; gap: .75rem; align-items: center; }
.navbar-toggle { display: none; padding: .5rem; }
@media (max-width: 900px) {
  .navbar-links, .navbar-actions { display: none; }
  .navbar-toggle { display: flex; }
  .navbar.menu-open .navbar-links { display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; background: white; border-bottom: 1px solid var(--border); padding: 1rem 1.25rem; gap: .25rem; }
  .navbar.menu-open .navbar-actions { display: flex; position: absolute; top: auto; left: 0; right: 0; flex-direction: column; background: white; padding: 1rem 1.25rem; gap: .5rem; transform: translateY(100%); border-bottom: 1px solid var(--border); }
  .navbar.menu-open .navbar-actions .btn { width: 100%; }
}

/* -------- Hero -------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0B3D91 0%, #1E5BB8 60%, #2563EB 100%);
  color: white; padding: 5rem 0 6rem;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(at 20% 30%, rgba(255,107,53,0.18) 0, transparent 40%),
    radial-gradient(at 80% 70%, rgba(0,168,107,0.12) 0, transparent 40%);
}
.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 880px; margin: 0 auto; padding: 0 1.25rem; }
.hero h1 { color: white; margin-bottom: 1rem; }
.hero h1 span { color: var(--accent-light); }
.hero p { color: rgba(255,255,255,0.92); font-size: 1.125rem; max-width: 640px; margin: 0 auto 2rem; }

/* Search bar dentro do hero */
.search-bar {
  display: grid; grid-template-columns: 1.4fr 1fr auto; gap: .5rem;
  background: white; padding: .5rem; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); max-width: 760px; margin: 0 auto 1.5rem;
}
.search-bar .input { border: none; padding: .85rem 1rem; }
.search-bar .input:focus { box-shadow: none; }
@media (max-width: 720px) { .search-bar { grid-template-columns: 1fr; padding: .75rem; } }

.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }

/* -------- Stats strip -------- */
.stats-strip {
  background: white; border-radius: var(--radius-lg); padding: 1.5rem;
  margin-top: -3rem; position: relative; z-index: 2;
  box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.stat-item { text-align: center; padding: .75rem; }
.stat-value { font-family: var(--font-heading); font-size: 1.875rem; font-weight: 800; color: var(--primary); display: block; line-height: 1; }
.stat-label { font-size: .8125rem; color: var(--text-muted); font-weight: 500; margin-top: .25rem; display: block; }
@media (max-width: 700px) { .stats-strip { grid-template-columns: repeat(2, 1fr); } }

/* -------- Job card -------- */
.job-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.25rem; transition: all .18s ease; display: flex; flex-direction: column; gap: .75rem;
}
.job-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary-100); transform: translateY(-2px); }
.job-card-head { display: flex; gap: .875rem; align-items: flex-start; }
.job-logo {
  width: 52px; height: 52px; border-radius: var(--radius); object-fit: cover;
  background: var(--bg-muted); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; color: var(--primary);
}
.job-title { font-size: 1.0625rem; font-weight: 700; color: var(--text); margin-bottom: .125rem; line-height: 1.3; }
.job-company { font-size: .875rem; color: var(--text-muted); }
.job-meta { display: flex; flex-wrap: wrap; gap: .5rem; font-size: .8125rem; color: var(--text-muted); }
.job-meta span { display: inline-flex; align-items: center; gap: .25rem; }
.job-footer { display: flex; align-items: center; justify-content: space-between; padding-top: .75rem; border-top: 1px solid var(--border); margin-top: auto; }
.job-salary { font-weight: 700; color: var(--success-dark); font-size: .9375rem; }

/* -------- Category card -------- */
.category-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.5rem 1rem; text-align: center; transition: all .18s ease;
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
  color: var(--text);
}
.category-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-2px); color: var(--primary); }
.category-icon {
  width: 56px; height: 56px; border-radius: var(--radius);
  background: var(--primary-50); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.category-name { font-weight: 600; font-size: .9375rem; }

/* -------- Feature box -------- */
.feature {
  display: flex; flex-direction: column; gap: .75rem; padding: 1.5rem;
}
.feature-icon {
  width: 56px; height: 56px; border-radius: var(--radius-lg);
  background: var(--primary-50); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.feature-icon.accent { background: var(--accent-50); color: var(--accent-dark); }
.feature-icon.success { background: var(--success-50); color: var(--success-dark); }
.feature h3 { font-size: 1.125rem; margin-bottom: .25rem; }
.feature p { color: var(--text-muted); margin-bottom: 0; }

/* -------- Step (como funciona) -------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 768px) { .steps { grid-template-columns: 1fr; } }
.step { background: white; padding: 1.75rem; border-radius: var(--radius-lg); border: 1px solid var(--border); position: relative; }
.step-num {
  width: 40px; height: 40px; border-radius: var(--radius-full);
  background: var(--primary); color: white; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.125rem;
  margin-bottom: 1rem;
}
.step h4 { margin-bottom: .5rem; }

/* -------- Pricing -------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
.price-card {
  background: white; border: 2px solid var(--border); border-radius: var(--radius-lg);
  padding: 2rem 1.75rem; display: flex; flex-direction: column; gap: 1rem; position: relative;
}
.price-card.popular { border-color: var(--accent); transform: scale(1.03); box-shadow: var(--shadow-lg); }
.price-card.popular::before {
  content: 'Mais Popular'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: white; padding: .35rem 1rem; border-radius: var(--radius-full);
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
}
.price-name { font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; color: var(--primary); }
.price-value { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--text); line-height: 1; }
.price-value small { font-size: .875rem; color: var(--text-muted); font-weight: 500; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: .625rem; margin: 1rem 0; flex: 1; }
.price-features li { display: flex; align-items: flex-start; gap: .5rem; font-size: .9375rem; color: var(--text); }
.price-features li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; }

/* -------- Testimonial -------- */
.testimonial { background: white; padding: 1.75rem; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.testimonial-body { font-size: 1rem; color: var(--text); margin-bottom: 1rem; line-height: 1.6; font-style: italic; }
.testimonial-author { display: flex; gap: .75rem; align-items: center; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: var(--radius-full); background: var(--primary-50); color: var(--primary); display: flex; align-items: center; justify-content: center; font-weight: 700; }
.testimonial-name { font-weight: 600; font-size: .9375rem; }
.testimonial-role { font-size: .8125rem; color: var(--text-muted); }

/* -------- Section heading -------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-eyebrow { display: inline-block; font-size: .8125rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .75rem; }
.section-head p { font-size: 1.0625rem; }

/* -------- CTA panel -------- */
.cta-panel {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white; padding: 4rem 2rem; border-radius: var(--radius-xl); text-align: center;
  position: relative; overflow: hidden;
}
.cta-panel::before {
  content:''; position:absolute; right:-50px; bottom:-50px; width: 220px; height: 220px;
  background: var(--accent); border-radius: 50%; opacity: .25;
}
.cta-panel h2 { color: white; margin-bottom: .75rem; position: relative; }
.cta-panel p { color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; font-size: 1.0625rem; position: relative; }
.cta-panel .btn { position: relative; }

/* -------- Footer -------- */
.footer { background: #0A1736; color: rgba(255,255,255,0.78); padding: 4rem 0 2rem; margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h5 { color: white; font-size: .875rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.footer-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-list a { color: rgba(255,255,255,0.7); font-size: .9375rem; }
.footer-list a:hover { color: white; }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: .9375rem; margin-top: .75rem; }
.footer-social { display: flex; gap: .75rem; margin-top: 1rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: var(--radius-full);
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  color: white; transition: background .15s;
}
.footer-social a:hover { background: var(--accent); color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .8125rem; color: rgba(255,255,255,0.55); }

/* -------- Filters bar (vagas) -------- */
.filters-bar { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; box-shadow: var(--shadow-sm); margin-bottom: 2rem; }
.filters-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr auto; gap: .75rem; }
@media (max-width: 900px) { .filters-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .filters-grid { grid-template-columns: 1fr; } }

/* -------- Auth (login/register) -------- */
.auth-wrap {
  min-height: calc(100vh - 72px); display: grid; grid-template-columns: 1fr 1fr;
}
@media (max-width: 900px) { .auth-wrap { grid-template-columns: 1fr; } }
.auth-aside {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white; padding: 3rem; display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.auth-aside::before {
  content:''; position:absolute; right:-80px; top:-80px; width: 280px; height: 280px;
  background: var(--accent); opacity: .2; border-radius: 50%;
}
.auth-aside h2 { color: white; }
.auth-aside p { color: rgba(255,255,255,0.9); }
.auth-aside ul { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; position: relative; }
.auth-aside li { color: rgba(255,255,255,0.92); display: flex; gap: .5rem; align-items: center; }
.auth-aside li::before { content: '✓'; color: var(--accent-light); font-weight: 700; }
@media (max-width: 900px) { .auth-aside { display: none; } }
.auth-form { padding: 3rem; display: flex; flex-direction: column; justify-content: center; max-width: 520px; margin: 0 auto; width: 100%; }
.auth-form h1 { font-size: 2rem; margin-bottom: .5rem; }

/* Stepper */
.stepper { display: flex; gap: .5rem; margin-bottom: 2rem; }
.stepper-item { flex: 1; height: 4px; background: var(--border); border-radius: var(--radius-full); }
.stepper-item.done { background: var(--success); }
.stepper-item.current { background: var(--primary); }

/* -------- Dashboard -------- */
.dash-layout { display: grid; grid-template-columns: 260px 1fr; min-height: calc(100vh - 72px); }
@media (max-width: 900px) { .dash-layout { grid-template-columns: 1fr; } }
.dash-sidebar { background: white; border-right: 1px solid var(--border); padding: 1.5rem 0; }
.dash-sidebar a {
  display: flex; align-items: center; gap: .625rem;
  padding: .75rem 1.5rem; color: var(--text-muted); font-weight: 500; font-size: .9375rem;
}
.dash-sidebar a.active, .dash-sidebar a:hover { background: var(--primary-50); color: var(--primary); border-right: 3px solid var(--primary); }
.dash-main { padding: 2rem; background: var(--bg-soft); }
.dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
@media (max-width: 900px) { .dash-sidebar { display: none; } }

/* -------- Tables -------- */
.table-wrap { background: white; border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { padding: .875rem 1rem; text-align: left; border-bottom: 1px solid var(--border); font-size: .9375rem; }
.table th { background: var(--bg-soft); font-weight: 600; color: var(--text); font-size: .8125rem; text-transform: uppercase; letter-spacing: .04em; }
.table tr:last-child td { border-bottom: none; }
.table tr:hover { background: var(--bg-soft); }

/* -------- Toast / Alert -------- */
.alert { padding: 1rem 1.25rem; border-radius: var(--radius); border: 1px solid; margin-bottom: 1rem; }
.alert-success { background: var(--success-50); border-color: var(--success); color: var(--success-dark); }
.alert-error { background: #FEF2F2; border-color: var(--danger); color: var(--danger); }
.alert-info { background: var(--primary-50); border-color: var(--primary); color: var(--primary-dark); }

#toast { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 100; max-width: 360px; }
.toast {
  background: white; padding: 1rem 1.25rem; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  margin-bottom: .5rem; border-left: 4px solid var(--primary);
  animation: slideIn .25s ease;
}
.toast.success { border-left-color: var(--success); }
.toast.error { border-left-color: var(--danger); }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* -------- Logo strip -------- */
.logos-strip { display: flex; gap: 2.5rem; align-items: center; justify-content: center; flex-wrap: wrap; padding: 1rem 0; opacity: .7; }
.logos-strip .logo-placeholder { font-family: var(--font-heading); font-weight: 700; color: var(--text-muted); font-size: 1.125rem; }

/* -------- Utility -------- */
.hidden { display: none !important; }
.divider { height: 1px; background: var(--border); margin: 1.5rem 0; }
.shadow-sm { box-shadow: var(--shadow-sm); }
.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }

/* -------- Breadcrumb -------- */
.breadcrumb { display: flex; gap: .5rem; font-size: .875rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--text-light); }

/* -------- Tabs -------- */
.tabs { display: flex; gap: .25rem; border-bottom: 2px solid var(--border); margin-bottom: 2rem; overflow-x: auto; }
.tab { padding: .75rem 1.25rem; font-weight: 600; color: var(--text-muted); border-bottom: 3px solid transparent; margin-bottom: -2px; cursor: pointer; white-space: nowrap; }
.tab.active { color: var(--primary); border-color: var(--primary); }

/* Mobile menu */
.icon { width: 24px; height: 24px; flex-shrink: 0; }
.icon-sm { width: 18px; height: 18px; flex-shrink: 0; }
