/* =========================
   CAREERS PAGE
========================= */

.careers-hero {
  margin-bottom: 42px;
}

.career-benefits {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(240px, 1fr));

  gap: 22px;

  margin-bottom: 60px;
}

.career-benefit {
  padding: 28px;

  border-radius: 28px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.98),
      rgba(248,250,252,0.95)
    );

  border:
    1px solid rgb(0, 0, 0);

  box-shadow:
    0 18px 50px rgb(99, 94, 94);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.career-benefit:hover {
  transform: translateY(-6px);

  box-shadow:
    0 24px 60px rgb(0, 0, 0);
}

.career-benefit__icon {
  width: 64px;
  height: 64px;

  display: grid;
  place-items: center;

  border-radius: 20px;

  font-size: 28px;

  background:
    linear-gradient(
      135deg,
      rgb(255, 0, 0),
      rgb(0, 0, 0)
    );

  margin-bottom: 18px;
}

.career-benefit h3 {
  margin: 0;

  font-size: 20px;
  line-height: 1.2;
}

.career-benefit p {
  margin-top: 12px;

  line-height: 1.8;

  color:
    rgb(0, 0, 0);
}

/* =========================
   JOBS
========================= */

.jobs-grid {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(320px, 1fr));

  gap: 26px;

  margin-top: 34px;
  margin-bottom: 70px;
}

.job-card {
  position: relative;

  padding: 30px;

  border-radius: 30px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.98),
      rgba(248,250,252,0.95)
    );

  border:
    1px solid rgb(0, 0, 0);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.06);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.job-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 28px 70px rgba(0,0,0,0.10);
}

.job-card__badge {
  display: inline-flex;

  padding:
    8px 14px;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      rgba(255,0,0,0.12),
      rgba(255,115,0,0.08)
    );

  color: #ff0303;

  font-size: 12px;
  font-weight: 700;

  margin-bottom: 18px;
}

.job-card h3 {
  margin: 0;

  font-size: 26px;
  line-height: 1.1;

  letter-spacing: -0.03em;
}

.job-card__meta {
  margin-top: 10px;

  font-size: 13px;
  font-weight: 600;

  color: #000000;
}

.job-card p {
  margin-top: 18px;

  line-height: 1.8;

  color:
    rgb(0, 0, 0);
}

.job-card__list {
  margin:
    20px 0 28px;

  padding-left: 18px;
}

.job-card__list li {
  margin-bottom: 10px;

  line-height: 1.7;

  color:
    rgb(0, 0, 0);
}

/* =========================
   CAREER FORM
========================= */

.career-form-section {
  padding: 40px;

  border-radius: 34px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.98),
      rgba(248,250,252,0.95)
    );

  border:
    1px solid rgb(0, 0, 0);

  box-shadow:
    0 24px 70px rgb(0, 0, 0);
}

.career-form__intro {
  margin-bottom: 34px;
}

.career-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-grid {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(240px, 1fr));

  gap: 22px;
}

.field {
  display: flex;
  flex-direction: column;
}

.field label {
  margin-bottom: 10px;

  font-size: 14px;
  font-weight: 600;

  color: #000000;
}

.field input,
.field textarea {
  width: 100%;

  padding:
    16px 18px;

  border-radius: 18px;

  border:
    1px solid rgb(0, 0, 0);

  background: #fff;

  font:
    inherit;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;

  border-color:
    rgba(255,0,0,0.32);

  box-shadow:
    0 0 0 4px rgba(255,0,0,0.08);
}

.field textarea {
  resize: vertical;
  min-height: 180px;
}

/* =========================
   BUTTON
========================= */

.btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: fit-content;

  padding:
    14px 28px;

  border: none;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      #000000,
      #ff0000
    );

  color: #fff;

  font-weight: 700;

  cursor: pointer;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.btn--primary:hover {
  transform: translateY(-3px);

  box-shadow:
    0 16px 40px rgba(255,0,0,0.20);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .career-form-section {
    padding: 24px;
    border-radius: 26px;
  }

  .job-card {
    padding: 22px;
    border-radius: 24px;
  }

  .job-card h3 {
    font-size: 22px;
  }

  .career-benefit {
    padding: 22px;
  }
}