:root {
    --color-white: #ffffff;
    --color-primary: #3E4A9D;
    --color-black: #000000;
    --color-dark: #161A37;

    --font-main: "Circe", Arial, sans-serif;
    --container-width: 1240px;
    --container-padding: 20px;
}
.mobile-menu-panel {
    display: none;
}
@font-face {
    font-family: "Circe";
    src: url("../assets/fonts/Circe-Regular.woff2") format("woff2"),
         url("../assets/fonts/Circe-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Circe";
    src: url("../assets/fonts/Circe-Bold.woff2") format("woff2"),
         url("../assets/fonts/Circe-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Base */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.4;
    color: var(--color-black);
    background: #F8F8F8;
}

body.overflow.active {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s ease;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
    padding: 0;
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Header */
header {
    width: 100%;
    background: var(--color-white);
    position: relative;
    z-index: 50;
}

.flex-menu {
    width: 100%;
}

.menu-menu-1 {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.custom-logo-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 60;
}

.custom-logo-link img {
    max-height: 48px;
    width: auto;
}

/* Desktop menu */
.menu ul,
#menu-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.menu li {
    position: relative;
}

.menu li a {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-black);
}

.menu li a:hover {
    color: var(--color-primary);
}

/* Submenu */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    padding: 18px;
    background: var(--color-white);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 0.3s ease;
}

.menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li:not(:last-child) {
    margin-bottom: 12px;
}

/* Telegram button */
.login-button {
    flex-shrink: 0;
}

.login-button a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 55px;
    padding: 20px 28px;
    border-radius: 100px;
    background: linear-gradient(90deg, #3E4A9D 0%, #161A37 100%);
    color: var(--color-white);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 14px 24px rgba(62, 74, 157, 0.25);
}

.login-button a:hover {
    transform: translateY(-2px);
}

/* Burger */
.mobile-burger {
    display: none;
}

.burger {
    display: flex;
    width: 35px;
    height: 28px;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
}

.burger span {
    display: block;
    width: 35px;
    height: 2px;
    background: var(--color-primary);
    transition: 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile menu */
.menu__mobile {
    display: none;
}

@media only screen and (max-width: 1300px) {
    .container {
        max-width: 1140px;
    }
}

@media only screen and (max-width: 1024px) {
    .menu-menu-1 {
        gap: 24px;
    }

    .menu ul,
    #menu-menu {
        gap: 24px;
    }

    .login-button a {
        font-size: 16px;
        padding: 18px 24px;
    }
}


    .menu__mobile {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        z-index: 40;
        display: flex;
        flex-direction: column;
        padding: 24px 20px;
        background: var(--color-white);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: 0.3s ease;
    }

    .menu__mobile.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .menu__mobile li a {
        display: block;
        padding: 12px 0;
        font-size: 18px;
        color: var(--color-black);
    }

    .menu__mobile .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 15px;
        border-radius: 0;
        min-width: unset;
    }


