/* ======================== 
   Careers Pages Styles 
======================== */

/* ======================== 
   Careers Hero (Landing Page 1) 
======================== */
.careers-hero {
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: var(--primary);
}

.careers-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(0, 216, 192, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 123, 255, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(77, 156, 255, 0.05) 0%, transparent 70%);
  animation: heroShift 12s ease-in-out infinite alternate;
}

@keyframes heroShift {
  0% { opacity: 0.8; }
  50% { opacity: 1; }
  100% { opacity: 0.8; }
}

.careers-hero-container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.careers-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.careers-hero-content .section-badge {
  background: rgba(0, 216, 192, 0.15);
  color: var(--accent);
  border: 1px solid rgba(0, 216, 192, 0.25);
}

.careers-hero-content h1 {
  font-size: 3.2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  line-height: 1.15;
}

.careers-hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  max-width: 650px;
  margin: 0 auto 2.5rem;
}

.careers-hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.careers-stat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
}

.careers-stat i {
  font-size: 1.1rem;
  color: var(--accent);
}

/* ======================== 
   Job Cards (Landing Page 1) 
======================== */
.careers-listings {
  padding: 6rem 0;
  background: var(--bg-color);
}

.job-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.job-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.job-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 123, 255, 0.2);
  border-color: rgba(0, 123, 255, 0.15);
}

.job-card:hover .job-apply-hint {
  color: var(--secondary);
  gap: 0.75rem;
}

.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem 2rem 0;
}

.job-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.job-icon-wrap.sales {
  background: linear-gradient(135deg, #0A2342 0%, #1A3A6A 100%);
}

.job-icon-wrap.tech {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
}

.job-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.job-badge.hot {
  background: linear-gradient(135deg, #FF6B35, #FF4444);
  color: var(--white);
}

.job-badge.new {
  background: linear-gradient(135deg, var(--accent), #10B981);
  color: var(--white);
}

.job-card-body {
  padding: 1.5rem 2rem;
  flex: 1;
}

.job-card-body h3 {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
  color: var(--primary);
}

.job-subtitle {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 1rem;
  font-weight: 500;
}

.job-description {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.job-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: var(--bg-color);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-gray);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.job-tag i {
  font-size: 0.75rem;
  color: var(--secondary);
}

.job-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  background: rgba(0, 123, 255, 0.02);
}

.job-deadline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-gray);
  font-weight: 500;
}

.job-deadline i {
  color: var(--secondary);
}

.job-apply-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-gray);
  transition: all 0.3s ease;
}

/* ======================== 
   Why Join Section (Landing Page 1) 
======================== */
.careers-why-join {
  padding: 6rem 0;
  background: var(--white);
}

.why-join-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.why-join-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--bg-color);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
}

.why-join-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 123, 255, 0.1);
}

.why-join-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.25);
}

.why-join-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.why-join-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ======================== 
   Careers CTA 
======================== */
.careers-cta {
  padding: 4rem 0 6rem;
  background: var(--white);
}

.careers-cta-box {
  background: linear-gradient(135deg, #f0f7ff 0%, #e6fff9 100%);
  border-radius: var(--radius-lg);
  padding: 4rem;
  text-align: center;
  border: 1px solid rgba(0, 123, 255, 0.1);
}

.careers-cta-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.careers-cta-content p {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.careers-cta-content .btn {
  font-size: 1.1rem;
}

/* ======================== 
   JD Pages Common Styles 
======================== */

/* Breadcrumb */
.jd-breadcrumb {
  padding: 7rem 0 0;
  background: var(--bg-color);
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0;
  font-size: 0.9rem;
}

.breadcrumb-inner a {
  color: var(--text-gray);
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumb-inner a:hover {
  color: var(--secondary);
}

.breadcrumb-inner span {
  color: var(--primary);
  font-weight: 600;
}

.breadcrumb-inner i.fa-chevron-right {
  font-size: 0.65rem;
  color: var(--text-gray);
  opacity: 0.5;
}

/* JD Hero Card */
.jd-hero {
  padding: 2rem 0 0;
  background: var(--bg-color);
}

.jd-hero-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 3rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.jd-hero-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.jd-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  flex-shrink: 0;
}

.jd-icon-wrap.sales {
  background: linear-gradient(135deg, #0A2342 0%, #1A3A6A 100%);
  box-shadow: 0 8px 25px rgba(10, 35, 66, 0.3);
}

.jd-icon-wrap.tech {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.jd-hero-info h1 {
  font-size: 2rem;
  margin-bottom: 0.25rem;
  margin-top: 0.5rem;
}

.jd-hero-sub {
  font-size: 1rem;
  color: var(--text-gray);
  font-weight: 500;
  margin-bottom: 1rem;
}

.jd-meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.jd-meta-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-gray);
  font-weight: 500;
}

.jd-meta-tags span i {
  color: var(--secondary);
  font-size: 0.8rem;
}

/* JD Content Layout */
.jd-content {
  padding: 3rem 0 5rem;
  background: var(--bg-color);
}

.jd-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
  align-items: flex-start;
}

.jd-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* JD Section */
.jd-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.jd-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  background: rgba(0, 123, 255, 0.02);
}

