:root {
    --bg: #f4f6fc;
    --surface: #ffffff;
    --surface-soft: #f7f9ff;
    --text: #1b2336;
    --muted: #667188;
    --primary: #2d8cf4;
    --primary-dark: #1f76d7;
    --border: #dce3ef;
    --radius: 16px;
    --shadow-soft: 0 10px 24px rgba(23, 41, 74, 0.08);
    --shadow-md: 0 16px 36px rgba(23, 41, 74, 0.12);
    --section-space: clamp(44px, 5vw, 64px);
    --title-size: clamp(1.7rem, 3vw, 2.7rem);
    --title-line: 1.12;
    --lead-size: 1.04rem;
    --lead-line: 1.46;
    --card-pad: 18px;
}

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

html {
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    font-family: "Manrope", "Segoe UI", Tahoma, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.5;
    font-size: 16px;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1250px, 92%);
    margin: 0 auto;
}

h1,
h2,
h3 {
    margin-top: 0;
    line-height: 1.2;
    font-family: "Montserrat", "Manrope", sans-serif;
    letter-spacing: 0.005em;
}

h2 {
    font-size: var(--title-size);
    line-height: var(--title-line);
    margin-bottom: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border: 1px solid var(--primary);
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-family: "Montserrat", "Manrope", sans-serif;

    &:hover {
        background: var(--primary-dark);
    }

    &.btn--small {
        min-height: 40px;
        padding: 0 18px;
        font-size: 0.9rem;
    }
}

