*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --navy: #1a2c6b;
  --red:  #d63031;
  --wp:   #25d366;
  --wp-dark: #128c4a;
  --blue-light: #eef2ff;
  --border: #e5e9f2;
  --text: #1e2740;
  --muted: #6b7a99;
  --white: #ffffff;
  --bg: #f7f9fc;
}
body { font-family: 'Manrope', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }

/* ── NAV ── */
nav {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 0 5%; display: flex; align-items: center;
  justify-content: space-between; height: 68px; position: sticky; top: 0; z-index: 99;
}
.logo img { height: 75px; display: block; }
.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-link {
  font-size: 14px; font-weight: 600; color: var(--muted);
  text-decoration: none; padding: 8px 12px; border-radius: 6px;
  transition: color .2s, background .2s; display: flex; align-items: center; gap: 5px;
}
.nav-link:hover { color: var(--navy); background: var(--blue-light); }
.nav-li { color: #0a66c2 !important; }
.nav-li:hover { background: #e8f0fe !important; }
.nav-wp-btn {
  display: flex; align-items: center; gap: 7px;
  background: var(--wp); color: #fff; border: none;
  padding: 9px 18px; border-radius: 7px; font-family: 'Manrope', sans-serif;
  font-size: 14px; font-weight: 700; cursor: pointer; text-decoration: none;
  transition: background .2s;
}
.nav-wp-btn:hover { background: var(--wp-dark); }

/* ── 24HR HIGHLIGHT BANNER ── */
.banner-24 {
  background: linear-gradient(90deg, var(--navy) 0%, #1e3a8a 100%);
  color: #fff; text-align: center;
  padding: 11px 5%; font-size: 14px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.banner-24 strong { color: var(--wp); font-size: 15px; }
.banner-24 a {
  color: #fff; font-weight: 800; text-decoration: none;
  background: var(--wp); padding: 4px 14px; border-radius: 20px;
  font-size: 13px; transition: background .2s;
}
.banner-24 a:hover { background: var(--wp-dark); }

/* ── HERO ── */
.hero {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 64px 5% 72px;
  display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--red); margin-bottom: 18px;
}
.hero-eyebrow span { width: 28px; height: 2px; background: var(--red); display: inline-block; }
.hero h1 {
  font-family: 'Lora', serif; font-size: clamp(32px, 4vw, 50px);
  font-weight: 600; color: var(--navy); line-height: 1.2; margin-bottom: 16px;
}
.hero h1 em { font-style: normal; color: var(--red); }
.hero > .hero-left > p { font-size: 16px; color: var(--muted); max-width: 480px; margin-bottom: 28px; line-height: 1.8; }

/* 24hr hero badge */
.hero-24-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff7e6; border: 1.5px solid #f59e0b;
  color: #92400e; font-size: 13px; font-weight: 700;
  padding: 8px 16px; border-radius: 8px; margin-bottom: 24px;
}
.hero-24-badge .pulse {
  width: 8px; height: 8px; background: #f59e0b; border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.4)} }

/* WhatsApp CTA block */
.wp-cta-block { margin-bottom: 36px; }
.wp-big-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--wp); color: #fff; border: none;
  padding: 15px 32px; border-radius: 10px; font-family: 'Manrope', sans-serif;
  font-size: 16px; font-weight: 800; cursor: pointer; text-decoration: none;
  transition: background .2s, transform .15s; box-shadow: 0 4px 18px rgba(37,211,102,.3);
  margin-bottom: 12px;
}
.wp-big-btn:hover { background: var(--wp-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.4); }
.wp-number-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--muted); font-weight: 600;
}
.wp-number-row a {
  color: var(--navy); font-weight: 800; text-decoration: none;
  border-bottom: 2px solid var(--border); transition: border-color .2s;
}
.wp-number-row a:hover { border-color: var(--navy); }

.hero-stats { display: flex; gap: 32px; padding-top: 24px; border-top: 1px solid var(--border); }
.hstat-val { font-size: 24px; font-weight: 800; color: var(--navy); line-height: 1; }
.hstat-label { font-size: 12px; color: var(--muted); margin-top: 3px; }

/* Hero right card */
.hero-card-wrap {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px; display: flex; flex-direction: column; gap: 12px;
}
.hcard-head {
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--muted); padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.job-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 16px; cursor: pointer; transition: border-color .2s, box-shadow .2s;
}
.job-card:hover { border-color: var(--wp); box-shadow: 0 4px 16px rgba(37,211,102,.12); }
.jc-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.jc-company { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.jc-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 12px; }
.jc-tag { font-size: 11px; font-weight: 600; background: var(--blue-light); color: var(--navy); padding: 3px 8px; border-radius: 4px; }
.jc-footer { display: flex; align-items: center; justify-content: space-between; }
.jc-stipend { font-size: 13px; font-weight: 700; color: var(--navy); }
.jc-apply {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; background: var(--wp); color: #fff;
  border: none; padding: 6px 14px; border-radius: 5px; cursor: pointer; transition: background .2s; text-decoration: none;
}
.jc-apply:hover { background: var(--wp-dark); }

/* ── HOW IT WORKS — WhatsApp flow ── */
.how-section { padding: 90px 5%; background: var(--bg); }
.how-inner { max-width: 1100px; margin: 0 auto; }
.section-head { margin-bottom: 52px; }
.sh-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.sh-title { font-family: 'Lora', serif; font-size: clamp(26px, 3vw, 38px); font-weight: 600; color: var(--navy); line-height: 1.2; }
.sh-sub { font-size: 15px; color: var(--muted); margin-top: 10px; max-width: 500px; line-height: 1.7; }

