:root {
    --new-bg: #f6f7fb;
    --new-surface: #ffffff;
    --new-surface-2: #eef2ff;
    --new-dark: #101527;
    --new-dark-2: #172033;
    --new-text: #20263a;
    --new-muted: #687086;
    --new-line: rgba(29, 38, 61, .1);
    --new-primary: #4f6cff;
    --new-primary-2: #7c4dff;
    --new-accent: #14b8a6;
    --new-danger: #ff6b8a;
    --new-radius: 22px;
    --new-radius-sm: 16px;
    --new-shadow: 0 22px 70px rgba(28, 38, 72, .12);
    --new-shadow-soft: 0 16px 40px rgba(28, 38, 72, .08);
    --new-container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.new-home-body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at 10% 0%, rgba(79, 108, 255, .14), transparent 34rem),
        radial-gradient(circle at 90% 8%, rgba(20, 184, 166, .14), transparent 32rem),
        var(--new-bg);
    color: var(--new-text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

body.new-home-body.is-menu-open {
    overflow: hidden;
}

.new-container {
    width: min(var(--new-container), calc(100% - 40px));
    margin: 0 auto;
}

.new-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(246, 247, 251, .82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(16, 21, 39, .08);
    transition: box-shadow .25s ease, background .25s ease;
}

.new-header.is-scrolled {
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 16px 40px rgba(16, 21, 39, .08);
}

.new-header__inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.new-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--new-dark);
    text-decoration: none;
    font-weight: 850;
    letter-spacing: -.04em;
    white-space: nowrap;
}

.new-logo__mark {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--new-primary), var(--new-primary-2));
    color: #fff;
    box-shadow: 0 12px 26px rgba(79, 108, 255, .26);
}

.new-logo__text {
    font-size: 1.08rem;
}

.new-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.new-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    color: var(--new-muted);
    text-decoration: none;
    font-weight: 700;
    font-size: .94rem;
    transition: .22s ease;
}

.new-nav a:hover {
    color: var(--new-dark);
    background: rgba(16, 21, 39, .06);
}

.new-nav__login {
    color: var(--new-dark) !important;
    background: #fff;
    box-shadow: inset 0 0 0 1px var(--new-line);
}

.new-nav__cta {
    color: #fff !important;
    background: linear-gradient(135deg, var(--new-primary), var(--new-primary-2)) !important;
    box-shadow: 0 12px 26px rgba(79, 108, 255, .22);
}

.new-menu-toggle {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    background: #fff;
    box-shadow: inset 0 0 0 1px var(--new-line);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.new-menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--new-dark);
    transition: .22s ease;
}

.new-menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.new-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.new-menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.new-main {
    overflow: hidden;
}

.new-hero {
    padding: 70px 0 38px;
}

.new-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
    gap: 54px;
    align-items: center;
}

.new-eyebrow,
.new-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(79, 108, 255, .1);
    color: #334edb;
    font-weight: 850;
    font-size: .82rem;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.new-eyebrow i {
    color: var(--new-accent);
}

.new-hero h1,
.new-section h2,
.new-cta h2 {
    margin: 18px 0 16px;
    color: var(--new-dark);
    line-height: .98;
    letter-spacing: -.06em;
}

.new-hero h1 {
    max-width: 760px;
    font-size: clamp(2.6rem, 6vw, 5.6rem);
}

.new-hero__lead {
    max-width: 660px;
    margin: 0;
    color: var(--new-muted);
    font-size: clamp(1.04rem, 1.4vw, 1.22rem);
}

.new-hero__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.new-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 850;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.new-btn:hover {
    transform: translateY(-2px);
}

.new-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--new-primary), var(--new-primary-2));
    box-shadow: 0 18px 38px rgba(79, 108, 255, .27);
}

.new-btn--ghost {
    color: var(--new-dark);
    background: rgba(255, 255, 255, .72);
    border-color: var(--new-line);
}

.new-btn--ghost:hover {
    background: #fff;
    box-shadow: var(--new-shadow-soft);
}

.new-btn--light {
    color: var(--new-dark);
    background: #fff;
    box-shadow: 0 18px 38px rgba(0, 0, 0, .16);
}

.new-hero__benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.new-hero__benefits span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .68);
    color: var(--new-muted);
    font-weight: 750;
    font-size: .92rem;
    box-shadow: inset 0 0 0 1px rgba(16, 21, 39, .07);
}

.new-hero__benefits i {
    color: var(--new-primary);
}

.new-hero__visual {
    position: relative;
    min-height: 560px;
}

.new-hero__visual::before {
    content: "";
    position: absolute;
    inset: 22px 18px auto auto;
    width: 78%;
    height: 62%;
    border-radius: 36px;
    background: linear-gradient(135deg, rgba(79, 108, 255, .28), rgba(20, 184, 166, .23));
    filter: blur(8px);
    transform: rotate(-4deg);
}

.new-phone-card {
    position: absolute;
    top: 6px;
    right: 40px;
    z-index: 2;
    width: min(330px, 82vw);
    padding: 18px;
    border-radius: 34px;
    background: rgba(255, 255, 255, .84);
    border: 1px solid rgba(255, 255, 255, .72);
    box-shadow: var(--new-shadow);
    backdrop-filter: blur(22px);
}

.new-phone-card__top {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
}

.new-phone-card__top span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(16, 21, 39, .18);
}

.new-card-preview {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 22px;
    background: linear-gradient(135deg, #111827, #27324a);
    color: #fff;
}

.new-card-preview__avatar {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 255, 255, .55), transparent 24%),
        linear-gradient(135deg, var(--new-primary), var(--new-accent));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28);
}

.new-card-preview strong,
.new-card-preview small {
    display: block;
}

.new-card-preview small {
    margin-top: 4px;
    color: rgba(255, 255, 255, .68);
}

