/* JobsPlatform — unique brand: trust + clarity + action */

:root {
  --jp-navy:   #1a1f36;
  --jp-navy2:  #252b48;
  --jp-teal:   #0891b2;
  --jp-teal-d: #0e7490;
  --jp-teal-l: #ecfeff;
  --jp-coral:  #e11d48;
  --jp-coral-d:#be123c;
  --jp-gold:   #d97706;
  --jp-gold-l: #fffbeb;
  --blue:      var(--jp-teal);
  --blue-d:    var(--jp-teal-d);
  --blue-l:    var(--jp-teal-l);
  --accent:    var(--jp-coral);
  --dark:      var(--jp-navy);
  --muted:     #5b6478;
  --border:    #e2e8f0;
  --bg:        #eef1f8;
  --radius:    12px;
  --shadow:    0 4px 20px rgba(26,31,54,0.07);
  --shadow-lg: 0 12px 40px rgba(26,31,54,0.12);
}

/* Layout shell */
html, body { min-height: 100%; }
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--bg);
}
.site-main { flex: 1; width: 100%; }

/* Nav — dark trust bar */
.navbar {
  background: var(--jp-navy);
  border-bottom: none;
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
  position: sticky;
  top: 0;
  z-index: 200;
}
.navbar::after {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--jp-teal), var(--jp-coral), var(--jp-gold));
}
.navbar .logo-text, .navbar .logo-text strong { color: #fff !important; }
.navbar .logo-icon { background: linear-gradient(135deg, var(--jp-teal), var(--jp-coral)) !important; }
.nav-links a { color: rgba(255,255,255,0.88) !important; }
.nav-links a:hover, .nav-links a.nav-active {
  background: rgba(255,255,255,0.1) !important;
  color: #fff !important;
}
.lang-btn { color: #fff; border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.06); }
.lang-btn .lang-label { color: #fff; }
.btn-ghost { color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: #fff; }
.navbar .btn-primary { background: var(--jp-coral); }
.navbar .btn-primary:hover { background: var(--jp-coral-d); }
.hamburger { color: #fff; }

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--jp-teal), var(--jp-teal-d));
  border-radius: var(--radius);
}
.btn-primary:hover { background: var(--jp-teal-d); transform: translateY(-1px); }

/* Section frames */
.jp-section { padding: 72px 0; }
.jp-section-white { background: #fff; }
.jp-section-muted { background: var(--bg); }

.jp-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: var(--shadow);
}

.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  color: var(--jp-navy);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--jp-teal), var(--jp-coral));
}
.section-header p { color: var(--muted); font-size: 17px; max-width: 560px; margin: 0 auto; }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--jp-navy) 0%, var(--jp-navy2) 55%, #1e3a5f 100%);
  color: #fff;
  padding: 64px 0 56px;
}
.hero-content h1 { color: #fff; }
.hero-content h1 .highlight {
  background: linear-gradient(90deg, #67e8f9, #fda4af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content h1 .highlight::after { display: none; }
.hero-sub { color: rgba(255,255,255,0.78); }
.hero-badge {
  background: rgba(8,145,178,0.2);
  color: #67e8f9;
  border: 1px solid rgba(103,232,249,0.3);
}
.search-bar {
  background: #fff;
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
}
.search-bar-pro {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
}
.search-bar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}
.search-bar-pro input,
.search-bar-pro select {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--jp-navy);
  background: #fff;
  outline: none;
}
.search-bar-pro input:focus,
.search-bar-pro select:focus {
  border-color: var(--jp-teal);
  box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.12);
}
.search-bar-submit {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
}
.search-relaxed-banner {
  background: var(--jp-teal-l);
  border: 1px solid rgba(8, 145, 178, 0.25);
  color: var(--jp-teal-d);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pillar {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
}
.pillar i { color: #67e8f9; }
.popular-searches a {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
}
.popular-searches a:hover {
  background: rgba(8,145,178,0.25);
  border-color: var(--jp-teal);
  color: #fff;
}
.popular-searches span { color: rgba(255,255,255,0.6); }
.stats-text { color: rgba(255,255,255,0.75); }
.stats-text strong { color: #fff; }
.hero-stats .avatar {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.hero-card-main {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow-lg);
  background: rgba(255,255,255,0.97);
}

/* Feature cards — framed */
.features { padding: 72px 0; background: #fff; }
.feature-card {
  background: #fff !important;
  border: 1px solid var(--border) !important;
  border-top: 3px solid var(--jp-teal) !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow) !important;
}
.feature-card:hover {
  border-top-color: var(--jp-coral) !important;
  box-shadow: var(--shadow-lg) !important;
}
.feature-stat {
  background: var(--jp-teal-l);
  color: var(--jp-teal-d);
  font-weight: 700;
  border-radius: 8px;
  padding: 6px 12px;
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
}

/* We Eliminate — premium contrast block */
.eliminates {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f1428 0%, var(--jp-navy) 45%, #1a2744 100%);
  color: #fff;
  border-radius: 20px;
  padding: 0;
  border: 1px solid rgba(103, 232, 249, 0.15);
  box-shadow: 0 20px 50px rgba(15, 20, 40, 0.35);
}
.eliminates::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.eliminates::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -40px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.2) 0%, transparent 70%);
  pointer-events: none;
}
.elim-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
  padding: 44px 48px;
}
.elim-intro { max-width: 320px; }
.elim-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(8, 145, 178, 0.15);
  border: 1px solid rgba(103, 232, 249, 0.35);
  color: #67e8f9;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.eliminates h3 {
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}
.eliminates h3::after { display: none; }
.elim-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 0;
}
.elim-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.elim-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px 18px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.elim-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(225, 29, 72, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.elim-x {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.25), rgba(190, 18, 60, 0.15));
  border: 1px solid rgba(248, 113, 113, 0.35);
  border-radius: 10px;
  color: #fda4af;
  font-size: 14px;
  transition: transform 0.2s ease, background 0.2s ease;
}
.elim-item:hover .elim-x {
  background: linear-gradient(135deg, var(--jp-coral), var(--jp-coral-d));
  color: #fff;
  transform: rotate(-8deg) scale(1.05);
}
.elim-item span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.35;
  position: relative;
}
.elim-item:hover span {
  color: #fff;
  text-decoration: line-through;
  text-decoration-color: rgba(253, 164, 175, 0.7);
}

