body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    color: #111;
    background: #eef7da;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto
}

/* HERO */
.hero {
    background: #0f0f0fb3;
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-phone {
    display: inline-block;
    margin: 10px 0 15px;
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: 0.3s;
}

.hero-phone:hover {
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    height: auto;
    width: 100%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.hero-inner {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap
}

.hero-left {
    flex: 1;
    min-width: 280px
}

.hero-left h1 {
    font-size: 44px;
    margin-bottom: 10px
}

.hero-left p {
    opacity: .9;
    margin-bottom: 12px
}

.hero-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 15px 0
}

.hero-badges span {
    background: rgba(255, 255, 255, .12);
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px
}

.hero-sub {
    font-size: 14px;
    opacity: .85;
    margin-bottom: 15px
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.btn {
    display: inline-block;
    padding: 16px 28px;
    background: #ff3b3b;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 10px 25px rgba(255, 59, 59, 0.35);
    transition: 0.3s;
    width: max-content;
}

.btn:hover {
    background: #e23232;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 59, 59, 0.45);
}

.hero-right {
    flex: 1;
    min-width: 280px
}

.hero-slider img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px
}

.hero .slick-dots li button:before {
    color: rgba(120, 120, 120, 0.6);
    opacity: 1;
}

.hero .slick-dots li.slick-active button:before {
    color: #ffffff;
}

/* MID SLIDER */
.mid-slider img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 12px
}

.slick-slide {
    margin: 0 10px;
}

.section {
    padding: 60px 0 0
}



.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* картки */
.feature {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* hover ефект */
.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* легкий фон-акцент */
.feature::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 59, 59, 0.08), transparent 60%);
    transform: rotate(25deg);
}

/* текст поверх */
.feature {
    z-index: 1;
}



.steps {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
}

.step {
    position: relative;
    background: #fff;
    padding: 20px 30px;
    font-weight: 600;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    min-width: 180px;
    z-index: 1;
    text-transform: uppercase;
}

/* стрілка справа (зріз зверху і знизу) */
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 0;
    right: -25px;
    width: 50px;
    height: 100%;
    background: #fff;
    border-right: 1px solid #eee;

    /* ОЦЕ ГОЛОВНЕ */
    clip-path: polygon(0 0,
            60% 0,
            100% 50%,
            60% 100%,
            0 100%);

    z-index: 2;
}

/* щоб не злипалось */
.step:not(:last-child) {
    margin-right: 25px;
}

/* hover */
.step:hover {
    transform: translateY(-3px);
    transition: 0.3s;
}



.seo {
    background: #f7f7f7;
    padding: 70px 0;
}

.seo h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.seo p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #333;
}

/* акцентні блоки */
.seo-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.seo-highlights div {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.seo-highlights div:hover {
    transform: translateY(-3px);
}

/* мобілка */


.footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    font-size: 0.8rem;
}

.sticky-call {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999
}

@media(max-width:950px) {
    .hero-video {

        height: 100%;
        width: auto;

    }

    .hero-left h1 {
        font-size: 28px
    }
}

@media(max-width:768px) {
    .seo-highlights {
        grid-template-columns: 1fr 1fr;
    }

    .steps {
        flex-direction: column;
    }

    .step {
        margin-right: 0;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .section .slick-dots {
        bottom: -60px;
    }
}

@media (max-width: 450px) {
    .section .slick-dots {
        bottom: -70px;
    }
}