
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
}

header {
    background: linear-gradient(310deg, #FC9379 0%, #FE7082 50%, #FF8181 100%);
    padding: 80px 0 100px;
}

.header-container {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.top-header p {
    font-family: 'Russo One', sans-serif;
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    line-height: 0.5;
    color: #FFFFFF99;
    margin-top: revert-layer;
}

.top-header p span {
    font-size: 16px;
    letter-spacing: 0.24em;
}

.top-header {
    display: flex;
    justify-content: left;
    align-items: center;
}

.center-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.center-header h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 184px;
    font-weight: 700;
    line-height: 197px;
    color: #FFFFFF;
    text-align: left;
    max-width: 950px;
}

.center-header-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.center-header-right img {
    margin-top: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.center-header-right img:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(255, 255, 255, 0.3));
}

.center-header-right .full-price {
    font-family: 'Caveat', cursive;
    font-size: 178px;
    font-weight: 700;
    color: #FFFFFFCC;
    position: relative;
    left: -32px;
}

.center-header-right .full-price::before {
    content: url(img/cross.png);
    position: absolute;
    top: 29px;
    left: 86px;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.center-header-right .discount-price {
    font-family: 'Oswald', sans-serif;
    font-size: 184px;
    font-weight: 700;
    color: #FFFB81;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.center-header-right .discount-price:hover {
    transform: scale(1.05);
    text-shadow: 0 8px 24px rgba(255, 251, 129, 0.4);
}


.bottom-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Hover эффекты для кнопок */
.bottom-header button {
    background-color: #F90F4A;
    border-radius: 24px;
    padding: 36px 123px;
    font-family: 'Jost', sans-serif;
    font-size: 40px;
    font-weight: 400;
    color: #FFFFFF;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bottom-header button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
    pointer-events: none;
}

.bottom-header button:hover {
    background: linear-gradient(135deg, #F90F4A 0%, #FF6B8A 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(249, 15, 74, 0.3);
}

.bottom-header button:hover::before {
    left: 100%;
}

.bottom-header button:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(249, 15, 74, 0.25);
}

/* Hover эффекты для контактов в хедере */
.headerContacts a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.headerContacts a:hover {
    transform: translateY(-4px) scale(1.1);
    filter: drop-shadow(0 8px 16px rgba(255, 255, 255, 0.3));
}

/* SVG иконки в headerContacts — смена цвета при ховере */
.headerContacts a svg {
    transition: filter 0.3s, fill 0.3s, color 0.3s;
}
.headerContacts a:hover svg {
    filter: none;
    /* Для поддержки разных браузеров */
    color: #F90F4A;
    fill: #F90F4A;
}
.headerContacts a:hover .WhatsApp {
    color: #25D366;
    fill: #25D366;
}
.headerContacts a:hover .telegram {
    color: #2AABEE;
    fill: #2AABEE;
}
.headerContacts a:hover .phone {
    color: #FFB800;
    fill: #FFB800;
}

.headerContacts {
    display: flex;
    gap: 48px;
}

.examplesWorks {
    padding: 100px 0;
}

.examplesWorks h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 96px;
    font-weight: 700;
    color: #FF9898;
    margin-bottom: 140px;
}

.works {
    position: relative;
    overflow: hidden;
    width: 1600px;
    margin: 0 auto;
}
.works-flex {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.works-slide {
    flex: 0 0 1048px;
    max-width: 741px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-left: 20px; */
}
.works-dots {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}
.works-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #D9D9D9;
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
}
.works-dot.active {
    background: #FF7482;
    transform: scale(1.15);
}
@media (max-width: 1100px) {
    .works, .works-flex, .works-slide {
        width: 100vw;
        max-width: 100vw;
    }
    .works-slide {
        flex: 0 0 100vw;
        max-width: 100vw;
    }
}

.video-wrapper {
    position: relative;
    display: inline-block;
}

