* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: #06152b;
  color: #fff;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.container {
  width: 92%;
  max-width: 1180px;
  margin: 0 auto;
}

.orange {
  color: #ff8a00;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 52px;
  padding: 14px 24px;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn:focus-visible,
.footer-links a:focus-visible {
  outline: 3px solid #2aa8ff;
  outline-offset: 3px;
}

.btn-candidate {
  background: #ff8a00;
}

.btn-employer {
  background: linear-gradient(90deg, #ff2aa1, #2aa8ff);
}

.hero {
  min-height: 86vh;
  display: flex;
  align-items: center;
  text-align: center;
  background:
    linear-gradient(rgba(6, 21, 43, 0.62), rgba(6, 21, 43, 0.88)),
    url("../assets/JobHero_Hero_Banner.jpg") center / cover no-repeat;
  padding: 52px 0;
}

.hero-logo-box,
.footer-logo-box {
  width: 170px;
  margin: 0 auto 22px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 18px;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.12;
  font-weight: 900;
  margin-bottom: 12px;
}

.hero-kicker {
  font-size: 20px;
  color: #dbeafe;
  margin-bottom: 6px;
}

.hero-tagline {
  color: #b7c9e5;
  font-size: 16px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.btn-hero-cta {
  width: min(420px, 100%);
  min-height: 64px;
  padding: 18px 32px;
  font-size: 16px;
}

.section {
  padding: 60px 0;
}

.section-dark {
  background: #081b36;
}

.section-title {
  font-size: 34px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 14px;
}

.section-subtitle {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
  color: #cbd5e1;
  font-size: 16px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.card {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  color: #111827;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

.card-image {
  width: 100%;
  height: 250px;
  object-fit: contain;
  object-position: center;
  background: #fff;
  padding: 8px;
}

.card-body {
  padding: 24px;
}

.card h3 {
  font-size: 25px;
  color: #06152b;
  margin-bottom: 10px;
}

.card p {
  color: #374151;
  font-size: 15px;
  margin-bottom: 18px;
}

.banner-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.42);
  background: rgba(255, 255, 255, 0.05);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.feature-box {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.feature-box h3 {
  color: #ffb547;
  font-size: 19px;
  margin-bottom: 8px;
}

.feature-box p {
  color: #d3ddeb;
  font-size: 14px;
}

.cta {
  padding: 36px 24px;
  border-radius: 26px;
  text-align: center;
  background: linear-gradient(90deg, rgba(255, 138, 0, 0.18), rgba(42, 168, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.cta p {
  color: #cbd5e1;
  margin-bottom: 22px;
}

footer {
  text-align: center;
  padding: 76px 0 38px;
  background:
    linear-gradient(rgba(4, 10, 20, 0.52), rgba(4, 10, 20, 0.92)),
    url("../assets/JobHero_Footer_BG.png") center / cover no-repeat;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 22px 0;
  font-size: 14px;
}

.footer-links a {
  color: #cbd5e1;
}

.footer-links a:hover {
  color: #ff8a00;
}

footer p {
  color: #cbd5e1;
  font-size: 14px;
  margin-bottom: 4px;
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: auto;
    padding: 36px 0 42px;
  }

  .hero-logo-box {
    width: 145px;
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero-kicker {
    font-size: 17px;
  }

  .hero-tagline {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .hero-buttons {
    gap: 12px;
  }

  .btn {
    width: 100%;
    max-width: 360px;
    font-size: 14px;
  }

  .section {
    padding: 46px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .card-image {
    height: 220px;
    padding: 6px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}