.steps-wrap { position: relative; }
.steps-connector {
  position: absolute; top: 36px;
  left: calc(12.5% + 36px); right: calc(12.5% + 36px);
  height: 2px; background: var(--border); z-index: 0;
}
.steps-connector-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--wp), var(--navy)); transition: width 1.2s ease; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; z-index: 1; }

.step-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px 20px 24px; text-align: center;
  transition: box-shadow .25s, border-color .25s, transform .25s;
}
.step-card:hover { border-color: var(--wp); box-shadow: 0 8px 28px rgba(37,211,102,.12); transform: translateY(-4px); }
.step-num-wrap {
  width: 52px; height: 52px; border-radius: 50%;
  background: #e6faf0; border: 2px solid #b7f5d0;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 18px; font-weight: 800;
  color: var(--wp-dark); transition: background .25s, border-color .25s, color .25s;
}
.step-card:hover .step-num-wrap { background: var(--wp); border-color: var(--wp); color: #fff; }
.step-icon-row { font-size: 28px; margin-bottom: 12px; }
.step-title { font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 9px; }
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.75; }
.step-pill {
  display: inline-block; margin-top: 12px; font-size: 11px; font-weight: 700;
  color: var(--wp-dark); background: #e6faf0; border: 1px solid #b7f5d0;
  border-radius: 20px; padding: 3px 12px;
}

/* Step 4 special — WhatsApp direct action */
.step-card.step-final { border-color: var(--wp); background: #f0fdf4; }
.step-card.step-final .step-num-wrap { background: var(--wp); border-color: var(--wp); color: #fff; }
.step-wp-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  background: var(--wp); color: #fff; font-size: 12px; font-weight: 700;
  padding: 8px 16px; border-radius: 6px; text-decoration: none; transition: background .2s;
}
.step-wp-link:hover { background: var(--wp-dark); }

/* ── CATEGORIES ── */
.cats { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 80px 5%; }
.cats-inner { max-width: 1100px; margin: 0 auto; }
.cats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(148px, 1fr)); gap: 14px; margin-top: 48px; }
.cat-item { border: 1px solid var(--border); border-radius: 10px; padding: 22px 14px; text-align: center; cursor: pointer; background: var(--bg); transition: all .2s; }
.cat-item:hover { background: #e6faf0; border-color: var(--wp); }
.ci-icon { font-size: 26px; margin-bottom: 10px; }
.ci-name { font-size: 13px; font-weight: 700; color: var(--text); }
.ci-count { font-size: 11px; color: var(--muted); margin-top: 4px; }

/* ── TRUST ── */
.trust { padding: 48px 5%; border-bottom: 1px solid var(--border); background: var(--bg); }
.trust-inner { max-width: 1100px; margin: 0 auto; }
.trust-label { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); text-align: center; margin-bottom: 28px; }
.trust-logos { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; }
.trust-co { font-size: 16px; font-weight: 700; color: #b0bcd6; padding: 8px 24px; border-right: 1px solid var(--border); letter-spacing: .5px; transition: color .2s; cursor: default; }
.trust-co:last-child { border-right: none; }
.trust-co:hover { color: var(--navy); }

/* ── CTA ── */
.cta-wrap { padding: 80px 5%; background: var(--white); }
.cta-box {
  max-width: 1100px; margin: 0 auto; background: var(--navy);
  border-radius: 16px; padding: 60px 7%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap; position: relative; overflow: hidden;
}
.cta-box::after {
  content: ''; position: absolute; top: 0; right: 0; width: 280px; height: 100%;
  background: linear-gradient(135deg, transparent 50%, rgba(255,255,255,.04) 50%); pointer-events: none;
}
.cta-left h2 { font-family: 'Lora', serif; font-size: clamp(24px, 3vw, 36px); font-weight: 600; color: #fff; margin-bottom: 10px; line-height: 1.25; }
.cta-left p { font-size: 15px; color: rgba(255,255,255,.6); }
.cta-number { color: var(--wp); font-weight: 800; font-size: 16px; margin-top: 10px; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 2; }
.cta-btn-wp {
  display: flex; align-items: center; gap: 8px;
  background: var(--wp); color: #fff; border: none;
  padding: 14px 28px; border-radius: 8px; font-family: 'Manrope', sans-serif;
  font-size: 15px; font-weight: 800; cursor: pointer; text-decoration: none;
  transition: background .2s;
}
.cta-btn-wp:hover { background: var(--wp-dark); }
.cta-btn-ghost {
  background: transparent; color: rgba(255,255,255,.8); border: 1.5px solid rgba(255,255,255,.3);
  padding: 13px 28px; border-radius: 8px; font-family: 'Manrope', sans-serif;
  font-size: 14px; font-weight: 700; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 7px; transition: border-color .2s, color .2s;
}
.cta-btn-ghost:hover { border-color: #fff; color: #fff; }

/* ── FOOTER ── */
footer {
  background: var(--white); border-top: 1px solid var(--border);
  padding: 28px 5%; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
footer img { height: 75px; }
.foot-center { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.foot-copy { font-size: 13px; color: var(--muted); }
.foot-wp { font-size: 13px; font-weight: 700; color: var(--wp-dark); }
.foot-links { display: flex; gap: 20px; }
.foot-links a { font-size: 13px; font-weight: 600; color: var(--muted); text-decoration: none; transition: color .2s; }
.foot-links a:hover { color: var(--navy); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .hero-card-wrap { display: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-connector { display: none; }
  .banner-24 { font-size: 12px; gap: 6px; }
}
@media (max-width: 520px) {
  .steps-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  nav .nav-link { display: none; }
}