.new-card-preview__links {
    display: grid;
    gap: 10px;
    margin: 16px 0;
}

.new-card-preview__links span {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 16px;
    background: #fff;
    color: var(--new-dark);
    font-weight: 800;
    box-shadow: inset 0 0 0 1px rgba(16, 21, 39, .07);
}

.new-card-preview__links i {
    color: var(--new-primary);
}

.new-phone-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 14px;
    border-radius: 18px;
    background: rgba(79, 108, 255, .1);
    color: #334edb;
    font-weight: 850;
}

.new-hero-gallery {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    z-index: 3;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    align-items: center;
    gap: 12px;
}

.new-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(155px, 190px);
    gap: 14px;
    overflow-x: auto;
    padding: 18px 8px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.new-carousel::-webkit-scrollbar {
    display: none;
}

.new-carousel__item {
    position: relative;
    aspect-ratio: 9 / 14;
    border-radius: 24px;
    overflow: hidden;
    scroll-snap-align: center;
    background: #dde3f4;
    box-shadow: 0 18px 38px rgba(28, 38, 72, .14);
    transform: scale(.92);
    opacity: .72;
    transition: .25s ease;
}

.new-carousel__item.is-active {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 22px 52px rgba(28, 38, 72, .22);
}

.new-carousel__item img,
.new-example-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.new-carousel__empty,
.new-empty-state {
    padding: 24px;
    border-radius: var(--new-radius);
    background: #fff;
    color: var(--new-muted);
    font-weight: 800;
    text-align: center;
    box-shadow: var(--new-shadow-soft);
}

.new-carousel-btn {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--new-dark);
    box-shadow: var(--new-shadow-soft);
    cursor: pointer;
    transition: .22s ease;
}

.new-carousel-btn:hover {
    transform: translateY(-2px);
    color: var(--new-primary);
}

.new-strip {
    padding: 16px 0 46px;
}

.new-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.new-strip__grid div {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .74);
    border: 1px solid rgba(16, 21, 39, .07);
    box-shadow: var(--new-shadow-soft);
}

.new-strip__grid strong,
.new-strip__grid span {
    display: block;
}

.new-strip__grid strong {
    color: var(--new-dark);
    font-size: 1.05rem;
}

.new-strip__grid span {
    margin-top: 4px;
    color: var(--new-muted);
    font-size: .92rem;
}

.new-section {
    padding: 82px 0;
    position: relative;
}

.new-section--soft {
    background: rgba(255, 255, 255, .54);
    border-top: 1px solid rgba(16, 21, 39, .06);
    border-bottom: 1px solid rgba(16, 21, 39, .06);
}

.new-section--dark {
    background:
        radial-gradient(circle at 15% 0%, rgba(79, 108, 255, .25), transparent 30rem),
        linear-gradient(135deg, #101527, #172033);
    color: #fff;
}

.new-section--dark h2,
.new-section--dark h3 {
    color: #fff;
}

.new-section--dark p {
    color: rgba(255, 255, 255, .72);
}

.new-section-head {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.new-section-head h2,
.new-split-head h2,
.new-security h2,
.new-cta h2 {
    font-size: clamp(2rem, 4vw, 3.35rem);
}

.new-section-head p,
.new-split-head p,
.new-security p,
.new-cta p {
    margin: 0;
    color: var(--new-muted);
    font-size: 1.04rem;
}

.new-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.new-feature-card,
.new-step,
.new-security-card,
.tweet-item,
.specialist-item {
    border: 1px solid rgba(16, 21, 39, .08);
    background: rgba(255, 255, 255, .82);
    box-shadow: var(--new-shadow-soft);
}

.new-feature-card {
    min-height: 230px;
    padding: 26px;
    border-radius: var(--new-radius);
    transition: .22s ease;
}

.new-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--new-shadow);
}

.new-feature-card i {
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(79, 108, 255, .1);
    color: var(--new-primary);
    font-size: 1.2rem;
}

.new-feature-card h3 {
    margin: 20px 0 8px;
    color: var(--new-dark);
    font-size: 1.22rem;
    letter-spacing: -.03em;
}

.new-feature-card p,
.new-step p,
.new-security-card span {
    margin: 0;
    color: var(--new-muted);
}

.new-split-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.new-split-head > div {
    max-width: 740px;
}

.new-link-btn,
.new-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--new-primary);
    text-decoration: none;
    font-weight: 850;
}

.new-link-btn {
    min-height: 46px;
    padding: 0 17px;
    border-radius: 999px;
    background: #fff;
    box-shadow: inset 0 0 0 1px var(--new-line);
    white-space: nowrap;
}

.new-dynamic-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.new-loader-card {
    min-height: 156px;
    border-radius: var(--new-radius);
    background: linear-gradient(90deg, rgba(255,255,255,.62), rgba(255,255,255,.95), rgba(255,255,255,.62));
    background-size: 220% 100%;
    animation: newShimmer 1.3s linear infinite;
    box-shadow: var(--new-shadow-soft);
}

.new-loader-card--tall {
    min-height: 250px;
}

.tweet-item {
    display: flex;
    gap: 14px;
    min-width: 0;
    padding: 18px;
    border-radius: var(--new-radius);
}

.tweet-avatar {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    object-fit: cover;
    border-radius: 16px;
    background: var(--new-surface-2);
}

.tweet-content {
    min-width: 0;
    flex: 1;
}

.tweet-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--new-muted);
    font-size: .82rem;
}

.author_tweets {
    color: var(--new-dark);
    text-decoration: none;
}

.author_tweets:hover {
    color: var(--new-primary);
}

.tweet-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    color: var(--new-text);
    word-break: break-word;
}

.reactions {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 14px;
}

