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

/* =========================
   ПЕРЕМЕННЫЕ
   ========================= */

:root {
    --blue: #1268ff;
    --light-blue: #2c82ff;
    --dark-blue: #03143d;
    --text: #111a37;
    --gray: #68738c;
    --border: #dfe5ef;
    --light-background: #f5f8ff;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(15, 47, 116, 0.12);
}

/* =========================
   RESET / BASE
   ========================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 72px;
}

body {
    margin: 0;
    overflow-x: hidden;

    font-family: "Onest", Arial, sans-serif;
    color: var(--text);
    background: var(--white);
}

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

p {
    line-height: 1.6;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
    height: auto;
}

/* =========================
   КОНТЕЙНЕР / КНОПКИ
   ========================= */

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

.button {
    min-height: 54px;
    padding: 0 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: white;
    font-size: 15px;
    font-weight: 700;

    background: linear-gradient(135deg, var(--light-blue), var(--blue));
    border: 1px solid transparent;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(18, 104, 255, 0.28);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(18, 104, 255, 0.38);
}

.button:active {
    transform: translateY(0);
}

.button--header {
    flex-shrink: 0;
    min-height: 48px;
    height: 48px;
    margin-left: 0;
    padding: 0 24px;

    color: #fff;
    font-size: 15px;
    font-weight: 600;

    background: #005bff;
    border: none;
    border-radius: 12px;
    box-shadow: none;

    transition: background 0.2s ease;
}

.button--header:hover {
    background: #0050e6;
    transform: none;
    box-shadow: none;
}

.button--transparent {
    background: #fff;
    color: #15213d;
    border: 1px solid #d6dfed;
    box-shadow: none;
}

.button--transparent:hover {
    background: #f7faff;
    border-color: #b9c9e5;
    box-shadow: none;
}

/* =========================
   ШАПКА / ЛОГОТИП / НАВИГАЦИЯ
   ========================= */

.header {
    position: relative;
    z-index: 100;

    background: #fff;
    border-bottom: 1px solid #eef1f5;
    box-shadow: none;
}

.header__content {
    height: 80px;
    min-height: 80px;
    max-height: 80px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    column-gap: 48px;
}

.header-logo {
    display: flex;
    align-items: center;
    align-self: stretch;
    flex-shrink: 0;
    height: 100%;
    grid-column: 1;
    justify-self: start;
    text-decoration: none;
}

.header-logo img {
    display: block;
    width: auto;
    height: 44px;
    max-height: 100%;
    max-width: none;
    object-fit: contain;
}

