/* ==========================================================================
   Udyogvikas Kendra — Design System
   Palette derived from brand mark: navy shield + gold laurel wreath.
   ========================================================================== */

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

:root {
  /* Brand */
  --navy-950: #071426;
  --navy-900: #0A1D36;
  --navy-800: #0E2748;
  --navy-700: #123258;   /* primary */
  --navy-600: #1A4478;
  --navy-500: #275999;
  --gold-800: #9C7220;
  --gold-700: #B8862E;
  --gold-600: #C9972E;   /* accent */
  --gold-500: #DAAE4F;
  --gold-300: #EBD394;
  --gold-100: #FBF3E1;

  --cream: #FBF8F2;
  --white: #FFFFFF;
  --ink: #182233;
  --muted: #5C6675;
  --muted-2: #8A93A1;
  --line: #E6E8EC;
  --line-soft: #F0F1F4;
  --success: #1F8A5F;
  --danger: #C0392B;

  --font-head: 'Poppins', -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body: 'Poppins', -apple-system, Segoe UI, Roboto, sans-serif;

  --container: 1220px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(10, 29, 54, 0.06);
  --shadow: 0 10px 30px rgba(10, 29, 54, 0.10);
  --shadow-lg: 0 24px 60px rgba(10, 29, 54, 0.16);
  --header-h: 68px;
  --marquee-h: 34px;
  --topbar-h: calc(var(--header-h) + var(--marquee-h));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy-900);
  line-height: 1.2;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -.01em;
}
h1 { font-weight: 800; }
p { margin: 0 0 1em; color: var(--muted); }
main { display: block; }
button { font-family: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }

section { padding: 88px 0; }
@media (max-width: 768px) { section { padding: 56px 0; } }

.section-head { max-width: 680px; margin: 0 0 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); }
.section-head p { font-size: 17px; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn-gold { background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); color: var(--navy-950); box-shadow: 0 10px 24px rgba(184,134,46,.35); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(184,134,46,.45); }
.btn.is-loading { color: transparent; pointer-events: none; opacity: .8; }
.btn.is-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -9px 0 0 -9px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,.25);
  border-top-color: currentColor;
  animation: btn-spin .7s linear infinite;
}
@keyframes btn-spin { to { transform: rotate(360deg); } }
.btn-navy { background: var(--navy-800); color: var(--white); }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.55); color: inherit; }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-outline-navy { background: transparent; border-color: var(--navy-700); color: var(--navy-700); }
.btn-outline-navy:hover { background: var(--navy-700); color: var(--white); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 13.5px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: background .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 24px rgba(10,29,54,.1); }
.site-header .container { max-width: 1600px; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 14px; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 1; min-width: 0; }
.brand img { height: 42px; width: 42px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; justify-content: center; min-width: 0; overflow: hidden; line-height: 1.15; }
.brand-text strong { font-family: var(--font-head); font-size: 18px; color: var(--gold-800); letter-spacing: .02em; white-space: nowrap; }
.brand-primary { color: var(--navy-700); font-weight: 700; }
.brand-tagline { font-size: 10.5px; font-weight: 500; color: var(--muted-2); white-space: nowrap; letter-spacing: .01em; margin-top: 4px; }

@media (max-width: 560px) {
  .brand img { height: 34px; width: 34px; }
  .brand-text strong { font-size: 15px; }
  .brand-tagline { font-size: 9px; margin-top: 3px; }
}

.main-nav {
  display: flex; align-items: center; gap: 4px; flex-shrink: 1; min-width: 0;
  background: var(--line-soft); border: 1px solid var(--line); border-radius: 999px; padding: 5px;
}
.main-nav > ul { display: flex; align-items: center; gap: 5px; flex-wrap: nowrap; }
.main-nav a.nav-link {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 11px; border-radius: 999px;
  color: var(--gold-800); font-weight: 500; font-size: 12.5px;
  white-space: nowrap; position: relative;
  transition: background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.main-nav a.nav-link::after {
  content: ''; position: absolute; left: 11px; right: 11px; bottom: 3px; height: 2px; border-radius: 2px;
  background: var(--gold-600); transform: scaleX(0); opacity: 0; transition: transform .2s ease, opacity .2s ease;
}
.main-nav a.nav-link:hover {
  background: var(--gold-100); color: var(--gold-700);
  transform: translateY(-1px); box-shadow: 0 6px 14px rgba(184,134,46,.18);
}
.main-nav a.nav-link:hover::after { transform: scaleX(1); opacity: 1; }
.main-nav li.active > a.nav-link { background: var(--gold-100); color: var(--gold-700); }
.main-nav li.active > a.nav-link::after { transform: scaleX(1); opacity: 1; }
.main-nav li { position: relative; }
.caret { width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-top: -4px; transition: transform .15s ease; }
.has-dropdown:hover .caret { transform: rotate(225deg); margin-top: 3px; }

.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  min-width: 300px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 10px; opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: flex; flex-direction: column; gap: 2px; padding: 12px 14px; border-radius: 10px; color: var(--navy-900); }
.dropdown a:hover { background: var(--gold-100); }
.dropdown a strong { font-size: 14.5px; font-weight: 600; }
.dropdown a small { font-size: 12.5px; color: var(--muted); font-weight: 400; }
.dropdown.login-dropdown { right: 0; left: auto; transform: translateY(6px); min-width: 260px; }
.has-dropdown:hover .dropdown.login-dropdown, .has-dropdown:focus-within .dropdown.login-dropdown { transform: translateY(0); }

