

/* Start:/local/templates/souz-drivers/css/style.css?177563210144462*/
/* ============================================
   SOYUZ-LOGISTIC — LANDING PAGE STYLES
   ============================================ */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 72px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a2e;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ---------- VARIABLES ---------- */
:root {
  --red: #FF0009;
  --red-dark: #d40008;
  --blue: #0044BA;
  --blue-dark: #003596;
  --white: #FFFFFF;
  --green: #32CD32;
  --gray: #8A8A8A;
  --gray-light: #C2C2C2;
  --bg-light: #f5f7fa;
  --bg-dark: #0a0e1a;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- CONTAINER ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- TYPOGRAPHY ---------- */
.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #1a1a2e;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray);
  margin-bottom: 48px;
}

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

.highlight {
  color: var(--red);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 0, 9, 0.35);
}

.btn--primary:hover {
  background: var(--red-dark);
  box-shadow: 0 6px 30px rgba(255, 0, 9, 0.45);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--blue);
  box-shadow: var(--shadow-sm);
}

.btn--white:hover {
  background: #f0f4ff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1.0625rem;
  border-radius: 14px;
}

.btn--full {
  width: 100%;
}

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.header__logo {
  display: flex;
  align-items: center;
  font-size: 1.375rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1001;
  white-space: nowrap;
}

.logo-soyuz {
  color: var(--blue);
}

.logo-logistic {
  color: var(--red);
  margin-left: 2px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #4a4a6a;
  position: relative;
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.header__link:hover {
  color: var(--red);
}

.header__link:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--blue);
}

.header__phone:hover {
  color: var(--red);
}

.header__cta {
  padding: 10px 24px;
  font-size: 0.875rem;
}

.header__burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  transition: transform var(--transition);
}

.header__burger span {
  display: block;
  position: absolute;
  left: 50%;
  width: 24px;
  height: 2px;
  background: #1a1a2e;
  border-radius: 2px;
  transition: all var(--transition);
  transform: translateX(-50%);
}

.header__burger span:nth-child(1) {
  top: 7px;
}

.header__burger span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.header__burger span:nth-child(3) {
  bottom: 7px;
}

.header__burger.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.header__burger.active span:nth-child(2) {
  opacity: 0;
}

.header__burger.active span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a0e1a 0%, #0d1b3e 40%, #0044BA 100%);
  overflow: hidden;
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 0, 9, 0.15) 0%, transparent 70%);
  animation: heroPulse 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 68, 186, 0.2) 0%, transparent 70%);
  animation: heroPulse 8s ease-in-out infinite reverse;
}

@keyframes heroPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.02)" d="M0,64L48,80C96,96,192,128,288,128C384,128,480,96,576,106.7C672,117,768,171,864,181.3C960,192,1056,160,1152,149.3C1248,139,1344,149,1392,154.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"/></svg>');
  background-size: cover;
  background-position: bottom;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 80px 24px 60px;
}

.hero__content {
  position: relative;
  padding-right: min(560px, 52vw);
}

.hero__copy {
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.hero__title {
  font-size: 2.65rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.hero__subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  font-weight: 400;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__media {
  position: absolute;
  right: -120px;
  top: -55px;
  transform: translateY(-50%);
  width: 800px;
  display: flex;
  justify-content: flex-end;
  z-index: 1;
}

.hero__driver-image {
  width: 100%;
  height: auto;
}

.hero__stats {
  display: flex;
  gap: 24px;
  margin-top: 64px;
  flex-wrap: wrap;
}

.stat-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 24px 32px;
  min-width: 250px;
  width: 250px;
  text-align: center;
  transition: all var(--transition);
}

.stat-card__value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
  min-height: 1.2em;
}

