:root {
  --primary-color: #C08144;
  --text-white: #FFFFFF;
}

.promo {
  padding: 60px 0;
  overflow: hidden;
}

.promo__wrapper {
  position: relative;
  min-height: 520px;
  border-radius: 60px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 80px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.promo__title {
  font-weight: 700;
  font-size: 52px;
  line-height: 1.15;
  color: #FFFFFF;
}

.promo__btn {
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  padding: 18px 18px 18px 30px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  margin-top: 20px;
}

.promo__btn:hover {
  background: #f8f8f8;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.promo__btn:active {
  transform: scale(0.96);
}

.promo__btn-text {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #C08144;
  margin-right: 20px;
}

.promo__btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #D98C45;
  border-radius: 13px;
  transition: transform 0.3s ease;
}

.promo__btn:hover .promo__btn-icon {
  transform: translateX(3px);
}

.promo__visual {
  position: relative;
  height: 400px;
  width: 100%;
}

.promo__circle-container {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.promo__circle-bg {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  z-index: -1;
}

.promo__circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 4px solid #FFFFFF;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.promo__circle-container--1 {
  width: 200px;
  height: 200px;
  top: -20px;
  left: 20%;
}

.promo__circle-container--2 {
  width: 180px;
  height: 180px;
  top: 50px;
  right: 0%;
}

.promo__circle-container--3 {
  width: 170px;
  height: 170px;
  bottom: -30px;
  left: 45%;
}

@media (max-width: 991px) {
  .promo__wrapper {
    padding: 40px;
    min-height: auto;
  }
  .promo__title {
    font-size: 36px;
    text-align: center;
  }
  .promo__content {
    text-align: center;
    margin-bottom: 50px;
  }
  .promo__visual {
    height: 350px;
  }
  .promo__circle-container--1 { left: 5%; top: 0; }
  .promo__circle-container--2 { right: 5%; top: 40px; }
  .promo__circle-container--3 { left: 30%; bottom: 0; }
}