.reaction {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(16, 21, 39, .06);
    color: var(--new-muted);
    font-size: .84rem;
}

.reaction.active {
    background: rgba(79, 108, 255, .12);
    color: var(--new-primary);
}

.specialist-item {
    min-width: 0;
    padding: 22px;
    border-radius: var(--new-radius);
    text-align: center;
}

.specialist-item img {
    width: 78px;
    height: 78px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 14px 26px rgba(28, 38, 72, .16);
}

.specialist-item h3 {
    margin: 15px 0 6px;
    color: var(--new-dark);
    letter-spacing: -.03em;
}

.specialist-item p {
    margin: 0 auto;
    color: var(--new-muted);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.specialist-item .professions {
    margin: 12px 0;
    color: var(--new-primary);
    font-weight: 800;
    font-size: .9rem;
}

.specialist-item .actions {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.specialist-item .actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 13px;
    border-radius: 999px;
    background: rgba(79, 108, 255, .1);
    color: var(--new-primary);
    text-decoration: none;
    font-weight: 850;
    font-size: .9rem;
}

.specialist-item .actions a:first-child {
    background: var(--new-primary);
    color: #fff;
}

.new-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.new-step {
    padding: 26px;
    border-radius: var(--new-radius);
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .12);
    box-shadow: none;
}

.new-step span {
    display: inline-flex;
    color: var(--new-accent);
    font-weight: 900;
    font-size: .9rem;
    letter-spacing: .12em;
}

.new-step h3 {
    margin: 18px 0 8px;
    font-size: 1.24rem;
}

.new-examples-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.new-example-card {
    position: relative;
    min-height: 300px;
    border-radius: 28px;
    overflow: hidden;
    background: #dde3f4;
    box-shadow: var(--new-shadow-soft);
    transition: .22s ease;
}

.new-example-card::after {
    content: "Открыть";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    min-height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, .86);
    color: var(--new-dark);
    font-weight: 850;
    opacity: 0;
    transform: translateY(10px);
    transition: .22s ease;
}

.new-example-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--new-shadow);
}

.new-example-card:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.new-security {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 34px;
    align-items: center;
}

.new-security__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.new-security-card {
    padding: 22px;
    border-radius: var(--new-radius);
}

.new-security-card i {
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    border-radius: 15px;
    background: rgba(20, 184, 166, .12);
    color: var(--new-accent);
}

.new-security-card strong,
.new-security-card span {
    display: block;
}

.new-security-card strong {
    margin: 16px 0 6px;
    color: var(--new-dark);
}

.new-text-link {
    margin-top: 18px;
}

.new-cta {
    padding: 72px 0 86px;
}

.new-cta__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: clamp(28px, 5vw, 54px);
    border-radius: 34px;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, .22), transparent 22rem),
        linear-gradient(135deg, var(--new-primary), var(--new-primary-2));
    color: #fff;
    box-shadow: 0 28px 70px rgba(79, 108, 255, .3);
}

.new-cta__box .new-section-kicker {
    background: rgba(255, 255, 255, .16);
    color: #fff;
}

.new-cta__box h2 {
    color: #fff;
}

.new-cta__box p {
    max-width: 620px;
    color: rgba(255, 255, 255, .78);
}

.new-footer {
    padding: 54px 0 26px;
    background: #0f1424;
    color: rgba(255, 255, 255, .68);
}

.new-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr 1fr;
    gap: 34px;
}

.new-logo--footer {
    color: #fff;
}

.new-footer h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 1rem;
}

.new-footer p {
    margin: 14px 0 0;
}

.new-footer a:not(.new-logo) {
    display: block;
    width: fit-content;
    margin: 8px 0;
    color: rgba(255, 255, 255, .68);
    text-decoration: none;
}

.new-footer a:not(.new-logo):hover {
    color: #fff;
}

.new-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: .92rem;
}

.new-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease;
    transition-delay: var(--reveal-delay, 0s);
}

.new-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes newShimmer {
    from { background-position: 100% 0; }
    to { background-position: -100% 0; }
}

@media (max-width: 1060px) {
    .new-hero__grid,
    .new-security {
        grid-template-columns: 1fr;
    }

    .new-hero__visual {
        min-height: 500px;
    }

    .new-phone-card {
        right: 50%;
        transform: translateX(50%);
    }

    .new-feature-grid,
    .new-dynamic-row,
    .new-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .new-examples-grid,
    .new-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .new-strip__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 860px) {
    .new-menu-toggle {
        display: flex;
    }

    .new-nav {
        position: fixed;
        left: 20px;
        right: 20px;
        top: 88px;
        display: grid;
        gap: 8px;
        padding: 14px;
        border-radius: 24px;
        background: rgba(255, 255, 255, .96);
        box-shadow: var(--new-shadow);
        transform: translateY(-14px);
        opacity: 0;
        visibility: hidden;
        transition: .22s ease;
    }

    .new-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .new-nav a {
        justify-content: flex-start;
        min-height: 48px;
        border-radius: 16px;
    }

    .new-split-head,
    .new-cta__box,
    .new-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .new-security__cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .new-container {
        width: min(100% - 28px, var(--new-container));
    }

    .new-header__inner {
        min-height: 68px;
    }

    .new-hero {
        padding-top: 44px;
    }

    .new-hero__grid {
        gap: 32px;
    }

    .new-hero__lead {
        font-size: 1rem;
    }

    .new-hero__actions,
    .new-btn {
        width: 100%;
    }

    .new-hero__visual {
        min-height: 430px;
    }

    .new-phone-card {
        width: min(300px, 90vw);
        top: 0;
    }

    .new-hero-gallery {
        grid-template-columns: 38px minmax(0, 1fr) 38px;
        gap: 6px;
    }

    .new-carousel {
        grid-auto-columns: minmax(124px, 142px);
        gap: 10px;
        padding: 14px 4px;
    }

    .new-carousel-btn {
        width: 38px;
        height: 38px;
    }

    .new-section {
        padding: 58px 0;
    }

    .new-feature-grid,
    .new-dynamic-row,
    .new-steps,
    .new-examples-grid,
    .new-footer__grid,
    .new-strip__grid {
        grid-template-columns: 1fr;
    }

    .new-feature-card {
        min-height: 0;
    }

    .new-example-card {
        min-height: 360px;
    }

    .tweet-item {
        flex-direction: column;
    }

    .tweet-meta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }

    .new-reveal {
        opacity: 1;
        transform: none;
    }
}