.stat-card__label {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---------- CREW ---------- */
.crew {
  padding: 80px 0;
  background: var(--bg-light);
}

.crew__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.crew__icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: rgba(0, 68, 186, 0.08);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.crew__text h2 {
  margin-bottom: 16px;
}

.crew__text p {
  font-size: 1.0625rem;
  color: #4a4a6a;
  margin-bottom: 8px;
}

.crew__text p:last-child {
  margin-bottom: 0;
}

/* ---------- REFERRAL ---------- */
.referral {
  padding: 100px 0;
  background: transparent;
}

.referral__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.referral__content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.referral__title {
  text-align: center;
  margin-bottom: 12px;
}

.referral__lead {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  color: #3f3f55;
  margin-bottom: 24px;
}

.referral__groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 16px;
}

.referral__group {
  margin-bottom: 0;
}

.referral__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.referral__list {
  display: grid;
  gap: 8px;
  color: #3f3f55;
}

.referral__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(0, 68, 186, 0.06);
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px dashed rgba(0, 68, 186, 0.18);
}

.referral__icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.referral__icon svg {
  width: 100%;
  height: 100%;
}

.referral__closing {
  font-weight: 600;
  color: #1a1a2e;
}

.referral__group--media {
  padding: 0;
  background: transparent;
  border: none;
}

.referral__group--media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ---------- VACANCY TABS ---------- */
.vacancies {
  padding: 100px 0;
}

.vacancy-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.vacancy-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  background: var(--white);
  color: #4a4a6a;
  cursor: pointer;
  transition: all var(--transition);
}

.vacancy-tab:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.vacancy-tab.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 68, 186, 0.3);
}

.vacancy-content {
  display: none;
}

.vacancy-content.active {
  display: block;
  animation: vacancyFadeIn 0.5s ease;
}

@keyframes vacancyFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Vacancy Card --- */
.vacancy-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.vacancy-card__header {
  padding: 40px 40px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.vacancy-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.vacancy-card__badge--blue {
  background: rgba(0, 68, 186, 0.08);
  color: var(--blue);
}

.vacancy-card__badge--red {
  background: rgba(255, 0, 9, 0.08);
  color: var(--red);
}

.vacancy-card__badge--green {
  background: rgba(50, 205, 50, 0.1);
  color: var(--green);
}

.vacancy-card__badge--orange {
  background: rgba(255, 152, 0, 0.1);
  color: #e65100;
}

.vacancy-card__title {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 8px;
}

.vacancy-card__subtitle {
  font-weight: 500;
  color: var(--gray);
}

.vacancy-card__note {
  font-size: 1rem;
  color: #4a4a6a;
}

.vacancy-card__body {
  padding: 32px 40px 40px;
}

/* --- Vacancy Highlights --- */
.vacancy-highlights {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.vacancy-highlight {
  flex: 1;
  min-width: 140px;
  background: linear-gradient(135deg, #f0f4ff, #eef7ee);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  text-align: center;
  border: 1px solid rgba(0, 68, 186, 0.08);
}

.vacancy-highlight__value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 4px;
}

.vacancy-highlight__label {
  display: block;
  font-size: 0.8125rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Vacancy Sections Grid --- */
.vacancy-card__sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 28px;
}

.vacancy-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 16px;
}

.vacancy-section-title svg {
  color: var(--blue);
  flex-shrink: 0;
}

/* --- Vacancy Lists --- */
.vacancy-list {
  list-style: none;
}

.vacancy-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 0.9375rem;
  color: #4a4a6a;
  line-height: 1.6;
}

.vacancy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.5;
}

.vacancy-list--check li::before {
  content: '✓';
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  opacity: 1;
  color: var(--green);
  font-weight: 700;
  font-size: 0.875rem;
  top: 8px;
}

/* --- Vacancy Location --- */
.vacancy-location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(0, 68, 186, 0.04);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: #4a4a6a;
}

.vacancy-location svg {
  color: var(--red);
  flex-shrink: 0;
}

/* --- Vacancy Requirements --- */
.vacancy-requirements {
  padding: 24px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 8px;
}

/* --- Vacancy CTA --- */
.vacancy-card__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 8px;
}

/* --- Vacancy Tags --- */
.vacancy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.vacancy-tags span {
  display: inline-block;
  padding: 6px 14px;
  background: var(--bg-light);
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 500;
}