.header-actions { display: flex; align-items: stretch; gap: 10px; flex-shrink: 0; }
.header-actions .has-dropdown { position: relative; display: flex; }
.login-toggle {
  display: flex; align-items: center; gap: 6px;
  padding: 0 15px; border-radius: 999px; height: 36px; box-sizing: border-box;
  border: 1.5px solid var(--gold-300); background: var(--gold-100); color: var(--gold-800);
  font-weight: 600; font-size: 12.5px; white-space: nowrap;
  transition: background .15s ease, border-color .15s ease;
}
.login-toggle:hover, .has-dropdown:focus-within .login-toggle { background: var(--gold-300); border-color: var(--gold-600); }
.login-toggle svg { width: 13px; height: 13px; opacity: .85; flex-shrink: 0; }
.header-actions .btn-gold {
  display: flex; align-items: center; height: 36px; box-sizing: border-box;
  padding: 0 18px; font-size: 12.5px; font-weight: 700; white-space: nowrap;
}

.menu-toggle { display: none; width: 36px; height: 36px; border-radius: 10px; border: 1.5px solid var(--gold-300); background: var(--gold-100); align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; }
.menu-toggle { position: relative; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ''; display: block; width: 20px; height: 2px; background: var(--gold-800); position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); transition: all .2s ease; }
.menu-toggle::before { transform: translate(-50%, -50%) translateY(-7px); }
.menu-toggle::after { transform: translate(-50%, -50%) translateY(7px); }

@media (max-width: 1240px) {
  .main-nav { display: none; }
  .header-actions .btn-gold { display: none; }
  .login-toggle { display: none; }
  .menu-toggle { display: flex; }
}

/* Fallback for widths above 1240px where the nav still doesn't fit (e.g. a longer
   brand name) — main.js measures actual overflow and adds this class. */
.site-header.nav-overflow .main-nav,
.site-header.nav-overflow .header-actions .btn-gold,
.site-header.nav-overflow .login-toggle { display: none; }
.site-header.nav-overflow .menu-toggle { display: flex; }

/* Mobile drawer */
.mobile-nav { position: fixed; inset: 0; z-index: 1100; background: var(--navy-950); transform: translateX(100%); transition: transform .28s ease; overflow-y: auto; }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-top { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-nav-close { width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(255,255,255,.25); background: transparent; color: var(--white); font-size: 20px; cursor: pointer; }
.mobile-nav ul { padding: 10px 12px; }
.mobile-nav > ul > li { border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-nav a.nav-link { display: flex; justify-content: space-between; align-items: center; padding: 16px 12px; color: var(--white); font-size: 16px; font-weight: 500; }
.mobile-submenu { display: none; padding: 0 12px 14px 24px; }
.mobile-submenu.open { display: block; }
.mobile-submenu a { display: block; padding: 10px 0; color: var(--gold-300); font-size: 14.5px; }
.mobile-login-label { color: rgba(255,255,255,.5); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; padding: 18px 24px 4px; }

/* ---------- Topbar marquee ---------- */
.topbar-marquee {
  position: fixed; left: 0; right: 0; top: var(--header-h); z-index: 999;
  height: var(--marquee-h); overflow: hidden; display: flex; align-items: center;
  background: linear-gradient(90deg, var(--navy-900), var(--navy-700));
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.marquee-track { display: flex; width: max-content; animation: marquee-scroll 40s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-group { display: flex; flex-shrink: 0; }
.mq-item {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 0 24px; position: relative;
  font-size: 12.5px; font-weight: 500; color: var(--gold-100); white-space: nowrap; letter-spacing: .01em;
}
.mq-item b { color: #E4574B; font-weight: 800; font-size: 13.5px; }
.mq-item::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--gold-600);
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-16.6667%); }
}
@media (max-width: 560px) {
  .mq-item { padding: 0 16px; font-size: 11.5px; }
}

/* ---------- Hero image holder ---------- */
.hero-image { margin-top: var(--topbar-h); padding: 0; line-height: 0; }
.hero-image picture, .hero-image img { display: block; width: 100%; height: auto; }
.hero-image img { aspect-ratio: 1254 / 1254; object-fit: cover; }
@media (min-width: 769px) {
  .hero-image img { aspect-ratio: 2091 / 941; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--topbar-h) + 70px) 0 100px;
  background: radial-gradient(1100px 600px at 85% -10%, rgba(201,151,46,.18), transparent 60%),
              linear-gradient(160deg, var(--navy-950), var(--navy-800) 60%, var(--navy-700));
  color: var(--white);
  overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 26px 26px;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; position: relative; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr !important; gap: 40px; } }