/* v3: точечная полировка после просмотра */
.new-hero {
    padding: 54px 0 30px;
}

.new-hero__grid {
    grid-template-columns: minmax(0, .92fr) minmax(410px, 1.08fr);
    gap: 46px;
}

.new-eyebrow,
.new-section-kicker {
    padding: 8px 12px;
    font-size: .78rem;
}

.new-hero h1 {
    max-width: 650px;
    font-size: clamp(2.35rem, 4.55vw, 4.55rem);
    line-height: 1.03;
    letter-spacing: -.055em;
    text-wrap: balance;
}

.new-hero__lead {
    max-width: 620px;
    font-size: clamp(1rem, 1.15vw, 1.13rem);
}

.new-hero__actions {
    margin-top: 26px;
}

.new-hero__benefits {
    margin-top: 22px;
}

.new-hero__benefits span {
    background: rgba(255, 255, 255, .78);
    box-shadow: inset 0 0 0 1px rgba(16, 21, 39, .07), 0 10px 24px rgba(28, 38, 72, .06);
}

.new-hero__visual {
    min-height: 500px;
}

.new-hero__visual::before {
    inset: 34px 8px auto auto;
    width: 74%;
    height: 54%;
    opacity: .84;
}

.new-phone-card {
    top: 32px;
    right: 34px;
    width: min(320px, 82vw);
    border-radius: 30px;
}

.new-hero-gallery {
    bottom: 0;
}

.new-carousel {
    grid-auto-columns: minmax(135px, 170px);
    padding: 14px 8px;
}

.new-carousel__item {
    border-radius: 22px;
}

.new-strip {
    padding: 10px 0 44px;
}

.new-strip__grid div {
    padding: 16px 17px;
    border-radius: 18px;
}

.new-section-head h2,
.new-split-head h2,
.new-security h2,
.new-cta h2 {
    font-size: clamp(1.85rem, 3.25vw, 2.85rem);
    line-height: 1.05;
    letter-spacing: -.05em;
    text-wrap: balance;
}

.new-specialists-section {
    padding: 72px 0;
}

.new-specialists-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(24px, 4vw, 42px);
    border-radius: 32px;
    background:
        radial-gradient(circle at 8% 10%, rgba(79, 108, 255, .18), transparent 24rem),
        radial-gradient(circle at 92% 22%, rgba(20, 184, 166, .14), transparent 22rem),
        rgba(255, 255, 255, .76);
    border: 1px solid rgba(16, 21, 39, .08);
    box-shadow: 0 26px 80px rgba(28, 38, 72, .11);
}

.new-specialists-panel::before {
    content: "";
    position: absolute;
    inset: auto -8% -26% 52%;
    height: 260px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(79, 108, 255, .2), rgba(124, 77, 255, .08));
    filter: blur(22px);
    pointer-events: none;
}

.new-specialists-head {
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
}

.new-specialists-head > div {
    max-width: 660px;
}

.new-specialists-head h2 {
    margin-bottom: 12px;
}

.new-link-btn--light {
    background: rgba(255, 255, 255, .82);
    box-shadow: inset 0 0 0 1px rgba(16, 21, 39, .08), 0 14px 30px rgba(28, 38, 72, .08);
}

.new-specialists-points {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 24px;
}

.new-specialists-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    color: var(--new-muted);
    font-size: .9rem;
    font-weight: 800;
    box-shadow: inset 0 0 0 1px rgba(16, 21, 39, .07);
}

.new-specialists-points i {
    color: var(--new-primary);
}

.new-specialists-grid {
    position: relative;
    z-index: 1;
}

body.new-home-body .specialist-item {
    position: relative;
    min-width: 0;
    padding: 24px 22px 20px;
    border-radius: 24px;
    border: 1px solid rgba(16, 21, 39, .08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .84));
    box-shadow: 0 18px 46px rgba(28, 38, 72, .1);
    text-align: left;
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

body.new-home-body .specialist-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--new-primary), var(--new-accent));
}

body.new-home-body .specialist-item:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 108, 255, .22);
    box-shadow: 0 24px 60px rgba(28, 38, 72, .14);
}

body.new-home-body .specialist-item img {
    width: 76px;
    height: 76px;
    display: block;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 16px 32px rgba(28, 38, 72, .18);
}

body.new-home-body .specialist-item h3 {
    margin: 18px 0 8px;
    color: var(--new-dark);
    font-size: 1.16rem;
    line-height: 1.15;
    letter-spacing: -.035em;
}

body.new-home-body .specialist-item p {
    margin: 0;
    color: var(--new-muted);
    font-size: .96rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.new-home-body .specialist-item .professions {
    display: inline-flex;
    width: fit-content;
    margin: 14px 0 16px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(79, 108, 255, .1);
    color: var(--new-primary);
    font-size: .84rem;
    font-weight: 900;
}

body.new-home-body .specialist-item .actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
}

body.new-home-body .specialist-item .actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 13px;
    border-radius: 999px;
    background: rgba(79, 108, 255, .1);
    color: var(--new-primary);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 900;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

body.new-home-body .specialist-item .actions a:hover {
    transform: translateY(-1px);
}