/* --- Outline Dark Button --- */
.btn--outline-dark {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn--outline-dark:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 68, 186, 0.3);
}

/* ---------- CONDITIONS ---------- */
.conditions {
  padding: 100px 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.condition-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.condition-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.condition-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.condition-card:hover::before {
  transform: scaleX(1);
}

.condition-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: rgba(0, 68, 186, 0.06);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  transition: all var(--transition);
}

.condition-card:hover .condition-card__icon {
  background: var(--blue);
  color: var(--white);
}

.condition-card__title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a2e;
}

.condition-card__desc {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  padding: 40px 0;
}

.cta-banner__inner {
  background: linear-gradient(135deg, var(--blue) 0%, #1a237e 100%);
  border-radius: var(--radius);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner__inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 0, 9, 0.2) 0%, transparent 70%);
}

.cta-banner__title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}

.cta-banner__text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  position: relative;
}

.cta-banner__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

/* ---------- ADVANTAGES ---------- */
.advantages {
  padding: 100px 0;
  background: var(--bg-light);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.advantage-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 24px;
  transition: all var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.advantage-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.advantage-item__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage-item__icon--green {
  background: rgba(50, 205, 50, 0.1);
  color: var(--green);
}

.advantage-item__icon--red {
  background: rgba(255, 0, 9, 0.08);
  color: var(--red);
}

.advantage-item__icon--blue {
  background: rgba(0, 68, 186, 0.08);
  color: var(--blue);
}

.advantage-item__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.advantage-item__desc {
  font-size: 0.875rem;
  color: var(--gray);
}

/* ---------- WORK FORMAT ---------- */
.work-format {
  padding: 100px 0;
}

.work-format__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.work-format__options {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 16px;
}

.work-format__option {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-light);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.work-format__badge {
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 6px 12px;
  border-radius: 8px;
}

.work-format__note {
  font-size: 0.9375rem;
  color: var(--gray);
  font-style: italic;
}

.requirements-list {
  margin-top: 24px;
}

.requirements-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.0625rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.requirements-list li:last-child {
  border-bottom: none;
}

/* ---------- REVIEWS ---------- */
.reviews {
  padding: 100px 0;
  background: var(--bg-light);
}

.reviews-swiper {
  padding-bottom: 60px !important;
  margin-top: 8px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #5c6bc0);
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card__name {
  font-size: 1rem;
  font-weight: 700;
}

.review-card__exp {
  font-size: 0.8125rem;
  color: var(--gray);
}

.review-card__stars {
  color: #f5a623;
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-card__text {
  font-size: 0.9375rem;
  color: #4a4a6a;
  line-height: 1.65;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--gray-light);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--red);
  width: 28px;
  border-radius: 5px;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  padding: 40px 0;
}

.cta-section__inner {
  background: linear-gradient(135deg, var(--red) 0%, #b71c1c 100%);
  border-radius: var(--radius);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section__inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.cta-section__title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 32px;
  position: relative;
  line-height: 1.3;
}

.cta-section__title .highlight {
  color: #FFD700;
}

.cta-section__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

/* ---------- APPLICATION FORM ---------- */
.application {
  padding: 100px 0;
  background: var(--bg-light);
}

.application__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.application__text p {
  font-size: 1.0625rem;
  color: var(--gray);
  margin-bottom: 32px;
}

.application__benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 14px;
}

.application__form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.application--referral {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.application--referral .application__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
}

.application--referral .application__form {
  width: 100%;
  max-width: 520px;
  text-align: left;
}

.application--privacy .container {
  max-width: 980px;
}

.application--privacy .application__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 16px;
}

.application--privacy .section-subtitle {
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 1rem;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  color: #1a1a2e;
  transition: all var(--transition);
  outline: none;
}

/* ---------- SELECT2 ---------- */
.select2-container {
  width: 100% !important;
  font-family: inherit;
}

.select2-container .select2-selection--single {
  height: auto;
  min-height: 52px;
  padding: 12px 16px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  transition: all var(--transition);
  display: flex;
  align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #1a1a2e;
  padding-left: 0;
  line-height: 1.4;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: var(--gray-light);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  right: 12px;
}

