* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #f0f0f0;
  color: #1a2a2f;
  line-height: 1.5;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f0f0f0;
}
::-webkit-scrollbar-thumb {
  background: #c22c2c;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #9e1e1e;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-hero {
  max-width: 1280px;
  padding: 0 32px;
}

section {
  padding: 90px 0;
  position: relative;
  background-color: #f0f0f0;
}

.section-title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  text-align: start;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #b01b1b, #c22c2c);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.section-subtitle {
  text-align: start;
  font-size: 1.2rem;
  color: #4a5b5f;
  font-weight: 400;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(95deg, #b22222, #c22c2c);
  border: none;
  padding: 14px 34px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1rem;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 18px rgba(194, 44, 44, 0.25);
  text-decoration: none;
  letter-spacing: 0.3px;
}

.btn-outline {
  background: transparent;
  border: 2px solid #c22c2c;
  color: #c22c2c;
  box-shadow: none;
}

.btn-outline:hover {
  background: #c22c2c;
  color: white;
}

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

.btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(95deg, #9e1e1e, #b01b1b);
  box-shadow: 0 12px 24px rgba(194, 44, 44, 0.4);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background: #f0f0f0;
  backdrop-filter: blur(12px);
  z-index: 1000;
  padding: 18px 0;
  border-bottom: 2px solid rgba(194, 44, 44, 0.5);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  background: linear-gradient(125deg, #b22222, #c22c2c);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
}

.logo span {
  font-size: 1rem;
  background: none;
  color: #c22c2c;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: #2c3e33;
  transition: 0.2s;
  font-size: 1rem;
}

.nav-links a:hover {
  color: #c22c2c;
  border-bottom: 2px solid #c22c2c;
  padding-bottom: 4px;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #c22c2c;
}

/* Hero */
.hero {
  background:
    linear-gradient(107deg, rgba(0, 0, 0, 0.709), rgba(0, 0, 0, 0.84)),
    url("https://объясняем.рф/upload/iblock/499/y6m1uac3xtgahxqdb621q80frvs811b8/RIA_8401208.HR.jpg")
      center/cover no-repeat;
  background-attachment: fixed;
  min-height: 90vh;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: white;
}

.hero-content {
  width: 100%;
}

.hero-badge {
  display: inline-block;
  background: #c22c2c;
  padding: 6px 20px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: white;
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 24px;
  color: #fff;
}

.hero h1 span {
  color: #c22c2c;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.85;
  margin-bottom: 36px;
  max-width: 550px;
  margin: auto;
  color: #dbdbdb;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

/* Cards grid (advantages) */
.cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 20px;
}

.feature-card {
  background: white;
  flex: 1 1 220px;
  padding: 28px 20px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(194, 44, 44, 0.2);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: #c22c2c;
}

.feature-icon {
  font-size: 3rem;
  color: #c22c2c;
  margin-bottom: 20px;
}

/* Requirements */
.req-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.req-item {
  background: white;
  border-radius: 15px;
  padding: 28px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.req-icon {
  font-size: 2.5rem;
  color: #c22c2c;
}

/* Steps */
.steps-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.step {
  flex: 1;
  min-width: 200px;
  background: white;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
}

.step-number {
  width: 55px;
  height: 55px;
  background: linear-gradient(145deg, #c22c2c, #b01b1b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  margin: 0 auto 20px auto;
}

/* Benefits double column */
.benefits-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.benefit-block {
  flex: 1;
  background: white;
  border-radius: 15px;
  padding: 40px 32px;
  border: 1px solid rgba(194, 44, 44, 0.2);
}

.benefit-list {
  list-style: none;
  margin-top: 24px;
}

.benefit-list li {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.benefit-list i {
  color: #c22c2c;
  width: 28px;
}

/* BONUSES section (premium cards) */
.bonus-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
  max-width: 1050px;
  margin: auto;
}

.bonus-card {
  border-radius: 15px;
  text-align: center;
  padding-bottom: 30px;
  transition: all 0.25s ease;
  width: 300px;
}

.bonus-card img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  transition: all 0.25s ease;
}

.bonus-card img:hover {
  transform: scale(1.05);
}

.bonus-amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: #c22c2c;
  margin: 16px 0 8px;
  letter-spacing: -0.02em;
}

.bonus-label {
  font-weight: 600;
  color: #2c3e33;
  font-size: 1rem;
}

/* OTHER VACANCIES (horizontal scroll) */
.vacancies-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: thin;
  padding-bottom: 16px;
  margin-top: 20px;
  cursor: grab;
}

.vacancies-scroll:active {
  cursor: grabbing;
}

.vacancies-track {
  display: inline-flex;
  gap: 28px;
  padding: 8px 4px 16px 4px;
}

.vacancy-card {
  background: white;
  border-radius: 15px;
  padding: 32px 28px;
  width: 400px;
  text-align: center;
  white-space: normal;
  transition: all 0.2s;
  display: inline-block;
  vertical-align: top;
}

.vacancy-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.vacancy-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 16px 0 8px;
  font-family: "Montserrat", sans-serif;
}

.vacancy-salary {
  font-size: 1.5rem;
  font-weight: 700;
  color: #c22c2c;
  margin: 16px 0;
}