.hero h1 { color: var(--white); font-size: clamp(34px, 4.6vw, 56px); margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--gold-400, var(--gold-500)); }
.hero-lede { color: rgba(255,255,255,.78); font-size: 18px; max-width: 540px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0 40px; }
.hero-stats { display: grid; grid-template-columns: repeat(4, auto); gap: 28px; }
@media (max-width: 640px) { .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; } }
.hero-stats div strong { display: block; font-family: var(--font-head); font-size: 26px; color: var(--gold-300); }
.hero-stats div span { font-size: 12.5px; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .06em; }

.hero-art { position: relative; }
.hero-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg); padding: 30px; backdrop-filter: blur(6px);
}
.hero-card-badge { display:flex; align-items:center; gap:12px; margin-bottom:20px; }
.hero-card-badge img { width: 46px; height: 46px; }
.hero-3e { display: grid; gap: 14px; }
.hero-3e-item { display: flex; gap: 14px; align-items: flex-start; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 16px 18px; }
.hero-3e-item .icon { width: 42px; height: 42px; border-radius: 12px; background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--navy-950); font-weight: 800; font-family: var(--font-head); }
.hero-3e-item strong { color: var(--white); font-size: 15.5px; display: block; margin-bottom: 2px; }
.hero-3e-item span { color: rgba(255,255,255,.65); font-size: 13.5px; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-300); }
.card .icon { width: 52px; height: 52px; border-radius: 14px; background: var(--navy-800); color: var(--gold-400, var(--gold-500)); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.card .icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { margin: 0; font-size: 14.5px; }
.card .tags { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 6px; }
.card .tags span { font-size: 11.5px; background: var(--gold-100); color: var(--gold-800); padding: 4px 10px; border-radius: 999px; font-weight: 600; }

.section-alt { background: var(--cream); }
.section-navy { background: linear-gradient(160deg, var(--navy-950), var(--navy-800)); color: var(--white); }
.section-navy h2, .section-navy h3, .section-navy h4 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,.72); }

/* ---------- 3E pillar band ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pillar { border-radius: var(--radius-lg); padding: 34px 28px; color: var(--white); position: relative; overflow: hidden; }
.pillar::after { content: ''; position: absolute; right: -30px; bottom: -30px; width: 140px; height: 140px; border-radius: 50%; background: rgba(255,255,255,.08); }
.pillar.p-edu { background: linear-gradient(150deg, var(--navy-700), var(--navy-950)); }
.pillar.p-emp { background: linear-gradient(150deg, var(--navy-600), var(--navy-900)); }
.pillar.p-ent { background: linear-gradient(150deg, var(--gold-700), var(--navy-950)); }
.pillar .num { font-family: var(--font-head); font-size: 15px; color: var(--gold-300); font-weight: 700; letter-spacing: .08em; }
.pillar h3 { color: var(--white); font-size: 23px; margin: 10px 0 12px; }
.pillar p { color: rgba(255,255,255,.75); font-size: 14.5px; }
.pillar .btn { margin-top: 16px; }
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr; } }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 22px; }
.step::before { counter-increment: step; content: counter(step); position: absolute; top: -16px; left: 22px; width: 34px; height: 34px; border-radius: 50%; background: var(--gold-600); color: var(--navy-950); font-weight: 800; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); box-shadow: 0 6px 14px rgba(184,134,46,.4); }
.step h4 { font-size: 16.5px; margin: 10px 0 8px; }
.step p { font-size: 13.5px; margin: 0; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.steps-3 { grid-template-columns: repeat(3, 1fr); }
.steps-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 980px) { .steps-3, .steps-5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps-3, .steps-5 { grid-template-columns: 1fr; } }

/* ---------- District band ---------- */
.district-chip { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 999px; background: var(--white); border: 1px solid var(--line); font-size: 13.5px; font-weight: 500; color: var(--navy-800); }
a.district-chip { transition: border-color .15s ease, color .15s ease, background .15s ease; }
a.district-chip:hover { border-color: var(--gold-500); color: var(--gold-700); background: var(--gold-100); }
.district-wrap { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- Stat strip ---------- */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-strip .s { text-align: center; }
.stat-strip .s strong { display: block; font-family: var(--font-head); font-size: 34px; color: var(--gold-300); }
.stat-strip .s span { font-size: 13px; color: rgba(255,255,255,.68); }
@media (max-width: 700px) { .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 30px; } }