.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--single {
  border-color: var(--blue);
  background: var(--white);
}

.select2-dropdown {
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.select2-results__option {
  padding: 10px 16px;
  font-size: 0.9375rem;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background: rgba(0, 68, 186, 0.08);
  color: #1a1a2e;
}

.select2-container--default .select2-results__option--selected {
  background: rgba(0, 68, 186, 0.12);
  color: #1a1a2e;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--blue);
  background: var(--white);
}

.form-group input::placeholder {
  color: var(--gray-light);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--gray);
}

.form-checkbox input[type="checkbox"] {
  accent-color: var(--blue);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.form-link {
  color: var(--blue);
  text-decoration: underline;
}

.form-link:hover {
  color: var(--red);
}

/* ---------- CONTACTS ---------- */
.contacts {
  padding: 100px 0;
}

.contacts__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.contacts__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 24px;
}

.contacts__phone:hover {
  color: var(--red);
}

.contacts__messengers {
  display: flex;
  gap: 12px;
}

.messenger-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition);
}

.messenger-btn:hover {
  transform: translateY(-3px);
}

.messenger-btn--wa {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.messenger-btn--wa:hover {
  background: #1fb855;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.messenger-btn--tg {
  background: #0088cc;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 136, 204, 0.3);
}

.messenger-btn--tg:hover {
  background: #006da3;
  box-shadow: 0 8px 30px rgba(0, 136, 204, 0.4);
}

.messenger-btn--max {
    background-image: linear-gradient(to right, #2563eb, #7c3aed);
    color: var(--white);
    box-shadow: 0 2px 10px #2563eb;
}

.messenger-btn--max:hover {
    background-image: linear-gradient(to right, #2563eb, #7c3aed);
    box-shadow: 0 8px 30px #7c3aed;
}

.messenger-btn--max img {
    width: 24px;
    height: 24px;
}

.contacts__map {
  border-radius: var(--radius);
  overflow: hidden;
}

.map-placeholder {
  width: 100%;
  height: 280px;
  background: var(--bg-light);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray);
  font-size: 1rem;
  border: 2px dashed var(--gray-light);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-dark);
  padding: 40px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__logo {
  font-size: 1.125rem;
  font-weight: 900;
}

.footer__logo .logo-soyuz {
  color: rgba(255, 255, 255, 0.9);
}

.footer__logo .logo-logistic {
  color: var(--red);
}

.footer__copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
}

.footer__right {
  display: flex;
  gap: 24px;
}

.footer__link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__link:hover {
  color: var(--white);
}

.contacts__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.contacts__messengers {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ---------- STICKY CALL BUTTON ---------- */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 30px rgba(255, 0, 9, 0.45);
  z-index: 999;
  transition: all var(--transition);
  animation: stickyPulse 2s ease-in-out infinite;
}

.sticky-call:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 40px rgba(255, 0, 9, 0.55);
}

@keyframes stickyPulse {

  0%,
  100% {
    box-shadow: 0 6px 30px rgba(255, 0, 9, 0.45);
  }

  50% {
    box-shadow: 0 6px 30px rgba(255, 0, 9, 0.25), 0 0 0 12px rgba(255, 0, 9, 0.1);
  }
}

/* ---------- MODAL ---------- */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal__content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  width: 90%;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.4s ease;
}

@keyframes modalIn {
  from {
    transform: scale(0.8) translateY(20px);
    opacity: 0;
  }

  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--bg-light);
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.modal__close:hover {
  background: #e0e0e0;
}

.modal__icon {
  margin-bottom: 20px;
}

.modal__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.modal__text {
  color: var(--gray);
}


