/* Contacts page background */
.contacts-page-bg {
  position: fixed;
  inset: 0;
  width: auto;
  height: auto;
  z-index: -2;
  background: url('/static/main/images/Onas.jpg') center center / cover no-repeat;
  pointer-events: none;
}

body .contacts-page-bg {
  position: fixed;
  inset: 0;
  width: auto;
  height: auto;
  z-index: -2;
  background: url('/static/main/images/Onas.jpg') center center / cover no-repeat;
  pointer-events: none;
}

/* Hero New Section */
.hero-new {
  width: 100%;
  min-height: 100vh;
  padding: 120px 20px 80px;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.hero-new::before {
  content: none;
}

.hero-new__container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-new__content {
  flex: 1;
  color: #000000;
  padding-right: 20px;
}

.hero-new__form {
  flex: 0 0 450px;
  max-width: 100%;
}

.hero-new::before {
  content: none;
}

.hero-new__container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-new__content {
  flex: 1;
  color: #000000;
  padding-right: 20px;
}

.hero-new__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 20px 0;
  font-family: 'Playfair Display', serif;
  color: #000000;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  animation: titleSlideIn 1s ease-out;
}

@keyframes titleSlideIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-new__features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.hero-new__features li {
  font-size: 1.5rem;
  margin-bottom: 15px;
  padding-left: 50px;
  position: relative;
  color: #000000;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.hero-new__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #2ecc71;
  font-weight: bold;
  font-size: 2.6rem;
  text-shadow: none;
}

.hero-new__btn {
  display: inline-block;
  background: #000000;
  color: #ffffff;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.hero-new__btn:hover {
  background: #333333;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-new__subtitle {
  font-size: 1.6rem;
  color: #000000;
  margin: 0;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6);
}

.hero-new__form {
  flex: 0 0 600px;
  max-width: 100%;
}

.hero-new__form .contacts-callback-form {
  background: #f5f5f5;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 0 40px rgba(46, 204, 113, 0.5), 0 0 80px rgba(46, 204, 113, 0.3), 0 10px 40px rgba(0, 0, 0, 0.1);
  min-height: 700px;
  display: flex;
  flex-direction: column;
  border: 2px solid rgba(46, 204, 113, 0.3);
}

.hero-new__form .contacts-form-title h2 {
  font-size: 1.6rem;
  color: #000000;
  margin: 0 0 12px 0;
  font-weight: 700;
}

.hero-new__form .contacts-form-title p {
  font-size: 1rem;
  color: #666666;
  margin: 0;
  line-height: 1.5;
}

.hero-new__form .contacts-callback-form form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-new__form .contacts-form-group input,
.hero-new__form .contacts-form-group textarea {
  padding: 18px 22px;
  font-size: 1.05rem;
}

.hero-new__form .contacts-form-group textarea {
  min-height: 150px;
}

.hero-new__form .contacts-callback-btn {
  padding: 18px 50px;
  font-size: 1.05rem;
  margin-top: 10px;
}

.hero-new__image {
  flex: 0 0 500px;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-new__image-wrapper {
  position: relative;
  width: 450px;
  height: 450px;
}

.hero-new__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #2ecc71;
  box-shadow: 0 10px 40px rgba(46, 204, 113, 0.3);
}

.hero-new__image-text {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #000000;
  color: #ffffff;
  padding: 10px 30px;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.callback-form {
  background-color: #000000 !important;
  border-radius: 20px;
  padding: 80px 50px;
  box-shadow: 0 0 60px rgba(46, 204, 113, 0.7), 0 0 120px rgba(46, 204, 113, 0.5);
  position: relative;
  z-index: 1;
  border: 2px solid #000000;
  min-height: 850px;
  display: flex;
  flex-direction: column;
}

.callback-form::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  border-radius: 24px;
  z-index: -1;
  opacity: 0;
}

.callback-form__title {
  font-size: 2rem;
  color: #ffffff;
  margin: 0 0 15px 0;
  font-weight: 700;
}

.callback-form__subtitle {
  font-size: 1.1rem;
  color: #ffffff;
  margin: 0 0 50px 0;
}

.callback-form form {
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex: 1;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 22px 25px;
  border: 2px solid #cccccc;
  border-radius: 10px;
  font-size: 1.05rem;
  font-family: 'Montserrat', sans-serif;
  transition: border-color 0.3s;
  background: #ffffff;
  color: #000000;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2ecc71;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666666;
}

.form-group textarea {
  min-height: 180px;
  resize: vertical;
}

.file-upload__label {
  display: inline-block;
  padding: 12px 25px;
  background: #ffffff;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  color: #000000;
  transition: all 0.3s;
}

.file-upload__label:hover {
  background: #f0f0f0;
}

.file-upload__input {
  display: none;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-group input[type='checkbox'] {
  width: 20px;
  height: 20px;
  accent-color: #2ecc71;
}

.checkbox-group label {
  font-size: 0.9rem;
  color: #ffffff;
  cursor: pointer;
}

.checkbox-group label a {
  color: #2ecc71;
  text-decoration: underline;
}

.checkbox-group label a:hover {
  color: #27ae60;
}

.callback-form__btn {
  background: #2ecc71;
  color: #fff;
  border: none;
  padding: 18px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Montserrat', sans-serif;
}

.callback-form__btn:hover {
  background: #27ae60;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.4);
}

/* Мобильная форма обратного звонка (внутри телефона) */
.mobile-phone-frame {
  background: #ffffff;
  border-radius: 40px;
  padding: 15px;
  box-shadow: 0 0 30px rgba(46, 204, 113, 0.5), 0 0 60px rgba(46, 204, 113, 0.3);
  border: 2px solid #2ecc71;
  max-width: 320px;
  margin: 0 auto;
}

.phone-notch {
  background: #e0e0e0;
  width: 50%;
  height: 25px;
  margin: 0 auto 15px;
  border-radius: 20px;
}

.phone-screen {
  background: #f5f5f5;
  border-radius: 25px;
  padding: 20px;
  min-height: 400px;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #333;
}

.phone-time {
  color: #333333;
  font-size: 14px;
  font-weight: 600;
}

.phone-icons {
  color: #333333;
  font-size: 14px;
}

.phone-app {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.phone-app-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-avatar {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}

.phone-contact-info {
  display: flex;
  flex-direction: column;
}

.phone-contact-name {
  color: #333333;
  font-weight: 600;
  font-size: 16px;
}

.phone-contact-status {
  color: #888888;
  font-size: 12px;
}

.phone-message {
  background: #ffffff;
  padding: 12px;
  border-radius: 15px;
  border-top-left-radius: 5px;
}

.phone-message-text {
  color: #555555;
  font-size: 14px;
  line-height: 1.4;
}

.phone-callback-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.phone-input {
  background: #ffffff;
  border: 2px solid #dddddd;
  border-radius: 10px;
  padding: 14px 16px;
  color: #333333;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  transition: border-color 0.3s;
}

.phone-input:focus {
  outline: none;
  border-color: #2ecc71;
}

.phone-input::placeholder {
  color: #999999;
}

.phone-submit-btn {
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Montserrat', sans-serif;
}

.phone-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.phone-privacy {
  color: #555555;
  font-size: 10px;
  text-align: center;
  margin-top: 10px;
}

/* Projects Section - Слайдер партнёров */
.projects-section {
  padding: 80px 20px;
  background: transparent;
}

.projects-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 50px;
  color: #000000;
  font-weight: 700;
}

.partners-slider {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
}

.partner-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  padding: 60px 40px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e0e0e0;
}

.partner-card__content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.partner-card__logo {
  width: 140px;
  height: 140px;
  background: #ffffff;
  border: 3px solid #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: #000000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  font-size: 2.5rem;
  font-weight: 900;
}

.partner-card__title {
  font-size: 1.5rem;
  color: #000000;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

/* Зелёные линии на фоне */
.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 48%, #2ecc71 49%, #2ecc71 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, #2ecc71 49%, #2ecc71 51%, transparent 52%);
  background-size: 80px 80px;
  opacity: 0.1;
  z-index: 1;
}

/* Пагинация слайдера */
.partners-slider .swiper-pagination {
  position: relative !important;
  margin-top: 30px !important;
  margin-bottom: 20px !important;
  bottom: auto !important;
  text-align: center;
  display: block !important;
  width: 100% !important;
}

.partners-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #2ecc71 !important;
  opacity: 1 !important;
  transition: all 0.3s ease;
  display: inline-block !important;
}

.partners-slider .swiper-pagination-bullet-active {
  background: #000000 !important;
  width: 30px;
  border-radius: 6px;
}

.partners-slider .swiper-pagination-bullet:hover {
  background: #27ae60 !important;
}

/* VK Section */
.vk-section {
  padding: 80px 20px;
  background: transparent;
}

.vk-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.vk-image {
  flex: 0 0 600px;
  max-width: 100%;
}

.vk-image img {
  width: 600px;
  height: auto;
  border-radius: 20px;
  max-width: 100%;
}

.vk-content {
  flex: 1;
  max-width: 600px;
}

.vk-title {
  font-size: 2.5rem;
  color: #000000;
  margin: 0 0 30px 0;
  font-weight: 700;
  line-height: 1.2;
}

.vk-features h3 {
  font-size: 1.7rem;
  color: #000000;
  margin: 0 0 20px 0;
  font-weight: 700;
}

.vk-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.vk-features li {
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 15px;
  padding-left: 50px;
  position: relative;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.vk-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #2ecc71;
  font-weight: bold;
  font-size: 2.6rem;
  text-shadow: none;
}

.vk-btn {
  display: inline-block;
  background: #000000;
  color: #ffffff;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.vk-btn:hover {
  background: #333333;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Process Section */
.process-section {
  padding: 80px 15px;
  background: #ffffff;
}

.process-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 10px;
  color: #000000;
  font-weight: 700;
}

