/* SECTION */
.benefits {
  padding: 10px 0;
  background: #f7f7f7;
}

.container {
  width: min(100% - 80px, 1400px);
  margin: 0 auto;
}

/* LAYOUT */
.benefits .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.benefits-left h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 18px;
  color: #1a1a1a;
}

.benefits-left span {
  color: #f8b216;
}

.benefits-left p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* GRID */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.benefit-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;

  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
}

/* ICON */
.icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(248,178,22,0.12);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #f8b216;
  font-size: 22px;
}

/* TEXT */
.benefit-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.benefit-card p {
  font-size: 14px;
  color: #666;
}

/* ================= MOBILE ================= */

@media (max-width: 992px) {
  .benefits .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .benefits {
    padding: 30px 0;
  }

  .container {
    width: min(100% - 28px, 1400px);
  }

  .benefits .container {
    gap: 26px;
  }

  .benefits-left h2 {
    font-size: 26px;
    line-height: 1.15;
    margin-bottom: 14px;
  }

  .benefits-left h2::after {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    background: #f8b216;
    margin-top: 14px;
    border-radius: 10px;
  }

  .benefits-left p {
    font-size: 14px;
    line-height: 1.65;
    max-width: 310px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .benefit-card {
    display: block;
    text-align: center;
    padding: 24px 12px 22px;
    border-radius: 14px;
    min-height: 170px;
  }

  .icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    font-size: 19px;
    flex-shrink: 0;
  }

  .benefit-card h4 {
    font-size: 13px;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .benefit-card p {
    font-size: 12px;
    line-height: 1.5;
  }
}








.vacancies {
  padding: 20px 0;
  background: #f7f7f7;
}

.section-title {
  text-align: center;
  margin-bottom: 42px;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 900;
  color: #071b38;
  margin-bottom: 12px;
}

.section-title span {
  display: block;
  width: 70px;
  height: 4px;
  background: #f8b216;
  border-radius: 20px;
  margin: 0 auto;
}

.vacancy-table {
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(7, 27, 56, 0.09);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.045);
}

.vacancy-head,
.vacancy-row {
  display: grid;
  grid-template-columns: 1.45fr 1.35fr 0.9fr 1fr 0.9fr;
  align-items: center;
}

.vacancy-head {
  min-height: 58px;
  padding: 0 24px;
  background: #373435;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.vacancy-head div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vacancy-head i {
  color: #f8b216;
  font-size: 14px;
}

.vacancy-row {
  min-height: 92px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(7, 27, 56, 0.08);
  color: #52607a;
  font-size: 16px;
}

.vacancy-row:last-child {
  border-bottom: none;
}

.vacancy-row.active {
  position: relative;
  background: #f4fff8;
}

.vacancy-row.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #16a34a;
}

.job {
  display: flex;
  align-items: center;
  gap: 14px;
}

.job span {
  width: 56px;
  height: 56px;
  border-radius: 15px;
  background: rgba(248, 178, 22, 0.12);
  color: #e0a010;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.vacancy-row.active .job span {
  background: rgba(22, 163, 74, 0.12);
  color: #16a34a;
}

.job strong {
  color: #071b38;
  font-size: 18px;
  font-weight: 900;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.status.closed {
  background: #f1f3f6;
  color: #64708a;
}

.status.open {
  background: #dff7e8;
  color: #14904c;
}

.status i {
  font-size: 11px;
}

/* MOBILE */
@media (max-width: 768px) {
  .vacancy-table {
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
  }

  .vacancy-head {
    display: none;
  }

  .vacancy-row {
    display: block;
    min-height: auto;
    padding: 18px;
    margin-bottom: 14px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.045);
  }

  .vacancy-row.active {
    background: #f4fff8;
    border: 1px solid rgba(22, 163, 74, 0.18);
  }

  .vacancy-row.active::before {
    width: 4px;
    border-radius: 18px 0 0 18px;
  }

  .job {
    margin-bottom: 12px;
  }

  .vacancy-row > div:not(.job) {
    margin-left: 70px;
    margin-bottom: 8px;
    font-size: 14px;
  }

  .vacancy-row > div:last-child {
    margin-bottom: 0;
  }
}









.cv-note {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 34px 10%;

  border-radius: 0;
  border-left: none;
  border-right: none;
  border-bottom: none;
  border-top: 1px solid rgba(248, 178, 22, 0.32);

  background: rgba(248, 178, 22, 0.045);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.cv-note-icon {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 1px solid rgba(248, 178, 22, 0.35);
  color: #e0a010;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 30px;
  flex-shrink: 0;
}

.cv-note-content h3 {
  font-size: 24px;
  font-weight: 900;
  color: #071b38;
  margin-bottom: 8px;
}

.cv-note-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #52607a;
}

.cv-note-content a {
  color: #e0a010;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 768px) {
  .vacancies {
    padding: 5px 0 0;
  }

  @media (max-width: 768px) {
  .cv-note {
    margin: 0;
    padding: 26px 22px;
    border-radius: 0;

    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .cv-note-icon {
    width: 58px;
    height: 58px;
    font-size: 22px;
    margin: 0 auto;
  }

  .cv-note-content {
    width: 100%;
  }

  .cv-note-content h3 {
    font-size: 20px;
    text-align: center;
  }

  .cv-note-content p {
    font-size: 14px;
    line-height: 1.65;
    text-align: center;
    margin: 0 auto;
  }
}
}







