/* ========================================
   LAVETA - Evacuator Theme Styles
   Color Palette:
   - Primary Yellow: #FFB800
   - Dark: #1a1a1a
   - Text: #333
   - White: #fff
   - Green (check): #4CAF50
   ======================================== */

/* --- HEADER --- */
.header-laveta {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #b1b1b9;
}
body.has-hero-banner .header-laveta{
    /*background: rgba(177, 177, 185,0.7);*/
    background: transparent;
}
body .header-laveta.sticky{
    background: #b1b1b9;
}
body.home,
body.has-hero-banner {
    position: relative;
}
body.home .header-laveta::after,
body.has-hero-banner .header-laveta::after {
    background: rgba(177, 177, 185,0.7);
}
body.home .main-content,
body.has-hero-banner .main-content {
    position: relative;
    z-index: 1;
}
.header-laveta::after {
    content: "";
    position: absolute;
    bottom: 0.5px;
    left: 0;
    right: 0;
    height: 1px;
    background: #d0d0d0;
    z-index: 1;
}
.wrapper-header-right {
    display: flex;
    gap: 30px;
}
.header-laveta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 20px;
}
.header-laveta__logo {
    text-decoration: none;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    width: 145px;
    height: 50px;
}
.header-laveta__logo::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 122px;
    height: 105px;
    border: 1px solid rgba(177, 177, 185, 0.7);
    background: #b1b1b9;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 50%;
    clip-path: inset(58% -1px -1px -1px);
    pointer-events: none;
    z-index: 4;
}
body.has-hero-banner .header-laveta__logo::after {
    background: transparent;
}
body .header-laveta.sticky .header-laveta__logo::after{
    background: #b1b1b9;
}
.header-laveta__logo-text {
    font-weight: 800;
    font-size: 22px;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.header-laveta__logo-text small {
    font-weight: 400;
    font-size: 14px;
    color: #666;
}
.header-laveta__nav {
    display: flex;
    align-items: center;
    gap: 0;
}
.header-laveta__nav-link {
    position: relative;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    transition: color .3s;
    white-space: nowrap;
}
.header-laveta__nav-link + .header-laveta__nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: #d0d0d0;
}
.header-laveta__nav-link:hover,
.header-laveta__nav-link.active {
    color: #fff;
}
.header-laveta__right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.header-laveta__call {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.2;
}
.header-laveta__call-label {
    font-size: 12px;
    color: #252525;
    font-weight: 500;
    letter-spacing: .3px;
}
.header-laveta__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.header-laveta__online {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #008705;
    font-weight: 500;
}
.header-laveta__online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #008705;
    box-shadow: 0 0 0 3px rgba(76,175,80,0.2);
}
.header-laveta__online-dot {
    position: relative;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #008705;
}

/* волна */
.header-laveta__online-dot::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #008705;
    transform: translate(-50%, -50%);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    70% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
.header-laveta__phone {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
}
.header-laveta__phone svg {
    color: #333;
}
.header-laveta__phone svg, .header-laveta__phone svg path{
    transition: all .4s;
}
.header-laveta__phone:hover svg {
    color: #FFB800;
}
.header-laveta__logo img {
    width: 125px;
    position: absolute;
    top: -20px;
    left: 0;
    display: block;
    border-radius: 50%;
    padding: 10px;
    z-index: 5;
    aspect-ratio: 1;
    object-fit: contain;
}
.lv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    padding: 10px 24px;
    gap: 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: all .4s;
    white-space: nowrap;
    border: 1px solid transparent;
}
.lv-btn:hover{
    transform: translateY(-3px);
}
.lv-hero__content{
    padding: 90px 0 80px 0
}
.home .lv-hero,
.has-hero-banner .lv-hero {
    position: relative;
    background: url('/wp-content/uploads/2026/04/rivne-phone.jpg') center top / cover no-repeat;
    /*background-position-y: -100px;*/
}
@media (min-width: 991px){
    .home .lv-hero, .has-hero-banner .lv-hero{
        margin-top: -74px;
        padding-top: 74px;
    }
}
.home .lv-hero::before,
.has-hero-banner .lv-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(177, 177, 185,0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 0;
    pointer-events: none;
}
.home .lv-hero .container-long,
.has-hero-banner .lv-hero .container-long {
    position: relative;
    z-index: 1;
}
.home .lv-hero__image,
.has-hero-banner .lv-hero__image {
    z-index: 2;
    display: flex;
    align-items: end;
}
.home .lv-hero::after,
.has-hero-banner .lv-hero::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background: radial-gradient(ellipse at center, rgba(255,184,0,0.75) 0%, rgba(255,200,70,0.45) 45%, rgba(255,200,70,0) 75%);
    z-index: 1;
    pointer-events: none;
}
.home .lv-hero__features li,
.has-hero-banner .lv-hero__features li {
    background: rgba(255,255,255,0.8);
}
.lv-btn--yellow{
    background: #FFB800;
    color: #1a1a1a;
    border-color: #FFB800;
}
.lv-btn--yellow:hover {
    background: #ffab00;
    color: #fff;
}
.header-laveta__burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #1a1a1a;
}
.header-laveta__burger svg {
    width: 24px;
    height: 24px;
}
.header-laveta__mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 20px 0;
    height: calc(100vh - 66px);
}
.header-laveta__mobile-menu.active {
    display: block;
}
.header-laveta__mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 50px;
}
.header-laveta__mobile-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}
.header-laveta__mobile-phone {
    display: block;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    margin: 16px 0;
}
.header-laveta__mobile-btns {
    display: flex;
    gap: 12px;
}
.header-laveta__mobile-btns .lv-btn {
    flex: 1;
    text-align: center;
}

