@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
    --blue: #0878df;
    --blue-dark: #045fb6;
    --blue-light: #eaf5ff;
    --navy: #102238;
    --text: #172033;
    --muted: #667085;
    --line: #e4eaf0;
    --gray: #f5f9fc;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    background: var(--white);
    font-family: "Manrope", Arial, sans-serif;
    line-height: 1.55;
}

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

.container {
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto;
}

.header {
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.header__inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.brand {
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 11px;
}

.brand__mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--blue);
    border-radius: 7px;
    font-size: 20px;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 15px;
}

.brand small {
    color: var(--muted);
    font-size: 11px;
}

.nav {
    display: flex;
    gap: 24px;
    color: #455166;
    font-size: 13px;
    font-weight: 600;
}

.nav a:hover {
    color: var(--blue);
}

.header__phone {
    color: var(--blue);
    font-size: 16px;
    font-weight: 800;
}

.hero {
    padding: 64px 0 70px;
    background: linear-gradient(180deg, #f4faff 0%, #ffffff 100%);
    border-bottom: 1px solid var(--line);
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 455px;
    align-items: center;
    gap: 58px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.eyebrow--light {
    color: #a9d8ff;
}

h1,
h2,
p {
    margin-top: 0;
}

h1 {
    max-width: 660px;
    margin-bottom: 21px;
    font-size: clamp(42px, 5vw, 63px);
    line-height: 1.06;
    letter-spacing: -0.045em;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(31px, 4vw, 43px);
    line-height: 1.14;
    letter-spacing: -0.035em;
}

.hero__lead {
    max-width: 650px;
    margin-bottom: 25px;
    color: var(--muted);
    font-size: 17px;
}

.hero__points {
    display: grid;
    gap: 9px;
    margin-bottom: 27px;
}

.hero__points span {
    position: relative;
    padding-left: 23px;
    font-size: 14px;
}

.hero__points span::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 800;
}

.hero__number {
    display: block;
    width: fit-content;
    margin-bottom: 22px;
    color: var(--blue);
    font-size: 27px;
    font-weight: 800;
}

.hero__actions {
    display: flex;
    gap: 12px;
}

.button {
    min-height: 50px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--blue);
    border: 1px solid var(--blue);
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
}

.button:hover {
    background: var(--blue-dark);
}

.button--secondary {
    color: var(--text);
    background: var(--white);
    border-color: var(--line);
}

.button--secondary:hover {
    background: #f8fafc;
}

.hero__photo {
    position: relative;
    overflow: hidden;
    background: #e6edf3;
    border-radius: 10px;
}

.hero__photo img {
    width: 100%;
    display: block;
}

.hero__photo-text {
    position: absolute;
    left: 16px;
    bottom: 16px;
    padding: 11px 14px;
    color: var(--white);
    background: rgba(15, 32, 50, 0.8);
    border-radius: 6px;
}

.hero__photo-text strong,
.hero__photo-text span {
    display: block;
}

.hero__photo-text strong {
    font-size: 15px;
}

.hero__photo-text span {
    color: #dbe8f3;
    font-size: 11px;
}

.advantages {
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.advantages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.advantages__grid div {
    min-height: 112px;
    padding: 25px 24px;
    border-right: 1px solid var(--line);
}

.advantages__grid div:first-child {
    border-left: 1px solid var(--line);
}

.advantages strong,
.advantages span {
    display: block;
}

.advantages strong {
    margin-bottom: 5px;
    font-size: 15px;
}

.advantages span {
    color: var(--muted);
    font-size: 12px;
}

.section {
    padding: 82px 0;
}

.section--gray {
    background: var(--gray);
}

.section__top {
    margin-bottom: 37px;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 60px;
    align-items: end;
}

.section__top > p {
    margin-bottom: 0;
    color: var(--muted);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--line);
}

.service-row {
    min-height: 66px;
    padding: 0 18px;
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    border-bottom: 1px solid var(--line);
}

.service-row:nth-child(odd) {
    border-right: 1px solid var(--line);
}

.service-row span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
}

.service-row strong {
    font-size: 14px;
}

.brands {
    padding: 40px 0;
    color: var(--white);
    background: var(--navy);
}

.brands p {
    margin-bottom: 23px;
    color: #9fb5ca;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brands__list {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    align-items: center;
    gap: 16px;
}

.brands__list span {
    text-align: center;
    font-size: 15px;
    font-weight: 800;
}

.price-list {
    background: var(--white);
    border: 1px solid var(--line);
}

.price-row {
    min-height: 58px;
    padding: 0 18px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid var(--line);
}

.price-row:last-child {
    border-bottom: 0;
}

.price-row span {
    font-size: 14px;
}

.price-row strong {
    color: var(--blue);
    font-size: 14px;
    white-space: nowrap;
}

.price-note {
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.process {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 70px;
}

.process__steps {
    display: grid;
    gap: 24px;
}

.process__steps div {
    position: relative;
    padding: 0 0 23px 52px;
    border-bottom: 1px solid var(--line);
}

.process__steps span {
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--blue);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
}

.process__steps strong {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
}

.process__steps p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.contact {
    padding: 58px 0;
    color: var(--white);
    background: var(--blue);
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 50px;
}

.contact p {
    margin-bottom: 0;
    color: #deefff;
}

.contact__right {
    min-width: 315px;
}

.contact__right a,
.contact__right span {
    display: block;
}

.contact__right a {
    margin-bottom: 4px;
    font-size: 28px;
    font-weight: 800;
}

.contact__right span {
    color: #d4ebff;
    font-size: 12px;
}

.footer {
    padding: 28px 0 80px;
    color: var(--muted);
    background: #f5f7f9;
    font-size: 12px;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer p {
    margin: 0;
}

.mobile-call {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 50;
    min-height: 54px;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--blue);
    border-radius: 7px;
    font-weight: 700;
}

@media (max-width: 950px) {
    .nav {
        display: none;
    }

    .hero__grid {
        grid-template-columns: 1fr 0.85fr;
        gap: 38px;
    }

    .brands__list {
        grid-template-columns: repeat(4, 1fr);
        row-gap: 22px;
    }
}

@media (max-width: 780px) {
    .hero__grid,
    .section__top,
    .process,
    .contact__inner {
        grid-template-columns: 1fr;
    }

    .hero__photo {
        max-width: 600px;
    }

    .hero__photo {
        order: 2;
    }

    .contact__right {
        min-width: 0;
    }
}

@media (max-width: 600px) {
    .container {
        width: min(100% - 28px, 1120px);
    }

    .header__inner {
        min-height: 66px;
    }

    .header__phone {
        display: none;
    }

    .hero {
        padding: 35px 0 50px;
    }

    h1 {
        font-size: 40px;
    }

    .hero__lead {
        font-size: 15px;
    }

    .hero__actions {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .hero__number {
        font-size: 23px;
    }

    .advantages__grid,
    .services-list,
    .brands__list {
        grid-template-columns: 1fr;
    }

    .advantages__grid div,
    .advantages__grid div:first-child,
    .service-row:nth-child(odd) {
        border-left: 0;
        border-right: 0;
    }

    .brands__list {
        gap: 16px;
    }

    .section {
        padding: 62px 0;
    }

    .price-row {
        padding: 12px 14px;
    }

    .price-row span,
    .price-row strong {
        font-size: 12px;
    }

    .contact {
        padding: 44px 0;
    }

    .contact__right a {
        font-size: 23px;
    }

    .footer__inner {
        flex-direction: column;
    }

    .mobile-call {
        display: flex;
    }
}