.work-with-us-section{
  background:var(--bg);
  border-bottom:1px solid var(--border);
}

.work-with-us-section .section-inner{
  max-width:1200px;
  margin:0 auto;
  padding:2rem 1.5rem 2.8rem;
}

.work-with-us-card{
  background:linear-gradient(135deg,rgba(20,30,46,0.97),rgba(13,19,32,0.98));
  border:1px solid var(--border);
  border-radius:18px;
  padding:1.35rem 1.45rem;
  box-shadow:0 14px 30px rgba(0,0,0,0.16);
  display:flex;
  flex-direction:column;
  gap:1rem;
}

.work-with-us-copy{
  display:flex;
  flex-direction:column;
  gap:0.55rem;
}

.work-with-us-title{
  margin:0;
  font-size:clamp(1.45rem,2.4vw,2rem);
}

.work-with-us-text{
  max-width:860px;
  margin:0;
  font-size:0.84rem;
  color:var(--text-muted);
  line-height:1.65;
  font-weight:300;
}

.work-with-us-roles{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
  gap:0.75rem;
}

.work-role-chip{
  display:flex;
  align-items:center;
  min-height:58px;
  background:rgba(255,255,255,0.03);
  border:1px solid var(--border);
  border-radius:12px;
  padding:0.9rem 1rem;
  font-family:'Rajdhani',sans-serif;
  font-size:1rem;
  font-weight:700;
  color:#fff;
  letter-spacing:0.3px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.03);
}

.work-with-us-actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
}

.work-with-us-actions .btn-cyan{
  flex-shrink:0;
}

.work-with-us-note{
  max-width:560px;
  margin:0;
  font-size:0.76rem;
  color:var(--text-dim);
  line-height:1.55;
}

@media (max-width: 720px){
  .work-with-us-section .section-inner{
    padding:1.75rem 1rem 2.35rem;
  }

  .work-with-us-card{
    padding:1.15rem 1.05rem;
  }

  .work-with-us-roles{
    grid-template-columns:1fr;
  }

  .work-with-us-actions{
    align-items:flex-start;
  }

  .work-with-us-actions .btn-cyan{
    width:100%;
  }
}