/* --- BUTTONS --- */

.lv-btn--outline {
    background: transparent;
    color: #1a1a1a;
    border-color: #1a1a1a;
}
.lv-btn--outline:hover {
    background: #1a1a1a;
    color: #fff;
}
.lv-btn--white {
    background: #fff;
    color: #1a1a1a;
    border-color: #1a1a1a;
}
.lv-btn--white:hover {
    background: #1a1a1a;
    color: #fff;
}
.lv-btn--white:hover svg path, .lv-btn--outline:hover svg path, .lv-btn--yellow:hover svg path{
    fill: #fff
}
.lv-btn--black {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}
.lv-btn--black:hover {
    background: #fff;
    color: #1a1a1a;
}
.lv-btn--lg {
    padding: 18px 40px;
    font-size: 16px;
    letter-spacing: .5px;
}

/* --- SECTION TITLE --- */
.lv-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 32px;
}

/* --- HERO --- */
.lv-hero {
    padding: 0;
    overflow: hidden;
    position: relative;
}
.lv-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.icon-link {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
}
.lv-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 184, 0, 0.25);
    border: 1px solid rgba(255,184,0,0.5);
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}
.lv-hero__title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.15;
    margin-top: 0;
    margin-bottom: 16px;
}
.lv-hero__subtitle {
    font-size: 17px;
    color: #252525;
    margin-bottom: 24px;
    line-height: 1.5;
}
.lv-hero__features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.lv-hero__features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #333;
    font-weight: 500;
    background: #f8f8f8;
    padding: 5px 10px;
    border-radius: 10px;
}
.lv-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #FFB800;
    display: inline-block;
    flex-shrink: 0;
}
.lv-hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.lv-hero__image {
    position: absolute;
    top: 0px;
    right: 0;
    width: 50%;
    height: 100%;
    filter: grayscale(100%);
}
.lv-hero__image img {
    width: auto;
    height: 465px;
    max-height: 100%;
}

/* --- SITUATIONS --- */
.lv-situations {
    padding: 60px 0;
}
.lv-situations__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.lv-situations__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow:
            0 6px 15px rgba(0, 0, 0, 0.08),
            0 2px 6px rgba(0, 0, 0, 0.05);
    transition: box-shadow .3s, border-color .3s;
}
.lv-situations__card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    border-color: #FFB800;
}
.lv-situations__icon {
    width: 128px;
    height: 128px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lv-situations__icon img {
    max-width: 100%;
    max-height: 100%;
}
.lv-situations__text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 0
}

/* --- SERVICES --- */
.lv-services {
    padding: 60px 0;
    background: #f8f8f8;
}
.lv-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.lv-services__card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 24px;
    border-bottom: 4px solid #FFB800;
    border-top: 1px solid #eee;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.lv-services__card.anim-up:hover,