.login-button a {
    width: 237px;
    height: 55px;
    border-radius: 100px;
    background: linear-gradient(90deg, #3E4A9D 0%, #161A37 100%);
}



/* asosiy stillar */



.hero {
    position: relative;
    padding: 120px 0 140px;
    color: #fff;
    background: url("http://raschetovnet.local/wp-content/uploads/2026/05/headlights-hood-black-luxury-car-1.png") no-repeat right center / cover;
}

/* overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero__content {
    max-width: 890px;
}

.hero__title {
    font-family: "BaronNeue", sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.hero__title span {
    color: #8EA2FF;
}

.hero__desc {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

/* buttons */
.hero__actions {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 55px;
    padding: 0 28px;

    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;

    font-size: 16px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* bottom */
.hero__bottom {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}


/* hero mobile style */


@media only screen and (max-width: 767px) {

    header {
        background: #ffffff;
        z-index: 999;
    }

    .flex-menu {
        background: #ffffff;
        padding: 19px 0 26px;
    }

    .menu-menu-1 {
        min-height: auto;
        display: grid;
        grid-template-columns: 28px 1fr 44px;
        align-items: center;
        column-gap: 14px;
    }

    .menu-menu-1 .menu,
    .menu__mobile {
        display: none !important;
    }

    .mobile-burger {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .burger {
        width: 22px;
        height: 18px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 0;
    }

    .burger span {
        width: 16px;
        height: 2px;
        background: #111111;
        border-radius: 20px;
    }

    .custom-logo-link {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .custom-logo-link img {
        width: 190px;
        max-height: 28px;
        object-fit: contain;
    }

 

    .login-button {
        grid-column: 1 / -1;
        display: flex !important;
        justify-content: center;
        margin-top: 15px;
    }

    .login-button a {
        width: 253px;
        height: 58px;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        padding: 0 24px;
        border-radius: 100px;
        background: linear-gradient(90deg, #3E4A9D 0%, #161A37 100%);
        color: #ffffff;
        font-size: 18px;
        font-weight: 700;
        line-height: 1;
        box-shadow: 0 14px 24px rgba(22, 26, 55, 0.25);
    }
}

@media only screen and (max-width: 390px) {
    .hero__title {
        font-size: 28px;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero .btn-primary,
    .hero .btn-outline {
        width: 100%;
        max-width: 270px;
    }
}

@media only screen and (max-width: 767px) {
    header {
        background: #ffffff;
    }

    .menu-menu-1 {
        min-height: 88px;
        padding: 0 10px;
    }

    .custom-logo-link img {
        max-height: 36px;
    }

    .mobile-burger {
        display: block;
        order: -1;
    }

    .burger {
        width: 24px;
        height: 24px;
        gap: 5px;
    }

    .burger span {
        width: 18px;
        height: 2px;
        background: #000000;
    }
}
.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 270px;
    height: 55px;

    padding: 0 24px;

    border-radius: 100px;
    background: linear-gradient(90deg, #3E4A9D 0%, #161A37 100%);
    color: #fff;

    font-size: 14px;
    font-weight: 700;
    line-height: 1;

    box-shadow: 0 10px 20px rgba(62, 74, 157, 0.25);
}
.hero__bottom {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero__icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}


@media only screen and (max-width: 767px) {
    header {
        background: #fff;
        padding: 0px 0 8px;
        height: 152px;
    }

    .menu-menu-1 {
        min-height: auto;
        display: grid;
        grid-template-columns: 40px 1fr 40px;
        align-items: center;
        gap: 12px;
    }
    .hero__bottom{
        position: relative;
        top:40px;
    }
    .mobile-burger {
        display: flex;
        justify-content: flex-start;
        order: unset;
    }

    .burger {
        width: 28px;
        height: 24px;
        gap: 6px;
    }

    .burger span {
        width: 24px;
        height: 2px;
        background: #000;
    }

    .custom-logo-link {
        justify-self: center;
    }

    .custom-logo-link img {
        max-height: 50px;
        width: auto;
    }

    .header-icon {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .header-icon img {
        width: 40px;
        height: auto;
    }

    .menu-menu-1 .menu {
        display: none;
    }

    .login-button {
        grid-column: 1 / -1;
        display: flex;
        justify-content: center;
        margin-top: 18px;
    }

    .login-button .btn-primary {
       width: 237px;
        height: 55px;
        font-size: 20px;
        border-radius: 100px;
    }
}


.header-icon {
    display: none;
}

@media only screen and (max-width: 767px) {
    .header-icon {
        display: flex;
        justify-content: center;
    }

  .header-icon img {
    width: 65%;
}

}


/* second section style */


.services-section {
    padding: 80px 0 90px;
    background: #f5f5f5;
}

.section-title {
    margin: 0 0 42px;
    font-family: "BaronNeue", sans-serif;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
    color: #000;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card {
    min-height: 165px;
    padding: 24px 20px 22px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.service-card__icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
    margin-bottom: 12px;
}

.service-card h3 {
    margin: 0 0 10px;
    font-family: var(--font-main);
    font-size: 21px;
    line-height: 1.2;
    font-weight: 700;
    color: #000;
}

.service-card p {
    margin: 0;
    max-width: 310px;
    font-size: 16px;
    line-height: 1.4;
    color: #000;
}

@media only screen and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .services-section {
        padding: 38px 0 50px;
    }

    .section-title {
        margin-bottom: 20px;
        font-size: 26px;
        line-height: 1.2;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .service-card {
        min-height: 120px;
        padding: 17px 17px 16px;
        border-radius: 7px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
    }

    .service-card__icon {
        width: 36px;
        height: 36px;
        margin-bottom: 10px;
    }

    .service-card h3 {
        margin-bottom: 8px;
        font-size: 16px;
    }

    .service-card p {
        font-size: 13px;
        line-height: 1.35;
    }
}




/* uchunchi section style */

.process-section {
    padding: 80px 0;
    background: #F8F8F8;
}

.process {
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: center;
    gap: 60px;
}

.process__content {
    max-width: 640px;
}

.process__title {
    margin: 0 0 20px;
    font-family: "BaronNeue", sans-serif;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    color: #000;
}

.process__content p {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.5;
    color: #000;
}

.process__image {
    display: flex;
    justify-content: center;
}

.process__image img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Tablet */
@media only screen and (max-width: 1024px) {
    .process {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process__content {
        max-width: 100%;
    }

    .process__image {
        justify-content: center;
    }

    .process__image img {
        max-width: 320px;
    }
}

/* Mobile */
@media only screen and (max-width: 767px) {
    .process-section {
        padding: 40px 0;
    }

    .process {
        gap: 24px;
    }

    .process__title {
        font-size: 24px;
        line-height: 1.2;
    }

    .process__content p {
        font-size: 13px;
        line-height: 1.4;
    }

    .process__image img {
        max-width: 260px;
    }
}

/* tortinchi section style */
.price-section {
    padding: 80px 0 90px;
    background: #f5f5f5;
}

.price-section__title {
    margin: 0 0 28px;
    max-width: 720px;
    font-family: "BaronNeue", sans-serif;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    color: #000;
}

.price-section__top {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 34px;
}

.price-section__desc {
    max-width: 650px;
    margin: 0;
    font-size: 16px;
    line-height: 1.45;
    color: #000;
}

.price-section__time {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 2px;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
    color: #000;
    white-space: nowrap;
}

.price-section__time-icon {
    font-size: 20px;
    line-height: 1;
}

.price-table-wrap {
    width: 100%;
    overflow-x: auto;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.16);
}

.price-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    background: #fff;
    font-size: 16px;
    line-height: 1.3;
}

.price-table th {
    padding: 17px 26px;
    background: linear-gradient(90deg, #161A37 0%, #3E4A9D 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
}

.price-table th:not(:last-child),
.price-table td:not(:last-child) {
    border-right: 1px solid rgba(62, 74, 157, 0.25);
}

.price-table td {
    padding: 13px 26px;
    color: #000;
    border-bottom: 1px solid rgba(62, 74, 157, 0.25);
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

@media only screen and (max-width: 767px) {
    .price-section {
        padding: 40px 0 45px;
    }

    .price-section__title {
        margin-bottom: 22px;
        font-size: 26px;
        line-height: 1.15;
    }

    .price-section__top {
        display: flex;
        flex-direction: column;
        gap: 18px;
        margin-bottom: 18px;
    }

    .price-section__desc {
        font-size: 13px;
        line-height: 1.35;
    }

    .price-section__time {
        font-size: 14px;
        white-space: normal;
    }

    .price-table-wrap {
        border-radius: 6px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .price-table {
        min-width: 680px;
        font-size: 13px;
    }

    .price-table th {
        padding: 13px 18px;
        font-size: 13px;
    }

    .price-table td {
        padding: 11px 18px;
        font-size: 13px;
        white-space: nowrap;
    }

    .price-table-wrap::-webkit-scrollbar {
        height: 5px;
    }

    .price-table-wrap::-webkit-scrollbar-track {
        background: #e3e1ff;
        border-radius: 20px;
    }

    .price-table-wrap::-webkit-scrollbar-thumb {
        background: #a9a6ff;
        border-radius: 20px;
    }
}



/* beshinchi section style  */


.work-section {
    padding: 80px 0 90px;
    background: #f5f5f5;
}

.work-section__title {
    margin: 0 0 30px;
    font-family: "BaronNeue", sans-serif;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    color: #000;
}

.work-section__desc {
    max-width: 720px;
    margin: 0 0 36px;
    font-size: 16px;
    line-height: 1.45;
    color: #000;
}

.work-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.work-step {
    min-height: 155px;
    padding: 18px 16px 20px;
    background: #fff;
    border-radius: 7px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.work-step__num {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
    border-radius: 50%;
    background: linear-gradient(180deg, #3E4A9D 0%, #161A37 100%);
    color: #fff;
    font-size: 31px;
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 9px 18px rgba(22, 26, 55, 0.35);
}

.work-step p {
    margin: 0;
    max-width: 170px;
    font-size: 15px;
    line-height: 1.25;
    text-align: center;
    color: #000;
}

.work-step strong {
    font-weight: 700;
}

@media only screen and (max-width: 1024px) {
    .work-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .work-section {
        padding: 38px 0 50px;
    }

    .work-section__title {
        margin-bottom: 22px;
        font-size: 26px;
        line-height: 1.15;
    }

    .work-section__desc {
        margin-bottom: 18px;
        font-size: 13px;
        line-height: 1.35;
    }

    .work-steps {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .work-step {
        min-height: 100px;
        padding: 16px 22px;
        flex-direction: row;
        justify-content: flex-start;
        gap: 20px;
        border-radius: 7px;
    }

    .work-step__num {
        width: 74px;
        height: 74px;
        min-width: 74px;
        margin-bottom: 0;
        font-size: 30px;
    }

    .work-step p {
        max-width: 180px;
        font-size: 16px;
        line-height: 1.25;
        text-align: left;
    }
}




/* oltinchi section style */


.cases-section {
    padding: 80px 0 90px;
    background: #f5f5f5;
}

.cases-section__title {
    margin: 0 0 30px;
    font-family: "BaronNeue", sans-serif;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    color: #000;
}

.cases-slider {
    overflow: hidden;
}

.cases-track {
    display: flex;
    transition: transform 0.4s ease;
}

.case-slide {
    min-width: 100%;
}

.case-card {
    padding: 22px;
    background: #ffffff;
    border-radius: 7px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.16);
}

.case-card__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 16px;
}

.case-card__images img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border: 4px solid #000;
}

.case-card__images span {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.45);
}

.case-card h3 {
    margin: 0 0 10px;
    max-width: 520px;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    color: #000;
}

.case-card__time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #000;
}

.case-card__time img {
    width: 18px;
    height: 18px;
}

.cases-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 18px;
}

.case-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d6d6d6;
    transition: 0.3s;
}

.case-dot.active {
    background: #9d9d9d;
}

.cases-button {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.cases-button .btn-primary {
    min-width: 220px;
}

@media only screen and (max-width: 767px) {
    .cases-section {
        padding: 38px 0 55px;
    }

    .cases-section__title {
        margin-bottom: 22px;
        text-align: center;
        font-size: 30px;
    }

    .case-card {
        padding: 16px;
        border-radius: 7px;
    }

    .case-card__images {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 16px;
    }

    .case-card__images img {
        height: auto;
        border: 3px solid #000;
    }

    .case-card__images span {
        font-size: 16px;
    }

    .case-card h3 {
        font-size: 18px;
        line-height: 1.25;
    }

    .case-card__time {
        font-size: 16px;
    }

    .case-card__time img {
        width: 22px;
        height: 22px;
    }

    .cases-dots {
        margin-top: 18px;
    }

    .case-dot {
        width: 14px;
        height: 14px;
    }

    .cases-button {
        margin-top: 28px;
    }

    .cases-button .btn-primary {
        width: 250px;
        height: 55px;
        font-size: 18px;
    }
}


.cases-button .btn-primary {
    width: 234px;
    height: 55px;

    padding: 20px 28px;

    border-radius: 100px;

    background: linear-gradient(90deg, #3E4A9D 0%, #161A37 100%);
    color: #fff;

    font-size: 16px;
    font-weight: 700;
    line-height: 1;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 14px 24px rgba(62, 74, 157, 0.25);
    transition: 0.3s;
}

.cases-button .btn-primary:hover {
    transform: translateY(-2px);
}



/* ================= REMOVE SECTION ================= */

.remove-section {
    padding: 70px 0 80px;
    background: #f5f5f5;
}

.remove {
    display: grid;
    grid-template-columns: 520px 1fr; /* kengroq left blok */
    align-items: center;
    gap: 60px;
}

/* CONTENT */
.remove__content {
    max-width: 560px;
}

.remove__title {
    margin: 0 0 28px;
    max-width: 520px;

    font-family: "BaronNeue", sans-serif;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    color: #000;
}

/* LIST */
.remove-list {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.remove-list li {
    position: relative;
    padding-left: 30px;

    font-size: 15px;
    line-height: 1.3;
    color: #000;
}

.remove-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;

    width: 18px;
    height: 18px;

    background: url("https://c1906.coresuz1.ru/wp-content/uploads/2026/05/check-square.svg") no-repeat center / contain;
}

/* IMAGE */
.remove__image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.remove__image img {
    max-width: 720px;
    width: 100%;
    height: auto;
    display: block;
}

/* ================= TABLET ================= */

@media only screen and (max-width: 1024px) {
    .remove {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .remove__image {
        justify-content: center;
    }

    .remove__image img {
        max-width: 620px;
    }

    .remove__content {
        max-width: 100%;
    }

    .remove__title {
        max-width: 100%;
    }
}

/* ================= MOBILE ================= */

@media only screen and (max-width: 767px) {
    .remove-section {
        padding: 38px 0 48px;
    }

    .remove {
        gap: 30px;
    }

    .remove__title {
        margin-bottom: 22px;
        font-size: 26px;
        line-height: 1.15;
    }

    .remove-list {
        gap: 12px;
    }

    .remove-list li {
        padding-left: 34px;
        font-size: 14px;
    }

    .remove-list li::before {
        width: 20px;
        height: 20px;
        top: 0;
    }

    .remove__image img {
        max-width: 330px;
    }
}
/* ================= REVIEWS SECTION ================= */

.reviews-section {
    padding: 70px 0 80px;
    background: #f5f5f5;
}

.reviews-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 34px;
}

.reviews-title {
    margin: 0 0 28px;
    font-family: "BaronNeue", sans-serif;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    color: #000;
}

.reviews-desc {
    margin: 0;
    max-width: 620px;
    font-size: 15px;
    line-height: 1.4;
    color: #000;
}

.reviews-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 32px;
    flex-shrink: 0;
}

.reviews-rating strong {
    font-size: 42px;
    line-height: 1;
    font-weight: 700;
    color: #000;
}

.reviews-rating img {
    width: 12px;
    height: auto;
    display: block;
    margin-bottom: 3px;
}

.reviews-rating span {
    font-size: 11px;
    line-height: 1;
    color: rgba(0, 0, 0, 0.45);
}

/* Cards */
.reviews-scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.review-card {
    min-height: 180px;
    padding: 18px 18px 16px;
    background: #fff;
    border-radius: 7px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.16);
}

.review-card__top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-card__avatar {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #3E4A9D;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
}

.review-card__top h3 {
    margin: 0 0 2px;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    color: #000;
}

.review-card__top span {
    font-size: 11px;
    line-height: 1;
    color: rgb(255, 255, 255);
}

.review-card__stars {
    width: 19px;
    height: auto;
    display: block;
    margin-bottom: 14px;
}

.review-card p {
    margin: 0 0 14px;
    font-size: 13px;
    line-height: 1.35;
    color: #000;
}

.review-card a {
    font-size: 11px;
    color: rgba(0, 0, 0, 0.45);
}

/* Button */
.reviews-button {
    margin-top: 36px;
}

.reviews-button .btn-primary {
    width: 180px;
    height: 45px;
    padding: 0 20px;
    border-radius: 100px;
    font-size: 14px;
    gap: 8px;
}

.reviews-button .btn-primary span {
    font-size: 20px;
    line-height: 1;
}

/* ================= TABLET ================= */

@media only screen and (max-width: 1024px) {
    .reviews-scroll {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================= MOBILE ================= */

@media only screen and (max-width: 767px) {
    .reviews-section {
        padding: 38px 0 50px;
        overflow: hidden;
    }

    .reviews-head {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 18px;
    }

    .reviews-title {
        margin-bottom: 18px;
        font-size: 26px;
        line-height: 1.15;
    }

    .reviews-desc {
        max-width: 285px;
        font-size: 12px;
        line-height: 1.35;
    }

    .reviews-rating {
        padding-top: 0;
        gap: 8px;
    }

    .reviews-rating strong {
        font-size: 34px;
    }

    .reviews-rating img {
        width: 12px;
    }

    .reviews-rating span {
        font-size: 10px;
    }

    .reviews-scroll {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        margin-right: calc(var(--container-padding) * -1);
        padding: 0 var(--container-padding) 4px 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .reviews-scroll::-webkit-scrollbar {
        display: none;
    }

    .review-card {
        min-width: 220px;
        max-width: 220px;
        min-height: 210px;
        padding: 16px;
        scroll-snap-align: start;
    }

    .review-card__avatar {
        width: 30px;
        color: white!important;
        height: 30px;
        min-width: 30px;
    }

    .review-card__top h3 {
        font-size: 14px;
    }

    .review-card p {
        font-size: 12px;
        line-height: 1.35;
    }

    .reviews-button {
        margin-top: 22px;
    }

    .reviews-button .btn-primary {
        width: 170px;
        height: 44px;
        font-size: 13px;
    }
}

.review-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
}

.review-card__stars img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.stars-list {
    display: flex;
    align-items: center;
    gap: 3px;
}

.stars-list img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.review-card__stars {
    margin-bottom: 14px;
}

.reviews-rating .stars-list {
    margin-bottom: 3px;
}

.reviews-rating .stars-list img {
    width: 12px;
    height: 12px;
}
.review-card__date span {
    color: #000!important;
}
.review-card__date {
    color: #000 !important;
}



.reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    height: 48px;
    padding: 0 22px;

    border-radius: 100px;

    background: linear-gradient(90deg, #3E4A9D 0%, #161A37 100%);
    color: #fff;

    font-size: 14px;
    font-weight: 600;
    line-height: 1;

    box-shadow: 0 10px 20px rgba(22, 26, 55, 0.25);
    transition: 0.3s ease;
}

.reviews-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(22, 26, 55, 0.3);
}

.reviews-btn__arrow {
    font-size: 18px;
    line-height: 1;
}



/* ================= CONSULT SECTION ================= */

.consult-section {
    position: relative;
    padding: 120px 0 130px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.5) 48%, rgba(0, 0, 0, 0.35) 100%),
        url("https://c1906.coresuz1.ru/wp-content/uploads/2026/05/car-dashboard-wheel-close-up-1.png") no-repeat center center / cover;
}

.consult-content {
    max-width: 860px;
}

.consult-title {
    margin: 0 0 36px;
    max-width: 850px;

    font-family: "BaronNeue", sans-serif;
    font-size: 48px;
    line-height: 1.18;
    font-weight: 700;
    color: #fff;
}

.consult-title span {
    color: #9ba7ff;
}

.consult-desc {
    margin: 0 0 42px;
    max-width: 760px;

    font-size: 22px;
    line-height: 1.45;
    color: #fff;
}

.consult-actions {
    display: flex;
    align-items: center;
    gap: 26px;
}

.consult-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 280px;
    height: 55px;

    border-radius: 100px;

    font-size: 18px;
    line-height: 1;
    font-weight: 700;

    transition: 0.3s ease;
}

.consult-btn--primary {
    background: linear-gradient(90deg, #3E4A9D 0%, #161A37 100%);
    color: #fff;
    box-shadow: 0 14px 24px rgba(22, 26, 55, 0.28);
}

.consult-btn--outline {
    border: 1px solid rgba(255, 255, 255, 0.85);
    color: #fff;
    background: transparent;
}

.consult-btn:hover {
    transform: translateY(-2px);
}

.consult-btn--outline:hover {
    background: #fff;
    color: #161A37;
}

/* ================= MOBILE ================= */

@media only screen and (max-width: 767px) {
    .consult-section {
        padding: 38px 0 42px;
        min-height: 235px;
        background:
            linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.48) 100%),
            url("https://c1906.coresuz1.ru/wp-content/uploads/2026/05/car-dashboard-wheel-close-up-1.png") no-repeat center center / cover;
    }

    .consult-content {
        max-width: 100%;
    }

    .consult-title {
        margin-bottom: 20px;
        max-width: 330px;

        font-size: 21px;
        line-height: 1.18;
    }

    .consult-desc {
        margin-bottom: 18px;
        max-width: 330px;

        font-size: 12px;
        line-height: 1.35;
    }

    .consult-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .consult-btn {
        width: 170px;
        height: 40px;

        font-size: 12px;
    }

    .consult-btn--outline {
        width: 170px;
    }
}




/* ================= FAQ SECTION ================= */

.faq-section {
    padding: 70px 0 80px;
    background: #f5f5f5;
}

.faq-title {
    margin: 0 0 56px;
    font-family: "BaronNeue", sans-serif;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    color: #000;
}

.faq-list {
    width: 100%;
}

.faq-item {
    border-bottom: 1px solid rgba(62, 74, 157, 0.35);
}

.faq-question {
    width: 100%;
    min-height: 48px;
    padding: 0 68px 0 26px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    background: transparent;
    color: #000;

    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.3;
    font-weight: 400;
    text-align: left;
}

.faq-arrow {
    position: relative;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    transition: 0.3s ease;
}

.faq-arrow::before,
.faq-arrow::after {
    content: "";
    position: absolute;
    top: 6px;
    width: 8px;
    height: 1.5px;
    background: #000;
    border-radius: 10px;
    transition: 0.3s ease;
}

.faq-arrow::before {
    left: 0;
    transform: rotate(45deg);
}

.faq-arrow::after {
    right: 0;
    transform: rotate(-45deg);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 68px 18px 26px;

    max-width: 780px;
    font-size: 15px;
    line-height: 1.45;
    color: #000;
}

/* ================= MOBILE ================= */

@media only screen and (max-width: 767px) {
    .faq-section {
        padding: 38px 0 50px;
    }

    .faq-title {
        margin-bottom: 32px;
        font-size: 28px;
        line-height: 1.15;
    }

    .faq-question {
        min-height: 53px;
        padding: 0 10px 0 22px;
        font-size: 17px;
    }

    .faq-answer p {
        padding: 0 22px 18px 22px;
        font-size: 14px;
        line-height: 1.45;
    }
}



/* ================= FOOTER ================= */

.site-footer {
    padding: 70px 0 34px;
    background: #161A37;
    color: #fff;
}

.footer-logo {
    margin-bottom: 42px;
    font-family: "BaronNeue", sans-serif;
    font-size: 34px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-content {
    display: grid;
    grid-template-columns: 180px 160px 290px 1fr;
    gap: 36px;
    align-items: flex-start;
    margin-bottom: 45px;
}

.footer-item span {
    display: block;
    margin-bottom: 4px;
    font-size: 20px;
    line-height: 1.2;
    color: #fff;
}

.footer-item a,
.footer-item p,
.footer-policy {
    margin: 0;
    font-size: 20px;
    line-height: 1.25;
    color: #fff;
}

.footer-policy {
    display: inline-block;
}

.footer-policy:hover,
.footer-item a:hover {
    opacity: 0.75;
}

.footer-button {
    margin-bottom: 60px;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 222px;
    height: 55px;

    border-radius: 100px;
    border: 1px solid #fff;

    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;

    transition: 0.3s ease;
}

.footer-btn:hover {
    background: #fff;
    color: #161A37;
}

.footer-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.footer-copy {
    font-size: 20px;
    line-height: 1.2;
    color: #fff;
}

/* ================= TABLET ================= */

@media only screen and (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

/* ================= MOBILE ================= */

@media only screen and (max-width: 767px) {
    .site-footer {
        padding: 44px 0 30px;
    }

    .footer-logo {
        margin-bottom: 34px;
        font-size: 28px;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 18px;
        margin-bottom: 34px;
    }

    .footer-item span {
        margin-bottom: 4px;
        font-size: 20px;
    }

    .footer-item a,
    .footer-item p,
    .footer-policy {
        font-size: 20px;
        line-height: 1.25;
    }

    .footer-button {
        margin-bottom: 40px;
    }

    .footer-btn {
        width: 222px;
        height: 55px;
        font-size: 18px;
    }

    .footer-line {
        margin-bottom: 28px;
    }

    .footer-copy {
        font-size: 20px;
    }
}




/* mobile menu */

.mobile-menu-panel {
    display: none;
}

@media only screen and (max-width: 767px) {

    
    .menu-menu-1 .menu
    {
        display: none !important;
    }

    .mobile-burger {
        display: block;
    }

    .mobile-menu-panel {
        position: fixed;
        inset: 0;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        background: #ffffff;
        padding: 20px 32px 34px;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-100%);
        transition: 0.35s ease;
        overflow-y: auto;
    }

    .mobile-menu-panel.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .mobile-menu-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 34px;
    }

    .mobile-menu-logo {
        width: 255px;
        height: auto;
    }

    .mobile-menu-close {
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 36px;
        line-height: 1;
        font-weight: 300;
        color: #000000;
        background: transparent;
        border: 0;
        cursor: pointer;
    }

    .mobile-menu-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin: 0;
        padding: 0;
    }

    .mobile-menu-list li {
        list-style: none;
    }

    .mobile-menu-list li a {
        font-size: 20px;
        font-weight: 400;
        line-height: 1.15;
        color: #000000;
        text-decoration: none;
    }

    .mobile-menu-list .sub-menu {
        display: none;
    }

    .mobile-menu-contacts {
        margin-top: 62px;
    }

    .mobile-contact-item:not(:last-child) {
        margin-bottom: 18px;
    }

    .mobile-contact-item span {
        display: block;
        font-size: 20px;
        line-height: 1.15;
        color: #3E4A9D;
        margin-bottom: 2px;
    }

    .mobile-contact-item a {
        display: inline-block;
        font-size: 20px;
        line-height: 1.15;
        color: #000000;
        text-decoration: none;
    }

    body.menu-open {
        overflow: hidden;
    }
}




/* o nas page style */



.about-hero {
    position: relative;
    padding: 105px 0 100px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.45) 100%),
        url("http://raschetovnet.local/wp-content/uploads/2026/05/back-headlights-black-luxury-car-1.png") no-repeat center center / cover;
}