.process-subtitle {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 50px;
  color: #666666;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  background: #000000;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 30px rgba(46, 204, 113, 0.3);
  border: 2px solid #2ecc71;
  flex: 0 0 calc(33.333% - 20px);
  max-width: 350px;
  box-sizing: border-box;
}

.process-step:hover {
  box-shadow: 0 0 40px rgba(46, 204, 113, 0.5), 0 0 80px rgba(46, 204, 113, 0.3);
}

.process-step__number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
}

.process-step__icon {
  width: 80px;
  height: 80px;
  margin: 20px auto 25px;
  background: rgba(46, 204, 113, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.process-step__icon svg {
  width: 40px;
  height: 40px;
  stroke: #2ecc71;
  stroke-width: 1.5;
  fill: none;
  display: block;
}

.process-step__title {
  font-size: 1.4rem;
  color: #ffffff;
  margin: 0 0 15px 0;
  font-weight: 600;
}

.process-step__description {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .vk-container {
    flex-direction: column;
    gap: 30px;
  }

  .vk-image {
    flex: 0 0 100%;
  }

  .vk-title {
    font-size: 1.8rem;
  }

  .process-section {
    padding: 50px 15px;
  }

  .process-title {
    font-size: 1.6rem;
  }

  .process-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .process-step {
    padding: 25px 20px;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .process-step__title {
    font-size: 1.2rem;
  }

  .process-step__description {
    font-size: 0.95rem;
  }
}

/* Мобильная адаптация hero-new */
@media (max-width: 1024px) {
  .hero-new__container {
    flex-direction: column;
    gap: 40px;
  }

  .hero-new__content {
    padding-right: 0;
    text-align: center;
  }

  .hero-new__form {
    flex: 0 0 100%;
    width: 100%;
  }

  .hero-new__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
  }

  .logo-image {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 768px) {
  .hero-new {
    padding: 100px 15px 60px;
  }

  .hero-new__title {
    font-size: 2rem;
  }

  .hero-new__features li {
    font-size: 1rem;
  }

  .hero-new__image-wrapper {
    width: 280px;
    height: 280px;
  }

  .hero-new__image-text {
    font-size: 0.9rem;
    padding: 6px 15px;
  }

  .callback-form {
    padding: 25px;
  }

  .callback-form__title {
    font-size: 1.5rem;
  }
}

/* Global Styles */
* {
  box-sizing: border-box;
}

:root {
  --primary-color: #2ecc71;
  --secondary-color: #333;
  --light-bg: #f4f7fa;
  --text-color: #333;
  --white: #fff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Старые hero стили удалены - используется hero-new */

body {
  position: relative;
  min-height: 100vh;
  background: #ffffff;
  isolation: isolate;
}

main {
  position: relative;
  z-index: 1;
}

main::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

footer {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  body .contacts-page-bg {
    background: url('/static/main/images/Mobilka.jpg') 45% center / cover no-repeat;
  }
}

html {
  min-height: 100%;
  overflow-x: clip;
  background: #ffffff;
}

body.menu-open {
  overflow: hidden;
}

/* Убран затемняющий слой */
/* Старый стиль header удалён - используется .site-header */

.logo-image {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-image::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  border-radius: 50%;
  z-index: -1;
}

.logo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #2ecc71;
  box-shadow: 0 0 20px rgba(46, 204, 113, 0.5);
}

/* Мобильная адаптация */
@media (max-width: 768px) {
  main {
    padding: 30px 30px;
    max-width: 100%;
  }

  /* .hero, .hero2 удалены - используется hero-new */

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .services {
    padding: 60px 30px;
  }

  .services h2 {
    font-size: 1.8rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .outsourcing-section {
    padding: 80px 30px;
  }

  .container {
    flex-direction: column;
    gap: 40px;
  }

  .text-block h1 {
    font-size: 1.8rem;
  }

  .text-block .subtitle {
    font-size: 1.2rem;
  }

  .card {
    padding: 30px;
  }

  .case-section,
  .case-section2,
  .case-section3,
  .case-section4,
  .case-section7,
  .case-section8 {
    flex-direction: column;
    padding: 30px 0;
  }

  .case-card,
  .case-card2,
  .case-card3,
  .case-card4,
  .case-card7,
  .case-card8,
  .case-image-wrapper,
  .case-image-wrapper2,
  .case-image-wrapper3,
  .case-image-wrapper4,
  .case-image-wrapper7,
  .case-image-wrapper8 {
    width: 100%;
  }

  .case-card {
    padding: 30px;
    font-size: 16px;
  }

  .main-img,
  .main-img2,
  .main-img3,
  .main-img4,
  .main-img7,
  .main-img8 {
    width: 100%;
    height: auto;
  }

  .stat-overlay,
  .stat-overlay2,
  .stat-overlay3,
  .stat-overlay4,
  .stat-overlay7,
  .stat-overlay8 {
    position: static;
    flex-direction: column;
    padding: 0 30px;
  }

  .stat-item {
    padding: 20px;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
  }
}

.logo {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
  transition: color 0.3s;
}

.logo:hover {
  color: #333333;
}

/* Main Content */
main {
  width: 100%;
  margin: 0 auto;
  padding: 50px 20px;
}

/* Убираем ограничение на мобильных */
@media (max-width: 768px) {
  main {
    max-width: 100%;
    padding: 30px 15px;
  }
}

.btn-main,
.btn-main-nav {
  display: inline-block;
  background: #000000;
  color: #ffffff;
  border: 1px solid #000000;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-main:hover,
.btn-main-nav:hover {
  background: #333333;
  color: #ffffff;
}

.btn-secondary,
.btn-secondary-nav {
  display: inline-block;
  background: #000000;
  color: #ffffff;
  border: 1px solid #000000;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-secondary:hover,
.btn-secondary-nav:hover {
  background: #333333;
  color: #ffffff;
}

.companies {
  margin-top: 50px;
  font-size: 14px;
  color: #666;
}

/* Services Section */
.services {
  padding: 80px 20px;
  background: transparent;
  text-align: center;
  margin-bottom: 60px;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #000000;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  padding: 30px;
  background: var(--light-bg);
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  margin-bottom: 15px;
  color: #2ecc71;
}

/*open 3 BLOCK*/
.case-section {
  display: flex;
  gap: 20px;
  padding: 40px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.case-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.case-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  width: 40%;
  font-size: 18px;
  color: #000000;
}

.case-image-wrapper {
  position: relative;
  width: 60%;
  border-radius: 20px;
  overflow: hidden;
}

.main-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Контейнер для показателей */
.stat-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 15px;
}

/* Сами карточки с цифрами */
.stat-item {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 12px;
  flex: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #000000;
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

/* Состояние при наведении */
.stat-item:hover {
  opacity: 0.9; /* Степень прозрачности (0.6 = 60% видимости) */
  transform: translateY(-5px); /* Можно добавить легкий эффект поднятия */
}
/*open 3 BLOCK*/

/*open 4 BLOCK*/
.case-section2 {
  display: flex;
  gap: 20px;
  padding: 40px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.case-section2.visible {
  opacity: 1;
  transform: translateY(0);
}

.case-card2 {
  background: white;
  padding: 30px;
  border-radius: 20px;
  width: 40%;
  font-size: 18px;
  color: #000000;
}

.case-image-wrapper2 {
  position: relative;
  width: 60%;
  border-radius: 20px;
  overflow: hidden;
}

.main-img2 {
  width: 100%;
  height: auto;
  display: block;
}

/* Контейнер для показателей */
.stat-overlay2 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 15px;
}

/* Сами карточки с цифрами */
.stat-item2 {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 12px;
  flex: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #000000;
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

/* Состояние при наведении */
.stat-item2:hover {
  opacity: 0.9; /* Степень прозрачности (0.6 = 60% видимости) */
  transform: translateY(-5px); /* Можно добавить легкий эффект поднятия */
}
/*open 4 BLOCK*/

/*open 5 BLOCK*/
.case-section4 {
  display: flex;
  gap: 20px;
  padding: 40px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.case-section4.visible {
  opacity: 1;
  transform: translateY(0);
}

.case-card4 {
  background: white;
  padding: 30px;
  border-radius: 20px;
  width: 40%;
  font-size: 18px;
  color: #000000;
}

.case-image-wrapper4 {
  position: relative;
  width: 60%;
  border-radius: 20px;
  overflow: hidden;
}

.main-img4 {
  width: 100%;
  height: auto;
  display: block;
}

/* Контейнер для показателей */
.stat-overlay4 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 15px;
}

/* Сами карточки с цифрами */
.stat-item4 {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 12px;
  flex: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #000000;
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

/* Состояние при наведении */
.stat-item4:hover {
  opacity: 0.9; /* Степень прозрачности (0.6 = 60% видимости) */
  transform: translateY(-5px); /* Можно добавить легкий эффект поднятия */
}
/*open 5 BLOCK*/

/*open 6 BLOCK*/
.case-section3 {
  display: flex;
  gap: 20px;
  padding: 40px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.case-section3.visible {
  opacity: 1;
  transform: translateY(0);
}

.case-card3 {
  background: white;
  padding: 30px;
  border-radius: 20px;
  width: 40%;
  font-size: 18px;
  color: #000000;
}

.case-image-wrapper3 {
  position: relative;
  width: 60%;
  border-radius: 20px;
  overflow: hidden;
}

.main-img3 {
  width: 100%;
  height: auto;
  display: block;
}

/* Контейнер для показателей */
.stat-overlay3 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 15px;
}

/* Сами карточки с цифрами */
.stat-item3 {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 12px;
  flex: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #000000;
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

/* Состояние при наведении */
.stat-item3:hover {
  opacity: 0.9; /* Степень прозрачности (0.6 = 60% видимости) */
  transform: translateY(-5px); /* Можно добавить легкий эффект поднятия */
}
/*open 6 BLOCK*/

/*open 7 BLOCK*/
.case-section7 {
  display: flex;
  gap: 20px;
  padding: 40px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.case-section7.visible {
  opacity: 1;
  transform: translateY(0);
}

.case-card7 {
  background: white;
  padding: 30px;
  border-radius: 20px;
  width: 40%;
  font-size: 18px;
  color: #000000;
}

.case-image-wrapper7 {
  position: relative;
  width: 60%;
  border-radius: 20px;
  overflow: hidden;
}

.main-img7 {
  width: 100%;
  height: auto;
  display: block;
}

/* Контейнер для показателей */
.stat-overlay7 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 15px;
}

/* Сами карточки с цифрами */
.stat-item7 {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 12px;
  flex: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #000000;
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

/* Состояние при наведении */
.stat-item7:hover {
  opacity: 0.9; /* Степень прозрачности (0.6 = 60% видимости) */
  transform: translateY(-5px); /* Можно добавить легкий эффект поднятия */
}
/*open 7 BLOCK*/

/*open 8 BLOCK*/
.case-section8 {
  display: flex;
  gap: 20px;
  padding: 40px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.case-section8.visible {
  opacity: 1;
  transform: translateY(0);
}

.case-card8 {
  background: white;
  padding: 30px;
  border-radius: 20px;
  width: 40%;
  font-size: 18px;
  color: #000000;
}

.case-image-wrapper8 {
  position: relative;
  width: 60%;
  border-radius: 20px;
  overflow: hidden;
}

.main-img8 {
  width: 100%;
  height: auto;
  display: block;
}

/* Контейнер для показателей */
.stat-overlay8 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 15px;
}

/* Сами карточки с цифрами */
.stat-item8 {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 12px;
  flex: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #000000;
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

/* Состояние при наведении */
.stat-item8:hover {
  opacity: 0.9; /* Степень прозрачности (0.6 = 60% видимости) */
  transform: translateY(-5px); /* Можно добавить легкий эффект поднятия */
}
/*open 8 BLOCK*/

/* Footer */
footer {
  background: #ffffff;
  padding: 40px 20px 20px;
  text-align: center;
  border-top: 2px solid #2ecc71;
  box-shadow: 0 0 30px rgba(46, 204, 113, 0.5), 0 0 60px rgba(46, 204, 113, 0.3);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-content .logo {
  color: #000000;
  font-size: 24px;
  font-weight: 700;
}

.social a {
  color: #000000;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
  transition: color 0.3s;
}

.social a:hover {
  color: #2ecc71;
}

.contacts {
  text-align: left;
}

.contacts h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #000000;
}

.contacts p {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #333333;
}

.copyright {
  margin-top: 30px;
  color: #000000;
  font-size: 0.9rem;
}

.outsourcing-section {
  background-image: url('/static/main/images/fon-site.webp');
  background-color: #333333;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 200px 5%;
  font-family: sans-serif;
  margin-bottom: 60px;
  width: 100%;
  position: relative;
  box-sizing: border-box;
  border-top-left-radius: 3em;
  border-top-right-radius: 3em;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Содержимое — справа */
  gap: 40px;
  flex: 1;
  background-repeat: no-repeat;
  background-position: left center;
}

.text-block {
  flex: 1;
  background-repeat: no-repeat;
  background-position: left center;
}

.text-block h1 {
  font-size: 40px;
  line-height: 1.2;
}
.text-block .subtitle {
  font-size: 24px;
  opacity: 0.9;
}

.cards-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-start;
}

.card {
  background: white;
  color: #333;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.card h3 {
  margin-top: 0;
}
.card p {
  font-size: 14px;
  line-height: 1.5;
}

.card.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Планшеты */
@media (max-width: 1024px) {
  .hero {
    padding: 280px 0 10px 0;
    background-size: cover;
  }

  .hero2 {
    padding: 280px 0 10px 0;
    background-size: cover;
  }

  .hero2::before {
    left: 0;
    width: 100%;
  }

  .text-block h1 {
    font-size: 32px;
  }

  .text-block .subtitle {
    font-size: 20px;
  }
}

/* Телефоны */
@media only screen and (max-width: 768px) {
  /* Убираем все ограничения ширины */
  .services-grid,
  .footer-content,
  .container {
    max-width: 100% !important;
  }

  /* Основной контент - шире */
  main {
    padding: 30px 20px !important;
    max-width: 100% !important;
  }

  .hero,
  .hero2 {
    padding: 90px 0 10px 0;
    min-height: 180px;
  }

  .hero-text h1 {
    font-size: 1.45rem;
  }

  .hero-text p {
    font-size: 14px;
  }

  .text-block h1 {
    font-size: 22px;
  }

  .logo {
    font-size: 22px;
  }

  .btn-main-nav,
  .btn-secondary-nav,
  nav a {
    font-size: 13px;
    padding: 9px 10px;
  }

  /* Центрирование текста в карточках на мобильной версии */
  .card {
    text-align: center;
  }

  .card h3,
  .card p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* Центрирование в hero feature cards */
  .hero-feature-card {
    text-align: center;
  }

  .hero-feature-card__text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-feature-card__text strong,
  .hero-feature-card__text span {
    text-align: center;
    width: 100%;
  }
}

:root {
  --header-surface: #ffffff;
  --header-border: #2ecc71;
  --header-shadow: 0 0 30px rgba(46, 204, 113, 0.5), 0 0 60px rgba(46, 204, 113, 0.3);
  --burger-glow: 0 0 0 1px rgba(46, 204, 113, 0.5), 0 0 20px rgba(46, 204, 113, 0.4);
  --mobile-menu-gradient: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
  --mobile-menu-shadow: 0 0 30px rgba(46, 204, 113, 0.5), 0 0 60px rgba(46, 204, 113, 0.3);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--header-shadow);
  border-bottom: 2px solid var(--header-border);
}

.site-header .logo {
  flex-shrink: 0;
  font-size: 32px;
}

.site-header .menu-toggle {
  display: none;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 2px solid var(--primary-color);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--burger-glow);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-header .menu-toggle:hover {
  transform: translateY(-1px);
}

.site-header .menu-toggle:active {
  transform: scale(1.04);
}

.site-header .menu-toggle__line {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary-color);
  transition: transform 0.25s ease, opacity 0.2s ease;
  box-shadow: 0 0 10px rgba(255, 71, 51, 0.25);
}

.site-header.nav-open .menu-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .menu-toggle__line:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .menu-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center !important;
  gap: 12px;
  flex: 1;
  margin: 0 auto;
}

.site-header .site-nav__link,
.site-header .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 0;
  border-radius: 18px;
  background: transparent;
  color: #000000;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.25s ease, background-color 0.25s ease, transform 0.18s ease, box-shadow 0.25s ease;
}

.site-header .site-nav__link:hover,
.site-header .dropdown-toggle:hover,
.site-header .site-nav__link:focus-visible,
.site-header .dropdown-toggle:focus-visible {
  color: #2ecc71;
  background: rgba(46, 204, 113, 0.08);
  outline: none;
}

.site-header .site-nav__link:active,
.site-header .dropdown-toggle:active {
  transform: scale(1.03);
}

.site-header .dropdown {
  position: relative;
}

.site-header .dropdown-toggle::after {
  content: '';
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.site-header .dropdown:hover .dropdown-toggle::after,
.site-header .dropdown:focus-within .dropdown-toggle::after,
.site-header .dropdown.is-open .dropdown-toggle::after {
  transform: rotate(225deg) translateY(-1px);
}

.site-header .dropdown-content {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  padding: 10px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.14);
  display: grid;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.site-header .dropdown:hover .dropdown-content,
.site-header .dropdown:focus-within .dropdown-content,
.site-header .dropdown.is-open .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-header .dropdown-content a {
  margin: 0;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--text-color);
  font-size: 15px;
  text-align: left;
}

.site-header .dropdown-content a:hover,
.site-header .dropdown-content a:focus-visible {
  color: #000000;
  background: rgba(255, 71, 51, 0.08);
  outline: none;
}

.site-header .site-nav__action {
  border: 1px solid rgba(255, 71, 51, 0.18);
  box-shadow: 0 10px 22px rgba(255, 71, 51, 0.08);
}

.site-header .site-nav__action--primary {
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.94);
}

.site-header .site-nav__action--secondary {
  color: #ffffff;
  background: #000000;
}

.site-header .site-nav__action--secondary:hover,
.site-header .site-nav__action--secondary:focus-visible {
  color: #ffffff;
  background: #333333;
}

.site-header .contact {
  flex-shrink: 0;
  text-align: right;
}

@media only screen and (max-width: 768px) {
  .site-header {
    flex-wrap: wrap;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 0;
  }

  .site-header .logo {
    font-size: 24px !important;
  }

  .site-header .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    order: 2;
  }

  .site-header .site-nav {
    order: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0 16px;
    border-radius: 26px;
    background: var(--mobile-menu-gradient);
    box-shadow: none;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    max-height: 0;
    transform: translateX(-50%) translateY(-18px);
    transform-origin: top center;
    transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease,
      transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), padding 0.45s ease, margin-top 0.45s ease, box-shadow 0.45s ease;
    position: fixed;
    top: 80px;
    left: 50%;
    z-index: 149;
    max-width: calc(100vw - 32px);
  }

  .site-header.nav-open .site-nav {
    max-height: calc(100vh - 110px);
    margin-top: 0;
    padding: 18px 16px 20px;
    box-shadow: var(--mobile-menu-shadow);
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    overflow-y: auto;
  }

  .site-header .site-nav__link,
  .site-header .dropdown-toggle,
  .site-header .site-nav__action {
    justify-content: space-between;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    padding: 16px 20px;
    border: 1px solid rgba(51, 51, 51, 0.24);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 12px 22px rgba(46, 204, 113, 0.12);
    color: var(--text-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .site-header .site-nav__link:hover,
  .site-header .dropdown-toggle:hover,
  .site-header .site-nav__link:focus-visible,
  .site-header .dropdown-toggle:focus-visible,
  .site-header .site-nav__action:hover,
  .site-header .site-nav__action:focus-visible {
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 14px 28px rgba(46, 204, 113, 0.16);
  }

  .site-header .site-nav__link:active,
  .site-header .dropdown-toggle:active,
  .site-header .site-nav__action:active {
    transform: scale(1.05);
  }

  .site-header .site-nav__action--secondary {
    background: rgba(0, 0, 0, 0.18);
  }

  .site-header .dropdown {
    width: 100%;
  }

  .site-header .dropdown-toggle::after {
    margin-left: 12px;
  }

  .site-header .dropdown-content {
    position: static;
    min-width: 0;
    margin-top: 8px;
    padding: 0;
    border-radius: 18px;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .site-header .dropdown.is-open .dropdown-content {
    max-height: 520px;
  }

  .site-header .dropdown-content a {
    margin-top: 8px;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-color);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
  }

  .site-header .dropdown-content a:hover,
  .site-header .dropdown-content a:focus-visible,
  .site-header .dropdown-content a:active {
    color: #000000;
    background: rgba(255, 255, 255, 0.98);
    transform: scale(1.03);
  }

  .site-header .contact {
    order: 4;
    display: none;
    width: 100%;
    margin-top: -2px;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
    text-align: left;
  }

  .site-header.nav-open .contact {
    display: block;
  }
}

@media only screen and (min-width: 769px) {
  .site-header .menu-toggle {
    display: none !important;
  }
}

/* Header refinements: fluid desktop/tablet layout and structured mobile panel */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(0, 0, 0, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

body.menu-open::after {
  opacity: 1;
}

body.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

.site-header .site-nav__link,
.site-header .dropdown-toggle,
.site-header .site-nav__action {
  white-space: nowrap;
  padding: clamp(10px, 0.95vw, 12px) clamp(13px, 1.45vw, 20px);
  font-size: clamp(14px, 1.05vw, 16px);
}

.site-header .dropdown-toggle::after {
  width: 0.48em;
  height: 0.48em;
  margin-left: 0.58em;
  border-right-width: 0.11em;
  border-bottom-width: 0.11em;
  transform: rotate(45deg) translateY(-0.08em);
  flex: 0 0 auto;
}

.site-header .contact {
  flex-shrink: 0;
  text-align: right;
  white-space: nowrap;
}

.site-header .phone {
  font-size: clamp(17px, 1.3vw, 18px);
}

.site-header .dropdown-content {
  top: calc(100% - 6px);
  padding: 18px 10px 10px;
  pointer-events: none;
}

.site-header .dropdown-content::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 18px;
  transform: translateY(-100%);
}

.site-header .dropdown:hover .dropdown-content,
.site-header .dropdown:focus-within .dropdown-content,
.site-header .dropdown.is-open .dropdown-content {
  pointer-events: auto;
}

.site-header .dropdown:hover .dropdown-toggle::after,
.site-header .dropdown:focus-within .dropdown-toggle::after,
.site-header .dropdown.is-open .dropdown-toggle::after {
  transform: rotate(225deg) translateY(-0.08em);
}

.site-header .dropdown-content a {
  white-space: normal;
}

@media only screen and (min-width: 1361px) {
  .site-header {
    padding: 18px 30px;
  }

  .site-header .logo {
    font-size: 32px;
  }

  .site-header .site-nav {
    gap: clamp(4px, 0.55vw, 8px);
  }

  .site-header .site-nav > * {
    flex: 0 0 auto;
  }

  .site-header .site-nav__link,
  .site-header .dropdown-toggle,
  .site-header .site-nav__action {
    min-height: 44px;
    padding: 10px clamp(10px, 0.9vw, 14px);
    font-size: clamp(12px, 0.92vw, 15px);
  }

  .site-header .site-nav__action--primary,
  .site-header .site-nav__action--secondary {
    padding-inline: clamp(12px, 1vw, 18px);
  }

  .site-header .contact {
    font-size: 14px;
    line-height: 1.2;
  }

  .site-header .phone {
    font-size: clamp(14px, 1vw, 16px);
  }
}

/* Hero section responsive fix */
.hero {
  padding: 0;
  min-height: clamp(280px, 31vw, 430px);
  overflow: hidden;
  background-size: 100% auto;
  background-position: center center;
  border-radius: 3em;
  isolation: isolate;
}

@media (max-width: 1024px) {
  .hero {
    min-height: clamp(230px, 35vw, 320px);
    background-size: cover;
  }
}

@media only screen and (max-width: 768px) {
  .hero {
    min-height: clamp(180px, 48vw, 240px);
    border-radius: 2.2em;
    background-size: cover;
    background-position: 20%;
  }
}

/* Process Vertical Section */
.process-vertical-section {
  padding: 100px 20px;
  background: #ffffff;
  position: relative;
}

.process-vertical-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 15px;
  color: #000000;
  font-weight: 700;
}

.process-vertical-subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 60px;
  color: #666666;
}

.process-vertical-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}

.process-vertical-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #2ecc71 0%, #27ae60 100%);
  border-radius: 2px;
  z-index: 1;
}

.process-vertical-step {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.process-vertical-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.process-vertical-step:last-child {
  margin-bottom: 0;
}

.process-vertical-step__number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: 0 0 30px rgba(46, 204, 113, 0.5), 0 0 60px rgba(46, 204, 113, 0.3);
  border: 4px solid #ffffff;
  z-index: 3;
  flex-shrink: 0;
}

/* Desktop - номер по центру линии */
@media (min-width: 769px) {
  .process-vertical-step__number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .process-vertical-step:nth-child(odd) .process-vertical-step__number {
    left: 50%;
  }

  .process-vertical-step:nth-child(even) .process-vertical-step__number {
    left: 50%;
  }
}

.process-vertical-step__content {
  background: #000000;
  border-radius: 20px;
  padding: 30px 40px;
  margin-left: 40px;
  flex: 1;
  max-width: 500px;
  box-shadow: 0 0 30px rgba(46, 204, 113, 0.3), 0 0 60px rgba(46, 204, 113, 0.2);
  border: 2px solid #2ecc71;
  position: relative;
}

.process-vertical-step__content::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 12px 12px 12px 0;
  border-style: solid;
  border-color: transparent #2ecc71 transparent transparent;
}