.navigation {
    grid-column: 2;
    justify-self: center;
    margin-left: 0;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.navigation a {
    flex-shrink: 0;
    white-space: nowrap;

    color: #111827;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;

    transition: color 0.2s ease;
}

.navigation a:hover {
    color: #005bff;
}

.header__actions {
    grid-column: 3;
    justify-self: end;

    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-social {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    padding: 0;
    margin: 0;

    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: inherit;
    text-decoration: none;
}

.header-social:hover {
    background: transparent;
    transform: none;
}

.header-social:hover .header-telegram-icon {
    transform: translateY(-2px);
}

.header-telegram-icon {
    display: block;
    width: 62px;
    height: 62px;
    max-width: none;
    object-fit: contain;
    transition: transform 0.2s ease;
}

/* =========================
   HERO
   ========================= */

.hero {
    position: relative;
    padding-top: 45px;
    overflow: visible;

    color: #0b1739;

    background:
        linear-gradient(
            135deg,
            #f8fbff 0%,
            #f3f8ff 48%,
            #eef5ff 100%
        );
}

.hero::before,
.hero::after {
    display: none;
}

.hero > .container {
    position: relative;
    z-index: 1;
    overflow: visible;
}

.hero__content {
    min-height: 675px;

    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: clamp(24px, 2.2vw, 32px);
    overflow: visible;
}

.hero__information {
    padding: 12px 0 28px;
    max-width: 650px;
}

.hero__label {
    width: fit-content;
    margin-bottom: 16px;
    padding: 8px 14px;

    color: #005bff;
    font-size: 13px;

    background: rgba(0, 91, 255, 0.055);
    border: 1px solid rgba(0, 91, 255, 0.18);
    border-radius: 999px;
}

.hero__title {
    max-width: 620px;
    margin: 0;

    color: #0b1739;
    font-size: clamp(32px, 3.4vw, 48px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.hero__title span {
    color: #005bff;
}

.hero__description {
    max-width: 640px;
    margin-top: 14px;
    margin-bottom: 18px;

    color: #68738c;
    font-size: 15px;
    line-height: 1.62;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero__buttons .button {
    flex-shrink: 0;
    min-height: 54px;
    padding: 0 32px;
    font-size: 16px;
}

.hero__buttons .button:not(.button--transparent) {
    background: #005bff;
    border: none;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 91, 255, 0.16);
}

.hero__buttons .button:not(.button--transparent):hover {
    background: #0050e6;
    box-shadow: 0 12px 28px rgba(0, 91, 255, 0.2);
}

.hero__advantages {
    margin-top: 24px;
    max-width: 100%;

    display: flex;
    align-items: stretch;

    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(150, 200, 255, 0.45);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(24, 48, 95, 0.06);
    overflow: hidden;
}

.hero__advantages-item {
    flex: 1;
    min-width: 0;

    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 18px;
}

.hero__advantages-item:not(:last-child) {
    border-right: 1px solid rgba(150, 200, 255, 0.35);
}

.hero__advantages-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    margin-top: 0.45em;
    border-radius: 50%;
}

.hero__advantages-dot--blue {
    background: var(--blue);
}

.hero__advantages-dot--pink {
    background: #fc1c8b;
}

.hero__advantages-dot--violet {
    background: #7b61ff;
}

.hero__advantages-copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.hero__advantages-title {
    color: #0b1739;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.hero__advantages-caption {
    color: #68738c;
    font-size: 12px;
    line-height: 1.45;
}


.hero__visual {
    position: relative;
    min-height: 680px;
    min-width: 0;
    max-width: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: visible;
}

.hero-showcase {
    position: relative;
    width: min(108%, 850px);
    height: clamp(590px, 48vw, 700px);
    margin-left: auto;
    margin-right: 5px;
    transform: translate(-22px, -55px);
    overflow: visible;
}

.seller-scene {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: clamp(590px, 48vw, 700px);
}

.seller-scene__macbook {
    position: absolute;
    z-index: 2;
    left: 57%;
    top: 56%;
    transform: translate(-50%, -50%);

    display: block;
    width: clamp(980px, 160%, 1220px);
    max-width: none;
    height: auto;

    object-fit: contain;
    pointer-events: none;
    user-select: none;
}

.hero-product {
    position: absolute;
    z-index: 4;
    margin: 0;
    line-height: 0;
}

.hero-product img {
    --hero-scroll-rotate: 0deg;
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;

    transition:
        transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 0.35s ease;
}

.hero-product:hover img {
    transform: translateY(-6px) scale(1.035) rotate(var(--hero-scroll-rotate, 0deg));
    filter: drop-shadow(0 14px 22px rgba(12, 36, 88, 0.16));
}

.hero-product--fan {
    top: 12%;
    left: -8%;
    width: 290px;
    z-index: 6;
}


.hero-product--headphones {
    top: 7%;
    right: -25%;
    width: 162px;
    z-index: 7;
}

.hero-product--controller {
    top: 48%;
    left: -4%;
    width: 146px;
    z-index: 7;
}

.hero-product--drill {
    bottom: -17%;
    left: 39%;
    width: 142px;
    z-index: 9;
}

.hero-product--fan img,
.hero-product--controller img,
.hero-product--headphones img {
    transform: rotate(var(--hero-scroll-rotate, 0deg));
}

.hero-product--drill img {
    transform: rotate(calc(10deg + var(--hero-scroll-rotate, 0deg)));
}

.hero-product--drill:hover img {
    transform: translateY(-6px) scale(1.035) rotate(calc(10deg + var(--hero-scroll-rotate, 0deg)));
}

.hero-product--sneakers {
    bottom: -8%;
    right: -15%;
    width: 142px;
    z-index: 9;
}

.hero-product--sneakers:hover img {
    transform: translateY(-6px) scale(1.035) rotate(calc(12deg + var(--hero-scroll-rotate, 0deg)));
}

.hero-product--sneakers img {
    transform: rotate(calc(12deg + var(--hero-scroll-rotate, 0deg)));
}

/* Hero entrance & motion (layout unchanged; transforms only) */
@keyframes hero-fade-up {
    from {
        opacity: 0;
        transform: translate3d(0, 14px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes hero-macbook-in {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) translate3d(0, 10px, 0) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(1);
    }
}

@keyframes hero-product-in {
    from {
        opacity: 0;
        transform: translate3d(0, 10px, 0) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

.hero.hero--motion .hero__title,
.hero.hero--motion .hero__description,
.hero.hero--motion .hero__buttons,
.hero.hero--motion .hero__advantages {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
}

.hero.hero--motion.is-hero-entered .hero__title,
.hero.hero--motion.is-hero-entered .hero__description,
.hero.hero--motion.is-hero-entered .hero__buttons,
.hero.hero--motion.is-hero-entered .hero__advantages,
.hero.hero--motion.is-hero-entered .seller-scene__macbook,
.hero.hero--motion.is-hero-entered .hero-product {
    visibility: visible;
}

.hero.hero--motion.is-hero-entered .hero__title {
    animation: hero-fade-up 1.15s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0ms;
}

.hero.hero--motion.is-hero-entered .hero__description {
    animation: hero-fade-up 1.15s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 160ms;
}

.hero.hero--motion.is-hero-entered .hero__buttons {
    animation: hero-fade-up 1.15s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 320ms;
}

.hero.hero--motion.is-hero-entered .hero__advantages {
    animation: hero-fade-up 1.15s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 512ms;
}

.hero.hero--motion .seller-scene__macbook {
    opacity: 0;
    transform: translate(-50%, -50%) translate3d(0, 10px, 0) scale(0.98);
}

.hero.hero--motion.is-hero-entered .seller-scene__macbook {
    animation: hero-macbook-in 1.31s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 544ms;
}

.hero.hero--motion:not(.is-hero-entered) .hero-product {
    opacity: 0;
    transform: translate3d(0, 10px, 0) scale(0.98);
}

.hero.hero--motion.is-hero-entered .hero-product--fan {
    animation: hero-product-in 1.09s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 832ms;
}

.hero.hero--motion.is-hero-entered .hero-product--headphones {
    animation: hero-product-in 1.09s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 960ms;
}

.hero.hero--motion.is-hero-entered .hero-product--controller {
    animation: hero-product-in 1.09s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1088ms;
}

.hero.hero--motion.is-hero-entered .hero-product--drill {
    animation: hero-product-in 1.09s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1216ms;
}

.hero.hero--motion.is-hero-entered .hero-product--sneakers {
    animation: hero-product-in 1.09s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1344ms;
}

.hero.is-hero-interactive .hero-product,
.hero.is-hero-interactive .seller-scene__macbook {
    will-change: transform;
}

.hero.is-hero-interactive .seller-scene__macbook {
    animation: none;
}

.hero.is-hero-interactive .hero-product {
    opacity: 1;
    animation: none;
}

@media (prefers-reduced-motion: reduce) {
    .hero-product img {
        transition: none;
    }

    .hero-product:hover img {
        transform: none;
        filter: none;
    }

    .hero-product--drill:hover img,
    .hero-product--sneakers:hover img {
        transform: none;
    }

    .hero.hero--motion .hero__title,
    .hero.hero--motion .hero__description,
    .hero.hero--motion .hero__buttons,
    .hero.hero--motion .hero__advantages,
    .hero.hero--motion .seller-scene__macbook,
    .hero.hero--motion .hero-product {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        animation: none !important;
    }

    .hero.hero--motion .seller-scene__macbook {
        transform: translate(-50%, -50%) !important;
    }

    .hero.is-hero-interactive .hero-product,
    .hero.is-hero-interactive .seller-scene__macbook {
        will-change: auto;
    }
}

/* =========================
   СЕКЦИИ
   ========================= */

.section {
    padding: 74px 0;
}

.section-heading {
    margin-bottom: 36px;
    text-align: center;
}

.section-heading h2 {
    margin: 0 0 10px;
    font-size: 34px;
    letter-spacing: -1px;
}

.section-heading p {
    margin: 0;
    color: var(--gray);
}

.section-heading__label {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 6px 12px;

    color: var(--blue);
    font-size: 12px;
    font-weight: 700;

    border-radius: 999px;
    background: rgba(18, 104, 255, 0.1);
}

/* =========================
   ОТЗЫВЫ НА OZON — #problems
   ========================= */

#problems.reviews-explainer {
    padding-top: 86px;
    padding-bottom: 86px;

    background:
        linear-gradient(
            180deg,
            #fbfcff 0%,
            #f5f9ff 100%
        );
}

.reviews-explainer__heading {
    max-width: 720px;
    margin: 0;

    color: #111a37;
    font-size: clamp(30px, 3.2vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    text-align: left;
}

.reviews-explainer__description {
    max-width: 560px;
    margin: 16px 0 0;

    color: #68738c;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
}

.reviews-explainer__panel {
    display: grid;
    grid-template-columns: 42% 58%;
    margin-top: 40px;

    background: var(--white);
    border: 1px solid rgba(150, 200, 255, 0.45);
    border-radius: 28px;
    box-shadow: 0 16px 42px rgba(18, 104, 255, 0.07);
    overflow: hidden;
}

.reviews-explainer__panel-left {
    position: relative;
    padding: 40px 36px 36px;

    background: #f2f6ff;
    border-left: 4px solid #1268ff;
}

.reviews-explainer__panel-left::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(220px, 55%);
    height: min(220px, 55%);
    pointer-events: none;

    background: radial-gradient(
        circle at 100% 100%,
        rgba(18, 104, 255, 0.1) 0%,
        rgba(18, 104, 255, 0) 72%
    );
}

.reviews-explainer__label {
    position: relative;
    z-index: 1;
    margin: 0;

    color: #fc1c8b;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.12em;
}

.reviews-explainer__panel-title {
    position: relative;
    z-index: 1;
    margin: 14px 0 0;
    max-width: 420px;

    color: #0b1739;
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.reviews-explainer__panel-text {
    position: relative;
    z-index: 1;
    margin: 16px 0 0;
    max-width: 420px;

    color: #56627a;
    font-size: 15px;
    line-height: 1.62;
}

.reviews-explainer__stars {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 28px;
}

.reviews-explainer__star {
    color: #f5b800;
    font-size: 18px;
    line-height: 1;
}

.reviews-explainer__panel-right {
    display: flex;
    flex-direction: column;
    background: var(--white);
}

.reviews-explainer__step {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 32px;
}

.reviews-explainer__step + .reviews-explainer__step {
    border-top: 1px solid rgba(150, 200, 255, 0.35);
}

.reviews-explainer__step-num {
    flex-shrink: 0;
    min-width: 52px;

    color: rgba(18, 104, 255, 0.28);
    font-size: clamp(40px, 4vw, 52px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
}

.reviews-explainer__step-content {
    min-width: 0;
    padding-top: 4px;
}

.reviews-explainer__step-title {
    margin: 0;

    color: #0b1739;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.reviews-explainer__step-text {
    margin: 8px 0 0;

    color: #68738c;
    font-size: 14px;
    line-height: 1.58;
}

@keyframes section-reveal-fade-up {
    from {
        opacity: 0;
        transform: translate3d(0, 22px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.reviews-explainer:not(.is-visible) .reviews-explainer__heading,
.reviews-explainer:not(.is-visible) .reviews-explainer__description,
.reviews-explainer:not(.is-visible) .reviews-explainer__panel {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
}

.reviews-explainer.is-visible .reviews-explainer__heading {
    animation: section-reveal-fade-up 0.78s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reviews-explainer.is-visible .reviews-explainer__description {
    animation: section-reveal-fade-up 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.reviews-explainer.is-visible .reviews-explainer__panel {
    animation: section-reveal-fade-up 0.82s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

@media (prefers-reduced-motion: reduce) {
    .reviews-explainer:not(.is-visible) .reviews-explainer__heading,
    .reviews-explainer:not(.is-visible) .reviews-explainer__description,
    .reviews-explainer:not(.is-visible) .reviews-explainer__panel {
        opacity: 1;
        transform: none;
    }

    .reviews-explainer.is-visible .reviews-explainer__heading,
    .reviews-explainer.is-visible .reviews-explainer__description,
    .reviews-explainer.is-visible .reviews-explainer__panel {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 820px) {
    #problems.reviews-explainer {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .reviews-explainer__heading {
        font-size: clamp(28px, 7vw, 34px);
    }

    .reviews-explainer__description {
        font-size: 15px;
    }

    .reviews-explainer__panel {
        grid-template-columns: 1fr;
        margin-top: 32px;
        border-radius: 24px;
    }

    .reviews-explainer__panel-left {
        padding: 28px 24px 26px;
        border-left: 4px solid #1268ff;
    }

    .reviews-explainer__panel-title {
        max-width: none;
        font-size: clamp(20px, 5.5vw, 24px);
    }

    .reviews-explainer__panel-text {
        max-width: none;
    }

    .reviews-explainer__step {
        gap: 18px;
        padding: 22px 24px;
    }

    .reviews-explainer__step-num {
        min-width: 44px;
        font-size: 36px;
    }

    .reviews-explainer__step-title {
        font-size: 17px;
    }

    .reviews-explainer__step-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    #problems.reviews-explainer {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .reviews-explainer__heading {
        font-size: clamp(24px, 7.2vw, 28px);
    }

    .reviews-explainer__description {
        margin-top: 12px;
        font-size: 14px;
    }

    .reviews-explainer__panel {
        margin-top: 24px;
        border-radius: 20px;
    }

    .reviews-explainer__panel-left {
        padding: 22px 18px 20px;
    }

    .reviews-explainer__panel-title {
        margin-top: 12px;
        font-size: clamp(18px, 5.4vw, 22px);
    }

    .reviews-explainer__panel-text {
        margin-top: 12px;
        font-size: 14px;
    }

    .reviews-explainer__stars {
        margin-top: 20px;
        gap: 4px;
    }

    .reviews-explainer__star {
        font-size: 16px;
    }

    .reviews-explainer__step {
        gap: 14px;
        padding: 18px 16px;
    }

    .reviews-explainer__step-num {
        min-width: 36px;
        font-size: 28px;
    }

    .reviews-explainer__step-title {
        font-size: 16px;
    }

    .reviews-explainer__step-text {
        font-size: 13px;
    }
}

/* =========================
   КОМУ ПОДОЙДЁТ СЕРВИС
   ========================= */

.seller-types {
    background:
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #f6f9ff 100%
        );
}

.seller-types__header {
    max-width: 640px;
    margin: 0;
    text-align: left;
}

.seller-types__eyebrow {
    margin: 0;

    color: #fc1c8b;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.12em;
}

.seller-types__heading {
    margin: 12px 0 0;

    color: #07163d;
    font-size: clamp(30px, 3.2vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.seller-types__description {
    max-width: 520px;
    margin: 14px 0 0;

    color: #68738c;
    font-size: 16px;
    line-height: 1.6;
}

.seller-types__stage {
    margin-top: 32px;
}

.seller-types__panel {
    position: relative;

    display: grid;
    grid-template-columns:
        minmax(250px, 0.92fr)
        minmax(390px, 1.16fr)
        minmax(250px, 0.92fr);
    grid-template-areas: "start visual reputation";
    align-items: stretch;

    padding: 0;

    background: var(--white);
    border: 1px solid rgba(150, 200, 255, 0.45);
    border-radius: 28px;
    box-shadow: 0 14px 38px rgba(18, 104, 255, 0.07);
    overflow: hidden;
}

.seller-types__scenario {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 22px 20px 20px;
}

.seller-types__scenario--start {
    grid-area: start;

    background:
        linear-gradient(
            180deg,
            #f4f8ff 0%,
            rgba(18, 104, 255, 0.035) 100%
        );
}

.seller-types__scenario--reputation {
    grid-area: reputation;

    background:
        linear-gradient(
            180deg,
            #fff7fb 0%,
            rgba(252, 28, 139, 0.025) 100%
        );
}

.seller-types__scenario-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    min-height: 62px;
}

.seller-types__number {
    flex-shrink: 0;

    color: rgba(18, 104, 255, 0.18);
    font-size: clamp(56px, 5vw, 68px);
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: -0.04em;
}

.seller-types__scenario--reputation .seller-types__number {
    color: rgba(252, 28, 139, 0.17);
}

.seller-types__scenario-inner {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 100%;
}

.seller-types__scenario-label {
    flex: 1;
    min-width: 0;
    margin: 0;
    padding-top: 4px;

    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.1em;
}

.seller-types__scenario--start .seller-types__scenario-label {
    color: #1268ff;
}

.seller-types__scenario--reputation .seller-types__scenario-label {
    color: #fc1c8b;
}

.seller-types__scenario-title {
    margin: 12px 0 0;
    max-width: 280px;

    color: #07163d;
    font-size: clamp(22px, 2.1vw, 26px);
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.02em;
}

.seller-types__scenario-text {
    margin: 10px 0 0;
    max-width: 300px;

    color: #68738c;
    font-size: 14px;
    line-height: 1.55;
}

.seller-types__conditions-heading {
    margin: 16px 0 0;

    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.08em;
}

.seller-types__scenario--start .seller-types__conditions-heading {
    color: #1268ff;
}

.seller-types__scenario--reputation .seller-types__conditions-heading {
    color: #fc1c8b;
}

.seller-types__conditions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}

.seller-types__condition {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;

    color: #07163d;
    font-size: 13px;
    line-height: 1.35;

    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(18, 104, 255, 0.16);
    border-radius: 11px;
}

.seller-types__scenario--reputation .seller-types__condition {
    border-color: rgba(252, 28, 139, 0.16);
}

.seller-types__condition-dot {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1268ff;
}

.seller-types__scenario--reputation .seller-types__condition-dot {
    background: #fc1c8b;
}

.seller-types__result {
    margin: 16px 0 0;
    padding: 12px 14px;

    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    border-radius: 11px;
}

.seller-types__scenario--start .seller-types__result {
    margin-top: auto;
    color: #1268ff;
    background: rgba(18, 104, 255, 0.1);
}

.seller-types__scenario--reputation .seller-types__result {
    margin-top: auto;
    color: #fc1c8b;
    background: rgba(252, 28, 139, 0.1);
}

.seller-types__visual {
    position: relative;
    z-index: 3;
    grid-area: visual;

    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    min-width: 0;
    padding: 12px 0;
    margin: 0 -10px;
}

.seller-types__visual::before,
.seller-types__visual::after {
    content: "";
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.seller-types__visual::before {
    width: 76%;
    height: 70%;
    left: -2%;
    top: 16%;

    background: rgba(18, 104, 255, 0.09);
    border-radius: 48% 52% 58% 42% / 43% 46% 54% 57%;
    transform: rotate(-10deg);
}

.seller-types__visual::after {
    width: 66%;
    height: 64%;
    right: -2%;
    top: 20%;

    background: rgba(252, 28, 139, 0.07);
    border-radius: 56% 44% 48% 52% / 45% 58% 42% 55%;
    transform: rotate(9deg);
}

.seller-types__image {
    position: relative;
    z-index: 2;
    display: block;
    width: min(100%, 500px);
    height: auto;
    max-width: none;

    object-fit: contain;
}

@keyframes seller-types-visual-in {
    from {
        opacity: 0;
        transform: scale(0.98);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.seller-types:not(.is-visible) .seller-types__eyebrow,
.seller-types:not(.is-visible) .seller-types__heading,
.seller-types:not(.is-visible) .seller-types__description,
.seller-types:not(.is-visible) .seller-types__panel {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
}

.seller-types:not(.is-visible) .seller-types__image {
    opacity: 0;
    transform: scale(0.98);
}

.seller-types.is-visible .seller-types__eyebrow,
.seller-types.is-visible .seller-types__heading {
    animation: section-reveal-fade-up 0.78s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.seller-types.is-visible .seller-types__description {
    animation: section-reveal-fade-up 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

.seller-types.is-visible .seller-types__panel {
    animation: section-reveal-fade-up 0.82s cubic-bezier(0.22, 1, 0.36, 1) 0.14s both;
}

.seller-types.is-visible .seller-types__image {
    animation: seller-types-visual-in 0.88s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}

.seller-types.is-visible .seller-types__scenario--start {
    animation: section-reveal-fade-up 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
}

.seller-types.is-visible .seller-types__scenario--reputation {
    animation: section-reveal-fade-up 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.34s both;
}

@media (prefers-reduced-motion: reduce) {
    .seller-types:not(.is-visible) .seller-types__eyebrow,
    .seller-types:not(.is-visible) .seller-types__heading,
    .seller-types:not(.is-visible) .seller-types__description,
    .seller-types:not(.is-visible) .seller-types__panel,
    .seller-types:not(.is-visible) .seller-types__image {
        opacity: 1;
        transform: none;
    }

    .seller-types.is-visible .seller-types__eyebrow,
    .seller-types.is-visible .seller-types__heading,
    .seller-types.is-visible .seller-types__description,
    .seller-types.is-visible .seller-types__panel,
    .seller-types.is-visible .seller-types__scenario--start,
    .seller-types.is-visible .seller-types__scenario--reputation,
    .seller-types.is-visible .seller-types__image {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1024px) {
    .seller-types__panel {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "visual visual"
            "start reputation";
    }

    .seller-types__visual {
        padding: 20px 16px 24px;
        margin: 0;
    }

    .seller-types__image {
        width: min(100%, 420px);
    }

    .seller-types__scenario {
        padding: 20px 18px 18px;
    }

    .seller-types__scenario-title,
    .seller-types__scenario-text {
        max-width: none;
    }

    .seller-types__number {
        font-size: clamp(52px, 4.8vw, 58px);
    }
}

@media (max-width: 768px) {
    .seller-types__stage {
        margin-top: 24px;
    }

    .seller-types__panel {
        grid-template-columns: 1fr;
        grid-template-areas:
            "visual"
            "start"
            "reputation";
    }

    .seller-types__visual {
        padding: 16px 12px 20px;
    }

    .seller-types__image {
        width: min(82vw, 350px);
    }

    .seller-types__scenario {
        padding: 20px 16px 18px;
    }

    .seller-types__scenario--reputation {
        border-top: 1px solid rgba(150, 200, 255, 0.3);
    }

    .seller-types__number {
        font-size: clamp(48px, 10vw, 54px);
    }

    .seller-types__scenario--start .seller-types__result,
    .seller-types__scenario--reputation .seller-types__result {
        margin-top: 16px;
    }
}

@media (max-width: 480px) {
    .seller-types__heading {
        font-size: clamp(24px, 7vw, 28px);
    }

    .seller-types__description {
        font-size: 14px;
    }

    .seller-types__panel {
        border-radius: 20px;
    }

    .seller-types__scenario {
        padding: 18px 14px 16px;
    }

    .seller-types__scenario-title {
        font-size: max(22px, clamp(22px, 5.6vw, 24px));
    }

    .seller-types__scenario-top {
        gap: 12px;
        min-height: 52px;
    }

    .seller-types__number {
        font-size: clamp(44px, 9vw, 48px);
    }

    .seller-types__visual::before,
    .seller-types__visual::after {
        width: 68%;
        height: 62%;
    }
}

/* =========================
   УСЛУГИ ПО ОТЗЫВАМ
   ========================= */

.review-services-section {
    background:
        linear-gradient(
            180deg,
            #f8fbff 0%,
            var(--white) 100%
        );
}

.review-services-heading {
    max-width: 900px;
    margin: 0 auto;

    color: var(--text);
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    text-align: center;
}

.review-services-heading__description {
    max-width: 780px;
    margin: 16px auto 0;

    color: var(--gray);
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

.review-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 40px;
}

.review-service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 32px;

    background: var(--white);
    border: 1px solid #e3e9f3;
    border-radius: 22px;
    box-shadow: 0 14px 35px rgba(24, 48, 95, 0.07);

    transition: border-color 0.28s ease;
}

.review-service-card:hover {
    border-color: rgba(55, 104, 255, 0.25);
}

.review-service-card__top {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
}

.review-service-card__icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;

    position: relative;
    overflow: hidden;

    display: grid;
    place-items: center;

    border-radius: 16px;
    background: linear-gradient(145deg, #edf5ff, #e3ecff);
    color: var(--blue);
}

.review-service-card__icon svg {
    display: block;
    width: 36px;
    height: 36px;
}

/* PNG первой карточки: меняйте только --icon-size */
.review-service-card__icon-image {
    --icon-size: 90px;

    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    display: block;
    width: var(--icon-size);
    height: var(--icon-size);
    max-width: none;
    max-height: none;
    object-fit: contain;
}

.review-service-card:nth-child(3) .review-service-card__icon-image {
    --icon-size: 72px;
}
.review-service-card__content {
    min-width: 0;
}

.review-service-card__title {
    margin: 0;
    color: var(--text);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.review-service-card__text {
    margin: 10px 0 0;
    color: #56627a;
    font-size: 15px;
    line-height: 1.55;
}

.review-service-card__button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 26px;
    min-height: 52px;
    padding: 0 20px;

    color: var(--blue);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;

    border-radius: 12px;
    border: 1.5px solid transparent;
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        linear-gradient(135deg, #1268ff, #8a4dff) border-box;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.review-service-card__button:hover {
    color: #fff;
    border-color: var(--blue);
    background: var(--blue);
    transform: translateY(-2px);
}

@keyframes review-services-fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-services-section:not(.is-visible) .review-services-heading,
.review-services-section:not(.is-visible) .review-services-heading__description,
.review-services-section:not(.is-visible) .review-service-card {
    opacity: 0;
    transform: translateY(24px);
}

.review-services-section.is-visible .review-services-heading {
    animation: review-services-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.review-services-section.is-visible .review-services-heading__description {
    animation: review-services-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.review-services-section.is-visible .review-service-card:nth-child(1) {
    animation: review-services-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.review-services-section.is-visible .review-service-card:nth-child(2) {
    animation: review-services-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.review-services-section.is-visible .review-service-card:nth-child(3) {
    animation: review-services-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

.review-services-section.is-visible .review-service-card:nth-child(4) {
    animation: review-services-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}

@media (prefers-reduced-motion: reduce) {
    .review-services-section:not(.is-visible) .review-services-heading,
    .review-services-section:not(.is-visible) .review-services-heading__description,
    .review-services-section:not(.is-visible) .review-service-card {
        opacity: 1;
        transform: none;
    }

    .review-services-section.is-visible .review-services-heading,
    .review-services-section.is-visible .review-services-heading__description,
    .review-services-section.is-visible .review-service-card {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 820px) {
    .review-services-heading {
        font-size: clamp(28px, 7vw, 32px);
    }

    .review-services-heading__description {
        font-size: 15px;
    }

    .review-services-grid {
        grid-template-columns: 1fr;
        margin-top: 32px;
    }

    .review-service-card {
        padding: 22px;
    }

    .review-service-card__top {
        gap: 16px;
    }

    .review-service-card__icon {
        width: 56px;
        height: 56px;
    }

    .review-service-card__icon svg {
        width: 32px;
        height: 32px;
    }

    .review-service-card__icon-image {
        --icon-size: 44px;
    }

    .review-service-card__title {
        font-size: 18px;
    }
}

/* =========================
   ГАРАНТИИ
   ========================= */

.reviews-guarantees {
    padding: 70px 0;
    background: var(--white);
}

.reviews-guarantees__panel {
    position: relative;
    overflow: hidden;
    padding: 62px 38px 46px;
    border-radius: 30px;

    background:
        linear-gradient(
            125deg,
            #0077ff 0%,
            #1268ff 42%,
            #5366f4 72%,
            #7855e8 100%
        );
}

.reviews-guarantees__panel::before,
.reviews-guarantees__panel::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.reviews-guarantees__panel::before {
    width: 420px;
    height: 420px;
    top: -180px;
    left: -120px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.22) 0%,
        rgba(255, 255, 255, 0) 68%
    );
}

.reviews-guarantees__panel::after {
    width: 480px;
    height: 480px;
    right: -160px;
    bottom: -220px;
    background: radial-gradient(
        circle,
        rgba(180, 210, 255, 0.28) 0%,
        rgba(180, 210, 255, 0) 70%
    );
}

.reviews-guarantees__heading,
.reviews-guarantees__description,
.reviews-guarantees__grid {
    position: relative;
    z-index: 1;
}

.reviews-guarantees__heading {
    max-width: 780px;
    margin: 0 auto;

    color: #fff;
    font-size: clamp(32px, 3vw, 46px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    text-align: center;
}

.reviews-guarantees__description {
    max-width: 900px;
    margin: 20px auto 0;

    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.65;
    text-align: center;
}

.reviews-guarantees__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 46px;
}

.review-guarantee-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 28px 22px 24px;
    text-align: center;

    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(0, 32, 120, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.review-guarantee-card__icon {
    width: 64px;
    height: 64px;

    position: relative;
    overflow: hidden;

    display: grid;
    place-items: center;

    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: #1268ff;
    box-shadow: 0 8px 24px rgba(0, 40, 130, 0.14);
}

.review-guarantee-card__icon svg {
    display: block;
    width: 47px;
    height: 47px;
}

/* PNG гарантий: базовый размер — меняйте --icon-size ниже или по nth-child */
.review-guarantee-card__icon-image {
    --icon-size: 64px;

    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    display: block;
    width: var(--icon-size);
    height: var(--icon-size);
    max-width: none;
    max-height: none;
    object-fit: contain;
}

.review-guarantee-card:nth-child(1) .review-guarantee-card__icon-image {
    --icon-size: 64px;
}

.review-guarantee-card:nth-child(2) .review-guarantee-card__icon-image {
    --icon-size: 64px;
}

.review-guarantee-card:nth-child(3) .review-guarantee-card__icon-image {
    --icon-size: 64px;
}

.review-guarantee-card:nth-child(4) .review-guarantee-card__icon-image {
    --icon-size: 64px;
}

.review-guarantee-card__title {
    margin: 22px 0 0;
    color: #fff;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.3;
}

.review-guarantee-card__text {
    margin: 12px 0 auto;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.6;
}

.review-guarantee-card__check {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    margin-top: 22px;
    padding: 0;
    box-sizing: border-box;

    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
}

.review-guarantee-card__check svg {
    display: block;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

@keyframes reviews-guarantees-fade-up {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reviews-guarantees:not(.is-visible) .reviews-guarantees__heading,
.reviews-guarantees:not(.is-visible) .reviews-guarantees__description,
.reviews-guarantees:not(.is-visible) .review-guarantee-card {
    opacity: 0;
    transform: translateY(22px);
}

.reviews-guarantees.is-visible .reviews-guarantees__heading {
    animation: reviews-guarantees-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reviews-guarantees.is-visible .reviews-guarantees__description {
    animation: reviews-guarantees-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.reviews-guarantees.is-visible .review-guarantee-card:nth-child(1) {
    animation: reviews-guarantees-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.reviews-guarantees.is-visible .review-guarantee-card:nth-child(2) {
    animation: reviews-guarantees-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

.reviews-guarantees.is-visible .review-guarantee-card:nth-child(3) {
    animation: reviews-guarantees-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

.reviews-guarantees.is-visible .review-guarantee-card:nth-child(4) {
    animation: reviews-guarantees-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

@media (prefers-reduced-motion: reduce) {
    .reviews-guarantees:not(.is-visible) .reviews-guarantees__heading,
    .reviews-guarantees:not(.is-visible) .reviews-guarantees__description,
    .reviews-guarantees:not(.is-visible) .review-guarantee-card {
        opacity: 1;
        transform: none;
    }

    .reviews-guarantees.is-visible .reviews-guarantees__heading,
    .reviews-guarantees.is-visible .reviews-guarantees__description,
    .reviews-guarantees.is-visible .review-guarantee-card {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1000px) {
    .reviews-guarantees__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .reviews-guarantees {
        padding: 54px 0;
    }

    .reviews-guarantees__panel {
        padding: 42px 18px 22px;
        border-radius: 22px;
    }

    .reviews-guarantees__heading {
        font-size: clamp(28px, 7vw, 32px);
    }

    .reviews-guarantees__description {
        font-size: 15px;
    }

    .reviews-guarantees__grid {
        grid-template-columns: 1fr;
        margin-top: 32px;
        gap: 14px;
    }

    .review-guarantee-card {
        padding: 24px 20px;
    }

    .review-guarantee-card__icon-image {
        --icon-size: 52px;
    }
}

/* =========================
   КОНТАКТЫ / ПОКАЖИТЕ КАРТОЧКУ
   ========================= */

.section.contact-showcase {
    padding-bottom: clamp(52px, 5.5vw, 62px);
}

.contact-showcase {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    overflow-x: clip;
}

.contact-showcase__header {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.contact-showcase__title {
    margin: 0;
    color: var(--text);
    font-size: clamp(28px, 3.2vw, 38px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.contact-showcase__lead {
    margin: 14px 0 0;
    color: var(--gray);
    font-size: 16px;
    line-height: 1.65;
}

.contact-showcase__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 24px);
    align-items: stretch;
    margin-top: clamp(40px, 4vw, 45px);
}

.contact-showcase-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    padding: 20px 18px 18px;

    background: var(--white);
    border: 1px solid #e3e9f3;
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(24, 48, 95, 0.06);

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

.contact-showcase-card:hover {
    transform: translateY(-3px);
    border-color: #c5d4ea;
    box-shadow:
        0 18px 42px rgba(24, 48, 95, 0.1),
        0 0 0 1px rgba(18, 104, 255, 0.04);
}

.contact-showcase-card:hover .contact-showcase-card__action {
    background: #e3efff;
    border-color: rgba(18, 104, 255, 0.28);
}

.contact-showcase-card:hover .contact-showcase-card__arrow {
    transform: translateX(4px);
}

.contact-showcase-card__icon {
    width: 58px;
    height: 58px;
    margin-bottom: 14px;

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;

    color: var(--blue);
    background: #edf4ff;
    border-radius: 15px;
}

.contact-showcase-card__icon-img {
    display: block;
    width: 46px;
    height: 46px;
    max-width: none;
    object-fit: contain;
    flex-shrink: 0;
}

.contact-showcase__grid .contact-showcase-card:nth-child(1) .contact-showcase-card__icon-img {
    width: 46px;
    height: 46px;
}

.contact-showcase__grid .contact-showcase-card:nth-child(2) .contact-showcase-card__icon-img {
    width: 48px;
    height: 48px;
}

.contact-showcase__grid .contact-showcase-card:nth-child(3) .contact-showcase-card__icon-img {
    width: 46px;
    height: 46px;
}

.contact-showcase__grid .contact-showcase-card:nth-child(4) .contact-showcase-card__icon-img {
    width: 46px;
    height: 46px;
}

.contact-showcase-card__title {
    margin: 0;
    color: var(--text);
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.contact-showcase-card__text {
    flex: 1;
    margin: 8px 0 0;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.52;
}

.contact-showcase-card__action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    margin-top: 16px;
    padding: 11px 14px;
    min-height: 44px;

    color: var(--blue);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;

    background: #eef4ff;
    border: 1px solid rgba(18, 104, 255, 0.16);
    border-radius: 12px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;

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

.contact-showcase-card__action:hover {
    background: #dceaff;
    border-color: rgba(18, 104, 255, 0.35);
}

.contact-showcase-card__action-label {
    min-width: 0;
    word-break: break-word;
}

.contact-showcase-card__arrow {
    flex-shrink: 0;
    font-size: 18px;
    line-height: 1;
    opacity: 0.85;

    transition: transform 0.22s ease;
}

.contact-showcase-card__action:focus-visible {
    outline: 2px solid rgba(18, 104, 255, 0.45);
    outline-offset: 2px;
}

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

@media (max-width: 640px) {
    .contact-showcase__grid {
        grid-template-columns: 1fr;
        margin-top: 32px;
        gap: 16px;
    }

    .contact-showcase-card {
        padding: 18px 16px 16px;
    }

    .section.contact-showcase {
        padding-bottom: 48px;
    }

    .contact-showcase__title {
        font-size: clamp(26px, 7vw, 32px);
    }

    .contact-showcase__lead {
        font-size: 15px;
    }

    .contact-showcase-card__icon-img {
        width: 40px;
        height: 40px;
    }

    .contact-showcase__grid .contact-showcase-card:nth-child(1) .contact-showcase-card__icon-img,
    .contact-showcase__grid .contact-showcase-card:nth-child(2) .contact-showcase-card__icon-img,
    .contact-showcase__grid .contact-showcase-card:nth-child(3) .contact-showcase-card__icon-img,
    .contact-showcase__grid .contact-showcase-card:nth-child(4) .contact-showcase-card__icon-img {
        width: 40px;
        height: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-showcase-card {
        transition: none;
    }

    .contact-showcase-card:hover {
        transform: none;
    }

    .contact-showcase-card__action {
        transition: none;
    }

    .contact-showcase-card:hover .contact-showcase-card__arrow {
        transform: none;
    }

    .contact-showcase-card__arrow {
        transition: none;
    }
}

.contact-showcase:not(.is-visible) .contact-showcase__title,
.contact-showcase:not(.is-visible) .contact-showcase__lead,
.contact-showcase:not(.is-visible) .contact-showcase-card {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
}

.contact-showcase.is-visible .contact-showcase__title {
    animation: section-reveal-fade-up 0.78s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.contact-showcase.is-visible .contact-showcase__lead {
    animation: section-reveal-fade-up 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.contact-showcase.is-visible .contact-showcase__grid .contact-showcase-card:nth-child(1) {
    animation: section-reveal-fade-up 0.82s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.contact-showcase.is-visible .contact-showcase__grid .contact-showcase-card:nth-child(2) {
    animation: section-reveal-fade-up 0.82s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
}

.contact-showcase.is-visible .contact-showcase__grid .contact-showcase-card:nth-child(3) {
    animation: section-reveal-fade-up 0.82s cubic-bezier(0.22, 1, 0.36, 1) 0.36s both;
}

.contact-showcase.is-visible .contact-showcase__grid .contact-showcase-card:nth-child(4) {
    animation: section-reveal-fade-up 0.82s cubic-bezier(0.22, 1, 0.36, 1) 0.44s both;
}

@media (prefers-reduced-motion: reduce) {
    .contact-showcase:not(.is-visible) .contact-showcase__title,
    .contact-showcase:not(.is-visible) .contact-showcase__lead,
    .contact-showcase:not(.is-visible) .contact-showcase-card {
        opacity: 1;
        transform: none;
    }

    .contact-showcase.is-visible .contact-showcase__title,
    .contact-showcase.is-visible .contact-showcase__lead,
    .contact-showcase.is-visible .contact-showcase-card {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* =========================
   ОТЗЫВЫ КЛИЕНТОВ
   ========================= */

.reviews-section {
    --reviews-marquee-gap: 16px;
    --reviews-shot-height: 460px;

    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            var(--white) 0%,
            #f8fbff 100%
        );
}

.reviews-section__header {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.reviews-section__title {
    margin: 0;
    color: #111a37;
    font-size: clamp(30px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.reviews-section__subtitle {
    max-width: 780px;
    margin: 16px auto 0;
    color: var(--gray);
    font-size: 16px;
    line-height: 1.65;
}

.reviews-section__stage {
    margin-top: 40px;
    padding: 28px 0 32px;

    background: var(--white);
    border: 1px solid #e3e9f3;
    border-radius: 22px;
    box-shadow: 0 14px 35px rgba(24, 48, 95, 0.07);
}

.reviews-section__actions {
    margin-top: 28px;
    text-align: center;
}

.reviews-section__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;

    color: var(--blue);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;

    border-radius: 12px;
    border: 1.5px solid transparent;
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        linear-gradient(135deg, #1268ff, #8a4dff) border-box;
    box-shadow: 0 8px 22px rgba(0, 91, 255, 0.08);

    transition: background 0.2s ease;
}

.reviews-section__more:hover {
    background:
        linear-gradient(#f7faff, #f7faff) padding-box,
        linear-gradient(135deg, #1268ff, #8a4dff) border-box;
}

.reviews-section__viewport {
    overflow: hidden;

    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 7%,
        #000 93%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 7%,
        #000 93%,
        transparent 100%
    );
}

.reviews-section__track {
    display: flex;
    width: max-content;
    will-change: transform;

    animation: reviews-section-marquee 52s linear infinite;
}

.reviews-section__stage:hover .reviews-section__track {
    animation-play-state: paused;
}

.reviews-section__group {
    display: flex;
    flex-shrink: 0;
    gap: var(--reviews-marquee-gap);
    padding-right: var(--reviews-marquee-gap);
}

.reviews-section__shot {
    flex-shrink: 0;
    height: var(--reviews-shot-height);

    border: 1px solid rgba(150, 200, 255, 0.45);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 10px 28px rgba(24, 48, 95, 0.08);
    overflow: hidden;
}

.reviews-section__shot img {
    display: block;
    width: auto;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: center top;
}

@keyframes reviews-section-marquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 1024px) {
    .reviews-section {
        --reviews-shot-height: 420px;
    }
}

@media (max-width: 820px) {
    .reviews-section {
        --reviews-shot-height: 400px;
        --reviews-marquee-gap: 14px;
    }

    .reviews-section__subtitle {
        font-size: 15px;
    }

    .reviews-section__stage {
        margin-top: 32px;
        padding: 22px 0 26px;
        border-radius: 20px;
    }
}

@media (max-width: 620px) {
    .reviews-section {
        --reviews-shot-height: 380px;
    }

    .reviews-section__title {
        font-size: clamp(28px, 7vw, 32px);
    }

    .reviews-section__stage {
        padding: 18px 0 22px;
    }

    .reviews-section__shot {
        border-radius: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reviews-section__track {
        animation: none;
    }

    .reviews-section__viewport {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;

        -webkit-mask-image: none;
        mask-image: none;
    }

    .reviews-section__stage:hover .reviews-section__track {
        animation-play-state: running;
    }
}

.reviews-section:not(.is-visible) .reviews-section__title,
.reviews-section:not(.is-visible) .reviews-section__subtitle,
.reviews-section:not(.is-visible) .reviews-section__stage {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
}

.reviews-section.is-visible .reviews-section__title {
    animation: section-reveal-fade-up 0.78s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reviews-section.is-visible .reviews-section__subtitle {
    animation: section-reveal-fade-up 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.reviews-section.is-visible .reviews-section__stage {
    animation: section-reveal-fade-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}

@media (prefers-reduced-motion: reduce) {
    .reviews-section:not(.is-visible) .reviews-section__title,
    .reviews-section:not(.is-visible) .reviews-section__subtitle,
    .reviews-section:not(.is-visible) .reviews-section__stage {
        opacity: 1;
        transform: none;
    }

    .reviews-section.is-visible .reviews-section__title,
    .reviews-section.is-visible .reviews-section__subtitle,
    .reviews-section.is-visible .reviews-section__stage {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* =========================
   КАК ЗАКАЗАТЬ ОТЗЫВЫ / WORK PROCESS
   ========================= */

@keyframes work-process-fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes work-process-fade-in-right {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.work-process-section {
    background:
        linear-gradient(
            180deg,
            var(--white) 0%,
            #f8fbff 100%
        );
    overflow-x: clip;
}

.work-process__header {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.work-process__title {
    margin: 0;
    color: var(--text);
    font-family: Onest, sans-serif;
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.work-process__title-break {
    display: none;
}

@media (min-width: 520px) and (max-width: 900px) {
    .work-process__title-break {
        display: inline;
    }
}

.work-process__subtitle {
    max-width: 800px;
    margin: 16px auto 0;
    color: var(--gray);
    font-size: 16px;
    line-height: 1.65;
}

.work-process__layout {
    display: grid;
    grid-template-columns: minmax(600px, 1.15fr) minmax(480px, 1fr);
    gap: clamp(36px, 4vw, 52px);
    align-items: center;
    margin-top: clamp(50px, 5vw, 60px);
}

.work-process__timeline {
    margin: 0;
    padding: 0;
    list-style: none;
}

.work-process__step {
    display: grid;
    grid-template-columns: 48px 24px 76px minmax(0, 1fr);
    column-gap: 16px;
    align-items: start;
    padding-bottom: 24px;
}

.work-process__step:last-child {
    padding-bottom: 0;
}

.work-process__number {
    padding-top: 22px;
    color: var(--blue);
    font-size: clamp(30px, 2.8vw, 38px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
}

.work-process__line {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
    padding-top: 28px;
}

.work-process__dot {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fc1c8b;
    box-shadow: 0 0 0 5px rgba(252, 28, 139, 0.08);
}

.work-process__line-dash {
    flex: 1;
    width: 0;
    min-height: 32px;
    margin-top: 8px;
    border-left: 2px dashed rgba(18, 104, 255, 0.35);
}

.work-process__icon {
    width: 74px;
    height: 74px;
    margin-top: 4px;

    position: relative;
    overflow: hidden;

    display: grid;
    place-items: center;

    color: var(--blue);
    background: var(--white);
    border: 1px solid rgba(150, 200, 255, 0.55);
    border-radius: 50%;
    box-shadow:
        0 10px 26px rgba(18, 104, 255, 0.1),
        0 0 0 5px rgba(18, 104, 255, 0.06);
}

/* PNG этапов: меняйте --icon-size ниже или по nth-child */
.work-process__icon-image {
    --icon-size: 56px;

    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    display: block;
    width: var(--icon-size);
    height: var(--icon-size);
    max-width: none;
    max-height: none;
    object-fit: contain;
}

.work-process__step:nth-child(1) .work-process__icon-image {
    --icon-size: 56px;
}

.work-process__step:nth-child(2) .work-process__icon-image {
    --icon-size: 56px;
}

.work-process__step:nth-child(3) .work-process__icon-image {
    --icon-size: 56px;
}

.work-process__step:nth-child(4) .work-process__icon-image {
    --icon-size: 56px;
}

.work-process__step:nth-child(5) .work-process__icon-image {
    --icon-size: 56px;
}

.work-process__card {
    margin-top: 0;
    padding: 22px 24px;

    background: #fff;
    border: 1px solid #e3e9f3;
    border-radius: 20px;
    box-shadow: 0 14px 34px rgba(24, 48, 95, 0.07);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.work-process__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(24, 48, 95, 0.09);
}

.work-process__card-title {
    margin: 0;
    color: var(--text);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.work-process__card-text {
    margin: 8px 0 0;
    color: #56627a;
    font-size: 14px;
    line-height: 1.58;
}

.work-process__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
    margin-top: 16px;
}

.work-process__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.work-process__btn--primary {
    color: var(--white);
    background: var(--blue);
    border: 1px solid var(--blue);
    box-shadow: 0 8px 20px rgba(18, 104, 255, 0.22);
}

.work-process__btn--primary:hover {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
}

.work-process__btn--telegram {
    color: var(--blue);
    background: var(--white);
    border: 1px solid rgba(18, 104, 255, 0.35);
}

.work-process__btn--telegram:hover {
    border-color: var(--blue);
    background: rgba(18, 104, 255, 0.04);
}

.work-process__btn:focus-visible {
    outline: 2px solid rgba(18, 104, 255, 0.45);
    outline-offset: 2px;
}

.work-process__visual {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    padding: 12px 0;
}

.work-process__visual-glow {
    position: absolute;
    z-index: 0;
    width: min(100%, 620px);
    height: min(100%, 620px);
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(18, 104, 255, 0.1) 0%,
        rgba(18, 104, 255, 0.03) 50%,
        transparent 72%
    );
    pointer-events: none;
}

/* Меняйте --illustration-width для размера illustration.png на desktop */
.work-process__illustration {
    --illustration-width: 780px;

    position: relative;
    z-index: 1;
    display: block;
    width: var(--illustration-width);
    max-width: none;
    height: auto;
    object-fit: contain;
    transform: translateY(-28px);
}

@media (min-width: 769px) {
    .work-process__layout {
        align-items: start;
    }

    .work-process__visual {
        position: sticky;
        top: 120px;
    }

    .work-process__actions {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 12px;
    }
}

.work-process-section:not(.is-visible) .work-process__title,
.work-process-section:not(.is-visible) .work-process__subtitle,
.work-process-section:not(.is-visible) .work-process__step,
.work-process-section:not(.is-visible) .work-process__visual {
    opacity: 0;
}

.work-process-section:not(.is-visible) .work-process__title,
.work-process-section:not(.is-visible) .work-process__subtitle,
.work-process-section:not(.is-visible) .work-process__step {
    transform: translateY(18px);
}

.work-process-section:not(.is-visible) .work-process__visual {
    transform: translateX(20px);
}

.work-process-section.is-visible .work-process__title {
    animation: work-process-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.work-process-section.is-visible .work-process__subtitle {
    animation: work-process-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.06s both;
}

.work-process-section.is-visible .work-process__step:nth-child(1) {
    animation: work-process-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.work-process-section.is-visible .work-process__step:nth-child(2) {
    animation: work-process-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

.work-process-section.is-visible .work-process__step:nth-child(3) {
    animation: work-process-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.26s both;
}

.work-process-section.is-visible .work-process__step:nth-child(4) {
    animation: work-process-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.34s both;
}

.work-process-section.is-visible .work-process__step:nth-child(5) {
    animation: work-process-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.42s both;
}

.work-process-section.is-visible .work-process__visual {
    animation: work-process-fade-in-right 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

@media (max-width: 1024px) {
    .work-process__layout {
        grid-template-columns: minmax(500px, 1.12fr) minmax(360px, 1fr);
        gap: clamp(28px, 4vw, 40px);
    }

    .work-process__illustration {
        --illustration-width: 480px;
    }

    .work-process__visual-glow {
        width: min(100%, 520px);
        height: min(100%, 520px);
    }

    .work-process__icon {
        width: 66px;
        height: 66px;
    }

    .work-process__icon-image {
        --icon-size: 50px;
    }

    .work-process__step {
        grid-template-columns: 44px 22px 66px minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .work-process__layout {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: clamp(40px, 8vw, 50px);
    }

    .work-process__header {
        padding: 0 4px;
    }

    .work-process__visual {
        position: static;
        top: auto;
        order: 2;
        margin-top: 4px;
    }

    .work-process__timeline {
        order: 1;
    }

    .work-process__illustration {
        --illustration-width: 100%;
        width: 100%;
        max-width: min(100%, 360px);
        margin: 0 auto;
        transform: none;
    }

    .work-process__step {
        grid-template-columns: 36px 18px 52px minmax(0, 1fr);
        column-gap: 10px;
        padding-bottom: 20px;
    }

    .work-process__number {
        padding-top: 16px;
        font-size: 26px;
    }

    .work-process__line {
        padding-top: 22px;
    }

    .work-process__icon {
        width: 52px;
        height: 52px;
    }

    .work-process__icon-image {
        --icon-size: 40px;
    }

    .work-process__card {
        padding: 18px 20px;
    }

    .work-process__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .work-process__btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .work-process__step {
        grid-template-columns: 32px 16px 48px minmax(0, 1fr);
        column-gap: 8px;
    }

    .work-process__number {
        font-size: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .work-process-section:not(.is-visible) .work-process__title,
    .work-process-section:not(.is-visible) .work-process__subtitle,
    .work-process-section:not(.is-visible) .work-process__step,
    .work-process-section:not(.is-visible) .work-process__visual {
        opacity: 1;
        transform: none;
    }

    .work-process-section.is-visible .work-process__title,
    .work-process-section.is-visible .work-process__subtitle,
    .work-process-section.is-visible .work-process__step,
    .work-process-section.is-visible .work-process__visual {
        animation: none;
    }

    .work-process__card {
        transition: none;
    }

    .work-process__card:hover {
        transform: none;
    }

    .work-process__btn {
        transition: none;
    }
}

/* =========================
   ЦЕНЫ / PRICING
   ========================= */

@keyframes pricing-fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-section {
    background: linear-gradient(180deg, #f8fbff 0%, var(--white) 100%);
    overflow-x: clip;
}

.pricing-header {
    max-width: 820px;
    margin: 0 auto 40px;
    text-align: center;
}

.pricing-header__title {
    margin: 0;
    color: var(--text);
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

@media (min-width: 900px) {
    .pricing-header__title {
        font-size: clamp(30px, 2.8vw, 38px);
        white-space: nowrap;
    }
}

.pricing-header__subtitle {
    max-width: 520px;
    margin: 14px auto 0;
    color: var(--gray);
    font-size: 16px;
    line-height: 1.65;
}

.pricing-header__subtitle-break {
    display: none;
}

@media (max-width: 520px) {
    .pricing-header__subtitle-break {
        display: inline;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2.5vw, 24px);
    align-items: end;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 22px 20px 20px;

    background: var(--white);
    border: 1px solid #e6ebf4;
    border-radius: 22px;
    box-shadow: 0 14px 36px rgba(24, 48, 95, 0.07);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(24, 48, 95, 0.1);
}

.pricing-card--featured {
    padding-top: 28px;
    color: var(--white);
    background:
        linear-gradient(
            165deg,
            #1a72ff 0%,
            var(--blue) 48%,
            #0f57db 100%
        );
    border-color: transparent;
    box-shadow: 0 20px 48px rgba(18, 104, 255, 0.28);
}

.pricing-card--featured:hover {
    box-shadow: 0 24px 52px rgba(18, 104, 255, 0.34);
}

@media (min-width: 769px) {
    .pricing-card--featured {
        margin-bottom: 12px;
    }
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);

    display: inline-flex;
    align-items: center;
    padding: 6px 14px;

    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;

    background: linear-gradient(135deg, #ff4d8d 0%, #e91e8c 100%);
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(233, 30, 140, 0.35);
}

.pricing-card__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.pricing-card__intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.pricing-card__plan-icon-img {
    display: block;
    width: 58px;
    height: 58px;
    max-width: none;
    object-fit: contain;
    flex-shrink: 0;
    margin: 0 auto;
}

.pricing-grid .pricing-card:nth-child(1) .pricing-card__plan-icon-img {
    width: 58px;
    height: 58px;
}

.pricing-grid .pricing-card:nth-child(2) .pricing-card__plan-icon-img {
    width: 82px;
    height: 82px;
}

.pricing-grid .pricing-card:nth-child(3) .pricing-card__plan-icon-img {
    width: 78px;
    height: 78px;
}

.pricing-card__name {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
}

.pricing-card--featured .pricing-card__name {
    color: var(--white);
}

.pricing-card__tagline {
    margin: 6px 0 0;
    color: var(--gray);
    font-size: 13px;
    line-height: 1.45;
    text-align: center;
}

.pricing-card--featured .pricing-card__tagline {
    color: rgba(255, 255, 255, 0.82);
}

.pricing-card__minimum {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0 0;
    padding: 6px 14px;

    color: #b77900;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;

    background: #fff4cc;
    border: 1px solid #f4d675;
    border-radius: 999px;
}

.pricing-card--featured .pricing-card__minimum {
    color: #7a4e00;
    background: #ffd76a;
    border-color: #f0c14b;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.pricing-card__divider {
    height: 1px;
    margin: 18px 0 16px;
    background: #e8edf5;
}

.pricing-card--featured .pricing-card__divider {
    background: rgba(255, 255, 255, 0.22);
}

.pricing-card__services {
    flex: 1;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-service {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) auto;
    gap: 10px 8px;
    align-items: start;
    padding: 10px 0;
}

.pricing-service + .pricing-service {
    border-top: 1px solid #eef2f8;
}

.pricing-card--featured .pricing-service + .pricing-service {
    border-top-color: rgba(255, 255, 255, 0.14);
}

.pricing-service__icon {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    color: var(--blue);
    background: rgba(18, 104, 255, 0.09);
    border-radius: 10px;
}

.pricing-service__icon--featured {
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
}

.pricing-service__info {
    min-width: 0;
}

.pricing-service__title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text);
}

.pricing-card--featured .pricing-service__title {
    color: var(--white);
}

.pricing-service__desc {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    line-height: 1.4;
    color: #68738c;
}

.pricing-card--featured .pricing-service__desc {
    color: rgba(255, 255, 255, 0.78);
}

.pricing-price {
    padding-top: 2px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
    white-space: nowrap;
}

.pricing-card--featured .pricing-price {
    color: var(--white);
}

.pricing-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    margin-top: 18px;
    padding: 0 20px;

    color: var(--white);
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;

    background: var(--blue);
    border: 1px solid var(--blue);
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(18, 104, 255, 0.22);

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.pricing-button:hover {
    transform: translateY(-2px);
    background: var(--dark-blue);
    border-color: var(--dark-blue);
}

.pricing-button--inverse {
    color: var(--blue);
    background: var(--white);
    border-color: var(--white);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.pricing-button--inverse:hover {
    color: var(--dark-blue);
    background: #f3f7ff;
    border-color: #f3f7ff;
}

.pricing-button:focus-visible {
    outline: 2px solid rgba(18, 104, 255, 0.45);
    outline-offset: 2px;
}

.pricing-section:not(.is-visible) .pricing-header__title,
.pricing-section:not(.is-visible) .pricing-header__subtitle,
.pricing-section:not(.is-visible) .pricing-card {
    opacity: 0;
    transform: translateY(18px);
}

.pricing-section.is-visible .pricing-header__title {
    animation: pricing-fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.pricing-section.is-visible .pricing-header__subtitle {
    animation: pricing-fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.06s both;
}

.pricing-section.is-visible .pricing-card:nth-child(1) {
    animation: pricing-fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.pricing-section.is-visible .pricing-card:nth-child(2) {
    animation: pricing-fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}

.pricing-section.is-visible .pricing-card:nth-child(3) {
    animation: pricing-fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.32s both;
}

@media (max-width: 960px) and (min-width: 641px) {
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
    }

    .pricing-card--featured {
        grid-column: 1 / -1;
        max-width: 420px;
        margin: 0 auto;
        transform: none;
        min-height: auto;
    }

    .pricing-card--featured:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 640px) {
    .pricing-header {
        margin-bottom: 32px;
    }

    .pricing-header__title {
        white-space: normal;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: stretch;
    }

    .pricing-card--featured {
        transform: none;
        min-height: auto;
        max-width: none;
    }

    .pricing-card {
        padding: 20px 18px 18px;
    }

    .pricing-card__plan-icon-img {
        width: 48px;
        height: 48px;
    }

    .pricing-grid .pricing-card:nth-child(1) .pricing-card__plan-icon-img,
    .pricing-grid .pricing-card:nth-child(2) .pricing-card__plan-icon-img,
    .pricing-grid .pricing-card:nth-child(3) .pricing-card__plan-icon-img {
        width: 48px;
        height: 48px;
    }

    .pricing-service {
        grid-template-columns: 34px minmax(0, 1fr) auto;
        gap: 8px 6px;
    }

    .pricing-price {
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pricing-section:not(.is-visible) .pricing-header__title,
    .pricing-section:not(.is-visible) .pricing-header__subtitle,
    .pricing-section:not(.is-visible) .pricing-card {
        opacity: 1;
        transform: none;
    }

    .pricing-section.is-visible .pricing-header__title,
    .pricing-section.is-visible .pricing-header__subtitle,
    .pricing-section.is-visible .pricing-card {
        animation: none;
    }

    .pricing-card,
    .pricing-button {
        transition: none;
    }

    .pricing-card:hover,
    .pricing-card--featured:hover,
    .pricing-button:hover {
        transform: none;
    }
}

/* =========================
   FAQ
   ========================= */

@keyframes faq-fade-up {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-section {
    background: linear-gradient(180deg, var(--white) 0%, #f5f9ff 100%);
    overflow-x: clip;
}

.faq-header {
    max-width: 720px;
    margin: 0 auto 36px;
    text-align: center;
}

.faq-title {
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;

    color: var(--text);
    font-family: Onest, sans-serif;
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.faq-question-icon {
    display: block;
    width: 75px;
    height:75px;
    max-width: none;
    object-fit: contain;
    flex-shrink: 0;
}

.faq-subtitle {
    max-width: 620px;
    margin: 12px auto 0;
    color: var(--gray);
    font-size: 16px;
    line-height: 1.65;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.faq-item {
    overflow: hidden;
    background: var(--white);
    border: 1px solid #e3e9f3;
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(24, 48, 95, 0.05);

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

.faq-item:not(.is-open):hover {
    transform: translateY(-1px);
    border-color: rgba(18, 104, 255, 0.28);
    box-shadow: 0 14px 32px rgba(24, 48, 95, 0.08);
}

.faq-item.is-open {
    background:
        linear-gradient(
            180deg,
            #f4f9ff 0%,
            var(--white) 100%
        );
    border-color: rgba(18, 104, 255, 0.22);
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(18, 104, 255, 0.11);
}

.faq-item.is-open:hover {
    transform: none;
}

.faq-item__heading {
    margin: 0;
}

.faq-item__button {
    width: 100%;
    min-height: 76px;
    padding: 18px 22px;
    margin: 0;

    display: flex;
    align-items: center;
    gap: 16px;

    color: inherit;
    font: inherit;
    text-align: left;

    background: transparent;
    border: none;
    cursor: pointer;
}

.faq-item__button:focus-visible {
    outline: 2px solid rgba(18, 104, 255, 0.45);
    outline-offset: -2px;
}

.faq-item__question {
    flex: 1;
    min-width: 0;
    order: 1;
    color: var(--text);
    font-size: clamp(15px, 1.6vw, 18px);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.faq-item__toggle {
    position: relative;
    flex-shrink: 0;
    order: 2;
    margin-left: auto;
    width: 40px;
    height: 40px;
    border: 2px solid var(--blue);
    border-radius: 50%;

    transition:
        background 0.22s ease,
        border-color 0.22s ease;
}

.faq-item:not(.is-open) .faq-item__toggle:hover {
    background: rgba(18, 104, 255, 0.08);
}

.faq-item__toggle::before,
.faq-item__toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 1px;
    background: var(--blue);
    transform: translate(-50%, -50%);
    transition:
        transform 0.22s ease,
        opacity 0.18s ease,
        background-color 0.22s ease;
}

.faq-item__toggle::before {
    width: 14px;
    height: 2px;
}

.faq-item__toggle::after {
    width: 2px;
    height: 14px;
}

.faq-item.is-open .faq-item__toggle {
    background: var(--blue);
    border-color: var(--blue);
}

.faq-item.is-open .faq-item__toggle::before,
.faq-item.is-open .faq-item__toggle::after {
    background: var(--white);
}

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

.faq-item__answer-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item__answer-wrapper[hidden] {
    display: none;
}

.faq-item.is-open .faq-item__answer-wrapper {
    grid-template-rows: 1fr;
}

.faq-item__answer-inner {
    overflow: hidden;
    min-height: 0;
}

.faq-item__answer {
    position: relative;
    min-height: 132px;
    padding: 0 145px 28px 78px;
}

.faq-item__text {
    max-width: 100%;
    margin: 0;
    color: #56627a;
    font-size: 15px;
    line-height: 1.65;
}

.faq-item__illustration {
    position: absolute;
    top: 50%;
    right: 24px;
    width: 96px;
    height: 96px;
    transform: translateY(-50%);
    pointer-events: none;
}

.faq-item__illustration-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(18, 104, 255, 0.18) 0%,
        rgba(18, 104, 255, 0.04) 55%,
        transparent 72%
    );
}

.faq-item__shield {
    position: relative;
    z-index: 1;
    display: block;
    margin: 0 auto;
}

.faq-section:not(.is-visible) .faq-header,
.faq-section:not(.is-visible) .faq-item {
    opacity: 0;
    transform: translateY(16px);
}

.faq-section.is-visible .faq-header {
    animation: faq-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.faq-section.is-visible .faq-item:nth-child(1) {
    animation: faq-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

.faq-section.is-visible .faq-item:nth-child(2) {
    animation: faq-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.faq-section.is-visible .faq-item:nth-child(3) {
    animation: faq-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}

.faq-section.is-visible .faq-item:nth-child(4) {
    animation: faq-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.29s both;
}

.faq-section.is-visible .faq-item:nth-child(5) {
    animation: faq-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.36s both;
}

.faq-section.is-visible .faq-item:nth-child(6) {
    animation: faq-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.43s both;
}

.faq-section.is-visible .faq-item:nth-child(7) {
    animation: faq-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

@media (max-width: 768px) {
    .faq-header {
        margin-bottom: 28px;
    }

    .faq-title {
        flex-direction: column;
        gap: 8px;
    }

    .faq-question-icon {
        width: 34px;
        height: 34px;
    }

    .faq-item__button {
        min-height: auto;
        padding: 16px 18px;
    }

    .faq-item__question {
        font-size: 16px;
    }

    .faq-item__answer {
        padding: 0 18px 18px 18px;
    }

    .faq-item__text {
        max-width: none;
    }

    .faq-item__illustration {
        display: none;
    }
}

@media (max-width: 480px) {
    .faq-item__question {
        font-size: 15px;
    }

    .faq-item__toggle {
        width: 36px;
        height: 36px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .faq-section:not(.is-visible) .faq-header,
    .faq-section:not(.is-visible) .faq-item {
        opacity: 1;
        transform: none;
    }

    .faq-section.is-visible .faq-header,
    .faq-section.is-visible .faq-item {
        animation: none;
    }

    .faq-item,
    .faq-item__toggle,
    .faq-item__toggle::before,
    .faq-item__toggle::after,
    .faq-item__answer-wrapper {
        transition: none;
    }

    .faq-item:not(.is-open):hover {
        transform: none;
    }
}

/* =========================
   ДОПОЛНИТЕЛЬНЫЕ УСЛУГИ
   ========================= */

@keyframes additional-services-fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes additional-services-fade-in-right {
    from {
        opacity: 0;
        transform: translateX(24px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes additional-services-fade-in-left {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.additional-services {
    padding-top: clamp(72px, 8vw, 90px);
    padding-bottom: clamp(72px, 8vw, 90px);
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fbff 50%,
            #ffffff 100%
        );
    overflow-x: clip;
}

.additional-services__header {
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
}

.additional-services__heading {
    margin: 0;
    color: var(--text);
    font-size: clamp(28px, 3.2vw, 38px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.additional-services__description {
    max-width: 820px;
    margin: 14px auto 0;
    color: var(--gray);
    font-size: 16px;
    line-height: 1.65;
}

.additional-services__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
    gap: clamp(50px, 6vw, 90px);
    align-items: center;
    margin-top: clamp(48px, 5vw, 56px);
}

.additional-services__content {
    display: flex;
    flex-direction: column;
    align-self: center;
    width: 100%;
    min-width: 0;
}

.additional-services__list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.additional-service-row {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px 18px;
    padding: 18px 0;
}

.additional-service-row:not(:last-child) {
    border-bottom: 1px solid #e7edf6;
}

.additional-service-row__icon {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--blue);
    background: #edf4ff;
    border-radius: 14px;
}

.additional-service-row__icon-img {
    width: 42px;
    height: 42px;
    max-width: none;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.additional-services__list .additional-service-row:nth-child(1) .additional-service-row__icon-img {
    width: 66px;
    height: 66px;
}

.additional-services__list .additional-service-row:nth-child(2) .additional-service-row__icon-img {
    width: 52px;
    height: 52px;
}

.additional-services__list .additional-service-row:nth-child(3) .additional-service-row__icon-img {
    width: 72px;
    height: 72px;
}

.additional-service-row__title {
    margin: 0;
    color: var(--text);
    font-size: clamp(18px, 1.8vw, 21px);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.additional-service-row__description {
    margin: 6px 0 0;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.5;
}

.additional-service-row__price {
    margin: 0;
    align-self: center;
    color: var(--blue);
    font-size: clamp(17px, 1.6vw, 20px);
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.additional-service-row__price--accent {
    color: #3d5fdb;
}

.additional-services__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 62px;
    margin-top: clamp(32px, 3.5vw, 40px);
    padding: 0 24px;

    color: var(--white);
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;

    background: linear-gradient(
        110deg,
        #0868ff 0%,
        #1767ff 45%,
        #6f4cff 100%
    );
    border: 1px solid transparent;
    border-radius: 17px;
    box-shadow: 0 8px 20px rgba(38, 86, 220, 0.14);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        filter 0.22s ease;
}

.additional-services__button-icon {
    flex-shrink: 0;
    color: #fc1c8b;
}

.additional-services__button:hover {
    transform: translateY(-2px);
    filter: brightness(1.035);
    box-shadow: 0 10px 24px rgba(38, 86, 220, 0.18);
}

.additional-services__button:active {
    transform: translateY(0);
}

.additional-services__button:focus-visible {
    outline: 2px solid rgba(18, 104, 255, 0.45);
    outline-offset: 2px;
}

.additional-services__visual {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.additional-services__image {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
    margin-left: auto;
    object-fit: contain;
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(24, 48, 95, 0.08);
}

.additional-services:not(.is-visible) .additional-services__header,
.additional-services:not(.is-visible) .additional-services__content,
.additional-services:not(.is-visible) .additional-services__visual {
    opacity: 0;
}

.additional-services:not(.is-visible) .additional-services__header {
    transform: translateY(18px);
}

.additional-services:not(.is-visible) .additional-services__content {
    transform: translateX(-20px);
}

.additional-services:not(.is-visible) .additional-services__visual {
    transform: translateX(24px);
}

.additional-services.is-visible .additional-services__header {
    animation: additional-services-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.additional-services.is-visible .additional-services__content {
    animation: additional-services-fade-in-left 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.additional-services.is-visible .additional-services__visual {
    animation: additional-services-fade-in-right 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

@media (max-width: 820px) {
    .additional-services {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .additional-services__layout {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 40px;
    }

    .additional-services__visual {
        justify-content: center;
    }

    .additional-services__image {
        max-width: min(100%, 420px);
        margin-left: auto;
        margin-right: auto;
        border-radius: 16px;
    }

    .additional-service-row {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 8px 14px;
        align-items: start;
        padding: 16px 0;
    }

    .additional-service-row__icon {
        grid-column: 1;
        grid-row: 1 / 3;
        width: 52px;
        height: 52px;
    }

    .additional-service-row__content {
        grid-column: 2;
        grid-row: 1;
    }

    .additional-service-row__price {
        grid-column: 2;
        grid-row: 2;
        justify-self: start;
        margin-top: 2px;
        white-space: normal;
    }

    .additional-services__button {
        width: 100%;
        min-height: 60px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .additional-services:not(.is-visible) .additional-services__header,
    .additional-services:not(.is-visible) .additional-services__content,
    .additional-services:not(.is-visible) .additional-services__visual {
        opacity: 1;
        transform: none;
    }

    .additional-services.is-visible .additional-services__header,
    .additional-services.is-visible .additional-services__content,
    .additional-services.is-visible .additional-services__visual {
        animation: none;
    }

    .additional-services__button {
        transition: none;
    }

    .additional-services__button:hover {
        transform: none;
    }
}

/* =========================
   ПОДВАЛ
   ========================= */

   .footer {
    position: relative;
    overflow-x: clip;
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #0d3f91 0%,
            #124fae 48%,
            #0f469e 100%
        );
}

.footer::before {
    content: "";
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    pointer-events: none;

    background: linear-gradient(
        180deg,
        rgba(245, 248, 255, 0) 0%,
        rgba(18, 79, 174, 0.04) 55%,
        rgba(18, 79, 174, 0.12) 100%
    );
}

.footer__main {
    position: relative;
    z-index: 1;

    padding-top: 34px;
    padding-bottom: 26px;
}

.footer__top {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(400px, 1.3fr) auto;
    align-items: center;
    gap: clamp(14px, 2vw, 22px);
}

.footer__intro {
    min-width: 0;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    text-decoration: none;
}

.footer-logo__mark {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 40px;
    background: transparent;
}

.footer-logo__image {
    display: block;
    width: 44px;
    height: 40px;
    max-width: none;
    object-fit: contain;
}

.footer-logo__name {
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.04em;
    white-space: nowrap;
}

.footer-logo__name span {
    color: #d4ebff;
}

.footer__tagline {
    max-width: 300px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.5;
}

.footer__contacts-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 560px;
    min-height: 48px;
    padding: 0 12px;

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 13px;
}

.footer__contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 9px;

    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;

    transition: color 0.2s ease;
}

.footer__contact-item:hover {
    color: #ffffff;
}

.footer__contact-icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.92);
}

.footer__contact-icon svg {
    display: block;
    width: 17px;
    height: 17px;
}

.footer__contact-value {
    min-width: 0;
}

.footer__contacts-divider {
    width: 1px;
    height: 20px;
    margin: 0 4px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.16);
}

.footer__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 3px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__telegram {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;

    color: #ffffff;
    text-decoration: none;

    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 11px;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.footer__telegram:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.footer__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;

    color: #1268ff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;

    background: #ffffff;
    border-radius: 11px;
    box-shadow: 0 6px 18px rgba(8, 40, 110, 0.2);

    transition:
        background 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.footer__cta:hover {
    background: #f4f8ff;
    box-shadow: 0 10px 26px rgba(8, 40, 110, 0.28);
    transform: translateY(-1px);
}

.footer__navigation-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(36px, 5vw, 60px);
    max-width: 980px;
    margin-top: 36px;
    padding-top: 34px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav-col__title {
    margin: 0 0 12px;

    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.footer-nav-col__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-nav-col__list a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.35;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav-col__list a:hover {
    color: #ffffff;
}

.footer__bottom {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;

    padding-top: 18px;
    padding-bottom: 20px;

    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copyright {
    margin: 0;
}

.footer__legal {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__legal a:hover {
    color: rgba(255, 255, 255, 0.88);
}

.footer__legal-sep {
    color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 1024px) {
    .footer__top {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "intro intro"
            "contacts actions";
    }

    .footer__intro {
        grid-area: intro;
    }

    .footer__contacts-panel {
        grid-area: contacts;
        justify-content: flex-start;
    }

    .footer__actions {
        grid-area: actions;
        justify-self: end;
    }

    .footer__navigation-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: none;
        gap: 32px 48px;
    }

    .footer-nav-col:last-child {
        grid-column: 1 / -1;
        max-width: 420px;
    }
}

@media (max-width: 720px) {
    .footer__main {
        padding-top: 32px;
        padding-bottom: 24px;
    }

    .footer__top {
        grid-template-columns: 1fr;
        grid-template-areas:
            "intro"
            "contacts"
            "actions";
        gap: 16px;
    }

    .footer__contacts-panel {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: none;
        min-height: 0;
        padding: 10px 12px;
    }

    .footer__contacts-divider {
        width: 100%;
        height: 1px;
        margin: 2px 0;
    }

    .footer__contact-item {
        padding: 6px 4px;
        white-space: normal;
    }

    .footer__actions {
        width: 100%;
        justify-content: stretch;
    }

    .footer__cta {
        flex: 1;
    }

    .footer__navigation-row {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 28px;
        padding-top: 28px;
    }

    .footer-nav-col:last-child {
        max-width: none;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 16px;
        padding-bottom: 18px;
    }
}

@media (max-width: 480px) {
    .footer__tagline br {
        display: none;
    }

    .footer__tagline {
        max-width: none;
    }
}

@media (min-width: 1051px) {
    .button--header {
        min-height: 48px;
        padding: 0 24px;
        font-size: 15px;
    }
}

@media (max-width: 819px) {
    .header__content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        column-gap: 16px;
    }

    .navigation {
        display: none;
    }

    .header__actions {
        margin-left: auto;
    }
}

@media (max-width: 600px) {
    .button--header {
        display: none;
    }

    .header-logo img {
        height: 34px;
        width: auto;
    }

    .header-social {
        width: 44px;
        height: 44px;
    }

    .header-telegram-icon {
        width: 48px;
        height: 48px;
    }
}


@media (max-width: 1024px) {
    .hero-showcase {
        width: min(100%, 860px);
        height: clamp(550px, 52vw, 650px);
        margin-right: -24px;
    }

    .seller-scene {
        min-height: clamp(550px, 52vw, 650px);
    }

    .seller-scene__macbook {
        left: 57%;
        top: 56%;
        width: clamp(780px, 150%, 980px);
        max-width: none;
    }

    .hero-product--fan {
        top: 5%;
        left: 22%;
        width: 112px;
    }

    .hero-product--headphones {
        top: 9%;
        right: -2%;
        width: 110px;
        z-index: 7;
    }

    .hero-product--controller {
        top: 48%;
        left: -2%;
        width: 106px;
        z-index: 7;
    }

    .hero-product--drill {
        bottom: -2%;
        left: 38%;
        width: 110px;
        z-index: 9;
    }

    .hero-product--sneakers {
        bottom: 0;
        right: -3%;
        width: 110px;
        z-index: 9;
    }
}

@media (max-width: 820px) {
    .hero__content {
        grid-template-columns: 1fr;
    }

    .hero__information {
        padding: 20px 0 12px;
        max-width: none;
    }

    .hero__visual {
        min-height: auto;
        margin: 0 auto;
        width: 100%;
    }

    .hero-showcase {
        width: min(100%, 540px);
        height: clamp(480px, 72vw, 560px);
        margin-right: auto;
        margin-left: auto;
        overflow: visible;
    }

    .seller-scene {
        min-height: 480px;
    }

    .seller-scene__macbook {
        left: 56%;
        top: 55%;
        width: clamp(560px, 140%, 680px);
        max-width: none;
    }

    .hero-product--fan {
        top: 3%;
        left: 14%;
        width: clamp(112px, 30vw, 130px);
    }

    .hero-product--headphones {
        top: 8%;
        right: 0;
        width: 90px;
        z-index: 7;
    }

    .hero-product--controller {
        top: 47%;
        left: -3%;
        width: 88px;
        z-index: 7;
    }

    .hero-product--drill {
        bottom: 0;
        left: 36%;
        width: 92px;
        z-index: 9;
    }

    .hero-product--sneakers {
        bottom: 2%;
        right: -2%;
        width: 92px;
        z-index: 9;
    }
}

@media (max-width: 620px) {
    .container {
        width: calc(100% - 28px);
    }

    .header__content {
        height: 72px;
        min-height: 72px;
        max-height: 72px;
        column-gap: 16px;
    }

    .header-logo img {
        height: 40px;
    }

    .button--header {
        min-height: 44px;
        padding: 0 16px;
        font-size: 14px;
        margin-left: auto;
    }

    .hero {
        padding-top: 44px;
    }

    .hero__title {
        font-size: clamp(38px, 10vw, 44px);
        letter-spacing: -1.2px;
    }

    .hero__description {
        font-size: 15px;
    }

    .hero__buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .hero__buttons .button {
        width: 100%;
        min-height: 52px;
        padding: 0 22px;
        font-size: 15px;
    }

    .hero__advantages {
        flex-direction: column;
    }

    .hero__advantages-item {
        padding: 14px 16px;
    }

    .hero__advantages-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(150, 200, 255, 0.35);
    }

    .hero__visual {
        width: 100%;
        min-height: auto;
        padding-bottom: 8px;
    }

    .hero-showcase {
        width: 100%;
        max-width: 400px;
        height: auto;
        min-height: 440px;
        padding: 0 8px 24px;
        margin: 0 auto;
        overflow: visible;
    }

    .seller-scene {
        min-height: 420px;
    }

    .seller-scene__macbook {
        left: 55%;
        top: 53%;
        width: clamp(400px, 128%, 480px);
        max-width: none;
    }

    .hero-product--fan {
        top: 3%;
        left: 12%;
    }

    .hero-product--headphones {
        top: 6%;
        right: 0;
        width: 82px;
    }

    .hero-product--controller {
        top: 45%;
        left: -3%;
        width: 80px;
        z-index: 5;
    }

    .hero-product--drill {
        bottom: 0;
        left: 32%;
        width: 86px;
        z-index: 9;
    }

    .hero-product--sneakers {
        bottom: 2%;
        right: 0;
        width: 86px;
        z-index: 9;
    }

    .section {
        padding: 54px 0;
    }

    .section-heading h2 {
        font-size: 28px;
    }
}

@media (max-width: 380px) {
    .hero__buttons {
        grid-template-columns: 1fr;
    }
}

