.starting-content {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url(https://adtech-it.ru/assets/images/starting.png);
    background-size: cover; /* Лучше чем contain для полного покрытия */
    background-position: center;
    width: 100%;
    border-radius: 32px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    height: 743px;

    position: relative;
}

.starting-video{
 border-radius: var(--radius-slg);
}
.starting-info{
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: flex-start;
    width: 609px;
}

.starting-info-text{
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.starting-info-text p{
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    color: var(--color-white);

}

.starting-content-backdrop{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-dark);
    z-index: 2;
    top:0;
    left:0;
    opacity: 0.7;
}

.starting-info h4{
    font-size: 56px;
    line-height: 64px;
    font-weight: 500;

    color: var(--color-white)
}
.starting-video-btn{
    display: none;
    height: 150px;
    top: 24px;
    right: 32px;

    padding: 0;
    overflow: hidden;

    background-image: url(https://adtech-it.ru/assets/images/starting.png);
    background-size: cover;
    background-position: center;
}

.starting-video-btn .icon {
    position: relative;
    width: 56px;
    height: 56px;
    animation: breathe 2.5s ease-in-out infinite;
    z-index: 2;
}
@keyframes breathe {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}
@media (max-width: 1350px) {
   .starting-content{
    flex-direction: column;
    overflow: hidden;
    height: auto;
   }
   .starting-video{
    margin: 0 16px 16px 16px;
    width: 80%;
   }

  .starting-info{
    gap: var(--spacing-lg);
    align-items: center;
    padding: 48px 32px 38px 32px;
    width: auto;
   }
   
   .starting-info button{
    padding-left: 48px;
    padding-right: 48px;
   }
   
  .starting-info h4{
    font-size: 24px;
    line-height: 32px;
    text-align: center;
  }  
  .starting-info-text{
    font-size: 14px;
    line-height: 20px;
    text-align: center;
  }
}

@media (max-width: 768px){
 
  .starting-video{
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 100%; /* Чтобы при разворачивании была правильная геометрия */
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .starting-info button{
    width: 100%;
   }
   .starting-info-text{
    gap: 16px;
   }
   .starting-video-btn{
        display: flex;
        align-items: center;
        justify-content: center;
    }
}