.portfolio-cart-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
}


/* ============================================
   HERO MINI SECTION
   ============================================ */

.hero-mini {
    position: relative;
    width: 100%;
    background: #907A71;
    border-radius: 0 0 50px 50px;
    overflow: hidden;
    height: fit-content;
}

.hero-mini__container {
    max-width: 1560px;
    margin: 0 auto;
    padding: 156px 20px 80px;
    display: flex;
    flex-direction: column;
}

/* Хлебные крошки */
.hero-mini__breadcrumbs {

}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.breadcrumbs__link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumbs__link:hover {
    opacity: 0.8;
    text-decoration: none;
}

.breadcrumbs__separator {
    width: 4px;
    height: 4px;
    background: #E2E1DF;
    border-radius: 50%;
}

.breadcrumbs__current {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    color: #E2E1DF;
}

/* Основной контент */
.hero-mini__main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-mini__offer {
    flex: 1;
    min-width: 300px;
    max-width: 696px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.hero-mini__title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 70px;
    line-height: 110%;
    color: #FFFFFF;
    margin: 0;
}

.hero-mini__description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 135%;
    color: #FFFFFF;
    margin: 0;
}

.hero-mini__features {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-hero {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.feature__check-hero {
    width: 13px;
    height: 10px;
    background: #F3BF82;
    clip-path: polygon(0% 50%, 40% 100%, 100% 0%, 80% 0%, 40% 70%, 20% 30%);
}

.feature__text-hero {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    color: #FFFFFF;
}


.pricing-card__features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 145%;

}

.pricing-card__features li::before {
    content: '';
    display: inline-block;
    width: 13px;
    height: 10px;
    background: #F3BF82;
    clip-path: polygon(0% 50%, 40% 100%, 100% 0%, 80% 0%, 40% 70%, 20% 30%);
    flex-shrink: 0;
}

.hero-mini__buttons {
    display: flex;
    gap: 20px;
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 22px 40px 24px;
    background: #282624;
    border-radius: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    text-align: center;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    transform: translateY(-2px);
    background: #3a3633;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 22px 40px 24px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    text-align: center;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-glass:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-mini__image {
    flex: 0 0 auto;
    width: 577px;
    max-width: 45%;
    display: flex;
    justify-content: flex-end;
}

.hero-mini__image img {
    width: 100%;
    height: auto;
    max-height: 677px;
    object-fit: contain;
    display: block;
}

/* ============================================
   PORTFOLIO CATEGORIES SECTION
   ============================================ */

.portfolio-categories {
    padding: 80px 0 100px;
    background: #FFFFFF;
}

.portfolio-categories .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.portfolio-categories__header {
    text-align: center;
    margin-bottom: 60px;
}

.portfolio-categories__title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 115%;
    color: #282624;
    margin-bottom: 15px;
}

.portfolio-categories__subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 135%;
    color: #666;
    margin: 0;
}

.portfolio-categories__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-category-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
    border-radius: 20px;
    overflow: hidden;
    background: #F6F5F3;
}

.portfolio-category-card:hover {
    transform: translateY(-5px);
}

.portfolio-category-card__image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.portfolio-category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-category-card:hover .portfolio-category-card__image img {
    transform: scale(1.05);
}

.portfolio-category-card__content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.portfolio-category-card__title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    color: #282624;
    margin: 0;
}

.portfolio-category-card__description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 145%;
    color: #666;
    margin: 0;
}

.portfolio-category-card__count {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #00BABF;
    margin-top: 5px;
}

.portfolio-categories__empty {
    text-align: center;
    padding: 60px 20px;
    background: #F6F5F3;
    border-radius: 20px;
    margin: 40px 0;
}

/* ============================================
   АДАПТИВНОСТЬ
   ============================================ */

@media (max-width: 1400px) {
    .hero-mini__container {
        padding: 140px 20px 60px;
    }

    .hero-mini__offer {
        max-width: 600px;
        gap: 40px;
    }

    .hero-mini__title {
        font-size: 60px;
    }

    .hero-mini__description {
        font-size: 24px;
    }

    .hero-mini__image {
        width: 500px;
    }
}