/* ---------- Forms ---------- */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row.full, .form-group.full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 18px; display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 13.5px; font-weight: 600; color: var(--navy-900); }
.form-group label .req { color: var(--gold-700); }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid var(--line); border-radius: 10px; padding: 13px 14px; font-family: inherit; font-size: 14.5px; color: var(--ink);
  background: var(--white); transition: border-color .15s ease, box-shadow .15s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold-600); box-shadow: 0 0 0 4px rgba(201,151,46,.14); }
.form-group input[readonly], .form-group textarea[readonly], .form-group select:disabled { background: var(--line-soft); color: var(--muted); cursor: not-allowed; }
.form-group input[readonly]:focus, .form-group textarea[readonly]:focus { box-shadow: none; border-color: var(--line); }
.form-group textarea { resize: vertical; min-height: 110px; }
.password-field { position: relative; display: flex; }
.password-field input { flex: 1; padding-right: 42px !important; }
.password-toggle-btn {
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; padding: 8px; line-height: 0;
  color: var(--muted-2); display: flex; align-items: center; justify-content: center;
}
.password-toggle-btn:hover { color: var(--navy-800); }
.password-toggle-btn .icon-eye-off { display: none; }
.password-toggle-btn.is-visible .icon-eye { display: none; }
.password-toggle-btn.is-visible .icon-eye-off { display: block; }
.form-note { font-size: 12.5px; color: var(--muted-2); }
.form-note a { color: var(--gold-700); }
.form-alert { padding: 14px 18px; border-radius: 10px; font-size: 14px; margin-bottom: 20px; font-weight: 500; }
.form-alert.success { background: #EAF7F1; color: var(--success); border: 1px solid #BEE7D3; }
.form-alert.error { background: #FBEAE8; color: var(--danger); border: 1px solid #F2C3BD; }

.alert-banner { display: flex; align-items: flex-start; gap: 16px; background: #FFF7ED; border: 1.5px solid #FBBF77; border-radius: var(--radius); padding: 22px 26px; }
.alert-banner .icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: #FDECD1; color: #B45309; display: flex; align-items: center; justify-content: center; }
.alert-banner h3 { color: #92400E; font-size: 17px; margin-bottom: 6px; }
.alert-banner p { color: #7C4A03; margin: 0; font-size: 14.5px; }

/* ---------- Accordion (FAQ) ---------- */
.accordion { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.accordion-item + .accordion-item { border-top: 1px solid var(--line); }
.accordion-q { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 20px 24px; cursor: pointer; background: var(--white); font-weight: 600; color: var(--navy-900); font-size: 15.5px; }
.accordion-q:hover { background: var(--cream); }
.accordion-q .plus { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--gold-600); position: relative; }
.accordion-q .plus::before, .accordion-q .plus::after { content: ''; position: absolute; background: var(--gold-600); top: 50%; left: 50%; transform: translate(-50%, -50%); }
.accordion-q .plus::before { width: 11px; height: 2px; }
.accordion-q .plus::after { width: 2px; height: 11px; transition: transform .2s ease; }
.accordion-item.open .plus::after { transform: translate(-50%, -50%) rotate(90deg) scaleY(0); }
.accordion-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; background: var(--cream); }
.accordion-item.open .accordion-a { max-height: 400px; }
.accordion-a-inner { padding: 4px 24px 22px; font-size: 14.5px; color: var(--muted); }
.faq-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.faq-tab { padding: 10px 18px; border-radius: 999px; border: 1.5px solid var(--line); font-size: 13.5px; font-weight: 600; color: var(--navy-800); cursor: pointer; background: var(--white); }
.faq-tab.active { background: var(--navy-800); border-color: var(--navy-800); color: var(--white); }
.faq-group { display: none; }
.faq-group.active { display: block; }

/* ---------- Policy tabs ---------- */
.policy-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: flex-start; }
.policy-nav { position: sticky; top: calc(var(--topbar-h) + 24px); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.policy-nav a { display: block; padding: 15px 18px; font-size: 14px; font-weight: 500; color: var(--muted); border-left: 3px solid transparent; }
.policy-nav a:hover { background: var(--cream); color: var(--navy-900); }
.policy-nav a.active { border-left-color: var(--gold-600); background: var(--gold-100); color: var(--navy-900); font-weight: 600; }
.policy-section { padding-bottom: 46px; margin-bottom: 46px; border-bottom: 1px solid var(--line); scroll-margin-top: calc(var(--topbar-h) + 20px); }
.policy-section:last-child { border-bottom: none; }
.policy-section h2 { font-size: 24px; }
.policy-section ul { margin: 0 0 1em; padding-left: 22px; list-style: disc; }
.policy-section li { color: var(--muted); margin-bottom: 8px; font-size: 15px; }
@media (max-width: 900px) { .policy-layout { grid-template-columns: 1fr; } .policy-nav { position: static; display: flex; overflow-x: auto; } .policy-nav a { flex-shrink: 0; border-left: none; border-bottom: 3px solid transparent; } .policy-nav a.active { border-left-color: transparent; border-bottom-color: var(--gold-600); } }

/* ---------- Misc ---------- */
.divider-gold { width: 64px; height: 3px; background: linear-gradient(90deg, var(--gold-600), var(--gold-300)); border-radius: 2px; margin: 0 0 20px; }
.center .divider-gold { margin-left: auto; margin-right: auto; }
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.badge-row span { background: var(--cream); border: 1px solid var(--line); color: var(--navy-800); font-size: 12.5px; font-weight: 600; padding: 7px 14px; border-radius: 999px; }
.breadcrumb { padding: calc(var(--topbar-h) + 34px) 0 34px; background: linear-gradient(150deg, var(--navy-950), var(--navy-800)); color: var(--white); }
.breadcrumb h1 { color: var(--white); font-size: clamp(28px, 4vw, 42px); margin-bottom: 8px; }
.breadcrumb p { color: rgba(255,255,255,.7); margin: 0; }
.breadcrumb .crumbs { font-size: 13px; color: var(--gold-300); margin-bottom: 14px; letter-spacing: .04em; text-transform: uppercase; font-weight: 600; }

.cta-band { background: linear-gradient(120deg, var(--gold-700), var(--gold-500)); color: var(--navy-950); border-radius: var(--radius-lg); padding: 50px 56px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h3 { color: var(--navy-950); font-size: 26px; margin-bottom: 6px; }
.cta-band p { color: rgba(10,29,54,.75); margin: 0; }
.cta-band .btn-navy:hover { background: var(--navy-950); }

.list-check { display: grid; gap: 14px; }
.list-check li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-size: 15px; }
.list-check li::before { content: '\2713'; flex-shrink: 0; width: 22px; height: 22px; margin-top: 2px; border-radius: 50%; background: var(--gold-100); border: 1.5px solid var(--gold-500); color: var(--gold-700); font-size: 13px; font-weight: 800; line-height: 1; display: flex; align-items: center; justify-content: center; }

.center-map-note { display: flex; align-items: center; gap: 16px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; }
.center-map-note .icon { width: 50px; height: 50px; border-radius: 50%; background: var(--gold-100); color: var(--gold-700); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,.75); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 42px; }
.footer-brand strong { font-family: var(--font-head); color: var(--white); font-size: 19px; }
.footer-col h4 { color: var(--white); font-size: 15px; margin-bottom: 18px; letter-spacing: .03em; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.68); transition: color .15s ease; }
.footer-col a:hover { color: var(--gold-300); }
.footer-contact li { display: flex; gap: 10px; font-size: 14px; margin-bottom: 14px; align-items: flex-start; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--gold-600); border-color: var(--gold-600); color: var(--navy-950); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; font-size: 13px; color: rgba(255,255,255,.5); flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--gold-300); }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Comparison table ---------- */
.compare-table-wrap { border: 1px solid var(--line); border-radius: var(--radius); overflow-x: auto; background: var(--white); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 620px; }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare-table th { background: var(--navy-800); color: var(--white); font-weight: 600; font-size: 12.5px; text-transform: uppercase; letter-spacing: .05em; }
.compare-table td:first-child, .compare-table th:first-child { font-weight: 600; color: var(--navy-900); white-space: nowrap; }
.compare-table td { color: var(--muted); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover td { background: var(--cream); }

/* ---------- Utility ---------- */
.text-gold { color: var(--gold-600); }
.mt-0 { margin-top: 0; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Auth tabs (Register/Login) ---------- */
.auth-tabs { display: flex; gap: 10px; margin-bottom: 26px; }
.auth-tab { flex: 1; padding: 12px 18px; border-radius: 999px; border: 1.5px solid var(--line); font-size: 14px; font-weight: 600; color: var(--navy-800); cursor: pointer; background: var(--white); text-align: center; }
.auth-tab.active { background: var(--navy-800); border-color: var(--navy-800); color: var(--white); }
.auth-panel { display: none; }
.auth-panel.active { display: block; }

/* Dashboard tab variant — many tabs, wraps instead of forcing equal-width columns */
.dashboard-tabs { flex-wrap: wrap; }
.dashboard-tabs .auth-tab { flex: 0 1 auto; padding: 10px 16px; font-size: 13.5px; }
.dashboard-panel-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow); overflow-x: auto; }
.pipeline-track { display: flex; flex-wrap: wrap; gap: 0; margin-bottom: 28px; }
.pipeline-step { display: flex; align-items: center; gap: 8px; padding: 8px 14px 8px 0; font-size: 12.5px; font-weight: 600; color: var(--muted-2); }
.pipeline-step .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line); flex-shrink: 0; }
.pipeline-step.done { color: var(--success); }
.pipeline-step.done .dot { background: var(--success); }
.pipeline-step.active { color: var(--navy-900); }
.pipeline-step.active .dot { background: var(--gold-600); }