.about-hero__content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.about-hero__title {
    margin: 0 0 30px;
    font-family: "BaronNeue", sans-serif;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    color: #fff;
}

.about-hero__title span {
    color: #9ba7ff;
}

.about-hero__desc {
    margin: 0 auto 30px;
    max-width: 760px;
    font-size: 18px;
    line-height: 1.35;
    color: #fff;
}

.about-hero__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
}

.about-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 235px;
    height: 55px;

    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;

    transition: 0.3s ease;
}

.about-hero__btn--primary {
    background: linear-gradient(90deg, #3E4A9D 0%, #161A37 100%);
    color: #fff;
    box-shadow: 0 14px 24px rgba(22, 26, 55, 0.28);
}

.about-hero__btn--outline {
    border: 1px solid rgba(255,255,255,0.9);
    color: #fff;
    background: transparent;
}

.about-hero__btn:hover {
    transform: translateY(-2px);
}

.about-hero__btn--outline:hover {
    background: #fff;
    color: #161A37;
}

@media only screen and (max-width: 767px) {
    .about-hero {
        padding: 48px 0 52px;
        min-height: 390px;
        background:
            linear-gradient(90deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.48) 100%),
            url("http://raschetovnet.local/wp-content/uploads/2026/05/back-headlights-black-luxury-car-1.png") no-repeat center center / cover;
    }

    .about-hero__content {
        max-width: 100%;
    }

    .about-hero__title {
        margin-bottom: 24px;
        font-size: 28px;
        line-height: 1.15;
    }

    .about-hero__desc {
        margin-bottom: 28px;
        max-width: 340px;
        font-size: 14px;
        line-height: 1.28;
    }

    .about-hero__actions {
        flex-direction: column;
        gap: 12px;
    }

    .about-hero__btn {
        width: 225px;
        height: 46px;
        font-size: 14px;
    }
}