@media (max-width: 1200px) {
    .hero-mini__container {
        padding: 120px 20px 60px;
    }

    .hero-mini__title {
        font-size: 52px;
    }

    .hero-mini__description {
        font-size: 22px;
    }

    .portfolio-categories__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .hero-mini {
        border-radius: 0 0 40px 40px;
    }

    .hero-mini__container {
        padding: 100px 20px 50px;
    }

    .hero-mini__main {
        flex-direction: column;
        text-align: center;
    }

    .hero-mini__offer {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }

    .hero-mini__features {
        justify-content: center;
    }

    .hero-mini__buttons {
        justify-content: center;
        flex-direction: row;
    }

    .hero-mini__title {
        font-size: 44px;
    }

    .hero-mini__image {
        width: 100%;
        max-width: 450px;
        justify-content: center;
    }

    .portfolio-categories__title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .hero-mini {
        border-radius: 0 0 30px 30px;
    }

    .hero-mini__container {
        padding: 100px 15px 40px;
    }

    .hero-mini__title {
        font-size: 36px;
    }

    .hero-mini__description {
        font-size: 18px;
    }

    .hero-mini__buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-dark,
    .btn-glass {
        width: 100%;
    }

    .portfolio-categories {
        padding: 50px 0 70px;
    }

    .portfolio-categories__grid {
        grid-template-columns: 1fr;
    }

    .portfolio-categories__title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .hero-mini__title {
        font-size: 28px;
    }

    .hero-mini__description {
        font-size: 16px;
    }

    .hero-mini__features {
        flex-direction: column;
        align-items: center;
    }

    .portfolio-categories__title {
        font-size: 24px;
    }
}

/* ============================================
   АНИМАЦИИ
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.breadcrumbs {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    animation-delay: 0s;
}

.hero-mini__title {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    animation-delay: 0.1s;
}

.hero-mini__description {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

.hero-mini__features {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    animation-delay: 0.3s;
}

.hero-mini__buttons {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    animation-delay: 0.4s;
}

.hero-mini__image {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.5s;
}

.portfolio-categories__title,
.portfolio-categories__subtitle {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.portfolio-categories__title {
    animation-delay: 0s;
}

.portfolio-categories__subtitle {
    animation-delay: 0.1s;
}

.portfolio-category-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.portfolio-category-card:nth-child(1) { animation-delay: 0.2s; }
.portfolio-category-card:nth-child(2) { animation-delay: 0.25s; }
.portfolio-category-card:nth-child(3) { animation-delay: 0.3s; }
.portfolio-category-card:nth-child(4) { animation-delay: 0.35s; }
.portfolio-category-card:nth-child(5) { animation-delay: 0.4s; }
.portfolio-category-card:nth-child(6) { animation-delay: 0.45s; }

/* ============================================
      HERO ROLLER SECTION -
      ============================================ */

.hero-roller {
    position: relative;
    width: 100%;

    background: #908171;
    border-radius: 0 0 50px 50px;
    overflow: hidden;
}

.hero-roller__container {
    flex-direction: column;
   position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 156px var(--container-padding);
    display: flex;

    min-height: 100vh;

}

/* ============================================
   ХЛЕБНЫЕ КРОШКИ
   ============================================ */