.lv-services__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(255, 184, 0, .28);
    border-top-color: #FFB800;
    border-left-color: #FFB800;
    border-right-color: #FFB800;
    transition-delay: 0s !important;
}
.lv-services__card-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.lv-services__card-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform .3s ease;
}
.lv-services__card:hover .lv-services__card-icon svg {
    transform: scale(1.08);
}
.lv-services__card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}
.lv-services__card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 16px;
}
.lv-services__card-price {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    padding: 9px 14px;
    background: #f0f0f0;
    border-radius: 999px;
    align-self: flex-start;
    white-space: nowrap;
}
.lv-services__card-price-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.wrapper-btn {
    display: flex;
    align-items: center;
    gap: 20px;
}
.lv-prices__title, .lv-prices__subtitle, .lv-how-works__desc{
    margin-bottom: 0
}
/* --- ADVANTAGES --- */
.lv-advantages {
    padding: 70px 0;
    color: #fff;
    position: relative;
}
.lv-advantages__top-curve {
    position: absolute;
    bottom:calc(100% - 1px);
    left: 0;
    width: 100%;
    height: 56px;
    display: block;
    pointer-events: none;
}
.lv-advantages .lv-section-title {
    color: #fff;
}
.lv-advantages__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 880px;
    margin: 0 auto;
}
.lv-advantages__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 26px;
    background: #1f1f1f;
    border: 1px solid #2c2c2c;
    border-radius: 16px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.lv-advantages__item.anim-up:hover,
.lv-advantages__item:hover {
    transform: translateY(-2px);
    border-color: transparent;
    box-shadow: 0 0 28px rgba(255, 184, 0, .35);
}
.lv-advantages__item.is-highlight {
    border-color: rgba(255, 184, 0, .55);
    box-shadow: 0 0 28px rgba(255, 184, 0, .22);
}
.lv-advantages__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.lv-advantages__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
.lv-advantages__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.lv-advantages__title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
.lv-advantages__desc {
    font-size: 14px;
    font-weight: 400;
    color: #a0a0a0;
    line-height: 1.45;
}
.lv-advantages__cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.lv-advantages__cta {
    padding: 16px 40px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(255, 184, 0, .25);
}
.lv-advantages__cta:hover {
    box-shadow: 0 16px 36px rgba(255, 184, 0, .4);
}
.lv-advantages__cta-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1a1a1a;
    display: inline-block;
    margin-right: 4px;
    flex-shrink: 0;
}