.process-vertical-step__content h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin: 0 0 15px 0;
  font-weight: 600;
}

.process-vertical-step__content p {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

/* Desktop стили - чередование сторон */
@media (min-width: 769px) {
  .process-vertical-step {
    width: 50%;
  }

  .process-vertical-step:nth-child(odd) {
    flex-direction: row-reverse;
    justify-content: flex-start;
    margin-left: auto;
    padding-right: 60px;
  }

  .process-vertical-step:nth-child(odd) .process-vertical-step__content {
    margin-left: 0;
    margin-right: 40px;
  }

  .process-vertical-step:nth-child(odd) .process-vertical-step__content::before {
    left: auto;
    right: -12px;
    border-width: 12px 0 12px 12px;
    border-color: transparent transparent transparent #2ecc71;
  }

  .process-vertical-step:nth-child(even) {
    flex-direction: row;
    justify-content: flex-end;
    margin-right: auto;
    padding-left: 60px;
  }
}

@media (max-width: 768px) {
  .process-vertical-section {
    padding: 60px 15px;
  }

  .process-vertical-title {
    font-size: 1.8rem;
  }

  .process-vertical-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .process-vertical-line {
    left: 30px;
  }

  .process-vertical-step {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 50px;
    padding-left: 20px;
  }

  .process-vertical-step:last-child {
    margin-bottom: 0;
  }

  .process-vertical-step__number {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
    position: absolute;
    left: 0;
    top: 0;
  }

  .process-vertical-step__content {
    margin-left: 80px;
    max-width: 100%;
    padding: 20px 25px;
  }

  .process-vertical-step__content::before {
    left: -12px;
    top: 20px;
    transform: none;
  }

  .process-vertical-step__content h3 {
    font-size: 1.2rem;
  }

  .process-vertical-step__content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 420px) {
  .logo {
    font-size: 22px;
  }
}

/* Process Scroll Section - Вертикальный скролл с шагами */
.process-scroll-section {
  padding: 100px 20px;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.process-scroll-header {
  text-align: center;
  margin-bottom: 60px;
}

.process-scroll-main-title {
  font-size: 3rem;
  font-weight: 700;
  color: #000000;
  margin: 0;
  display: inline-block;
}

.process-scroll-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  color: #000000;
  margin: 20px 0 0 0;
  line-height: 1.4;
}

.process-scroll-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.process-scroll-left {
  flex: 0 0 400px;
  position: sticky;
  top: 150px;
  padding-top: 40px;
}

.process-scroll-title {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  font-family: 'Playfair Display', serif;
  color: #000000;
  animation: titleSlideIn 1s ease-out;
}

.process-scroll-right {
  flex: 1;
  position: relative;
}

.process-scroll-items {
  display: flex;
  flex-direction: column;
  gap: 120px;
  padding: 20px 0;
  position: relative;
  z-index: 5;
}

.process-scroll-item {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  opacity: 0.3;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.process-scroll-item.active {
  opacity: 1;
  transform: translateY(0);
}

.process-scroll-item__number {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  box-shadow: 0 0 25px rgba(46, 204, 113, 0.4), 0 0 50px rgba(46, 204, 113, 0.2);
  border: 3px solid #ffffff;
  position: relative;
  z-index: 10;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
}

.process-scroll-item.active .process-scroll-item__number {
  box-shadow: 0 0 35px rgba(46, 204, 113, 0.6), 0 0 70px rgba(46, 204, 113, 0.3);
}

.process-scroll-item__content {
  background: #000000;
  border-radius: 20px;
  padding: 40px 45px;
  flex: 1;
  max-width: 650px;
  box-shadow: 0 0 25px rgba(46, 204, 113, 0.25), 0 0 50px rgba(46, 204, 113, 0.15);
  border: 2px solid #2ecc71;
  position: relative;
}

.process-scroll-item.active .process-scroll-item__content {
  box-shadow: 0 0 35px rgba(46, 204, 113, 0.4), 0 0 70px rgba(46, 204, 113, 0.25);
  border-color: #2ecc71;
}

.process-scroll-item__title {
  font-size: 2rem;
  color: #ffffff;
  margin: 0 0 15px 0;
  font-weight: 600;
}

.process-scroll-item__description {
  font-size: 1.2rem;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

.vk-link {
  color: #2ecc71;
  text-decoration: underline;
  font-weight: 700;
  transition: all 0.3s;
}

.vk-link:hover {
  color: #7bed9f;
  text-decoration: none;
}

/* Progress Line */
.process-scroll-progress {
  position: absolute;
  left: 45px;
  top: 45px;
  bottom: 45px;
  width: 4px;
  z-index: 1;
  pointer-events: none;
}

.process-scroll-progress__line {
  width: 100%;
  height: 100%;
  background: rgba(46, 204, 113, 0.15);
  border-radius: 2px;
  overflow: visible;
  position: relative;
}

.process-scroll-progress__fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #2ecc71 0%, #27ae60 100%);
  border-radius: 2px;
  transition: height 0.05s linear;
  position: absolute;
  top: 0;
  left: 0;
}

/* Mobile адаптация */
@media (max-width: 1024px) {
  .process-scroll-container {
    flex-direction: column;
    gap: 50px;
  }

  .process-scroll-left {
    flex: 0 0 auto;
    position: relative;
    top: 0;
    padding-top: 0;
    text-align: center;
  }

  .process-scroll-title {
    font-size: 2.5rem;
  }

  .process-scroll-right {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .process-scroll-section {
    padding: 60px 15px;
  }

  .process-scroll-header {
    margin-bottom: 40px;
  }

  .process-scroll-main-title,
  .projects-title {
    font-size: 2.2rem;
  }

  .process-scroll-title {
    font-size: 2rem;
  }

  .process-scroll-items {
    gap: 80px;
  }

  .process-scroll-item {
    gap: 20px;
  }

  .process-scroll-item__number {
    width: 70px;
    height: 70px;
    font-size: 1.6rem;
  }

  .process-scroll-item__content {
    padding: 30px 35px;
  }

  .process-scroll-item__title {
    font-size: 1.6rem;
  }

  .process-scroll-item__description {
    font-size: 1.1rem;
  }

  .process-scroll-progress {
    left: 35px;
    top: 35px;
    bottom: 35px;
  }
}

@media (max-width: 480px) {
  .process-scroll-title {
    font-size: 1.7rem;
  }

  .process-scroll-items {
    gap: 60px;
  }

  .process-scroll-item__number {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }

  .process-scroll-item__content {
    padding: 25px 28px;
  }

  .process-scroll-item__title {
    font-size: 1.4rem;
  }

  .process-scroll-item__description {
    font-size: 1rem;
  }
}

/* Calculator Section - Калькулятор заработка */
.calculator-section {
  padding: 80px 20px;
  background: #ffffff;
}

.calculator-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 15px;
  color: #000000;
  font-weight: 700;
}

.calculator-subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 50px;
  color: #666666;
}

.calculator-container {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  border-radius: 30px;
  padding: 50px 40px;
  box-shadow: 0 0 50px rgba(46, 204, 113, 0.6), 0 0 100px rgba(46, 204, 113, 0.4), 0 0 150px rgba(46, 204, 113, 0.2);
  border: 2px solid #2ecc71;
}

.calculator-form {
  margin-bottom: 40px;
}

.calculator-form .form-group {
  margin-bottom: 30px;
  position: relative;
}

.calculator-form label {
  display: block;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 500;
}

/* Custom Select */
.custom-select {
  position: relative;
  width: 100%;
}

.custom-select__selected {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border: 2px solid #ffffff;
  border-radius: 18px;
  background: #ffffff;
  color: #000000;
  font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.custom-select__selected:hover {
  box-shadow: 0 0 25px rgba(46, 204, 113, 0.4);
  transform: translateY(-2px);
}

.custom-select__selected.active {
  border-color: #2ecc71;
  box-shadow: 0 0 30px rgba(46, 204, 113, 0.5), 0 0 60px rgba(46, 204, 113, 0.3);
  transform: translateY(-2px);
}

.custom-select__text {
  flex: 1;
  padding-right: 15px;
}

.custom-select__arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2ecc71;
  transition: transform 0.3s;
}

.custom-select__selected.active .custom-select__arrow {
  transform: rotate(180deg);
}

.custom-select__options {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(46, 204, 113, 0.2);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
  list-style: none;
  margin: 0;
  padding: 0;
}

.custom-select__options.open {
  max-height: 400px;
  overflow-y: auto;
  opacity: 1;
  transform: translateY(0);
  padding: 10px;
}

.custom-select__option {
  padding: 16px 20px;
  margin: 5px 0;
  border-radius: 12px;
  color: #000000;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.custom-select__option:hover {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: #ffffff;
  transform: translateX(5px);
}

.custom-select__option.selected {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: #ffffff;
}

.custom-select__options::-webkit-scrollbar {
  width: 6px;
}

.custom-select__options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.custom-select__options::-webkit-scrollbar-thumb {
  background: #2ecc71;
  border-radius: 3px;
}

.custom-select__options::-webkit-scrollbar-thumb:hover {
  background: #27ae60;
}

.calculator-range {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #ffffff;
  outline: none;
  -webkit-appearance: none;
  margin: 20px 0;
  border: none;
}

.calculator-range:focus {
  outline: none;
}

.calculator-range::-webkit-slider-runnable-track {
  background: #ffffff;
  border: none;
  height: 8px;
  border-radius: 4px;
}

.calculator-range::-moz-range-track {
  background: #ffffff;
  border: none;
  height: 8px;
  border-radius: 4px;
}

.calculator-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(46, 204, 113, 0.5);
  border: 3px solid #2ecc71;
  transition: transform 0.2s;
  margin-top: -11px;
}