/* ---------- ANIMATIONS ---------- */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero__title {
    font-size: 2.5rem;
  }

  .hero__content {
    padding-right: min(460px, 50vw);
  }

  .hero__media {
    right: -20px;
    width: 715px;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .application__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contacts__inner {
    grid-template-columns: 1fr;
  }

  .work-format__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vacancy-card__sections {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .referral__inner {
    grid-template-columns: 1fr;
  }

  .referral__groups {
    grid-template-columns: 1fr;
  }

  .referral__group--media img {
    min-height: 320px;
  }

  .header__nav {
    gap: 24px;
  }
}

@media (max-width: 1200px) {
  .header__actions {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    height: 400px;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 48px;
    padding-bottom: 32px;
    gap: 32px;
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }

  .header__nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header__nav .header__link {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1a1a2e;
  }

  .hero__title {
    font-size: 2.25rem;
  }

  .stat-card {
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .header {
    position: fixed;
    background: rgba(255, 255, 255, 0.98);
  }

  .header__nav {
    top: 72px;
  }

  .header__burger span {
    width: 24px;
    height: 2px;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 48px;
  }

  .hero__inner {
    padding: 40px 20px;
  }

  .hero__title {
    font-size: 1.875rem;
    letter-spacing: -0.5px;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero__buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .referral {
    padding: 64px 0;
  }

  .referral__content {
    padding: 20px;
  }

  .referral__lead {
    font-size: 1.02rem;
  }

  .referral__groups {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .referral__group--media img {
    min-height: 260px;
  }

  .hero__media {
    position: static;
    transform: none;
    width: 100%;
    justify-content: center;
    margin-top: 24px;
  }

  .hero__content {
    padding-right: 0;
  }

  .hero__driver-image {
    max-width: 100%;
  }

  .hero__stats {
    gap: 16px;
    margin-top: 48px;
    justify-content: center;
  }

  .stat-card {
    min-width: 160px;
    width: auto;
    padding: 20px 24px;
    flex: 0 1 auto;
  }

  .stat-card__value {
    font-size: 1.5rem;
  }

  .stat-card__label {
    font-size: 0.8125rem;
  }

  .section-title {
    font-size: 1.625rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .crew {
    padding: 64px 0;
  }

  .crew__inner {
    flex-direction: column;
    padding: 32px 24px;
    text-align: center;
    gap: 24px;
  }

  .crew__icon {
    width: 64px;
    height: 64px;
  }

  .cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .condition-card {
    padding: 24px 20px;
  }

  .conditions,
  .advantages,
  .work-format,
  .reviews,
  .application,
  .contacts,
  .vacancies {
    padding: 64px 0;
  }

  .cta-banner__inner,
  .cta-section__inner {
    padding: 48px 24px;
  }

  .cta-banner__title,
  .cta-section__title {
    font-size: 1.5rem;
  }

  .cta-banner__buttons,
  .cta-section__buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-banner__buttons .btn,
  .cta-section__buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .advantages-grid {
    gap: 16px;
  }

  .advantage-item {
    padding: 20px;
    gap: 16px;
  }

  .advantage-item__icon {
    width: 44px;
    height: 44px;
  }

  .application__inner {
    gap: 32px;
  }

  .application__text p {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .application__form {
    padding: 32px 24px;
  }

  .work-format__options {
    flex-direction: column;
  }

  .work-format__option {
    width: 100%;
    justify-content: center;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .footer__right {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .sticky-call {
    display: flex;
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }

  .vacancy-card__header,
  .vacancy-card__body {
    padding-left: 24px;
    padding-right: 24px;
  }

  .vacancy-card__title {
    font-size: 1.375rem;
  }

  .vacancy-tabs {
    gap: 8px;
    margin-bottom: 32px;
  }

  .vacancy-tab {
    padding: 12px 16px;
    font-size: 0.8125rem;
    gap: 6px;
  }

  .vacancy-tab svg {
    width: 18px;
    height: 18px;
  }

  .vacancy-highlights {
    gap: 12px;
    margin-bottom: 24px;
  }

  .vacancy-highlight {
    min-width: 120px;
    padding: 16px 20px;
  }

  .vacancy-highlight__value {
    font-size: 1.25rem;
  }

  .vacancy-tags {
    gap: 6px;
    margin-top: 20px;
    padding-top: 20px;
  }

  .vacancy-tags span {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .contacts__phone {
    font-size: 1.25rem;
    margin-bottom: 20px;
    justify-content: center;
  }

  .contacts__messengers {
    flex-wrap: wrap;
    justify-content: center;
  }

  .messenger-btn {
    padding: 12px 20px;
    font-size: 0.875rem;
  }

  .review-card {
    padding: 24px;
  }

  .review-card__header {
    gap: 12px;
  }

  .review-card__avatar {
    width: 44px;
    height: 44px;
  }

  .modal__content {
    padding: 40px 24px;
    width: 95%;
  }

  .modal__title {
    font-size: 1.375rem;
  }

  .footer__left {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  html {
    font-size: 14px;
    scroll-padding-top: 64px;
  }

  .header__inner {
    height: 64px;
  }

  .header__logo {
    font-size: 1.125rem;
  }

  .header__nav {
    top: 64px;
    padding-top: 32px;
    gap: 24px;
  }

  .header__nav .header__link {
    font-size: 1.25rem;
  }

  .header__burger {
    width: 36px;
  }

  .header__burger span {
    width: 20px;
    height: 2px;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 32px;
  }

  .hero__inner {
    padding: 24px 10px;
  }

  .hero__title {
    font-size: 1.5rem;
  }

  .hero__subtitle {
    font-size: 0.9375rem;
  }

  .hero__stats {
    flex-direction: column;
    align-items: center; 
    gap: 12px;
    margin-top: 32px; 
  }

  .stat-card {
    min-width: 100%;
    width: 100%;
    padding: 16px 20px;
  }

  .stat-card__value {
    font-size: 1.375rem;
  }

  .section-title {
    font-size: 1.375rem;
  }

  .section-subtitle {
    font-size: 0.9375rem;
    margin-bottom: 24px;
  }

  .crew {
    padding: 48px 0;
  }

  .crew__inner {
    padding: 24px 16px;
    gap: 20px;
  }

  .crew__icon {
    width: 56px;
    height: 56px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .condition-card {
    padding: 20px 16px;
  }

  .condition-card__icon {
    width: 48px;
    height: 48px;
  }

  .condition-card__title {
    font-size: 1.25rem;
  }

  .conditions,
  .referral,
  .advantages,
  .work-format,
  .reviews,
  .application,
  .contacts,
  .vacancies {
    padding: 36px 0;
  }

  .referral__lead {
    font-size: 0.98rem;
  }

  .referral__subtitle {
    font-size: 1rem;
  }

  .referral__group--media img {
    min-height: 220px;
  }

  .cta-banner__inner,
  .cta-section__inner {
    padding: 40px 20px;
  }

  .cta-banner__title,
  .cta-section__title {
    font-size: 1.25rem;
  }

  .cta-banner__text,
  .cta-section__buttons .btn {
    font-size: 0.9375rem;
  }

  .advantages-grid {
    gap: 12px;
  }

  .advantage-item {
    padding: 16px;
    gap: 12px;
    flex-direction: column;
    text-align: center;
  }

  .advantage-item__icon {
    width: 40px;
    height: 40px;
  }

  .advantage-item__title {
    font-size: 0.9375rem;
  }

  .advantage-item__desc {
    font-size: 0.8125rem;
  }

  .application__inner {
    gap: 24px;
  }

  .application__text p {
    font-size: 0.9375rem;
    margin-bottom: 20px;
  }

  .application__benefits li {
    font-size: 0.9375rem;
    margin-bottom: 12px;
  }

  .application__form {
    padding: 24px 16px;
  }

  .form-group input,
  .form-group select {
    padding: 12px 14px;
    font-size: 0.9375rem;
  }

  .select2-container .select2-selection--single {
    min-height: 46px;
    padding: 10px 14px;
  }

  .form-checkbox {
    font-size: 0.8125rem;
    gap: 8px;
  }

  .form-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
  }

  .work-format__inner {
    gap: 24px;
  }

  .work-format__option {
    padding: 14px 18px;
    font-size: 0.9375rem;
  }

  .work-format__badge {
    font-size: 0.8125rem;
    padding: 5px 10px;
  }

  .work-format__note {
    font-size: 0.875rem;
  }

  .requirements-list li {
    font-size: 0.9375rem;
    gap: 10px;
    padding: 10px 0;
  }

  .footer__logo {
    font-size: 1rem;
  }

  .footer__copy {
    font-size: 0.75rem;
  }

  .footer__link {
    font-size: 0.8125rem;
  }

  .sticky-call {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
  }

  .vacancy-card__header {
    padding: 24px 16px 20px;
  }

  .vacancy-card__body {
    padding: 20px 16px 24px;
  }

  .vacancy-card__title {
    font-size: 1.25rem;
  }

  .vacancy-card__subtitle {
    font-size: 0.9375rem;
  }

  .vacancy-card__note {
    font-size: 0.875rem;
  }

  .vacancy-card__badge {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .vacancy-tabs {
    gap: 6px;
    margin-bottom: 24px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
    padding-bottom: 8px;
  }

  .vacancy-tabs::-webkit-scrollbar {
    display: none;
  }

  .vacancy-tab {
    padding: 10px 14px;
    font-size: 0.75rem;
    gap: 4px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .vacancy-tab svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  .vacancy-highlights {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }

  .vacancy-highlight {
    min-width: 100%;
    width: 100%;
    padding: 14px 16px;
  }

  .vacancy-highlight__value {
    font-size: 1.125rem;
  }

  .vacancy-highlight__label {
    font-size: 0.75rem;
  }

  .vacancy-card__sections {
    gap: 20px;
  }

  .vacancy-section-title {
    font-size: 1rem;
    gap: 6px;
  }

  .vacancy-section-title svg {
    width: 18px;
    height: 18px;
  }

  .vacancy-list li {
    font-size: 0.875rem;
    padding: 6px 0 6px 20px;
  }

  .vacancy-list li::before {
    width: 6px;
    height: 6px;
    top: 12px;
  }

  .vacancy-list--check li::before {
    font-size: 0.75rem;
    top: 6px;
  }

  .vacancy-location {
    font-size: 0.875rem;
    padding: 12px 14px;
    gap: 6px;
  }

  .vacancy-location svg {
    width: 16px;
    height: 16px;
  }

  .vacancy-requirements {
    padding: 20px 0;
  }

  .vacancy-card__cta {
    flex-direction: column;
    gap: 12px;
  }

  .vacancy-card__cta .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
  }

  .vacancy-tags {
    gap: 6px;
    margin-top: 16px;
    padding-top: 16px;
  }

  .vacancy-tags span {
    padding: 5px 10px;
    font-size: 0.6875rem;
  }

  .contacts__phone {
    font-size: 1.125rem;
    margin-bottom: 16px;
    justify-content: center;
  }

  .contacts__messengers {
    width: 100%;
    justify-content: center;
  }

  .messenger-btn {
    padding: 12px 18px;
    font-size: 0.8125rem;
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }

  .map-placeholder {
    height: 200px;
    font-size: 0.875rem;
  }

  .review-card {
    padding: 20px 16px;
  }

  .review-card__avatar {
    width: 40px;
    height: 40px;
    font-size: 0.8125rem;
  }

  .review-card__name {
    font-size: 0.9375rem;
  }

  .review-card__exp {
    font-size: 0.75rem;
  }

  .review-card__text {
    font-size: 0.875rem;
  }

  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }

  .swiper-pagination-bullet-active {
    width: 24px;
  }

  .modal__content {
    padding: 32px 20px;
    width: 95%;
  }

  .modal__close {
    width: 32px;
    height: 32px;
    top: 12px;
    right: 12px;
    font-size: 1.125rem;
  }

  .modal__icon svg {
    width: 48px;
    height: 48px;
  }

  .modal__title {
    font-size: 1.25rem;
  }

  .modal__text {
    font-size: 0.9375rem;
  }

  [data-animate] {
    transform: translateY(20px);
  }
}

/* End */
/* /local/templates/souz-drivers/css/style.css?177563210144462 */