/* ================= MISSION SECTION ================= */

.mission-section {
    padding: 75px 0 80px;
    background: #f5f5f5;
}

.mission-content {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.mission-title {
    margin: 0 0 34px;
    font-family: "BaronNeue", sans-serif;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: #000;
}

.mission-desc {
    max-width: 760px;
    margin: 0 auto 58px;
    font-size: 18px;
    line-height: 1.35;
    color: #000;
}

.mission-image {
    display: flex;
    justify-content: center;
}

.mission-image img {
    max-width: 430px;
    width: 100%;
    height: auto;
    display: block;
}

/* ================= MOBILE ================= */

@media only screen and (max-width: 767px) {
    .mission-section {
        padding: 38px 0 44px;
    }

    .mission-title {
        margin-bottom: 24px;
        font-size: 24px;
        line-height: 1.2;
    }

    .mission-desc {
        max-width: 330px;
        margin-bottom: 38px;
        font-size: 13px;
        line-height: 1.32;
    }

    .mission-image img {
        max-width: 315px;
    }
}





.values-section {
    padding: 70px 0 76px;
    background: #f5f5f5;
}

.values-title {
    margin: 0 0 55px;
    font-family: "BaronNeue", sans-serif;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
    color: #000;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 42px;
    align-items: start;
}

.value-card {
    text-align: center;
}

.value-card__icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
    margin: 0 auto 22px;
}