.calculator-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calculator-range::-moz-range-thumb {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(46, 204, 113, 0.5);
  border: 3px solid #2ecc71;
  transition: transform 0.2s;
}

.calculator-range::-moz-range-thumb:hover {
  transform: scale(1.2);
}

.range-value {
  display: block;
  text-align: center;
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: 700;
  margin-top: 10px;
}

.calculator-result {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.result-card {
  background: #000000;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.result-card:hover {
  border-color: #2ecc71;
  background: #1a1a1a;
  transform: translateY(-5px);
}

.result-card_main {
  background: #000000;
  transform: scale(1.05);
}

.result-card_main:hover {
  transform: scale(1.08);
  border-color: #2ecc71;
  background: #1a1a1a;
}

.result-label {
  font-size: 0.95rem;
  color: #2ecc71;
  margin-bottom: 10px;
  opacity: 0.9;
}

.result-value {
  font-size: 1.8rem;
  color: #ffffff;
  font-weight: 700;
}

.result-value_total {
  font-size: 2.2rem;
  color: #2ecc71;
}

.calculator-note {
  text-align: center;
  font-size: 0.9rem;
  color: #ffffff;
  margin-bottom: 30px;
  font-style: italic;
}

.calculator-btn {
  display: block;
  width: 100%;
  background: #000000;
  color: #ffffff;
  text-align: center;
  padding: 20px 40px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.calculator-btn:hover {
  background: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Mobile адаптация калькулятора */
@media (max-width: 768px) {
  .calculator-section {
    padding: 60px 15px;
  }

  .calculator-title {
    font-size: 2.2rem;
  }

  .calculator-subtitle {
    font-size: 1rem;
  }

  .calculator-container {
    padding: 30px 20px;
  }

  .calculator-result {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .result-card_main {
    transform: scale(1);
  }

  .result-card_main:hover {
    transform: scale(1.02);
  }

  .result-value {
    font-size: 1.5rem;
  }

  .result-value_total {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .calculator-title {
    font-size: 1.8rem;
  }

  .calculator-select {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .calculator-range {
    height: 6px;
  }

  .range-value {
    font-size: 1.3rem;
  }

  .result-card {
    padding: 20px 15px;
  }
}

/* FAQ Section - Вопрос-ответ */
.faq-section {
  padding: 80px 20px;
  background: transparent;
}

.faq-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 15px;
  color: #000000;
  font-weight: 700;
}

.faq-subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 50px;
  color: #000000;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 18px;
  overflow: hidden;
  background: #f8f9fa;
  transition: all 0.3s;
}

.faq-item:hover {
  box-shadow: 0 5px 20px rgba(46, 204, 113, 0.15);
}

.faq-item.active {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.4);
}

.faq-question {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 60px 25px 35px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.faq-question__text {
  font-size: 1.05rem;
  font-weight: 600;
  color: #000000;
  flex: 0 1 auto;
  transition: color 0.3s;
  line-height: 1.4;
  text-align: center;
}

.faq-item.active .faq-question__text {
  color: #ffffff;
}

.faq-question__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2ecc71;
  background: #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.faq-item.active .faq-question__icon {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 35px 25px 35px;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.7;
  color: #ffffff;
  margin: 0;
  padding-top: 15px;
}

.faq-answer__list {
  margin: 15px 0 0 0;
  padding-left: 20px;
  color: #ffffff;
}

.faq-answer__list li {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* Mobile адаптация FAQ */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 15px;
  }

  .faq-title {
    font-size: 2.2rem;
  }

  .faq-subtitle {
    font-size: 1rem;
  }

  .faq-question {
    padding: 20px 20px 20px 20px;
  }

  .faq-question__text {
    font-size: 1rem;
  }

  .faq-question__icon {
    display: none;
  }

  .faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 20px 20px 20px;
  }
}

@media (max-width: 480px) {
  .faq-title {
    font-size: 1.8rem;
  }

  .faq-question {
    padding: 18px 15px 18px 15px;
  }

  .faq-question__text {
    font-size: 0.95rem;
  }

  .faq-question__icon {
    display: none;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }
}

/* Contacts Page - Контакты (как oddjob.ru) */
.contacts-company-section {
  padding: 100px 20px;
  background: transparent;
}

.contacts-container {
  max-width: 900px;
  margin: 0 auto;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  align-items: stretch;
  background: rgba(245, 245, 245, 0.98);
  border-radius: 20px;
  overflow: hidden;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 40px 30px;
  background: rgba(245, 245, 245, 0.98);
  border-right: 1px solid #e0e0e0;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
}

.contact-info-item__icon svg {
  width: 24px;
  height: 24px;
}

.contact-info-item__content {
  flex: 1;
}

.contact-info-item__title {
  font-size: 0.9rem;
  color: #000000;
  margin: 0 0 5px 0;
  font-weight: 500;
  opacity: 0.6;
}

.contact-info-item__text {
  font-size: 1.1rem;
  color: #000000;
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}

.contacts-form-wrapper {
  background: rgba(245, 245, 245, 0.95);
  border-radius: 0 20px 20px 0;
  padding: 40px;
}

.contacts-form-title {
  margin-bottom: 30px;
}

.contacts-form-title h2 {
  font-size: 1.8rem;
  color: #000000;
  margin: 0 0 10px 0;
  font-weight: 700;
  line-height: 1.2;
}

.contacts-form-title p {
  font-size: 0.95rem;
  color: #000000;
  margin: 0;
  line-height: 1.6;
  opacity: 0.8;
}

.contacts-callback-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contacts-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contacts-form-group input,
.contacts-form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: 'Montserrat', sans-serif;
  transition: border-color 0.3s;
  background: #ffffff;
  color: #000000;
}