.unmute-btn {
    position: absolute;
    right: 28px;
    bottom: 32px;
    width: 195px;
    height: 195px;
    border-radius: 50%;
    border: 16px solid #F90F4A;
    background: none;
    cursor: pointer;
    z-index: 2;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 1.2s infinite;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 0 0 rgba(249, 15, 74, 0.5);
    padding: 0;
}
.unmute-btn svg {
    width: 128px;
    height: 128px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 15, 74, 0.5);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(249, 15, 74, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(249, 15, 74, 0);
    }
}

.unmute-btn.hidden {
    opacity: 0;
    pointer-events: none;
}

.unmute-btn:hover {
    transform: scale(1.15);
    border-color: #FF6B8A;
    box-shadow: 0 0 0 8px rgba(249, 15, 74, 0.3);
}

.unmute-btn:hover svg {
    filter: brightness(1.2);
}

/* Hover эффекты для видео */
.works video {
    border-radius: 48px;
    width: calc(1920px / 2.55);
    height: calc(804px / 2.55);
    display: block;
    background: #000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    margin-left: -690px;
}

.works video[src*="img/work2"] {
    width: calc(1920px / 2.55);
    height: calc(818px / 2.55);
}
.works video[src*="img/work3"] {
    width: 752px;
    height: 320px;
}

.works-dots {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    height: 35px;
}

.works-dots .dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #D9D9D9;
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
}

.works-dots .dot.active {
    background: #FF7482;
    transform: scale(1.15);
}


.tariffs {
    background: linear-gradient(310deg, #FC9379 0%, #FE7082 50%, #FF8181 100%);
    padding: 100px 0 80px;
}

.tariffs h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 96px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 140px;
}

.tariffsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Hover эффекты для тарифов */
.tariff {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #83000080;
    border-radius: 48px;
    padding: 64px 48px 48px 48px;
    min-height: 742px;
    min-width: 0;
    box-sizing: border-box;
    position: relative;
    box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.tariff::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 48px;
    pointer-events: none;
}

.tariff-active {
    background: #CC0101CC;
}

