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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
}

body.page-template-page-home-preview {
    background: #ffffff;
}

body.page-template-page-home-preview .site-content,
body.page-template-page-home-preview .ast-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.home-preview {
    width: 100%;
    overflow: hidden;
    color: #25282b;
    background: #ffffff;
}

.linoplast-container {
    width: min(100% - 40px, 1440px);
    margin-right: auto;
    margin-left: auto;
}

/* Загальні заголовки */

.home-section-heading {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.home-section-heading__eyebrow {
    margin: 0 0 8px;
    color: #c9232d;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.home-section-heading__title {
    margin: 0 0 14px;
    color: #222529;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.15;
}

.home-section-heading__description {
    margin: 0;
    color: #6d7175;
    font-size: 16px;
    line-height: 1.65;
}

/* Перший екран */

.home-hero {
    position: relative;
    width: 100%;
    background: #f8f6f4;
}

.home-hero__content {
    display: grid;
    grid-template-columns: 44% 56%;
    min-height: 525px;
}

.home-hero__left {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    padding: 47px 59px 24px 60px;
    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(255, 255, 255, 0.9),
            rgba(249, 247, 245, 0.92) 58%,
            #f7f5f3 100%
        );
}

.home-hero__inner {
    width: 100%;
    max-width: 625px;
}

.home-hero__title {
    margin: 0 0 15px;
    color: #172026;
    font-size: 55px;
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.035em;
}

.home-hero__title sup {
    position: relative;
    top: -0.48em;
    margin-left: 3px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.home-hero__description {
    margin: 0 0 20px;
    color: #4f565d;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.home-hero__features {
    display: grid;
    grid-template-columns: repeat(4, 110px);
    gap: 35px;
    margin-bottom: 24px;
}

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

.home-hero__feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 72px;
    margin-bottom: 9px;
    color: #b90d17;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid #e8cece;
    border-radius: 11px;
}

.home-hero__feature-icon svg {
    width: 48px;
    height: 48px;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-hero__feature-icon text {
    fill: currentColor;
    stroke: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
}

/*.home-hero__feature-icon text:last-child {
    font-size: 7px;
}*/

.home-hero__feature-text {
    margin: 0;
    color: #22272b;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.25;
}

.home-hero__buttons {
    display: flex;
    align-items: center;
    gap: 13px;
}

.home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    padding: 10px 23px;
    color: #b80e18;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
    background: transparent;
    border: 1px solid #c7252e;
    border-radius: 3px;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.home-button--primary {
    min-width: 195px;
    color: #ffffff;
    background: #b90d17;
    border-color: #b90d17;
}

.home-button--primary:hover {
    color: #ffffff;
    background: #970a12;
    border-color: #970a12;
}

.home-button--outline {
    min-width: 150px;
    color: #b90d17;
    background: transparent;
}

.home-button--outline:hover {
    color: #ffffff;
    background: #b90d17;
}

.home-hero__image {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #e8e1dc;
}

.home-hero__image::before {
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 1;
    width: 30px;
    content: "";
    background: linear-gradient(
        90deg,
        rgba(248, 246, 244, 0.55),
        transparent
    );
    pointer-events: none;
}

.home-hero__image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 525px;
    object-fit: cover;
    object-position: center center;
}

/* Середні екрани */

