/* Careers Page Styles */

/* Hero Section */
.careers-hero {
  padding: 10rem 0 6rem;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at 50% 30%, rgba(0, 255, 136, 0.1) 0%, transparent 60%);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 50px;
  color: #00ff88;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.careers-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-description {
  font-size: 1.25rem;
  color: #b8c5d6;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.scroll-link {
  scroll-behavior: smooth;
}

/* Culture Section */
.culture-section {
  padding: 5rem 0;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.culture-card {
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.culture-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 136, 0.4);
  box-shadow: 0 20px 50px rgba(0, 255, 136, 0.15);
}

.culture-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.culture-card h3 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.culture-card p {
  color: #8895a7;
  line-height: 1.7;
  font-size: 0.95rem;
}

.culture-cta {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(0, 255, 136, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 136, 0.1);
}

.cta-text {
  color: #b8c5d6;
  font-size: 1.1rem;
  line-height: 1.7;
}

.email-link {
  color: #00ff88;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.email-link:hover {
  color: #00d4ff;
  text-decoration: underline;
}

/* Perks Section */
.perks-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.02) 0%, transparent 100%);
}

.center-text {
  text-align: center;
  margin-bottom: 3rem;
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.perk-item {
  text-align: center;
}

.perk-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.25rem;
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.perk-item:hover .perk-icon-wrapper {
  background: rgba(0, 255, 136, 0.1);
  border-color: rgba(0, 255, 136, 0.4);
  transform: scale(1.1);
}

.perk-icon {
  font-size: 2rem;
}

.perk-item h4 {
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.perk-item p {
  color: #8895a7;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Vacancies Section */
.vacancies-section {
  padding: 5rem 0;
}

.job-card {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.job-card:hover {
  border-color: rgba(0, 255, 136, 0.3);
  box-shadow: 0 15px 40px rgba(0, 255, 136, 0.1);
}

.job-header {
  padding: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  background: rgba(0, 255, 136, 0.03);
  border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.job-title-group {
  flex: 1;
}

.job-card h3 {
  color: #ffffff;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #8895a7;
  font-size: 0.9rem;
}

.meta-icon {
  font-size: 1rem;
}

.job-toggle {
  padding: 0.75rem 1.5rem;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 8px;
  color: #00ff88;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.job-toggle:hover {
  background: rgba(0, 255, 136, 0.2);
  border-color: rgba(0, 255, 136, 0.5);
}

.toggle-icon {
  transition: transform 0.3s ease;
}

.job-toggle.active .toggle-icon {
  transform: rotate(180deg);
}

.job-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.job-content.expanded {
  max-height: 5000px;
}

.job-section {
  padding: 2rem 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.job-section:last-child {
  border-bottom: none;
}

.job-section h4 {
  color: #00ff88;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.job-section p {
  color: #b8c5d6;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.job-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.job-list li {
  color: #b8c5d6;
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.job-list li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: #00ff88;
  font-weight: 700;
}

.job-list.bonus li::before {
  content: '+';
  color: #00d4ff;
}

.apply-instructions {
  color: #8895a7;
  font-size: 0.95rem;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.job-actions {
  padding: 2rem 2.5rem;
  background: rgba(0, 255, 136, 0.02);
  text-align: center;
}

/* Unsolicited Card */
.unsolicited-card {
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.unsolicited-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.1);
}

.unsolicited-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.unsolicited-card h3 {
  color: #ffffff;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.unsolicited-card p {
  color: #b8c5d6;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.unsolicited-detail {
  color: #8895a7;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

/* Final CTA */
.careers-cta {
  padding: 4rem 0 6rem;
}

.cta-box {
  text-align: center;
  padding: 4rem 3rem;
  border-radius: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.cta-box h2 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 2.25rem;
}

.cta-box p {
  font-size: 1.15rem;
  color: #b8c5d6;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .careers-hero h1 {
    font-size: 2.75rem;
  }
  
  .culture-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .perks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .job-header {
    flex-direction: column;
  }
  
  .job-toggle {
    align-self: flex-start;
  }
}

@media (max-width: 768px) {
  .careers-hero {
    padding: 8rem 0 4rem;
  }
  
  .careers-hero h1 {
    font-size: 2.25rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .culture-grid,
  .perks-grid {
    grid-template-columns: 1fr;
  }
  
  .job-header {
    padding: 2rem;
  }
  
  .job-section {
    padding: 1.5rem 2rem;
  }
  
  .job-actions {
    padding: 1.5rem 2rem;
  }
  
  .job-meta {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .cta-box {
    padding: 3rem 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .careers-hero h1 {
    font-size: 1.875rem;
  }
  
  .job-card h3 {
    font-size: 1.5rem;
  }
  
  .unsolicited-card {
    padding: 2.5rem 2rem;
  }
  
  .unsolicited-card h3 {
    font-size: 1.5rem;
  }
  
  .cta-box h2 {
    font-size: 1.75rem;
  }
}