.hero-roller__breadcrumbs {
    margin-bottom: 60px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.breadcrumbs__link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumbs__link:hover {
    opacity: 0.8;
    text-decoration: none;
}

.breadcrumbs__separator {
    width: 4px;
    height: 4px;
    background: #E2E1DF;
    border-radius: 50%;
}

.breadcrumbs__current {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    color: #E2E1DF;
}

/* ============================================
   ОСНОВНОЙ КОНТЕНТ
   ============================================ */

.hero-roller__main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* ОФФЕР */
.hero-roller__offer {
    flex: 1;
    min-width: 300px;
    max-width: 696px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Рейтинг */
.hero-roller__rating {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-roller__stars {
    display: flex;
    align-items: center;
    gap: 4px;
}

.star {
    width: 16px;
    height: 16px;
    background: #F3BF82;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.hero-roller__rating-value {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    color: #FFFFFF;
}

.hero-roller__reviews {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    color: #FFFFFF;
}

/* Заголовок */
.hero-roller__title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 70px;
    line-height: 110%;
    color: #FFFFFF;
    margin: 0;
}

/* Описание */
.hero-roller__description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 135%;
    color: #FFFFFF;
    margin: 0;
}

/* Тезисы */
.hero-roller__features {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature__check {
    width: 13px;
    height: 10px;
    background: #F3BF82;
    clip-path: polygon(0% 50%, 40% 100%, 100% 0%, 80% 0%, 40% 70%, 20% 30%);
}

.feature__text-hero {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    color: #FFFFFF;
}

/* Кнопки */
.hero-roller__buttons {
    display: flex;
    gap: 20px;

}

.btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 22px 40px 24px;
    background: #282624;
    border-radius: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    text-align: center;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    transform: translateY(-2px);
    background: #3a3633;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 22px 40px 24px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    text-align: center;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-glass:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ============================================
   ИЗОБРАЖЕНИЕ
   ============================================ */

.hero-roller__image {
    flex: 0 0 auto;
    width: 577px;
    max-width: 45%;
    display: flex;
    justify-content: flex-end;
}

.hero-roller__image img {
    width: 100%;
    height: auto;
    max-height: 677px;
    object-fit: contain;
    display: block;
    border-radius: 20px;
}

/* ============================================
   АДАПТИВНОСТЬ
   ============================================ */

@media (max-width: 1400px) {
    .hero-roller__container {
        padding: 140px 20px 60px;
    }

    .hero-roller__offer {
        max-width: 600px;
        gap: 40px;
    }

    .hero-roller__title {
        font-size: 60px;
    }

    .hero-roller__description {
        font-size: 24px;
    }

    .hero-roller__image {
        width: 500px;
    }
}

@media (max-width: 1200px) {
    .hero-roller__container {
        padding: 120px 20px 60px;
    }

    .hero-roller__breadcrumbs {
        margin-bottom: 40px;
    }

    .hero-roller__title {
        font-size: 52px;
    }

    .hero-roller__description {
        font-size: 22px;
    }

    .hero-roller__offer {
        gap: 35px;
    }

    .hero-roller__image {
        width: 450px;
    }
}

@media (max-width: 992px) {
    .hero-roller {
        border-radius: 0 0 40px 40px;
    }

    .hero-roller__container {
        padding: 100px 20px 50px;
    }

    .hero-roller__main {
        flex-direction: column;
        text-align: center;
    }

    .hero-roller__offer {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }

    .hero-roller__rating {
        justify-content: center;
    }

    .hero-roller__features {
        justify-content: center;
    }

    .hero-roller__buttons {
        justify-content: center;
        flex-direction: column;
    }

    .hero-roller__title {
        font-size: 44px;
    }

    .hero-roller__description {
        font-size: 20px;
    }

    .hero-roller__image {
        width: 100%;
        max-width: 450px;
        justify-content: center;
        margin-top: 20px;
    }

    .breadcrumbs {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-roller {
        border-radius: 0 0 30px 30px;
    }

    .hero-roller__container {
        padding: 100px 15px 40px;
    }

    .hero-roller__breadcrumbs {
        margin-bottom: 30px;
    }

    .breadcrumbs {
        gap: 12px;
    }

    .breadcrumbs__link,
    .breadcrumbs__current {
        font-size: 14px;
    }

    .hero-roller__title {
        font-size: 36px;
    }

    .hero-roller__description {
        font-size: 18px;
    }

    .hero-roller__offer {
        gap: 25px;
    }

    .hero-roller__rating-value,
    .hero-roller__reviews,
    .feature__text-hero {
        font-size: 14px;
    }

    .hero-roller__features {
        gap: 20px;
    }

    .btn-dark,
    .btn-glass {
        padding: 16px 30px 18px;
        font-size: 14px;
    }

    .hero-roller__image {
        max-width: 350px;
    }
}

@media (max-width: 576px) {
    .hero-roller__container {
        padding: 100px 15px 30px;
    }

    .hero-roller__title {
        font-size: 28px;
    }

    .hero-roller__description {
        font-size: 16px;
    }

    .hero-roller__features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        justify-content: center;
    }

    .hero-roller__buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-dark,
    .btn-glass {
        width: 100%;
    }

    .hero-roller__image {
        max-width: 280px;
    }
}

/* ============================================
   АНИМАЦИИ
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.breadcrumbs {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    animation-delay: 0s;
}

.hero-roller__rating {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    animation-delay: 0.1s;
}

.hero-roller__title {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

.hero-roller__description {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    animation-delay: 0.3s;
}

.hero-roller__features {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    animation-delay: 0.4s;
}

.hero-roller__buttons {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    animation-delay: 0.5s;
}

.hero-roller__image {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.6s;
}



/* ============================================
ADVANTAGES SECTION - ТОЧНОЕ СООТВЕТСТВИЕ МАКЕТУ
============================================ */

.advantages {
    position: relative;
    width: 100%;
    background: #F6F5F3;
    border-radius: 0 0 50px 50px;
    padding: 60px 0;
    margin-top: -1px;
}

.advantages .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Сетка преимуществ */
.advantages__grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    flex-wrap: wrap;
}

/* Карточка преимущества */
.advantage-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    min-width: 195px;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

/* Иконка */
.advantage-card__icon {
    width: auto;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.advantage-card__icon img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Контент */
.advantage-card__content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Заголовок */
.advantage-card__title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 125%;
    color: #282624;
    margin: 0;
}

/* Описание */
.advantage-card__description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 145%;
    color: #282624;
    margin: 0;
}

/* Индивидуальные ширины для разных карточек */
.advantage-card:nth-child(1) {
    width: 225px;
}

.advantage-card:nth-child(2) {
    width: 238px;
}

.advantage-card:nth-child(3) {
    width: 195px;
}