body.new-home-body .specialist-item .actions a:first-child {
    background: linear-gradient(135deg, var(--new-primary), var(--new-primary-2));
    color: #fff;
    box-shadow: 0 12px 24px rgba(79, 108, 255, .2);
}

body.new-home-body .tweet-item {
    min-width: 0;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(16, 21, 39, .08);
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 18px 46px rgba(28, 38, 72, .08);
}

body.new-home-body .tweet-avatar {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: 16px;
    background: var(--new-surface-2);
}

body.new-home-body .tweet-text,
body.new-home-body .tweet-text p {
    margin: 0;
    color: var(--new-text);
    line-height: 1.5;
}

body.new-home-body .tweet-text a {
    color: var(--new-primary);
    font-weight: 800;
    text-decoration: none;
}

body.new-home-body .tweet-meta small {
    color: var(--new-muted);
}

body.new-home-body .reactions .reaction {
    cursor: pointer;
}

.cookie-consent {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: none;
    width: min(360px, calc(100% - 40px));
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(16, 21, 39, .1);
    box-shadow: 0 22px 60px rgba(28, 38, 72, .18);
    backdrop-filter: blur(18px);
}

.cookie-consent.active {
    display: block;
}

.cookie-content {
    display: grid;
    gap: 12px;
    color: var(--new-muted);
    font: 500 .92rem/1.45 Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.cookie-content p {
    margin: 0;
}

.cookie-link {
    color: var(--new-primary);
    font-weight: 800;
    text-decoration: none;
}

.cookie-button {
    width: fit-content;
    min-height: 38px;
    padding: 0 15px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--new-primary), var(--new-primary-2));
    color: #fff;
    font-weight: 850;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(79, 108, 255, .22);
}

@media (max-width: 1060px) {
    .new-hero__grid {
        grid-template-columns: 1fr;
    }

    .new-hero h1 {
        max-width: 760px;
    }

    .new-hero__visual {
        min-height: 470px;
    }

    .new-phone-card {
        top: 14px;
        right: 50%;
        transform: translateX(50%);
    }
}

@media (max-width: 760px) {
    .new-hero {
        padding-top: 36px;
    }

    .new-hero h1 {
        font-size: clamp(2.15rem, 11vw, 3.3rem);
    }

    .new-hero__visual {
        min-height: 410px;
    }

    .new-specialists-panel {
        border-radius: 24px;
        padding: 22px;
    }

    .new-specialists-points {
        gap: 8px;
    }

    .new-specialists-points span {
        width: 100%;
    }

    .cookie-consent {
        right: 14px;
        bottom: 14px;
        width: calc(100% - 28px);
    }
}

/* v4: carousel, specialists and cookie polish */
body.new-home-body i.fas,
body.new-home-body i.fa-solid {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

body.new-home-body i.fab,
body.new-home-body i.fa-brands {
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
}

.new-hero-gallery {
    left: 50%;
    right: auto;
    bottom: 18px;
    width: min(560px, 100%);
    transform: translateX(-50%);
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 10px;
}

.new-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 50%;
    padding: 16px 6px;
}

.new-carousel__item {
    cursor: zoom-in;
    will-change: transform, opacity;
}

.new-carousel-btn {
    position: relative;
    z-index: 6;
    flex: 0 0 auto;
}

.new-specialists-section {
    padding: 64px 0;
}

.new-specialists-panel {
    padding: clamp(22px, 3.4vw, 36px);
    border-radius: 28px;
}

.new-specialists-head {
    margin-bottom: 24px;
}

.new-specialists-head > div {
    max-width: 620px;
}

.new-specialists-head p {
    max-width: 560px;
    font-size: 1rem;
}

body.new-home-body .specialist-item {
    display: flex;
    min-height: 315px;
    flex-direction: column;
    align-items: center;
    padding: 24px 22px 22px;
    text-align: center;
}

body.new-home-body .specialist-item img {
    width: 74px;
    height: 74px;
    border-radius: 22px;
}

body.new-home-body .specialist-item h3 {
    margin: 16px 0 8px;
}

body.new-home-body .specialist-item p {
    max-width: 320px;
    min-height: 3.05em;
    -webkit-line-clamp: 2;
    text-align: center;
}

body.new-home-body .specialist-item .professions {
    margin: 13px 0 16px;
}

body.new-home-body .specialist-item .actions {
    width: 100%;
    margin-top: auto;
    justify-content: center;
}

.new-security-card i::before,
.new-feature-card i::before {
    display: block;
    line-height: 1;
}

.cookie-consent {
    right: 22px;
    bottom: 22px;
    width: min(390px, calc(100% - 44px));
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 24px 70px rgba(28, 38, 72, .2);
}

.cookie-content {
    gap: 13px;
    color: var(--new-text);
    font-size: .93rem;
}

.cookie-content p {
    color: var(--new-muted);
}

.cookie-content label {
    display: grid;
    grid-template-columns: 19px 1fr;
    gap: 9px;
    align-items: start;
    color: var(--new-text);
    font-weight: 650;
    line-height: 1.35;
}

.cookie-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    appearance: none;
    border-radius: 6px;
    border: 1px solid rgba(16, 21, 39, .22);
    background: #fff;
    cursor: pointer;
    box-shadow: inset 0 0 0 2px #fff;
}

.cookie-consent input[type="checkbox"]:checked {
    border-color: var(--new-primary);
    background: var(--new-primary);
}

.cookie-consent input[type="checkbox"]:focus-visible,
.cookie-consent button:focus-visible {
    outline: 3px solid rgba(79, 108, 255, .24);
    outline-offset: 2px;
}

.cookie-consent button,
.cookie-button {
    min-height: 39px;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    font-weight: 850;
    cursor: pointer;
}