/* --- HOW WORKS --- */
.lv-how-works {
    padding: 70px 0 90px;
    background: #fff;
    position: relative;
}
.lv-how-works__cards {
    display: grid;
    grid-template-columns: repeat(var(--lv-hw-count, 3), minmax(0, 1fr));
    gap: 28px;
    max-width: 980px;
    margin: 0 auto 36px;
}
.lv-how-works__cards:has(> :nth-child(4)) {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.lv-how-works__card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.lv-how-works__icon {
    flex-shrink: 0;
    width: 62px;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.lv-how-works__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
.lv-how-works__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.lv-how-works__label {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}
.lv-how-works__desc {
    font-size: 14px;
    color: #6b6b6b;
    line-height: 1.45;
}
.lv-how-works__timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 880px;
    margin: 0 auto;
}
.lv-how-works__num {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #FFB800;
    color: #1a1a1a;
    font-weight: 800;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.lv-how-works__timeline .lv-how-works__num {
    opacity: 0;
    transform: scale(0.4);
    transition: opacity .35s ease, transform .35s cubic-bezier(.34,1.56,.64,1);
    transition-delay: var(--lv-hw-delay, 0s);
}
.lv-how-works__timeline .lv-how-works__line {
    clip-path: inset(0 100% 0 0);
    transition: clip-path .55s ease;
    transition-delay: var(--lv-hw-delay, 0s);
}
.lv-how-works__timeline.is-visible .lv-how-works__num {
    opacity: 1;
    transform: scale(1);
}
.lv-how-works__timeline.is-visible .lv-how-works__line {
    clip-path: inset(0 0 0 0);
}
.lv-how-works__line {
    flex: 1;
    height: 14px;
    min-width: 56px;
    background-color: #FFB800;
    background-image:
            linear-gradient(to right, #FFB800, #FFB800),
            linear-gradient(to right, #1a1a1a 60%, transparent 0%);
    background-size:
            19px 100%,
            11px 2px;
    background-repeat:
            no-repeat,
            repeat-x;
    background-position:
            right center,
            left center;
    border-radius: 7px;
    position: relative;
    margin: 0 3px;
}
.lv-how-works__line::after {
    content: "";
    position: absolute;
    right: 2px;
    top: 50%;
    width: 22px;
    height: 14px;
    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath fill='%231a1a1a' d='M566.6 342.6C579.1 330.1 579.1 309.8 566.6 297.3L406.6 137.3C394.1 124.8 373.8 124.8 361.3 137.3C348.8 149.8 348.8 170.1 361.3 182.6L466.7 288L96 288C78.3 288 64 302.3 64 320C64 337.7 78.3 352 96 352L466.7 352L361.3 457.4C348.8 469.9 348.8 490.2 361.3 502.7C373.8 515.2 394.1 515.2 406.6 502.7L566.6 342.7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: translateY(-50%);
}

/* --- CONTACT --- */
.lv-contact {
    padding: 60px 0 80px;
    background: #f8f8f8;
}
.lv-contact .lv-section-title {
    margin-bottom: 36px;
}
.lv-contact__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    gap: 28px;
    align-items: stretch;
}
.lv-contact__info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.lv-contact__card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    text-decoration: none;
    color: #1a1a1a;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.lv-contact__card:not(.lv-contact__card--static):hover {
    transform: translateY(-3px);
    border-color: #FFB800;
    box-shadow: 0 14px 30px rgba(255, 184, 0, .22);
}
.lv-contact__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FFB800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.lv-contact__icon svg {
    width: 24px;
    height: 24px;
    display: block;
}
.lv-contact__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.lv-contact__label {
    font-size: 13px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.lv-contact__value {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}
.lv-contact__sub {
    font-size: 14px;
    color: #555;
    margin-top: 2px;
}
.lv-contact__sub a {
    color: #555;
    text-decoration: none;
}
.lv-contact__sub a:hover {
    color: #1a1a1a;
}
.lv-contact__map-wrap {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 380px;
}
.lv-contact__map-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}
.lv-contact__map {
    flex: 1;
    width: 100%;
    min-height: 340px;
    border-radius: 12px;
    overflow: hidden;
    background: #eef0f3;
}
.lv-contact__map-fallback {
    color: #888;
    font-size: 14px;
    padding: 20px;
    text-align: center;
}
.lv-contact__cities-list {
    list-style: none;
    padding: 12px 0 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    justify-content: center;
}
.lv-contact__cities-list li {
    background: #FFB80022;
    color: #1a1a1a;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

/* Messengers & socials inside info column */
.lv-contact__card--socials {
    padding: 18px 22px;
}
.lv-contact__socials {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.lv-contact__social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #1a1a1a;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.lv-contact__social svg {
    width: 20px;
    height: 20px;
}
.lv-contact__social:hover {
    background: #FFB800;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* --- PRICES --- */
.lv-prices {
    padding: 60px 0;
}
.lv-prices__list {
    list-style: none;
    margin: 32px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lv-prices__item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 18px 24px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #ececec;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.lv-prices__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,.06);
    border-color: #FFB800;
}
.lv-prices__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #fff7dc;
    color: #FFB800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 10px;
}
.lv-prices__icon svg {
    width: 36px;
    height: 36px;
}
.lv-prices__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.lv-prices__title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}
.lv-prices__subtitle {
    font-size: 13px;
    color: #888;
}
.lv-prices__price {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    white-space: nowrap;
    padding-left: 16px;
    border-left: 2px solid #FFB800;
}

/* --- MAP --- */
.lv-map {
    position: relative;
    padding: 0;
}
.lv-map__wrap {
    position: relative;
    height: 400px;
}
.lv-map__wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.lv-map__overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 184, 0, .92);
    color: #1a1a1a;
    padding: 24px 40px;
    border-radius: 12px;
    text-align: center;
    pointer-events: none;
}
.lv-map__overlay p {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

/* --- CTA --- */
.lv-cta__inner {
    text-align: center;
}
.lv-cta__title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: .5px;
}
.lv-cta__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    margin-bottom: 28px;
    transition: all .3s;
}
.lv-cta__phone svg {
    color: #1a1a1a;
    transition: all .3s;
}
.lv-cta__phone:hover, .lv-cta__phone:hover svg{
    color: #fff
}