.value-card h3 {
    margin: 0 0 12px;
    font-size: 21px;
    line-height: 1.25;
    font-weight: 700;
    color: #000;
}

.value-card p {
    max-width: 245px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.3;
    color: #000;
}

@media only screen and (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 30px;
    }
}

@media only screen and (max-width: 767px) {
    .values-section {
        padding: 38px 0 50px;
    }

    .values-title {
        margin-bottom: 38px;
        font-size: 24px;
        line-height: 1.2;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .value-card__icon {
        width: 48px;
        height: 48px;
        margin-bottom: 18px;
    }

    .value-card h3 {
        margin-bottom: 10px;
        font-size: 22px;
    }

    .value-card p {
        max-width: 270px;
        font-size: 17px;
        line-height: 1.3;
    }
}





/* ================= ABOUT WORK SECTION ================= */

.about-work-section {
    padding: 70px 0 80px;
    background: #f5f5f5;
}

.about-work-title {
    margin: 0 0 38px;
    font-family: "BaronNeue", sans-serif;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
    color: #000;
}

.about-work-desc {
    max-width: 760px;
    margin: 0 auto 42px;
    font-size: 17px;
    line-height: 1.35;
    text-align: center;
    color: #000;
}

.about-work-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.about-work-step {
    min-height: 170px;
    padding: 22px 16px 24px;
    background: #fff;
    border-radius: 7px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.16);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-work-step__num {
    width: 72px;
    height: 72px;
    margin-bottom: 28px;

    border-radius: 50%;
    background: linear-gradient(180deg, #3E4A9D 0%, #161A37 100%);
    color: #fff;

    font-size: 31px;
    font-weight: 700;
    line-height: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 9px 18px rgba(22, 26, 55, 0.35);
}

.about-work-step p {
    margin: 0;
    max-width: 170px;
    font-size: 15px;
    line-height: 1.25;
    text-align: center;
    color: #000;
}

.about-work-step strong {
    font-weight: 700;
}

/* ================= TABLET ================= */

@media only screen and (max-width: 1024px) {
    .about-work-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================= MOBILE ================= */

@media only screen and (max-width: 767px) {
    .about-work-section {
        padding: 38px 0 50px;
    }

    .about-work-title {
        margin-bottom: 24px;
        font-size: 26px;
        line-height: 1.15;
    }

    .about-work-desc {
        max-width: 340px;
        margin-bottom: 24px;
        font-size: 16px;
        line-height: 1.35;
    }

    .about-work-steps {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .about-work-step {
        min-height: 126px;
        padding: 20px 24px;
        flex-direction: row;
        justify-content: flex-start;
        gap: 24px;
        border-radius: 7px;
    }

    .about-work-step__num {
        width: 86px;
        height: 86px;
        min-width: 86px;
        margin-bottom: 0;
        font-size: 35px;
    }

    .about-work-step p {
        max-width: 210px;
        font-size: 20px;
        line-height: 1.25;
        text-align: left;
    }
}




.why-section {
    padding: 75px 0 85px;
    background: #f5f5f5;
}

.why-title {
    margin: 0 0 58px;
    font-family: "BaronNeue", sans-serif;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
    color: #000;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.why-card {
    min-height: 170px;
    padding: 26px 24px 24px;
    background: #fff;
    border-radius: 7px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.16);
}

.why-card__icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    margin-bottom: 18px;
}

.why-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: #000;
}

.why-card p {
    margin: 0;
    max-width: 250px;
    font-size: 20px;
    line-height: 1.3;
    color: #000;
}

@media only screen and (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .why-section {
        padding: 38px 0 50px;
    }

    .why-title {
        margin-bottom: 30px;
        font-size: 25px;
        line-height: 1.2;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .why-card {
        min-height: 116px;
        padding: 22px 26px;
        display: grid;
        grid-template-columns: 36px 1fr;
        gap: 18px;
        align-items: flex-start;
        border-radius: 7px;
    }

    .why-card__icon {
        width: 34px;
        height: 34px;
        margin-bottom: 0;
        margin-top: 2px;
    }

    .why-card h3 {
        margin-bottom: 9px;
        font-size: 22px;
        line-height: 1.18;
    }

    .why-card p {
        max-width: 230px;
        font-size: 18px;
        line-height: 1.3;
    }
}



/* ================= CONTACTS SECTION ================= */

.contacts-section {
    padding: 70px 0 80px;
    background: #f5f5f5;
}

.contacts-title {
    margin: 0 0 42px;
    font-family: "BaronNeue", sans-serif;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
    color: #000;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.contact-card {
    min-height: 90px;
    padding: 18px 22px;
    background: #fff;
    border-radius: 7px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.16);

    display: flex;
    align-items: center;
    gap: 18px;
}

.contact-card__icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.contact-card span {
    display: block;
    margin-bottom: 2px;
    font-size: 15px;
    line-height: 1.2;
    color: #000;
}

.contact-card a,
.contact-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.2;
    color: #000;
}