@media (max-width: 1300px) {
    .home-hero__content {
        grid-template-columns: 48% 52%;
    }

    .home-hero__left {
        padding-right: 35px;
        padding-left: 35px;
    }

    .home-hero__title {
        font-size: 47px;
    }

    .home-hero__features {
        gap: 17px;
    }

    .home-hero__buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 1050px) {
    .home-hero__content {
        grid-template-columns: 52% 48%;
        min-height: 520px;
    }

    .home-hero__left {
        padding: 45px 30px 35px;
    }

    .home-hero__title {
        font-size: 42px;
    }

    .home-hero__description {
        font-size: 16px;
    }

    .home-hero__features {
        grid-template-columns: repeat(2, 105px);
        gap: 18px 25px;
    }

    .home-hero__feature {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .home-hero__feature-icon {
        flex: 0 0 60px;
        width: 60px;
        height: 60px;
        margin: 0 10px 0 0;
    }

    .home-hero__feature-icon svg {
        width: 40px;
        height: 40px;
    }

    .home-button {
        min-width: 0;
    }
}

/* Мобільна версія */

@media (max-width: 767px) {
    .home-hero__content {
        display: flex;
        min-height: 0;
        flex-direction: column;
    }

    .home-hero__image {
        order: 1;
        min-height: 290px;
    }

    .home-hero__image img {
        min-height: 290px;
        object-position: 63% center;
    }

    .home-hero__left {
        order: 2;
        padding: 38px 20px 42px;
    }

    .home-hero__inner {
        max-width: none;
    }

    .home-hero__title {
        font-size: clamp(37px, 10.5vw, 50px);
    }

    .home-hero__title sup {
        font-size: 17px;
    }

    .home-hero__description {
        font-size: 15px;
    }

    .home-hero__description br {
        display: none;
    }

    .home-hero__features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 12px;
        margin-bottom: 28px;
    }

    .home-hero__feature {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .home-hero__feature-icon {
        flex: 0 0 61px;
        width: 61px;
        height: 61px;
        margin: 0 11px 0 0;
    }

    .home-hero__feature-icon svg {
        width: 40px;
        height: 40px;
    }

    .home-hero__buttons {
        align-items: stretch;
    }

    .home-button,
    .home-button--primary,
    .home-button--outline {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 420px) {
    .home-hero__image,
    .home-hero__image img {
        min-height: 245px;
    }

    .home-hero__left {
        padding-right: 15px;
        padding-left: 15px;
    }

    .home-hero__features {
        grid-template-columns: 1fr;
    }
}

/* Чому обирають Linoplast */

.home-why {
    padding: 96px 0 102px;
    background:
        radial-gradient(
            circle at 50% 10%,
            rgba(246, 241, 237, 0.55),
            transparent 42%
        ),
        #ffffff;
}

.home-why__container {
    width: min(100% - 76px, 1894px);
    margin-right: auto;
    margin-left: auto;
}

.home-why__heading {
    margin-bottom: 34px;
    text-align: center;
}

.home-why__title {
    margin: 0 0 10px;
    color: #1f2225;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.home-why__description {
    margin: 0;
    color: #66696d;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
}

.home-why__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.home-why-card {
    display: flex;
    align-items: center;
    min-height: 156px;
    padding: 20px 26px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #ece8e5;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(43, 35, 31, 0.025);
}

.home-why-card__icon {
    display: flex;
    flex: 0 0 126px;
    align-items: center;
    justify-content: center;
    width: 126px;
    height: 126px;
    margin-right: 22px;
    color: #b70e17;
    background: #f8f3f0;
    border-radius: 50%;
}

.home-why-card__icon svg {
    width: 72px;
    height: 72px;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-why-card__icon--repair svg rect:last-child {
    fill: #b70e17;
    stroke: #b70e17;
}

.home-why-card__content {
    min-width: 0;
    padding-right: 4px;
}

.home-why-card__title {
    margin: 0 0 10px;
    color: #24272a;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
}

.home-why-card__text {
    margin: 0;
    color: #62666a;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}

/* Середні екрани */

@media (max-width: 1500px) {
    .home-why__container {
        width: min(100% - 40px, 1400px);
    }

    .home-why-card {
        padding: 18px;
    }

    .home-why-card__icon {
        flex-basis: 100px;
        width: 100px;
        height: 100px;
        margin-right: 18px;
    }

    .home-why-card__icon svg {
        width: 60px;
        height: 60px;
    }

    .home-why-card__title {
        font-size: 16px;
    }

    .home-why-card__text {
        font-size: 13px;
    }
}

@media (max-width: 1200px) {
    .home-why__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Мобільна версія */

@media (max-width: 767px) {
    .home-why {
        padding: 62px 0;
    }

    .home-why__container {
        width: min(100% - 30px, 700px);
    }

    .home-why__heading {
        margin-bottom: 28px;
    }

    .home-why__title {
        font-size: 30px;
    }

    .home-why__description {
        font-size: 15px;
    }

    .home-why__description br {
        display: none;
    }

    .home-why__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .home-why-card {
        min-height: 0;
        padding: 18px;
        border-radius: 10px;
    }

    .home-why-card__icon {
        flex: 0 0 82px;
        width: 82px;
        height: 82px;
        margin-right: 16px;
    }

    .home-why-card__icon svg {
        width: 50px;
        height: 50px;
    }

    .home-why-card__title {
        margin-bottom: 7px;
        font-size: 16px;
    }

    .home-why-card__text {
        font-size: 13px;
    }
}

@media (max-width: 420px) {
    .home-why-card {
        align-items: flex-start;
    }

    .home-why-card__icon {
        flex-basis: 66px;
        width: 66px;
        height: 66px;
        margin-right: 13px;
    }

    .home-why-card__icon svg {
        width: 42px;
        height: 42px;
    }
}

/* Планшет */

@media (max-width: 1100px) {
    .home-hero__content {
        grid-template-columns: 52% 48%;
        min-height: 600px;
    }

    .home-hero__left {
        padding: 70px 40px 65px;
    }

    .home-hero__features {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
        max-width: 400px;
    }

    .home-hero__feature {
        flex-direction: row;
        align-items: center;
    }
}

/* Мобільна версія */

@media (max-width: 767px) {
    .linoplast-container {
        width: min(100% - 30px, 1440px);
    }

    .home-hero__content {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .home-hero__left {
        order: 2;
        padding: 45px 20px 50px;
    }

    .home-hero__inner {
        max-width: none;
    }

    .home-hero__image {
        order: 1;
        min-height: 320px;
    }

    .home-hero__title {
        font-size: clamp(38px, 11vw, 52px);
    }

    .home-hero__description {
        font-size: 16px;
    }

    .home-hero__features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 12px;
    }

    .home-hero__feature {
        flex-direction: row;
        align-items: center;
    }

    .home-hero__buttons {
        align-items: stretch;
    }

    .home-button {
        width: 100%;
    }

    .home-button--text {
        width: auto;
    }

    .home-why {
        padding: 60px 0;
    }
}

@media (max-width: 420px) {
    .home-hero__image {
        min-height: 260px;
    }

    .home-hero__left {
        padding-right: 15px;
        padding-left: 15px;
    }

    .home-hero__features {
        grid-template-columns: 1fr;
    }
}



/* Основні категорії */

.home-categories {
    padding: 78px 0 92px;
    background: #ffffff;
}

.home-categories__container {
    width: min(100% - 110px, 1480px);
    margin-right: auto;
    margin-left: auto;
}

.home-categories__heading {
    margin-bottom: 42px;
    text-align: center;
}

.home-categories__title {
    margin: 0 0 12px;
    color: #202429;
    font-size: 45px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.home-categories__description {
    margin: 0;
    color: #59616b;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.45;
}

.home-categories__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
}

.home-category-card {
    display: flex;
    min-width: 0;
    min-height: 670px;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    box-shadow: 0 3px 14px rgba(25, 30, 35, 0.025);
}

.home-category-card__image-link {
    display: block;
    height: 416px;
    overflow: hidden;
    /*background: #eeeeee;*/
}

.home-category-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.home-category-card:hover .home-category-card__image {
    transform: scale(1.025);
}

.home-category-card__content {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 250px;
    padding: 27px 20px 26px;
}

.home-category-card__title {
    margin: 0 0 15px;
    color: #202429;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.home-category-card__title a {
    color: inherit;
    text-decoration: none;
}

.home-category-card__title a:hover {
    color: #c71923;
}

.home-category-card__text {
    margin: 0 0 30px;
    color: #656c74;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
}

.home-category-card__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 32px;
    margin-top: auto;
    margin-left: auto;
    color: #ed101a;
    text-decoration: none;
}

.home-category-card__arrow svg {
    width: 30px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s ease;
}

.home-category-card__arrow:hover svg {
    transform: translateX(5px);
}

/* Великі та середні екрани */

@media (max-width: 1500px) {
    .home-categories__container {
        width: min(100% - 50px, 1400px);
    }

    .home-categories__grid {
        gap: 24px;
    }

    .home-category-card {
        min-height: 620px;
    }

    .home-category-card__image-link {
        height: 380px;
    }

    .home-category-card__title {
        font-size: 21px;
    }
}

@media (max-width: 1100px) {
    .home-categories__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-category-card__image-link {
        height: 430px;
    }
}

/* Мобільна версія */

@media (max-width: 767px) {
    .home-categories {
        padding: 60px 0 68px;
    }

    .home-categories__container {
        width: min(100% - 30px, 700px);
    }

    .home-categories__heading {
        margin-bottom: 30px;
    }

    .home-categories__title {
        font-size: 34px;
    }

    .home-categories__description {
        font-size: 17px;
    }

    .home-categories__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .home-category-card {
        min-height: 0;
    }

    .home-category-card__image-link {
        height: auto;
        aspect-ratio: 336 / 435;
    }

    .home-category-card__content {
        min-height: 220px;
        padding: 22px 18px;
    }

    .home-category-card__title {
        font-size: 21px;
    }

    .home-category-card__text {
        font-size: 15px;
    }
}

/* Сертифікація та документи */

.home-documents {
    padding: 84px 0 74px;
    background:
        radial-gradient(
            circle at 50% 0,
            rgba(247, 242, 238, 0.55),
            transparent 40%
        ),
        #ffffff;
}

.home-documents__container {
    width: min(100% - 132px, 1525px);
    margin-right: auto;
    margin-left: auto;
}

.home-documents__heading {
    margin-bottom: 34px;
    text-align: center;
}

.home-documents__title {
    margin: 0 0 18px;
    color: #202429;
    font-size: 47px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.home-documents__description {
    margin: 0;
    color: #555c63;
    font-size: 20px;
    line-height: 1.75;
}

.home-documents__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 31px;
}

.home-document-card {
    display: flex;
    min-width: 0;
    min-height: 515px;
    flex-direction: column;
    padding: 24px 23px 22px;
    background: #ffffff;
    border: 1px solid #e9e6e3;
    border-radius: 10px;
    box-shadow: 0 3px 16px rgba(30, 35, 40, 0.025);
}

.home-document-card__image-link {
    display: block;
    height: 310px;
    overflow: hidden;
    background: #fafafa;
}

.home-document-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-document-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding-top: 22px;
}

.home-document-card__title {
    min-height: 56px;
    margin: 0 0 21px;
    color: #1f2327;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
}

.home-document-card__title sup {
    font-size: 10px;
    vertical-align: super;
}

.home-document-card__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    width: 100%;
    min-height: 56px;
    margin-top: auto;
    padding: 12px 18px;
    color: #bc111b;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    border: 1px solid #cf1b25;
    border-radius: 4px;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.home-document-card__button:hover {
    color: #ffffff;
    background: #c41620;
}

.home-document-card__button svg {
    width: 24px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-documents__notice {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    min-height: 103px;
    margin-top: 22px;
    padding: 14px 35px;
    background: #faf8f6;
    border-radius: 12px;
}

.home-documents__notice-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    color: #bc111b;
    background: #ffffff;
    border-radius: 50%;
}
.home-documents__notice-icon img {
    width: 50px;
}

.home-documents__notice-icon svg {
    width: 44px;
    height: 50px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-documents__notice-text {
    margin: 0;
    color: #50565c;
    font-size: 17px;
    line-height: 1.55;
}

.home-documents__all-link {
    display: inline-flex;
    align-items: center;
    gap: 17px;
    color: #bd111b;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

a:hover, a:focus {
    color: #000;
}

.home-documents__all-link svg {
    width: 30px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s ease;
}

.home-documents__all-link:hover svg {
    transform: translateX(5px);
}

@media (max-width: 1400px) {
    .home-documents__container {
        width: min(100% - 50px, 1400px);
    }

    .home-documents__grid {
        gap: 20px;
    }

    .home-document-card {
        padding-right: 18px;
        padding-left: 18px;
    }

    .home-document-card__title {
        font-size: 18px;
    }
}

@media (max-width: 1050px) {
    .home-documents__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-documents__notice {
        grid-template-columns: 82px minmax(0, 1fr);
    }

    .home-documents__all-link {
        grid-column: 2;
        justify-self: start;
        margin-top: 4px;
    }
}

@media (max-width: 767px) {
    .home-documents {
        padding: 60px 0;
    }

    .home-documents__container {
        width: min(100% - 30px, 700px);
    }

    .home-documents__heading {
        margin-bottom: 28px;
    }

    .home-documents__title {
        font-size: 34px;
    }

    .home-documents__description {
        font-size: 16px;
        line-height: 1.6;
    }

    .home-documents__description br {
        display: none;
    }

    .home-documents__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home-document-card {
        min-height: 0;
    }

    .home-document-card__image-link {
        height: auto;
        aspect-ratio: 1 / 1.05;
    }

    .home-document-card__title {
        min-height: 0;
    }

    .home-documents__notice {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 22px;
    }

    .home-documents__notice-text {
        font-size: 15px;
    }

    .home-documents__notice-text br {
        display: none;
    }
}

/* Підготовка основи */

.home-preparation {
    padding: 72px 0 78px;
    background: #ffffff;
}

.home-preparation__container {
    width: min(100% - 120px, 1440px);
    margin-right: auto;
    margin-left: auto;
}

.home-preparation__heading {
    margin-bottom: 35px;
    text-align: center;
}

.home-preparation__title {
    margin: 0 0 13px;
    color: #202429;
    font-size: 39px;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.025em;
}

.home-preparation__description {
    margin: 0;
    color: #555c63;
    font-size: 18px;
    line-height: 1.6;
}

.home-preparation__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 30px;
}

.home-preparation-card {
    min-width: 0;
    padding: 26px 26px 17px;
    background: #ffffff;
    border: 1px solid #e8e5e2;
    border-radius: 12px;
}

.home-preparation-card__header {
    display: flex;
    align-items: center;
    min-height: 118px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e7e4e1;
}

.home-preparation-card__main-icon,
.home-preparation-feature__icon,
.home-base-requirement__icon,
.home-base-table__icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    color: #be111b;
    background: #faf3f1;
    border-radius: 50%;
}

.home-preparation-card__main-icon {
    width: 96px;
    height: 96px;
    margin-right: 30px;
}
.home-preparation-card__main-icon img {
    width: 90px;
}
.home-preparation-card__main-icon svg {
    width: 59px;
    height: 59px;
}

.home-preparation-card svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-preparation-card__header-content {
    min-width: 0;
}

.home-preparation-card__title {
    margin: 0 0 13px;
    color: #202429;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.25;
}

.home-preparation-card__intro {
    margin: 0;
    color: #596067;
    font-size: 15px;
    line-height: 1.55;
}

.home-preparation-card__list {
    padding: 15px 15px 8px;
}

.home-preparation-feature {
    display: flex;
    align-items: center;
    min-height: 108px;
}

.home-preparation-feature__icon {
    width: 75px;
    height: 75px;
    margin-right: 38px;
}
.home-preparation-feature__icon img {
    width: 60px;
}
.home-preparation-feature__icon svg {
    width: 48px;
    height: 48px;
}

.home-preparation-feature__title {
    margin: 0 0 8px;
    color: #202429;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}

.home-preparation-feature__text {
    margin: 0;
    color: #626970;
    font-size: 14px;
    line-height: 1.55;
}

.home-preparation-card__image {
    height: 222px;
    margin-top: 4px;
    overflow: hidden;
    border-radius: 12px;
}

.home-preparation-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-base-requirements {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-base-requirement {
    display: flex;
    align-items: center;
    min-height: 119px;
    padding: 12px 16px;
    border-bottom: 1px solid #e7e4e1;
}

.home-base-requirement:nth-child(odd) {
    border-right: 1px solid #e7e4e1;
}

.home-base-requirement__icon {
    width: 74px;
    height: 74px;
    margin-right: 24px;
}

.home-base-requirement__icon svg {
    width: 48px;
    height: 48px;
}

.home-base-requirement__content h4 {
    margin: 0 0 8px;
    color: #202429;
    font-size: 17px;
    font-weight: 700;
}

.home-base-requirement__content p {
    margin: 0;
    color: #626970;
    font-size: 13px;
    line-height: 1.5;
}

.home-base-table__row {
    display: grid;
    grid-template-columns: 64px 130px minmax(0, 1fr);
    align-items: center;
    min-height: 71px;
    border-bottom: 1px solid #e7e4e1;
}

.home-base-table__row:last-child {
    border-bottom: 0;
}

.home-base-table__icon {
    width: 54px;
    height: 54px;
}

.home-base-table__icon svg {
    width: 35px;
    height: 35px;
}

.home-base-table__title {
    margin: 0;
    padding: 0 18px;
    color: #202429;
    font-size: 16px;
    font-weight: 700;
    border-right: 1px solid #e7e4e1;
}

.home-base-table__text {
    margin: 0;
    padding-left: 23px;
    color: #626970;
    font-size: 14px;
    line-height: 1.45;
}

.home-preparation__warning {
    display: flex;
    align-items: center;
    min-height: 98px;
    margin-top: 27px;
    padding: 17px 30px;
    background: #fcf5f3;
    border-radius: 11px;
}

.home-preparation__warning-icon {
    display: flex;
    flex: 0 0 72px;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-right: 28px;
    color: #bd111b;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
}
.home-preparation__warning-icon img{
	width:50px;
}
.home-preparation__warning-icon svg {
    width: 52px;
    height: 52px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-preparation__warning p {
    margin: 0;
    color: #50575e;
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 1250px) {
    .home-preparation__container {
        width: min(100% - 50px, 1200px);
    }

    .home-preparation__grid {
        grid-template-columns: 1fr;
    }

    .home-preparation-card__image {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .home-preparation {
        padding: 60px 0;
    }

    .home-preparation__container {
        width: min(100% - 30px, 700px);
    }

    .home-preparation__heading {
        margin-bottom: 28px;
    }

    .home-preparation__title {
        font-size: 32px;
    }

    .home-preparation__description {
        font-size: 16px;
    }

    .home-preparation__description br,
    .home-preparation__warning br,
    .home-preparation-feature__text br,
    .home-preparation-card__intro br,
    .home-base-requirement p br,
    .home-base-table__text br {
        display: none;
    }

    .home-preparation-card {
        padding: 20px 16px 16px;
    }

    .home-preparation-card__header {
        align-items: flex-start;
    }

    .home-preparation-card__main-icon {
        width: 72px;
        height: 72px;
        margin-right: 16px;
    }

    .home-preparation-card__main-icon svg {
        width: 45px;
        height: 45px;
    }

    .home-preparation-card__title {
        font-size: 20px;
    }

    .home-preparation-card__list {
        padding-right: 0;
        padding-left: 0;
    }

    .home-preparation-feature__icon {
        width: 62px;
        height: 62px;
        margin-right: 17px;
    }

    .home-preparation-feature__icon svg {
        width: 39px;
        height: 39px;
    }

    .home-preparation-card__image {
        height: auto;
        aspect-ratio: 2.8 / 1;
    }

    .home-base-requirements {
        grid-template-columns: 1fr;
    }

    .home-base-requirement:nth-child(odd) {
        border-right: 0;
    }

    .home-base-table__row {
        grid-template-columns: 56px 100px minmax(0, 1fr);
    }

    .home-base-table__title {
        padding-right: 10px;
        padding-left: 10px;
        font-size: 14px;
    }

    .home-base-table__text {
        padding-left: 14px;
        font-size: 13px;
    }

    .home-preparation__warning {
        align-items: flex-start;
        padding: 20px;
    }

    .home-preparation__warning-icon {
        flex-basis: 58px;
        width: 58px;
        height: 58px;
        margin-right: 15px;
    }

    .home-preparation__warning-icon svg {
        width: 42px;
        height: 42px;
    }

    .home-preparation__warning p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .home-base-table__row {
        grid-template-columns: 48px minmax(0, 1fr);
        padding: 12px 0;
    }

    .home-base-table__title {
        border-right: 0;
    }

    .home-base-table__text {
        grid-column: 2;
        padding: 7px 10px 0;
    }
}

/* Покроковий монтаж */

.home-installation {
    padding: 72px 0 82px;
    background: #ffffff;
}

.home-installation__container {
    width: min(100% - 120px, 1450px);
    margin-right: auto;
    margin-left: auto;
}

.home-installation__heading {
    margin-bottom: 58px;
    text-align: center;
}

.home-installation__title {
    margin: 0 0 14px;
    color: #202429;
    font-size: 39px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.home-installation__description {
    margin: 0;
    color: #565d64;
    font-size: 18px;
    line-height: 1.65;
}

.home-installation__steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
}

.home-installation-step {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 527px;
    flex-direction: column;
    overflow: visible;
    background: #ffffff;
    border: 1px solid #e8e5e2;
    border-radius: 10px;
}

.home-installation-step:not(:last-child)::after {
    position: absolute;
    top: 164px;
    right: -19px;
    z-index: 3;
    color: #c9c9c9;
    font-size: 41px;
    font-weight: 300;
    line-height: 1;
    content: "›";
}

.home-installation-step__number {
    position: absolute;
    top: 16px;
    left: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    background: #bb101a;
    border-radius: 50%;
    transform: translateX(-50%);
}

.home-installation-step__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 112px;
    height: 112px;
    margin: 52px auto 20px;
    color: #bd111b;
    background: #fbf1ef;
    border-radius: 50%;
}

.home-installation-step__icon img {
    width: 68px;
}

.home-installation-step__icon svg {
    width: 68px;
    height: 68px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-installation-step__icon strong {
    position: absolute;
    right: 0;
    bottom: 13px;
    left: 0;
    font-size: 17px;
    text-align: center;
}

.home-installation-step__content {
    flex: 1;
    min-height: 155px;
    padding: 0 24px 22px;
    text-align: center;
}

.home-installation-step__title {
    margin: 0 0 13px;
    color: #202429;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.home-installation-step__text {
    margin: 0;
    color: #5d646b;
    font-size: 13px;
    line-height: 1.55;
}

.home-installation-step__image {
    height: 204px;
    margin-top: auto;
    overflow: hidden;
    border-radius: 8px;
}

.home-installation-step__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-installation__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    min-height: 134px;
    margin: 48px 26px 0;
    padding: 22px 44px;
    background: #fcf4f2;
    border-radius: 10px;
}

.home-installation__cta-left {
    display: flex;
    align-items: center;
}

.home-installation__cta-icon {
    display: flex;
    flex: 0 0 92px;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    margin-right: 30px;
    color: #bd111b;
    background: #ffffff;
    border-radius: 50%;
}
.home-installation__cta-icon img {
	width:70px;
}
.home-installation__cta-icon svg {
    width: 66px;
    height: 66px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-installation__cta-content h3 {
    margin: 0 0 10px;
    color: #202429;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.25;
}

.home-installation__cta-content p {
    margin: 0;
    color: #5d646b;
    font-size: 17px;
    line-height: 1.5;
}

.home-installation__cta-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-installation__cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 27px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    background: #bd111b;
    border: 1px solid #bd111b;
    border-radius: 4px;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.home-installation__cta-button:hover {
    color: #ffffff;
    background: #9f0d15;
    border-color: #9f0d15;
}

.home-installation__cta-note {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 10px 0 0;
    color: #bd111b;
    font-size: 14px;
    line-height: 1.3;
}

.home-installation__cta-note svg {
    width: 21px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 1350px) {
    .home-installation__container {
        width: min(100% - 50px, 1250px);
    }

    .home-installation__steps {
        gap: 15px;
    }

    .home-installation-step__content {
        padding-right: 15px;
        padding-left: 15px;
    }

    .home-installation-step__title {
        font-size: 16px;
    }

    .home-installation-step__text {
        font-size: 12px;
    }

    .home-installation-step:not(:last-child)::after {
        right: -14px;
    }
}

@media (max-width: 1050px) {
    .home-installation__steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-installation-step:not(:last-child)::after {
        display: none;
    }

    .home-installation-step:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 8px);
        justify-self: center;
    }

    .home-installation__cta {
        flex-direction: column;
        align-items: stretch;
    }

    .home-installation__cta-right {
        align-items: flex-start;
        padding-left: 122px;
    }
}

@media (max-width: 767px) {
    .home-installation {
        padding: 60px 0;
    }

    .home-installation__container {
        width: min(100% - 30px, 700px);
    }

    .home-installation__heading {
        margin-bottom: 32px;
    }

    .home-installation__title {
        font-size: 31px;
    }

    .home-installation__description {
        font-size: 16px;
    }

    .home-installation__description br {
        display: none;
    }

    .home-installation__steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home-installation-step,
    .home-installation-step:last-child {
        width: 100%;
        min-height: 0;
        grid-column: auto;
    }

    .home-installation-step__content {
        min-height: 0;
    }

    .home-installation-step__image {
        height: auto;
        aspect-ratio: 1.4 / 1;
    }

    .home-installation__cta {
        margin: 30px 0 0;
        padding: 22px;
    }

    .home-installation__cta-left {
        align-items: flex-start;
    }

    .home-installation__cta-icon {
        flex-basis: 68px;
        width: 68px;
        height: 68px;
        margin-right: 16px;
    }

    .home-installation__cta-icon svg {
        width: 49px;
        height: 49px;
    }

    .home-installation__cta-content h3 {
        font-size: 21px;
    }

    .home-installation__cta-content p {
        font-size: 15px;
    }

    .home-installation__cta-right {
        align-items: stretch;
        padding-left: 0;
    }

    .home-installation__cta-button {
        width: 100%;
        font-size: 15px;
    }

    .home-installation__cta-note {
        justify-content: center;
        text-align: center;
    }
}

/* Простий догляд */

.home-care {
    padding: 72px 0 79px;
    background: #ffffff;
}

.home-care__container {
    width: min(100% - 120px, 1450px);
    margin-right: auto;
    margin-left: auto;
}

.home-care__heading {
    margin-bottom: 31px;
    text-align: center;
}

.home-care__title {
    margin: 0 0 14px;
    color: #202429;
    font-size: 39px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.home-care__description {
    margin: 0;
    color: #565d64;
    font-size: 18px;
    line-height: 1.65;
}

.home-care__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.home-care-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 24px 18px 15px;
    background: #ffffff;
    border: 1px solid #e8e5e2;
    border-radius: 11px;
}

.home-care-card__header {
    display: flex;
    align-items: center;
    min-height: 104px;
    padding: 0 13px 17px;
    border-bottom: 1px solid #e6e3e0;
}

.home-care-card__main-icon,
.home-care-item__icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    color: #bd111b;
    background: #fbf2f0;
    border-radius: 50%;
}

.home-care-card__main-icon {
    width: 88px;
    height: 88px;
    margin-right: 29px;
}
.home-care-card__main-icon img, .home-care-item__icon img {
    width: 60px;
}
.home-care-card__main-icon svg {
    width: 58px;
    height: 58px;
}

.home-care-card svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-care-card__header-content {
    min-width: 0;
}

.home-care-card__title {
    margin: 0 0 9px;
    color: #202429;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.25;
}

.home-care-card__intro {
    margin: 0;
    color: #5d646b;
    font-size: 14px;
    line-height: 1.55;
}

.home-care-card__items {
    flex: 1;
    padding: 0 12px;
}

.home-care-item {
    display: flex;
    align-items: center;
    min-height: 105px;
    padding: 12px 7px;
    border-bottom: 1px solid #e6e3e0;
}

.home-care-item:last-child {
    border-bottom: 0;
}

.home-care-item__icon {
    width: 68px;
    height: 68px;
    margin-right: 28px;
}

.home-care-item__icon svg {
    width: 44px;
    height: 44px;
}

.home-care-item__content {
    min-width: 0;
}

.home-care-item__title {
    margin: 0 0 7px;
    color: #202429;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
}

.home-care-item__text {
    margin: 0;
    color: #626970;
    font-size: 13px;
    line-height: 1.55;
}

.home-care-card__image {
    height: 231px;
    margin-top: 10px;
    overflow: hidden;
    border-radius: 9px;
}

.home-care-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-care__notice {
    display: flex;
    align-items: center;
    min-height: 99px;
    margin-top: 20px;
    padding: 15px 40px;
    background: #fcf4f2;
    border-radius: 10px;
}

.home-care__notice-icon {
    display: flex;
    flex: 0 0 73px;
    align-items: center;
    justify-content: center;
    width: 73px;
    height: 73px;
    margin-right: 29px;
    color: #bd111b;
    background: #ffffff;
    border-radius: 50%;
}
.home-care__notice-icon img{
	width:50px;
}
.home-care__notice-icon svg {
    width: 50px;
    height: 50px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-care__notice-content h3 {
    margin: 0 0 8px;
    color: #202429;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.25;
}

.home-care__notice-content p {
    margin: 0;
    color: #5d646b;
    font-size: 14px;
    line-height: 1.55;
}

@media (max-width: 1200px) {
    .home-care__container {
        width: min(100% - 50px, 1150px);
    }

    .home-care-card__main-icon {
        margin-right: 20px;
    }

    .home-care-item__icon {
        margin-right: 18px;
    }

    .home-care-item__text br {
        display: none;
    }
}

@media (max-width: 900px) {
    .home-care__grid {
        grid-template-columns: 1fr;
    }

    .home-care-card__image {
        height: 320px;
    }
}

@media (max-width: 767px) {
    .home-care {
        padding: 60px 0;
    }

    .home-care__container {
        width: min(100% - 30px, 700px);
    }

    .home-care__heading {
        margin-bottom: 28px;
    }

    .home-care__title {
        font-size: 31px;
    }

    .home-care__description {
        font-size: 16px;
    }

    .home-care__description br,
    .home-care-card__intro br,
    .home-care-item__text br {
        display: none;
    }

    .home-care-card {
        padding: 18px 14px 14px;
    }

    .home-care-card__header {
        align-items: flex-start;
        padding-right: 4px;
        padding-left: 4px;
    }

    .home-care-card__main-icon {
        width: 70px;
        height: 70px;
        margin-right: 16px;
    }

    .home-care-card__main-icon svg {
        width: 46px;
        height: 46px;
    }

    .home-care-card__title {
        font-size: 21px;
    }

    .home-care-card__items {
        padding-right: 0;
        padding-left: 0;
    }

    .home-care-item {
        align-items: flex-start;
    }

    .home-care-item__icon {
        width: 58px;
        height: 58px;
        margin-right: 15px;
    }

    .home-care-item__icon svg {
        width: 38px;
        height: 38px;
    }

    .home-care-card__image {
        height: auto;
        aspect-ratio: 2.65 / 1;
    }

    .home-care__notice {
        align-items: flex-start;
        padding: 20px;
    }

    .home-care__notice-icon {
        flex-basis: 58px;
        width: 58px;
        height: 58px;
        margin-right: 15px;
    }

    .home-care__notice-icon svg {
        width: 40px;
        height: 40px;
    }

    .home-care__notice-content h3 {
        font-size: 19px;
    }
}

/* Гарантія */

.home-warranty {
    padding: 74px 0 82px;
    background: #ffffff;
}

.home-warranty__container {
    width: min(100% - 70px, 1450px);
    margin-right: auto;
    margin-left: auto;
}

.home-warranty__heading {
    margin-bottom: 36px;
    text-align: center;
}

.home-warranty__title {
    margin: 0 0 17px;
    color: #202429;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.home-warranty__description {
    margin: 0;
    color: #59616a;
    font-size: 21px;
    line-height: 1.7;
}

.home-warranty__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 27px;
}

.home-warranty-card {
    display: flex;
    align-items: center;
    min-height: 292px;
    padding: 28px 39px 28px 24px;
    background: #ffffff;
    border: 1px solid #e8e5e2;
    border-radius: 10px;
}

.home-warranty-card__icon {
    display: flex;
    flex: 0 0 204px;
    align-items: center;
    justify-content: center;
    width: 204px;
    height: 204px;
    margin-right: 37px;
    color: #c50913;
    background: #fcf0ef;
    border-radius: 50%;
}
.home-warranty-card__icon img {
    width: 150px;
}
.home-warranty-card__icon svg {
    width: 120px;
    height: 120px;
    fill: none;
    stroke: currentColor;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-warranty-card__content {
    flex: 1;
    min-width: 0;
}

.home-warranty-card__years {
    margin: 0 0 16px;
    color: #d20c16;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.1;
}

.home-warranty-card__type {
    margin: 0;
    color: #202429;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
}

.home-warranty-card__line {
    width: 100%;
    height: 1px;
    margin: 22px 0 19px;
    background: #dedede;
}

.home-warranty-card__text {
    max-width: 415px;
    margin: 0;
    color: #555d64;
    font-size: 15px;
    line-height: 1.75;
}

.home-warranty__conditions {
    margin-top: 19px;
    padding: 19px 48px 29px;
    background: #fcf3f2;
    border-radius: 10px;
}

.home-warranty__warning {
    display: flex;
    align-items: center;
    min-height: 76px;
}

.home-warranty__warning-icon {
    display: flex;
    flex: 0 0 60px;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-right: 25px;
    color: #c50913;
}

.home-warranty__warning-icon svg {
    width: 55px;
    height: 55px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-warranty__warning p {
    margin: 0;
    color: #485057;
    font-size: 18px;
    line-height: 1.5;
}

.home-warranty__warning strong {
    margin-right: 5px;
    color: #202429;
    font-size: 20px;
    font-weight: 700;
}

.home-warranty__requirements {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 13px;
}

.home-warranty-requirement {
    display: flex;
    min-width: 0;
    padding: 4px 35px 0 0;
}

.home-warranty-requirement + .home-warranty-requirement {
    padding-left: 42px;
    border-left: 1px solid #d7d7d7;
}

.home-warranty-requirement__icon {
    display: flex;
    flex: 0 0 66px;
    align-items: flex-start;
    justify-content: center;
    width: 66px;
    margin-right: 22px;
    color: #c50913;
}

.home-warranty-requirement__icon svg {
    width: 62px;
    height: 62px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-warranty-requirement__content {
    min-width: 0;
}

.home-warranty-requirement__content h3 {
    margin: 0 0 10px;
    color: #202429;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
}

.home-warranty-requirement__content p {
    margin: 0;
    color: #4f575e;
    font-size: 15px;
    line-height: 1.7;
}

.home-warranty__disclaimer {
    margin: 32px 0 0;
    color: #465058;
    font-size: 18px;
    line-height: 1.7;
    text-align: center;
}

@media (max-width: 1250px) {
    .home-warranty__container {
        width: min(100% - 50px, 1200px);
    }

    .home-warranty-card {
        padding: 25px;
    }

    .home-warranty-card__icon {
        flex-basis: 160px;
        width: 160px;
        height: 160px;
        margin-right: 25px;
    }

    .home-warranty-card__icon svg {
        width: 95px;
        height: 95px;
    }

    .home-warranty-card__years {
        font-size: 33px;
    }

    .home-warranty__conditions {
        padding-right: 30px;
        padding-left: 30px;
    }

    .home-warranty-requirement {
        padding-right: 20px;
    }

    .home-warranty-requirement + .home-warranty-requirement {
        padding-left: 25px;
    }

    .home-warranty-requirement__icon {
        flex-basis: 55px;
        width: 55px;
        margin-right: 15px;
    }

    .home-warranty-requirement__icon svg {
        width: 52px;
        height: 52px;
    }

    .home-warranty-requirement__content p br {
        display: none;
    }
}

@media (max-width: 950px) {
    .home-warranty__cards {
        grid-template-columns: 1fr;
    }

    .home-warranty__requirements {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .home-warranty-requirement {
        padding: 0 0 24px;
        border-bottom: 1px solid #d7d7d7;
    }

    .home-warranty-requirement + .home-warranty-requirement {
        padding: 0 0 24px;
        border-left: 0;
        border-bottom: 1px solid #d7d7d7;
    }

    .home-warranty-requirement:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }
}

@media (max-width: 767px) {
    .home-warranty {
        padding: 60px 0;
    }

    .home-warranty__container {
        width: min(100% - 30px, 700px);
    }

    .home-warranty__heading {
        margin-bottom: 28px;
    }

    .home-warranty__title {
        font-size: 34px;
    }

    .home-warranty__description {
        font-size: 16px;
        line-height: 1.6;
    }

    .home-warranty__description br,
    .home-warranty__disclaimer br {
        display: none;
    }

    .home-warranty-card {
        align-items: flex-start;
        min-height: 0;
        padding: 22px;
    }

    .home-warranty-card__icon {
        flex-basis: 100px;
        width: 100px;
        height: 100px;
        margin-right: 18px;
    }

    .home-warranty-card__icon svg {
        width: 62px;
        height: 62px;
        stroke-width: 3.5;
    }

    .home-warranty-card__years {
        margin-bottom: 9px;
        font-size: 27px;
    }

    .home-warranty-card__type {
        font-size: 18px;
    }

    .home-warranty-card__line {
        margin: 15px 0;
    }

    .home-warranty-card__text {
        font-size: 14px;
        line-height: 1.6;
    }

    .home-warranty__conditions {
        padding: 20px;
    }

    .home-warranty__warning {
        align-items: flex-start;
    }

    .home-warranty__warning-icon {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
        margin-right: 14px;
    }

    .home-warranty__warning-icon svg {
        width: 45px;
        height: 45px;
    }

    .home-warranty__warning p {
        font-size: 15px;
    }

    .home-warranty__warning strong {
        display: block;
        margin: 0 0 4px;
        font-size: 18px;
    }

    .home-warranty-requirement__content p {
        font-size: 14px;
    }

    .home-warranty__disclaimer {
        margin-top: 25px;
        font-size: 15px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .home-warranty-card {
        display: block;
    }

    .home-warranty-card__icon {
        margin: 0 0 18px;
    }
}

/* Типові питання */

.home-faq {
    padding: 76px 0 80px;
    background: #ffffff;
}

.home-faq__container {
    width: min(100% - 80px, 1450px);
    margin-right: auto;
    margin-left: auto;
}

.home-faq__heading {
    margin-bottom: 34px;
    text-align: center;
}

.home-faq__title {
    margin: 0 0 15px;
    color: #202429;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.home-faq__description {
    margin: 0;
    color: #59616a;
    font-size: 21px;
    line-height: 1.6;
}

.home-faq__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.home-faq__column {
    min-width: 0;
}

.home-faq-item {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e4e4e4;
    border-radius: 9px;
}

.home-faq-item + .home-faq-item {
    margin-top: 0;
}

.home-faq-item__question {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 34px;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-height: 82px;
    padding: 13px 28px;
    color: #262a2e;
    text-align: left;
    background: #ffffff;
    border: 0;
    cursor: pointer;
}

.home-faq-item__question:hover,
.home-faq-item__question:focus {
    color: #262a2e;
    background: #ffffff;
}

.home-faq-item__question:focus-visible {
    outline: 2px solid #c50913;
    outline-offset: -2px;
}

.home-faq-item__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    background: #c70913;
    border-radius: 50%;
}

.home-faq-item__question-text {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.35;
}

.home-faq-item__toggle {
    position: relative;
    display: block;
    width: 28px;
    height: 28px;
    justify-self: end;
}

.home-faq-item__toggle::before,
.home-faq-item__toggle::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 21px;
    height: 2px;
    content: "";
    background: #c70913;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease;
}

.home-faq-item__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.home-faq-item.is-open .home-faq-item__toggle::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.home-faq-item__answer {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        height 0.38s ease,
        opacity 0.25s ease;
}

.home-faq-item.is-open .home-faq-item__answer {
    opacity: 1;
}

.home-faq-item__answer-inner {
    padding: 0 80px 22px 90px;
    color: #5e666d;
    font-size: 15px;
    line-height: 1.65;
	transform: translateY(-8px);
    transition: transform 0.38s ease;
}
.home-faq-item.is-open .home-faq-item__answer-inner {
    transform: translateY(0);
}
.home-faq__column .home-faq-item:not(:last-child) {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.home-faq__column .home-faq-item:not(:first-child) {
    border-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.home-faq__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    min-height: 155px;
    margin-top: 40px;
    padding: 25px 60px 25px 47px;
    background: #fcf3f2;
    border-radius: 10px;
}

.home-faq__cta-left {
    display: flex;
    align-items: center;
}

.home-faq__cta-icon {
    display: flex;
    flex: 0 0 104px;
    align-items: center;
    justify-content: center;
    width: 104px;
    height: 104px;
    margin-right: 36px;
    color: #c50913;
    background: #ffffff;
    border-radius: 50%;
}
.home-faq__cta-icon img {
    width: 80px;
}
.home-faq__cta-icon svg {
    width: 76px;
    height: 76px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-faq__cta-content h3 {
    margin: 0 0 14px;
    color: #202429;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.25;
}

.home-faq__cta-content p {
    margin: 0;
    color: #59616a;
    font-size: 19px;
    line-height: 1.5;
}

.home-faq__cta-button {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    min-width: 320px;
    min-height: 88px;
    padding: 18px 32px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(135deg, #c50b15, #df151f);
    border-radius: 4px;
    box-shadow: 0 8px 18px rgba(197, 9, 19, 0.12);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.home-faq__cta-button:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(197, 9, 19, 0.2);
}

@media (max-width: 1100px) {
    .home-faq__container {
        width: min(100% - 50px, 1050px);
    }

    .home-faq-item__question {
        padding-right: 20px;
        padding-left: 20px;
    }

    .home-faq-item__answer-inner {
        padding-right: 60px;
        padding-left: 82px;
    }

    .home-faq__cta {
        padding-right: 35px;
        padding-left: 35px;
    }

    .home-faq__cta-button {
        min-width: 260px;
    }
}

@media (max-width: 850px) {
    .home-faq__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .home-faq__column + .home-faq__column .home-faq-item:first-child {
        border-top: 0;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .home-faq__column:first-child .home-faq-item:last-child {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    .home-faq__cta {
        flex-direction: column;
        align-items: stretch;
    }

    .home-faq__cta-button {
        width: 100%;
        min-width: 0;
        min-height: 64px;
    }
}

@media (max-width: 767px) {
    .home-faq {
        padding: 60px 0;
    }

    .home-faq__container {
        width: min(100% - 30px, 700px);
    }

    .home-faq__heading {
        margin-bottom: 28px;
    }

    .home-faq__title {
        font-size: 35px;
    }

    .home-faq__description {
        font-size: 16px;
    }

    .home-faq-item__question {
        grid-template-columns: 40px minmax(0, 1fr) 26px;
        gap: 10px;
        min-height: 72px;
        padding: 12px 15px;
    }

    .home-faq-item__number {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .home-faq-item__question-text {
        font-size: 15px;
    }

    .home-faq-item__toggle {
        width: 24px;
        height: 24px;
    }

    .home-faq-item__toggle::before,
    .home-faq-item__toggle::after {
        width: 18px;
    }

    .home-faq-item__answer-inner {
        padding: 0 50px 18px 65px;
        font-size: 14px;
    }

    .home-faq__cta {
        margin-top: 28px;
        padding: 22px;
    }

    .home-faq__cta-left {
        align-items: flex-start;
    }

    .home-faq__cta-icon {
        flex-basis: 70px;
        width: 70px;
        height: 70px;
        margin-right: 16px;
    }

    .home-faq__cta-icon svg {
        width: 52px;
        height: 52px;
    }

    .home-faq__cta-content h3 {
        margin-bottom: 8px;
        font-size: 21px;
    }

    .home-faq__cta-content p {
        font-size: 15px;
    }

    .home-faq__cta-button {
        font-size: 17px;
    }
}

@media (max-width: 450px) {
    .home-faq-item__question {
        grid-template-columns: 34px minmax(0, 1fr) 22px;
        padding-right: 12px;
        padding-left: 12px;
    }

    .home-faq-item__number {
        width: 29px;
        height: 29px;
    }

    .home-faq-item__answer-inner {
        padding-right: 20px;
        padding-left: 56px;
    }

    .home-faq__cta-left {
        display: block;
    }

    .home-faq__cta-icon {
        margin: 0 0 16px;
    }
}

/* Shared content width for every homepage section except the full-width hero. */
.home-why__container,
.home-categories__container,
.home-documents__container,
.home-preparation__container,
.home-installation__container,
.home-care__container,
.home-warranty__container,
.home-faq__container {
    width: min(100% - 40px, 1440px);
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 767px) {
    .home-why__container,
    .home-categories__container,
    .home-documents__container,
    .home-preparation__container,
    .home-installation__container,
    .home-care__container,
    .home-warranty__container,
    .home-faq__container {
        width: min(100% - 30px, 1440px);
    }
}