.jd-section-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--gradient-1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}

.jd-section-icon.benefit-icon {
  background: linear-gradient(135deg, #10B981 0%, var(--accent) 100%);
}

.jd-section-header h2 {
  font-size: 1.4rem;
  color: var(--primary);
}

.jd-section-body {
  padding: 2rem;
}

.jd-section-body > p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Highlight Box */
.jd-highlight-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.06) 0%, rgba(0, 216, 192, 0.06) 100%);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--secondary);
}

.jd-highlight-box i {
  color: var(--secondary);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.jd-highlight-box p {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 !important;
}

/* JD List */
.jd-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  list-style: none;
}

.jd-list > li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 450;
}

.jd-list > li > i {
  color: var(--secondary);
  margin-top: 4px;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.jd-list > li i.fa-check-circle {
  color: var(--success);
  font-size: 0.9rem;
}

.jd-sub-list {
  list-style: none;
  margin-top: 0.5rem;
  padding-left: 1rem;
}

.jd-sub-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  font-weight: 400;
}

.jd-sub-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

/* Responsibility Blocks */
.jd-responsibility {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.jd-responsibility:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.jd-resp-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.jd-resp-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
  font-family: var(--font-heading);
}

.jd-resp-header h3 {
  font-size: 1.15rem;
  color: var(--primary);
}

/* Requirements Grid */
.jd-requirements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.jd-req-card {
  padding: 1.5rem;
  background: var(--bg-color);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.jd-req-card.priority {
  border-color: rgba(0, 216, 192, 0.2);
  background: linear-gradient(135deg, rgba(0, 216, 192, 0.04) 0%, rgba(0, 123, 255, 0.04) 100%);
}

.jd-req-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.jd-req-card h4 i {
  color: var(--secondary);
  font-size: 0.95rem;
}

.jd-req-card.priority h4 i {
  color: var(--accent);
}

.jd-req-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.jd-req-card ul {
  list-style: none;
}

.jd-req-card ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.5;
}

.jd-req-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
}

.jd-req-card.priority ul li::before {
  background: var(--accent);
}

/* Tech Stack */
.jd-tech-stack {
  margin: 1rem 0;
}

.jd-tech-group {
  margin-bottom: 0.75rem;
}

.jd-tech-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}

.jd-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.jd-tech-tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--white);
  border: 1px solid rgba(0, 123, 255, 0.15);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--secondary);
  transition: all 0.2s ease;
}

.jd-tech-tag:hover {
  background: rgba(0, 123, 255, 0.1);
  transform: translateY(-1px);
}

/* Benefits List */
.jd-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.jd-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.5rem;
  background: var(--bg-color);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.jd-benefit-item:hover {
  border-color: rgba(16, 185, 129, 0.15);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.jd-benefit-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #10B981 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}

.jd-benefit-item h4 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.jd-benefit-item p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* KPI Grid */
.jd-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.jd-kpi-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.2rem;
  background: var(--bg-color);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.jd-kpi-item:hover {
  border-color: rgba(0, 123, 255, 0.15);
  box-shadow: var(--shadow-sm);
}

.jd-kpi-item i {
  font-size: 1.3rem;
  color: var(--secondary);
  min-width: 28px;
  text-align: center;
}

.jd-kpi-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* Org Chart */
.jd-org-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 1rem 0;
}

.jd-org-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.2rem 2rem;
  border-radius: var(--radius-md);
  border: 2px solid rgba(0, 0, 0, 0.06);
  background: var(--bg-color);
  min-width: 200px;
  transition: all 0.3s ease;
}

.jd-org-node:hover {
  box-shadow: var(--shadow-sm);
}

.jd-org-node i {
  font-size: 1.5rem;
  color: var(--text-gray);
  margin-bottom: 0.5rem;
}

