/* ============================================================
   GAINWORK — styles.css
   Colors: #3BAB82 (green), #1E2240 (navy), #FFFFFF, #F5F7FA
   ============================================================ */

:root {
  --green: #3BAB82;
  --green-light: #52C99D;
  --green-dark: #2A8A67;
  --navy: #1E2240;
  --navy-light: #2A3060;
  --white: #FFFFFF;
  --off-white: #F5F7FA;
  --gray: #6B7280;
  --gray-light: #E5E7EB;
  --text: #111827;
  --text-mid: #4B5563;
  --border: rgba(59,171,130,0.2);
  --radius: 8px;
  --radius-lg: 16px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow: 0 4px 24px rgba(30,34,64,0.10);
  --shadow-lg: 0 8px 40px rgba(30,34,64,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(30,34,64,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav-container {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  background: white;
  border-radius: 6px;
  padding: 2px;
}
.logo-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green-light); }
.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--green-light) !important; transform: translateY(-1px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, #0F1529 60%, #162040 100%);
  overflow: hidden;
  padding: 120px 2rem 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(59,171,130,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 70%, rgba(59,171,130,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: 780px;
  text-align: center;
  color: var(--white);
}
.hero-badge {
  display: inline-block;
  background: rgba(59,171,130,0.15);
  border: 1px solid rgba(59,171,130,0.4);
  color: var(--green-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: var(--white);
}
.hero h1 .accent { color: var(--green-light); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--green-light); transform: translateY(-2px); }
.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.25);
  transition: background 0.2s;
  display: inline-block;
}
.btn-secondary:hover { background: rgba(255,255,255,0.18); }
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-light);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ---- SHARED ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}
section h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---- HOW IT WORKS ---- */
.how-it-works {
  padding: 100px 0;
  background: var(--off-white);
}
.how-it-works .container { text-align: center; }
.portals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.portal-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: left;
  transition: box-shadow 0.2s, transform 0.2s;
}
.portal-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.portal-card--center {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.portal-card--center .portal-features li { color: rgba(255,255,255,0.8); }
.portal-card--center .portal-features li::before { color: var(--green-light); }
.portal-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.portal-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.portal-card--center h3 { color: var(--white); }
.portal-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.portal-card--center p { color: var(--white); }
.portal-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.portal-features li {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding-left: 1.2rem;
  position: relative;
}
.portal-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ---- FEATURES ---- */
.features {
  padding: 100px 0;
  background: var(--white);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}
.feature-item {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-light);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.feature-item:hover { border-color: var(--green); box-shadow: 0 0 0 3px rgba(59,171,130,0.08); }
.feature-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.feature-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.feature-item p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }

/* ---- ABOUT ---- */
.about {
  padding: 100px 0;
  background: var(--off-white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: center;
}
.about-text h2 { color: var(--navy); }
.about-text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-text a { color: var(--green); font-weight: 500; }
.about-text a:hover { text-decoration: underline; }
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.badge {
  background: rgba(59,171,130,0.12);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  border: 1px solid rgba(59,171,130,0.25);
}
.about-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-logo img {
  max-width: 280px;
  border-radius: var(--radius-lg);
  background: white;
  padding: 2rem;
  box-shadow: var(--shadow);
}

/* ---- WAITLIST ---- */
.waitlist {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0F1529 100%);
}
.waitlist-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.waitlist-card h2 { color: var(--white); margin-bottom: 0.75rem; }
.waitlist-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.waitlist-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group--full { margin-bottom: 1rem; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
  color: var(--white);
  font-family: var(--font);
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
  background: rgba(255,255,255,0.12);
}
.form-group select option { background: var(--navy); color: var(--white); }
.sms-consent {
  margin: 1.2rem 0 1.5rem;
  padding: 1rem;
  background: rgba(59,171,130,0.08);
  border: 1px solid rgba(59,171,130,0.2);
  border-radius: var(--radius);
}
.checkbox-label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--green);
}
.checkbox-label span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.checkbox-label a { color: var(--green-light); text-decoration: underline; }
.btn-submit {
  width: 100%;
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-submit:hover { background: var(--green-light); transform: translateY(-1px); }

/* ---- FOOTER ---- */
.footer {
  background: #0D1120;
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img.footer-logo {
  height: 48px;
  width: auto;
  background: white;
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 0.75rem;
}
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.footer-links { display: flex; gap: 3rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.25rem;
}
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--green-light); }
.footer-bottom {
  padding: 1.25rem 2rem;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--green-light); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .portals-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .about-logo { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { flex-wrap: wrap; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .stat-divider { display: none; }
}

/* ---- LEGAL PAGES ---- */
.legal-page {
  min-height: 100vh;
  padding: 120px 2rem 80px;
  background: var(--off-white);
}
.legal-page .legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow);
}
.legal-page h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.legal-page .legal-date {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-light);
}
.legal-page h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}
.legal-page p, .legal-page li {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.legal-page ul { padding-left: 1.5rem; }
.legal-page a { color: var(--green); }

/* ---- HERO LOGO ---- */
.hero-logo-large {
  width: 160px;
  max-width: 50vw;
  height: auto;
  display: block;
  margin: 0 auto 24px;
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* ---- DEMO SECTION ---- */
.demo-section {
  padding: 100px 0;
  background: var(--navy);
}
.demo-section .container { text-align: center; }
.demo-warning {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,193,7,0.12); border: 1px solid rgba(255,193,7,0.3);
  color: #ffc107; padding: 8px 18px; border-radius: 8px;
  font-size: 0.82rem; font-weight: 600; margin-bottom: 28px;
}
.demo-tabs {
  display: flex; gap: 8px; margin-bottom: 28px;
  flex-wrap: wrap; justify-content: center;
}
.demo-tab {
  padding: 10px 22px; border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.15);
  background: transparent; color: rgba(255,255,255,0.6);
  font-weight: 600; font-size: 0.88rem; cursor: pointer;
  transition: all 0.2s; font-family: var(--font);
}
.demo-tab.active { background: var(--green); color: white; border-color: var(--green); }
.demo-tab:hover:not(.active) { border-color: var(--green-light); color: var(--green-light); }
.demo-panel { display: none; text-align: left; }
.demo-panel.active { display: block; }
.demo-window {
  background: #f0f4f8; border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.demo-titlebar {
  background: #e2e8f0; padding: 10px 16px;
  display: flex; align-items: center; gap: 6px;
}
.demo-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.demo-dot.red { background: #ff5f57; }
.demo-dot.yellow { background: #ffbd2e; }
.demo-dot.green { background: #28c840; }
.demo-url {
  flex: 1; background: white; border-radius: 6px;
  padding: 4px 12px; font-size: 0.78rem; color: #666; margin-left: 10px;
}

/* Job Coach Demo */
.jc-layout { display: grid; grid-template-columns: 210px 1fr; min-height: 460px; }
.jc-sidebar { background: var(--navy); padding: 16px 0; }
.jc-sidebar-logo { padding: 0 16px 16px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 8px; }
.jc-sidebar-logo span { font-weight: 800; color: var(--green-light); font-size: 1.05rem; }
.jc-nav-item {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 16px; color: rgba(255,255,255,0.6);
  font-size: 0.82rem; font-weight: 500; cursor: pointer;
  transition: all 0.2s; border-left: 3px solid transparent;
}
.jc-nav-item:hover, .jc-nav-item.active {
  background: rgba(59,171,130,0.12); color: var(--green-light);
  border-left-color: var(--green-light);
}
.jc-main { background: #f8fafc; padding: 20px; overflow: auto; }
.jc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.jc-header h3 { font-size: 1rem; font-weight: 700; color: var(--navy); }
.jc-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 16px; }
.jc-stat-card { background: white; border-radius: 8px; padding: 12px; border: 1px solid #e2e8f0; text-align: center; }
.jc-num { font-size: 1.5rem; font-weight: 800; color: var(--green); line-height: 1; }
.jc-lbl { font-size: 0.68rem; color: #888; margin-top: 3px; }
.jc-table { background: white; border-radius: 8px; border: 1px solid #e2e8f0; overflow: hidden; }
.jc-table-header {
  display: grid; grid-template-columns: 2fr 1.2fr 1fr 1fr 1fr;
  padding: 8px 14px; background: #f1f5f9;
  font-size: 0.7rem; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 0.5px;
}
.jc-table-row {
  display: grid; grid-template-columns: 2fr 1.2fr 1fr 1fr 1fr;
  padding: 10px 14px; border-top: 1px solid #f1f5f9;
  font-size: 0.8rem; align-items: center; cursor: pointer; transition: background 0.15s;
}
.jc-table-row:hover { background: #f8fafc; }
.jc-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; color: white; margin-right: 7px; flex-shrink: 0;
}
.jc-name { display: flex; align-items: center; font-weight: 600; color: var(--navy); }
.pill { display: inline-block; padding: 2px 9px; border-radius: 100px; font-size: 0.7rem; font-weight: 600; }
.pill-green { background: #d1fae5; color: #065f46; }
.pill-yellow { background: #fef3c7; color: #92400e; }
.pill-blue { background: #dbeafe; color: #1e40af; }
.pill-gray { background: #f1f5f9; color: #475569; }
.match-btn {
  background: var(--green); color: white; border: none;
  padding: 4px 10px; border-radius: 5px; font-size: 0.72rem;
  font-weight: 600; cursor: pointer; transition: background 0.2s; font-family: var(--font);
}
.match-btn:hover { background: var(--green-dark); }

/* Job Seeker Demo */
.js-layout { display: grid; grid-template-columns: 190px 1fr; min-height: 460px; }
.js-sidebar { background: #1a3a5c; padding: 16px 0; }
.js-sidebar-logo { padding: 0 16px 16px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 8px; }
.js-sidebar-logo span { font-weight: 800; color: var(--green-light); font-size: 1.05rem; }
.js-nav-item {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 16px; color: rgba(255,255,255,0.6);
  font-size: 0.82rem; font-weight: 500; cursor: pointer;
  transition: all 0.2s; border-left: 3px solid transparent;
}
.js-nav-item:hover, .js-nav-item.active { background: rgba(59,171,130,0.12); color: var(--green-light); border-left-color: var(--green-light); }
.js-main { background: #f8fafc; padding: 20px; }
.js-welcome {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  border-radius: 10px; padding: 16px 20px; margin-bottom: 16px; color: white;
}
.js-welcome h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 3px; }
.js-welcome p { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.js-progress { margin-top: 10px; }
.js-progress-label { display: flex; justify-content: space-between; font-size: 0.72rem; color: rgba(255,255,255,0.65); margin-bottom: 5px; }
.js-progress-bar { background: rgba(255,255,255,0.2); border-radius: 100px; height: 7px; }
.js-progress-fill { background: var(--green-light); border-radius: 100px; height: 7px; width: 65%; }
.js-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 14px; }
.js-card {
  background: white; border-radius: 8px; padding: 14px;
  border: 1px solid #e2e8f0; cursor: pointer; transition: all 0.2s;
}
.js-card:hover { border-color: var(--green); transform: translateY(-2px); }
.js-card-icon { font-size: 1.4rem; margin-bottom: 6px; }
.js-card h4 { font-size: 0.82rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.js-card p { font-size: 0.72rem; color: #888; }
.js-jobs { background: white; border-radius: 8px; border: 1px solid #e2e8f0; overflow: hidden; }
.js-jobs-header { padding: 10px 14px; background: #f1f5f9; font-size: 0.78rem; font-weight: 700; color: var(--navy); }
.js-job-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; border-top: 1px solid #f1f5f9; }
.js-job-title { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.js-job-co { font-size: 0.72rem; color: #888; margin-top: 1px; }
.apply-btn {
  background: var(--navy); color: white; border: none;
  padding: 5px 11px; border-radius: 5px; font-size: 0.72rem;
  font-weight: 600; cursor: pointer; transition: background 0.2s; font-family: var(--font);
  white-space: nowrap;
}
.apply-btn:hover { background: var(--green); }

/* Employer Demo */
.emp-layout { min-height: 460px; background: #f8fafc; padding: 20px; }
.emp-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.emp-header h3 { font-size: 1rem; font-weight: 700; color: var(--navy); }
.emp-post-btn {
  background: var(--green); color: white; border: none;
  padding: 8px 16px; border-radius: 7px; font-size: 0.82rem;
  font-weight: 600; cursor: pointer; font-family: var(--font);
}
.emp-jobs { display: grid; gap: 12px; }
.emp-job-card {
  background: white; border-radius: 10px; padding: 16px;
  border: 1px solid #e2e8f0; display: flex;
  justify-content: space-between; align-items: flex-start; gap: 16px;
}
.emp-job-info h4 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.emp-job-info p { font-size: 0.78rem; color: #888; margin-bottom: 8px; }
.emp-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.emp-tag { background: #f1f5f9; color: #475569; padding: 2px 8px; border-radius: 100px; font-size: 0.68rem; font-weight: 600; }
.emp-job-stats { text-align: right; flex-shrink: 0; }
.emp-big { font-size: 1.6rem; font-weight: 800; color: var(--green); line-height: 1; }
.emp-small { font-size: 0.7rem; color: #888; margin-bottom: 6px; }
.view-btn {
  display: block; background: var(--navy); color: white; border: none;
  padding: 5px 12px; border-radius: 5px; font-size: 0.72rem;
  font-weight: 600; cursor: pointer; font-family: var(--font);
  white-space: nowrap;
}
.view-btn:hover { background: var(--green); }

/* Waitlist discount badge */
.discount-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(59,171,130,0.15); border: 2px solid rgba(59,171,130,0.4);
  color: var(--green-light); padding: 10px 22px; border-radius: 100px;
  font-size: 0.9rem; font-weight: 700; margin-bottom: 28px;
}
.waitlist-card h2 .accent { color: var(--green-light); }
.waitlist-success { padding: 20px 0; }

@media (max-width: 768px) {
  .jc-layout, .js-layout { grid-template-columns: 1fr; }
  .jc-sidebar, .js-sidebar { display: none; }
  .jc-stats { grid-template-columns: repeat(2, 1fr); }
  .jc-table-header, .jc-table-row { grid-template-columns: 2fr 1fr 1fr; }
  .jc-table-header span:nth-child(4), .jc-table-header span:nth-child(5),
  .jc-table-row span:nth-child(4), .jc-table-row span:nth-child(5) { display: none; }
  .js-cards { grid-template-columns: 1fr; }
  .emp-job-card { flex-direction: column; }
  .emp-job-stats { text-align: left; }
  .demo-tabs { justify-content: flex-start; }
}