.contact-card--social {
    justify-content: center;
    gap: 18px;
}

.contact-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-social img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

/* ================= TABLET ================= */

@media only screen and (max-width: 1024px) {
    .contacts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================= MOBILE ================= */

@media only screen and (max-width: 767px) {
    .contacts-section {
        padding: 38px 0 50px;
    }

    .contacts-title {
        margin-bottom: 32px;
        font-size: 28px;
        text-align: left;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .contact-card {
        min-height: 102px;
        padding: 24px 18px;
        gap: 22px;
        border-radius: 7px;
    }

    .contact-card__icon {
        width: 34px;
        height: 34px;
    }

    .contact-card span,
    .contact-card a,
    .contact-card p {
        font-size: 21px;
        line-height: 1.25;
    }

    .contact-card--social {
        min-height: 102px;
        justify-content: center;
        gap: 24px;
    }

    .contact-social img {
        width: 58px;
        height: 58px;
    }
}


.questions-section {
    padding: 0px 0 40px;
    background: #f5f5f5;
}

.questions-title {
    margin: 0 0 34px;
    font-family: "BaronNeue", sans-serif;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    color: #000;
}

.questions-desc {
    margin: 0;
    font-size: 20px;
    line-height: 1.35;
    color: #000;
}

@media only screen and (max-width: 767px) {
    .questions-section {
        padding: 38px 0 28px;
    }

    .questions-title {
        margin-bottom: 24px;
        font-size: 28px;
        line-height: 1.15;
    }

    .questions-desc {
        font-size: 18px;
        line-height: 1.35;
    }
}




.custom-contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1.35fr 190px;
    gap: 18px;
    align-items: center;
}

.custom-contact-form__field input {
    width: 100%;
    height: 55px;
    padding: 0 22px;

    border: 1px solid #3E4A9D;
    border-radius: 7px;

    background: #fff;
    color: #000;

    font-family: var(--font-main);
    font-size: 15px;
    line-height: 1;
}

.custom-contact-form__field input::placeholder {
    color: rgba(0, 0, 0, 0.55);
}

.custom-contact-form__field input:focus {
    border-color: #161A37;
}

.custom-contact-form__submit p {
    margin: 0;
}

.custom-contact-form__submit input[type="submit"] {
    width: 190px;
    height: 55px;

    border: none;
    border-radius: 100px;

    background: linear-gradient(90deg, #3E4A9D 0%, #161A37 100%);
    color: #fff;

    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 700;

    cursor: pointer;
    box-shadow: 0 14px 24px rgba(22, 26, 55, 0.28);
    transition: 0.3s ease;
}

.custom-contact-form__submit input[type="submit"]:hover {
    transform: translateY(-2px);
}

.wpcf7-spinner {
    display: none;
}

.wpcf7-not-valid-tip {
    margin-top: 6px;
    font-size: 12px;
}

@media only screen and (max-width: 767px) {
    .custom-contact-form {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .custom-contact-form__field input {
        height: 40px;
        padding: 0 16px;
        font-size: 13px;
    }

    .custom-contact-form__submit {
        margin-top: 10px;
    }

    .custom-contact-form__submit input[type="submit"] {
        width: 137px;
        height: 39px;
        font-size: 14px;
    }
}


.custom-contact-form__field {
    position: relative;
}

.custom-contact-form .wpcf7-not-valid-tip {
    position: absolute;
    left: 0;
    top: calc(100% + 4px);

    margin: 0;
    font-size: 11px;
    line-height: 1.2;
    color: #ff0000;
    white-space: nowrap;
}

.custom-contact-form .wpcf7-form-control-wrap {
    display: block;
}

.custom-contact-form .wpcf7-response-output {
    grid-column: 1 / -1;
    margin: 10px 0 0;
    padding: 10px 14px;
    font-size: 13px;
}


@media only screen and (max-width: 767px) {
    .custom-contact-form .wpcf7-not-valid-tip {
        position: static;
        margin-top: 4px;
        white-space: normal;
    }
}


@media only screen and (min-width: 768px) {
    .custom-contact-form .wpcf7-not-valid-tip {
        display: none;
    }

    .custom-contact-form .wpcf7-not-valid {
        border-color: #ff0000;
    }
}




.blog-section {
    padding: 45px 0 70px;
    background: #f5f5f5;
}

.blog-title {
    margin: 0 0 38px;
    font-family: "BaronNeue", sans-serif;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    color: #000;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.blog-card {
    overflow: hidden;
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.16);
}

.blog-card__image {
    display: block;
    width: 100%;
    height: 190px;
    background: #d9d9d9;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card__content {
    padding: 22px 20px 18px;
}

.blog-card__date {
    margin-bottom: 14px;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #3E4A9D;
}

.blog-card__title {
    margin: 0 0 14px;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 700;
    color: #000;
}

.blog-card__excerpt {
    margin: 0 0 26px;
    font-size: 13px;
    line-height: 1.55;
    color: #000;
}

.blog-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-card__bottom span {
    font-size: 11px;
    color: rgba(0, 0, 0, 0.45);
}

.blog-card__bottom a {
    font-size: 12px;
    font-weight: 700;
    color: #161A37;
    border-bottom: 1px solid #3E4A9D;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 36px;
}

.blog-pagination .page-numbers {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 3px;
    border: 1px solid #e0e0e0;

    background: #fff;
    color: #000;

    font-size: 13px;
}

.blog-pagination .page-numbers.current {
    background: #3E4A9D;
    color: #fff;
    border-color: #3E4A9D;
}

.blog-pagination .page-numbers.dots {
    border: none;
    background: transparent;
}

@media only screen and (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .blog-section {
        padding: 28px 0 45px;
    }

    .blog-title {
        margin-bottom: 18px;
        font-size: 22px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .blog-card__image {
        height: 185px;
    }

    .blog-card__content {
        padding: 18px 17px 16px;
    }

    .blog-card__date {
        font-size: 10px;
        margin-bottom: 13px;
    }

    .blog-card__title {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .blog-card__excerpt {
        font-size: 12px;
        line-height: 1.45;
        margin-bottom: 24px;
    }

    .blog-pagination {
        margin-top: 28px;
        gap: 10px;
    }

    .blog-pagination .page-numbers {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}




.single-post-section {
    padding: 55px 0 80px;
    background: #f5f5f5;
}

.single-post-layout {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 55px;
    align-items: start;
}

.single-post-title {
    margin: 0 0 30px;
    font-family: "BaronNeue", sans-serif;
    font-size: 40px;
    line-height: 1.2;
    color: #000;
}

.single-post-subtitle {
    margin: 0 0 22px;
    font-size: 16px;
    line-height: 1.4;
    color: #000;
}

.single-post-meta {
    padding: 18px 0;
    margin-bottom: 58px;
    border-top: 1px solid rgba(0, 0, 0, 0.18);
    border-bottom: 1px solid rgba(0, 0, 0, 0.18);

    display: flex;
    justify-content: center;
    gap: 42px;

    font-size: 12px;
    color: rgba(0, 0, 0, 0.55);
}

.single-post-text h2 {
    margin: 0 0 28px;
    font-family: "BaronNeue", sans-serif;
    font-size: 32px;
    line-height: 1.2;
    color: #000;
}

.single-post-text p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.45;
    color: #000;
}

/* Sidebar */
.single-post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.single-nav-box {
    padding: 24px 22px;
    background: #161A37;
    border-radius: 6px;
    color: #fff;
}

.single-nav-box h3 {
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.55);
    font-size: 16px;
    font-weight: 700;
}

.single-nav-box ul {
    display: grid;
    gap: 13px;
}

.single-nav-box a {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
}

.single-consult-box {
    padding: 25px 20px;
    border-radius: 6px;
    background: #3E4A9D;
    color: #fff;
    text-align: center;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.16);
}

.single-consult-box h3 {
    margin: 0 0 14px;
    font-size: 17px;
    font-weight: 700;
}

.single-consult-box p {
    margin: 0 0 18px;
    font-size: 12px;
}

.single-consult-box a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 200px;
    height: 44px;

    border-radius: 100px;
    border: 1px solid #fff;

    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

/* Related */
.related-posts {
    margin-top: 70px;
}

.related-posts-title {
    margin: 0 0 38px;
    font-family: "BaronNeue", sans-serif;
    font-size: 32px;
    line-height: 1.2;
    color: #000;
}

.related-posts-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* Mobile */
@media only screen and (max-width: 767px) {
    .single-post-section {
        padding: 28px 0 50px;
    }

    .single-post-layout {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .single-post-title {
        margin-bottom: 18px;
        font-size: 24px;
    }

    .single-post-subtitle {
        margin-bottom: 18px;
        font-size: 13px;
    }

    .single-post-meta {
        margin-bottom: 22px;
        padding: 14px 0;
        flex-direction: column;
        align-items: center;
        gap: 9px;
        font-size: 10px;
        text-align: center;
    }

    .single-post-sidebar {
        order: 2;
        width: 100%;
    }

    .single-post-content {
        order: 1;
    }

    .single-post-text {
        order: 3;
        margin-top: 24px;
    }

    .single-post-text h2 {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .single-post-text p {
        font-size: 12px;
        line-height: 1.35;
    }

    .single-nav-box,
    .single-consult-box {
        width: 100%;
    }

    .single-consult-box a {
        width: 220px;
    }

    .related-posts {
        margin-top: 42px;
    }

    .related-posts-title {
        margin-bottom: 20px;
        font-size: 22px;
    }

    .related-posts-slider {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        margin-right: calc(var(--container-padding) * -1);
        padding-right: var(--container-padding);
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .related-posts-slider::-webkit-scrollbar {
        display: none;
    }

    .related-card {
        min-width: 260px;
        max-width: 260px;
        scroll-snap-align: start;
    }
}

.single-nav-box ul li {
    overflow: hidden;
}

.single-nav-box ul li a {
    display: flex;
    align-items: center;
    gap: 4px;

    width: 100%;
    overflow: hidden;

    font-size: 12px;
    color: rgba(255,255,255,0.75);
}

.single-nav-box ul li a span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

html {
    scroll-behavior: smooth;
}

#uslugi,
#keysy,
#ceny,
#faq {
    scroll-margin-top: 90px;
}


.hero {
    position: relative;
    padding: 120px 0 140px;
    color: #fff;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
}

.hero__title span {
    color: #8EA2FF;
}


@media (min-width: 1025px) {

    header {
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        background: #fff;
        transition: all 0.3s ease;
    }

    header.sticky-active {
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        backdrop-filter: blur(10px);
    }

}


@media (max-width: 1024px) {
    .hero__title {
        font-size: 28px;
    }
.hero__actions{
    flex-direction: column;
}
.btn-outline{
width: 270px;
}

}