@font-face {
    font-family: "Gotham Pro";
    src: url("../fonts/gothampro.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham Pro";
    src: url("../fonts/gothampro_medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham Pro";
    src: url("../fonts/gothampro_bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

.ski-owner-page {
        --ski-dark: #111312;
        --ski-black: #080908;
        --ski-light: #f4f4f1;
        --ski-white: #ffffff;
        --ski-grey: #777a76;
        --ski-line: rgba(255, 255, 255, 0.16);
        --ski-accent: #c9b98d;

        max-width: 1240px;
        margin: 0 auto;
        padding: 24px 18px 70px;
        color: var(--ski-dark);
        font-family: "Gotham Pro", Arial, Helvetica, sans-serif;
        line-height: 1.6;
    }

    .ski-owner-page * {
        box-sizing: border-box;
    }

    /* Первый экран */

    .ski-owner-hero {
        position: relative;
        min-height: 490px;
        display: flex;
        align-items: flex-end;
        overflow: hidden;
        margin-bottom: 28px;
        padding: 64px 58px;
        border-radius: 30px;
        background:
            radial-gradient(
                circle at 82% 22%,
                rgba(255, 255, 255, 0.12),
                transparent 26%
            ),
            linear-gradient(
                130deg,
                #070807 0%,
                #181b19 54%,
                #343833 100%
            );
        color: var(--ski-white);
    }

    .ski-owner-hero::before {
        content: "";
        position: absolute;
        top: -90px;
        right: 80px;
        width: 120px;
        height: 680px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 100px;
        transform: rotate(24deg);
    }

    .ski-owner-hero::after {
        content: "";
        position: absolute;
        top: -60px;
        right: 178px;
        width: 58px;
        height: 620px;
        border: 1px solid rgba(201, 185, 141, 0.25);
        border-radius: 100px;
        transform: rotate(24deg);
    }

    .ski-owner-hero__content {
        position: relative;
        z-index: 2;
        max-width: 830px;
    }

    .ski-owner-hero__eyebrow {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 24px;
        color: rgba(255, 255, 255, 0.72);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
    }

    .ski-owner-hero__eyebrow::before {
        content: "";
        width: 42px;
        height: 1px;
        background: var(--ski-accent);
    }

    .ski-owner-hero h1 {
        max-width: 780px;
        margin: 0 0 24px;
        font-size: clamp(38px, 5vw, 66px);
        font-weight: 500;
        line-height: 1.04;
        letter-spacing: -0.04em;
    }

    .ski-owner-hero p {
        max-width: 770px;
        margin: 0;
        color: rgba(255, 255, 255, 0.78);
        font-size: 18px;
        line-height: 1.75;
    }

    /* Вводный блок */

    .ski-owner-intro {
        display: grid;
        grid-template-columns: 0.75fr 1.25fr;
        gap: 40px;
        align-items: start;
        margin: 0 0 28px;
        padding: 42px 46px;
        border-radius: 24px;
        background: var(--ski-light);
    }

    .ski-owner-intro__label {
        color: var(--ski-grey);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    .ski-owner-intro__text {
        margin: 0;
        font-size: 21px;
        line-height: 1.55;
        letter-spacing: -0.015em;
    }

    /* Навигация */

    .ski-owner-menu {
        display: grid;
        grid-template-columns: repeat(12, minmax(0, 1fr));
        gap: 18px;
    }

    .ski-owner-menu__item {
        position: relative;
        min-height: 270px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        overflow: hidden;
        padding: 30px;
        border-radius: 24px;
        color: var(--ski-white);
        text-decoration: none;
        transition:
            transform 0.25s ease,
            box-shadow 0.25s ease;
    }

    .ski-owner-menu__item:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
        color: var(--ski-white);
    }

    .ski-owner-menu__item::after {
        content: "↗";
        position: absolute;
        top: 25px;
        right: 27px;
        display: flex;
        width: 42px;
        height: 42px;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--ski-line);
        border-radius: 50%;
        font-size: 18px;
        transition:
            background 0.25s ease,
            color 0.25s ease;
    }

    .ski-owner-menu__item:hover::after {
        background: var(--ski-white);
        color: var(--ski-black);
    }

    .ski-owner-menu__number {
        color: rgba(255, 255, 255, 0.52);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.14em;
    }

    .ski-owner-menu__content {
        position: relative;
        z-index: 2;
    }

    .ski-owner-menu__title {
        display: block;
        max-width: 90%;
        margin-bottom: 14px;
        font-size: clamp(27px, 3vw, 43px);
        font-weight: 500;
        line-height: 1.04;
        letter-spacing: -0.035em;
    }

    .ski-owner-menu__description {
        display: block;
        max-width: 490px;
        color: rgba(255, 255, 255, 0.66);
        font-size: 14px;
        line-height: 1.55;
    }

    /* Размеры карточек */

    .ski-owner-menu__item--wide {
        grid-column: span 7;
    }

    .ski-owner-menu__item--medium {
        grid-column: span 5;
    }

    .ski-owner-menu__item--half {
        grid-column: span 6;
    }

    /* Фоны карточек */

    .ski-owner-menu__item--warranty {
        background:
            linear-gradient(
                145deg,
                rgba(255, 255, 255, 0.02),
                rgba(255, 255, 255, 0.08)
            ),
            #171917;
    }

    .ski-owner-menu__item--special {
        background:
            radial-gradient(
                circle at 85% 20%,
                rgba(201, 185, 141, 0.22),
                transparent 30%
            ),
            #282b27;
    }

    .ski-owner-menu__item--storage {
        background:
            linear-gradient(
                145deg,
                rgba(255, 255, 255, 0.05),
                transparent
            ),
            #40443f;
    }

    .ski-owner-menu__item--first {
        background:
            radial-gradient(
                circle at 20% 10%,
                rgba(255, 255, 255, 0.13),
                transparent 33%
            ),
            #1e2525;
    }

    .ski-owner-menu__item--service {
        background:
            linear-gradient(
                135deg,
                #151515,
                #33302a
            );
    }

    .ski-owner-menu__item--video {
        background:
            radial-gradient(
                circle at 85% 25%,
                rgba(255, 255, 255, 0.15),
                transparent 30%
            ),
            #595d56;
    }

    /* Блок внимания */

    .ski-owner-important {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 22px;
        align-items: center;
        margin-top: 28px;
        padding: 28px 32px;
        border: 1px solid #e0e0da;
        border-radius: 20px;
        background: #ffffff;
    }

    .ski-owner-important__icon {
        display: flex;
        width: 48px;
        height: 48px;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--ski-dark);
        color: var(--ski-white);
        font-weight: 700;
    }

    .ski-owner-important strong {
        display: block;
        margin-bottom: 4px;
        font-size: 17px;
    }

    .ski-owner-important p {
        margin: 0;
        color: #6d6f6b;
        font-size: 14px;
    }

    /* Адаптация */

    @media (max-width: 900px) {
        .ski-owner-hero {
            min-height: 430px;
            padding: 48px 36px;
        }

        .ski-owner-intro {
            grid-template-columns: 1fr;
            gap: 14px;
        }

        .ski-owner-menu__item--wide,
        .ski-owner-menu__item--medium,
        .ski-owner-menu__item--half {
            grid-column: span 6;
        }
    }

    @media (max-width: 640px) {
        .ski-owner-page {
            padding: 12px 10px 45px;
        }

        .ski-owner-hero {
            min-height: 440px;
            padding: 38px 24px;
            border-radius: 22px;
        }

        .ski-owner-hero::before {
            right: -10px;
        }

        .ski-owner-hero::after {
            right: 72px;
        }

        .ski-owner-hero p {
            font-size: 16px;
            line-height: 1.65;
        }

        .ski-owner-intro {
            padding: 30px 24px;
            border-radius: 20px;
        }

        .ski-owner-intro__text {
            font-size: 18px;
        }

        .ski-owner-menu {
            display: block;
        }

        .ski-owner-menu__item {
            min-height: 225px;
            margin-bottom: 14px;
            padding: 26px 23px;
            border-radius: 20px;
        }

        .ski-owner-menu__title {
            max-width: 82%;
            font-size: 32px;
        }

        .ski-owner-important {
            grid-template-columns: 1fr;
            padding: 25px;
        }
    }
/* =========================================================
   2SKI — СТРАНИЦА «ГАРАНТИЯ»
   Премиальная версия
   ========================================================= */

.ski-warranty-page {
    --sw-black: #0b0d0c;
    --sw-dark: #151815;
    --sw-dark-soft: #222622;

    --sw-white: #ffffff;
    --sw-paper: #f7f7f3;
    --sw-paper-dark: #ecece6;
    --sw-card: #ffffff;

    --sw-text: #161916;
    --sw-text-soft: #5e645e;
    --sw-text-muted: #828780;

    --sw-line: rgba(22, 25, 22, 0.12);
    --sw-line-dark: rgba(255, 255, 255, 0.14);

    --sw-gold: #b9a779;
    --sw-gold-light: #d2c49d;

    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 24px 20px 100px;

    color: var(--sw-text) !important;
    font-family: "Gotham Pro", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

.ski-warranty-page *,
.ski-warranty-page *::before,
.ski-warranty-page *::after {
    box-sizing: border-box;
}

.ski-warranty-page h1,
.ski-warranty-page h2,
.ski-warranty-page h3,
.ski-warranty-page p {
    padding: 0;
}

.ski-warranty-page h1,
.ski-warranty-page h2,
.ski-warranty-page h3 {
    font-family: "Gotham Pro", Arial, Helvetica, sans-serif;
}


/* =========================================================
   ПЕРВЫЙ ЭКРАН
   ========================================================= */

.ski-warranty-hero {
    position: relative;
    isolation: isolate;
    display: flex;
    min-height: 590px;
    align-items: flex-end;
    overflow: hidden;

    margin-bottom: 28px;
    padding: 76px 68px;

    border-radius: 34px;
    background:
        radial-gradient(
            circle at 86% 18%,
            rgba(210, 196, 157, 0.17),
            transparent 28%
        ),
        radial-gradient(
            circle at 72% 80%,
            rgba(255, 255, 255, 0.07),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #080a09 0%,
            #121512 53%,
            #2d322d 100%
        );

    color: var(--sw-white) !important;
    box-shadow: 0 30px 80px rgba(11, 13, 12, 0.16);
}

.ski-warranty-hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -190px;
    right: 110px;

    width: 112px;
    height: 900px;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 120px;
    transform: rotate(25deg);
}

.ski-warranty-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: -130px;
    right: 245px;

    width: 54px;
    height: 760px;

    border: 1px solid rgba(210, 196, 157, 0.29);
    border-radius: 100px;
    transform: rotate(25deg);
}

.ski-warranty-hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.ski-warranty-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 28px;

    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    line-height: 1.3;
    text-transform: uppercase;
}