/* --- FAQ --- */
.lv-faq__item {
    border-bottom: 1px solid #e0e0e0;
}
.lv-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-align: left;
    gap: 16px;
}
.lv-faq__question svg {
    flex-shrink: 0;
    transition: transform .3s;
    color: #999;
}
.lv-faq__item.active .lv-faq__question svg {
    transform: rotate(180deg);
}
.lv-faq__answer {
    display: none;
    padding: 0 0 18px;
}
.lv-faq__item.active .lv-faq__answer {
    display: block;
}
.lv-faq__answer p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* --- SEO TEXT --- */
.lv-seo-text__content {
    max-width: 900px;
}
.lv-seo-text__content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* --- FOOTER --- */
.lv-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 40px 0 0;
}
.lv-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 28px;
    gap: 24px;
    flex-wrap: wrap;
}
.lv-footer__logo {
    text-decoration: none;
    display: inline-flex;
}
.lv-footer__logo img {
    height: 90px;
    width: auto;
}
.lv-footer__logo-text {
    font-weight: 800;
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
}
.lv-footer__logo-text small {
    font-weight: 400;
    font-size: 13px;
    color: rgba(255,255,255,.6);
}
.lv-footer__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}
.lv-footer__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: color .3s;
}
.lv-footer__phone svg {
    color: #fff;
}
.lv-footer__phone:hover, .lv-footer__phone:hover svg {
    color: #FFB800;
}
.lv-footer__socials {
    display: flex;
    gap: 10px;
}
.lv-footer__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #FFB800;
    color: #1a1a1a;
    transition: background .3s, transform .2s;
}
.lv-footer__socials a:hover {
    background: #fff;
    transform: translateY(-2px);
}
.lv-footer__socials a svg {
    width: 18px;
    height: 18px;
}
.lv-footer__socials a svg path {
    fill: currentColor;
}
.lv-footer__text {
    font-size: 14px;
    color: rgba(255,255,255,.7);
    text-align: right;
    max-width: 360px;
    line-height: 1.5;
}
.lv-footer__bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px 0;
    font-size: 13px;
    color: rgba(255,255,255,.55);
    border-top: 1px solid rgba(255,255,255,.12);
    text-align: center;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .header-laveta__nav {
        display: none;
    }
    .header-laveta__burger {
        display: flex;
    }
    .lv-hero__grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-top: 20px;
    }
    .lv-hero__title {
        font-size: 32px;
    }
    .lv-hero {
        padding: 20px 0;
    }
    .lv-situations__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .lv-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .lv-hero__image, .home .lv-hero::after, .has-hero-banner .lv-hero::after{
        display: none !important;
    }
    .home .lv-hero, .has-hero-banner .lv-hero{
        background-position-y: 0;
    }
    /*.lv-hero__image {
        position: static;
        width: 100%;
        height: auto;
        margin-top: 24px;
    }*/
    .lv-hero__image img {
        width: 100%;
        height: auto;
        max-height: none;
        display: block;
        margin: 0 auto;
    }
    .home .lv-hero::after,
    .has-hero-banner .lv-hero::after {
        top: auto;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 60%;
        background: radial-gradient(ellipse at center bottom, rgba(255,184,0,0.75) 0%, rgba(255,200,70,0.45) 45%, rgba(255,200,70,0) 75%);
    }
    .header-laveta__logo {
        width: 70px;
        height: 70px;
        overflow: hidden;
    }
    .header-laveta__logo::after {
        display: none;
    }
    .header-laveta__logo img {
        width: 70px;
        top: 0;
        padding: 0;
    }
    .header-laveta__inner{
        padding: 2px 0;
    }
    .header-laveta .header-laveta__logo.anim-left {
        transform: translateX(-30px);
    }
    .header-laveta .header-laveta__logo.anim-left.is-visible {
        transform: translate(0, 0);
    }
    .lv-hero__content {
        padding: 0;
    }
    /* Минимальная конфигурация для Chrome iOS — без transform и will-change,
       они могут наоборот ломать fixed-позиционирование в Chrome iOS */
    .header-laveta {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 100;
    }
    /* На hero-страницах добавляем шапке клиренс над контентом —
       иначе badge/title скрываются под закреплённой шапкой */
    body.home .lv-hero,
    body.has-hero-banner .lv-hero {
        padding-top: 74px;
    }
    /* Отключаем scroll-анимации внутри шапки — на iOS opacity:0 + will-change
       у потомков может мешать первой отрисовке fixed-родителя */
    .header-laveta .anim-up,
    .header-laveta .anim-left,
    .header-laveta .anim-right,
    .header-laveta .anim-fade {
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto;
    }
    .main-content {
        padding-top: 74px;
    }
    /* На hero-страницах шапка лежит поверх hero (у hero свой padding под контент) */
    body.home .main-content,
    body.has-hero-banner .main-content {
        padding-top: 0;
    }
}