/* Application status progress bar — pinned above every partner dashboard tab, not just Overview */
.pdash-progress-sticky { position: sticky; top: calc(var(--topbar-h) + 20px); z-index: 5; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 18px 22px 20px; margin-bottom: 22px; }
.progress-bar-wrap { margin-bottom: 28px; }
.progress-bar-track { position: relative; height: 4px; background: var(--line); border-radius: 999px; margin: 10px 0 12px; display: flex; align-items: center; justify-content: space-between; }
.progress-bar-fill { position: absolute; top: 0; left: 0; height: 100%; background: linear-gradient(90deg, var(--gold-600), var(--success)); border-radius: 999px; transition: width .4s ease; z-index: 1; }
.progress-bar-dot { position: relative; z-index: 2; width: 14px; height: 14px; border-radius: 50%; background: var(--white); border: 3px solid var(--line); flex-shrink: 0; box-sizing: border-box; }
.progress-bar-dot.done { border-color: var(--success); background: var(--success); }
.progress-bar-dot.active { border-color: var(--gold-600); background: var(--white); box-shadow: 0 0 0 3px rgba(201,151,46,.28); }
.progress-bar-labels { display: flex; justify-content: space-between; gap: 4px; }
.progress-bar-labels span { font-size: 11px; font-weight: 600; color: var(--muted-2); text-align: center; }
.progress-bar-labels span.done { color: var(--success); }
.progress-bar-labels span.active { color: var(--navy-900); font-weight: 700; }
@media (max-width: 560px) {
  .progress-bar-labels span { font-size: 9.5px; }
  /* Stage labels are single unbreakable words ("Inspection", "Agreement"…) — on narrow
     screens their combined min-content width exceeds the viewport, which previously
     blew out the whole page horizontally. Scope the overflow to this row instead. */
  .progress-bar-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
  .progress-bar-track, .progress-bar-labels { min-width: 460px; }
  .progress-bar-labels span { flex-shrink: 0; white-space: nowrap; }
}
.score-badge { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: var(--navy-800); color: var(--white); font-size: 12.5px; font-weight: 700; }
.notification-item { padding: 12px 0; border-bottom: 1px solid var(--line-soft); font-size: 14px; color: var(--ink); }
.notification-item:last-child { border-bottom: none; }
.notification-item time { display: block; font-size: 12px; color: var(--muted-2); margin-top: 2px; }

