.seo-pricing{
    width:100%;
    max-width:1600px;   /* просто верхний предел, меняй когда захочешь */
    margin:80px auto;
    padding:0 20px;
    box-sizing:border-box;
}

.seo-pricing-header{
    text-align:center;
    margin-bottom:50px;
}

.seo-pricing-header h2{
    font-size:clamp(26px, 3.5vw, 42px);
    margin-bottom:15px;
}

.seo-pricing-header p{
    max-width:850px;
    margin:auto;
    line-height:1.7;
    color:#666;
}

.seo-cards{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
    align-items:stretch;
}

.seo-card{
    background:#fff;
    border:1px solid #e9e9e9;
    border-radius:24px;
    padding:35px;
    position:relative;
    transition:.3s;
    box-shadow:0 8px 30px rgba(0,0,0,.05);
    display:flex;
    flex-direction:column;
    height:100%;
}

.seo-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.seo-card-featured{
    border:2px solid #ff5b00;
    transform:scale(1.03);
}

.seo-badge{
    position:absolute;
    top:-14px;
    left:50%;
    transform:translateX(-50%);
    background:#ff5b00;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:11px;
    font-weight:700;
    text-transform:uppercase;
}

.seo-card h3{
    text-align:center;
    font-size:clamp(20px, 1.6vw, 30px);  /* мин 20 / макс 30 */
    margin-bottom:10px;
}

.seo-price{
    text-align:center;
    color:#ff5b00;
    font-size:clamp(20px, 1.6vw, 30px);  /* мин 20 / макс 30 */
    font-weight:700;
    margin-bottom:20px;
}

.seo-result{
    text-align:center;
    line-height:1.7;
    margin-bottom:30px;
    min-height:80px;
    color:#333;
}

.seo-result1{
    text-align:center;
    line-height:1.7;
	margin-bottom:10px;
    color:#333;
	font-weight: 700;
}

.seo-block-title{
    font-weight:700;
    margin-bottom:12px;
    font-size:17px;
}

.seo-benefits{
    margin-bottom:25px;
    padding:20px;
    background:#fafafa;
    border-radius:14px;
    flex-shrink:0;
}

.seo-for{
    margin-bottom:30px;
    flex-shrink:0;
}

.seo-benefits ul,
.seo-for ul{
    margin:0;
    padding-left:20px;
}

.seo-benefits li,
.seo-for li{
    margin-bottom:10px;
    line-height:1.6;
}

.seo-btn{
    display:block;
    width:100%;
    text-align:center;
    background:#ff5b00;
    color:#fff !important;
    text-decoration:none;
    padding:16px;
    border-radius:12px;
    font-weight:700;
    transition:.3s;
    box-sizing:border-box;
    margin-top:auto;
}

.seo-btn:hover{
    background:#e65200;
}

.intec-rates.slider .table-standard-1 .item-viewport .item-button{
    margin-top:auto;
}

.intec-rates.slider .table-standard-1 .item-viewport{
	border: 0px solid var(--color-neutral-semi-bright);
}

.intec-form-popup.standard .blocks-standard-4 .form-button{
	max-width: 100%;
}

/* планшет — 2 в ряд */
@media(max-width:1200px){
    .seo-cards{
        grid-template-columns:repeat(2, 1fr);
    }
}

/* Мобильные — по 1 в ряд */
@media(max-width:768px){
    .seo-cards{
        grid-template-columns:1fr;
    }

    .seo-card-featured{
        transform:none;
    }

    
}

.intec-reviews-list.slider .blocks-cards-1 .item picture {
    display: none;
}

.intec-reviews-list.slider .list-standard-1 .item picture {
	display: none;
}

.result__tiles-container {
    display: grid;
    gap: 40px; /* Отступы между блоками */
    
    /* Адаптивная сетка: минимум 300px ширина блока, максимум - равное распределение */
    grid-template-columns: repeat(2, minmax(300px, 1fr));
	align-items: stretch; /* Растягиваем элементы по высоте */
}

.result__tile {
    padding: 30px 30px 50px 30px;
    background-color: #fff;
    min-height: 0;
    transition: all .4s ease;
	border-radius: 4px;
    
    /* Добавляем эффект при наведении */
    &:hover {
        background-color: #ff5b00;
        
        /* Меняем цвет текста при наведении */
        .result__tile-card-wrapper span,
        .card-title,
        p {
            color: #ffffff;
        }
    }
}

/* Стили для первого блока */
.result__tile:first-child {
    background: linear-gradient(to right, #ff5b00, #e23350);
    color: #ffffff;
    
    &:hover {
        background: #000000;
    }
    
    .result__tile-card-wrapper span,
    .card-title,
    p {
        color: #ffffff;
    }
}

/* .result__tile-card { */
    /* padding: 30px 30px 50px 30px; */
    /* background-color: #fff; */
    /* min-height: 454px; */
    /* transition: all .4s ease; */
/* } */

.result__tile-card-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.result__tile-card-wrapper > span {
    font-weight: 700;
    font-size: 2.7rem;
    line-height: 110%;
    text-transform: uppercase;
    color: #000000;
}
.result__tile-card-wrapper .card-title {
    margin-bottom: 20px;
    color: #000000;
    transition: all .3s ease;
}
.card-title {
    font-weight: 700;
    font-size: 2.3rem;
    line-height: 110%;
    text-transform: uppercase;
}

.result__tile-card-wrapper p {
    margin-bottom: 20px;
    color: #000000;
    transition: all .3s ease;
}

/* //Страница Создание ИМ */

/* Выделенная область */
.result__tile_ov {
  padding: 30px 30px 50px 30px;
    background: linear-gradient(to right, #ff5b00, #e23350);
    color: #ffffff;
    /* height: 100%; */
    transition: all .4s ease;
	border-radius: 4px;
    
    /* Добавляем эффект при наведении */
    &
        p {
            color: #ffffff;
        }
    }
}


/* Новый класс для пятого блока */
.result__tile-fullwidth {
    grid-column: 1 / -1; /* Занимает все колонки */
    margin-bottom: 40px; /* Сохраняем отступ */
    
    /* Убираем отступы слева и справа */
    padding-left: 0;
    padding-right: 0;
}

/* Заголовок для оранжевого блока */
.zagorblok {
    font-size: 1.73333em;
    line-height: calc(1em + 14px);
    margin: 30px 0 0 0;
	font-weight: bold;
}
/* Заголовок для оранжевого блока */

/* Заголовок для белого блока */
.black{
	color: #000000;
}
/* Заголовок для белого блока */

/* Страница Создание ИМ */
@media (max-width: 768px) {
    .result__tiles-container {
        grid-template-columns: 1fr; /* Один столбец */
        gap: 20px; /* Уменьшаем отступы на мобильных */
    }
    
    .result__tile {
        padding: 20px; /* Уменьшаем отступы внутри карточек */
        min-height: auto; /* Убираем фиксированную высоту */
    }
	
	.bx365-videowidget {
		display: none;
	}
}

@media (max-width: 480px) {
    .result__tile-card-wrapper > span {
        font-size: 2rem; /* Уменьшаем размер номера на очень маленьких экранах */
    }
    
    .card-title {
        font-size: 1.8rem; /* Уменьшаем размер заголовка */
    }
	
	
}
/* //Страница Создание ИМ */


.intec-form-popup.standard .blocks-standard-1 .form-button{
	max-width: none;
}