.contacts-form-group input:focus,
.contacts-form-group textarea:focus {
  outline: none;
  border-color: #000000;
}

.contacts-form-group input::placeholder,
.contacts-form-group textarea::placeholder {
  color: #999999;
}

.contacts-form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.contacts-callback-btn {
  background: #000000;
  color: #ffffff;
  border: none;
  padding: 16px 40px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

.contacts-callback-btn:hover {
  background: #333333;
}

.contacts-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 5px;
}

.contacts-checkbox-group input[type='checkbox'] {
  width: 20px;
  height: 20px;
  accent-color: #000000;
  margin: 0;
  flex-shrink: 0;
  cursor: pointer;
}

.contacts-checkbox-label {
  font-size: 0.85rem;
  color: #000000;
  line-height: 1.4;
  cursor: pointer;
}

.contacts-checkbox-label a {
  color: #000000;
  text-decoration: underline;
}

.contacts-checkbox-label a:hover {
  color: #333333;
}

.contacts-form-notice {
  font-size: 0.75rem;
  color: #999999;
  margin: 10px 0 0 0;
  line-height: 1.5;
  max-width: 400px;
}

/* Реквизиты компании */
.requisites-section {
  padding: 60px 20px;
  background: transparent;
}

.requisites-container {
  max-width: 900px;
  margin: 0 auto;
}