/* ---------- Partner Dashboard shell (sidebar + stat tiles + banner) ---------- */
.pdash-shell { display: flex; gap: 26px; align-items: flex-start; }
.pdash-sidebar { width: 260px; flex-shrink: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 26px 18px; position: sticky; top: calc(var(--topbar-h) + 20px); }
.pdash-profile { text-align: center; padding-bottom: 18px; border-bottom: 1px solid var(--line-soft); margin-bottom: 16px; }
.pdash-avatar { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); color: var(--gold-300); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; font-size: 24px; margin: 0 auto 12px; }
.pdash-profile h4 { margin: 0 0 6px; font-size: 15.5px; }
.pdash-code { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .03em; color: var(--gold-700); background: var(--gold-100); padding: 4px 12px; border-radius: 999px; }
.pdash-nav { display: flex; flex-direction: column; gap: 3px; }
.pdash-nav-link { display: flex; align-items: center; gap: 12px; width: 100%; padding: 10px 12px; border-radius: 10px; border: none; background: transparent; color: var(--muted); font-size: 13.5px; font-weight: 600; text-align: left; cursor: pointer; transition: background .15s ease, color .15s ease; }
.pdash-nav-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.pdash-nav-link:hover { background: var(--cream); color: var(--navy-800); }
.pdash-nav-link.active { background: var(--gold-100); color: var(--navy-900); }
.pdash-nav-link.is-locked { opacity: .6; }
.pdash-nav-link.is-locked.active { background: var(--line-soft); color: var(--muted); }
.pdash-lock-icon { width: 13px !important; height: 13px !important; margin-left: auto; flex-shrink: 0; }
.pdash-locked-panel { text-align: center; padding: 60px 20px; }
.pdash-locked-panel svg { color: var(--muted-2); background: var(--line-soft); border-radius: 50%; padding: 15px; width: 56px; height: 56px; box-sizing: border-box; margin-bottom: 18px; }
.pdash-locked-panel h3 { margin-bottom: 8px; }
.pdash-locked-panel .form-note { max-width: 360px; margin: 0 auto; }
.pdash-logout { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line-soft); }
.pdash-logout button { display: flex; align-items: center; gap: 12px; width: 100%; padding: 10px 12px; border-radius: 10px; border: none; background: transparent; color: var(--danger); font-size: 13.5px; font-weight: 600; text-align: left; cursor: pointer; }
.pdash-logout button:hover { background: #FBEAE8; }
.pdash-logout svg { width: 18px; height: 18px; flex-shrink: 0; }
.pdash-main { flex: 1; min-width: 0; }

.pdash-banner { display: flex; align-items: center; justify-content: space-between; gap: 20px; background: linear-gradient(120deg, var(--navy-900), var(--navy-700)); color: var(--white); border-radius: var(--radius-lg); padding: 24px 28px; margin-bottom: 22px; flex-wrap: wrap; }
.pdash-banner h3 { color: var(--white); margin-bottom: 6px; }
.pdash-banner p { color: rgba(255,255,255,.75); margin: 0; max-width: 480px; }
.pdash-banner.success { background: linear-gradient(120deg, #0F5C3C, #1F8A5F); }
.pdash-banner.warn { background: linear-gradient(120deg, #8A5A12, var(--gold-700)); }
.pdash-banner.danger { background: linear-gradient(120deg, #7A2318, var(--danger)); }

.pdash-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 22px; }
@media (max-width: 900px) { .pdash-stat-grid { grid-template-columns: repeat(2, 1fr); } }
.pdash-stat { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; display: flex; align-items: center; gap: 14px; }
.pdash-stat-icon { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pdash-stat-icon svg { width: 20px; height: 20px; }
.pdash-stat-icon.gold { background: var(--gold-100); color: var(--gold-700); }
.pdash-stat-icon.navy { background: #E7ECF5; color: var(--navy-700); }
.pdash-stat-icon.success { background: #E3F5EC; color: var(--success); }
.pdash-stat-icon.danger { background: #FBE9E7; color: var(--danger); }
.pdash-stat-value { font-family: var(--font-head); font-size: 21px; font-weight: 800; color: var(--navy-900); line-height: 1; }
.pdash-stat-label { font-size: 11.5px; color: var(--muted-2); margin-top: 4px; }

@media (max-width: 900px) {
  .pdash-shell { flex-direction: column; }
  .pdash-sidebar { width: 100%; position: static; }
  .pdash-nav { flex-direction: row; flex-wrap: wrap; }
  .pdash-nav-link { width: auto; }
  /* .pdash-shell's align-items: flex-start (needed for the row layout above 900px) means
     that once flex-direction flips to column, .pdash-main is sized to its content's
     fit-content width instead of stretching — so any wide descendant (e.g. the stepper
     labels) silently inflates the whole column and blows out the page horizontally. */
  .pdash-main { width: 100%; }
}

/* Category sub-tabs (scoped per .lg-subtabs-wrap so multiple independent groups can
   coexist on one page — e.g. Lead Generation and Your Leads both use this). */
.lg-subtabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.lg-subtab { padding: 9px 16px; border-radius: 999px; border: 1.5px solid var(--line); font-size: 13px; font-weight: 600; color: var(--navy-800); cursor: pointer; background: var(--white); }
.lg-subtab.active { background: var(--navy-800); border-color: var(--navy-800); color: var(--white); }
.lg-subpanel { display: none; }
.lg-subpanel.active { display: block; }
.lg-link-box { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding: 14px 16px; border: 1px solid var(--line); border-radius: 10px; background: var(--cream); margin-bottom: 22px; }
.lg-link-box .lead-link-url { font-size: 12.5px; color: var(--muted-2); word-break: break-all; }

/* ---------- Captcha row ---------- */
.captcha-row { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.captcha-row img { border-radius: 8px; border: 1.5px solid var(--line); }
.captcha-refresh { border: 1.5px solid var(--line); background: var(--white); border-radius: 8px; width: 42px; height: 50px; cursor: pointer; font-size: 16px; color: var(--navy-800); flex-shrink: 0; }
.captcha-refresh:hover { border-color: var(--gold-600); color: var(--gold-700); }

/* ---------- Wizard stepper ---------- */
.wizard-steps { display: flex; justify-content: space-between; margin-bottom: 36px; position: relative; }
.wizard-steps::before { content: ''; position: absolute; top: 17px; left: 0; right: 0; height: 2px; background: var(--line); z-index: 0; }
.wizard-step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1; }
.wizard-step .circle { width: 36px; height: 36px; border-radius: 50%; background: var(--white); border: 2px solid var(--line); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; color: var(--muted-2); }
.wizard-step .label { font-size: 12px; font-weight: 600; color: var(--muted-2); text-align: center; }
.wizard-step.done .circle { background: var(--success); border-color: var(--success); color: var(--white); }
.wizard-step.active .circle { background: var(--gold-600); border-color: var(--gold-600); color: var(--navy-950); }
.wizard-step.active .label, .wizard-step.done .label { color: var(--navy-900); }

/* ---------- Modal ---------- */
.modal-overlay { position: fixed; inset: 0; background: rgba(7,20,38,.6); display: none; align-items: center; justify-content: center; z-index: 999; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal-box { background: var(--white); border-radius: var(--radius-lg); padding: 30px; max-width: 480px; width: 100%; box-shadow: var(--shadow-lg); }
.modal-box h3 { margin-bottom: 12px; }
.modal-box .modal-actions { display: flex; gap: 12px; margin-top: 20px; justify-content: flex-end; }

/* Full-viewport locked wizard wrapper (no header/footer chrome) */
.locked-wizard-shell { min-height: 100vh; background: var(--cream); display: flex; align-items: center; justify-content: center; padding: 40px 16px; }
.locked-wizard-shell .container-narrow { width: 100%; }

/* ---------- Admin shell ---------- */
.admin-shell { display: flex; min-height: 100vh; background: var(--cream); }
.admin-sidebar { width: 240px; flex-shrink: 0; background: var(--navy-900); color: var(--white); padding: 26px 0; }
.admin-sidebar .brand { display: flex; align-items: center; gap: 10px; padding: 0 22px 22px; font-weight: 700; font-size: 17px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 14px; }
.admin-sidebar .brand img { flex-shrink: 0; }
.admin-sidebar a { display: block; padding: 13px 22px; color: rgba(255,255,255,.7); font-size: 14.5px; font-weight: 600; }
.admin-sidebar a:hover { color: var(--white); background: rgba(255,255,255,.06); }
.admin-sidebar a.active { color: var(--navy-950); background: var(--gold-600); }
.admin-content { flex: 1; padding: 36px 40px; overflow-x: auto; }
.admin-content h1 { font-size: 24px; }

/* ---------- Data table ---------- */
.data-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.data-table th, .data-table td { padding: 13px 16px; text-align: left; font-size: 13.5px; border-bottom: 1px solid var(--line); color: var(--ink); }
.data-table th { background: var(--navy-800); color: var(--white); font-weight: 600; font-size: 11.5px; text-transform: uppercase; letter-spacing: .05em; }
.data-table tbody tr:hover td { background: var(--cream); }
.data-table td a { color: var(--gold-700); font-weight: 600; }

/* ---------- Status pill ---------- */
.status-pill { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; }
.status-pill.pending_otp, .status-pill.profile_incomplete, .status-pill.created, .status-pill.unpaid { background: #FFF3D6; color: #966400; }
.status-pill.pending_review, .status-pill.inspection_scheduled, .status-pill.pending_verification { background: #E0EAFB; color: #1E4F9C; }
.status-pill.improvement_required { background: #FFE8D6; color: #B4530A; }
.status-pill.approved, .status-pill.paid, .status-pill.activated { background: #EAF7F1; color: var(--success); }
.status-pill.agreement_pending { background: #EFE6FB; color: #6B3FA0; }
.status-pill.rejected, .status-pill.failed { background: #FBEAE8; color: var(--danger); }
.status-pill.restricted { background: #E9E9EC; color: #4A4A55; }
.status-pill.new { background: #FFF3D6; color: #966400; }
.status-pill.contacted { background: #E0EAFB; color: #1E4F9C; }
.status-pill.converted { background: #EAF7F1; color: var(--success); }
.status-pill.closed { background: #E9E9EC; color: #4A4A55; }