.ski-warranty-hero__eyebrow::before {
    content: "";
    display: block;

    width: 46px;
    height: 1px;

    background: var(--sw-gold);
}

.ski-warranty-hero h1 {
    max-width: 900px;
    margin: 0 0 30px;

    color: var(--sw-white) !important;
    font-size: clamp(58px, 7.4vw, 102px);
    font-weight: 400;
    letter-spacing: -0.065em;
    line-height: 0.92;
}

.ski-warranty-hero p {
    max-width: 820px;
    margin: 0;

    color: rgba(255, 255, 255, 0.76) !important;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.75;
}


/* =========================================================
   ВВОДНЫЙ БЛОК
   ========================================================= */

.ski-warranty-intro {
    display: grid;
    grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.45fr);
    gap: 60px;
    align-items: start;

    margin-bottom: 28px;
    padding: 62px 58px;

    border: 1px solid var(--sw-line);
    border-radius: 28px;
    background: var(--sw-paper);
}

.ski-warranty-intro__label,
.ski-warranty-section__label {
    color: var(--sw-text-muted) !important;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-transform: uppercase;
}

.ski-warranty-intro__content {
    max-width: 850px;
}

.ski-warranty-intro__content h2 {
    margin: 0 0 24px;

    color: var(--sw-text) !important;
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 400;
    letter-spacing: -0.05em;
    line-height: 1.02;
}

