/* ==============================================
   CAREERS PAGE SPECIFIC STYLES
============================================== */

.careers-page-body {
  background-color: #ffffff;
  color: var(--text);
  overflow-x: hidden;
}

/* Blend hero and card sections */
.careers-page-body .hero-arcade {
  background-color: transparent;
  overflow: visible;
  min-height: auto;
  padding-top: 140px;
  padding-bottom: 50px;
}

.careers-page-body .hero-arcade::before,
.careers-page-body .hero-arcade::after {
  display: none;
}

/* Culture Section */
.culture-section {
  padding: 80px 0;
  position: relative;
  z-index: 10;
}

.culture-section-grid {
  display: grid;
  grid-template-columns: 1.25fr 1.35fr;
  gap: 80px;
  align-items: center;
}

.culture-text-col {
  text-align: left;
  max-width: 520px;
}

.culture-text-col .section-tag {
  margin-bottom: 18px;
}

.culture-text-col h2 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  color: #17153a;
  letter-spacing: -0.025em;
  margin-top: 10px;
  margin-bottom: 28px;
  line-height: 1.15;
}

.culture-text-col .culture-lead {
  font-size: 1.12rem;
  color: #555273;
  line-height: 1.75;
  margin: 0;
}

.culture-list-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.culture-list-item {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  text-align: left;
}

.culture-list-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.6rem;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}



.culture-list-icon.icon-purple {
  background-color: #f0edff;
  color: #6f5cff;
}

.culture-list-icon.icon-pink {
  background-color: #ffeef6;
  color: #d12984;
}

.culture-list-icon.icon-blue {
  background-color: #eef2ff;
  color: #4f46e5;
}

.culture-list-content {
  display: flex;
  flex-direction: column;
}

.culture-list-content h3 {
  font-size: 1.3rem;
  font-weight: 750;
  color: #17153a;
  margin-bottom: 8px;
  margin-top: 4px;
}

.culture-list-content p {
  font-size: 0.94rem;
  line-height: 1.6;
  color: #555273;
}

.culture-list-divider {
  height: 1px;
  background-color: rgba(23, 21, 58, 0.08);
  width: 100%;
  position: relative;
}




/* Benefits Section */
.benefits-section {
  padding: 90px 0;
  background-color: #f7f6fb;
}

.benefits-grid-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 45px;
}

.benefits-grid-box .benefit-item {
  background: #ffffff;
  border: 1px solid rgba(23, 21, 58, 0.05);
  border-radius: 20px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.benefits-grid-box .benefit-item:hover {
  border-color: rgba(209, 41, 132, 0.2);
  box-shadow: 0 12px 30px rgba(23, 21, 58, 0.04);
}

.benefits-grid-box .benefit-item i {
  font-size: 1.5rem;
  color: #d12984;
  margin-bottom: 20px;
}

.benefits-grid-box .benefit-item h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.benefits-grid-box .benefit-item p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #555273;
}

/* Positions Section */
.positions-section {
  padding: 95px 0;
  position: relative;
  z-index: 10;
}

.positions-wrapper {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.position-group {
  margin-bottom: 55px;
}

.position-group h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid rgba(23, 21, 58, 0.06);
}

.position-card {
  background: #ffffff;
  border: 1px solid rgba(23, 21, 58, 0.07);
  border-radius: 16px;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.position-card:hover {
  border-color: rgba(111, 92, 255, 0.2);
  box-shadow: 0 8px 24px rgba(23, 21, 58, 0.03);
}

.position-info h4 {
  font-size: 1.1rem;
  font-weight: 750;
  color: var(--primary);
  margin-bottom: 8px;
}

.position-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.position-meta span {
  font-size: 0.8rem;
  color: #8c88ad;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.position-meta span i {
  color: #6f5cff;
}

/* Open apply modal classes overlay */
.lc-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(23, 21, 58, 0.6);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}

.lc-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.lc-modal-box {
  background: #17153a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  position: relative;
  width: 90%;
  max-width: 600px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  color: white;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lc-modal-overlay.open .lc-modal-box {
  transform: translateY(0);
}

.lc-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: all 0.3s ease;
}

.lc-modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.08);
}

.lc-modal-header-banner {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.lc-modal-cap-icon {
  font-size: 3rem;
  color: white;
}

.lc-modal-info h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .culture-section-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .culture-text-col {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .culture-cards-col {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .cards-subcol-right {
    margin-top: 0;
  }
}

@media (max-width: 992px) {
  .benefits-grid-box {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .position-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .btn-apply {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