.hero {
    position: relative;
    min-height: 70svh;
    background: linear-gradient(90deg, #000000b8, #0058f900), url(assets/hero-bg.webp) center / cover no-repeat;
    overflow: hidden;
    display: flex;
    flex-direction: column;

    /*&:after{
        position: absolute;
        content: "";
        height: 40px;
        width: 35%;
        border-radius: 40px 0 0 0;
        corner-shape: bevel;
        background: #eaf1ff;
        z-index: 9;
        bottom: 0;
        right: 0;
    }*/

    .hero__overlay {
        position: absolute;
        inset: 0;
        background: rgba(6, 17, 50, 0.55);
        z-index: 1;
    }

    .hero__sparks {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        pointer-events: none;
        opacity: 0.9;
        mix-blend-mode: screen;
        filter: saturate(1.18) drop-shadow(0 0 8px rgba(255, 127, 32, 0.45));
    }

    .hero__content {
        position: relative;
        z-index: 3;
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /*align-items: center;
        text-align: center;*/
    }
    .hero__logo{
        float: left;
        height: 50px;
        margin-bottom: 70px;
    }

    .hero__top-cta {
        width: clamp(220px, 26vw, 280px);
        min-height: 56px;
        padding: 0 28px;
        margin-bottom: 26px;
        font-size: 0.95rem;
    }

    h1 {
        margin: 0;
        color: #fff;
        font-size: clamp(1rem, 5vw, 3rem);
        font-weight: 800;
        text-transform: uppercase;
    }

    .hero__text {
        color: rgba(255, 255, 255, 0.85);
        font-size: clamp(0.7rem, 1.6vw, 1.15rem);
        margin: 15px 0 70px;
        max-width: 760px;
    }

    .hero__actions {
        display: inline-flex;
        align-items: center;
        gap: 12px;
    }

    /*.hero-pill {
        background: #fff;
        color: #1f2b44;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.72);
        width: clamp(220px, 26vw, 280px);
        min-height: 56px;
        padding: 0 8px 0 28px;
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        font-weight: 600;
    }*/
    .hero-pill {
        background: #2d8cf4;
        color: #ffffff;
        border: 1px solid rgb(32 135 250);
        padding: 0 30px;
        min-height: 56px;
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        font-weight: 600;

        &.hero-pill__light{
            background: transparent;
            border: 1px solid white;
        }
    }

    .hero-pill__text {
        flex: 1;
        text-align: center;
    }

    .hero-play {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.6);
        background: linear-gradient(180deg, #3da2ff, #1e7ee0);
        position: relative;
        flex-shrink: 0;

        &::before {
            content: "";
            position: absolute;
            left: 16px;
            top: 12px;
            width: 0;
            height: 0;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-left: 11px solid #fff;
        }
    }
}

.hero-header {
    position: relative;
    z-index: 30;
    padding-top: 0;
    transition: padding 0.2s ease;
    opacity: 0;
    display: none;
    box-shadow: 0 10px 24px rgba(16, 29, 53, 0.16);
    background: white;

    &.hero-header--pinned {
        display: flex;
        position: fixed;
        top: -96px;
        left: 0px;
        right: 0px;
        will-change: top, opacity;
        opacity: 0;
        pointer-events: none;
        transition: top 0.38s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.26s ease, padding 0.2s ease;
    }

    &.hero-header--pinned.hero-header--visible {
        top: 0;
        opacity: 1;
        pointer-events: auto;
        background: white;
    }

    .hero-header__bar {
        background: #fff;
        /*border-radius: 18px;
        corner-shape: bevel;*/
        min-height: 64px;
        display: flex;
        align-items: center;
        gap: 22px;
        padding: 10px 12px 10px 20px;
        position: relative;
        transition: box-shadow 0.2s ease, border-color 0.2s ease;
    }

    &.hero-header--scrolled {
        .hero-header__bar {
            background: #fff;
        }
    }

    .hero-header__menu {
        margin-left: 0;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 22px;
    }

    & .hero-logo {
        font-size: 1.6rem;
        font-weight: 800;
        letter-spacing: 1px;
        color: #121b32;
        font-family: "Montserrat", "Manrope", sans-serif;
        align-items: center;
        display: flex;

        img {
            height: 40px;
        }
    }

    & .hero-nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        gap: 28px;
        color: #293348;
        font-size: 0.93rem;
        font-weight: 600;
        font-family: "Montserrat", "Manrope", sans-serif;
    }

    .hero-header__cta {
        margin-left: auto;
        white-space: nowrap;
    }

    .hero-menu-toggle {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        border: none;
        background: #fff;
        display: none;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        padding: 0;
        cursor: pointer;

        span {
            width: 18px;
            height: 2px;
            border-radius: 99px;
            background: #1e2d48;
            transition: transform 0.2s ease, opacity 0.2s ease;
        }

        &.is-open {
            span:nth-child(1) {
                transform: translateY(7px) rotate(45deg);
            }

            span:nth-child(2) {
                opacity: 0;
            }

            span:nth-child(3) {
                transform: translateY(-7px) rotate(-45deg);
            }
        }
    }
}

/*.hero-header-spacer {
    display: block;
    height: 0;
    padding: 0;
    margin: 0;
}*/