.advantage-card:nth-child(4) {
    width: 253px;
}

/* ============================================
   АДАПТИВНОСТЬ
   ============================================ */

@media (max-width: 1200px) {
    .advantages__grid {
        gap: 60px;
        justify-content: center;
    }

    .advantage-card:nth-child(1),
    .advantage-card:nth-child(2),
    .advantage-card:nth-child(3),
    .advantage-card:nth-child(4) {
        width: auto;
        min-width: 200px;
        flex: 0 1 calc(50% - 60px);
    }
}

@media (max-width: 992px) {
    .advantages {
        padding: 50px 0;
        border-radius: 0 0 40px 40px;
    }

    .advantages__grid {
        gap: 40px;
    }

    .advantage-card {
        align-items: center;
        text-align: center;
    }

    .advantage-card__icon {
        justify-content: center;
    }

    .advantage-card__content {
        align-items: center;
    }

    .advantage-card__title {
        font-size: 22px;
    }

    .advantage-card__description {
        font-size: 16px;
    }

    .advantage-card:nth-child(1),
    .advantage-card:nth-child(2),
    .advantage-card:nth-child(3),
    .advantage-card:nth-child(4) {
        flex: 0 1 calc(50% - 40px);
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .advantages {
        padding: 40px 0;
        border-radius: 0 0 30px 30px;
    }

    .advantages__grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .advantage-card {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 20px;
        width: 100%;
        max-width: 400px;
    }

    .advantage-card__icon {
        width: 70px;
        height: 70px;
        justify-content: center;
    }

    .advantage-card__icon img {
        height: 70px;
    }

    .advantage-card__content {
        align-items: flex-start;
        flex: 1;
    }

    .advantage-card__title {
        font-size: 20px;
    }

    .advantage-card__description {
        font-size: 14px;
    }

    .advantage-card:nth-child(1),
    .advantage-card:nth-child(2),
    .advantage-card:nth-child(3),
    .advantage-card:nth-child(4) {
        width: 100%;
        max-width: 450px;
    }
}

@media (max-width: 576px) {
    .advantages {
        padding: 30px 0;
        border-radius: 0 0 25px 25px;
    }

    .advantage-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .advantage-card__icon {
        width: 60px;
        height: 60px;
    }

    .advantage-card__icon img {
        height: 60px;
    }

    .advantage-card__content {
        align-items: center;
    }

    .advantage-card__title {
        font-size: 18px;
    }

    .advantage-card__description {
        font-size: 13px;
    }
}

/* ============================================
   АНИМАЦИИ
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.advantage-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.advantage-card:nth-child(1) { animation-delay: 0.1s; }
.advantage-card:nth-child(2) { animation-delay: 0.2s; }
.advantage-card:nth-child(3) { animation-delay: 0.3s; }
.advantage-card:nth-child(4) { animation-delay: 0.4s; }




/* ============================================
PORTFOLIO WORKS SECTION - ТОЧНОЕ СООТВЕТСТВИЕ МАКЕТУ
============================================ */

.portfolio-works {
    padding: 80px 0 100px;
    background: #FFFFFF;
}

.portfolio-works .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   ЗАГОЛОВОК
   ============================================ */

.portfolio-works__header {
    text-align: center;
    margin-bottom: 60px;
}

.portfolio-works__title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 54px;
    line-height: 115%;
    text-align: center;
    color: #282624;
    margin-bottom: 10px;
}

.portfolio-works__subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 135%;
    text-align: center;
    color: #282624;
    margin: 0;
}

/* ============================================
   СЕТКА КАРТОЧЕК
   ============================================ */

.portfolio-works__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 10px;
    margin-bottom: 60px;
}

/* ============================================
   КАРТОЧКА РАБОТЫ
   ============================================ */

.work-card {
    width: calc(50% - 5px);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Изображение */
.work-card__image {
    width: 100%;
    height: 460px;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.work-card__image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-card__image--slider {
    background: #E8E7E5;
}

.work-card-swiper {
    width: 100%;
    height: 100%;
}

.work-card-swiper .swiper-slide {
    height: 460px;
}

.work-card-swiper .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.work-card-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.work-card__counter {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    padding: 6px 12px;
    background: rgba(40, 38, 36, 0.65);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    color: #FFFFFF;
    pointer-events: none;
}

.work-card__photos-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 3;
    padding: 6px 12px;
    background: rgba(40, 38, 36, 0.65);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 1;
    color: #FFFFFF;
    pointer-events: none;
}

.work-card__image--slider .work-card__counter,
.work-card__image--slider .work-card__photos-badge,
.work-card__image--slider .work-card__nav,
.work-card__image--slider .work-card__pagination {
    pointer-events: none;
}

.work-card__image--slider .work-card__nav,
.work-card__image--slider .work-card__pagination {
    pointer-events: auto;
}

.work-card__nav {
    position: absolute;
    top: 50%;
    margin-top: -22px;
    z-index: 4;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.work-card__nav::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #282624;
    border-right: 2px solid #282624;
}

.work-card__nav:hover {
    background: #FFFFFF;
    transform: scale(1.05);
}

.work-card__nav--prev {
    left: 16px;
}

.work-card__nav--prev::before {
    transform: rotate(-135deg);
    margin-left: 3px;
}

.work-card__nav--next {
    right: 16px;
}

.work-card__nav--next::before {
    transform: rotate(45deg);
    margin-right: 3px;
}

.work-card__pagination.swiper-pagination {
    bottom: 16px !important;
    z-index: 3;
}

.work-card__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 4px !important;
    transition: background 0.2s ease, transform 0.2s ease;
}

