/* ══════════════════════════════════════════════════════════════
   Careers page — page-specific styles
   ══════════════════════════════════════════════════════════════ */

/* Why-us perks grid */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.perk {
  padding: 2.5rem 2rem;
  background: rgba(240, 244, 248, 0.03);
  border: 1px solid rgba(240, 244, 248, 0.08);
  border-radius: 12px;
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0; transform: translateY(30px);
}
.perk.visible { opacity: 1; transform: translateY(0); }
.perk:hover {
  border-color: rgba(193, 255, 114, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
.perk-icon {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary-blue), var(--teal));
  margin-bottom: 1rem;
}
.perk-icon svg { width: 22px; height: 22px; color: var(--white); }
.perk h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.75rem; }
.perk p {
  font-size: 0.9rem; font-weight: 300;
  color: rgba(240, 244, 248, 0.6); line-height: 1.7;
}

/* Open positions */
.positions { display: flex; flex-direction: column; gap: 1rem; }
.position {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 2rem;
  background: rgba(240, 244, 248, 0.03);
  border: 1px solid rgba(240, 244, 248, 0.08);
  border-radius: 12px;
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0; transform: translateY(20px);
  flex-wrap: wrap; gap: 1rem;
}
.position.visible { opacity: 1; transform: translateY(0); }
.position:hover {
  border-color: rgba(63, 193, 185, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.position-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.25rem; }
.position-meta {
  display: flex; gap: 1.5rem;
  font-size: 0.8rem;
  color: rgba(240, 244, 248, 0.55);
}
.position-meta span {
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.position-meta svg {
  width: 14px; height: 14px;
  color: rgba(240, 244, 248, 0.5);
}

/* Empty-state for "no live positions" */
.positions-empty {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(240, 244, 248, 0.03);
  border: 1px solid rgba(240, 244, 248, 0.08);
  border-radius: 14px;
  max-width: 640px;
  margin: 2rem auto 0;
}
.positions-empty p {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(240, 244, 248, 0.7);
  line-height: 1.7;
  margin: 0;
}
.positions-empty .positions-empty-sub {
  font-size: 0.9rem;
  color: rgba(240, 244, 248, 0.5);
  margin-top: 1rem;
}

.apply-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  font-family: inherit;
  font-size: 0.8rem; font-weight: 600;
  color: var(--black);
  background: var(--lime);
  border: none; border-radius: 60px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none; white-space: nowrap;
}
.apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(193, 255, 114, 0.25);
}

/* Final CTA */
.cta-section { text-align: center; padding: 8rem 2rem; }
.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 900;
  margin-bottom: 1rem;
}
.cta-section p {
  font-size: 1rem; font-weight: 300;
  color: rgba(240, 244, 248, 0.55);
  margin-bottom: 2.5rem;
}
