.career-hero {
  background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: hidden;
  text-align: left;
}
.career-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content {
  width: 100%;
}
.hero-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(0, 82, 147, 0.1);
  color: var(--primary-blue);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.btn-outline {
  background: transparent;
  color: var(--primary-blue);
  padding: 12px 24px;
  border-radius: 8px;
  border: 2px solid rgba(0, 78, 146, 0.1);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  border-color: var(--primary-blue);
  background: rgba(0, 78, 146, 0.05);
}
.career-visual-hub {
  position: relative;
  width: 400px;
  width: 400px;
  height: 300px;
  margin: 0 auto;
  margin: 0 auto;
}
.hub-connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.conn-line {
  stroke: #e2e8f0;
  stroke-width: 2;
  stroke-dasharray: 6 6;
  stroke-dasharray: 6 6;
}
@keyframes dash {
  to {
    stroke-dashoffset: 1000;
  }
}
.hub-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  z-index: 2;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}
.center-node {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--primary-blue);
  color: #fff;
  z-index: 5;
  box-shadow: 0 20px 40px rgba(0, 78, 146, 0.2);
}
.logo-mark {
  font-weight: 800;
  font-size: 1.5rem;
}
.node-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--primary-blue);
  opacity: 0;
  opacity: 0;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.sat-node {
  padding: 12px 16px;
  gap: 4px;
  border: 1px solid #f1f5f9;
}
.sat-node i {
  font-size: 1.25rem;
  color: var(--primary-blue);
}
.node-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
}
.node-1 {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}
.node-2 {
  top: 10%;
  right: 20%;
  animation-delay: 1.5s;
}
.node-3 {
  bottom: 15%;
  left: 20%;
  animation-delay: 3s;
}
.node-4 {
  bottom: 15%;
  right: 20%;
  animation-delay: 4.5s;
}
@keyframes floatNode {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes floatCenter {
  0%,
  100% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-50%, calc(-50% - 10px));
  }
}
.culture-section {
  padding: 80px 0;
  background: #fff;
}
.culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.culture-card {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.culture-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 78, 146, 0.1);
}
.cta-section {
  padding: 80px 0;
  background: var(--primary-blue);
  color: var(--white);
  text-align: center;
}
.cta-section .section-title {
  color: var(--white);
  margin-bottom: 16px;
}
.cta-section p {
  margin-bottom: 32px;
  font-size: 1.2rem;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.9);
}
.cta-section .btn {
  background: var(--white);
  color: var(--primary-blue);
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.cta-section .btn:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.culture-card .icon-box {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
}
.icon-box.blue,
.icon-box.green,
.icon-box.purple {
  background: rgba(0, 78, 146, 0.08);
  color: var(--primary-blue);
}
.culture-card h3 {
  font-size: 1.25rem;
  color: #1e293b;
  margin-bottom: 12px;
}
.culture-card p {
  color: #64748b;
  line-height: 1.6;
}
.positions-section {
  padding: 80px 0;
  background: #f8fafc;
}
.positions-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 40px auto 0;
}
.job-card {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}
.job-card:hover {
  transform: translateX(8px);
  border-left: 4px solid var(--primary-blue);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.job-info {
  flex: 1;
}
.job-title {
  font-size: 1.25rem;
  color: #1e293b;
  margin-bottom: 8px;
  font-weight: 700;
}
.job-meta {
  display: flex;
  gap: 24px;
}
.job-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.btn-arrow {
  color: var(--primary-blue);
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}
.btn-arrow:hover {
  gap: 12px;
}
.btn-details {
  color: #64748b;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s ease;
  background: #f1f5f9;
}
.btn-details:hover {
  background: #e2e8f0;
  color: #334155;
}
@media (max-width: 992px) {
  .career-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .culture-grid {
    grid-template-columns: 1fr;
  }
  .career-visual-hub {
    transform: scale(0.9);
  }
}
@media (max-width: 768px) {
  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .job-meta {
    flex-direction: column;
    gap: 8px;
  }
  .job-actions {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }
  .btn-arrow,
  .btn-details {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
  }
  .btn-arrow {
    background: #f1f5f9;
    background: transparent;
  }
  .career-visual-hub {
    width: 100%;
    max-width: 350px;
    height: 300px;
    transform: scale(0.85);
  }
  .node-1 {
    left: 5%;
  }
  .node-2 {
    right: 5%;
  }
  .node-3 {
    left: 5%;
  }
  .node-4 {
    right: 5%;
  }
}
.apply-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.apply-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.apply-modal-content {
  background: #fff;
  width: 90%;
  max-width: 600px;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease 0.1s;
  max-height: 90vh;
  overflow-y: auto;
}
.apply-modal-overlay.active .apply-modal-content {
  transform: translateY(0);
  opacity: 1;
}
.close-modal-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #64748b;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}
.close-modal-btn:hover {
  color: #1e293b;
}
.modal-header {
  text-align: center;
  margin-bottom: 24px;
}
.modal-header h2 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 8px;
}
.modal-header p {
  color: #64748b;
  font-size: 0.95rem;
}
.apply-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.apply-form .form-group {
  margin-bottom: 20px;
}
.apply-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #1e293b;
  font-size: 0.9rem;
}
.apply-form .form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.apply-form .form-input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 78, 146, 0.1);
}
.apply-form textarea.form-input {
  resize: vertical;
}
.btn-block {
  width: 100%;
  justify-content: center;
}
.file-upload-wrapper {
  position: relative;
  width: 100%;
}
.file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.file-upload-visual {
  border: 2px dashed #cbd5e1;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  background: #f8fafc;
}
.file-input:hover ~ .file-upload-visual,
.file-input:focus ~ .file-upload-visual {
  border-color: var(--primary-blue);
  background: #f0f9ff;
}
.file-upload-visual i {
  font-size: 24px;
  color: var(--primary-blue);
}
.file-upload-visual span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #334155;
}
.file-upload-visual small {
  font-size: 0.8rem;
  color: #64748b;
}
@media (max-width: 600px) {
  .apply-form .form-row {
    grid-template-columns: 1fr;
  }
  .apply-modal-content {
    padding: 24px;
    width: 95%;
  }
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}
#app-error-modal {
  z-index: 10000;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-card {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 450px;
  text-align: center;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.modal-overlay.active .modal-card {
  transform: translateY(0);
}
.success-icon {
  width: 80px;
  height: 80px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #2e7d32;
}
.error-icon {
  width: 80px;
  height: 80px;
  background: #fef2f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #ef4444;
}
.modal-card h3 {
  color: var(--primary-blue);
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.modal-card p {
  color: var(--text-grey);
  margin-bottom: 32px;
  line-height: 1.6;
}
.skeleton,
.skeleton-text {
  background: #e2e8f0;
  background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  color: transparent !important;
  pointer-events: none;
  border-radius: 6px;
  display: inline-block;
}
@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.empty-state-card {
  background: #fff;
  padding: 60px 40px;
  border-radius: 16px;
  text-align: center;
  border: 1px dashed #cbd5e1;
  max-width: 600px;
  margin: 40px auto;
}
.empty-icon {
  width: 80px;
  height: 80px;
  background: #f1f5f9;
  color: #64748b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
}
.empty-state-card h3 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 12px;
}
.empty-state-card p {
  color: #64748b;
  margin-bottom: 32px;
  line-height: 1.6;
}