.requisites-content {
  padding: 40px;
  background: rgba(245, 245, 245, 0.98);
  border-radius: 20px;
}

.requisites-title {
  font-size: 1.6rem;
  color: #000000;
  margin: 0 0 30px 0;
  font-weight: 700;
  text-align: center;
}

.requisites-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 40px;
}

.requisites-label {
  font-size: 1rem;
  color: #000000;
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}

.requisites-label--center {
  grid-column: 1 / -1;
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Mobile адаптация контактов */
@media (max-width: 992px) {
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-info-block {
    padding: 30px;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }

  .contacts-form-wrapper {
    padding: 30px;
    border-radius: 0 0 20px 20px;
  }
}

@media (max-width: 768px) {
  .contacts-company-section {
    padding: 60px 15px;
  }

  .contacts-form-title h2 {
    font-size: 1.5rem;
  }

  .contacts-form-row {
    grid-template-columns: 1fr;
  }

  .requisites-content {
    padding: 20px;
  }

  .requisites-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contacts-callback-btn {
    width: 100%;
    align-self: stretch;
    font-size: 0.85rem;
    padding: 14px 20px;
    letter-spacing: 0.3px;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .hero-new__form .contacts-callback-form {
    padding: 25px 8px !important;
  }

  .hero-new__form .contacts-callback-btn {
    display: block;
    width: 100%;
    min-width: 100%;
    font-size: 0.75rem;
    padding: 12px 4px;
    letter-spacing: 0;
    text-transform: none;
    white-space: normal;
    overflow-wrap: break-word;
  }
}

/* ============================================
   Секция Контакты и карта (старая)
   ============================================ */
.services-section {
  padding: 80px 20px;
  background: transparent;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--secondary-color);
  margin: 0 0 10px 0;
  position: relative;
  display: inline-block;
}

.services-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #ff6b55);
  border-radius: 2px;
}

.services-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #000000;
  margin: 25px 0 0 0;
  font-weight: 400;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #ff6b55, #ff8566);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255, 71, 51, 0.15);
}

.service-card__image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #ffffff;
  position: relative;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.03);
}

.service-card__content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 0 0 15px 0;
  line-height: 1.3;
}

.service-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.service-card__list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.service-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, var(--primary-color), #ff6b55);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}

.service-card__list li:hover {
  color: var(--primary-color);
}

.service-card__list li:hover::before {
  transform: scale(1.15);
  box-shadow: 0 0 10px rgba(255, 71, 51, 0.4);
}

/* Адаптация секции услуг */
@media (max-width: 1024px) {
  .services-section {
    padding: 60px 20px;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

/* Bлок CTA внизу услуг */
.services-cta {
  text-align: center;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 25px;
  margin: 40px auto 0;
  max-width: 800px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.services-cta__text {
  font-size: 1.3rem;
  color: #000000;
  margin: 0 0 25px 0;
  font-weight: 400;
  line-height: 1.5;
}

.services-cta__highlight {
  color: #000000;
  font-weight: 400;
  text-decoration: none;
}

.services-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000000;
  color: #ffffff;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  border: 2px solid #000000;
}

.services-cta__btn:hover {
  background: #333333;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.services-cta__btn svg {
  transition: transform 0.3s ease;
}

.services-cta__btn:hover svg {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .services-cta {
    padding: 30px 20px;
    margin: 30px 15px 0;
  }

  .services-cta__text {
    font-size: 1.1rem;
  }

  .services-cta__btn {
    padding: 15px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .services-cta__text {
    font-size: 1rem;
  }

  .services-cta__btn {
    padding: 14px 25px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 50px 15px;
  }

  .services-header {
    margin-bottom: 40px;
  }

  .services-title {
    font-size: 1.8rem;
  }

  .services-subtitle {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
  }

  .service-card__image {
    height: 220px;
  }

  .service-card__content {
    padding: 20px;
  }

  .service-card__title {
    font-size: 1.2rem;
  }

  .service-card__list li {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 40px 10px;
  }

  .service-card__image {
    height: 200px;
  }

  .service-card__title {
    font-size: 1.1rem;
  }
}

/* ============================================
   Секция О нас
   ============================================ */
.about-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.about-header {
  text-align: center;
  margin-bottom: 70px;
}

.about-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #000000;
  margin: 0 0 15px 0;
  position: relative;
  display: inline-block;
}

.about-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), #ff6b55);
  border-radius: 3px;
}

.about-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #666;
  margin: 30px 0 0 0;
  font-weight: 400;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-text {
  background: #ffffff;
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.about-lead {
  font-size: 1.3rem;
  color: #000000;
  font-weight: 600;
  line-height: 1.6;
  margin: 0 0 30px 0;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 30px;
}

.about-feature {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.about-feature__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-color), #ff6b55);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(255, 71, 51, 0.3);
}

.about-feature__icon svg {
  width: 24px;
  height: 24px;
}

.about-feature__content h3 {
  font-size: 1.2rem;
  color: #000000;
  margin: 0 0 5px 0;
  font-weight: 700;
}