.vacancy-card .btn-small {
  background: linear-gradient(95deg, #b22222, #c22c2c);
  padding: 10px 22px;
  border-radius: 40px;
  color: white;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s;
}

/* Form */
.form-row {
  display: block;
  width: 100%;
}
.form-card {
  background: white;
  display: flex;
  border-radius: 15px;
  justify-content: space-between;
  align-items: center;
  padding: 48px 40px;
  width: 100%;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.08);
  background-image: url(https://board-stickers.ru/64345-thickbox_default/zvezda-armii-rossii-cvetnaya-bez-nadpisi.jpg);
  background-repeat: no-repeat;
  background-position: 500px 80px;
  background-size: 200px;
}

.form-card img {
  border-radius: 10px;
}

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

.form-group input,
.form-group select {
  width: 100%;
  padding: 16px 24px;
  border-radius: 15px;
  border: 1px solid #ddceb5;
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #c22c2c;
  box-shadow: 0 0 0 3px rgba(194, 44, 44, 0.2);
}

.footer {
  background: #1a2a2f;
  color: #e0e0e0;
  padding: 48px 0 28px;
  text-align: center;
  border-top: 4px solid #c22c2c;
}

.footer i {
  color: #c22c2c;
  margin-right: 8px;
}

/* responsive */
@media (max-width: 950px) {
  .container {
    padding: 0 24px;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    gap: 1rem;
  }
  .nav-links.active {
    display: flex;
  }
  .mobile-menu-btn {
    display: block;
  }
  .section-title {
    font-size: 2rem;
  }
  .benefits-showcase {
    flex-direction: column;
  }
  .bonus-card {
    min-width: 150px;
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .form-img {
    display: none;
  }
  .bonus-grid {
    display: block !important;
    justify-content: center;
    margin-top: 20px;
    max-width: 100%;
    margin: auto;
  }

  .bonus-card {
    width: 100%;
  }
  .hero-content h1 {
    font-size: 30px !important;
  }
  .hero-content p {
    font-size: 14px;
  }
  .form-card {
    padding: 20px;
  }
  .btn.mobile {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  #form {
    margin-top: -70px;
  }
}

.btn.mobile {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ===== УНИКАЛЬНЫЕ КЛАССЫ ДЛЯ СТРАНИЦЫ ПОЛИТИКИ ===== */
/* Базовый reset (без конфликта с глобальными стилями) */
.pp-body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  background-color: #f0f0f0;
  color: #1a2a2f;
  line-height: 1.5;
  scroll-behavior: smooth;
}

/* Контейнеры */
.pp-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Навбар (уникальный) */
.pp-navbar {
  position: sticky;
  top: 0;
  background: #f0f0f0;
  backdrop-filter: blur(12px);
  z-index: 1000;
  padding: 18px 0;
  border-bottom: 2px solid rgba(194, 44, 44, 0.5);
}
.pp-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.pp-logo {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  background: linear-gradient(125deg, #b22222, #c22c2c);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
  text-decoration: none;
}
.pp-logo span {
  font-size: 1rem;
  background: none;
  color: #c22c2c;
  font-weight: 700;
}
.pp-nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.pp-nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: #2c3e33;
  transition: 0.2s;
  font-size: 1rem;
}
.pp-nav-links a:hover {
  color: #c22c2c;
  border-bottom: 2px solid #c22c2c;
  padding-bottom: 4px;
}
.pp-mobile-btn {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #c22c2c;
}

/* Основной контент политики */
.pp-policy-main {
  padding: 70px 0 90px;
  background-color: #f0f0f0;
}
.pp-policy-card {
  background: white;
  border-radius: 24px;
  padding: 48px 52px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(194, 44, 44, 0.15);
}
.pp-policy-title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #b01b1b, #c22c2c);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.pp-update-date {
  color: #5e7a7a;
  font-size: 0.9rem;
  border-left: 4px solid #c22c2c;
  padding-left: 16px;
  margin: 20px 0 32px 0;
}
.pp-section {
  margin-bottom: 40px;
}
.pp-section h2 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1e2f34;
  font-family: "Montserrat", sans-serif;
  border-left: 5px solid #c22c2c;
  padding-left: 18px;
}
.pp-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 24px 0 12px 0;
  color: #2c3e33;
}
.pp-section p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #2c3e33;
  line-height: 1.6;
}
.pp-section ul,
.pp-section ol {
  margin: 12px 0 20px 32px;
}
.pp-section li {
  margin-bottom: 10px;
  line-height: 1.5;
}
.pp-highlight {
  background: #fef5e8;
  padding: 20px 24px;
  border-radius: 16px;
  border-left: 6px solid #c22c2c;
  margin: 24px 0;
}
.pp-contacts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  background: #f9f9f9;
  border-radius: 20px;
  padding: 28px 32px;
  margin-top: 24px;
}
.pp-contact-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
}
.pp-contact-item i {
  font-size: 1.8rem;
  color: #c22c2c;
  width: 40px;
}
.pp-footer {
  background: #1a2a2f;
  color: #e0e0e0;
  padding: 48px 0 28px;
  text-align: center;
  border-top: 4px solid #c22c2c;
}
.pp-footer a {
  color: #ffb7b7;
  text-decoration: none;
}
.pp-footer a:hover {
  text-decoration: underline;
}
.pp-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(194, 44, 44, 0.1);
  padding: 10px 20px;
  border-radius: 40px;
  margin-bottom: 32px;
  color: #c22c2c;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}
.pp-back-link:hover {
  background: rgba(194, 44, 44, 0.2);
  transform: translateX(-4px);
}

/* Адаптивность */
@media (max-width: 950px) {
  .pp-container {
    padding: 0 24px;
  }
  .pp-nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    gap: 1rem;
  }
  .pp-nav-links.active {
    display: flex;
  }
  .pp-mobile-btn {
    display: block;
  }
  .pp-policy-card {
    padding: 32px 24px;
  }
  .pp-policy-title {
    font-size: 1.9rem;
  }
  .pp-section h2 {
    font-size: 1.4rem;
  }
  .pp-contacts-grid {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 550px) {
  .pp-policy-card {
    padding: 24px 18px;
  }
  .pp-policy-title {
    font-size: 20px;
  }
}
