/*
Theme Name: CQC Polonia
*/

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: #111;
    color: #fff;
}

ul { list-style: none; }
a  { text-decoration: none; color: inherit; }
img { display: block; }

:root {
        --orange: #ff4500;
    --orange-hover: #e03d00;
    --white: #ffffff;

        --side-pad: clamp(24px, 16.67%, 320px);
}

.hero__container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding-left: var(--side-pad);
    padding-right: var(--side-pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero {
    position: relative;
    width: 100%;
        min-height: clamp(600px, 39.06vw, 750px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero__bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.40);
}

.hero__bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(
        to bottom,
        rgba(34, 34, 34, 0.80) 0%,
        rgba(34, 34, 34, 0.00) 100%
    );
}

.hero__header {
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}

.hero__header .hero__container {
        height: 100px;
    align-items: center;
}

.logo {
    display: flex;
    flex-shrink: 0;
    }

.logo__img {
    width: 100px;
    height: 63px;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;

    gap: 50px;
}

.nav__list {
    display: flex;
    align-items: center;

    gap: 50px;
}

.nav__link {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.19;
    color: var(--white);
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.nav__link:hover {
    opacity: 0.70;
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 50px;
    background: var(--orange);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    white-space: nowrap;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.nav__cta:hover {
    background: var(--orange-hover);
}

.nav__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.nav__burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.nav__burger[aria-expanded="true"] .nav__burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.nav__burger[aria-expanded="true"] .nav__burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav__burger[aria-expanded="true"] .nav__burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav__mobile {
    display: none; }

.hero__body {
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    align-items: stretch;
}

.hero__body .hero__container {
    align-items: flex-start;     justify-content: flex-start;
    }

.hero__content {
    display: flex;
    flex-direction: column;
        padding-top: 50px;
        padding-bottom: 135px;
}

.hero__title {
    font-size: clamp(40px, 4.6875vw, 90px);
    font-weight: 700;
    line-height: 0.92;
    color: var(--white);
    max-width: 839px;
    letter-spacing: 0;
}

.hero__subtitle {
    margin-top: 40px;
    font-size: clamp(18px, 1.458vw, 28px);
    font-weight: 700;
    line-height: 1;
    color: var(--white);
    max-width: 711px;
}

.hero__desc {
    margin-top: 20px;
    font-size: clamp(14px, 0.9375vw, 18px);
    font-weight: 400;
    line-height: 1;
    color: var(--white);
    max-width: 856px;
}

.hero__btn {
    margin-top: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 270px;
    height: 70px;
    background: var(--orange);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    white-space: nowrap;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.hero__btn:hover {
    background: var(--orange-hover);
}

@media (max-width: 1280px) {
    .nav__list {
        gap: 32px;
    }

    .nav {
        gap: 32px;
    }
}

@media (max-width: 1024px) {
    .hero {
        min-height: clamp(560px, 70vw, 750px);
    }

    .hero__content {
        padding-top: 40px;
        padding-bottom: 80px;
    }

    .hero__title {
        max-width: 70%;
    }

    .hero__subtitle {
        max-width: 70%;
    }

    .hero__desc {
        max-width: 70%;
    }
}

@media (max-width: 768px) {

        :root {
        --side-pad: 24px;
    }

        .hero {
        min-height: 670px;
    }


    .hero__header .hero__container {
        height: 100px;
        padding-left: 24px;
        padding-right: 24px;
    }

        .nav__list {
        display: none;
    }

    .nav__cta {
        display: none;
    }

        .nav__burger {
        display: flex;
    }

    .nav {
        gap: 0;
    }

        .nav__mobile {
        display: none;
        position: absolute;
        top: 100px;
        left: 0;
        right: 0;
        z-index: 20;
        background: rgba(18, 18, 18, 0.97);
        padding: 8px 24px 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav__mobile.is-open {
        display: block;
    }

    .nav__mobile-list {
        display: flex;
        flex-direction: column;
    }

    .nav__mobile-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .nav__mobile-item:last-child {
        border-bottom: none;
        margin-top: 12px;
    }

    .nav__mobile-link {
        display: block;
        padding: 16px 0;
        font-size: 18px;
        font-weight: 400;
        color: var(--white);
    }

    .nav__mobile-link--cta {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        height: 56px;
        background: var(--orange);
        border-radius: 8px;
        font-weight: 500;
    }


    .hero__content {
        padding-top: 44px;
        padding-bottom: 60px;
    }

    .hero__title {
        max-width: 100%;
        font-size: 44px;
        line-height: 0.92;
        text-align: center;
    }

    .hero__subtitle {
        margin-top: 28px;
        max-width: 100%;
        font-size: 24px;
        line-height: 1;
        text-align: center;
    }

    .hero__desc {
        margin-top: 12px;
        max-width: 100%;
        font-size: 18px;
        line-height: 1;
        text-align: center;
    }

    .hero__btn {
        width: 270px;
        height: 70px;
        margin-top: 32px;
        align-self: center;
    }

        .hero__bg-overlay {
        background: rgba(0, 0, 0, 0.40);
    }

        .hero__bg-img {
        object-position: 55% center;
    }
}

.compare {
    background: #fff;
    color: #222;
    padding: 90px 0;
}

.compare__container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding-left:  clamp(24px, 22.29%, 428px);
    padding-right: clamp(24px, 22.29%, 428px);
}

.compare__title {
    font-size: clamp(26px, 2.08vw, 40px);
    font-weight: 700;
    line-height: 1.125;
    color: #222;
    text-align: center;
}

.compare__title-accent {
    color: var(--orange);
}

.compare__subtitle {
    margin-top: 20px;
    font-size: clamp(16px, 1.04vw, 20px);
    font-weight: 400;
    line-height: 1.1;
    color: #222;
    text-align: center;
}

.compare__cards {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.compare__card {
    flex: 1;
    background: #F6F6F7;
    border-radius: 8px;
    padding: 36px 30px 58px;
}

.compare__card-head {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.compare__flag {
    flex-shrink: 0;
    width: 36px;
    height: 44px;
    display: block;
}

.compare__card-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.1;
    color: #222;
}

.compare__card-title strong {
    font-weight: 700;
    font-style: normal;
}

.compare__list {
    margin-top: 26px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.compare__list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.1;
    color: #222;
}

.compare__icon {
    flex-shrink: 0;
    margin-top: 1px;
}

@media (max-width: 1024px) {
    .compare__card-title {
        font-size: 20px;
    }

    .compare__list li {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .compare {
        padding: 70px 0;
    }

    .compare__container {
        padding-left:  15px;
        padding-right: 15px;
    }

    .compare__title {
        font-size: 30px;
        text-align: center;
        line-height: 1.12;
    }

    .compare__subtitle {
        font-size: 20px;
        text-align: center;
        line-height: 1.12;
        margin-top: 30px;
    }

    .compare__cards {
        flex-direction: column;
        gap: 10px;
        margin-top: 30px;
    }

    .compare__card {
        padding: 30px 20px;
    }

    .compare__card-title {
        font-size: 22px;
    }

    .compare__list {
        gap: 10px;
    }

    .compare__list li {
        font-size: 18px;
        line-height: 1.1;
    }
}

.audience {
    position: relative;
    background: #f6f6f7;
    overflow: hidden;
    min-height: 629px;
}

.audience__container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding-left:  clamp(24px, 16.67%, 320px);
    padding-right: 0;
    padding-top:   93px;
    padding-bottom: 93px;
}

.audience__left {
    position: relative;
    z-index: 2;
    width: 630px;
    flex-shrink: 0;
}

.audience__title {
    font-size: clamp(26px, 2.083vw, 40px);
    font-weight: 700;
    line-height: 1.12;
    color: #222;
    white-space: nowrap;
    margin-left: max(0px, calc(8.33vw - 40px));
}

.audience__grid {
    display: grid;
    grid-template-columns: 305px 305px;
    gap: 20px;
    margin-top: 30px;
}

.audience__card {
    width: 305px;
    height: 174px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 44px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    position: relative;
}

.audience__card-icon-wrap {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.audience__card-icon {
    width: 60px;
    height: 60px;
    display: block;
    object-fit: contain;
}

.audience__card-badge {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 20px;
    height: 20px;
    display: block;
    line-height: 0;
}

.audience__card-badge img {
    width: 20px;
    height: 20px;
    display: block;
}

.audience__card-text {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: #222;
    text-align: center;
    width: 255px;
}

.audience__visual {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.audience__visual-truck {
    position: absolute;
    left:   calc(50% + 10px);
    top:    67px;
    width:  668px;
    height: 445px;
    object-fit: cover;
}

.audience__visual-flag-bg {
    position: absolute;
    left:    calc(58.33% - 51px);
    top:     115px;
    width:   681px;
    height:  514px;
    overflow: hidden;
}

.audience__visual-flag-bg img {
    position: absolute;
    width:    138.62%;
    height:   137.74%;
    left:     -25.55%;
    top:      -18.87%;
    max-width: none;
    display:  block;
}

.audience__visual-person {
    position: absolute;
    left:   calc(58.33% + 23px);
    top:    101px;
    width:  378px;
    height: 528px;
    object-fit: cover;
}

.audience__visual-flag-sm {
    position: absolute;
    left:    calc(58.33% - 51px);
    top:     395px;
    width:   196px;
    height:  234px;
    overflow: hidden;
}

.audience__visual-flag-sm img {
    position: absolute;
    width:    482.13%;
    height:   302.48%;
    left:     -88.95%;
    top:      -161.03%;
    max-width: none;
    display:  block;
}

.audience__visual-wave {
    position: absolute;
    left:   calc(50% + 27px);
    top:    418px;
    width:  640px;
    height: 108px;
    pointer-events: none;
}

.audience__visual-wave img {
    width:  100%;
    height: 100%;
    max-width: none;
    display: block;
}

@media (max-width: 1400px) {
    .audience__left {
        width: 630px;
    }

    .audience__visual-truck {
        left:   calc(50% + 10px);
        width:  clamp(200px, 34.79vw, 668px);
        height: clamp(133px, 23.18vw, 445px);
    }

    .audience__visual-person {
        left:   calc(58.33% + 23px);
        width:  clamp(150px, 19.69vw, 378px);
        height: clamp(210px, 27.50vw, 528px);
    }

    .audience__visual-flag-bg {
        left:   calc(58.33% - 51px);
        width:  clamp(270px, 35.47vw, 681px);
        height: clamp(204px, 26.76vw, 514px);
    }

    .audience__visual-flag-sm {
        width:  clamp(78px, 10.21vw, 196px);
        height: clamp(93px, 12.19vw, 234px);
    }

    .audience__visual-wave {
        width:  clamp(300px, 33.33vw, 640px);
        height: clamp(55px,  5.63vw,  108px);
    }
}

@media (max-width: 1100px) {
    .audience__container {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .audience__left {
        width: 100%;
        max-width: 630px;
    }

    .audience__title {
        white-space: normal;
        margin-left: 0;
    }

    .audience__visual-wave {
        display: none;
    }
}

@media (max-width: 767px) {

    .audience {
        min-height: 0;
        overflow: hidden;
    }

    .audience__container {
        padding-left:  15px;
        padding-right: 15px;
        padding-top:   70px;
        padding-bottom: 0;
    }

    .audience__left {
        width: 100%;
    }


    .audience__title {
        font-size: 30px;
        text-align: center;
        white-space: normal;
    }


    .audience__grid {
        grid-template-columns: 1fr 1fr;
        gap: 9px;
        margin-top: 34px;
    }


    .audience__card {
        width: 100%;
        height: 234px;
        padding-top: 30px;
    }

        .audience__card-text {
        font-size: 18px;
        width: 140px;
    }


    .audience__visual {
        position: relative;
        inset: auto;
        width: 100%;
        height: 292px;
        margin-top: 30px;
    }


    .audience__visual-truck {
        position: absolute;
        left:   20px;
        top:    0;
        width:  347px;
        height: 231px;
    }


    .audience__visual-flag-bg {
        position: absolute;
        left:   72px;
        top:    21px;
        width:  353px;
        height: 267px;
    }


    .audience__visual-person {
        position: absolute;
        left:   110px;
        top:    13px;
        width:  196px;
        height: 274px;
    }


    .audience__visual-flag-sm {
        position: absolute;
        left:   72px;
        top:    170px;
        width:  102px;
        height: 121px;
    }

    .audience__visual-wave {
        display: none;
    }
}

@media (max-width: 420px) {

    .hero__title {
        line-height: 0.96;
    }

    .hero__btn {
        max-width: 100%;
    }
}

.compare {
    background: #ffffff;
    padding-top: 90px;
    padding-bottom: 90px;
}

.compare__container {
    max-width: 1064px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.compare__title {
    font-size: clamp(30px, 2.08vw, 40px);
    font-weight: 700;
    line-height: 1.12;
    color: #222222;
    text-align: center;
    max-width: 845px;
    margin: 0 auto;
}

.compare__subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.12;
    color: #222222;
    text-align: center;
    max-width: 845px;
    margin: 20px auto 0;
}

.compare__cards {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.compare__card {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #F6F6F7;
    border-radius: 8px;
    padding: 36px 30px 58px;
}

.compare__card-head {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.compare__flag {
    flex-shrink: 0;
    width: 36px;
    height: 44px;
}

.compare__card-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.1;
    color: #222222;
}

.compare__card-title strong {
    font-weight: 700;
    font-style: normal;
}

.compare__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 26px;
    list-style: none;
}

.compare__list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.1;
    color: #222222;
}

.compare__icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 1px;
}

@media (max-width: 768px) {


    .compare {
        padding-top: 70px;
        padding-bottom: 70px;
    }


    .compare__container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .compare__title {
        max-width: 100%;
    }

        .compare__subtitle {
        margin-top: 10px;
        max-width: 100%;
    }

        .compare__cards {
        flex-direction: column;
        gap: 10px;
        margin-top: 30px;
    }

        .compare__card {
        padding: 30px 20px 30px;
    }

        .compare__card-title {
        font-size: 22px;
    }

        .compare__list {
        margin-top: 20px;
    }
}

.centro {
    background: #ffffff;
    padding: 90px 0;
}

.centro__container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding-left:  clamp(24px, 16.67%, 320px);
    padding-right: clamp(24px, 16.67%, 320px);
}

.centro__title {
    font-size: clamp(26px, 2.083vw, 40px);
    font-weight: 700;
    line-height: 1.12;
    color: #222222;
    text-align: center;
    margin-bottom: 40px;
}

.centro__row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.centro__stat {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.centro__stat:nth-child(1) .centro__stat-label { width: 197px; }
.centro__stat:nth-child(2) .centro__stat-label { width: 178px; }
.centro__stat:nth-child(3) .centro__stat-label { width: 224px; }

.centro__stat-number {
    display: block;
    font-size: clamp(36px, 2.5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    color: #ff4500;
    white-space: nowrap;
}

.centro__stat-label {
    font-size: clamp(14px, 0.9375vw, 18px);
    font-weight: 400;
    line-height: 1.2;
    color: #222222;
}

.centro__badges {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

.centro__badge {
    width: 270px;
    height: 128px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #222222;
    border-radius: 8px;
    padding: 0 16px 0 30px;
}

.centro__badge-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

.centro__badge-text {
    font-size: clamp(14px, 0.9375vw, 18px);
    font-weight: 500;
    line-height: 1.12;
    color: #ffffff;
}

@media (max-width: 1280px) {
    .centro__row {
        gap: 20px;
    }

    .centro__stat { flex-shrink: 1; }

    .centro__stat:nth-child(1) .centro__stat-label,
    .centro__stat:nth-child(2) .centro__stat-label,
    .centro__stat:nth-child(3) .centro__stat-label {
        width: auto;
    }

    .centro__badges { gap: 12px; }

    .centro__badge {
        width: auto;
        flex: 1;
        height: auto;
        min-height: 88px;
        padding: 16px 14px;
        gap: 10px;
    }
}

@media (max-width: 1024px) {
    .centro {
        padding: 60px 0;
    }

    .centro__row {
        flex-wrap: wrap;
        gap: 12px;
    }

    .centro__stat {
        flex: 1 1 calc(33% - 12px);
        min-width: 160px;
    }

    .centro__badges {
        flex: 1 1 100%;
        gap: 12px;
    }

    .centro__badge {
        flex: 1 1 calc(50% - 6px);
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .centro {
        padding: 70px 0;
    }

    .centro__container {
        padding-left:  15px;
        padding-right: 15px;
    }

    .centro__title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .centro__row {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .centro__stat {
        flex: none;
        text-align: center;
        padding-top: 24px;
        margin-top: 24px;
    }

    .centro__stat:first-child {
        padding-top: 0;
        margin-top: 0;
    }

    .centro__stat-number {
        font-size: 48px;
    }

    .centro__stat-label {
        font-size: 18px;
    }

    .centro__badges {
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
    }

    .centro__badge {
        width: 100%;
        height: auto;
        min-height: 88px;
        padding: 0 5px 0 15px;
        gap: 12px;
    }

    .centro__badge-text {
        font-size: 18px;
        white-space: nowrap;
    }
    .centro__badge-text br {
        display: none;
    }
}

.banner {
    position: relative;
    min-height: 444px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
}

.banner__bg {
    position: absolute;
    inset: 0;
}

.banner__photo {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 73.33%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

.banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        #222222 28.8%,
        rgba(34, 34, 34, 0.51) 42.2%,
        transparent 56.4%
    );
}

.banner__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding-left:  clamp(24px, 16.67%, 320px);
    padding-right: clamp(24px, 16.67%, 320px);
}

.banner__content {
    padding: 100px 0 100px;
    max-width: 555px;
}

.banner__title {
    font-size: clamp(26px, 2.083vw, 40px);
    font-weight: 700;
    line-height: 1.12;
    color: #ffffff;
}

.banner__title-accent {
    color: #ff4500;
}

.banner__desc {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.22;
    color: #ffffff;
    max-width: 409px;
}

.banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    width: 270px;
    height: 70px;
    background: var(--orange);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.banner__btn:hover {
    background: var(--orange-hover);
}

@media (max-width: 1100px) {
    .banner__photo {
        width: 65%;
    }

    .banner__overlay {
        background: linear-gradient(
            to right,
            #222222 20%,
            rgba(34, 34, 34, 0.60) 45%,
            transparent 65%
        );
    }

    .banner__content {
        padding: 50px 0 80px;
    }
}

@media (max-width: 768px) {
        .banner {
        min-height: 614px;
        align-items: flex-start;
    }

        .banner__photo {
        right: auto;
        left: calc(58.33% + 23px);
        transform: translateX(-50%);
        top: 124px;
        width: 1051px;
        height: 490px;
        object-fit: cover;
        object-position: center top;
    }

        .banner__overlay {
        background: linear-gradient(
            to bottom,
            #222222 47.5%,
            rgba(34, 34, 34, 0.51) 71.5%,
            transparent 100%
        );
        height: 396px;
    }

    .banner__container {
        padding-left:  15px;
        padding-right: 15px;
    }

    .banner__content {
        padding: 70px 0 60px;
        max-width: 100%;
        text-align: center;
    }

    .banner__title {
        font-size: 30px;
    }

    .banner__title br {
        display: none;
    }

    .banner__desc {
        max-width: 100%;
        font-size: 18px;
        line-height: 1.2;
    }

    .banner__desc br {
        display: none;
    }

    .banner__btn {
        width: 270px;
        height: 70px;
        margin-top: 24px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
    }
}

.cqc {
    background: #ffffff;
    padding: 90px 0;
}

.cqc__container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding-left:  clamp(24px, 16.67%, 320px);
    padding-right: clamp(24px, 16.67%, 320px);
}

.cqc__title {
    font-size: clamp(26px, 2.083vw, 40px);
    font-weight: 700;
    line-height: 1.12;
    color: #222222;
    text-align: center;
}

.cqc__title-accent {
    color: #ff4500;
}

.cqc__pill {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 0;
    width: fit-content;
    max-width: 100%;
    min-height: 48px;
    padding: 12px 28px;
    background: #ff4500;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    text-align: center;
}

.cqc__pill strong {
    font-weight: 700;
}

.cqc__cards {
    display: grid;
    grid-template-columns: repeat(4, 305px);
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.cqc__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cqc__card-icon-wrap {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.cqc__card-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.cqc__card-badge {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 20px;
    height: 20px;
    display: block;
    line-height: 0;
}

.cqc__card-badge img {
    width: 20px;
    height: 20px;
    display: block;
}

.cqc__card-title {
    margin-top: 12px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.12;
    color: #222222;
}

.cqc__card-desc {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.12;
    color: #222222;
    max-width: 285px;
}

@media (max-width: 1400px) {
    .cqc__cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .cqc {
        padding: 70px 0;
    }

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

@media (max-width: 768px) {
    .cqc {
        padding: 70px 0;
    }

    .cqc__container {
        padding-left:  15px;
        padding-right: 15px;
    }

    .cqc__title {
        font-size: 30px;
        line-height: 1.2;
    }


    .cqc__pill {
        max-width: 100%;
        font-size: 18px;
        padding: 14px 20px;
        border-radius: 90px;
    }

    .cqc__cards {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }

    .cqc__card-title {
        font-size: 20px;
    }

    .cqc__card-desc {
        font-size: 18px;
    }
}

.reviews {
    background: #ffffff;
    padding: 80px 0;
}

.reviews__container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding-left: clamp(24px, 16.67%, 320px);
    padding-right: clamp(24px, 16.67%, 320px);
}

.reviews__title {
    font-size: clamp(26px, 2.083vw, 40px);
    font-weight: 700;
    line-height: 1.12;
    color: #222222;
    text-align: center;
    margin-bottom: 30px;
}

.reviews__title-accent {
    color: var(--orange);
}

.reviews__viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.reviews__viewport.is-dragging {
    cursor: grabbing;
}

.reviews__track {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.reviews__card {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    height: 542px;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    background: #000;
    box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.12);
    display: block;
}

.reviews__viewport.is-dragging .reviews__card {
    pointer-events: none;
}

.reviews__card:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

.reviews__card-inner {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.reviews__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.reviews__card:hover .reviews__thumb {
    transform: scale(1.04);
}

.reviews__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    pointer-events: none;
    transition: background 0.2s ease;
}

.reviews__card:hover .reviews__play {
    background: rgba(0, 0, 0, 0.38);
}

.reviews__play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.reviews__card:hover .reviews__play-btn {
    background: var(--orange-hover);
    transform: scale(1.08);
}

.reviews__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.reviews__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    cursor: pointer;
    background: #d9d9d9;
    transition: background 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.reviews__dot--active,
.reviews__dot:hover {
    background: var(--orange);
    transform: scale(1.25);
}

.reviews__modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 56px 0 20px;
    visibility: hidden;
    pointer-events: none;
}

.reviews__modal[aria-hidden="false"] {
    visibility: visible;
    pointer-events: all;
}

.reviews__modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.reviews__modal[aria-hidden="false"] .reviews__modal-backdrop {
    opacity: 1;
}

.reviews__modal-box {
    position: relative;
    z-index: 1;
    width: min(90vw, 380px);
    transform: scale(0.92);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.reviews__modal[aria-hidden="false"] .reviews__modal-box {
    transform: scale(1);
    opacity: 1;
}

.reviews__modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    opacity: 0.8;
    transition: opacity 0.15s ease;
}

.reviews__modal-close:hover {
    opacity: 1;
}

.reviews__modal-player {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%;
    background: #111;
    border-radius: 8px;
    overflow: hidden;
}

.reviews__modal-player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.reviews__modal-stub {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.reviews__modal-stub-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reviews__modal-stub-text {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .reviews {
        padding: 50px 0;
    }

    .reviews__container {
        padding-left: 0;
        padding-right: 0;
    }

    .reviews__title {
        font-size: 30px;
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 20px;
    }

    .reviews__viewport {
        overflow: hidden;
        cursor: grab;
        user-select: none;
        -webkit-user-select: none;
    }

    .reviews__track {
        gap: 0;
        will-change: transform;
    }

    .reviews__card {
        flex: 0 0 100vw;
        width: 100vw;
        padding: 0 35px;
        box-sizing: border-box;
        background: transparent;
        overflow: visible;
        border-radius: 0;
        box-shadow: none;
    }

    .reviews__card-inner {
        overflow: hidden;
        border-radius: 8px;
        background: #000;
        height: 100%;
    }

    .reviews__play-btn {
        width: 60px;
        height: 60px;
    }

    .reviews__dots {
        margin-top: 20px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .reviews__modal-box {
        width: 95vw;
    }

    .reviews__modal-close {
        top: -36px;
    }
}

.cta {
    position: relative;
    background: #222222;
    overflow: hidden;
    min-height: 319px;
}

.cta__truck {
    position: absolute;
    left: -129px;
    top: 39px;
    height: 242px;
    width: auto;
    display: block;
    pointer-events: none;
    user-select: none;
}

.cta__container {
    max-width: 1920px;
    margin: 0 auto;
    min-height: 319px;
    display: flex;
    align-items: flex-start;
    gap: 63px;



    padding: 60px clamp(24px, 16.67vw, 320px) 20px clamp(24px, 33.75vw, 648px);
}

.cta__text {
    flex: 1;
    min-width: 0;
    max-width: 475px;
    text-align: center;
}

.cta__title {
    font-size: clamp(26px, 2.396vw, 46px);
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta__desc {
    font-size: clamp(14px, 0.938vw, 18px);
    font-weight: 400;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta__tagline {
    font-size: clamp(18px, 1.25vw, 24px);
    font-weight: 700;
    line-height: 1.12;
    color: var(--orange);
}

.cta__form {
    flex: 0 0 clamp(180px, 21.5625vw, 414px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 6px;
}

.cta__input {
    width: 100%;
    height: 50px;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid #666666;
    border-radius: 8px;
    font-family: inherit;
    font-size: 18px;
    color: #ffffff;
    outline: none;
    transition: border-color 0.2s ease;
}

.cta__input::placeholder {
    color: #b0b0b0;
}

.cta__input:focus {
    border-color: #999999;
}

.cta__btn {
    width: 100%;
    height: 70px;
    background: var(--orange);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.cta__btn:hover {
    background: var(--orange-hover);
}

@media (max-width: 768px) {
    .cta {
        min-height: 882px;
    }

    .cta__truck {
        display: block;
        left: -339px;
        top: 600px;
        width: 714px;
        height: 242px;
    }

    .cta__container {
        flex-direction: column;
        align-items: center;
        padding: 70px 15px 40px;
        gap: 32px;
        min-height: auto;
    }

    .cta__text {
        flex: none;
        max-width: 100%;
        text-align: center;
    }

    .cta__title {
        font-size: 46px;
    }

    .cta__title br {
        display: none;
    }

    .cta__desc {
        font-size: 18px;
    }

    .cta__tagline {
        font-size: 24px;
    }

    .cta__form {
        flex: none;
        width: 100%;
        padding-top: 0;
    }
}

.footer {
    background: #ffffff;
}

.footer__top {
    padding: 0;
}

.footer__container {
    max-width: 1920px;
    margin: 0 auto;
    padding-left: clamp(24px, 16.67%, 320px);
    padding-right: clamp(24px, 16.67%, 320px);
    display: flex;
    align-items: center;
    gap: 0;
    min-height: 113px;
}

.footer__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.footer__logo-img {
    display: block;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer__col--phone {
    margin-left: calc(8.33vw + 20px);
}

.footer__col--address {
    margin-left: max(16px, calc(16.67vw - 159px));
}

.footer__col--links {
    margin-left: auto;
}

.footer__label {
    font-size: 18px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 4px;
}

.footer__phone {
    font-size: 18px;
    font-weight: 400;
    color: #222222;
    text-decoration: none;
}

.footer__phone:hover {
    color: var(--orange);
}

.footer__socials {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 6px;
}

.footer__social {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

.footer__social:hover {
    opacity: 0.8;
}

.footer__social--tg { background: #2CA5E0; }
.footer__social--wa { background: #25D366; }
.footer__social--vb { background: #7360F2; }

.footer__address {
    font-size: 18px;
    font-style: normal;
    line-height: 1.5;
    color: #222222;
}

.footer__link {
    font-size: 18px;
    color: #222222;
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.2s ease;
}

.footer__link:hover {
    color: var(--orange);
}

.footer__bottom {
    height: 40px;
    background: #f6f6f7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__copy {
    font-size: 18px;
    color: #222222;
    text-align: center;
}

@media (max-width: 768px) {
    .footer__container {
        flex-wrap: wrap;
        gap: 0;
        padding: 15px;
        min-height: auto;
    }

    .footer__logo {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }

    .footer__col--phone {
        flex: 1;
        margin-left: 0;
    }

    .footer__col--address {
        flex: 1;
        margin-left: 0;
    }

    .footer__col--links {
        flex: 0 0 100%;
        margin-left: 0;
        margin-top: 30px;
    }

    .footer__copy {
        font-size: 14px;
    }
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    pointer-events: none;
}

.modal[aria-hidden="false"] {
    visibility: visible;
    pointer-events: all;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.modal[aria-hidden="false"] .modal__backdrop {
    opacity: 1;
}

.modal__card {
    position: relative;
    z-index: 1;
    width: 532px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 14px 24px rgba(37, 31, 102, 0.08);
    padding: 60px 60px 40px;
    transform: scale(0.94) translateY(12px);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.modal[aria-hidden="false"] .modal__card {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.15s ease;
}

.modal__close:hover {
    opacity: 0.7;
}

.modal__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.12;
    color: #222222;
    text-align: center;
    margin-bottom: 12px;
}

.modal__subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: #222222;
    text-align: center;
    max-width: 410px;
    margin: 0 auto 28px;
}

.modal__form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal__input {
    width: 100%;
    height: 60px;
    padding: 0 24px;
    background: transparent;
    border: 1px solid #222222;
    border-radius: 8px;
    font-family: inherit;
    font-size: 18px;
    font-weight: 400;
    color: #222222;
    outline: none;
    transition: border-color 0.2s ease;
}

.modal__input::placeholder {
    color: #b0b0b0;
}

.modal__input--phone {
    border-color: #b0b0b0;
}

.modal__input:focus {
    border-color: var(--orange);
    outline: none;
}

.modal__btn {
    width: 100%;
    height: 70px;
    margin-top: 2px;
    background: var(--orange);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.modal__btn:hover {
    background: var(--orange-hover);
}

.modal__privacy {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #222222;
    text-align: center;
}

.modal__privacy-link {
    color: var(--orange);
    text-decoration: underline;
    font-weight: 500;
}

.modal__privacy-link:hover {
    opacity: 0.8;
}

@media (max-width: 500px) {

    .modal__card {
        width: calc(100vw - 30px);
        max-width: 341px;
        padding: 48px 30px 32px;
    }

    .modal__close {
        width: 20px;
        height: 20px;
        top: 15px;
        right: 15px;
    }

    .modal__close svg {
        width: 20px;
        height: 20px;
    }

    .modal__title {
        font-size: 30px;
    }

    .modal__subtitle {
        font-size: 16px;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .modal__input {
        height: 60px;
        font-size: 16px;
    }

    .modal__btn {
        height: 70px;
        font-size: 16px;
    }
}

.modal__card [class*="b24-form-field-agreement"],
.modal__card input[type="checkbox"],
.cta [class*="b24-form-field-agreement"],
.cta input[type="checkbox"] {
    display: none !important;
}

.modal__card [class*="b24-form-sign"],
.cta [class*="b24-form-sign"] {
    display: none !important;
}

.modal__card [class*="b24-form-field"],
.modal__card [class*="b24-form-control-container"] {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
}
.cta [class*="b24-form-field"],
.cta [class*="b24-form-control-container"] {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
}

.modal__card [class*="b24-form-field"] { margin: 0 0 10px !important; }
.cta [class*="b24-form-field"] { margin: 0 0 10px !important; }

.cta [class*="b24-form-wrapper"],
.cta__container > :not(.cta__text):not(script) {
    flex: 0 0 clamp(180px, 21.5625vw, 414px) !important;
    padding: 6px 0 0 !important;
    margin: 0 !important;
}
@media (max-width: 768px) {
    .cta [class*="b24-form-wrapper"],
    .cta__container > :not(.cta__text):not(script) {
        flex: none !important;
        width: 100% !important;
        padding-top: 0 !important;
    }
}

/* =============================================================
   Policy pages
   ============================================================= */

.policy-header {
    background: #222222;
}

.policy-header__container {
    max-width: 1920px;
    margin: 0 auto;
    height: 80px;
    padding-left: clamp(24px, 16.67%, 320px);
    padding-right: clamp(24px, 16.67%, 320px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.policy-header__back {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s;
}

.policy-header__back:hover {
    color: #ffffff;
}

.policy {
    background: #ffffff;
    padding: 70px 0 100px;
    min-height: calc(100vh - 80px - 153px);
}

.policy__container {
    max-width: 820px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.policy__title {
    font-size: clamp(24px, 2.08vw, 36px);
    font-weight: 700;
    line-height: 1.12;
    color: #222222;
    margin-bottom: 30px;
}

.policy__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: #444444;
    margin-bottom: 14px;
}

.policy__section {
    margin-top: 44px;
}

.policy__section-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    color: #222222;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ebebeb;
}

.policy__list {
    list-style: disc;
    padding-left: 22px;
    margin-bottom: 14px;
}

.policy__list li {
    font-size: 16px;
    line-height: 1.75;
    color: #444444;
    margin-bottom: 6px;
}

.policy__list--plain {
    list-style: none;
    padding-left: 0;
}

.policy__table-wrap {
    overflow-x: auto;
    margin-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}

.policy__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    min-width: 500px;
}

.policy__table th {
    background: #f6f6f7;
    font-weight: 700;
    color: #222222;
    padding: 12px 16px;
    text-align: left;
    border: 1px solid #e0e0e0;
    line-height: 1.4;
}

.policy__table td {
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    color: #444444;
    line-height: 1.6;
    vertical-align: top;
}

.policy__footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #ebebeb;
    font-size: 14px;
    color: #888888;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .policy-header__container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .policy {
        padding: 44px 0 70px;
    }

    .policy__title {
        font-size: 24px;
    }

    .policy__section {
        margin-top: 32px;
    }

    .policy__section-title {
        font-size: 17px;
    }

    .policy__text,
    .policy__list li {
        font-size: 15px;
    }
}

/* Стили для контента из ACF WYSIWYG (plain HTML без BEM-классов) */
.policy__container h1 {
    font-size: clamp(24px, 2.08vw, 36px);
    font-weight: 700;
    line-height: 1.12;
    color: #222222;
    margin-bottom: 30px;
}

.policy__container h2 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    color: #222222;
    margin-top: 44px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ebebeb;
}

.policy__container p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: #444444;
    margin-bottom: 14px;
}

.policy__container ul,
.policy__container ol {
    padding-left: 22px;
    margin-bottom: 14px;
}

.policy__container ul {
    list-style: disc;
}

.policy__container ol {
    list-style: none;
}

.policy__container li {
    font-size: 16px;
    line-height: 1.75;
    color: #444444;
    margin-bottom: 6px;
}

.policy__container a {
    color: #222222;
    text-decoration: underline;
}

.policy__container table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    min-width: 500px;
    margin-bottom: 20px;
}

.policy__container th {
    background: #f6f6f7;
    font-weight: 700;
    color: #222222;
    padding: 12px 16px;
    text-align: left;
    border: 1px solid #e0e0e0;
    line-height: 1.4;
}

.policy__container td {
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    color: #444444;
    line-height: 1.6;
    vertical-align: top;
}

@media (max-width: 768px) {
    .policy__container h1 {
        font-size: 24px;
    }

    .policy__container h2 {
        margin-top: 32px;
        font-size: 17px;
    }

    .policy__container p,
    .policy__container li {
        font-size: 15px;
    }

    .policy__container table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}