.jd-org-node strong {
  font-size: 0.95rem;
  color: var(--primary);
}

.jd-org-node span {
  font-size: 0.8rem;
  color: var(--text-gray);
}

.jd-org-node.ceo {
  background: var(--gradient-dark);
  border-color: transparent;
}

.jd-org-node.ceo i,
.jd-org-node.ceo strong,
.jd-org-node.ceo span {
  color: var(--white);
}

.jd-org-node.ceo span {
  opacity: 0.7;
}

.jd-org-node.current {
  background: var(--gradient-1);
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.jd-org-node.current i,
.jd-org-node.current strong,
.jd-org-node.current span {
  color: var(--white);
}

.jd-org-node.current span {
  opacity: 0.8;
}

.jd-org-line {
  width: 2px;
  height: 24px;
  background: linear-gradient(180deg, var(--secondary), var(--accent));
}

.jd-org-children {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.jd-org-node.child {
  min-width: 160px;
  padding: 1rem 1.5rem;
}

.jd-org-node.child i {
  font-size: 1.2rem;
}

.jd-org-node.child strong {
  font-size: 0.85rem;
}

/* Mindset Grid */
.jd-mindset-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.jd-mindset-card {
  padding: 1.5rem;
  background: var(--bg-color);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.03);
  text-align: center;
  transition: all 0.3s ease;
}

.jd-mindset-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 123, 255, 0.1);
}

.jd-mindset-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.jd-mindset-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.jd-mindset-card p {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.5;
}

/* Career Path */
.jd-career-path {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.jd-path-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 120px;
}

.jd-path-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  border: 3px solid var(--bg-color);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.jd-path-dot.active {
  background: var(--secondary);
  box-shadow: 0 0 0 2px var(--secondary), 0 0 15px rgba(0, 123, 255, 0.3);
}

.jd-path-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.jd-path-level {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-gray);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.jd-path-info strong {
  font-size: 0.9rem;
  color: var(--primary);
}

.jd-path-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  margin-bottom: 2.5rem;
}

/* Bonus Grid */
.jd-bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.jd-bonus-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-color);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.jd-bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 216, 192, 0.15);
}

.jd-bonus-card > i {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
  display: block;
}

.jd-bonus-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.jd-bonus-card p {
  font-size: 0.85rem;
  color: var(--text-gray);
}

/* Sidebar */
.jd-sidebar {
  position: relative;
}

.jd-sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.jd-sidebar-card.sticky {
  position: sticky;
  top: 100px;
}

.jd-sidebar-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(0, 123, 255, 0.1);
  color: var(--primary);
}

.jd-sidebar-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.jd-info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.jd-info-row > i {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(0, 123, 255, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 0.9rem;
}

.jd-info-row > div {
  display: flex;
  flex-direction: column;
}

.jd-info-label {
  font-size: 0.78rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.jd-info-value {
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 600;
}

.jd-apply-btn {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
}

.jd-sidebar-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-top: 1rem;
}

/* ======================== 
   Responsive - Careers Pages 
======================== */
@media (max-width: 1024px) {
  .jd-layout {
    grid-template-columns: 1fr;
  }

  .jd-sidebar-card.sticky {
    position: static;
  }

  .jd-requirements-grid {
    grid-template-columns: 1fr;
  }

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

  .why-join-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .careers-hero-content h1 {
    font-size: 2.2rem;
  }

  .careers-hero-stats {
    gap: 1.5rem;
  }

  .job-cards-grid {
    grid-template-columns: 1fr;
  }

  .jd-hero-card {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem;
  }

  .jd-hero-left {
    flex-direction: column;
    align-items: center;
  }

  .jd-meta-tags {
    justify-content: center;
  }

  .why-join-grid {
    grid-template-columns: 1fr;
  }

  .jd-mindset-grid {
    grid-template-columns: 1fr;
  }

  .jd-bonus-grid {
    grid-template-columns: 1fr;
  }

  .jd-kpi-grid {
    grid-template-columns: 1fr;
  }

  .jd-org-children {
    flex-direction: column;
    align-items: center;
  }

  .jd-career-path {
    flex-direction: column;
  }

  .jd-path-line {
    width: 2px;
    height: 30px;
    margin-bottom: 0;
  }

  .careers-cta-box {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .careers-hero-content h1 {
    font-size: 1.8rem;
  }

  .careers-hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .jd-hero-info h1 {
    font-size: 1.5rem;
  }

  .jd-section-body {
    padding: 1.5rem;
  }
}