.ski-warranty-intro__content p {
    margin: 0;

    color: var(--sw-text-soft) !important;
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   ОБЩИЕ СЕКЦИИ
   ========================================================= */

.ski-warranty-section {
    position: relative;

    margin-bottom: 28px;
    padding: 62px 58px;

    border: 1px solid var(--sw-line);
    border-radius: 28px;
    background: var(--sw-card);

    color: var(--sw-text) !important;
}

.ski-warranty-section__heading {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 25px;
    align-items: start;

    margin-bottom: 46px;
}

.ski-warranty-section__number {
    display: flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--sw-line);
    border-radius: 50%;

    color: var(--sw-text-muted) !important;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.ski-warranty-section__heading h2 {
    max-width: 900px;
    margin: 9px 0 0;

    color: var(--sw-text) !important;
    font-size: clamp(36px, 4.7vw, 62px);
    font-weight: 400;
    letter-spacing: -0.052em;
    line-height: 1.02;
}


/* =========================================================
   КАРТОЧКИ ГАРАНТИЙНЫХ СЛУЧАЕВ
   ========================================================= */

.ski-warranty-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.ski-warranty-card {
    position: relative;
    min-height: 280px;
    overflow: hidden;

    padding: 32px;

    border: 1px solid var(--sw-line);
    border-radius: 22px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.95),
            rgba(247, 247, 243, 0.9)
        );

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.ski-warranty-card::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -80px;

    width: 170px;
    height: 170px;

    border: 1px solid rgba(185, 167, 121, 0.23);
    border-radius: 50%;
}