.tariff-title {
    font-family: 'Oswald', sans-serif;
    font-size: 64px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 32px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tariff-desc {
    font-family: 'Jost', sans-serif;
    font-size: 32px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 64px;
    line-height: 1.2;
}

.tariff-price {
    font-family: 'Oswald', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #E7EC5A;
    margin: auto;
    margin-bottom: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tariff-old-price {
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    font-weight: 400;
    color: #fff;
    opacity: 0.6;
    margin-left: 16px;
    position: relative;
    top: 8px;
}

.tariff-old-price::after {
    content: url(img/cross2.png);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.price-discount {
    margin-top: -11px;
}

.tariff-desc-item.first {
    margin-top: 64px;
}

.tariff-desc-item.second {
    margin-top: 56px;
}

.tariff-desc-item.third {
    margin-top: 56px;
}

/* Убираем верхний отступ у первого элемента, если он первый в списке */
.tariff-desc-item:first-child {
    margin-top: 64px;
}


.aboutMe {
    padding: 100px 0 80px;
}

.aboutMe .aboutMe-Desktop {
    display: flex;
} 

.light1,
.light2 {
    position: absolute;
    left: -34px;
    width: 102px;
    height: 102px;
    border-radius: 50%;
    background: linear-gradient(310deg, #FC9379 0%, #FE7082 50%, #FF8181 100%);
    opacity: 0.5;
    /* полупрозрачность */
    filter: blur(60px);
    /* сильное размытие */
    z-index: 0;
    pointer-events: none;
}

.light1 {
    top: 570px;
}

.light2 {
    top: 780px;
}

.aboutMe>.container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    position: relative;
    z-index: 1;
    overflow-x: clip;
}

.aboutMe .aboutMe-Mobile {
    display: none;
}  

.aboutMe h2 {
    color: #FF9898;
    font-family: 'Oswald', sans-serif;
    font-size: 96px;
    font-weight: 700;
    margin-bottom: 104px;
}

/* Эффекты для заголовков секций */
.examplesWorks h2,
.tariffs h2,
.aboutMe h2,
.chooseUs h2,
.reviews h2,
.leaveRequest h2 {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.examplesWorks h2:hover,
.tariffs h2:hover,
.aboutMe h2:hover,
.chooseUs h2:hover,
.reviews h2:hover,
.leaveRequest h2:hover {
    transform: scale(1.02);
    text-shadow: 0 4px 12px rgba(255, 152, 152, 0.3);
}

/* Эффекты для изображения в секции "Обо мне" */
.aboutMe-right {
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.aboutMe-right:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 16px 48px rgba(255, 152, 152, 0.25);
    border-radius: 32px;
}

/* Дополнительные эффекты для текста */
.aboutMe h3 {
    font-family: 'Jost', sans-serif;
    font-size: 80px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 750px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.aboutMe h3:hover {
    color: #F90F4A;
    transform: translateX(4px);
}

.aboutMe p {
    font-family: 'Jost', sans-serif;
    font-size: 30px;
    font-weight: 300;
    color: #000;
    line-height: 1;

}

.aboutMe p:nth-of-type(1) {
    font-style: italic;
}

.aboutMe p:nth-of-type(2) {
    margin: 105px 0 101px;
}

.aboutMe-left {
    flex: 1 1 0;
}

.aboutMe-right {
    border-radius: 24px;
}



.chooseUs {
    padding: 100px 0 152px;
    background: linear-gradient(310deg, #FC9379 0%, #FE7082 50%, #FF8181 100%);
}

.chooseUs h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 96px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 104px;
    text-align: left;
}

.chooseUs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Hover эффекты для карточек "Почему выбирают нас" */
.chooseUs-card {
    background: #83000080;
    border-radius: 48px;
    padding: 64px 44px 56px 56px;
    min-height: 598px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.chooseUs-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231, 236, 90, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 48px;
    pointer-events: none;
}

.chooseUs-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
    background: #830000CC;
}

.chooseUs-card:hover::before {
    opacity: 1;
}

.chooseUs-card:hover .chooseUs-num {
    transform: scale(1.1) rotate(5deg);
    color: #FFFB81;
}

.wrapInfo {
    display: flex;
    flex-direction: column;
}

.chooseUs-title {
    font-family: 'Jost', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 32px;
}

.chooseUs-desc {
    font-family: 'Jost', sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 32px;
    position: relative;
}

.chooseUs-accent {
    font-weight: 400;
    color: #fff;
}

.chooseUs-desc2 {
    font-size: 24px;
    font-weight: 300;
    color: #fff;
    display: block;
    margin-top: 12px;
}

.chooseUs-num {
    font-family: 'Oswald', sans-serif;
    font-size: 64px;
    font-weight: 500;
    color: #E7EC5A;
    letter-spacing: 0;
    text-align: right;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.reviews {
    padding: 100px 0 171px;
    overflow: hidden;
}

.reviews h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 96px;
    font-weight: 700;
    color: #FF9898;
    margin-bottom: 135px;
    margin-left: 15px;
    text-align: left;
}

.reviews-flex {
    display: flex;
    gap: 24px;
    max-width: 100%;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Hover эффекты для отзывов */
.reviews-card {
    background: linear-gradient(310deg, #FC9379E5 0%, #FE7082E5 50%, #FF8181E5 100%);
    border-radius: 48px;
    padding: 40px 64px;
    flex: 0 0 100%;
    min-width: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 772px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 4px;
}

.textReview {
    color: #000;
    background-color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 24px;
    font-weight: 300;
    border-radius: 24px;
    padding: 24px;
    line-height: 1.5;
    position: relative;
}

.seeReview {
    font-family: 'Jost', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    text-decoration: underline;
    position: absolute;
    left: 0;
    bottom: -43px;
    transition: color 0.3s, text-decoration 0.3s;
}

.nameFotoReview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 85px;
}

.nameFotoReview p {
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #fff;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

/* Hover эффекты для точек в отзывах */
.reviews-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #D9D9D9;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

/* .reviews-dot:hover {
    background: #FF7482;
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(255, 116, 130, 0.4);
} */

.reviews-dot.active {
    background: #FF7482;
    transform: scale(1.15);
}


.leaveRequest {
    padding: 100px 0 276px;
    background: linear-gradient(310deg, #FC9379 0%, #FE7082 50%, #FF8181 100%);
}

.leaveRequest h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 96px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 240px;
}

.leaveRequest form {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
}

/* Hover эффекты для формы */
.leaveRequest form input {
    width: auto;
    min-width: 796px;
    height: 89px;
    background: #8300004D;
    border-radius: 16px;
    padding: 0 48px;
    color: #FFFFFF;
    font-family: 'Jost', sans-serif;
    font-size: 32px;
    font-weight: 300;
    border: none;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.leaveRequest form input:focus {
    background: #83000080;
    box-shadow: 0 0 0 3px rgba(255, 152, 152, 0.3);
    transform: translateY(-2px);
}

.leaveRequest form input:hover {
    background: #83000066;
    transform: translateY(-1px);
}

.leaveRequest form input::placeholder {
    color: #FFFFFF80;
    font-family: 'Jost', sans-serif;
    font-size: 20px;
    font-weight: 300;
}

.leaveRequest form div {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 56px;
}

.leaveRequest form button {
    padding: 0px 137px;
    border-radius: 24px;
    background: #F90F4A;
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 36px;
    font-weight: 400;
    text-align: center;
    height: 80px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.leaveRequest form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
    pointer-events: none;
}

.leaveRequest form button:hover {
    background: linear-gradient(135deg, #F90F4A 0%, #FF6B8A 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 15, 74, 0.3);
}

.leaveRequest form button:hover::before {
    left: 100%;
}

.leaveRequest form button:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(249, 15, 74, 0.25);
}

.leaveRequest form a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.leaveRequest form a:hover {
    transform: translateY(-4px) scale(1.1);
    filter: drop-shadow(0 8px 16px rgba(255, 255, 255, 0.3));
}

.leaveRequest form a:hover svg {
    filter: brightness(1.2);
}

.leaveRequest form a svg {
    width: 80px;
    height: 80px;
}

.leaveRequest .WhatsApp {
    height: 87px;
}


footer {
    padding: 178px 0 153px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-title {
    text-align: center;
}

.footer-main {
    display: block;
    font-family: 'Russo One', sans-serif;
    font-size: 180px;
    font-weight: 400;
    background: linear-gradient(310deg, #FC9379 0%, #FE7082 50%, #FF8181 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

/* Эффекты для футера */
.footer-main,
.footer-sub {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.footer-main:hover,
.footer-sub:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 8px 16px rgba(252, 147, 121, 0.3));
}

.footer-sub {
    display: block;
    font-family: 'Russo One', sans-serif;
    font-size: 96px;
    letter-spacing: 0.24em;
    background: linear-gradient(310deg, #FC9379 0%, #FE7082 50%, #FF8181 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-top: -8px;
    /* уменьшает расстояние между строками */
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-contacts p {
    font-family: 'Jost', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #000;
    background: linear-gradient(310deg, #FC9379 0%, #FE7082 50%, #FF8181 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Hover эффекты для футера */
.footer-contacts a {
    font-family: 'Jost', sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: #000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.footer-contacts a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FC9379, #FE7082, #FF8181);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.footer-contacts a:hover {
    color: #F90F4A;
    transform: translateX(4px);
}

.footer-contacts a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 24px;
}

.footer-social a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social a:hover {
    transform: translateY(-4px) scale(1.1);
    filter: drop-shadow(0 8px 16px rgba(252, 147, 121, 0.3));
}

/* Модальное окно */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.modal-content {
    position: relative;
    z-index: 2;
    background: linear-gradient(310deg, #FC9379 0%, #FE7082 50%, #FF8181 100%);
    border-radius: 32px;
    padding: 64px 48px 48px 48px;
    min-width: 540px;
    box-shadow: 0 8px 48px 0 rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: modalIn 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalIn {
    from {
        transform: translateY(40px) scale(0.98);
        opacity: 0;
    }

    to {
        transform: none;
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    font-size: 48px;
    color: #F90F4A;
    cursor: pointer;
    z-index: 3;
    line-height: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-close:hover {
    color: #FF6B8A;
    transform: scale(1.1) rotate(90deg);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

/* Hover эффекты для модального окна */
.modal-form input {
    width: 400px;
    height: 64px;
    background: #8300004D;
    border-radius: 16px;
    padding: 0 32px;
    color: #FFFFFF;
    font-family: 'Jost', sans-serif;
    font-size: 28px;
    font-weight: 300;
    border: none;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-form input:focus {
    background: #83000080;
    box-shadow: 0 0 0 3px rgba(255, 152, 152, 0.3);
    transform: translateY(-2px);
}

.modal-form input:hover {
    background: #83000066;
    transform: translateY(-1px);
}

.modal-form input::placeholder {
    color: #FFFFFF80;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 300;
}

.modal-form div {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.modal-form button {
    padding: 0px 64px;
    border-radius: 24px;
    background: #F90F4A;
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 28px;
    font-weight: 400;
    border: none;
    cursor: pointer;
    text-align: center;
    height: 64px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.modal-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
    pointer-events: none;
}

.modal-form button:hover {
    background: linear-gradient(135deg, #F90F4A 0%, #FF6B8A 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 15, 74, 0.3);
}

.modal-form button:hover::before {
    left: 100%;
}

.modal-form a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-form a:hover {
    transform: translateY(-3px) scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(255, 255, 255, 0.3));
}

.modal-form a svg {
    width: 48px;
    height: 48px;
}

.modal-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
    width: 100%;
}

.spinner {
    width: 64px;
    height: 64px;
    border: 7px solid #fff;
    border-top: 7px solid #F90F4A;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.modal-success {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
    width: 100%;
    font-family: 'Jost', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #fff;
    background: none;
    text-align: center;
    animation: fadeIn 0.4s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fixed-modal-btn-wrap-wedding {
    position: fixed;
    right: 32px;
    bottom: 32px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.modal-timer-wedding {
    font-size: 18px;
    color: #F90F4A;
    font-weight: 700;
    margin-bottom: 2px;
    letter-spacing: 1px;
    background: #fff;
    border-radius: 8px;
    padding: 2px 14px;
    box-shadow: 0 2px 8px rgba(249,15,74,0.08);
}
.fixed-modal-btn-wedding {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #F90F4A 0%, #FFB800 100%);
    border: none;
    border-radius: 24px;
    padding: 18px 38px;
    box-shadow: 0 4px 24px rgba(249,15,74,0.18);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
    animation: gradientMoveWedding 3s ease-in-out infinite, pulseBtnWedding 1.5s infinite;
    position: relative;
    outline: none;
    overflow: hidden;
}
.fixed-modal-btn-wedding::after {
    content: '';
    position: absolute;
    left: -60%;
    top: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.38) 50%, rgba(255,255,255,0.18) 100%);
    transform: skewX(-24deg);
    pointer-events: none;
    animation: waveBtnWedding 2.2s linear infinite;
}
@keyframes waveBtnWedding {
    0% { left: -60%; }
    100% { left: 120%; }
}
@keyframes gradientMoveWedding {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}
@keyframes pulseBtnWedding {
    0% { box-shadow: 0 0 0 0 rgba(255,152,129,0.45), 0 4px 24px rgba(249,15,74,0.18); }
    70% { box-shadow: 0 0 0 18px rgba(255,152,129,0), 0 4px 24px rgba(249,15,74,0.18); }
    100% { box-shadow: 0 0 0 0 rgba(255,152,129,0.45), 0 4px 24px rgba(249,15,74,0.18); }
}
.fixed-modal-btn-wedding:hover {
    background: #F90F4A;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 24px rgba(249,15,74,0.22);
}

/* Тарифы: яркий градиентный фон при ховере */
.tariff:hover {
    background: linear-gradient(120deg, #FFB8B8 0%, #FF6B8A 60%, #FFF3B0 100%);
    box-shadow: 0 24px 64px 0 rgba(255, 152, 152, 0.18), 0 4px 32px 0 rgba(0, 0, 0, 0.08);
    border: 2px solid #FFB800;
}
.tariff.tariff-active:hover {
    background: linear-gradient(120deg, #FF6B8A 0%, #FFB800 100%);
    border: 2px solid #F90F4A;
}

/* Базовый цвет для SVG-иконок */
.headerContacts a svg,
.leaveRequest form a svg {
    color: #fff;
    fill: currentColor;
    transition: filter 0.3s, fill 0.3s, color 0.3s;
}

/* Ховер-эффекты для SVG в форме заявки */
.leaveRequest form a:hover svg {
    filter: none;
    color: #F90F4A;
    fill: #F90F4A;
}
.leaveRequest form a:hover .WhatsApp {
    color: #25D366;
    fill: #25D366;
}
.leaveRequest form a:hover .telegram {
    color: #2AABEE;
    fill: #2AABEE;
}
.leaveRequest form a:hover .phone {
    color: #FFB800;
    fill: #FFB800;
}

/* Hover-эффекты для новых отзывов */
.reviews-card {
    cursor: pointer;
    transition: box-shadow 0.3s, transform 0.3s;
}
.reviews-card:hover {
    box-shadow: 0 8px 32px 0 rgba(255, 152, 152, 0.18), 0 2px 8px 0 rgba(0,0,0,0.08);
    /* transform: translateY(-6px) scale(1.01); */
}
.reviews-card:hover .seeReview {
    color: #fff;
    text-decoration: underline;
    letter-spacing: normal;
    text-shadow: none;
}
.reviews-card .seeReview:hover {
    color: #F90F4A;
    text-decoration: underline;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px #fff3;
}
.reviews-card:hover .nameFotoReview p {
    color: #FFFB81;
    transform: translateX(6px) scale(1.05);
}
.reviews-card .nameFotoReview p {
    transition: color 0.3s, transform 0.3s;
}
.reviews-card .nameFotoReview img {
    border-radius: 50%;
    transition: box-shadow 0.3s, transform 0.3s;
    box-shadow: 0 2px 8px #fff3;
    width: 100px;
    object-fit: cover;
}
.reviews-card:hover .nameFotoReview img {
    box-shadow: 0 8px 32px #FFB80055, 0 2px 8px #fff3;
    transform: scale(1.08) rotate(-2deg);
}
.textReview {
    transition: box-shadow 0.3s, background 0.3s;
}
.reviews-card:hover .textReview {
    box-shadow: 0 4px 24px #fff6;
    background: #fffbe9;
}
/* .review-popup-img {
    display: none !important;
} */
.review-popup-img {
    display: none;
    position: absolute;
    top: 40px;
    right: 24px;
    left: auto;
    transform: none;
    z-index: 20;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18), 0 2px 8px 0 rgba(255,152,152,0.12);
    padding: 8px;
    animation: fadeInReviewPopup 0.25s;
}
@media (max-width: 900px) {
    .review-popup-img {
        right: 50%;
        left: 50%;
        transform: translateX(50%);
    }
}
.review-popup-img img {
    display: block;
    max-width: 380px;
    max-height: 420px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 2px 8px #fff3;
}
@keyframes fadeInReviewPopup {
    from { opacity: 0; transform: translateX(-50%) translateY(10px) scale(0.98); }
    to   { opacity: 1; transform: translateX(-50%) translateY(-10px) scale(1); }
}
.reviews-card { position: relative; }

.review-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0; top: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    justify-content: center;
    align-items: center;
}
.review-modal.active {
    display: flex;
}
.review-modal-backdrop {
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}
.review-modal-content {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 48px 0 rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    animation: modalIn 0.25s cubic-bezier(0.4,0,0.2,1);
    max-width: 90vw;
    max-height: 90vh;
}
.review-modal-content img {
    max-width: 80vw;
    max-height: 80vh;
    border-radius: 16px;
    display: block;
}
.review-modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    background: none;
    border: none;
    font-size: 40px;
    color: #F90F4A;
    cursor: pointer;
    z-index: 3;
    line-height: 1;
    transition: color 0.2s, transform 0.2s;
}
.review-modal-close:hover {
    color: #FF6B8A;
    transform: scale(1.15) rotate(90deg);
}

.works, .reviews-slider-wrap {
    position: relative;
}
.works-arrow, .reviews-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: transparent;
    color: #fff;
    border: none;
    font-size: 38px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: none;
    transition: background 0.2s, color 0.2s, border 0.2s, transform 0.2s;
    opacity: 0.92;
}
.works-arrow:hover, .reviews-arrow:hover {
    background: transparent;
    color: #F90F4A;
    border: none;
    transform: translateY(-50%) scale(1.08);
    opacity: 1;
}
.works-arrow-prev {
    left: 2px;
}
.reviews-arrow-prev {
    left: 7px;
}
.works-arrow-next, .reviews-arrow-next {
    right: 18px;
}
.works-arrow, .reviews-arrow {
    z-index: 20;
}
@media (max-width: 1300px) {
    .works-arrow-prev, .reviews-arrow-prev {
        left: -32px;
    }
    .works-arrow-next, .reviews-arrow-next {
        right: -32px;
    }
}
@media (max-width: 1100px) {
    .works-arrow, .reviews-arrow {
        width: 40px;
        height: 40px;
        font-size: 26px;
    }
    .works-arrow-prev, .reviews-arrow-prev {
        left: 0;
    }
    .works-arrow-next, .reviews-arrow-next {
        right: 0;
    }
}
.works-slide, .video-wrapper {
    position: relative;
}
.play-btn {
    position: absolute;
    left: 4%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    pointer-events: auto;
    cursor: pointer;
    animation: playPulse 1.4s infinite;
}
.main-play-btn {
    left: -472%;
}
.play-btn svg {
    display: block;
    filter: drop-shadow(0 0 16px #F90F4A44);
    transition: filter 0.3s;
}
@keyframes playPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        filter: drop-shadow(0 0 0 #F90F4A44);
    }
    60% {
        transform: translate(-50%, -50%) scale(1.12);
        filter: drop-shadow(0 0 24px #F90F4A88);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        filter: drop-shadow(0 0 0 #F90F4A44);
    }
}

/* Мобильный слайдер тарифов */
.tariffs-mobile-slider {
    display: none;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.tariffs-flex {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tariffs-flex .tariff {
    min-width: 100%;
    flex-shrink: 0;
}

.tariffs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    color: #F90F4A;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.tariffs-arrow:hover {
    background: #F90F4A;
    color: white;
}

.tariffs-arrow-prev {
    left: 10px;
}

.tariffs-arrow-next {
    right: 10px;
}

.tariffs-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.tariffs-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(249, 15, 74, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tariffs-dot:hover {
    background: rgba(249, 15, 74, 0.6);
}

.tariffs-dot.active {
    background: #F90F4A;
}


.carousel-inner {
    display: none;
}

.carousel-indicators {
    display: none !important;
}