.about-feature__content p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.about-note {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-stat-card {
  background: linear-gradient(135deg, var(--primary-color), #ff6b55);
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(255, 71, 51, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 71, 51, 0.4);
}

.about-stat-card__number {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.about-stat-card__label {
  font-size: 1rem;
  opacity: 0.95;
  font-weight: 500;
  margin: 0;
}

/* Адаптация секции О нас */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .about-stat-card {
    flex: 1;
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 15px;
  }

  .about-title {
    font-size: 2.2rem;
  }

  .about-subtitle {
    font-size: 1rem;
  }

  .about-text {
    padding: 30px 20px;
  }

  .about-lead {
    font-size: 1.1rem;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .about-stats {
    flex-direction: column;
  }

  .about-stat-card {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 1.8rem;
  }

  .about-text {
    padding: 25px 15px;
  }

  .about-feature__icon {
    width: 40px;
    height: 40px;
  }

  .about-feature__icon svg {
    width: 20px;
    height: 20px;
  }

  .about-feature__content h3 {
    font-size: 1rem;
  }

  .about-feature__content p {
    font-size: 0.85rem;
  }

  .about-stat-card__number {
    font-size: 2rem;
  }
}

/* ============================================
   НОВАЯ СТРАНИЦА О НАС
   ============================================ */

/* Hero секция О нас */
.about-hero {
  width: 100%;
  min-height: 60vh;
  padding: 150px 20px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-hero-container {
  max-width: 1200px;
  text-align: center;
}

.about-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #000000;
  margin: 0 0 20px 0;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.about-hero-subtitle {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: #000000;
  margin: 0 0 50px 0;
  font-weight: 600;
  line-height: 1.5;
}

.about-hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.about-hero-stat {
  text-align: center;
}

.about-hero-stat-number {
  font-size: 4rem;
  font-weight: 900;
  color: #2ecc71;
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 4px 20px rgba(46, 204, 113, 0.4);
}

.about-hero-stat-label {
  font-size: 1.1rem;
  color: #000000;
  font-weight: 600;
}

/* О компании - ПО ЦЕНТРУ */
.about-company {
  padding: 80px 20px;
  background: transparent;
  text-align: center;
  width: 100%;
}

.about-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: block;
  width: 100%;
}

.about-company-title {
  font-size: 2.5rem;
  color: #000000;
  margin: 0 0 30px 0;
  font-weight: 800;
  position: relative;
  padding-bottom: 20px;
  display: inline-block;
  width: auto;
}

.about-company-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #2ecc71, #27ae60);
  border-radius: 3px;
}

.about-company-lead {
  font-size: 1.3rem;
  color: #000000;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 30px 0;
}

.about-company-text {
  font-size: 1.05rem;
  color: #333333;
  line-height: 1.8;
  margin: 0 0 20px 0;
}

/* Преимущества - ПО ЦЕНТРУ */
.about-features {
  padding: 100px 20px;
  background: transparent;
  text-align: center;
  width: 100%;
  display: block;
}

.about-features-title {
  font-size: 2.5rem;
  color: #000000;
  margin: 0 0 60px 0;
  font-weight: 800;
  text-align: center;
  display: block !important;
  width: 100% !important;
}

.about-features-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

.about-feature-card {
  background: #ffffff;
  border-radius: 25px;
  padding: 40px 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2ecc71, #27ae60);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.about-feature-card:hover::before {
  transform: scaleX(1);
}

.about-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(46, 204, 113, 0.2);
  border-color: #2ecc71;
}

.about-feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
  transition: transform 0.4s ease;
  flex-shrink: 0;
}

.about-feature-card:hover .about-feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.about-feature-title {
  font-size: 1.3rem;
  color: #000000;
  margin: 0 0 12px 0;
  font-weight: 700;
  line-height: 1.3;
}

.about-feature-text {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.about-image-block {
  position: relative;
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-frame {
  background: #000000;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-frame--large {
  padding: 50px;
  min-height: 600px;
}

.about-logo-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.about-logo-3d {
  width: 100%;
  height: 100%;
  max-width: 400px;
  max-height: 500px;
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
}

.about-logo-3d-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  display: block;
}

.about-image-frame::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  border-radius: 34px;
  z-index: -1;
  opacity: 0.8;
}

.about-image-frame--large::before {
  border-radius: 34px;
}

.about-logo-3d-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  display: block;
}

/* Преимущества */
.about-features {
  padding: 100px 20px;
  background: transparent;
}

.about-features-title {
  font-size: 2.5rem;
  color: #000000;
  text-align: center;
  margin: 0 0 60px 0;
  font-weight: 800;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.about-feature-card {
  background: #ffffff;
  border-radius: 25px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.about-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2ecc71, #27ae60);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.about-feature-card:hover::before {
  transform: scaleX(1);
}

.about-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(46, 204, 113, 0.2);
  border-color: #2ecc71;
}

.about-feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
  transition: transform 0.4s ease;
}

.about-feature-card:hover .about-feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.about-feature-title {
  font-size: 1.4rem;
  color: #000000;
  margin: 0 0 15px 0;
  font-weight: 700;
}

.about-feature-text {
  font-size: 1rem;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

/* Статистика */
.about-stats-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  position: relative;
  overflow: hidden;
}

.about-stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      45deg,
      transparent 48%,
      rgba(255, 255, 255, 0.1) 49%,
      rgba(255, 255, 255, 0.1) 51%,
      transparent 52%
    ),
    linear-gradient(
      -45deg,
      transparent 48%,
      rgba(255, 255, 255, 0.1) 49%,
      rgba(255, 255, 255, 0.1) 51%,
      transparent 52%
    );
  background-size: 60px 60px;
  opacity: 0.3;
}

.about-stats-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.about-stat-item {
  text-align: center;
  color: #ffffff;
}

.about-stat-number {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 15px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.about-stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.95;
}

/* CTA секция */
.about-cta {
  padding: 100px 20px;
  background: transparent;
}

.about-cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  border-radius: 30px;
  padding: 60px 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 3px solid rgba(46, 204, 113, 0.2);
}

.about-cta-title {
  font-size: 2.2rem;
  color: #000000;
  margin: 0 0 20px 0;
  font-weight: 800;
}

.about-cta-text {
  font-size: 1.2rem;
  color: #666666;
  margin: 0 0 40px 0;
  line-height: 1.6;
}

.about-cta-btn {
  display: inline-block;
  background: #000000;
  color: #ffffff;
  padding: 20px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 2px solid transparent;
}

.about-cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  background: #333333;
  border-color: #000000;
}

/* Адаптация страницы О нас */
@media (max-width: 1024px) {
  .about-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 50vh;
    padding: 120px 15px 60px;
  }

  .about-hero-stats {
    gap: 30px;
  }

  .about-hero-stat-number {
    font-size: 3rem;
  }

  .about-features {
    padding: 60px 15px;
  }

  .about-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .about-feature-card {
    padding: 30px 20px;
    min-height: auto;
  }

  .about-stat-number {
    font-size: 3rem;
  }

  .about-cta {
    padding: 60px 15px;
  }

  .about-cta-container {
    padding: 40px 20px;
  }

  .about-cta-title {
    font-size: 1.5rem;
  }

  .about-cta-text {
    font-size: 1rem;
  }

  .about-cta-btn {
    font-size: 1rem;
    padding: 16px 30px;
  }
}

@media (max-width: 480px) {
  .about-hero-stats {
    gap: 20px;
  }

  .about-hero-stat-number {
    font-size: 2.5rem;
  }

  .about-features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .about-feature-card {
    padding: 25px 20px;
    min-height: auto;
  }

  .about-feature-title {
    font-size: 1.1rem;
  }

  .about-feature-text {
    font-size: 0.9rem;
  }
}

/* Контакты Map Section - Контакты и карта */
.contacts-map-section {
  padding: 80px 20px;
  background: transparent;
}

.contacts-map-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 15px;
  color: #000000;
  font-weight: 700;
  display: none;
}

.contacts-map-subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 50px;
  color: #666666;
  display: none;
}

.contacts-map-container {
  max-width: 1200px;
  margin: 0 auto;
  background: #000000;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contacts-map-info-simple {
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000000;
}

.contact-item-simple {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-item-simple__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #1a1a1a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.contact-item-simple__icon svg {
  width: 20px;
  height: 20px;
}

.contact-item-simple__content {
  flex: 1;
}

.contact-item-simple__text {
  font-size: 1.1rem;
  color: #ffffff;
  margin: 0;
  line-height: 1.5;
  font-weight: 600;
}

.map-container {
  width: 100%;
  height: 500px;
  background: #1a1a1a;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) invert(92%) contrast(83%);
}

/* Mobile адаптация контактов и карты */
@media (max-width: 900px) {
  .contacts-map-section {
    padding: 60px 15px;
  }

  .contacts-map-info-simple {
    padding: 25px;
  }

  .contact-item-simple {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .map-container {
    height: 400px;
  }

  .map-container iframe {
    height: 100%;
  }
}

@media (max-width: 480px) {
  .contacts-map-info-simple {
    padding: 20px;
  }

  .contact-item-simple__icon {
    width: 35px;
    height: 35px;
  }

  .contact-item-simple__icon svg {
    width: 18px;
    height: 18px;
  }

  .contact-item-simple__text {
    font-size: 1rem;
  }

  .map-container {
    height: 350px;
  }
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-question {
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #2c5282;
}

.faq-question__icon {
  transition: transform 0.3s ease;
}

.faq-answer {
  padding-bottom: 20px;
}

.faq-item--open .faq-question__icon svg {
  transform: rotate(180deg);
}

/* Секция Нас рекомендуют */
.recommendations-section {
  padding: 0;
  background: transparent;
}

.recommendations-bg {
  background: #ffffff;
  border-radius: 0 0 40px 40px;
  padding: 80px 40px;
  box-shadow: none;
  width: 100%;
}

.recommendations-container {
  max-width: 100%;
  margin: 0;
  padding: 0 20px;
}

/* Секция Партнёры - Логотипы */
.partners-logos-section {
  padding: 0;
  background: transparent;
  position: relative;
  overflow: visible;
}

.partners-logos-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 48%, #2ecc71 49%, #2ecc71 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, #2ecc71 49%, #2ecc71 51%, transparent 52%);
  background-size: 100px 100px;
  opacity: 0.05;
  pointer-events: none;
}

.partners-logos-container {
  max-width: 100%;
  margin: 0;
  position: relative;
  z-index: 2;
  background: #ffffff;
}

.partners-logos-bg {
  background: transparent;
  border-radius: 40px 40px 0 0;
  padding: 80px 40px;
  box-shadow: none;
}

.partners-logos-title {
  font-size: 2.5rem;
  text-align: center;
  margin: 0 0 50px 0;
  color: #000000;
  font-weight: 700;
}

.partners-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: center;
}