@media (max-width: 600px) {
    .lv-prices__item {
        grid-template-columns: auto 1fr;
        padding: 14px 16px;
        gap: 14px;
    }
    .lv-prices__price {
        grid-column: 2 / 3;
        padding-left: 0;
        border-left: none;
        font-size: 16px;
        color: #FFB800;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .lv-hero__title {
        font-size: 28px;
    }
    .lv-hero__buttons {
        flex-direction: column;
    }
    .lv-hero__features {
        flex-direction: column;
        gap: 10px;
    }
    .lv-section-title {
        font-size: 26px;
        margin-bottom: 24px;
    }
    .lv-situations__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .lv-services__grid {
        grid-template-columns: 1fr;
    }
    .lv-how-works {
        padding: 60px 0 70px;
    }
    .lv-advantages {
        padding: 60px 0 50px;
    }
    .lv-contact {
        padding: 40px 0 60px;
    }
    .lv-contact__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .lv-contact__map-wrap {
        min-height: 320px;
    }
    .lv-contact__map {
        min-height: 280px;
    }
    .lv-contact__value {
        font-size: 16px;
    }
    .lv-contact__icon {
        width: 42px;
        height: 42px;
    }
    .lv-contact__icon svg {
        width: 22px;
        height: 22px;
    }
    .lv-advantages__top-curve {
        height: 34px;
    }
    .lv-advantages__list {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .lv-advantages__item {
        padding: 18px 20px;
    }
    .lv-advantages__title {
        font-size: 16px;
    }
    .lv-advantages__cta-wrap {
        margin-top: 28px;
    }
    .lv-advantages__cta {
        padding: 14px 32px;
        font-size: 15px;
    }
    .lv-how-works__cards {
        grid-template-columns: 1fr;
        gap: 56px;
        margin-bottom: 0;
    }
    .lv-how-works__cards:has(> :nth-child(4)) {
        grid-template-columns: 1fr;
    }
    .lv-how-works__card {
        position: relative;
    }
    .lv-how-works__card:not(:last-child)::after {
        content: '';
        position: absolute;
        left: 31px;
        transform: translateX(-50%);
        bottom: -46px;
        width: 14px;
        height: 38px;
        background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 38' fill='none'%3E%3Crect width='14' height='38' rx='7' fill='%23FFB800'/%3E%3Cline x1='7' y1='4' x2='7' y2='22' stroke='%231a1a1a' stroke-width='2' stroke-dasharray='2,4' stroke-linecap='round'/%3E%3Cpath d='M3 27 L7 32 L11 27' stroke='%231a1a1a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }
    .lv-how-works__timeline {
        display: none;
    }
    .lv-cta__title {
        font-size: 24px;
    }
    .lv-cta__phone {
        font-size: 22px;
    }
    .lv-footer__inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .lv-footer__right {
        align-items: center;
    }
    .lv-footer__text {
        text-align: center;
    }
    .lv-footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .header-laveta__mobile-btns {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .lv-btn{
        font-size: 14px;
    }
    .wrapper-header-right {
        gap: 10px;
    }
    .header-laveta__phone{
        font-size: 13px;
    }
    .header-laveta__call-label, .header-laveta__online {
        font-size: 11px;
    }
    .lv-hero__title {
        font-size: 24px;
    }
    .lv-situations__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .lv-situations__card {
        padding: 16px 10px;
    }
    .lv-situations__icon {
        width: 90px;
        height: 90px;
    }
}
@media (max-width: 420px) {
    .header-laveta__phone svg{
        display: none;
    }
    .header-laveta__inner{
        gap: 10px
    }
    .lv-btn{
        padding: 10px 14px;
        font-size: 13px;
    }
    .header-laveta__logo {
        width: 60px;
        height: 60px;
    }
    .header-laveta__logo img {
        width: 60px
    }
    .main-content {
        padding-top: 64px;
    }
    body.home .main-content,
    body.has-hero-banner .main-content {
        padding-top: 0;
    }
}
@media (max-width: 350px) {
    .header-laveta__logo {
        width: 40px;
        height: 40px
    }
    .main-content {
        padding-top: 44px;
    }
    body.home .main-content,
    body.has-hero-banner .main-content {
        padding-top: 0;
    }
}

/* --- GALLERY --- */
.lv-gallery {
    padding: 60px 0;
}
.lv-gallery__wrap {
    margin-top: 32px;
}
.lv-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.lv-gallery__item {
    display: block;
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(110deg, #ececec 30%, #f6f6f6 50%, #ececec 70%);
    background-size: 200% 100%;
    animation: lv-shimmer 1.4s ease-in-out infinite;
    cursor: zoom-in;
}
.lv-gallery__item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 36px;
    height: 36px;
    margin: -18px 0 0 -18px;
    border: 3px solid rgba(255,184,0,.25);
    border-top-color: #FFB800;
    border-radius: 50%;
    animation: lv-spin .8s linear infinite;
    pointer-events: none;
    z-index: 1;
}
.lv-gallery__item.is-loaded {
    background: #f0f0f0;
    animation: none;
}
.lv-gallery__item.is-loaded::after {
    display: none;
}
.lv-gallery__item img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 2;
    transition: transform .4s ease, opacity .4s ease;
}
img.lv-lazy {
    opacity: 0;
}
img.lv-lazy.is-loaded {
    opacity: 1;
}
.lv-gallery__item:hover img.is-loaded {
    transform: scale(1.05);
}
@keyframes lv-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
@keyframes lv-spin {
    to { transform: rotate(360deg); }
}
.lv-gallery__item--hidden {
    display: none;
}
.lv-gallery__more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}
.lv-gallery__more {
    cursor: pointer;
}