.cookie-consent button:not(:disabled),
.cookie-button:not(:disabled) {
    background: linear-gradient(135deg, var(--new-primary), var(--new-primary-2));
    color: #fff;
    box-shadow: 0 12px 26px rgba(79, 108, 255, .22);
}

.cookie-consent button:disabled,
.cookie-button:disabled {
    background: rgba(16, 21, 39, .08);
    color: rgba(16, 21, 39, .38);
    cursor: not-allowed;
    box-shadow: none;
}

.cookie-consent button + button,
.cookie-button + .cookie-button {
    margin-left: 8px;
}

@media (max-width: 1060px) {
    .new-hero-gallery {
        width: min(620px, 100%);
    }
}

@media (max-width: 760px) {
    .new-hero-gallery {
        bottom: 4px;
        grid-template-columns: 38px minmax(0, 1fr) 38px;
    }

    .new-carousel {
        grid-auto-columns: minmax(118px, 145px);
        padding: 12px 4px;
    }

    .new-carousel-btn {
        width: 38px;
        height: 38px;
    }

    body.new-home-body .specialist-item {
        min-height: auto;
    }

    .cookie-consent {
        right: 12px;
        bottom: 12px;
        width: calc(100% - 24px);
        border-radius: 20px;
    }
}


/* v5: final cookie-consent override. This block is intentionally very specific,
   because the cookie markup can be injected by site counters after the main CSS. */
body.new-home-body .cookie-consent,
.cookie-consent {
    position: fixed !important;
    right: max(18px, env(safe-area-inset-right)) !important;
    bottom: max(18px, env(safe-area-inset-bottom)) !important;
    left: auto !important;
    top: auto !important;
    z-index: 2147483000 !important;
    width: min(384px, calc(100vw - 36px)) !important;
    max-width: calc(100vw - 36px) !important;
    min-width: 0 !important;
    height: auto !important;
    max-height: calc(100vh - 36px) !important;
    overflow: auto !important;
    padding: 18px !important;
    border: 1px solid rgba(29, 38, 61, .1) !important;
    border-left: 1px solid rgba(29, 38, 61, .1) !important;
    border-radius: 24px !important;
    background: rgba(255, 255, 255, .97) !important;
    color: #20263a !important;
    box-shadow: 0 24px 70px rgba(18, 25, 45, .18) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    text-align: left !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
}

body.new-home-body .cookie-consent.active,
.cookie-consent.active {
    display: block !important;
    visibility: visible !important;
}

body.new-home-body .cookie-content,
.cookie-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #20263a !important;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    text-align: left !important;
}

body.new-home-body .cookie-content p,
.cookie-content p {
    margin: 0 0 2px !important;
    color: #475067 !important;
    font-size: 14px !important;
    font-weight: 550 !important;
    line-height: 1.48 !important;
    text-align: left !important;
    opacity: 1 !important;
}

body.new-home-body .cookie-content a,
.cookie-content a,
body.new-home-body .cookie-link,
.cookie-link {
    color: #4f6cff !important;
    font-weight: 800 !important;
    text-decoration: none !important;
}

body.new-home-body .cookie-content label,
.cookie-content label {
    display: grid !important;
    grid-template-columns: 20px minmax(0, 1fr) !important;
    gap: 10px !important;
    align-items: start !important;
    width: 100% !important;
    margin: 0 !important;
    color: #20263a !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.36 !important;
    letter-spacing: 0 !important;
    text-align: left !important;
    opacity: 1 !important;
}

body.new-home-body .cookie-content label span,
.cookie-content label span,
body.new-home-body .cookie-content label strong,
.cookie-content label strong {
    color: inherit !important;
    font: inherit !important;
    text-align: left !important;
    opacity: 1 !important;
}

body.new-home-body .cookie-consent input[type="checkbox"],
.cookie-consent input[type="checkbox"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    display: inline-grid !important;
    place-items: center !important;
    flex: 0 0 18px !important;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    margin: 1px 0 0 !important;
    border: 1px solid rgba(32, 38, 58, .22) !important;
    border-radius: 6px !important;
    background: #fff !important;
    box-shadow: inset 0 0 0 2px #fff !important;
    cursor: pointer !important;
    opacity: 1 !important;
}

body.new-home-body .cookie-consent input[type="checkbox"]:checked,
.cookie-consent input[type="checkbox"]:checked {
    border-color: #4f6cff !important;
    background-color: #4f6cff !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 13px 13px !important;
}

body.new-home-body .cookie-consent button,
body.new-home-body .cookie-button,
.cookie-consent button,
.cookie-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 118px !important;
    min-height: 42px !important;
    padding: 0 18px !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    font-family: inherit !important;
    font-size: 14px !important;
    font-weight: 850 !important;
    line-height: 1 !important;
    text-align: center !important;
    text-decoration: none !important;
    cursor: pointer !important;
    opacity: 1 !important;
}

