/* ============================================
   VerifiedJobs.ng
   Font: Quicksand (JobsEden brand font)
   Primary: Eden Green #26563b
   ============================================ */

:root {
  --eden: #26563b;
  --eden-dark: #1a3c29;
  --eden-light: #3a7a55;
  --eden-lighter: #e8f5ed;
  --eden-subtle: #f2faf5;
  --bg: #ffffff;
  --bg-alt: #fafafa;
  --text: #111111;
  --text-secondary: #555555;
  --text-muted: #999999;
  --border: #eeeeee;
  --border-hover: #ddd;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --red-soft: #fef2f2;
  --red: #dc2626;
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  font-family: "Quicksand", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

a:hover { color: var(--eden); }

ul { list-style: none; }
img { display: block; max-width: 100%; }

::selection {
  background: var(--eden);
  color: #fff;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 769px) {
  .container { padding: 0 40px; }
}

@media (min-width: 1280px) {
  .container { padding: 0 60px; }
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

@media (min-width: 769px) {
  .header-inner { height: 72px; }
}

.brand {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--eden);
  letter-spacing: -0.02em;
}

.brand-tld {
  color: var(--text);
  font-weight: 600;
}

.nav {
  display: none;
  gap: 32px;
}

@media (min-width: 769px) {
  .nav { display: flex; }
}

.nav a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--eden);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav a:hover {
  color: var(--eden);
}

.header-cta {
  display: none;
}

@media (min-width: 769px) {
  .header-cta { display: inline-flex; }
}

/* ── Mobile menu toggle ── */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.menu-toggle.open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

@media (min-width: 769px) {
  .menu-toggle { display: none; }
}

/* ── Mobile nav overlay ── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mobile-nav nav a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}

.mobile-nav nav a:hover {
  color: var(--eden);
}

@media (min-width: 769px) {
  .mobile-nav { display: none; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 100px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-align: center;
}

.btn-primary {
  background: var(--eden);
  color: #fff;
  padding: 12px 24px;
}

.btn-primary:hover {
  background: var(--eden-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(38, 86, 59, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  padding: 12px 24px;
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  color: var(--eden);
  border-color: var(--eden);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 0.9375rem;
}

@media (max-width: 480px) {
  .btn-lg {
    width: 100%;
    padding: 14px 20px;
  }
}

/* ── Sections ── */
.section {
  padding: 64px 0;
}

@media (min-width: 769px) {
  .section { padding: 100px 0; }
}

.section-alt {
  background: var(--bg-alt);
}

.section-dark {
  background: var(--eden);
  color: #fff;
}

.section-dark .section-lead {
  color: rgba(255, 255, 255, 0.65);
}

.section-dark .section-eyebrow {
  color: rgba(255, 255, 255, 0.45);
}

.section-header {
  margin-bottom: 40px;
}

@media (min-width: 769px) {
  .section-header { margin-bottom: 56px; }
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--eden);
  margin-bottom: 12px;
}

.section-heading {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  line-height: 1.2;
}

@media (min-width: 769px) {
  .section-heading { font-size: 2.25rem; }
}

.section-lead {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  max-width: 580px;
  line-height: 1.7;
}

@media (min-width: 769px) {
  .section-lead { font-size: 1.0625rem; }
}

/* ── Hero ── */
.hero {
  padding-top: 120px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--eden-subtle) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

@media (min-width: 769px) {
  .hero {
    padding-top: 160px;
    padding-bottom: 72px;
  }
}

.hero-layout {
  display: grid;
  gap: 40px;
  position: relative;
  z-index: 1;
}

@media (min-width: 769px) {
  .hero-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: start;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 10px;
  background: var(--eden-lighter);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--eden);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--eden);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.hero-content h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-bottom: 18px;
  color: var(--text);
}

@media (min-width: 769px) {
  .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 22px;
  }
}

@media (min-width: 1024px) {
  .hero-content h1 { font-size: 3.25rem; }
}

.text-accent {
  color: var(--eden);
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 32px;
}

@media (min-width: 769px) {
  .hero-subtitle {
    font-size: 1.0625rem;
    margin-bottom: 36px;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Hero card ── */
.hero-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.hero-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 769px) {
  .hero-card { padding: 32px; }
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.hero-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--eden-lighter);
  color: var(--eden);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-card-title {
  font-size: 1rem;
  font-weight: 700;
}

/* ── Verify list ── */
.verify-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.verify-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.verify-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.verify-list li:first-child {
  padding-top: 0;
}

.verify-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--eden-lighter);
  color: var(--eden);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.verify-list li div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.verify-list li strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
}