.work-card__pagination .swiper-pagination-bullet-active {
    background: #FFFFFF;
    transform: scale(1.2);
}

.work-card__nav.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

/* Контент карточки */
.work-card__content {
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Информация (название + описание) */
.work-card__info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.work-card__title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 120%;
    color: #282624;
    margin: 0;
}

.work-card__description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 145%;
    color: #282624;
    margin: 0;
}

/* Детали (адрес + ткань) */
.work-card__details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.work-card__address,
.work-card__fabric {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 145%;
    color: #92918F;
    margin: 0;
}

/* Цена */
.work-card__price {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 120%;
    color: #282624;
}

/* Дата */
.work-card__date {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 145%;
    color: #92918F;
}

/* ============================================
   КНОПКА
   ============================================ */

.portfolio-works__action {
    text-align: center;
}

.btn-portfolio {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #282624;
    padding: 22px 40px 24px;
    gap: 10px;
    border: none;
    border-radius: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    text-align: center;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 460px;
}

.btn-portfolio:hover {
    transform: translateY(-2px);
    background: #3a3633;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-portfolio:active {
    transform: translateY(0);
}

/* ============================================
   АДАПТИВНОСТЬ
   ============================================ */

@media (max-width: 1200px) {
    .portfolio-works__title {
        font-size: 48px;
    }

    .portfolio-works__subtitle {
        font-size: 24px;
    }

    .work-card__image,
    .work-card-swiper .swiper-slide {
        height: 420px;
    }

    .work-card__title,
    .work-card__price {
        font-size: 24px;
    }

    .work-card__description {
        font-size: 16px;
    }

    .work-card__address,
    .work-card__fabric {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .portfolio-works {
        padding: 60px 0 80px;
    }

    .portfolio-works__header {
        margin-bottom: 40px;
    }

    .portfolio-works__title {
        font-size: 42px;
    }

    .portfolio-works__subtitle {
        font-size: 22px;
    }

    .portfolio-works__grid {
        gap: 40px 20px;
    }

    .work-card {
        width: calc(50% - 10px);
    }

    .work-card__image,
    .work-card-swiper .swiper-slide {
        height: 350px;
    }

    .work-card__nav {
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }

    .work-card__title,
    .work-card__price {
        font-size: 22px;
    }

    .work-card__description {
        font-size: 15px;
    }

    .work-card__address,
    .work-card__fabric {
        font-size: 16px;
    }

    .btn-portfolio {
        min-width: 400px;
        padding: 18px 32px 20px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .portfolio-works {
        padding: 40px 0 60px;
    }

    .portfolio-works__title {
        font-size: 32px;
    }

    .portfolio-works__subtitle {
        font-size: 18px;
    }

    .portfolio-works__grid {
        flex-direction: column;
        gap: 30px;
    }

    .work-card {
        width: 100%;
    }

    .work-card__image,
    .work-card-swiper .swiper-slide {
        height: 320px;
    }

    .work-card__nav {
        width: 36px;
        height: 36px;
        top: 50%;
        margin-top: -18px;
    }

    .work-card__nav--prev {
        left: 12px;
    }

    .work-card__nav--next {
        right: 12px;
    }

    .work-card__nav::before {
        width: 8px;
        height: 8px;
    }

    .work-card__nav--prev::before {
        margin-left: 2px;
    }

    .work-card__nav--next::before {
        margin-right: 2px;
    }

    .work-card__counter,
    .work-card__photos-badge {
        font-size: 12px;
        padding: 5px 10px;
    }

    .work-card__content {
        padding: 0;
    }

    .work-card__title,
    .work-card__price {
        font-size: 20px;
    }

    .work-card__description {
        font-size: 14px;
    }

    .work-card__address,
    .work-card__fabric {
        font-size: 14px;
    }

    .btn-portfolio {
        min-width: 280px;
        padding: 14px 24px 16px;
        font-size: 14px;
        border-radius: 12px;
    }
}

@media (max-width: 576px) {
    .portfolio-works__title {
        font-size: 28px;
    }

    .portfolio-works__subtitle {
        font-size: 16px;
    }

    .work-card__image {
        height: 260px;
        border-radius: 16px;
    }

    .work-card-swiper .swiper-slide {
        height: 260px;
    }

    .work-card__nav {
        width: 36px;
        height: 36px;
        top: 50%;
        margin-top: -18px;
    }

    .work-card__nav--prev {
        left: 10px;
    }

    .work-card__nav--next {
        right: 10px;
    }

    .work-card__nav::before {
        width: 8px;
        height: 8px;
    }

    .work-card__title,
    .work-card__price {
        font-size: 18px;
    }

    .work-card__description {
        font-size: 13px;
    }

    .work-card__address,
    .work-card__fabric {
        font-size: 12px;
    }

    .work-card__date {
        font-size: 12px;
    }

    .btn-portfolio {
        min-width: 100%;
        padding: 12px 20px 14px;
        font-size: 14px;
    }
}

/* ============================================
   АНИМАЦИИ
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-works__title,
.portfolio-works__subtitle {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.portfolio-works__title {
    animation-delay: 0s;
}

.portfolio-works__subtitle {
    animation-delay: 0.1s;
}

.work-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.work-card:nth-child(1) { animation-delay: 0.2s; }
.work-card:nth-child(2) { animation-delay: 0.25s; }
.work-card:nth-child(3) { animation-delay: 0.3s; }
.work-card:nth-child(4) { animation-delay: 0.35s; }
.work-card:nth-child(5) { animation-delay: 0.4s; }
.work-card:nth-child(6) { animation-delay: 0.45s; }

.btn-portfolio {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    animation-delay: 0.5s;
}



/* ============================================
 PRICING SECTION - ТОЧНОЕ СООТВЕТСТВИЕ МАКЕТУ
 ============================================ */

.pricing {
    position: relative;
    width: 100%;
    background: #F6F5F3;
    border-radius: 50px 50px 0 0;
    padding: 80px 0 100px;
    margin-top: -1px;
}

.pricing .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   ЗАГОЛОВОК
   ============================================ */

.pricing__header {
    text-align: center;
    margin-bottom: 60px;

    border-radius: 20px;
}

.pricing__title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 54px;
    line-height: 115%;
    text-align: center;
    color: #282624;
    margin-bottom: 10px;
}

.pricing__subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 135%;
    text-align: center;
    color: #282624;
    margin: 0;
}

