/* JobOffers — unique brand: trust + clarity + action */

:root {
  --jp-navy:   #0d1117;
  --jp-navy2:  #161b22;
  --jp-teal:   #0071e3; /* Apple Blue */
  --jp-teal-d: #005cbf;
  --jp-teal-l: #eef5ff;
  --jp-coral:  #ff2d55;
  --jp-coral-d:#d91b40;
  --jp-gold:   #34c759;
  --jp-gold-l: #eaffed;
  --blue:      var(--jp-teal);
  --blue-d:    var(--jp-teal-d);
  --blue-l:    var(--jp-teal-l);
  --accent:    var(--jp-coral);
  --dark:      #1d1d1f; /* Apple text color */
  --muted:     #86868b;
  --border:    rgba(0,0,0,0.06);
  --bg:        #fcfcfd;
  --radius:    20px;
  --shadow:    0 12px 32px -8px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 24px 64px -12px rgba(0, 0, 0, 0.1);
  --font-heading: 'Plus Jakarta Sans', sans-serif;
}

/* 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: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  box-shadow: none;
  position: sticky;
  top: 0;
  z-index: 200;
}
.navbar::after { display: none; }
.navbar .logo-text, .navbar .logo-text strong { color: var(--dark) !important; }
.navbar .logo-icon { background: linear-gradient(135deg, #0071e3, #45b0ff) !important; }
.nav-links a { color: var(--muted) !important; font-weight: 500; }
.nav-links a:hover, .nav-links a.nav-active {
  background: rgba(0,0,0,0.04) !important;
  color: var(--dark) !important;
}
.lang-btn { color: var(--dark); border-color: rgba(0,0,0,0.08); background: rgba(0,0,0,0.02); }
.lang-btn .lang-label { color: var(--dark); }
.btn-ghost { color: var(--dark); border-color: transparent; }
.btn-ghost:hover { background: rgba(0,0,0,0.04); color: var(--dark); border-color: transparent; }
.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);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary:hover { 
  background: var(--jp-teal-d); 
  transform: translateY(-2px); 
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.35);
}

/* 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-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  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-color: #fff;
  background-image: 
    radial-gradient(at 10% 20%, rgba(0, 113, 227, 0.15) 0px, transparent 50%),
    radial-gradient(at 80% 0%, rgba(255, 45, 85, 0.1) 0px, transparent 50%),
    radial-gradient(at 90% 80%, rgba(52, 199, 89, 0.1) 0px, transparent 50%),
    radial-gradient(at 20% 90%, rgba(138, 43, 226, 0.1) 0px, transparent 50%);
  color: var(--dark);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before { display: none; }
.hero-inner { position: relative; z-index: 1; }
.hero-content h1 { font-family: var(--font-heading); color: var(--dark); letter-spacing: -0.03em; font-size: clamp(40px, 6vw, 64px); line-height: 1.1; }
.hero-content h1 .highlight {
  background: linear-gradient(90deg, #0071e3, #45b0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content h1 .highlight::after { display: none; }
.hero-sub { color: var(--muted); font-size: 18px; margin-top: 20px; font-weight: 400; }
.hero-badge {
  background: rgba(0, 113, 227, 0.08);
  color: #0071e3;
  border: none;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
}
.search-bar {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(40px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 24px 64px -12px rgba(0,0,0,0.08), inset 0 0 0 1px rgba(255,255,255,0.5);
  border-radius: 28px;
  padding: 12px;
}
.search-bar-pro {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
}
.search-bar-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
.search-bar-grid > * {
  flex: 1;
  min-width: 150px;
}
.search-bar-pro input,
.search-bar-pro select {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  background: rgba(255, 255, 255, 0.9);
  outline: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: all 0.2s ease;
}
.search-bar-pro input::placeholder {
  color: #94a3b8;
}
.search-bar-pro input:focus,
.search-bar-pro select:focus {
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1), inset 0 2px 4px rgba(0,0,0,0.02);
}
.search-bar-submit {
  width: auto;
  min-width: 140px;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 16px;
}
@media (max-width: 768px) {
  .search-bar-grid { flex-direction: column; }
  .search-bar-submit { width: 100%; }
}
.search-relaxed-banner {
  background: rgba(0, 113, 227, 0.05);
  border: none;
  color: var(--jp-teal-d);
  border-radius: 16px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
}
.pillar {
  background: rgba(0,0,0,0.03);
  border: none;
  color: var(--dark);
  font-weight: 600;
  border-radius: 100px;
  padding: 8px 16px;
}
.pillar i { color: #0071e3; }
.popular-searches a {
  background: rgba(0,0,0,0.03);
  border: none;
  color: var(--muted);
  font-weight: 500;
  border-radius: 100px;
}
.popular-searches a:hover {
  background: rgba(0, 113, 227, 0.1);
  color: #0071e3;
}
.popular-searches span { color: var(--muted); font-weight: 500; }
.stats-text { color: var(--muted); }
.stats-text strong { color: var(--dark); font-weight: 700; }
.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: 24px;
  border: none;
  box-shadow: 0 4px 20px -4px rgba(0,0,0,0.04), inset 0 0 0 1px rgba(0,0,0,0.04);
  background: #ffffff;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.job-card:hover {
  box-shadow: 0 24px 48px -12px rgba(0,0,0,0.12), inset 0 0 0 1px rgba(0, 113, 227, 0.1);
  transform: translateY(-4px) scale(1.01);
}
.job-card.featured {
  background: radial-gradient(100% 100% at 50% 0%, #fff 0%, #fffafa 100%);
  box-shadow: 0 4px 20px -4px rgba(255, 45, 85, 0.08), inset 0 0 0 1px rgba(255, 45, 85, 0.15);
}
.job-card.featured:hover {
  box-shadow: 0 24px 48px -12px rgba(255, 45, 85, 0.16), inset 0 0 0 1px rgba(255, 45, 85, 0.2);
}
.featured-badge { background: #ff2d55 !important; color: #fff; border-radius: 100px; padding: 4px 10px; font-weight: 600; font-size: 11px; }
.verified-badge { color: #0071e3 !important; background: rgba(0,113,227,0.1); padding: 4px 10px; border-radius: 100px; font-size: 11px; font-weight: 600; }
.job-tag.green { background: #eaffed !important; color: #34c759 !important; border-radius: 100px; padding: 4px 10px; font-weight: 600;}

/* Footer */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  margin-top: auto;
  color: var(--dark);
}
.footer::before {
  display: none;
}
.footer .logo-text { color: var(--dark) !important; }
.footer h4 { color: var(--dark); font-weight: 700; }
.footer ul li a { color: var(--muted); }
.footer ul li a:hover { color: var(--dark); }
.footer-bottom { border-color: rgba(0,0,0,0.06); color: var(--muted); }
.footer-col h4 {
  background: none !important;
  color: var(--dark) !important;
  font-size: 13px;
  letter-spacing: 0.08em;
}
.footer .logo-text strong { color: var(--jp-teal) !important; }
.social-links a:hover { background: var(--jp-teal-l); color: 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; }
}