.verify-list li span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Stat banner ── */
.stat-banner {
  display: grid;
  gap: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.stat-banner.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 769px) {
  .stat-banner {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }
}

.stat-banner-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  line-height: 1.2;
}

@media (min-width: 769px) {
  .stat-banner-content h2 { font-size: 2rem; }
}

.stat-banner-content p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.75;
}

@media (min-width: 769px) {
  .stat-banner-content p { font-size: 1rem; }
}

.stat-banner-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.stat-x {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--red-soft);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8125rem;
  flex-shrink: 0;
}

.stat-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

/* ── Process steps ── */
.process-grid {
  display: grid;
  gap: 0;
}

@media (min-width: 769px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 48px;
  }
}

.process-card {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.process-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays */
.process-card:nth-child(1) { transition-delay: 0s; }
.process-card:nth-child(2) { transition-delay: 0.08s; }
.process-card:nth-child(3) { transition-delay: 0.16s; }
.process-card:nth-child(4) { transition-delay: 0.24s; }

.process-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.process-num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--eden-lighter);
  color: var(--eden);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.process-line {
  width: 1.5px;
  flex: 1;
  background: var(--border);
  margin-top: 8px;
  min-height: 20px;
}

.process-body h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 6px;
  padding-top: 8px;
}

.process-body p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ── Verification levels ── */
.levels-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 769px) {
  .levels-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.level-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--ease);
}

.level-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.level-card:nth-child(1) { transition-delay: 0s; }
.level-card:nth-child(2) { transition-delay: 0.1s; }
.level-card:nth-child(3) { transition-delay: 0.2s; }

.level-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.level-card.in-view:hover {
  transform: translateY(-3px);
}

@media (min-width: 769px) {
  .level-card { padding: 32px; }
}

.level-card-featured {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.level-featured-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
}

.level-badge {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.level-badge svg {
  opacity: 0.7;
}

.level-1 svg { color: rgba(255, 255, 255, 0.6); }
.level-2 svg { color: rgba(255, 255, 255, 0.75); }
.level-3 svg { color: #fff; }

.level-tier {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.6875rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.4);
}

.level-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.level-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.level-checks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.level-checks li {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  padding-left: 18px;
  position: relative;
}

.level-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

/* ── Reject grid ── */
.reject-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

@media (min-width: 540px) {
  .reject-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 769px) {
  .reject-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

.reject-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease);
  opacity: 0;
  transform: translateY(12px);
}

.reject-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reject-item:nth-child(1) { transition-delay: 0s; }
.reject-item:nth-child(2) { transition-delay: 0.04s; }
.reject-item:nth-child(3) { transition-delay: 0.08s; }
.reject-item:nth-child(4) { transition-delay: 0.12s; }
.reject-item:nth-child(5) { transition-delay: 0.16s; }
.reject-item:nth-child(6) { transition-delay: 0.2s; }

.reject-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.reject-item.in-view:hover {
  transform: translateY(-2px);
}

.reject-x {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--red-soft);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.reject-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reject-item strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
}

.reject-item span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Contact grid ── */
.contact-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 769px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.contact-card {
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
  opacity: 0;
  transform: translateY(16px);
}

.contact-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.contact-card:nth-child(1) { transition-delay: 0s; }
.contact-card:nth-child(2) { transition-delay: 0.08s; }

.contact-card:hover {
  border-color: var(--eden-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.contact-card.in-view:hover {
  transform: translateY(-3px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--eden-lighter);
  color: var(--eden);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 18px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--eden);
  transition: all 0.25s var(--ease);
}

.contact-link:hover {
  color: var(--eden-dark);
  gap: 10px;
}

.contact-link::after {
  content: "\2192";
  font-size: 1.1em;
  transition: transform 0.25s var(--ease);
}

.contact-link:hover::after {
  transform: translateX(2px);
}

/* ── Company ── */
.company-block {
  max-width: 720px;
}

.company-block h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  line-height: 1.25;
}

@media (min-width: 769px) {
  .company-block h2 { font-size: 2rem; }
}

.company-block p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.company-block p:last-child {
  margin-bottom: 0;
}

.company-block a {
  color: var(--eden);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(38, 86, 59, 0.25);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.25s var(--ease), color 0.25s var(--ease);
}

.company-block a:hover {
  color: var(--eden-dark);
  text-decoration-color: var(--eden-dark);
}

.company-block strong {
  color: var(--text);
  font-weight: 700;
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0 36px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 769px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-brand {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--eden);
}

.footer-tld {
  color: var(--text);
  font-weight: 600;
}

.footer-tagline {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

.footer-legal {
  font-size: 0.8125rem;
  color: var(--text-muted);
}