.ski-warranty-card:hover {
    z-index: 2;
    transform: translateY(-5px);

    border-color: rgba(185, 167, 121, 0.55);
    box-shadow: 0 24px 50px rgba(11, 13, 12, 0.1);
}

.ski-warranty-card__icon {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;

    margin-bottom: 62px;

    border-radius: 50%;
    background: var(--sw-dark);

    color: var(--sw-white) !important;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.ski-warranty-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 14px;

    color: var(--sw-text) !important;
    font-size: 25px;
    font-weight: 400;
    letter-spacing: -0.032em;
    line-height: 1.15;
}

.ski-warranty-card p {
    position: relative;
    z-index: 2;

    max-width: 480px;
    margin: 0;

    color: var(--sw-text-soft) !important;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   ТЁМНАЯ СЕКЦИЯ — ИСКЛЮЧЕНИЯ
   ========================================================= */

.ski-warranty-section--dark {
    overflow: hidden;

    border: 0;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(185, 167, 121, 0.14),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #0b0d0c,
            #1b1f1b
        );

    color: var(--sw-white) !important;
    box-shadow: 0 28px 70px rgba(11, 13, 12, 0.14);
}

.ski-warranty-section--dark::after {
    content: "";
    position: absolute;
    top: -150px;
    right: -100px;

    width: 420px;
    height: 420px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.ski-warranty-section--dark .ski-warranty-section__number {
    border-color: var(--sw-line-dark);
    color: rgba(255, 255, 255, 0.46) !important;
}

.ski-warranty-section--dark .ski-warranty-section__label {
    color: rgba(255, 255, 255, 0.45) !important;
}

.ski-warranty-section--dark .ski-warranty-section__heading h2 {
    color: var(--sw-white) !important;
}

.ski-warranty-exclusions {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 44px;
}

.ski-warranty-exclusions__item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 18px;

    padding: 27px 0;

    border-top: 1px solid var(--sw-line-dark);
}

.ski-warranty-exclusions__item span {
    padding-top: 3px;

    color: rgba(255, 255, 255, 0.38) !important;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.ski-warranty-exclusions__item p {
    margin: 0;

    color: rgba(255, 255, 255, 0.73) !important;
    font-size: 15px;
    line-height: 1.72;
}


/* =========================================================
   ТЕКСТ ПЕРЕД ФОТОГРАФИЯМИ
   ========================================================= */

.ski-warranty-lead {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;

    margin-bottom: 40px;
    padding-bottom: 40px;

    border-bottom: 1px solid var(--sw-line);
}

.ski-warranty-lead p {
    margin: 0;

    color: var(--sw-text-soft) !important;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   КАРТОЧКИ ФОТОГРАФИЙ
   ========================================================= */

.ski-warranty-photo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.ski-warranty-photo-card {
    min-height: 335px;
    padding: 32px;

    border: 1px solid var(--sw-line);
    border-radius: 22px;
    background: var(--sw-paper);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background-color 0.35s ease,
        box-shadow 0.35s ease;
}

.ski-warranty-photo-card:hover {
    transform: translateY(-5px);

    border-color: rgba(185, 167, 121, 0.55);
    background: var(--sw-white);
    box-shadow: 0 24px 50px rgba(11, 13, 12, 0.09);
}

.ski-warranty-photo-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 62px;
}

.ski-warranty-photo-card__number {
    color: var(--sw-text-muted) !important;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
}

.ski-warranty-photo-card__symbol {
    display: flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--sw-line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);

    color: var(--sw-text) !important;
    font-size: 18px;
    font-weight: 400;
}

.ski-warranty-photo-card h3 {
    margin: 0 0 14px;

    color: var(--sw-text) !important;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.13;
}

.ski-warranty-photo-card p {
    margin: 0 0 21px;

    color: var(--sw-text-soft) !important;
    font-size: 14px;
    line-height: 1.7;
}

.ski-warranty-photo-card strong {
    display: block;

    color: #343934 !important;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.62;
}