.stats {
    position: relative;
    overflow: hidden;
    /*background: radial-gradient(circle at 8% 0%, #ffffff 0%, #f2f6ff 42%, #eaf1ff 100%);*/
    background: #eaf1ff;

    z-index: 9;

    .stats__layout {
        display: grid;
        grid-template-columns: minmax(0, 2.45fr) minmax(240px, 0.78fr);
        gap: 20px;
        align-items: stretch;
    }

    .stats__title {
        font-size: var(--title-size);
        max-width: 760px;
        letter-spacing: 0.01em;
        margin-bottom: 8px;
        text-transform: uppercase;

        span {
            color: #f39a1c;
        }
    }

    .stats__subtitle {
        margin: 0 0 22px;
        font-weight: 700;
        color: #3a4765;
        font-size: var(--lead-size);
        line-height: var(--lead-line);
    }

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

    .stats-card {
        background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
        /*border-radius: 20px;
        corner-shape: bevel;*/
        padding: 18px;
        min-height: 100%;
        box-shadow: var(--shadow-soft);

        .stats-card__head {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            gap: 12px;
            margin-bottom: 12px;
        }

        h3 {
            font-size: 1.2rem;
            letter-spacing: 0.02em;
            margin: 0;
        }

        .stats-card__count {
            display: inline-flex;
            align-items: baseline;
            gap: 7px;
            margin: 0;
            font-size: 0.92rem;
            color: #425372;
            white-space: nowrap;

            strong {
                color: #f39a1c;
                font-size: 1.65rem;
                line-height: 1;
            }
        }

        &:last-child,
        &:nth-child(2) {
            .stats-group {
                padding-top: 2px;
            }
        }
    }

    .stats-card--wide {
        grid-column: 1 / -1;
        background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    }

    .stats-groups {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stats-groups--tec {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    .stats-group {
        h4 {
            display: inline-flex;
            margin: 0 0 8px;
            padding: 5px 10px;
            border-radius: 0;
            background: #eaf2ff;
            color: #325b98;
            font-size: 0.7rem;
            line-height: 1.25;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }
    }

    .stats-card ul {
        margin: 0;
        padding-left: 0;
        list-style: none;
        color: #233253;
        font-size: 0.92rem;
        line-height: 1.43;
    }

    .stats-card li {
        position: relative;
        padding-left: 13px;
    }

    .stats-card li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0.62em;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #f39a1c;
    }

    .stats-card li + li {
        margin-top: 7px;
    }

    .stats-side {
        position: relative;
        overflow: hidden;
        background: linear-gradient(rgb(10 22 44 / 79%), rgb(10 22 44 / 96%)), url(assets/stats-side-bg.webp) center / cover no-repeat;
        /*border-radius: 20px;
        corner-shape: bevel;*/
        padding: 24px 20px;
        display: flex;
        flex-flow: column;
        height: 100%;
        justify-content: space-around;
        gap: 0;
        box-shadow: 0 20px 42px rgba(10, 18, 34, 0.38);

        .stats-side__item {
            padding: 6px 8px;

            h3 {
                margin: 0 0 8px;
                font-size: clamp(1.2rem, 1.8vw, 1.3rem);
                line-height: 1.15;
                letter-spacing: 0.01em;
                color: #ffffff;
            }

            p {
                margin: 0;
                color: rgba(235, 242, 255, 0.94);
                font-size: 0.95rem;
                line-height: 1.4;
            }

            strong {
                color: #f39a1c;
                font-size: 1.5rem;
                line-height: 1;
            }
        }

        .stats-side__item + .stats-side__item {
            padding-top: 24px;
        }

        .stats-side__icon {
            width: 52px;
            height: 52px;
            margin: 0 0 10px 0;
            color: #f39a1c;
            display: flex;
            align-items: center;
            display: none;

            img {
                width: 100%;
                height: 100%;
                display: block;
            }
        }
    }
}

.catalog-info {
    background: radial-gradient(circle at 10% -10%, #ffffff 0%, #f4f7ff 45%, #edf2fc 100%);

    .catalog-info__title {
        text-transform: uppercase;
        margin-bottom: 10px;
        font-size: var(--title-size);
        max-width: 920px;
        letter-spacing: 0.01em;
        line-height: var(--title-line);
    }

    .catalog-info__hero {
        position: relative;
        overflow: hidden;
        /*background: linear-gradient(130deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 250, 255, 0.92) 65%, rgba(239, 246, 255, 0.94) 100%);*/
        /*border-radius: 26px;
        padding: 36px 38px 30px;*/
        padding: 36px 0px 30px;
        margin-bottom: 18px;
        /*box-shadow: var(--shadow-md);*/

        /*&::after {
          content: "";
          position: absolute;
          right: -120px;
          bottom: -90px;
          width: 340px;
          height: 340px;
          border-radius: 50%;
          background: radial-gradient(circle, rgba(45, 140, 244, 0.18) 0%, rgba(45, 140, 244, 0) 70%);
          pointer-events: none;
        }*/
    }

    .catalog-info__eyebrow {
        display: inline-flex;
        margin: 0 0 10px;
        padding: 6px 12px;
        background: #e9f2ff;
        color: #1f5da8;
        font-weight: 700;
        font-size: 0.82rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .catalog-info__subtitle {
        margin: 0;
        font-size: var(--lead-size);
        line-height: var(--lead-line);
        color: #354668;
        max-width: 760px;
    }

    .catalog-info__grid {
        display: grid;
        grid-template-columns: repeat(12, minmax(0, 1fr));
        gap: 16px;
        margin-bottom: 16px;
        align-items: start;
    }

    .catalog-type {
        background: linear-gradient(165deg, #ffffff 0%, #f7fbff 100%);
        /*border-radius: 20px;
        corner-shape: bevel;*/
        padding: var(--card-pad);
        box-shadow: var(--shadow-soft);
        height: 100%;

        h3 {
            margin-bottom: 10px;
            font-size: 1.14rem;
            letter-spacing: 0.01em;
            color: #1f3150;
        }

        .catalog-type__photo {
            width: 100%;
            aspect-ratio: 16 / 10;
            object-fit: cover;
            /*border-radius: 14px;
            corner-shape: bevel;*/
            margin-bottom: 14px;
            box-shadow: 0 10px 20px rgba(16, 30, 57, 0.18);
        }

        ul {
            margin: 0;
            padding-left: 0;
            list-style: none;
        }

        li {
            position: relative;
            padding-left: 14px;
            color: #314261;
            line-height: 1.42;
            font-size: 0.96rem;

            &::before {
                content: "";
                position: absolute;
                left: 0;
                top: 0.6em;
                width: 6px;
                height: 6px;
                border-radius: 50%;
                background: #f39a1c;
            }
        }

        li + li {
            margin-top: 8px;
        }

        &:nth-child(1),
        &:nth-child(2),
        &:nth-child(3) {
            grid-column: span 4;
        }

        &:nth-child(4) {
            grid-column: span 12;
            align-items: center;
            gap: 50px;
            ul {
                columns: 2;
                column-gap: 28px;
                max-width: 400px;
                li {
                    break-inside: avoid;
                }
            }


        }
    }

    .catalog-type--wide {
        display: grid;
        grid-template-columns: 370px 1fr;
        gap: 18px;
        align-items: start;

        .catalog-type__photo {
            margin-bottom: 0;
            height: 140px;
            width: 100%;
            aspect-ratio: auto;
        }

        .catalog-type__body h3 {
            margin-top: 2px;
        }
    }

    .catalog-info__notes {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .catalog-note {
        position: relative;
        overflow: hidden;
        background: linear-gradient(145deg, #0f274d 0%, #1f4788 100%);
        /*border-radius: 20px;
        corner-shape: bevel;*/
        padding: var(--card-pad);
        box-shadow: 0 16px 32px rgba(16, 33, 63, 0.3);

        /*&::after {
            content: "";
            position: absolute;
            right: -24px;
            top: -24px;
            width: 92px;
            height: 92px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.24);
        }*/

        h3 {
            margin-bottom: 8px;
            font-size: 1.06rem;
            line-height: 1.25;
            color: #fff;
        }

        p {
            margin: 0;
            color: rgba(237, 243, 255, 0.92);
            line-height: 1.45;
            font-size: 0.97rem;
        }
    }
}

.repair {
    background: radial-gradient(circle at 14% 0%, #1e3964 0%, #102445 42%, #0b1a34 100%);
    color: #f4f8ff;

    .repair__layout {
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
        gap: 28px;
        align-items: stretch;
    }

    .repair__content {
        background: transparent;
        border-radius: 0;
        padding: 6px 4px 6px 0;
        box-shadow: none;
        border: none;
    }

    .repair__title {
        margin-bottom: 10px;
        font-size: var(--title-size);
        line-height: var(--title-line);
        text-transform: uppercase;
        max-width: 720px;
    }

    .repair__deadline {
        margin: 0 0 14px;
        font-size: 1.08rem;
        font-weight: 700;
        color: #d7e4fb;

        strong {
            color: #f39a1c;
        }
    }

    .repair__lead {
        margin: 0 0 20px;
        font-size: var(--lead-size);
        line-height: var(--lead-line);
        color: #b6c9ea;
        max-width: 760px;
    }

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

    .repair-list {
        background: rgba(255, 255, 255, 0.08);
        padding: var(--card-pad);
        box-shadow: 0 10px 24px rgba(6, 13, 29, 0.2);

        h3 {
            margin-bottom: 10px;
            font-size: 1.04rem;
            line-height: 1.2;
            color: #eef4ff;
        }

        ul {
            list-style: none;
            margin: 0;
            padding-left: 0;
        }

        li {
            position: relative;
            padding-left: 14px;
            color: #cedcf4;
            font-size: 0.95rem;

            &::before {
                content: "";
                position: absolute;
                left: 0;
                top: 0.6em;
                width: 6px;
                height: 6px;
                border-radius: 50%;
                background: #f39a1c;
            }
        }

        li + li {
            margin-top: 8px;
        }
    }

    .repair__visual {
        min-height: 100%;
        border-radius: 20px;
        padding: 0;
        background: transparent;
        display: grid;
        grid-template-columns: 1fr 0.9fr;
        grid-template-rows: 1fr 1fr;
        gap: 12px;
        box-shadow: none;
    }

    .repair-shot {
        background-size: cover;
        background-position: center;
        box-shadow: 0 14px 26px rgba(7, 14, 30, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    }

    .repair-shot--large {
        grid-row: span 2;
        background-image: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
        url("assets/repair/r1.webp");
    }

    .repair-shot--small {
        background-image: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
        url("assets/repair/r2.webp");
    }

    .repair-shot--wide {
        background-image: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
        url("assets/repair/r3.webp");
    }
}

.savings {
    background: #0f1f39;
    border-top: 1px solid #223a63;
    border-bottom: 1px solid #223a63;

    .savings__layout {
        display: grid;
        grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.4fr);
        gap: 0;
        overflow: hidden;
        box-shadow: none;
    }

    .savings__hero {
        position: relative;
        padding: clamp(28px, 4vw, 42px);
        min-height: 430px;
        display: flex;
        align-items: center;
        background: linear-gradient(rgba(10, 22, 44, 0.72), rgba(10, 22, 44, 0.72)),
        url("assets/savings-hero-bg.webp") center / cover no-repeat;

        h2 {
            margin: 0;
            color: #fff;
            font-size: clamp(1.45rem, 2.2vw, 2.1rem);
            line-height: 1.14;
            text-transform: uppercase;
            max-width: 460px;
        }
    }

    .savings__content {
        background: #122745;
        padding: clamp(24px, 3.2vw, 38px);
        display: flex;
        flex-direction: column;
        gap: 26px;
    }

    .savings__top {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 18px;
        padding-bottom: 20px;
        border-bottom: 1px solid #26446f;

        h3 {
            margin-bottom: 12px;
            font-size: clamp(1.2rem, 1.8vw, 1.6rem);
            line-height: 1.2;
            color: #f3f7ff;
        }

        p {
            margin: 0;
            font-size: 1rem;
            line-height: 1.45;
            color: #bcd0ee;
            max-width: 520px;

            strong {
                color: #e48a16;
                font-size: 1.55rem;
                line-height: 1;
            }
        }
    }

    .savings__brands {
        display: flex;
        flex-direction: column;
        gap: 12px;

        article {
            background: #19345c;
            padding: 12px 14px;
            box-shadow: none;
        }

        h4 {
            margin: 0 0 6px;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.03em;
            color: #d8e7ff;
        }

        p {
            margin: 0;
            color: #f3f8ff;
            font-weight: 600;
            font-size: 0.95rem;
            line-height: 1.4;
        }
    }

    .savings__bottom {
        h3 {
            margin-bottom: 14px;
            font-size: clamp(1.2rem, 1.8vw, 1.6rem);
            line-height: 1.2;
            max-width: 980px;
            color: #f3f7ff;
        }
    }

    .savings__compare {
        display: grid;
        grid-template-columns: 2fr auto 1fr;
        gap: 14px;
        align-items: center;

        &::before {
            content: "→";
            grid-column: 2;
            grid-row: 1;
            align-self: center;
            justify-self: center;
            font-size: 1.25rem;
            color: #e18b1d;
            font-weight: 800;
            line-height: 1;
        }

        p {
            margin: 0;
            color: #d2e1f8;
            line-height: 1.45;
            font-size: 1rem;
            background: #19345c;
            padding: 14px;
            box-shadow: none;
            height: 100%;
        }

        strong {
            color: #e48a16;
            font-size: 1.55rem;
            line-height: 1;
        }
    }
}

.letters {
    background: linear-gradient(180deg, #f5f7fc 0%, #edf1f9 100%);

    .letters__title {
        margin-bottom: 10px;
        font-size: var(--title-size);
        line-height: var(--title-line);
        text-transform: uppercase;
    }

    .letters__lead {
        margin: 0 0 20px;
        max-width: 980px;
        color: #2f3d58;
        font-size: var(--lead-size);
        line-height: var(--lead-line);
    }

    .letters__grid {
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 14px;
    }

    .letter-card {
        background: linear-gradient(180deg, #f8faff 0%, #f1f4fb 100%);
        padding: 12px;
        box-shadow: var(--shadow-soft);

        h3 {
            margin: 8px 0 0;
            font-size: 0.92rem;
            text-align: center;
            color: #202d45;
            font-weight: 600;
            min-height: 2.4em;
        }
    }

    .letter-card__paper {
        display: block;
        text-decoration: none;
        color: inherit;
        background: #eef2f9;
        aspect-ratio: 0.72;
        position: relative;
        overflow: hidden;
        cursor: zoom-in;
        transition: transform 0.25s ease, box-shadow 0.25s ease;

        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            background: #fff;
            display: block;
            transition: transform 0.25s ease;
        }

        &::after {
            content: "Открыть";
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            border-radius: 999px;
            padding: 8px 14px;
            font-size: 0.78rem;
            font-weight: 700;
            color: #fff;
            background: rgba(17, 32, 56, 0.7);
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        &:hover,
        &:focus-visible {
            transform: translateY(-2px);
            box-shadow: 0 14px 26px rgba(20, 35, 60, 0.22);
        }

        &:hover img,
        &:focus-visible img {
            transform: scale(1.03);
        }

        &:hover::after,
        &:focus-visible::after {
            opacity: 1;
        }
    }
}

.contact {
    background: radial-gradient(circle at 10% -10%, #ffffff 0%, #f4f7ff 45%, #edf2fc 100%);

    .contact__layout {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 24px;
        align-items: start;
    }

    .contact__intro {
        h2 {
            margin-bottom: 10px;
            font-size: var(--title-size);
            max-width: 640px;
            line-height: var(--title-line);
            text-transform: uppercase;
        }

        p {
            margin: 0 0 14px;
            max-width: 560px;
            line-height: var(--lead-line);
        }
    }

    .contact__eyebrow {
        display: inline-flex;
        margin: 0 0 10px;
        padding: 6px 12px;
        background: #e9f2ff;
        color: #1f5da8;
        font-weight: 700;
        font-size: 0.82rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .contact__benefits {
        list-style: none;
        margin: 0;
        padding-left: 0;

        li {
            position: relative;
            padding-left: 16px;
            color: #2d3f5f;
            font-size: 0.96rem;

            &::before {
                content: "";
                position: absolute;
                left: 0;
                top: 0.58em;
                width: 7px;
                height: 7px;
                border-radius: 50%;
                background: #2d8cf4;
            }
        }

        li + li {
            margin-top: 10px;
        }
    }

    .contact-form {
        background: rgba(255, 255, 255, 0.9);
        padding: 22px;
        box-shadow: var(--shadow-md);
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .field {
        display: flex;
        flex-direction: column;
        gap: 7px;

        span {
            font-size: 0.88rem;
            font-weight: 600;
            color: #2a3c5c;
        }

        input,
        textarea {
            width: 100%;
            border: 1px solid #ccd8ec;
            background: #fff;
            padding: 11px 12px;
            font: inherit;
            color: #1c2b45;
            outline: none;

            &:focus {
                border-color: #2d8cf4;
                box-shadow: 0 0 0 3px rgba(45, 140, 244, 0.16);
            }
        }

        textarea {
            resize: vertical;
            min-height: 110px;
        }
    }

    .check {
        display: flex;
        gap: 8px;
        align-items: flex-start;
        color: #3d4f70;
        font-size: 0.9rem;

        input {
            margin-top: 3px;
        }
    }

    .contact-form__submit {
        width: 100%;
        min-height: 46px;
    }
}

.section {
    padding: var(--section-space) 0;
}

.section--muted {
    background: #eef2fb;
}

.cards,
.pricing,
.faq {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.card,
.price-card,
.faq article {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
}

.steps {
    margin: 0;
    padding-left: 22px;
    max-width: 780px;

    li + li {
        margin-top: 10px;
    }
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 12px 0;
}

.price-card--accent {
    border-color: var(--primary);
}

.cta__inner {
    background: linear-gradient(135deg, #dde9ff, #f5f8ff);
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) + 2px);
    padding: 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer {
    border-top: 1px solid var(--border);
    background: #fff;

    .footer__inner {
        min-height: 64px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: var(--muted);
        font-size: 0.92rem;
    }
}

@media (max-width: 980px) {
    .hero-header {
        padding-top: 0px;

        .hero-header__bar {
            border-radius: 20px;
            min-height: 56px;
            padding: 10px 12px;
            justify-content: space-between;
            position: relative;
        }

        .hero-menu-toggle {
            display: inline-flex;
        }

        .hero-header__menu {
            position: absolute;
            top: calc(100% + 10px);
            left: -17px;
            right: -18px;
            margin-left: 0;
            flex: initial;
            display: none;
            flex-direction: column;
            align-items: stretch;
            gap: 14px;
            padding: 14px;
            /* border-radius: 16px; */
            border-top: 1px solid rgba(143, 157, 187, 0.24);
            background: #fff;
            box-shadow: 0 16px 30px rgba(16, 29, 53, 0.2);
        }

        .hero-header__menu.is-open {
            display: flex;
        }

        & .hero-nav {
            position: static;
            left: auto;
            transform: none;
            gap: 14px;
            flex-direction: column;
            align-items: flex-start;
            font-size: 0.95rem;
        }

        .hero-header__cta {
            width: 100%;
            margin-left: 0;
            justify-content: center;
        }
    }

    .hero {
        .hero__content {
            padding: 16px 0 36px;
        }
    }

    .stats {
        .stats__layout {
            grid-template-columns: 1fr;
        }

        .stats-side {
            position: static;
        }

        .stats__grid {
            grid-template-columns: 1fr;
        }

        .stats-card--wide {
            grid-column: auto;
        }

        .stats-groups--tec {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    .catalog-info {
        .catalog-info__hero {
            border-radius: 0;
            padding: 20px 0 10px;
        }

        .catalog-info__grid {
            grid-template-columns: 1fr;
        }

        .catalog-type {
            &:nth-child(1),
            &:nth-child(2),
            &:nth-child(3),
            &:nth-child(4) {
                grid-column: span 1;
            }

            &:nth-child(4) ul {
                columns: 1;
            }
        }

        .catalog-type--wide {
            grid-template-columns: 1fr;

            .catalog-type__photo {
                height: auto;
            }
        }

        .catalog-info__notes {
            grid-template-columns: 1fr;
        }
    }

    .repair {
        .repair__layout {
            grid-template-columns: 1fr;
        }

        .repair__content,
        .repair__visual {
            border-radius: 18px;
        }

        .repair__content {
            padding: 0;
        }

        .repair__lists {
            grid-template-columns: 1fr;
        }

        .repair__visual {
            min-height: 300px;
        }
    }

    .savings {
        .savings__layout {
            grid-template-columns: 1fr;
        }

        .savings__hero {
            min-height: 220px;
        }

        .savings__top {
            grid-template-columns: 1fr;
        }

        .savings__compare {
            grid-template-columns: 1fr;

            &::before {
                content: "↓";
                grid-column: 1;
                grid-row: 2;
            }

            p:first-of-type {
                grid-row: 1;
            }

            p:last-of-type {
                grid-row: 3;
            }
        }
    }

    .letters {
        .letters__grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    .contact {
        .contact__layout {
            grid-template-columns: 1fr;
        }
    }

    .cards,
    .pricing,
    .faq {
        grid-template-columns: 1fr;
    }

    .footer{

        padding: 10px 0;
        .footer__inner {
            min-height: 25px;
            flex-direction: column;
            align-items: center;
            p{
                margin: 0;
            }
        }
    }

}

@media (max-width: 640px) {
    .hero {
        min-height: 50svh;

        &:after{
            display: none;
        }
        .hero__logo{
            margin-bottom: 40px;
        }
        .hero__content {
            padding: 8px 0;
            align-items: center;
            text-align: center;
        }

        .hero__actions {
            margin-top: 40px;
        }

        .hero__top-cta,
        .hero-pill {
            width: min(184px, 70vw);
            min-height: 42px;
        }

        .hero__top-cta {
            font-size: 0.78rem;
            padding: 0 12px;
            margin-bottom: 30px;
            white-space: nowrap;
            min-height: 40px;
        }
        .hero__text{
            margin: 10px 0 10px;
        }
    }



    .hero-pill {
        padding: 0 4px 0 12px;
        gap: 8px;
        font-size: 0.78rem;
    }

    .hero-play {
        width: 30px;
        height: 30px;

        &::before {
            left: 11px;
            top: 8px;
            border-top-width: 6px;
            border-bottom-width: 6px;
            border-left-width: 8px;
        }
    }

    .hero-pill__text {
        white-space: nowrap;
    }

    .hero-header {
        .hero-header__bar {
            gap: 10px;
            padding: 9px 10px;
        }

        .hero-header__menu {
            top: calc(100% + 0px);
            padding: 12px;
        }

        & .hero-nav {
            font-size: 0.9rem;
        }
    }

    .stats {
        background: radial-gradient(circle at 8% 0%, #ffffff 0%, #f2f6ff 42%, #eaf1ff 100%);
        .stats__title {
            font-size: 1.5rem;
        }

        .stats__subtitle {
            font-size: 0.95rem;
        }

        .stats-card {
            padding: 16px;

            .stats-card__head {
                align-items: baseline;
            }

            .stats-card__count strong {
                font-size: 1.5rem;
            }
        }

        .stats-groups--tec {
            grid-template-columns: 1fr;
        }

        .stats-side {
            padding: 20px 16px;
            gap: 20px;

            .stats-side__item h3 {
                font-size: 1.3rem;
            }

            .stats-side__item strong {
                font-size: 1.75rem;
            }

            .stats-side__icon {
                width: 36px;
                height: 36px;
                img{
                    width: 100%;
                }
            }
        }
    }

    .catalog-info {
        .catalog-info__title {
            font-size: 1.5rem;
        }

        .catalog-info__subtitle {
            font-size: 1rem;
        }

        .catalog-type h3 {
            font-size: 1rem;
        }

        .catalog-note {
            padding: 16px;
        }
    }

    .repair {
        .repair__title {
            font-size: 1.5rem;
        }

        .repair__deadline {
            font-size: 1.05rem;
        }

        .repair__lead {
            font-size: 0.96rem;
        }
    }

    .savings {
        .savings__hero h2 {
            font-size: 1.5rem;
        }

        .savings__top h3,
        .savings__bottom h3 {
            font-size: 1.2rem;
        }

        .savings__top p,
        .savings__compare p {
            font-size: 0.95rem;
        }
    }

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

        .letters__lead {
            font-size: 0.96rem;
        }
    }

    .contact {
        .contact__intro h2 {
            font-size: 1.5rem;
        }

        .contact-form {
            padding: 18px;
            border-radius: 16px;
        }
    }
}
