/* 🔹 ОСНОВНОЙ СЕКТОР */
.with-us-section {
  max-width: clamp(320px, 90vw, 1600px);;
 margin: clamp(60px, 12vh, 200px) auto clamp(48px, 8vh, 72px);
  padding: 0 4.5vw;
  font-family: 'manrope';
}

/* 🔹 КАПСУЛА */
.with-us-header {
  background-image: url('/Images/with-us\ photo1.png');
  background-size: cover;
  background-position: center;
  border-radius: 1.8vw;
  color: white;
  text-align: center;
  padding: 2vh 2vw;
  margin: 0 auto 5vh auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8vw;
}

.with-us-header h2 {
  font-size: clamp(28px, 2.5vw, 36px);
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 1vw;
}

.circle-arrow-img img {
width: clamp(39px, 4.7vw, 77px);
height: clamp(39px, 4.7vw, 77px);
 object-fit: contain;
  position: relative;
  top: 0.19em; /* Плавно опускает стрелку ниже текста */
}

/* 🔹 СЕТКА */
.with-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.6fr;
  gap: 2vw;
}

/* 🔹 КАРТОЧКИ */
.with-us-card {
  background-color: #F2F3F4;
  border-radius: 1.5vw;
  padding: 2vw;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  height: 30vh;
  box-sizing: border-box;
}

.with-us-card.stat {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #B7B7B7;
  height: 30vh;
}

/* 🔹 ЦИФРА */
.stat-value {
  font-size: clamp(28px, 2.8vw, 48px);
  font-weight: 900;
  background: linear-gradient(to bottom, #6163AE, #929292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5vh;
}

.stat-label {
  font-size: clamp(12px, 1vw, 16px);
  color: #666;
  text-align: center;
  line-height: 1.4;
}

/* 🔹 ЗАГОЛОВКИ */
.with-us-card h3 {
  font-size: clamp(18px, 1.8vw, 28px);
  font-weight: 600;
  margin-bottom: 2vh;
  background: linear-gradient(to bottom, #6163AE, #929292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.3;
}

/* 🔹 ОСНОВНОЙ ТЕКСТ */
.with-us-card p {
  font-size: clamp(14px, 1.15vw, 18px);
  color: #777;
  line-height: 1.6;
  margin: clamp(23px, 2.8vh, 37px);


}

/* 🔹 ПОДПИСЬ */
.footnote {
  text-align: right;
  font-size: clamp(10px, 0.8vw, 12px);
  color: #888;
  margin-top: 10px;
}

/* 🔹 Звезда */
.star-icon {
  width: clamp(14px, 1.2vw, 18px);
  height: clamp(14px, 1.2vw, 18px);
  margin-left: 0.3vw;
  vertical-align: middle;
}

.title-with-icon {
  position: relative;
  display: inline-block;
}

.title-with-icon .star-icon {
  position: absolute;
  top: -0.6vw;
  right: -1vw;
}






/* === WITH-US: скрытие на мобилке === */
@media (max-width: 768px) {
  .with-us-section {
    display: none !important;
  }
}