/* ============================================
   СЕТКА КАРТОЧЕК
   ============================================ */

.pricing__grid {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 60px;

}

/* ============================================
   КАРТОЧКА ТАРИФА
   ============================================ */

.pricing-card {
    width: 460px;
    display: flex;
    gap: 5px;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Стикер "популярный выбор" */
.pricing-card--popular {
    position: relative;
    overflow: visible;
}

.pricing-card__sticker {
    position: absolute;
    top: -30px;
    right: 40px;
    width: 106px;
    height: 62px;

    z-index: 10;
}

.pricing-card__sticker span:first-child {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 10px;
    line-height: 1.2;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #FFFFFF;
    color: #764C3C;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 2px;
}

.pricing-card__sticker span:last-child {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    color: #FFFFFF;
    text-transform: uppercase;
}

/* Шапка карточки */
.pricing-card__header {
    padding: 30px 20px 20px;
    text-align: center;
    border-bottom: 1px solid #F6F5F3;
    border-radius: 20px;
    background: #FFFFFF;

}

.pricing-card__name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 120%;
    text-align: center;
    color: #282624;
    margin-bottom: 5px;
}

.pricing-card__price {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 38px;
    line-height: 125%;
    text-align: center;
    color: #F3BF82;
    margin-bottom: 5px;
}

/* Характеристики */
.pricing-card__features {
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-radius: 20px;
    background: #FFFFFF;

}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature__check {
    width: 13px;
    height: 10px;
    background: #F3BF82;
    clip-path: polygon(0% 50%, 40% 100%, 100% 0%, 80% 0%, 40% 70%, 20% 30%);
    flex-shrink: 0;
}

.feature__text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 145%;
    color: #282624;
}

/* Футер карточки */
.pricing-card__footer {
    padding: 0 20px 30px;
}

