.career-section {
  padding: 72px 0;
}

.career-hero {
  margin-top: 0;
  padding: 110px 0 64px;
  position: relative;
  color: #fff;
  background: var(--home-bg, #0b1b3a);
  background-image: radial-gradient(circle at 50% 45%, #1b3f93 0%, #123172 38%, #0e2148 68%, #0b1b3a 100%);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: auto;
}

.career-hero .container {
  position: relative;
  z-index: 1;
}

.career-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  max-width: 720px;
  margin: 0 auto 14px;
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.career-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #bae6fd;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.career-hero-lead {
  color: #bae6fd;
  font-size: clamp(1rem, 2vw, 1.05rem);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.65;
}

.career-highlights {
  margin-top: -36px;
  position: relative;
  z-index: 2;
  padding-bottom: 8px;
}

.career-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  background: #ffffff;
  border: 1px solid #e3eaf6;
  border-radius: 18px;
  padding: 24px 20px;
  box-shadow: 0 18px 48px rgba(1, 41, 112, 0.1);
}

.career-highlight {
  text-align: center;
  padding: 8px 12px;
}

.career-highlight strong {
  display: block;
  color: #012970;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 6px;
}

.career-highlight span {
  color: #4f5b73;
  font-size: 0.9rem;
  font-weight: 600;
}

.career-section-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0d83fd;
}

.career-intro-split .lead {
  text-align: left;
  margin-left: 0;
}

.career-intro-visual {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(1, 41, 112, 0.14);
}

.career-intro-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.career-intro-visual-accent {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 120px;
  height: 120px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0d83fd 0%, #012970 100%);
  z-index: -1;
}

.career-culture-strip {
  padding: 0 0 72px;
}

.career-culture-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.career-culture-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 220px;
  box-shadow: 0 14px 36px rgba(1, 41, 112, 0.1);
}

.career-culture-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.career-culture-card:hover img {
  transform: scale(1.06);
}

.career-culture-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 41, 112, 0.05) 0%, rgba(1, 41, 112, 0.55) 100%);
  pointer-events: none;
}

.career-section .btn-career-primary {
  background: #0d83fd;
  border: none;
  color: #fff !important;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(13, 131, 253, 0.35);
  text-decoration: none;
  display: inline-block;
}

.career-section .btn-career-primary:hover {
  background: #0670dc;
  color: #fff !important;
}

.career-section.alt {
  background: #f6f9ff;
}

.career-section h2 {
  color: #012970;
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 14px;
}

.career-section .lead {
  color: #4f5b73;
  max-width: 720px;
  line-height: 1.7;
  margin-bottom: 0;
}

.career-section .lead.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.career-perk {
  background: #ffffff;
  border: 1px solid #e3eaf6;
  border-radius: 16px;
  padding: 28px 24px;
  height: 100%;
  box-shadow: 0 10px 28px rgba(1, 41, 112, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.career-perk:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(1, 41, 112, 0.1);
}

.career-perk .icon-round {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e8f4ff 0%, #d6ebff 100%);
  color: #0d83fd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.career-perk h3 {
  color: #012970;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.career-perk p {
  color: #4f5b73;
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.65;
}

.career-step {
  background: #ffffff;
  border: 1px solid #e3eaf6;
  border-radius: 16px;
  padding: 32px 28px;
  height: 100%;
  box-shadow: 0 10px 28px rgba(1, 41, 112, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.career-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(1, 41, 112, 0.1);
}

.career-step .step-num {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0d83fd;
  margin-bottom: 18px;
}

.career-step .icon-round {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e8f4ff 0%, #d6ebff 100%);
  color: #0d83fd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.career-step h4 {
  font-weight: 700;
  font-size: 1.15rem;
  color: #012970;
  margin-bottom: 10px;
}

.career-step p {
  margin: 0;
  color: #4f5b73;
  font-size: 0.95rem;
  line-height: 1.65;
}

.career-cta-box {
  background: #ffffff;
  border: 1px solid #dce6f7;
  border-radius: 20px;
  padding: 52px 40px;
  text-align: center;
  box-shadow: 0 16px 48px rgba(1, 41, 112, 0.08);
}

.career-cta-box .cta-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d83fd;
  background: #e8f4ff;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.career-cta-box h2 {
  margin-bottom: 12px;
}

.career-cta-box p {
  color: #4f5b73;
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.career-cta-box .btn-career-primary {
  background: #0d83fd;
  border: none;
  color: #fff !important;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(13, 131, 253, 0.35);
  text-decoration: none;
}

.career-cta-box .btn-career-primary:hover {
  background: #0670dc;
  color: #fff !important;
}

.career-cta-box .btn-career-outline {
  background: transparent;
  border: 2px solid #012970;
  color: #012970 !important;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 999px;
  text-decoration: none;
}

.career-cta-box .btn-career-outline:hover {
  background: #012970;
  color: #fff !important;
}

@media (max-width: 991px) {
  .career-highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .career-culture-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .career-section {
    padding: 56px 0;
  }

  .career-hero {
    padding: 96px 0 52px;
  }

  .career-highlights {
    margin-top: -24px;
  }

  .career-highlights-grid {
    grid-template-columns: 1fr 1fr;
    padding: 18px 14px;
  }

  .career-intro-visual img {
    min-height: 240px;
  }

  .career-cta-box {
    padding: 40px 24px;
  }
}

.career-openings-list {
  display: grid;
  gap: 18px;
  max-width: 860px;
  margin: 0 auto;
}

.career-opening-card {
  background: #ffffff;
  border: 1px solid #e3eaf6;
  border-radius: 16px;
  padding: 28px 28px 24px;
  box-shadow: 0 10px 28px rgba(1, 41, 112, 0.06);
}

.career-opening-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.career-opening-card h3 {
  color: #012970;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.career-opening-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.career-opening-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: #e8f4ff;
  color: #0d83fd;
  font-size: 0.78rem;
  font-weight: 700;
}

.career-opening-summary {
  color: #4f5b73;
  line-height: 1.65;
  margin-bottom: 12px;
}

.career-opening-requirements {
  color: #4f5b73;
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 18px;
  white-space: pre-line;
}

.career-openings-empty {
  color: #4f5b73;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.career-openings-empty a {
  color: #0d83fd;
  font-weight: 600;
  text-decoration: none;
}

.career-openings-empty a:hover {
  text-decoration: underline;
}

.career-apply-panel {
  background: #ffffff;
  border: 1px solid #dce6f7;
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: 0 16px 48px rgba(1, 41, 112, 0.08);
}

.career-apply-panel .cta-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d83fd;
  background: #e8f4ff;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.career-apply-panel h2 {
  color: #012970;
  font-weight: 800;
  margin-bottom: 12px;
}

.career-application-form .btn-career-primary {
  background: #0d83fd;
  border: none;
  color: #fff !important;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(13, 131, 253, 0.35);
}

.career-application-form .btn-career-primary:hover {
  background: #0670dc;
  color: #fff !important;
}

.career-application-form input[type="file"].form-control {
  padding: 0.45rem 0.85rem;
  min-height: auto;
}

@media (max-width: 767px) {
  .career-apply-panel {
    padding: 32px 20px;
  }
}