.lv-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}
.lv-lightbox.is-open {
    display: flex;
}
.lv-lightbox__img {
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0,0,0,.4);
}
.lv-lightbox__close,
.lv-lightbox__nav {
    position: absolute;
    background: rgba(255,255,255,.1);
    color: #fff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease;
}
.lv-lightbox__close:hover,
.lv-lightbox__nav:hover {
    background: #FFB800;
    color: #1a1a1a;
}
.lv-lightbox__close {
    top: 20px;
    right: 20px;
    font-size: 32px;
    line-height: 1;
}
.lv-lightbox__nav--prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lv-lightbox__nav--next { right: 20px; top: 50%; transform: translateY(-50%); }

@media (max-width: 992px) {
    .lv-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .lv-gallery {
        padding: 40px 0;
    }
    .lv-gallery__grid {
        display: flex;
        grid-template-columns: none;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding: 16px;
        padding: 4px 16px 8px;
        margin: 0 -16px;
        -webkit-overflow-scrolling: touch;
    }
    .lv-gallery__grid::-webkit-scrollbar { height: 4px; }
    .lv-gallery__grid::-webkit-scrollbar-thumb { background: #FFB800; border-radius: 2px; }
    .lv-gallery__item {
        flex: 0 0 82%;
        scroll-snap-align: start;
        aspect-ratio: 4 / 3;
    }
    .lv-gallery__item--hidden {
        display: block;
    }
    .lv-gallery__more-wrap {
        display: none;
    }
    .lv-lightbox__nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .lv-lightbox__nav--prev { left: 8px; }
    .lv-lightbox__nav--next { right: 8px; }
    .lv-lightbox__close { top: 12px; right: 12px; }
}

/* --- GEOGRAPHY --- */
.lv-geo {
    padding: 60px 0;
}
.lv-geo__desc {
    font-size: 16px;
    color: #555;
    max-width: 560px;
    margin: 16px 0 40px;
    line-height: 1.5;
}
.lv-geo__wrap {
    position: relative;
    margin-top: 50px;
}
.lv-geo__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 32px;
}
.lv-geo__item {
    min-width: 0;
}
.lv-geo__link {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    transition: color .2s ease;
}
a.lv-geo__link:hover {
    color: #FFB800;
}
.lv-geo__toggle {
    display: none;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 20px;
    background: transparent;
    border: 2px solid #FFB800;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: background .2s ease;
}
.lv-geo__toggle:hover {
    background: #FFB800;
}
.lv-geo__toggle-less {
    display: none;
}
.lv-geo__wrap.is-open .lv-geo__toggle-more {
    display: none;
}
.lv-geo__wrap.is-open .lv-geo__toggle-less {
    display: inline;
}
.lv-geo__wrap.is-open .lv-geo__toggle-icon {
    transform: rotate(180deg);
}
.lv-geo__toggle-icon {
    transition: transform .2s ease;
}
.lv-geo__map-wrap {
    width: 100%;
    margin-top: 30px;
    min-height: 460px;
    border: none;
    padding: 0;
    background: transparent;
}
.lv-geo__map-wrap #lv-geo-map {
    min-height: 420px;
    border-radius: 12px;
}
.lv-geo__map-wrap .lv-contact__map-header {
    padding: 0 4px;
}
.lv-geo__map-label {
    position: absolute;
    transform: translate(-50%, 8px);
    background: #fff;
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    padding: 4px 8px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,.18);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.lv-geo__list.lv-contact__cities-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px 20px;
    padding: 0;
    margin-top: 30px;
    list-style: none;
}
.lv-geo__list.lv-contact__cities-list .lv-geo__item {
    background: none;
    padding: 0;
    border-radius: 0;
}
.lv-geo__link {
    text-align: center;
    width: 100%;
    display: inline-block;
    background: #FFB80022;
    color: #1a1a1a;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}
.lv-geo__list.lv-contact__cities-list .lv-geo__item a:hover {
    background: #FFB800;
    color: #1a1a1a;
}

@media (max-width: 992px) {
    .lv-geo__list {
        grid-template-columns: repeat(3, 1fr);
    }
    .lv-geo__list.lv-contact__cities-list {
        grid-template-columns: repeat(3, 1fr);
    }
    .lv-geo__map-wrap {
        margin-top: 24px;
        min-height: 380px;
    }
    .lv-geo__map-wrap #lv-geo-map {
        min-height: 340px;
    }
}
@media (max-width: 600px) {
    .lv-geo__list.lv-contact__cities-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}