.btn-pricing {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #282624;
    padding: 22px 40px 24px;
    gap: 10px;
    border: none;
    border-radius: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    text-align: center;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    background: #3a3633;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ============================================
   ПРИМЕР РАСЧЁТА
   ============================================ */

.pricing__example {
    max-width: 930px;
    margin: 0 auto;
    background: rgba(243, 191, 130, 0.15);
    border-radius: 15px;
    padding: 20px;
}

.pricing__example-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 145%;
    text-align: center;
    color: #000000;
    margin: 0;
}

/* ============================================
   АДАПТИВНОСТЬ
   ============================================ */

@media (max-width: 1400px) {
    .pricing__grid {
        gap: 20px;
    }

    .pricing-card {
        width: calc(33.333% - 14px);
        min-width: 300px;
    }
}

@media (max-width: 1200px) {
    .pricing__title {
        font-size: 48px;
    }

    .pricing__subtitle {
        font-size: 24px;
    }

    .pricing-card__features {
        padding: 25px 20px;
    }

    .feature__text {
        font-size: 16px;
    }

    .btn-pricing {
        padding: 18px 30px 20px;
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .pricing {
        padding: 60px 0 80px;
        border-radius: 40px 40px 0 0;
    }

    .pricing__header {
        margin-bottom: 40px;
    }

    .pricing__title {
        font-size: 42px;
    }

    .pricing__subtitle {
        font-size: 22px;
    }

    .pricing__grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .pricing-card {
        width: 100%;
        max-width: 460px;
    }

    .pricing-card--popular {
        order: -1;
    }

    .pricing__example {
        margin-top: 40px;
    }

    .pricing__example-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 40px 0 60px;
        border-radius: 30px 30px 0 0;
    }

    .pricing__title {
        font-size: 32px;
    }

    .pricing__subtitle {
        font-size: 18px;
    }

    .pricing-card__header {
        padding: 25px 15px 15px;
    }

    .pricing-card__name {
        font-size: 24px;
    }

    .pricing-card__price {
        font-size: 32px;
    }

    .pricing-card__features {
        padding: 20px;
        gap: 12px;
    }

    .feature__text {
        font-size: 14px;
    }

    .btn-pricing {
        padding: 14px 24px 16px;
        font-size: 14px;
        border-radius: 12px;
    }

    .pricing__example {
        padding: 15px;
    }

    .pricing__example-text {
        font-size: 14px;
    }

    .pricing-card__sticker {
        width: 90px;
        height: 52px;
        top: -20px;
        right: 15px;
    }

    .pricing-card__sticker span:first-child {
        font-size: 8px;
    }

    .pricing-card__sticker span:last-child {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .pricing__title {
        font-size: 28px;
    }

    .pricing__subtitle {
        font-size: 16px;
    }

    .pricing-card__name {
        font-size: 22px;
    }

    .pricing-card__price {
        font-size: 28px;
    }

    .feature__text {
        font-size: 13px;
    }

    .pricing__example-text {
        font-size: 12px;
    }
}

/* ============================================
   АНИМАЦИИ
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing__title,
.pricing__subtitle {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.pricing__title {
    animation-delay: 0s;
}

.pricing__subtitle {
    animation-delay: 0.1s;
}

.pricing-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.pricing-card:nth-child(1) {
    animation-delay: 0.2s;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.3s;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.4s;
}

.pricing__example {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    animation-delay: 0.5s;
}



/* ============================================
      TRANSFORM SECTION - ГИБКАЯ ВЕРСТКА (БЕЗ ABSOLUTE)
      ============================================ */

.transform-section {
    position: relative;
    width: 100%;
    background: #282624;
    border-radius: 0 0 50px 50px;
    overflow: hidden;
    margin-top: -1px;
}

/* Фон со свечением */
.transform-section__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.transform-section__glow {
    position: absolute;
    width: 100%;
    max-width: 1489px;
    height: 719px;
    left: 50%;
    top: 386px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(243, 191, 130, 0.25) 0%, rgba(40, 38, 36, 0) 70%);
    filter: blur(50px);
    pointer-events: none;
}

/* Контейнер */
.transform-section .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px 0 20px;
}

/* Обертка для контента и изображения */
.transform-section__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

/* Контент */
.transform-section__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    max-width: 1212px;
    width: 100%;
    margin: 0 auto;
}

/* ============================================
   ТЕКСТ
   ============================================ */

.transform-section__text {
    text-align: center;
    max-width: 1132px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.transform-section__title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 54px;
    line-height: 115%;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}

.transform-section__subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 135%;
    text-align: center;
    color: #E2E1DF;
    margin: 0;
}

/* ============================================
   ПРЕИМУЩЕСТВА
   ============================================ */

.transform-section__features {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 1 auto;
}

.feature-item__icon {
    flex-shrink: 0;
    width: 82px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item__icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.feature-item__title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 125%;
    color: #FFFFFF;
    margin: 0;
    max-width: 212px;
}