/* Categories */
.categories { padding: 72px 0; background: var(--bg); }
.cat-card {
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.cat-card:hover { border-color: var(--jp-teal); transform: translateY(-3px); }
.cat-icon { background: var(--jp-teal-l) !important; color: var(--jp-teal) !important; }
.cat-card:hover .cat-icon { background: var(--jp-teal) !important; color: #fff !important; }

/* Steps */
.how-it-works { padding: 72px 0; background: #fff; }
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.step-num {
  background: linear-gradient(135deg, var(--jp-teal), var(--jp-coral));
  color: #fff;
}
.step blockquote {
  background: var(--jp-teal-l);
  border-left: 3px solid var(--jp-teal);
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--jp-teal-d);
}

/* Testimonials — unified dark premium cards */
.testimonials { padding: 72px 0; background: var(--bg); }
.testimonials-grid { align-items: stretch; }

.testimonial-card {
  position: relative;
  background: linear-gradient(145deg, var(--jp-navy) 0%, #1e3a5f 55%, #243b55 100%);
  border: none;
  border-top: 3px solid rgba(103, 232, 249, 0.45);
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(26, 31, 54, 0.22);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(26, 31, 54, 0.3);
}
.testimonial-card--hero {
  border-top: 4px solid var(--jp-coral);
  box-shadow: 0 20px 48px rgba(26, 31, 54, 0.28);
  transform: scale(1.02);
}
.testimonial-card--hero:hover {
  transform: scale(1.02) translateY(-4px);
}

.testi-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(8, 145, 178, 0.18);
  border: 1px solid rgba(103, 232, 249, 0.3);
  color: #67e8f9;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
  width: fit-content;
}
.testi-badge--hero {
  background: rgba(225, 29, 72, 0.2);
  border-color: rgba(253, 164, 175, 0.35);
  color: #fda4af;
}

.testi-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.testi-quote-icon {
  font-size: 32px;
  color: rgba(103, 232, 249, 0.3);
}
.testimonial-card .stars { margin-bottom: 0; color: #fde68a; font-size: 15px; }
.testimonial-card .testi-body,
.testimonial-card p.testi-body {
  flex: 1;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.94) !important;
  line-height: 1.75;
  margin-bottom: 22px;
}
.testimonial-card--hero .testi-body { font-size: 16px; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.author-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.testimonial-card .testimonial-author strong {
  color: #fff !important;
  font-size: 15px;
}
.testimonial-card .testimonial-author span {
  color: #67e8f9 !important;
  font-weight: 600;
  font-size: 13px;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--jp-navy), var(--jp-navy2));
  padding: 72px 0;
}
.cta-inner {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 48px;
}

/* Jobs page */
.jobs-hero {
  background: linear-gradient(135deg, var(--jp-navy), var(--jp-navy2));
  color: #fff;
  border-bottom: none;
  padding: 48px 0 40px;
}
.jobs-hero h1 { color: #fff; }
.jobs-hero .highlight { color: #67e8f9; }
.jobs-hero p { color: rgba(255,255,255,0.75); }
.jobs-search { background: #fff; border: none; box-shadow: var(--shadow-lg); border-radius: var(--radius); }
.jobs-search input { color: var(--dark); }

.jobs-layout {
  background: var(--bg);
  padding: 32px 0 64px;
}
.sidebar {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
}
.sidebar-section h4 {
  color: var(--jp-navy);
  border-bottom: 2px solid var(--jp-teal);
  padding-bottom: 8px;
}
.filter-check input { accent-color: var(--jp-teal); }

.job-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-left: 4px solid transparent;
  box-shadow: var(--shadow);
  background: #fff;
  transition: border-color .2s, box-shadow .2s, transform .15s;
}
.job-card:hover {
  border-left-color: var(--jp-teal);
  box-shadow: 0 8px 28px rgba(8,145,178,0.12);
  transform: translateY(-2px);
}
.job-card.featured {
  border-left-color: var(--jp-coral);
  background: linear-gradient(135deg, #fff 0%, #fff5f7 100%);
}
.featured-badge { background: linear-gradient(135deg, var(--jp-coral), var(--jp-gold)) !important; }
.verified-badge { color: var(--jp-teal) !important; }
.job-tag.green { background: var(--jp-teal-l) !important; color: var(--jp-teal-d) !important; }

/* Footer */
.footer {
  background: var(--jp-navy);
  margin-top: auto;
}
.footer::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--jp-teal), var(--jp-coral));
}
.footer-col h4 {
  background: none !important;
  color: #67e8f9 !important;
  font-size: 13px;
  letter-spacing: 0.08em;
}
.footer .logo-text strong { color: #67e8f9 !important; }
.social-links a:hover { background: var(--jp-teal); }

/* Apply / KYC */
.btn-dark-pill { background: linear-gradient(135deg, var(--jp-navy), var(--jp-navy2)); border-radius: var(--radius); }
.back-link { color: var(--jp-teal); font-weight: 600; }
.page-btn:hover, .page-btn.active { background: var(--jp-teal); border-color: var(--jp-teal); }

/* Auth page frame */
.auth-page .auth-card {
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .cta-inner { padding: 36px 28px; }
}

@media (max-width: 768px) {
  .navbar { position: sticky; }
  .hero { padding: 40px 0 44px; }
  .hero-content h1 { font-size: clamp(28px, 7vw, 40px); }
  .hero-sub { font-size: 16px; }
  .trust-pillars { gap: 8px; }
  .pillar { font-size: 12px; padding: 6px 12px; }
  .search-bar { flex-direction: column; padding: 12px; }
  .search-bar-grid { grid-template-columns: 1fr; }
  .search-bar .btn-primary { width: 100%; justify-content: center; }
  .hero-visual { display: none; }

  .jp-section, .features, .categories, .how-it-works, .testimonials { padding: 48px 0; }
  .testimonial-card--hero { transform: none; }
  .testimonial-card--hero:hover { transform: translateY(-4px); }
  .testimonial-card { min-height: auto; padding: 24px 20px; }
  .section-header { margin-bottom: 32px; }
  .elim-inner { grid-template-columns: 1fr; gap: 28px; padding: 28px 20px; }
  .elim-intro { max-width: none; text-align: center; }
  .elim-badge { margin-bottom: 12px; }
  .elim-grid { grid-template-columns: 1fr; gap: 10px; }
  .elim-item { padding: 14px 16px; }

  .nav-right .btn-ghost {
    background: rgba(255,255,255,0.12) !important;
    color: #fff !important;
    border-color: rgba(255,255,255,0.35) !important;
  }
  .nav-right .btn-primary { display: none; }

  .cta-inner { padding: 28px 20px; text-align: center; }
  .cta-stats { justify-content: center; flex-wrap: wrap; gap: 24px; }

  .jobs-hero { padding: 36px 0 32px; }
  .jobs-layout { padding: 24px 0 48px; }

  .footer-inner { gap: 28px; }
  .footer { padding-top: 48px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .popular-searches { font-size: 13px; }
  .hero-stats { flex-wrap: wrap; }
  .step { padding: 20px; }
  .cta-stat span { font-size: 28px; }
}