body.new-home-body .cookie-consent button:not(:disabled),
body.new-home-body .cookie-button:not(:disabled),
.cookie-consent button:not(:disabled),
.cookie-button:not(:disabled) {
    background: linear-gradient(135deg, #4f6cff, #7c4dff) !important;
    color: #fff !important;
    box-shadow: 0 16px 32px rgba(79, 108, 255, .26) !important;
}

body.new-home-body .cookie-consent button:disabled,
body.new-home-body .cookie-button:disabled,
.cookie-consent button:disabled,
.cookie-button:disabled {
    background: rgba(32, 38, 58, .08) !important;
    color: rgba(32, 38, 58, .36) !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
}

body.new-home-body .cookie-content > div:last-child,
.cookie-content > div:last-child {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
    margin-top: 2px !important;
    text-align: left !important;
}

body.new-home-body .cookie-consent button + button,
body.new-home-body .cookie-button + .cookie-button,
.cookie-consent button + button,
.cookie-button + .cookie-button {
    margin-left: 0 !important;
}

@media (max-width: 760px) {
    body.new-home-body .cookie-consent,
    .cookie-consent {
        right: 12px !important;
        bottom: 12px !important;
        width: calc(100vw - 24px) !important;
        max-height: min(520px, calc(100vh - 24px)) !important;
        padding: 16px !important;
        border-radius: 22px !important;
    }

    body.new-home-body .cookie-content,
    .cookie-content {
        font-size: 13px !important;
    }

    body.new-home-body .cookie-content p,
    .cookie-content p {
        font-size: 13px !important;
    }

    body.new-home-body .cookie-consent button,
    body.new-home-body .cookie-button,
    .cookie-consent button,
    .cookie-button {
        min-width: 0 !important;
        flex: 1 1 120px !important;
    }
}

/* v6: prettier examples block + compact mobile horizontal showcase */
.new-examples-section {
    position: relative;
    padding: 70px 0;
}

.new-examples-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(22px, 4vw, 42px);
    border: 1px solid rgba(16, 21, 39, .08);
    border-radius: 34px;
    background:
        radial-gradient(circle at 12% 0%, rgba(79, 108, 255, .17), transparent 26rem),
        radial-gradient(circle at 92% 12%, rgba(20, 184, 166, .13), transparent 24rem),
        linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .72));
    box-shadow: 0 28px 80px rgba(28, 38, 72, .11);
}

.new-examples-panel::before {
    content: "";
    position: absolute;
    inset: auto -80px -140px 48%;
    height: 280px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(79, 108, 255, .2), rgba(124, 77, 255, .07));
    filter: blur(24px);
    pointer-events: none;
}

.new-examples-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.new-examples-head > div:first-child {
    max-width: 720px;
}

.new-examples-head h2 {
    margin: 16px 0 12px;
    color: var(--new-dark);
    font-size: clamp(1.95rem, 3.35vw, 3rem);
    line-height: 1.04;
    letter-spacing: -.055em;
    text-wrap: balance;
}

.new-examples-head p {
    max-width: 680px;
    margin: 0;
    color: var(--new-muted);
    font-size: clamp(1rem, 1.35vw, 1.14rem);
}

.new-examples-note {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex: 0 0 auto;
    min-height: 44px;
    padding: 0 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .82);
    color: var(--new-muted);
    font-weight: 850;
    font-size: .9rem;
    box-shadow: inset 0 0 0 1px rgba(16, 21, 39, .07), 0 14px 30px rgba(28, 38, 72, .07);
}

.new-examples-note i {
    color: var(--new-primary);
}

.new-examples-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.new-example-card {
    position: relative;
    display: block;
    min-height: 0;
    aspect-ratio: 9 / 13;
    padding-top: 28px;
    border: 1px solid rgba(16, 21, 39, .08);
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc, #e9edf6);
    box-shadow: 0 18px 42px rgba(28, 38, 72, .11);
    transform: translateZ(0);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.new-example-card::after {
    content: "";
    display: none;
}

.new-example-card:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 108, 255, .22);
    box-shadow: 0 28px 64px rgba(28, 38, 72, .16);
}

.new-example-card__chrome {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
    height: 28px;
    padding: 0 12px;
    background: rgba(255, 255, 255, .88);
    border-bottom: 1px solid rgba(16, 21, 39, .07);
}

.new-example-card__chrome i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(16, 21, 39, .18);
}

.new-example-card__chrome i:nth-child(1) { background: #ff6b6b; }
.new-example-card__chrome i:nth-child(2) { background: #ffca3a; }
.new-example-card__chrome i:nth-child(3) { background: #22c55e; }

.new-example-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    transition: transform .35s ease;
}

.new-example-card:hover img {
    transform: scale(1.025);
}

.new-example-card__label {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 3;
    display: grid;
    place-items: center;
    min-height: 40px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .88);
    color: var(--new-dark);
    font-size: .9rem;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(28, 38, 72, .12);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .22s ease, transform .22s ease;
}

.new-example-card:hover .new-example-card__label,
.new-example-card:focus-visible .new-example-card__label {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1060px) {
    .new-examples-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .new-examples-section {
        padding: 56px 0;
    }

    .new-examples-panel {
        padding: 22px 0 24px 18px;
        border-radius: 28px;
    }

    .new-examples-panel::after {
        content: "Листайте вбок →";
        position: relative;
        z-index: 2;
        display: inline-flex;
        margin-top: 14px;
        padding: 8px 12px;
        border-radius: 999px;
        background: rgba(255, 255, 255, .8);
        color: var(--new-muted);
        font-size: .82rem;
        font-weight: 850;
        box-shadow: inset 0 0 0 1px rgba(16, 21, 39, .07);
    }

    .new-examples-head {
        display: block;
        margin: 0 18px 18px 0;
    }

    .new-examples-head h2 {
        font-size: clamp(1.85rem, 9vw, 2.55rem);
    }

    .new-examples-head p {
        font-size: .98rem;
    }

    .new-examples-note {
        display: none;
    }

    .new-examples-grid {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(236px, 78vw);
        grid-template-columns: none;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 4px 18px 10px 0;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .new-examples-grid::-webkit-scrollbar {
        display: none;
    }

    .new-example-card {
        scroll-snap-align: start;
        aspect-ratio: 9 / 13.2;
        border-radius: 24px;
        box-shadow: 0 18px 44px rgba(28, 38, 72, .14);
    }

    .new-example-card__label {
        opacity: 1;
        transform: none;
        min-height: 38px;
        font-size: .85rem;
    }
}

/* v7: стабильный блок примеров без Fancybox в мобильном листинге */
body.new-home-body.is-example-modal-open {
    overflow: hidden;
}

.new-examples-section {
    padding: 72px 0;
}

.new-examples-panel {
    overflow: hidden;
    padding: clamp(24px, 4vw, 46px);
    border-radius: 32px;
    background:
        radial-gradient(circle at 4% 0%, rgba(79, 108, 255, .12), transparent 28rem),
        radial-gradient(circle at 100% 16%, rgba(20, 184, 166, .10), transparent 26rem),
        linear-gradient(180deg, #ffffff, #f7f9ff);
    border: 1px solid rgba(16, 21, 39, .08);
    box-shadow: 0 26px 76px rgba(28, 38, 72, .10);
}

.new-examples-panel::before,
.new-examples-panel::after {
    display: none !important;
}

.new-examples-head {
    align-items: flex-start;
    margin-bottom: 24px;
}

.new-examples-head h2 {
    margin: 14px 0 10px;
    max-width: 720px;
    font-size: clamp(2rem, 3.2vw, 3.05rem);
    line-height: 1.02;
}

.new-examples-head p {
    max-width: 660px;
}

.new-examples-controls {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    padding-top: 8px;
}

.new-examples-arrow {
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(16, 21, 39, .08);
    border-radius: 999px;
    background: rgba(255, 255, 255, .9);
    color: var(--new-dark);
    box-shadow: 0 14px 34px rgba(28, 38, 72, .08);
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, color .18s ease;
}

.new-examples-arrow:hover {
    transform: translateY(-2px);
    color: var(--new-primary);
    box-shadow: 0 18px 42px rgba(28, 38, 72, .12);
}

.new-examples-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.new-example-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 0;
    aspect-ratio: auto;
    padding: 10px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(16, 21, 39, .08);
    box-shadow: 0 18px 46px rgba(28, 38, 72, .10);
    overflow: hidden;
    text-decoration: none;
    color: var(--new-dark);
    transform: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.new-example-card:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 108, 255, .2);
    box-shadow: 0 28px 64px rgba(28, 38, 72, .14);
}

.new-example-card::after,
.new-example-card__chrome,
.new-example-card__label {
    display: none !important;
}

.new-example-card__media {
    position: relative;
    display: block;
    height: 360px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(180deg, #eef2ff, #ffffff);
}

.new-example-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 58%, rgba(16, 21, 39, .10));
    pointer-events: none;
}

