.hero { padding: 4.5rem 0 3rem; }
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
    grid-template-areas:
        "copy visual"
        "extra visual";
    gap: 1.75rem;
    align-items: start;
}
.hero-copy {
    grid-area: copy;
    align-self: center;
}
.hero-copy-extra {
    grid-area: extra;
}
.hero-copy-extra .hero-stats {
    margin-top: 0;
}
.hero-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    margin: 0.4rem 0 1rem;
}
.lead { color: var(--muted); font-size: 1.05rem; max-width: 58ch; }
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 700;
    margin: 0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0; }
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 2rem 0 0;
    padding: 0;
}
.hero-stats div {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.85rem;
}
.hero-stats dt {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
}
.hero-stats dd { margin: 0.2rem 0 0; color: var(--muted); font-size: 0.82rem; }
.hero-phone { display: flex; justify-content: center; }
.phone-frame {
    width: min(280px, 100%);
    border-radius: 32px;
    padding: 12px;
    background: linear-gradient(160deg, #1a2430, #0a0f14);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.phone-notch {
    width: 40%; height: 6px; margin: 0 auto 10px;
    border-radius: 999px; background: rgba(255,255,255,0.12);
}
.phone-screen {
    background: var(--bg-soft);
    border-radius: 22px;
    padding: 1.15rem 0.85rem;
    text-align: center;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
}
.phone-label { color: var(--muted); font-size: 0.85rem; margin: 0; }
.phone-progress {
    width: 70%; height: 4px; border-radius: 999px;
    background: rgba(255,255,255,0.08); overflow: hidden;
}
.phone-done { font-weight: 700; margin: 0.5rem 0 0; color: var(--accent); }
.phone-sub { color: var(--muted); font-size: 0.82rem; margin: 0; }
.phone-ok {
    margin-top: 0.75rem;
    padding: 0.45rem 1.5rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--card);
    color: var(--text);
    font-weight: 600;
}
.hero-visual { min-height: 320px; position: relative; }
.hero-visual-image {
    grid-area: visual;
    position: relative;
    width: 100%;
    max-width: none;
    justify-self: stretch;
    align-self: center;
}
.hero-visual-stage {
    position: relative;
    width: 100%;
    max-width: none;
    aspect-ratio: 880 / 1168;
    margin: 0;
    overflow: hidden;
    border-radius: 4px;
    contain: layout paint;
    background: transparent;
}
.hero-visual-stage .hero-visual-photo {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: none;
    z-index: 1;
}
.hero-visual-stage.is-assembled .hero-visual-photo {
    opacity: 1;
    transition: opacity 0.18s ease;
}
.hero-visual-mosaic {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    gap: 0;
    pointer-events: none;
    overflow: hidden;
    background: transparent;
    isolation: isolate;
}
.hero-visual-tile {
    position: relative;
    overflow: hidden;
    width: calc(100% + 3px);
    height: calc(100% + 3px);
    margin: 0 -1.5px -1.5px 0;
    opacity: 0;
    transform: translate3d(var(--tx, 0), var(--ty, 0), 0) rotate(var(--rot, 0deg)) scale(1.02);
    filter: blur(0.8px) brightness(1.02);
    will-change: transform, opacity;
    backface-visibility: hidden;
    background-repeat: no-repeat;
    transform-origin: center center;
}
.hero-visual-mosaic.is-assembling .hero-visual-tile {
    animation: heroTileAssemble var(--tile-duration, 1.5s) cubic-bezier(0.42, 0, 0.88, 0.38) forwards;
    animation-delay: var(--assemble-delay, 0s);
    animation-fill-mode: forwards;
}
@keyframes heroTileAssemble {
    6% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
        filter: none;
    }
}
.hero-visual-mosaic.is-complete .hero-visual-tile {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
}
.hero-visual-assemble-shine {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(
        108deg,
        transparent 38%,
        rgba(255, 255, 255, 0.06) 46%,
        rgba(0, 191, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.06) 54%,
        transparent 62%
    );
    transform: translateX(-130%) skewX(-12deg);
}
.hero-visual-assemble-shine.is-active {
    animation: heroAssembleShine 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes heroAssembleShine {
    0% { opacity: 0; transform: translateX(-130%) skewX(-12deg); }
    18% { opacity: 1; }
    100% { opacity: 0; transform: translateX(130%) skewX(-12deg); }
}
.hero-visual-stage.is-assembled .hero-visual-mosaic {
    display: none;
}
.hero-visual-stage:not(.is-assembled) .hero-phone-overlay {
    opacity: 0;
    visibility: hidden;
}
.hero-visual-stage.is-assembled .hero-phone-overlay {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.08s, visibility 0s linear 0s;
}
.hero-visual-stage:not(.is-assembled) .hero-phone-overlay__scene,
.hero-visual-stage:not(.is-assembled) .hero-phone-overlay__step {
    transition: none;
}

/* Экран телефона на dev4.png (880×1168) */
.hero-phone-overlay {
    --phone-left: 67%;
    --phone-top: 34.5%;
    --phone-width: 23%;
    --phone-height: 38.2%;
    --phone-radius: 5%;
    position: absolute;
    left: var(--phone-left);
    top: var(--phone-top);
    width: var(--phone-width);
    height: var(--phone-height);
    z-index: 6;
    border-radius: var(--phone-radius);
    overflow: hidden;
    background: transparent;
    pointer-events: none;
    box-sizing: border-box;
    font-size: clamp(0.44rem, 1.05vw, 0.7rem);
}
.hero-phone-overlay__ui {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.hero-phone-overlay__scene {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 7% 6% 5.5% 6%;
    box-sizing: border-box;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.65s ease;
    pointer-events: none;
}
.hero-phone-overlay__scene.is-active {
    opacity: 1;
}
.hero-phone-overlay__brand {
    flex: 0 0 auto;
    width: 100%;
    text-align: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.92em;
    letter-spacing: 0.1em;
    line-height: 1;
    margin: 0 0 0.35em;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.35);
    transform: none;
}
.hero-phone-overlay__brand-ai { color: #00bfff; }
.hero-phone-overlay__brand-pay { color: #fff; }
.hero-phone-overlay__pills {
    list-style: none;
    margin: 0.55em 0 0.4em;
    padding: 0;
    flex: 0 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
        "pill-tl pill-tr"
        "pill-center pill-center"
        "pill-bl pill-br";
    gap: 0.34em 0.28em;
    transform: none;
}
.hero-phone-overlay__pill {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    width: auto;
    min-width: 0;
    min-height: 2.85em;
    padding: 0.32em 0.42em;
    border-radius: 0.55em;
    border: 1px solid rgba(0, 191, 255, 0.42);
    background: rgba(6, 14, 28, 0.82);
    backdrop-filter: blur(6px);
    box-shadow:
        0 0 10px rgba(0, 191, 255, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
    font-size: 0.88em;
    line-height: 1.15;
    opacity: 0.82;
    transition: opacity 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
    overflow: hidden;
}
.hero-phone-overlay__pill--pos-tl { grid-area: pill-tl; }
.hero-phone-overlay__pill--pos-tr { grid-area: pill-tr; }
.hero-phone-overlay__pill--pos-center {
    grid-area: pill-center;
    width: 54%;
    justify-self: center;
}
.hero-phone-overlay__pill--pos-bl { grid-area: pill-bl; }
.hero-phone-overlay__pill--pos-br { grid-area: pill-br; }
.hero-phone-overlay__pill-label {
    display: flex;
    align-items: baseline;
    gap: 0.12em;
    width: 100%;
    min-width: 0;
    margin-bottom: 0.14em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hero-phone-overlay__pill-label strong {
    flex: 0 0 auto;
    font-size: 1em;
    letter-spacing: 0.02em;
    font-weight: 800;
}
.hero-phone-overlay__pill-country {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.92em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.68);
}
.hero-phone-overlay__pill-label strong::after {
    content: " - ";
    color: rgba(255, 255, 255, 0.32);
    font-weight: 500;
}
.hero-phone-overlay__pill em {
    display: block;
    font-style: normal;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.96);
    font-size: 1.12em;
    line-height: 1.05;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hero-phone-overlay__pill.is-active {
    opacity: 1;
    border-width: 1.5px;
    box-shadow:
        0 0 12px rgba(0, 191, 255, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.hero-phone-overlay__pill--pos-center.is-active {
    transform: scale(1.03);
}
.hero-phone-overlay__pill--rub strong { color: #00bfff; }
.hero-phone-overlay__pill--usd strong { color: #ff6b6b; }
.hero-phone-overlay__pill--eur strong { color: #818cf8; }
.hero-phone-overlay__pill--uah strong { color: #ffc107; }
.hero-phone-overlay__pill--rub.is-active { border-color: rgba(0, 191, 255, 0.62); box-shadow: 0 0 14px rgba(0, 191, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1); }
.hero-phone-overlay__pill--usd.is-active { border-color: rgba(255, 107, 107, 0.62); box-shadow: 0 0 14px rgba(255, 107, 107, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1); }
.hero-phone-overlay__pill--eur.is-active { border-color: rgba(129, 140, 248, 0.62); box-shadow: 0 0 14px rgba(129, 140, 248, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1); }
.hero-phone-overlay__pill--uah.is-active { border-color: rgba(255, 193, 7, 0.62); box-shadow: 0 0 14px rgba(255, 193, 7, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1); }
.hero-phone-overlay__steps {
    position: relative;
    flex: 1 1 auto;
    width: 100%;
    display: grid;
    align-items: center;
    justify-items: center;
    min-height: 0;
    overflow: hidden;
}
.hero-phone-overlay__step {
    grid-area: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.28em;
    text-align: center;
    width: 100%;
    max-height: 100%;
    overflow: hidden;
    opacity: 0;
    transform: translateY(4px) scale(0.98);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.hero-phone-overlay__amount {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.35em;
    font-weight: 800;
    line-height: 1;
    color: #00e676;
    text-shadow: 0 0 8px rgba(0, 230, 118, 0.45);
}
.hero-phone-overlay__status {
    margin: 0;
    font-size: 0.62em;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.2;
}
.hero-phone-overlay__progress {
    width: 75%;
    height: 0.28em;
    min-height: 2px;
    max-width: 100%;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    margin-top: 0.15em;
}
.hero-phone-overlay__methods {
    list-style: none;
    margin: 0.25em 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.15em;
    width: 100%;
    max-width: 100%;
}
.hero-phone-overlay__methods li {
    padding: 0.12em 0.28em;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.52em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.82);
    white-space: nowrap;
}
.hero-phone-overlay__success-icon {
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(0, 230, 118, 0.15);
    color: #00e676;
    box-shadow: 0 0 8px rgba(0, 230, 118, 0.35);
    font-size: 0.85em;
    font-weight: 800;
}
.hero-phone-overlay__sub {
    margin: 0;
    font-size: 0.55em;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.2;
}
.hero-phone-overlay__step.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.hero-phone-overlay__progress span {
    display: block;
    height: 100%;
    width: 35%;
    border-radius: inherit;
    background: linear-gradient(90deg, #0072ff, #00bfff);
    box-shadow: 0 0 8px rgba(0, 191, 255, 0.55);
    animation: heroPhoneProgress 2.4s ease-in-out infinite;
}
.hero-phone-overlay__success-icon::before { content: "✓"; }
.hero-phone-overlay__status--success { color: #00e676; font-weight: 700; }
.hero-phone-overlay__scene--usd .hero-phone-overlay__amount { color: #00e676; text-shadow: 0 0 10px rgba(0, 230, 118, 0.45); }
.hero-phone-overlay__scene--usd .hero-phone-overlay__progress span { background: linear-gradient(90deg, #00e676, #00c853); box-shadow: 0 0 8px rgba(0, 230, 118, 0.55); }
.hero-phone-overlay__scene--usd .hero-phone-overlay__status--success { color: #00e676; }
.hero-phone-overlay__scene--usd .hero-phone-overlay__success-icon { background: rgba(0, 230, 118, 0.15); color: #00e676; box-shadow: 0 0 10px rgba(0, 230, 118, 0.35); }
.hero-phone-overlay__scene--rub .hero-phone-overlay__amount { color: #00bfff; text-shadow: 0 0 12px rgba(0, 191, 255, 0.45); }
.hero-phone-overlay__scene--rub .hero-phone-overlay__progress span { background: linear-gradient(90deg, #0072ff, #00bfff); box-shadow: 0 0 8px rgba(0, 191, 255, 0.55); }
.hero-phone-overlay__scene--rub .hero-phone-overlay__status--success { color: #00bfff; }
.hero-phone-overlay__scene--rub .hero-phone-overlay__success-icon { background: rgba(0, 191, 255, 0.15); color: #00bfff; box-shadow: 0 0 12px rgba(0, 191, 255, 0.35); }

.hero-phone-overlay__scene--eur .hero-phone-overlay__amount { color: #818cf8; text-shadow: 0 0 12px rgba(99, 102, 241, 0.45); }
.hero-phone-overlay__scene--eur .hero-phone-overlay__progress span { background: linear-gradient(90deg, #6366f1, #818cf8); box-shadow: 0 0 8px rgba(99, 102, 241, 0.55); }
.hero-phone-overlay__scene--eur .hero-phone-overlay__status--success { color: #818cf8; }
.hero-phone-overlay__scene--eur .hero-phone-overlay__success-icon { background: rgba(99, 102, 241, 0.15); color: #818cf8; box-shadow: 0 0 12px rgba(99, 102, 241, 0.35); }

.hero-phone-overlay__scene--uah .hero-phone-overlay__amount { color: #ffc107; text-shadow: 0 0 12px rgba(255, 193, 7, 0.45); }
.hero-phone-overlay__scene--uah .hero-phone-overlay__progress span { background: linear-gradient(90deg, #ffc107, #005bbb); box-shadow: 0 0 8px rgba(255, 193, 7, 0.45); }
.hero-phone-overlay__scene--uah .hero-phone-overlay__status--success { color: #ffc107; }
.hero-phone-overlay__scene--uah .hero-phone-overlay__success-icon { background: rgba(255, 193, 7, 0.15); color: #ffc107; box-shadow: 0 0 12px rgba(255, 193, 7, 0.35); }

@keyframes heroPhoneProgress {
    0%, 100% { width: 28%; }
    50% { width: 88%; }
}

@media (max-width: 1024px) {
    .hero {
        padding: 3.25rem 0 2.5rem;
    }
    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
            "copy"
            "visual"
            "extra";
        gap: 1.5rem;
    }
    .hero-copy,
    .hero-copy-extra {
        align-self: auto;
    }
    .hero-visual-image {
        justify-self: center;
        width: min(100%, 480px);
    }
    .hero-visual-stage {
        width: 100%;
    }
    .hero-phone-overlay {
        font-size: clamp(0.4rem, 2.8vw, 0.62rem);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 2.75rem 0 2rem;
    }
    .hero-grid {
        gap: 1.25rem;
    }
    .hero-copy h1 {
        font-size: clamp(1.75rem, 7vw, 2.35rem);
    }
    .hero-visual-image {
        width: min(100%, 400px);
    }
    .hero-phone-overlay {
        --phone-left: 66.8%;
        --phone-top: 34.5%;
        --phone-width: 23.2%;
        --phone-height: 38.1%;
        font-size: clamp(0.38rem, 3.4vw, 0.56rem);
    }
    .hero-phone-overlay__scene {
        padding: 7% 5.5% 5.5% 5.5%;
    }
    .hero-phone-overlay__brand {
        font-size: 0.86em;
        margin-bottom: 0.3em;
    }
    .hero-phone-overlay__pills {
        margin-top: 0.45em;
        gap: 0.28em 0.22em;
    }
    .hero-phone-overlay__pill {
        min-height: 2.55em;
        padding: 0.28em 0.36em;
        font-size: 0.84em;
    }
    .hero-phone-overlay__pill--pos-center {
        width: 58%;
    }
    .hero-phone-overlay__amount {
        font-size: 1.28em;
    }
    .hero-phone-overlay__methods li {
        font-size: 0.48em;
    }
}

@media (max-width: 480px) {
    .hero-visual-image {
        width: min(92vw, 360px);
    }
    .hero-phone-overlay {
        --phone-left: 66.6%;
        --phone-width: 23.4%;
        font-size: clamp(0.34rem, 2.9vw, 0.5rem);
    }
    .hero-phone-overlay__pill {
        min-height: 2.35em;
        font-size: 0.8em;
    }
    .hero-phone-overlay__pill-country {
        font-size: 0.82em;
    }
    .hero-phone-overlay__methods {
        gap: 0.12em;
    }
}

@media (max-width: 360px) {
    .hero-visual-image {
        width: min(94vw, 320px);
    }
    .hero-phone-overlay__pill-label {
        font-size: 0.95em;
    }
    .hero-phone-overlay__pill-country {
        display: none;
    }
    .hero-phone-overlay__pill-label strong::after {
        content: "";
        margin: 0;
    }
}

@media (max-height: 560px) and (orientation: landscape) and (max-width: 900px) {
    .hero {
        padding-top: 2.5rem;
    }
    .hero-visual-image {
        width: min(calc(36vh * 880 / 1168), 92vw, 320px);
    }
    .hero-visual-stage {
        width: 100%;
        max-height: 36vh;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-visual-stage .hero-visual-photo { opacity: 1; transition: none; }
    .hero-visual-mosaic { display: none !important; }
    .hero-visual-assemble-shine { display: none; }
    .hero-visual-stage .hero-phone-overlay {
        opacity: 1;
        visibility: visible;
        transition: none;
    }
    .hero-phone-overlay__progress span { animation: none; width: 65%; }
    .hero-phone-overlay__step { transition: none; }
    .hero-phone-overlay__scene { transition: none; }
}

.nspk-qr-recommended {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1.25rem 1.75rem;
    align-items: start;
    padding: 1.35rem 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 20px;
    background: var(--card);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.nspk-qr-recommended-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}
.nspk-qr-recommended-icon {
    position: relative;
    width: 112px;
    height: 112px;
    flex-shrink: 0;
    margin-top: 0.15rem;
}
.nspk-qr-recommended-img {
    display: block;
    width: 112px;
    height: 112px;
    border-radius: 18px;
    object-fit: contain;
}
.nspk-qr-recommended-badge {
    display: inline-block;
    margin: 0 0 0.45rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(0, 230, 118, 0.12);
    border: 1px solid rgba(0, 230, 118, 0.35);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.nspk-qr-recommended-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    width: 100%;
    margin-bottom: 0.65rem;
}
.nspk-qr-recommended-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.3;
    color: var(--text);
}
.nspk-qr-recommended-rate {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0.18rem 0.55rem;
    border-radius: 999px;
    background: rgba(0, 191, 255, 0.12);
    border: 1px solid rgba(0, 191, 255, 0.28);
    color: #00bfff;
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
}
.nspk-qr-recommended-text {
    margin: 0 0 0.5rem;
    width: 100%;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.55;
    text-wrap: pretty;
}
.nspk-qr-recommended-sub {
    margin: 0 0 1rem;
    width: 100%;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.5;
    text-wrap: pretty;
}
.nspk-qr-recommended-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    width: 100%;
}
@media (max-width: 768px) {
    .nspk-qr-recommended {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    .nspk-qr-recommended-copy {
        align-items: center;
    }
    .nspk-qr-recommended-icon {
        margin-inline: auto;
        margin-top: 0;
    }
    .nspk-qr-recommended-heading {
        justify-content: center;
    }
    .nspk-qr-recommended-actions {
        justify-content: center;
    }
}

.nspk-section {
    display: grid;
    gap: 1.75rem;
    margin-bottom: 1.5rem;
}
.nspk-section-promo .nspk-qr-recommended {
    margin-bottom: 0;
}
.nspk-section-about {
    max-width: 72ch;
}
.nspk-section-title {
    margin: 0.35rem 0 0.75rem;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}
.nspk-section-lead {
    margin: 0 0 0.65rem;
    color: var(--text);
    line-height: 1.55;
}
.nspk-section-mission {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
    font-size: 0.92rem;
}
.nspk-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}
.nspk-stats div {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.85rem;
    text-align: center;
}
.nspk-stats dt {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
}
.nspk-stats dd {
    margin: 0.25rem 0 0;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.35;
}
.nspk-subtitle {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: 1.15rem;
}
.nspk-service-card h4,
.nspk-benefits h4,
.nspk-connect h4 {
    font-size: 0.95rem;
    margin: 0 0 0.35rem;
}
.nspk-channel-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}
.nspk-channel-list li {
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    font-size: 0.82rem;
    font-weight: 600;
}
.nspk-steps {
    margin: 0;
    padding: 0;
    list-style: none;
}
.nspk-steps h4 {
    margin: 0 0 0.35rem;
    font-size: 1rem;
}
.block-nspk {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
@media (max-width: 1024px) {
    .nspk-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
    .nspk-stats { grid-template-columns: 1fr 1fr; }
}

.block { padding: 3.5rem 0; }
.block-head { margin-bottom: 1.75rem; }
.block-head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    margin: 0.35rem 0 0.5rem;
}
.center-head { text-align: center; }
.center-head .lead { margin-inline: auto; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.product-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem;
    color: var(--text);
    transition: border-color 0.15s ease, transform 0.15s ease;
}
.product-card:hover {
    border-color: rgba(0, 230, 118, 0.35);
    transform: translateY(-2px);
    color: var(--text);
}
.product-card p { color: var(--muted); margin: 0; flex: 1; }
.product-more { color: var(--accent); font-weight: 700; font-size: 0.88rem; }
.product-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    flex-shrink: 0;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.product-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    border: 1px solid currentColor;
    opacity: 0;
    pointer-events: none;
}
.product-card:hover .product-icon::after {
    animation: themedIconPulse 1.8s ease-out infinite;
}
.product-icon svg {
    display: block;
    width: 24px;
    height: 24px;
}
.product-icon-card {
    color: #4da3ff;
    background: rgba(77, 163, 255, 0.12);
    border: 1px solid rgba(77, 163, 255, 0.28);
    box-shadow: 0 0 18px rgba(77, 163, 255, 0.08);
}
.product-icon-qr {
    color: #2ee6c8;
    background: rgba(46, 230, 200, 0.12);
    border: 1px solid rgba(46, 230, 200, 0.28);
    box-shadow: 0 0 18px rgba(46, 230, 200, 0.08);
}
.product-icon-link {
    color: #8b7dff;
    background: rgba(139, 125, 255, 0.12);
    border: 1px solid rgba(139, 125, 255, 0.28);
    box-shadow: 0 0 18px rgba(139, 125, 255, 0.08);
}
.product-icon-widget {
    color: #ffb84d;
    background: rgba(255, 184, 77, 0.12);
    border: 1px solid rgba(255, 184, 77, 0.28);
    box-shadow: 0 0 18px rgba(255, 184, 77, 0.08);
}
.product-card:hover .product-icon {
    transform: translateY(-1px) scale(1.05);
}
.product-card:hover .product-icon-card {
    box-shadow: 0 0 24px rgba(77, 163, 255, 0.35);
    border-color: rgba(77, 163, 255, 0.45);
}
.product-card:hover .product-icon-qr {
    box-shadow: 0 0 24px rgba(46, 230, 200, 0.35);
    border-color: rgba(46, 230, 200, 0.45);
}
.product-card:hover .product-icon-link {
    box-shadow: 0 0 24px rgba(139, 125, 255, 0.35);
    border-color: rgba(139, 125, 255, 0.45);
}
.product-card:hover .product-icon-widget {
    box-shadow: 0 0 24px rgba(255, 184, 77, 0.35);
    border-color: rgba(255, 184, 77, 0.45);
}
.product-icon-fallback {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line));
}
@media (prefers-reduced-motion: reduce) {
    .product-card:hover .product-icon::after,
    .payments-glass-item:hover .payments-glass-icon::after {
        animation: none;
    }
}

.showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2.5rem;
}
.showcase-row.is-reverse .showcase-copy { order: 2; }
.showcase-row.is-reverse .showcase-visual { order: 1; }
.showcase-copy h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    margin: 0 0 0.65rem;
}
.showcase-copy p { color: var(--muted); margin: 0; }
.showcase-visual {
    min-height: 220px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.showcase-visual.showcase-linkflow {
    padding: 0.65rem 0.85rem;
    background: transparent;
    border: none;
}
.showcase-visual.showcase-linkflow .linkflow-phone {
    width: min(370px, 90%);
}
.linkflow-phone {
    position: relative;
    width: min(420px, 100%);
    aspect-ratio: 1083 / 2245;
    margin: 0 auto;
}
.linkflow-phone__frame,
.linkflow-phone__overlay {
    position: absolute;
    inset: 0;
}
.linkflow-phone__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.linkflow-phone__overlay {
    pointer-events: none;
    z-index: 2;
}
.linkflow-phone__form {
    position: absolute;
    inset: 0;
}
.linkflow-phone__field {
    position: absolute;
    display: flex;
    align-items: center;
    color: #2f2f2f;
    font-size: clamp(8px, 2.65vw, 11px);
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1;
}
.linkflow-phone--mob3 .linkflow-phone__field,
.linkflow-phone--mob4 .linkflow-phone__field,
.linkflow-phone--mob5 .linkflow-phone__field {
    font-size: clamp(7px, 2.35vw, 10px);
    font-weight: 600;
}
.linkflow-phone--mob5 .linkflow-phone__field {
    align-items: flex-start;
    padding-bottom: 0;
}
.linkflow-phone--mob3 .linkflow-phone__field--number,
.linkflow-phone--mob4 .linkflow-phone__field--number,
.linkflow-phone--mob5 .linkflow-phone__field--number {
    top: 37.2%;
    font-size: clamp(10px, 3.15vw, 14px);
    letter-spacing: 0.03em;
}
.linkflow-phone--mob4 .linkflow-phone__field--number {
    top: 40.2%;
    left: 15%;
}
.linkflow-phone--mob5 .linkflow-phone__field--number {
    top: 37.8%;
    left: 15.2%;
    width: 68%;
    height: 2.2%;
}
.linkflow-phone__field--number {
    top: 38.1%;
    left: 11.5%;
    width: 72%;
    height: 2.6%;
}
.linkflow-phone__field--exp {
    top: 45.8%;
    left: 11.5%;
    width: 36%;
    height: 2.6%;
}
.linkflow-phone__field--cvv {
    top: 45.8%;
    left: 61.5%;
    width: 24%;
    height: 2.6%;
    justify-content: flex-start;
    padding-left: 9%;
}
.linkflow-phone--mob3 .linkflow-phone__field--cvv,
.linkflow-phone--mob4 .linkflow-phone__field--cvv,
.linkflow-phone--mob5 .linkflow-phone__field--cvv {
    top: 46.3%;
    left: 62.5%;
    padding-left: 11%;
    font-size: clamp(8px, 2.55vw, 11px);
}
.linkflow-phone--mob4 .linkflow-phone__field--cvv {
    top: 49.3%;
    left: 64.5%;
    padding-left: 9%;
}
.linkflow-phone--mob5 .linkflow-phone__field--cvv {
    top: 46.7%;
    left: 64.6%;
    width: 22%;
    height: 2.2%;
    padding-left: 8%;
}
.linkflow-phone__field--name {
    top: 55.8%;
    left: 11.5%;
    width: 72%;
    height: 2.6%;
}
.linkflow-phone--mob3 .linkflow-phone__field--name,
.linkflow-phone--mob4 .linkflow-phone__field--name,
.linkflow-phone--mob5 .linkflow-phone__field--name {
    top: 56.4%;
    left: 12.8%;
    font-size: clamp(9px, 2.85vw, 12px);
    letter-spacing: 0.03em;
}
.linkflow-phone--mob4 .linkflow-phone__field--name {
    top: 59.4%;
    left: 15.5%;
}
.linkflow-phone--mob5 .linkflow-phone__field--name {
    top: 57.8%;
    left: 15.2%;
    width: 68%;
    height: 2.2%;
}
.linkflow-phone--mob3 .linkflow-phone__field--exp,
.linkflow-phone--mob4 .linkflow-phone__field--exp,
.linkflow-phone--mob5 .linkflow-phone__field--exp {
    display: none;
}
.linkflow-phone__row {
    display: contents;
}
.linkflow-phone__value {
    white-space: nowrap;
    overflow: hidden;
}
.linkflow-phone__caret {
    display: inline-block;
    width: 1px;
    height: 1.05em;
    margin-left: 1px;
    background: #2e94e2;
    animation: linkflow-caret 0.85s step-end infinite;
}
.linkflow-phone__caret[hidden] {
    display: none;
}
.linkflow-phone__field.is-active .linkflow-phone__caret {
    opacity: 1;
}
@keyframes linkflow-caret {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
.linkflow-phone__pay,
.linkflow-phone__success {
    position: absolute;
    left: 11.5%;
    top: 77.4%;
    width: 77%;
    height: 6.4%;
    border: 0;
    border-radius: 10px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    color: #2e94e2;
    font-size: clamp(9px, 2.5vw, 12px);
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: default;
    pointer-events: none;
    transition: transform 0.18s ease;
    z-index: 3;
}
.linkflow-phone--mob3 .linkflow-phone__pay,
.linkflow-phone--mob3 .linkflow-phone__success,
.linkflow-phone--mob4 .linkflow-phone__pay,
.linkflow-phone--mob4 .linkflow-phone__success,
.linkflow-phone--mob5 .linkflow-phone__pay,
.linkflow-phone--mob5 .linkflow-phone__success {
    font-size: clamp(12px, 3.35vw, 15.5px);
    color: #fff;
    align-items: center;
    padding-top: 0.66em;
}
.linkflow-phone--mob4 .linkflow-phone__pay,
.linkflow-phone--mob4 .linkflow-phone__success {
    top: 80.4%;
    left: 15%;
    width: 70%;
}
.linkflow-phone--mob5 .linkflow-phone__pay,
.linkflow-phone--mob5 .linkflow-phone__success {
    top: 79.7%;
    left: 15.2%;
    width: 69.5%;
    height: 5.9%;
    padding-top: 0;
    align-items: center;
}
.linkflow-phone--mob3 .linkflow-phone__pay-label,
.linkflow-phone--mob3 .linkflow-phone__success-label,
.linkflow-phone--mob4 .linkflow-phone__pay-label,
.linkflow-phone--mob4 .linkflow-phone__success-label {
    line-height: 1;
}
.linkflow-phone--mob5 .linkflow-phone__pay-label,
.linkflow-phone--mob5 .linkflow-phone__success-label {
    line-height: 1;
}
.linkflow-phone--mob5 .linkflow-phone__pay-label {
    transform: translateY(-0.2em);
}
.linkflow-phone--mob5 .linkflow-phone__success-inner {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transform: translateY(-0.2em);
}
.linkflow-phone--mob5 .linkflow-phone__success-icon {
    flex-shrink: 0;
}
.linkflow-phone__pay[hidden],
.linkflow-phone__success[hidden] {
    display: none !important;
}
.linkflow-phone__pay.is-pressed {
    transform: scale(0.97);
}
.linkflow-phone__pay-label,
.linkflow-phone__success-label {
    position: relative;
    z-index: 1;
}
.linkflow-phone__pay::before,
.linkflow-phone__success::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: #51e151;
    z-index: 0;
}
.linkflow-phone--mob3 .linkflow-phone__pay::before,
.linkflow-phone--mob3 .linkflow-phone__success::before,
.linkflow-phone--mob4 .linkflow-phone__pay::before,
.linkflow-phone--mob4 .linkflow-phone__success::before,
.linkflow-phone--mob5 .linkflow-phone__pay::before,
.linkflow-phone--mob5 .linkflow-phone__success::before {
    display: none;
}
.linkflow-phone__success {
    animation: linkflow-success-in 0.35s ease forwards;
}
.linkflow-phone__success-inner {
    position: relative;
    z-index: 1;
}
.linkflow-phone__success-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.15em;
    height: 1.15em;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #2e94e2;
}
.linkflow-phone--mob3 .linkflow-phone__success-icon,
.linkflow-phone--mob4 .linkflow-phone__success-icon,
.linkflow-phone--mob5 .linkflow-phone__success-icon {
    background: rgba(255, 255, 255, 0.95);
    color: #3db83d;
}
.linkflow-phone__success-icon svg {
    display: block;
    width: 0.95em;
    height: 0.95em;
}
@keyframes linkflow-success-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@media (prefers-reduced-motion: reduce) {
    .linkflow-phone__caret { animation: none; }
    .linkflow-phone__success { animation: none; }
    .linkflow-phone__pay { transition: none; }
}
.showcase-banks {
    padding: 1rem 1.15rem 1.15rem;
    overflow: hidden;
}
.device-mock { width: 100%; text-align: center; }
.device-screen {
    display: inline-block;
    padding: 2rem 1.5rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0,230,118,0.12), rgba(0,188,212,0.1));
    border: 1px dashed rgba(0, 230, 118, 0.35);
    font-weight: 700;
}
.link-mock {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    width: min(280px, 100%);
}
.link-mock-url {
    padding: 0.55rem 0.75rem;
    border-radius: 10px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    font-size: 0.82rem;
    color: var(--muted);
    word-break: break-all;
}
.link-mock-btn {
    display: block;
    text-align: center;
    padding: 0.75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), #00c853);
    color: #04140a;
    font-weight: 700;
}
.link-mock-lg { width: min(320px, 100%); }
.link-mock-hint { color: var(--muted); font-size: 0.82rem; text-align: center; margin: 0; }

.cta-band {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.12), rgba(0, 188, 212, 0.08));
    border-block: 1px solid rgba(0, 230, 118, 0.2);
}
.cta-band-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}
.cta-band h2 {
    font-family: var(--font-display);
    margin: 0.25rem 0 0.35rem;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
}
.cta-band p { color: var(--muted); margin: 0; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}
.product-layout.is-reverse .product-demo { order: 2; }
.product-layout.is-reverse .product-copy { order: 1; }
.product-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1.25rem; }
.checkout-mock, .qr-mock {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}
.checkout-mock-sum, .qr-sum { font-size: 2rem; font-weight: 800; margin: 0.35rem 0 1rem; }
.checkout-mock-label { color: var(--muted); font-size: 0.85rem; margin: 0; }
.checkout-methods {
    list-style: none; margin: 0 0 1rem; padding: 0;
    display: flex; justify-content: center; gap: 0.5rem;
}
.checkout-methods li {
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-size: 0.82rem;
    color: var(--muted);
}
.checkout-methods .active { border-color: var(--accent); color: var(--accent); }
.qr-code {
    width: 140px; height: 140px; margin: 0 auto 1rem;
    background:
        linear-gradient(90deg, #fff 50%, transparent 50%) 0 0 / 20px 20px,
        linear-gradient(#fff 50%, transparent 50%) 0 0 / 20px 20px;
    background-color: #fff;
    border-radius: 8px;
    opacity: 0.92;
}

.page-hero { padding: 3rem 0 1.5rem; }
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin: 0.35rem 0;
}

.steps-row {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}
.steps-row-wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.steps-row li {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem;
}
.step-num {
    display: inline-block;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.35rem;
}

.tag-cloud-label { color: var(--muted); margin: 1.5rem 0 0.75rem; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.tag-cloud span {
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    font-size: 0.82rem;
    color: var(--muted);
}

.channel-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
    align-items: stretch;
}
.block-channels .channel-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
    overflow: hidden;
    border-radius: var(--radius);
    border-color: color-mix(in srgb, var(--channel-accent) 22%, var(--line));
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.block-channels .channel-card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--channel-accent) 45%, var(--line));
    box-shadow:
        0 18px 40px -22px color-mix(in srgb, var(--channel-accent) 55%, transparent),
        0 0 0 1px color-mix(in srgb, var(--channel-accent) 18%, transparent);
}
.channel-card__media-link {
    display: block;
    flex-shrink: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    color: inherit;
    text-decoration: none;
}
.channel-card__media {
    position: relative;
    display: grid;
    width: 100%;
    aspect-ratio: 768 / 1168;
    overflow: hidden;
    background: #05080d;
    line-height: 0;
}
.channel-card__video {
    display: block;
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center center;
}
/* DEV1.mp4 — 816×1104, чуть шире эталона 768×1168 */
.channel-card__video--fill {
    object-fit: fill;
}
.channel-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    padding: 1rem 1.1rem 1.1rem;
    background: linear-gradient(180deg, color-mix(in srgb, var(--channel-accent) 5%, var(--card)), var(--card));
}
.channel-card__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.05rem;
    line-height: 1.25;
    min-height: 2.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.channel-card__purpose {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
    min-height: 2.38rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.channel-card__details {
    flex: 1;
    min-height: 22rem;
    max-height: 22rem;
    overflow-y: auto;
    margin: 0;
    padding: 0.65rem 0.7rem;
    border-radius: 10px;
    background: color-mix(in srgb, var(--text) 3%, transparent);
    border: 1px solid var(--line);
    scrollbar-width: thin;
    scrollbar-color: color-mix(in srgb, var(--channel-accent) 45%, var(--line)) transparent;
}
.channel-card__details::-webkit-scrollbar {
    width: 5px;
}
.channel-card__details::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: color-mix(in srgb, var(--channel-accent) 40%, var(--line));
}
.channel-card__section-title {
    margin: 0.85rem 0 0.4rem;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}
.channel-card__heading-flag {
    display: inline-flex;
    flex-shrink: 0;
}
.channel-card__section-title:first-child {
    margin-top: 0;
}
.channel-card__section-text {
    margin: 0 0 0.5rem;
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.45;
}
.channel-card__rows {
    display: grid;
    gap: 0.32rem;
    margin: 0 0 0.45rem;
}
.channel-card__row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.65rem;
}
.channel-card__row dt {
    margin: 0;
    color: var(--muted);
    font-size: 0.73rem;
    font-weight: 500;
}
.channel-card__row dd {
    margin: 0;
    color: var(--text);
    font-size: 0.73rem;
    font-weight: 600;
    text-align: right;
}
.channel-card__list {
    margin: 0 0 0.35rem;
    padding-left: 1rem;
    display: grid;
    gap: 0.28rem;
    color: var(--muted);
    font-size: 0.74rem;
    line-height: 1.4;
}
.channel-card__list li {
    padding-left: 0.1rem;
}
.channel-card__flag {
    display: block;
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 0 0 1px color-mix(in srgb, var(--line) 80%, transparent);
}
.channel-card__geo {
    margin-bottom: 0.55rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
}
.channel-card__geo:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}
.channel-card__geo-head {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}
.channel-card__geo-subtitle {
    margin: 0 0 0.3rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: color-mix(in srgb, var(--text) 88%, var(--muted));
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.channel-card__geo-subtitle-flag {
    display: inline-flex;
    flex-shrink: 0;
}
.channel-card__geo--compact {
    padding-left: 0;
}
.channel-card__flow {
    margin-bottom: 0.4rem;
}
.channel-card__flow:last-child {
    margin-bottom: 0;
}
.channel-card__flow-dir {
    margin: 0 0 0.25rem;
}
.channel-card__flow-badge {
    display: inline-block;
    padding: 0.12rem 0.5rem;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.2;
    background: color-mix(in srgb, var(--channel-accent) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--channel-accent) 28%, var(--line));
    color: color-mix(in srgb, var(--channel-accent) 80%, var(--text));
}
.channel-card__flow-badge--out {
    background: color-mix(in srgb, var(--text) 5%, transparent);
    border-color: var(--line);
    color: var(--muted);
}
.channel-card__flow-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.15rem;
    font-size: 0.71rem;
    line-height: 1.35;
    color: var(--muted);
}
.channel-card__flow-list li span {
    color: color-mix(in srgb, var(--muted) 90%, var(--text));
    font-weight: 600;
}
.channel-card__specs {
    display: grid;
    gap: 0.35rem;
    align-content: center;
    margin: 0;
    padding: 0.55rem 0.65rem;
    min-height: 5.5625rem;
    box-sizing: border-box;
    border-radius: 10px;
    background: color-mix(in srgb, var(--text) 3%, transparent);
    border: 1px solid var(--line);
}
.channel-card__spec {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.65rem;
}
.channel-card__spec dt {
    margin: 0;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 500;
}
.channel-card__spec dd {
    margin: 0;
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 600;
    text-align: right;
}
@media (prefers-reduced-motion: reduce) {
    .block-channels .channel-card:hover { transform: none; }
    .channel-card__video { display: none; }
    .channel-card__media {
        background:
            linear-gradient(145deg, color-mix(in srgb, var(--channel-accent) 18%, #05080d), #05080d);
    }
}


.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.news-grid-list { grid-template-columns: 1fr; }
.news-card time { color: var(--muted); font-size: 0.82rem; }
.news-card h2, .news-card h3 { margin: 0.35rem 0; font-size: 1.1rem; }

.contact-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 1.25rem;
    align-items: start;
}