/* ============================================
   КНОПКА
   ============================================ */

.transform-section__action {
    text-align: center;
    width: 100%;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    padding: 22px 40px 24px;
    gap: 10px;
    border: none;
    border-radius: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    text-align: center;
    color: #282624;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 460px;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: #f5f5f5;
}

.btn-white:active {
    transform: translateY(0);
}

/* ============================================
   ИЗОБРАЖЕНИЕ ДИЗАЙНЕРА
   ============================================ */

.transform-section__image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    max-width: 433px;
    margin: 0 auto;
}

.transform-section__image img {
    width: 100%;
    height: auto;
    max-height: 547px;
    object-fit: contain;
    display: block;
}

/* ============================================
   АДАПТИВНОСТЬ
   ============================================ */

@media (max-width: 1400px) {
    .transform-section__glow {
        max-width: 1200px;
        top: 350px;
    }

    .transform-section__title {
        font-size: 48px;
    }

    .transform-section__subtitle {
        font-size: 24px;
    }

    .transform-section__features {
        gap: 50px;
    }

    .feature-item__title {
        font-size: 20px;
    }
}

@media (max-width: 1200px) {
    .transform-section .container {
        padding: 40px 20px 0 20px;
    }

    .transform-section__wrapper {
        gap: 40px;
    }

    .transform-section__title {
        font-size: 42px;
    }

    .transform-section__subtitle {
        font-size: 22px;
    }

    .transform-section__features {
        gap: 40px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .feature-item__title {
        font-size: 18px;
        max-width: 180px;
    }

    .btn-white {
        min-width: 400px;
        padding: 18px 32px 20px;
        font-size: 16px;
    }

    .transform-section__image {
        max-width: 350px;
    }
}

@media (max-width: 992px) {
    .transform-section {
        border-radius: 0 0 40px 40px;
    }

    .transform-section .container {
        padding: 40px 20px 0 20px;
    }

    .transform-section__wrapper {
        gap: 30px;
    }

    .transform-section__content {
        gap: 40px;
    }

    .transform-section__title {
        font-size: 36px;
    }

    .transform-section__subtitle {
        font-size: 20px;
    }

    .transform-section__features {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .feature-item {
        flex-direction: row;
        text-align: left;
        gap: 20px;
        width: 100%;
        max-width: 350px;
    }

    .feature-item__title {
        text-align: left;
        max-width: none;
        font-size: 18px;
    }

    .btn-white {
        min-width: 350px;
        padding: 16px 28px 18px;
        font-size: 15px;
    }

    .transform-section__image {
        max-width: 300px;
    }

    .transform-section__glow {
        max-width: 800px;
        height: 500px;
        top: 300px;
    }
}

@media (max-width: 768px) {
    .transform-section {
        border-radius: 0 0 30px 30px;
    }

    .transform-section .container {
        padding: 40px 20px 0 20px;
    }

    .transform-section__wrapper {
        gap: 25px;
    }

    .transform-section__content {
        gap: 30px;
    }

    .transform-section__text {
        gap: 15px;
    }

    .transform-section__title {
        font-size: 32px;
    }

    .transform-section__subtitle {
        font-size: 18px;
    }

    .feature-item {
        max-width: 100%;
    }

    .feature-item__icon {
        width: 60px;
    }

    .feature-item__title {
        font-size: 16px;
    }

    .btn-white {
        min-width: 280px;
        padding: 14px 24px 16px;
        font-size: 14px;
        border-radius: 12px;
    }

    .transform-section__image {
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .transform-section__title {
        font-size: 28px;
    }

    .transform-section__subtitle {
        font-size: 16px;
    }

    .feature-item {
        gap: 15px;
    }

    .feature-item__icon {
        width: 50px;
    }

    .feature-item__title {
        font-size: 14px;
    }

    .btn-white {
        min-width: 100%;
        width: 100%;
        padding: 12px 20px 14px;
        font-size: 14px;
    }

    .transform-section__image {
        max-width: 200px;
    }
}

/* ============================================
   АНИМАЦИИ
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0% {
        opacity: 0.5;
        transform: translateX(-50%) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

.transform-section__glow {
    animation: glowPulse 3s ease-in-out infinite alternate;
}

.transform-section__title,
.transform-section__subtitle {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.transform-section__title {
    animation-delay: 0s;
}

.transform-section__subtitle {
    animation-delay: 0.1s;
}

.feature-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.feature-item:nth-child(1) { animation-delay: 0.2s; }
.feature-item:nth-child(2) { animation-delay: 0.3s; }
.feature-item:nth-child(3) { animation-delay: 0.4s; }

.transform-section__action {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    animation-delay: 0.5s;
}

.transform-section__image {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.6s;
}