.new-example-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    transition: transform .28s ease;
}

.new-example-card:hover img {
    transform: scale(1.018);
}

.new-example-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 4px 2px;
}

.new-example-card__footer strong {
    font-size: .98rem;
    line-height: 1.1;
    letter-spacing: -.02em;
}

.new-example-card__footer em {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 11px;
    border-radius: 999px;
    background: rgba(79, 108, 255, .10);
    color: var(--new-primary);
    font-style: normal;
    font-size: .82rem;
    font-weight: 900;
}

.new-example-modal {
    position: fixed;
    inset: 0;
    z-index: 2147482500;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.new-example-modal.is-open {
    display: flex;
}

.new-example-modal__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(10, 15, 28, .78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
}

.new-example-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(860px, 100%);
    max-height: min(92vh, 980px);
    display: grid;
    place-items: center;
    padding: 14px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .36);
}

.new-example-modal__dialog img {
    width: auto;
    max-width: 100%;
    max-height: calc(92vh - 28px);
    display: block;
    border-radius: 20px;
    object-fit: contain;
}

.new-example-modal__close {
    position: absolute;
    top: -14px;
    right: -14px;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #4f6cff, #7c4dff);
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(79, 108, 255, .28);
    cursor: pointer;
}

@media (max-width: 1060px) {
    .new-examples-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .new-example-card__media {
        height: 320px;
    }
}

@media (max-width: 760px) {
    .new-examples-section {
        padding: 52px 0;
    }

    .new-examples-panel {
        margin-left: -2px;
        margin-right: -2px;
        padding: 22px 0 24px 18px;
        border-radius: 28px;
    }

    .new-examples-head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
        margin: 0 18px 18px 0;
    }

    .new-examples-head h2 {
        font-size: clamp(1.72rem, 8vw, 2.25rem);
        letter-spacing: -.05em;
    }

    .new-examples-head p {
        font-size: .96rem;
    }

    .new-examples-controls {
        padding-top: 5px;
        gap: 7px;
    }

    .new-examples-arrow {
        width: 40px;
        height: 40px;
        box-shadow: 0 12px 26px rgba(28, 38, 72, .09);
    }

    .new-examples-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 4px 18px 12px 0;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 0;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        touch-action: pan-x pan-y;
        scrollbar-width: none;
    }

    .new-examples-grid::-webkit-scrollbar {
        display: none;
    }

    .new-example-card {
        flex: 0 0 min(270px, 76vw);
        scroll-snap-align: start;
        padding: 9px;
        border-radius: 24px;
        box-shadow: 0 18px 42px rgba(28, 38, 72, .13);
        transform: none !important;
    }

    .new-example-card__media {
        height: min(420px, 88vw);
        border-radius: 19px;
    }

    .new-example-card img,
    .new-example-card:hover img {
        transform: none;
    }

    .new-example-card__footer {
        padding: 12px 4px 1px;
    }

    .new-example-card__footer strong {
        font-size: .94rem;
    }

    .new-example-card__footer em {
        min-height: 29px;
        font-size: .8rem;
    }

    .new-example-modal {
        padding: 10px;
    }

    .new-example-modal__dialog {
        width: 100%;
        max-height: 92vh;
        padding: 10px;
        border-radius: 22px;
    }

    .new-example-modal__dialog img {
        max-height: calc(92vh - 20px);
        border-radius: 16px;
    }

    .new-example-modal__close {
        top: 8px;
        right: 8px;
        width: 40px;
        height: 40px;
    }
}