@media (max-width: 768px) {
    .lv-geo__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 20px;
    }
}
@media (max-width: 600px) {
    .lv-geo {
        padding: 40px 0;
    }
    .lv-geo__list {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .lv-geo__item--hidden {
        display: none;
    }
    .lv-geo__wrap.is-open .lv-geo__item--hidden {
        display: block;
    }
    .lv-geo__toggle {
        display: inline-flex;
    }
}

@-webkit-keyframes pulsation {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1
    }

    50% {
        opacity: .5
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}

@keyframes pulsation {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1
    }

    50% {
        opacity: .5
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}

@-webkit-keyframes iconOpacity {
    0%, 100% {
        opacity: 0
    }

    40%, 80% {
        opacity: .96
    }

    60% {
        opacity: 1
    }
}

@keyframes iconOpacity {
    0%, 100% {
        opacity: 0
    }

    40%, 80% {
        opacity: .96
    }

    60% {
        opacity: 1
    }
}
.sc-fixed-contact-icon svg{
    width: 35px
}
.sc_fixed_contact_button {
    position: fixed;
    bottom: 70px;
    border-radius: 100%;
    cursor: pointer;
    z-index: 1020;
    right: 30px;
    width: 70px;
    height: 70px;
    background: #FFB800;
    color: #fff;
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sc-fixed-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.sc-fixed-contact-icon i, .sc-fixed-contact-icon svg {
    -webkit-animation: 3s infinite iconOpacity;
    animation: 3s infinite iconOpacity;
}

.sc-fixed-contact-pulsation {
    width: 80px;
    height: 80px;
    border-radius: 50px;
    position: absolute;
    left: -15px;
    top: -15px;
    z-index: -1;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-animation: 2s infinite pulsation;
    animation: 2s infinite pulsation;
    background: #6c6b6b;
}

.mt-top-spec {
    margin-top: 25px;
}

@media (min-width: 420px) {
    .sc-fixed-contact-pulsation {
        width: 100px;
        height: 100px;
    }
}
@media (max-width: 419px) {
    .sc-fixed-contact-pulsation {
        left: -5px;
        top: -5px;
    }
}

.sc-fixed-contact-item {
    position: absolute;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s
}

.sc-fixed-contact-item svg path {
    fill: #fff
}
.sc-fixed-contact-item.sc-fixed-contact-viber svg path {
    fill: #000
}

.sc-fixed-contact-item svg {
    width: 36px;
}
.sc-fixed-contact-item.sc-fixed-contact-viber svg{
    width: 26px
}

.sc-fixed-contact-viber {
    background: #fff;
    border: 1px solid #000
}

.sc-fixed-contact-telegram {
    background: #2ca5e0;
    border: 1px solid #2ca5e0
}

.sc-fixed-contact-instagram {
    background: #C13584
}

.subtitle-showmore span {
    display: block;
    width: max-content;
}

.sc_fixed_contact_button.clicked .sc-fixed-contact-item {
    pointer-events: auto;
}
.sc_fixed_contact_button.clicked .sc-fixed-contact-viber {
    transform: translate(-30px, -80px);
    opacity: 1 !important;
    z-index: 1 !important;
}
.sc_fixed_contact_button.clicked .sc-fixed-contact-telegram {
    transform: translate(-80px, -30px);
    opacity: 1 !important;
    z-index: 1 !important;
    animation-delay: 0.2s;
}
@media (max-width: 768px){
    .sc_fixed_contact_button{
        bottom: 50px
    }
}