/* =========================================================
   ЭТАПЫ РАССМОТРЕНИЯ
   ========================================================= */

.ski-warranty-process {
    position: relative;
    overflow: hidden;

    margin-bottom: 28px;
    padding: 68px 58px;

    border: 1px solid var(--sw-line);
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 96% 10%,
            rgba(185, 167, 121, 0.13),
            transparent 27%
        ),
        var(--sw-paper-dark);

    color: var(--sw-text) !important;
}

.ski-warranty-process__heading {
    max-width: 820px;
    margin-bottom: 48px;
}

.ski-warranty-process__heading h2 {
    margin: 10px 0 0;

    color: var(--sw-text) !important;
    font-size: clamp(38px, 5vw, 66px);
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 1;
}

.ski-warranty-process__steps {
    border-top: 1px solid var(--sw-line);
}

.ski-warranty-process__step {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 28px;

    padding: 31px 0;

    border-bottom: 1px solid var(--sw-line);
    transition: padding-left 0.3s ease;
}

.ski-warranty-process__step:hover {
    padding-left: 10px;
}

.ski-warranty-process__number {
    padding-top: 4px;

    color: var(--sw-text-muted) !important;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
}

.ski-warranty-process__step h3 {
    margin: 0 0 10px;

    color: var(--sw-text) !important;
    font-size: 23px;
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.ski-warranty-process__step p {
    max-width: 830px;
    margin: 0;

    color: var(--sw-text-soft) !important;
    font-size: 14px;
    line-height: 1.72;
}


/* =========================================================
   РЕЗУЛЬТАТ ЭКСПЕРТИЗЫ
   ========================================================= */

.ski-warranty-result {
    position: relative;
    overflow: hidden;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 65px;

    margin-bottom: 28px;
    padding: 68px 58px;

    border-radius: 28px;
    background:
        radial-gradient(
            circle at 82% 12%,
            rgba(210, 196, 157, 0.17),
            transparent 29%
        ),
        linear-gradient(
            140deg,
            #151815,
            #2a302a
        );

    color: var(--sw-white) !important;
    box-shadow: 0 28px 70px rgba(11, 13, 12, 0.15);
}

.ski-warranty-result::after {
    content: "";
    position: absolute;
    right: -160px;
    bottom: -250px;

    width: 520px;
    height: 520px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.ski-warranty-result__content,
.ski-warranty-result__options {
    position: relative;
    z-index: 2;
}

.ski-warranty-result .ski-warranty-section__label {
    color: rgba(255, 255, 255, 0.46) !important;
}

.ski-warranty-result__content h2 {
    margin: 11px 0 24px;

    color: var(--sw-white) !important;
    font-size: clamp(38px, 4.7vw, 62px);
    font-weight: 400;
    letter-spacing: -0.052em;
    line-height: 1.02;
}

.ski-warranty-result__content p {
    max-width: 570px;
    margin: 0;

    color: rgba(255, 255, 255, 0.66) !important;
    font-size: 15px;
    line-height: 1.75;
}

.ski-warranty-result__options {
    border-top: 1px solid var(--sw-line-dark);
}

.ski-warranty-result__option {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 20px;

    padding: 29px 0;

    border-bottom: 1px solid var(--sw-line-dark);
}

.ski-warranty-result__option > span {
    padding-top: 3px;

    color: rgba(255, 255, 255, 0.38) !important;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.ski-warranty-result__option h3 {
    margin: 0 0 10px;

    color: var(--sw-white) !important;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.ski-warranty-result__option p {
    margin: 0;

    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 14px;
    line-height: 1.68;
}


/* =========================================================
   БЛОК «ВАЖНО»
   ========================================================= */

.ski-warranty-important {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 28px;
    align-items: start;

    padding: 40px;

    border: 1px solid rgba(185, 167, 121, 0.35);
    border-radius: 22px;
    background:
        linear-gradient(
            135deg,
            rgba(210, 196, 157, 0.1),
            rgba(255, 255, 255, 0)
        ),
        var(--sw-white);

    color: var(--sw-text) !important;
}

.ski-warranty-important__icon {
    display: flex;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: var(--sw-dark);

    color: var(--sw-white) !important;
    font-size: 17px;
    font-weight: 500;
}

.ski-warranty-important h2 {
    margin: 0 0 15px;

    color: var(--sw-text) !important;
    font-size: 27px;
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.ski-warranty-important p {
    max-width: 970px;
    margin: 0 0 12px;

    color: var(--sw-text-soft) !important;
    font-size: 14px;
    line-height: 1.75;
}

.ski-warranty-important p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   ДОПОЛНИТЕЛЬНАЯ ЗАЩИТА ОТ СТИЛЕЙ ASPRO
   ========================================================= */

.ski-warranty-page
.ski-warranty-intro h2,

.ski-warranty-page
.ski-warranty-section:not(.ski-warranty-section--dark) h2,

.ski-warranty-page
.ski-warranty-section:not(.ski-warranty-section--dark) h3,

.ski-warranty-page
.ski-warranty-process h2,

.ski-warranty-page
.ski-warranty-process h3,

.ski-warranty-page
.ski-warranty-important h2 {
    color: var(--sw-text) !important;
}

.ski-warranty-page
.ski-warranty-intro p,

.ski-warranty-page
.ski-warranty-section:not(.ski-warranty-section--dark) p,

.ski-warranty-page
.ski-warranty-process p,

.ski-warranty-page
.ski-warranty-important p {
    color: var(--sw-text-soft) !important;
}

.ski-warranty-page
.ski-warranty-section--dark h2,

.ski-warranty-page
.ski-warranty-section--dark h3,

.ski-warranty-page
.ski-warranty-result h2,

.ski-warranty-page
.ski-warranty-result h3,

.ski-warranty-page
.ski-warranty-hero h1 {
    color: var(--sw-white) !important;
}


/* =========================================================
   ПЛАНШЕТЫ
   ========================================================= */

@media (max-width: 1024px) {

    .ski-warranty-page {
        padding-right: 16px;
        padding-left: 16px;
    }

    .ski-warranty-hero {
        min-height: 540px;
        padding: 62px 48px;
    }

    .ski-warranty-intro {
        grid-template-columns: 0.5fr 1.5fr;
        gap: 38px;
        padding: 52px 44px;
    }

    .ski-warranty-section,
    .ski-warranty-process,
    .ski-warranty-result {
        padding: 54px 44px;
    }

    .ski-warranty-result {
        gap: 42px;
    }

}


/* =========================================================
   НЕБОЛЬШИЕ ПЛАНШЕТЫ
   ========================================================= */

@media (max-width: 850px) {

    .ski-warranty-hero {
        min-height: 500px;
    }

    .ski-warranty-intro,
    .ski-warranty-result {
        grid-template-columns: 1fr;
    }

    .ski-warranty-intro {
        gap: 24px;
    }

    .ski-warranty-grid,
    .ski-warranty-photo-grid {
        grid-template-columns: 1fr;
    }

    .ski-warranty-exclusions {
        grid-template-columns: 1fr;
    }

    .ski-warranty-lead {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .ski-warranty-card {
        min-height: 250px;
    }

    .ski-warranty-photo-card {
        min-height: 300px;
    }

}


/* =========================================================
   МОБИЛЬНЫЕ УСТРОЙСТВА
   ========================================================= */

@media (max-width: 640px) {

    .ski-warranty-page {
        padding: 10px 10px 60px;
    }

    .ski-warranty-hero {
        min-height: 490px;
        margin-bottom: 18px;
        padding: 38px 24px;

        border-radius: 22px;
    }

    .ski-warranty-hero::before {
        right: -45px;
    }

    .ski-warranty-hero::after {
        right: 65px;
    }

    .ski-warranty-hero__eyebrow {
        margin-bottom: 22px;
        font-size: 9px;
    }

    .ski-warranty-hero__eyebrow::before {
        width: 30px;
    }

    .ski-warranty-hero h1 {
        margin-bottom: 22px;
        font-size: clamp(48px, 17vw, 68px);
        line-height: 0.96;
    }

    .ski-warranty-hero p {
        font-size: 15px;
        line-height: 1.68;
    }

    .ski-warranty-intro,
    .ski-warranty-section,
    .ski-warranty-process,
    .ski-warranty-result {
        margin-bottom: 18px;
        padding: 32px 24px;

        border-radius: 21px;
    }

    .ski-warranty-intro {
        gap: 22px;
    }

    .ski-warranty-intro__content h2 {
        margin-bottom: 18px;
        font-size: 34px;
    }

    .ski-warranty-intro__content p {
        font-size: 15px;
    }

    .ski-warranty-section__heading {
        grid-template-columns: 1fr;
        gap: 17px;

        margin-bottom: 32px;
    }

    .ski-warranty-section__number {
        width: 46px;
        height: 46px;
    }

    .ski-warranty-section__heading h2 {
        margin-top: 7px;
        font-size: 35px;
    }

    .ski-warranty-grid,
    .ski-warranty-photo-grid {
        gap: 13px;
    }

    .ski-warranty-card,
    .ski-warranty-photo-card {
        min-height: auto;
        padding: 25px;

        border-radius: 18px;
    }

    .ski-warranty-card__icon {
        margin-bottom: 42px;
    }

    .ski-warranty-card h3,
    .ski-warranty-photo-card h3 {
        font-size: 23px;
    }

    .ski-warranty-photo-card__top {
        margin-bottom: 42px;
    }

    .ski-warranty-exclusions__item {
        grid-template-columns: 35px minmax(0, 1fr);
        gap: 12px;

        padding: 23px 0;
    }

    .ski-warranty-lead {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .ski-warranty-process__heading {
        margin-bottom: 35px;
    }

    .ski-warranty-process__heading h2 {
        font-size: 37px;
    }

    .ski-warranty-process__step {
        grid-template-columns: 35px minmax(0, 1fr);
        gap: 12px;

        padding: 25px 0;
    }

    .ski-warranty-process__step:hover {
        padding-left: 0;
    }

    .ski-warranty-process__step h3 {
        font-size: 20px;
    }

    .ski-warranty-result {
        gap: 34px;
    }

    .ski-warranty-result__content h2 {
        font-size: 36px;
    }

    .ski-warranty-result__option {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 12px;
    }

    .ski-warranty-important {
        grid-template-columns: 1fr;
        gap: 20px;

        padding: 28px 24px;

        border-radius: 19px;
    }

    .ski-warranty-important__icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

}


/* =========================================================
   ОЧЕНЬ МАЛЕНЬКИЕ ЭКРАНЫ
   ========================================================= */

@media (max-width: 380px) {

    .ski-warranty-hero {
        padding-right: 20px;
        padding-left: 20px;
    }

    .ski-warranty-intro,
    .ski-warranty-section,
    .ski-warranty-process,
    .ski-warranty-result {
        padding-right: 20px;
        padding-left: 20px;
    }

    .ski-warranty-card,
    .ski-warranty-photo-card {
        padding: 22px;
    }

}
/* =========================================================
   КОНТАКТЫ ДЛЯ ГАРАНТИЙНОГО ОБРАЩЕНИЯ
   ========================================================= */

.ski-warranty-contacts {
    position: relative;
    overflow: hidden;

    margin-bottom: 28px;
    padding: 68px 58px;

    border: 1px solid var(--sw-line);
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 94% 5%,
            rgba(185, 167, 121, 0.15),
            transparent 28%
        ),
        var(--sw-paper);

    color: var(--sw-text) !important;
}

.ski-warranty-contacts::after {
    content: "";
    position: absolute;
    top: -190px;
    right: -170px;

    width: 470px;
    height: 470px;

    border: 1px solid rgba(185, 167, 121, 0.17);
    border-radius: 50%;

    pointer-events: none;
}

.ski-warranty-contacts__header {
    position: relative;
    z-index: 2;

    max-width: 820px;
    margin-bottom: 48px;
}

.ski-warranty-contacts__header h2 {
    margin: 11px 0 24px;

    color: var(--sw-text) !important;
    font-size: clamp(40px, 5vw, 66px);
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 1;
}

.ski-warranty-contacts__header p {
    max-width: 760px;
    margin: 0 0 14px;

    color: var(--sw-text-soft) !important;
    font-size: 15px;
    line-height: 1.78;
}

.ski-warranty-contacts__header p:last-child {
    margin-bottom: 0;
}


/* Сетка карточек */

.ski-warranty-contacts__grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}


/* Первые три карточки */

.ski-warranty-contact-card:nth-child(1),
.ski-warranty-contact-card:nth-child(2),
.ski-warranty-contact-card:nth-child(3) {
    grid-column: span 2;
}


/* Последние две карточки */

.ski-warranty-contact-card:nth-child(4),
.ski-warranty-contact-card:nth-child(5) {
    grid-column: span 3;
}


/* Карточка */

.ski-warranty-contact-card {
    position: relative;
    display: flex;
    min-height: 300px;
    flex-direction: column;
    overflow: hidden;

    padding: 30px;

    border: 1px solid var(--sw-line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);

    color: var(--sw-text) !important;
    text-decoration: none !important;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background-color 0.35s ease,
        box-shadow 0.35s ease;
}

.ski-warranty-contact-card::after {
    content: "";
    position: absolute;
    right: -75px;
    bottom: -95px;

    width: 185px;
    height: 185px;

    border: 1px solid rgba(185, 167, 121, 0.22);
    border-radius: 50%;

    transition:
        transform 0.5s ease,
        border-color 0.35s ease;
}

.ski-warranty-contact-card:hover {
    z-index: 3;
    transform: translateY(-6px);

    border-color: rgba(185, 167, 121, 0.7);
    background: var(--sw-white);

    color: var(--sw-text) !important;
    text-decoration: none !important;

    box-shadow: 0 24px 55px rgba(11, 13, 12, 0.1);
}

.ski-warranty-contact-card:hover::after {
    transform: scale(1.08);
    border-color: rgba(185, 167, 121, 0.4);
}

.ski-warranty-contact-card:focus-visible {
    outline: 2px solid var(--sw-gold);
    outline-offset: 4px;
}


/* Иконка */

.ski-warranty-contact-card__icon {
    position: relative;
    z-index: 2;

    display: flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;

    margin-bottom: 56px;

    border-radius: 50%;
    background: var(--sw-dark);
}

.ski-warranty-contact-card__icon svg {
    width: 23px;
    height: 23px;

    fill: var(--sw-white);
}

.ski-warranty-contact-card__icon--max svg {
    width: 25px;
    height: 25px;
}


/* Текст карточки */

.ski-warranty-contact-card__content {
    position: relative;
    z-index: 2;

    display: flex;
    height: 100%;
    flex-direction: column;
}

.ski-warranty-contact-card__title {
    display: block;
    margin-bottom: 14px;

    color: var(--sw-text) !important;
    font-size: 25px;
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.ski-warranty-contact-card__text {
    display: block;
    max-width: 430px;
    margin-bottom: 30px;

    color: var(--sw-text-soft) !important;
    font-size: 14px;
    line-height: 1.7;
}

.ski-warranty-contact-card__action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    margin-top: auto;
    padding-top: 21px;

    border-top: 1px solid var(--sw-line);

    color: var(--sw-text) !important;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

.ski-warranty-contact-card__action span {
    display: inline-block;

    font-size: 18px;
    font-weight: 400;

    transition: transform 0.3s ease;
}

.ski-warranty-contact-card:hover
.ski-warranty-contact-card__action span {
    transform: translateX(5px);
}


/* Нижняя подпись */

.ski-warranty-contacts__footer {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 22px;
    align-items: center;

    margin-top: 38px;
    padding-top: 32px;

    border-top: 1px solid var(--sw-line);
}

.ski-warranty-contacts__shield {
    display: flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(185, 167, 121, 0.5);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
}

.ski-warranty-contacts__shield svg {
    width: 23px;
    height: 23px;

    fill: var(--sw-text);
}

.ski-warranty-contacts__footer p {
    max-width: 890px;
    margin: 0;

    color: var(--sw-text-soft) !important;
    font-size: 14px;
    line-height: 1.72;
}


/* =========================================================
   АДАПТИВ
   ========================================================= */

@media (max-width: 1050px) {

    .ski-warranty-contacts__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ski-warranty-contact-card:nth-child(1),
    .ski-warranty-contact-card:nth-child(2),
    .ski-warranty-contact-card:nth-child(3),
    .ski-warranty-contact-card:nth-child(4),
    .ski-warranty-contact-card:nth-child(5) {
        grid-column: auto;
    }

    .ski-warranty-contact-card:last-child {
        grid-column: 1 / -1;
    }

}

@media (max-width: 850px) {

    .ski-warranty-contacts {
        padding: 54px 44px;
    }

}

@media (max-width: 640px) {

    .ski-warranty-contacts {
        margin-bottom: 18px;
        padding: 32px 24px;

        border-radius: 21px;
    }

    .ski-warranty-contacts__header {
        margin-bottom: 34px;
    }

    .ski-warranty-contacts__header h2 {
        font-size: 38px;
    }

    .ski-warranty-contacts__grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .ski-warranty-contact-card:last-child {
        grid-column: auto;
    }

    .ski-warranty-contact-card {
        min-height: 265px;
        padding: 25px;

        border-radius: 18px;
    }

    .ski-warranty-contact-card__icon {
        margin-bottom: 42px;
    }

    .ski-warranty-contact-card__title {
        font-size: 23px;
    }

    .ski-warranty-contacts__footer {
        grid-template-columns: 1fr;
        gap: 17px;

        margin-top: 30px;
        padding-top: 27px;
    }

}