.partner-logo-item {
  width: 180px;
  height: 180px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 2px solid #f0f0f0;
}

.partner-logo-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 50px rgba(46, 204, 113, 0.25);
  border-color: #2ecc71;
}

.partner-logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.4s ease;
}

.partner-logo-item:hover img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .partners-logos-section {
    padding: 0;
  }

  .partners-logos-container {
    max-width: 100%;
  }

  .partners-logos-bg {
    border-radius: 0;
    padding: 50px 20px;
  }

  .partners-logos-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .partners-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .partner-logo-item {
    width: 140px;
    height: 140px;
    padding: 15px;
  }

  .recommendations-bg {
    border-radius: 0 0 30px 30px;
    padding: 50px 20px;
  }
}

.recommendations-container {
  max-width: 900px;
  margin: 0 auto;
}

.recommendations-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  text-align: center;
  margin: 0 0 15px 0;
  color: #000000;
  font-weight: 700;
  word-wrap: break-word;
  line-height: 1.2;
}

.recommendations-subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin: 0 0 50px 0;
  color: #666666;
}

.recommendations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  justify-content: center;
}

.recommendation-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.recommendation-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  background: #f5f5f5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

.recommendation-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
  display: block;
}

.recommendation-wrapper:hover .recommendation-image img {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .partners-slider {
    padding: 0 20px;
  }

  .partner-card {
    padding: 40px 25px;
    min-height: 250px;
  }

  .partner-card__logo {
    width: 70px;
    height: 70px;
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .partner-card__title {
    font-size: 1.3rem;
  }

  .recommendations-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .recommendation-image {
    max-width: 100%;
  }

  .recommendation-card {
    padding: 40px 30px;
  }
}

/* ============================================
   УНИВЕРСАЛЬНАЯ АДАПТАЦИЯ — iPhone SE, старые Android
   ============================================ */
@media (max-width: 375px) {
  .site-header .logo {
    font-size: 20px !important;
  }

  .hero-new__title {
    font-size: 1.6rem !important;
  }

  .hero-new__subtitle {
    font-size: 1rem !important;
  }

  .hero-new__features li {
    font-size: 0.9rem !important;
    padding-left: 35px !important;
  }

  .hero-new__features li::before {
    font-size: 1.8rem !important;
  }

  .contacts-form-title h2 {
    font-size: 1.2rem !important;
  }

  .contacts-form-title p {
    font-size: 0.85rem !important;
  }

  .hero-new__form .contacts-callback-btn {
    font-size: 0.7rem !important;
    padding: 10px 4px !important;
  }

  .services-title {
    font-size: 1.6rem !important;
  }

  .services-subtitle {
    font-size: 0.95rem !important;
  }

  .service-card__title {
    font-size: 1.1rem !important;
  }

  .vk-title {
    font-size: 1.4rem !important;
  }

  .vk-features li {
    font-size: 0.9rem !important;
    padding-left: 35px !important;
  }

  .process-scroll-main-title {
    font-size: 1.7rem !important;
  }

  .process-scroll-subtitle {
    font-size: 1rem !important;
  }

  .process-scroll-item__title {
    font-size: 1.2rem !important;
  }

  .process-scroll-item__description {
    font-size: 0.9rem !important;
  }

  .faq-title {
    font-size: 1.6rem !important;
  }

  .faq-question__text {
    font-size: 0.9rem !important;
  }

  .about-hero-title {
    font-size: 1.7rem !important;
  }

  .about-hero-subtitle {
    font-size: 1rem !important;
  }

  .about-hero-stat-number {
    font-size: 2.5rem !important;
  }

  .about-company-title {
    font-size: 1.6rem !important;
  }

  .about-company-lead {
    font-size: 1.05rem !important;
  }

  .about-company-text {
    font-size: 0.9rem !important;
  }

  .about-features-title {
    font-size: 1.5rem !important;
  }

  .about-feature-title {
    font-size: 1rem !important;
  }

  .about-feature-text {
    font-size: 0.85rem !important;
  }

  .about-cta-title {
    font-size: 1.3rem !important;
  }

  .about-cta-text {
    font-size: 0.9rem !important;
  }

  .about-cta-btn {
    font-size: 0.9rem !important;
    padding: 14px 25px !important;
  }

  .contacts-form-title h2 {
    font-size: 1.3rem !important;
  }

  .contacts-callback-btn {
    font-size: 0.8rem !important;
  }

  .partners-logos-title {
    font-size: 1.4rem !important;
  }

  main {
    padding: 20px 10px !important;
  }

  .hero-new {
    padding: 90px 10px 40px !important;
  }

  .services-section {
    padding: 40px 10px !important;
  }

  .vk-section {
    padding: 50px 10px !important;
  }

  .faq-section {
    padding: 50px 10px !important;
  }

  .about-hero {
    padding: 100px 10px 40px !important;
  }

  .about-features {
    padding: 50px 10px !important;
  }

  .about-cta {
    padding: 50px 10px !important;
  }

  .contacts-company-section {
    padding: 50px 10px !important;
  }
}

@media (max-width: 320px) {
  .site-header .logo {
    font-size: 17px !important;
  }

  .hero-new__title {
    font-size: 1.35rem !important;
  }

  .hero-new__subtitle {
    font-size: 0.9rem !important;
  }

  .hero-new__features li {
    font-size: 0.8rem !important;
    padding-left: 30px !important;
  }

  .hero-new__features li::before {
    font-size: 1.5rem !important;
  }

  .contacts-form-title h2 {
    font-size: 1.05rem !important;
  }

  .contacts-form-title p {
    font-size: 0.8rem !important;
  }

  .hero-new__form .contacts-callback-btn {
    font-size: 0.65rem !important;
    padding: 10px 2px !important;
  }

  .services-title {
    font-size: 1.4rem !important;
  }

  .services-subtitle {
    font-size: 0.85rem !important;
  }

  .service-card__title {
    font-size: 1rem !important;
  }

  .vk-title {
    font-size: 1.2rem !important;
  }

  .vk-features li {
    font-size: 0.8rem !important;
    padding-left: 30px !important;
  }

  .process-scroll-main-title {
    font-size: 1.4rem !important;
  }

  .process-scroll-subtitle {
    font-size: 0.9rem !important;
  }

  .process-scroll-item__title {
    font-size: 1.05rem !important;
  }

  .process-scroll-item__description {
    font-size: 0.8rem !important;
  }

  .faq-title {
    font-size: 1.35rem !important;
  }

  .faq-question__text {
    font-size: 0.8rem !important;
  }

  .about-hero-title {
    font-size: 1.4rem !important;
  }

  .about-hero-subtitle {
    font-size: 0.85rem !important;
  }

  .about-hero-stat-number {
    font-size: 2rem !important;
  }

  .about-company-title {
    font-size: 1.3rem !important;
  }

  .about-company-lead {
    font-size: 0.9rem !important;
  }

  .about-company-text {
    font-size: 0.8rem !important;
  }

  .about-features-title {
    font-size: 1.25rem !important;
  }

  .about-feature-title {
    font-size: 0.9rem !important;
  }

  .about-feature-text {
    font-size: 0.8rem !important;
  }

  .about-cta-title {
    font-size: 1.1rem !important;
  }

  .about-cta-text {
    font-size: 0.8rem !important;
  }

  .about-cta-btn {
    font-size: 0.8rem !important;
    padding: 12px 20px !important;
  }

  .contacts-form-title h2 {
    font-size: 1.1rem !important;
  }

  .contacts-callback-btn {
    font-size: 0.75rem !important;
  }

  .partners-logos-title {
    font-size: 1.2rem !important;
  }

  main {
    padding: 15px 8px !important;
  }

  .hero-new {
    padding: 85px 8px 30px !important;
  }

  .services-section {
    padding: 30px 8px !important;
  }

  .vk-section {
    padding: 40px 8px !important;
  }

  .faq-section {
    padding: 40px 8px !important;
  }

  .about-hero {
    padding: 90px 8px 30px !important;
  }

  .about-features {
    padding: 40px 8px !important;
  }

  .about-cta {
    padding: 40px 8px !important;
  }

  .contacts-company-section {
    padding: 40px 8px !important;
  }
}

/* ЖЁСТКОЕ ЦЕНТРИРОВАНИЕ ДЛЯ МОБИЛЬНОЙ ВЕРСИИ - КАРТОЧКИ ПРЕИМУЩЕСТВ */
@media (max-width: 768px) {
  /* Все карточки по центру */
  .hero-feature-card,
  .hero-feature-card__icon,
  .hero-feature-card__text {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    display: flex !important;
    flex-direction: column !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
  }

  .hero-feature-card {
    width: 100% !important;
    max-width: 100% !important;
    padding: 15px !important;
  }

  .hero-feature-card__icon {
    margin: 0 auto 10px !important;
    width: 40px !important;
    height: 40px !important;
  }

  .hero-feature-card__text {
    text-align: center !important;
  }

  .hero-feature-card__text strong,
  .hero-feature-card__text span {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  /* Сетка карточек по центру */
  .hero-features-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
    width: 100% !important;
    margin: 0 auto !important;
  }
}

/* ЖЁСТКОЕ ЦЕНТРИРОВАНИЕ ТЕКСТА В КАРТОЧКАХ - МОБИЛЬНАЯ ВЕРСИЯ */
@media (max-width: 768px) {
  .hero-feature-card {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    box-sizing: border-box !important;
  }

  .hero-feature-card__icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 10px !important;
  }

  .hero-feature-card__text {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-feature-card__text strong {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-feature-card__text span {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
