:root {
    --font-display: "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;

    --bg: #0d1117;
    --ink: #ffffff;
    --muted: rgba(255, 255, 255, 0.7);
    --accent: #ffffff;
    --line: rgba(255, 255, 255, 0.16);

    --nav-h: calc(var(--nav-top-h) + var(--nav-bot-h));
    --nav-top-h: 100px;
    --nav-bot-h: 92px;
    --container: 1240px;
    --nav-container: min(97vw, 1680px);
    --gutter: 32px;
    --nav-gutter: 56px;
    --content-offset: clamp(24px, 3vw, 56px);

    /* Brand red — reserved for CTAs, icons, locations, interactive accents */
    --red: #e30613;
    --red-deep: #c4000e;

    /* Secondary — muted slate blue-gray inspired by the hero sky, for calm hierarchy */
    --accent-blue: #4f6d89;
    --accent-build: #5a6b5e;
    --slate-50: #f5f7f9;
    --slate-100: #eef1f5;
    --slate-200: #e4e9ef;
    --slate-300: #d7dee7;

    /*
      Type hierarchy (site-wide)
      1. display   — hero H1 only (bold)
      2. title     — section H2 (thin)
      3. subtitle  — panel / supporting H3 (regular)
      4. ui        — CTAs, eyebrows, active nav
      5. nav       — idle nav / secondary bar labels
      6. body      — leads, lists, default copy
    */
    --weight-display: 700;
    --weight-title: 300;
    --weight-title-feature: 500; /* sections with stronger visual character (e.g. referencie) */
    --weight-subtitle: 400;
    --weight-ui: 600;
    --weight-nav: 500;
    --weight-body: 400;

    --text-display: clamp(2.85rem, 6.4vw, 5.25rem);
    --text-h2: clamp(2rem, 3.5vw, 2.75rem);
    --text-h3: clamp(1.2rem, 1.9vw, 1.45rem);
    --text-lead: clamp(1.05rem, 1.2vw, 1.125rem);
    --text-body: 1.05rem;
    --text-ui: 0.9375rem;
    --text-eyebrow: 0.8125rem;
    --text-caption: 0.875rem;

    --lh-display: 1;
    --lh-title: 1.1;
    --lh-h3: 1.14;
    --lh-lead: 1.65;
    --lh-body: 1.55;

    --tracking-display: -0.04em;
    --tracking-title: -0.03em;
    --tracking-eyebrow: 0.14em;

    /* Icon system — fixed sizes next to text */
    --icon-sm: 16px;
    --icon-md: 20px;
    --icon-lg: 22px;
    --icon-box-sm: 28px;
    --icon-box-md: 34px;
    --icon-box-lg: 42px;

    /* Button system tokens */
    --btn-radius: 0px;
    --btn-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --btn-font-size: var(--text-ui);
    --btn-pad-y: 15px;
    --btn-pad-x: 30px;
    --btn-gap: 10px;
    --btn-icon-box: var(--icon-box-sm);

    /* Shared left rail — aligns section copy with „Stretnime sa“ */
    --section-rail-left: max(
        calc(var(--nav-gutter) + var(--content-offset)),
        calc((100vw - var(--nav-container)) / 2 + var(--nav-gutter) + var(--content-offset))
    );
    --section-rail-right: max(
        var(--nav-gutter),
        calc((100vw - var(--nav-container)) / 2 + var(--nav-gutter))
    );
}

@font-face {
    font-family: "Barlow Condensed";
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url("fonts/barlow-condensed-800-latin-ext.woff2") format("woff2");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: "Barlow Condensed";
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url("fonts/barlow-condensed-800-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
    background-color: #ffffff;
    color-scheme: light;
    overflow-x: clip;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: var(--weight-body);
    background: #ffffff;
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: clip;
    max-width: 100%;
    width: 100%;
    position: relative;
    overscroll-behavior-x: none;
    font-optical-sizing: auto;
}

/* Mobile: lock sideways page pan (overflowing carousels / 100vw / wide children) */
@media (max-width: 900px) {
    html,
    body {
        overflow-x: clip;
        overscroll-behavior-x: none;
        max-width: 100%;
    }
}

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

/* ---------- NAVBAR ---------- */
/* info-strip removed */

/* ═══════════════════════════════════════════════════════════
   NAVBAR  — adaptive: transparent on hero → white on scroll
═══════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════
   NAVBAR — VSE-style 2-row (top: logo+search+cta | bottom: service tabs)
══════════════════════════════════════════════════════════ */

.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    background: transparent;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.navbar::after {
    content: '';
    position: absolute;
    top: var(--nav-top-h);
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--red);
    z-index: 72;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

.subnav-reveal {
    position: absolute;
    /* Sit under the red accent line so it never cuts the stripe */
    top: calc(var(--nav-top-h) + 2px);
    left: max(var(--nav-gutter), calc((100vw - var(--nav-container)) / 2 + var(--nav-gutter)));
    transform: none;
    z-index: 70;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 88px;
    height: 32px;
    padding: 0 14px 2px;
    margin: 0;
    border: 1px solid var(--slate-200);
    border-top: none;
    border-radius: 0 0 10px 10px;
    background: #ffffff;
    color: var(--accent-blue);
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(13, 17, 23, 0.08);
    line-height: 1;
    appearance: none;
    -webkit-appearance: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.28s ease,
        visibility 0.28s ease,
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.2s ease;
}

.subnav-reveal__label {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1;
}

.subnav-reveal__icon,
.subnav-reveal svg {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    display: block;
    margin: 0;
}

.subnav-reveal:hover,
.subnav-reveal:focus-visible {
    background: var(--slate-50);
    color: #0d1117;
    border-color: var(--slate-300);
    outline: none;
    transform: translateY(2px);
    box-shadow: 0 8px 16px rgba(13, 17, 23, 0.1);
}

html.navbar-sub-hidden .subnav-reveal {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.navbar.scrolled .navbar-top {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.11);
}

/* ── Shared inner container ── */
.nav-inner {
    width: 100%;
    max-width: var(--nav-container);
    margin: 0 auto;
    padding: 0 var(--nav-gutter);
    display: flex;
    align-items: center;
    gap: 24px;
}

/* ── TOP ROW ── */
.navbar-top {
    height: var(--nav-top-h);
    border-bottom: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.3s ease;
}

/* ── BOTTOM ROW ── */
.navbar-bottom {
    max-height: var(--nav-bot-h);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background: #ffffff;
    box-shadow:
        inset 0 1px 0 var(--slate-200),
        0 4px 14px rgba(13, 17, 23, 0.045);
    flex-shrink: 0;
    position: relative;
    z-index: 60;
    padding-left: 0;
    transition:
        max-height 0.36s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.22s ease,
        backdrop-filter 0.22s ease,
        box-shadow 0.22s ease;
}

html.search-is-open .navbar {
    z-index: 72;
}

html.search-is-open .navbar-bottom {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

html.search-is-open {
    --nav-h: var(--nav-top-h);
}

html.search-is-open .subnav-reveal {
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
}

html.mega-menu-open .navbar-bottom {
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

html.navbar-sub-hidden .navbar-bottom {
    max-height: 0;
    pointer-events: none;
}

html.navbar-sub-hidden {
    --nav-h: var(--nav-top-h);
}

.nav-inner--sub {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 var(--nav-gutter);
    gap: 0;
    align-items: stretch;
    display: flex;
    height: var(--nav-bot-h);
    min-height: var(--nav-bot-h);
    flex-shrink: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

/* ─── Bottom row: mega-menu triggers ── */
.snav-item {
    height: 100%;
    position: relative;
}

.snav-item + .snav-item {
    box-shadow: inset 1px 0 0 var(--slate-100);
}

.snav-trigger {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: var(--weight-nav);
    color: #333;
    text-decoration: none;
    padding: 0 32px;
    min-width: 0;
    height: 100%;
    border: none;
    background: transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.15s, background 0.15s;
    position: relative;
    border-radius: 6px;
}

.snav-label {
    flex: 1;
    text-align: left;
}

.snav-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    flex-shrink: 0;
}

.snav-icon-wrap svg {
    width: 28px !important;
    height: 28px !important;
    stroke-width: 2.25;
}

.snav-chevron {
    margin-left: auto;
    opacity: 0.45;
    transition: transform 0.22s ease, opacity 0.15s;
    flex-shrink: 0;
}

.snav-item:hover .snav-trigger,
.snav-item.is-open .snav-trigger,
.snav-item.is-current .snav-trigger {
    color: var(--accent-blue);
    background: rgba(79, 109, 137, 0.045);
}

.snav-trigger:focus-visible {
    outline: 2px solid rgba(79, 109, 137, 0.35);
    outline-offset: -2px;
}

.snav-item:hover .snav-chevron,
.snav-item.is-open .snav-chevron {
    opacity: 1;
    transform: rotate(180deg);
}

.snav-trigger::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent-blue);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.snav-item:hover .snav-trigger::after,
.snav-item.is-open .snav-trigger::after,
.snav-item.is-current .snav-trigger::after {
    transform: scaleX(1);
}


.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ─── Mega menu — full-width VSE-style panel ── */
.mega-backdrop {
    position: fixed;
    inset: var(--nav-top-h) 0 0 0;
    background: rgba(15, 20, 30, 0.42);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s;
    z-index: 45;
}

.mega-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mega-panel {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
    border-top: 1px solid #eee;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 55;
}

.mega-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    z-index: 56;
}

/* Smooth swap between categories — no drop animation / height jump */
html.mega-switching .mega-panel {
    transform: none;
    transition: opacity 0.16s ease, visibility 0.16s;
}

html.mega-switching .mega-panel.is-open {
    transform: none;
}

.mega-panel-inner {
    max-width: var(--nav-container);
    margin: 0 auto;
    padding: 36px var(--nav-gutter) 40px;
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 0;
    align-items: stretch;
    /* Runtime: Projekčná/Výstavba were 346px, Inžinierska 336px — lock to tallest */
    height: var(--mega-inner-h, 346px);
    min-height: var(--mega-inner-h, 346px);
    box-sizing: border-box;
}

.mega-cols {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
}

#megaProjekcna .mega-cols {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
}

#megaProjekcna .mega-col:first-child .mega-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(5, auto);
    grid-auto-flow: column;
    column-gap: 28px;
}

#megaInzinierska .mega-cols,
#megaVystavba .mega-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mega-col {
    padding: 4px 36px 8px 0;
    border-right: 1px solid #ececec;
    margin-right: 36px;
}

.mega-col:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

/* Pred banerom 35 rokov — rovnaká predelovacia čiara ako medzi službami */
.mega-cols:has(+ .mega-promo) .mega-col:last-child {
    border-right: 1px solid #ececec;
    margin-right: 36px;
    padding-right: 36px;
}

.mega-col-hd {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--accent-blue);
    margin-bottom: 16px;
}

.mega-list {
    list-style: none;
}

.mega-lnk {
    display: block;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: var(--weight-body);
    color: #222;
    text-decoration: none;
    padding: 9px 0;
    transition: color 0.15s ease, padding-left 0.15s ease;
    white-space: nowrap;
}

.mega-lnk:hover {
    color: #e30613;
    padding-left: 6px;
}

.mega-promo {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    min-height: 100%;
    height: 100%;
    border: 1px solid var(--slate-200);
    background-color: #e8edf2;
    display: flex;
    flex-direction: column;
}

.mega-promo--media {
    background: transparent;
    border: 1.5px solid rgba(13, 17, 23, 0.18);
    box-shadow: none;
    padding: 0;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.28s var(--btn-ease), border-color 0.28s ease;
    transform-origin: center center;
    will-change: transform;
}

.mega-promo--media:hover {
    transform: scale(1.035);
    border-color: rgba(13, 17, 23, 0.28);
}

.mega-promo--media:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 3px;
}

.mega-promo--media::before,
#megaProjekcna .mega-promo--media::before,
#megaInzinierska .mega-promo--media::before,
#megaVystavba .mega-promo--media::before {
    content: none;
    display: none;
}

/* Šípka ~35° do pravého horného rohu */
.mega-promo--media::after,
#megaProjekcna .mega-promo--media::after,
#megaInzinierska .mega-promo--media::after,
#megaVystavba .mega-promo--media::after {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    z-index: 2;
    pointer-events: none;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 17L17 7M17 7H10M17 7v7' stroke='%23e30613' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-mask-image: none;
    mask-image: none;
    transform: rotate(10deg);
    transform-origin: center center;
    transition: transform 0.28s var(--btn-ease);
}

.mega-promo--media:hover::after,
#megaProjekcna .mega-promo--media:hover::after,
#megaInzinierska .mega-promo--media:hover::after,
#megaVystavba .mega-promo--media:hover::after {
    transform: rotate(10deg) scale(1.18);
}

.mega-promo--media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    object-position: center;
}

/* Shared corporate grid / hatch (no photos) — text promos only */
.mega-promo:not(.mega-promo--media)::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.55;
    background-image:
        linear-gradient(rgba(79, 109, 137, 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 109, 137, 0.09) 1px, transparent 1px);
    background-size: 22px 22px;
}

.mega-promo:not(.mega-promo--media)::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(145deg, rgba(232, 237, 242, 0.2) 0%, rgba(232, 237, 242, 0.85) 62%, rgba(232, 237, 242, 0.95) 100%),
        repeating-linear-gradient(
            -18deg,
            transparent 0,
            transparent 11px,
            rgba(79, 109, 137, 0.045) 11px,
            rgba(79, 109, 137, 0.045) 12px
        );
}

/* One static frame per main service category (text promos only) */
#megaProjekcna .mega-promo:not(.mega-promo--media) {
    background-color: #e6ebf1;
}

#megaProjekcna .mega-promo:not(.mega-promo--media)::before {
    background-image:
        linear-gradient(rgba(227, 6, 19, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 109, 137, 0.1) 1px, transparent 1px);
    background-size: 24px 24px;
}

#megaInzinierska .mega-promo:not(.mega-promo--media) {
    background-color: #e9ece8;
}

#megaInzinierska .mega-promo:not(.mega-promo--media)::before {
    background-image:
        linear-gradient(rgba(90, 107, 94, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(90, 107, 94, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

#megaInzinierska .mega-promo:not(.mega-promo--media)::after {
    background:
        linear-gradient(145deg, rgba(233, 236, 232, 0.15) 0%, rgba(233, 236, 232, 0.88) 60%, rgba(233, 236, 232, 0.96) 100%),
        repeating-linear-gradient(
            28deg,
            transparent 0,
            transparent 13px,
            rgba(90, 107, 94, 0.05) 13px,
            rgba(90, 107, 94, 0.05) 14px
        );
}

#megaVystavba .mega-promo:not(.mega-promo--media) {
    background-color: #ece9e6;
}

#megaVystavba .mega-promo:not(.mega-promo--media)::before {
    background-image:
        linear-gradient(rgba(13, 17, 23, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 17, 23, 0.06) 1px, transparent 1px);
    background-size: 18px 18px;
}

#megaVystavba .mega-promo:not(.mega-promo--media)::after {
    background:
        linear-gradient(160deg, rgba(236, 233, 230, 0.1) 0%, rgba(236, 233, 230, 0.9) 55%, rgba(236, 233, 230, 0.97) 100%),
        repeating-linear-gradient(
            -32deg,
            transparent 0,
            transparent 10px,
            rgba(13, 17, 23, 0.04) 10px,
            rgba(13, 17, 23, 0.04) 11px
        );
}

.mega-promo-body {
    position: relative;
    z-index: 2;
    flex: 1;
    min-height: 0;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #0d1117;
}

.mega-promo-tag {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--accent-blue);
    opacity: 1;
    margin-bottom: 10px;
}

#megaProjekcna .mega-promo-tag {
    color: var(--red);
}

#megaInzinierska .mega-promo-tag {
    color: var(--accent-build);
}

#megaVystavba .mega-promo-tag {
    color: #5c534c;
}

.mega-promo-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: var(--weight-subtitle);
    line-height: 1.25;
    margin-bottom: 10px;
    color: #0d1117;
}

.mega-promo-desc {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.55;
    color: rgba(13, 17, 23, 0.68);
    opacity: 1;
    margin-bottom: 18px;
    max-width: 26ch;
}

.mega-promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #0d1117;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: var(--btn-radius);
    background: transparent;
    border: 1.5px solid rgba(13, 17, 23, 0.22);
    transition: background 0.22s var(--btn-ease),
                border-color 0.22s var(--btn-ease),
                transform 0.22s var(--btn-ease);
}

.mega-promo-cta:hover {
    background: rgba(13, 17, 23, 0.04);
    border-color: #0d1117;
    transform: translateY(-2px);
}

/* ─── Logo ── */
.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 16px;
}

.nav-logo-img {
    height: 48px;
    width: auto;
    display: block;
    transition: opacity 0.2s;
}

.nav-brand:hover .nav-logo-img { opacity: 0.82; }

.footer-logo-img {
    height: 32px;
    width: auto;
    display: block;
    filter: none;
    opacity: 0.92;
    transition: opacity 0.2s;
}
.footer-logo:hover .footer-logo-img { opacity: 1; }

/* ─── Nav links (desktop) ── */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: var(--weight-nav);
    color: var(--accent-blue);
    padding: 12px 18px;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    transition: color 0.15s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 8px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
    transform: scaleX(1);
}

/* ─── Search bar ── */
.nav-search {
    flex: 1;
    max-width: 720px;
    min-width: 260px;
    margin: 0 20px;
    position: relative;
    display: flex;
    align-items: center;
    transition:
        max-width 0.36s cubic-bezier(0.22, 1, 0.36, 1),
        margin 0.36s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.28s ease;
}

.nav-search-icon {
    position: absolute;
    left: 16px;
    z-index: 2;
    color: var(--red);
    pointer-events: none;
    flex-shrink: 0;
    transition: left 0.32s ease, transform 0.32s ease;
}

.nav-search-field {
    position: relative;
    width: 100%;
}

.nav-search-input {
    width: 100%;
    height: 52px;
    padding: 0 22px 0 48px;
    border: 1.5px solid var(--red);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 15.5px;
    color: #222;
    background: #fff;
    outline: none;
    transition:
        border-radius 0.34s cubic-bezier(0.22, 1, 0.36, 1),
        height 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        padding 0.3s ease,
        font-size 0.24s ease,
        border-color 0.22s ease,
        border-bottom-color 0.18s ease,
        background 0.2s ease,
        box-shadow 0.28s ease;
}

.nav-search-input:focus {
    border-color: var(--red-deep);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.12);
}

.nav-search-ghost {
    position: absolute;
    left: 48px;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px;
    pointer-events: none;
    overflow: hidden;
    white-space: nowrap;
    font-family: var(--font-body);
    font-size: 15.5px;
    line-height: 1;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.nav-search-ghost.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.nav-search-ghost-static {
    flex-shrink: 0;
    color: #aaa;
}

.nav-search-ghost-clip {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 1em;
}

.nav-search-ghost-phrase {
    display: inline-block;
    color: #888;
    white-space: nowrap;
    transition: opacity 0.28s ease;
}

.nav-search-ghost-phrase.is-exiting {
    opacity: 0;
}

.nav-search-ghost-phrase.is-entering {
    opacity: 0;
}

/* ─── Search dropdown panel ── */
.nav-search-close {
    display: none;
}

.nav-search-backdrop {
    position: fixed;
    inset: var(--nav-top-h) 0 0 0;
    z-index: 55;
    border: none;
    padding: 0;
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
    background: rgba(245, 247, 249, 0.68);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    cursor: default;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        backdrop-filter 0.3s ease;
}

.nav-search-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.search-is-open {
    overflow: hidden;
}

html.search-is-open .mega-backdrop,
html.search-is-open .mega-panel {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.nav-search.is-open {
    position: relative;
    z-index: 80;
}

.nav-search.is-open .nav-search-panel {
    z-index: 81;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-search.is-open .nav-search-input {
    border-color: var(--red-deep);
    box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
}

.nav-search-panel {
    position: fixed;
    top: calc(var(--nav-top-h) + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    width: min(1120px, 96vw);
    height: min(720px, 85vh);
    max-height: min(720px, 85vh);
    display: grid;
    grid-template-columns: 188px minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr);
    background: #ffffff;
    border: 1px solid var(--slate-200);
    border-radius: 20px;
    box-shadow: 0 32px 96px rgba(13, 17, 23, 0.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    transition:
        opacity 0.24s ease,
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.24s ease;
}

.nav-search-side {
    background: var(--slate-50);
    border-right: 1px solid var(--slate-100);
    padding: 16px 12px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 0;
}

.nav-search-cat {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 13px 14px;
    margin-bottom: 0;
    border: none;
    border-radius: 12px;
    background: transparent;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: rgba(13, 17, 23, 0.58);
    cursor: pointer;
    text-align: left;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.nav-search-cat-label {
    flex: 1;
    min-width: 0;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    color: inherit;
}

.nav-search-cat svg {
    width: 19px;
    height: 19px;
    flex-shrink: 0;
    stroke-width: 2;
    opacity: 0.7;
}

.nav-search-cat:hover {
    color: #0d1117;
    background: rgba(255, 255, 255, 0.7);
}

.nav-search-cat.is-active {
    background: #ffffff;
    color: #0d1117;
    font-weight: 600;
    box-shadow: 0 1px 6px rgba(13, 17, 23, 0.06);
}

.nav-search-cat.is-active svg {
    color: var(--red);
    opacity: 1;
}

.nav-search-years {
    display: block;
    position: relative;
    margin-top: auto;
    margin-bottom: 6px;
    padding: 0;
    width: 128px;
    max-width: 100%;
    align-self: center;
    text-decoration: none;
    line-height: 0;
    overflow: visible;
    transform-origin: center center;
    transition: transform 0.28s var(--btn-ease);
}

.nav-search-years:hover {
    transform: scale(1.06);
}

.nav-search-years::after {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    z-index: 2;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 17L17 7M17 7H10M17 7v7' stroke='%23e30613' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(10deg);
    transform-origin: center center;
    transition: transform 0.28s var(--btn-ease);
}

.nav-search-years:hover::after {
    transform: rotate(10deg) scale(1.18);
}

.nav-search-years img {
    display: block;
    width: 100%;
    height: auto;
}

.nav-search-cat-count {
    margin-left: auto;
    font-size: 13px;
    font-weight: 600;
    color: rgba(13, 17, 23, 0.32);
    flex-shrink: 0;
}

.nav-search-cat.is-active .nav-search-cat-count {
    color: var(--accent-blue);
}

.nav-search-body {
    display: flex;
    flex-direction: column;
    min-height: 0;
    min-width: 0;
    height: 100%;
    overflow: hidden;
}

.nav-search-body-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 22px 28px 16px;
    border-bottom: 1px solid var(--slate-100);
    flex-shrink: 0;
}

.nav-search-body-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #0d1117;
}

.nav-search-body-count {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: rgba(13, 17, 23, 0.4);
    white-space: nowrap;
}

.nav-search-results {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--slate-300) transparent;
}

.nav-search-results--browse {
    padding: 8px 0 22px;
}

.nav-search-results--browse:has(.nav-search-browse-cta) {
    padding-bottom: 28px;
}

.nav-search-group + .nav-search-group {
    border-top: 1px solid var(--slate-100);
}

.nav-search-group-title {
    margin: 0;
    padding: 16px 28px 10px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(13, 17, 23, 0.42);
}

.nav-search-group-list {
    display: flex;
    flex-direction: column;
}

.nav-search-browse-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 28px;
    border-bottom: 1px solid var(--slate-100);
    text-decoration: none;
    color: inherit;
    transition: background 0.12s ease;
}

.nav-search-group-list .nav-search-browse-row:last-child {
    border-bottom: none;
}

.nav-search-browse-row:hover,
.nav-search-browse-row.is-active {
    background: var(--slate-50);
}

.nav-search-browse-row.is-active {
    box-shadow: inset 3px 0 0 var(--red);
}

.nav-search-browse-row--accent .nav-search-browse-title {
    color: var(--red);
}

.nav-search-browse-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 14px 20px 0;
    padding: 16px 20px;
    min-height: 56px;
    box-sizing: border-box;
    border-radius: 12px;
    border: 1.5px solid var(--slate-100);
    background: #ffffff;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.nav-search-browse-cta:hover,
.nav-search-browse-cta.is-active {
    border-color: var(--slate-200);
    background: var(--slate-50);
    transform: translateY(-1px);
}

.nav-search-browse-cta-label {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--red);
    line-height: 1.3;
}

.nav-search-browse-cta-go {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--red);
    color: #ffffff;
    transition: transform 0.15s ease;
}

.nav-search-browse-cta:hover .nav-search-browse-cta-go,
.nav-search-browse-cta.is-active .nav-search-browse-cta-go {
    transform: translateX(2px);
}

.nav-search-browse-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-search-browse-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0d1117;
    line-height: 1.25;
}

.nav-search-browse-meta {
    font-family: var(--font-body);
    font-size: 13.5px;
    line-height: 1.45;
    color: rgba(13, 17, 23, 0.5);
}

.nav-search-browse-arrow {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: rgba(13, 17, 23, 0.28);
    transition: transform 0.15s ease, color 0.15s ease;
}

.nav-search-browse-row:hover .nav-search-browse-arrow,
.nav-search-browse-row.is-active .nav-search-browse-arrow {
    color: var(--red);
    transform: translateX(2px);
}

.nav-search-results--person {
    padding: 0;
    overflow-y: auto;
}

.nav-search-person {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px 28px 28px;
}

.nav-search-person-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    margin: 0;
    padding: 6px 2px;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: rgba(13, 17, 23, 0.55);
    cursor: pointer;
    transition: color 0.15s ease;
}

.nav-search-person-back:hover {
    color: var(--red);
}

.nav-search-person-back svg {
    flex-shrink: 0;
}

.nav-search-person-card {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    grid-template-areas:
        "photo copy"
        "actions actions";
    gap: 18px 22px;
    align-items: center;
    padding: 22px;
    border: 1px solid var(--slate-100);
    border-radius: 16px;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 55%);
}

.nav-search-person-photo {
    grid-area: photo;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--red);
    box-shadow: inset 0 0 0 1px rgba(13, 17, 23, 0.06);
}

.nav-search-person-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.nav-search-person-copy {
    grid-area: copy;
    min-width: 0;
}

.nav-search-person-name {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #0d1117;
}

.nav-search-person-role {
    margin: 6px 0 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(13, 17, 23, 0.55);
}

.nav-search-person-actions {
    grid-area: actions;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.nav-search-person-link {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid var(--slate-100);
    background: #ffffff;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.nav-search-person-link:hover {
    border-color: rgba(227, 6, 19, 0.28);
    background: rgba(227, 6, 19, 0.03);
}

.nav-search-person-link-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(13, 17, 23, 0.42);
}

.nav-search-person-link-value {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #0d1117;
    word-break: break-word;
}

.nav-search-row {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 16px 28px;
    border-bottom: 1px solid var(--slate-100);
    text-decoration: none;
    color: inherit;
    transition: background 0.12s ease;
}

.nav-search-row:last-child {
    border-bottom: none;
}

.nav-search-row:hover,
.nav-search-row.is-active {
    background: var(--slate-50);
}

.nav-search-row.is-active {
    box-shadow: inset 3px 0 0 var(--red);
}

.nav-search-row-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--slate-100);
    color: var(--accent-blue);
}

.nav-search-row-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.nav-search-row--accent .nav-search-row-icon {
    background: rgba(227, 6, 19, 0.08);
    color: var(--red);
}

.nav-search-row-text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-search-row-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0d1117;
    line-height: 1.25;
}

.nav-search-row-title mark {
    background: rgba(227, 6, 19, 0.12);
    color: var(--red-deep);
    border-radius: 2px;
    padding: 0 2px;
}

.nav-search-row-desc {
    font-family: var(--font-body);
    font-size: 13.5px;
    line-height: 1.45;
    color: rgba(13, 17, 23, 0.48);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-search-row-tag {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent-blue);
    padding: 6px 11px;
    background: var(--slate-50);
    border: 1px solid var(--slate-100);
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-search-empty {
    padding: 56px 28px;
    text-align: center;
}

.nav-search-empty-title {
    margin: 0 0 6px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: #0d1117;
}

.nav-search-empty-desc {
    margin: 0;
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.5;
    color: rgba(13, 17, 23, 0.48);
}

@media (max-width: 860px) {
    .nav-search-panel {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        width: min(1120px, 96vw);
        max-height: min(660px, 82vh);
        top: calc(var(--nav-top-h) + 8px);
    }

    .nav-search-side {
        display: flex;
        gap: 6px;
        padding: 12px 14px;
        border-right: none;
        border-bottom: 1px solid var(--slate-100);
        overflow-x: auto;
        scrollbar-width: none;
    }

    .nav-search-side::-webkit-scrollbar {
        display: none;
    }

    .nav-search-years {
        display: none;
    }

    .nav-search-cat {
        width: auto;
        flex-shrink: 0;
        margin-bottom: 0;
        padding: 8px 12px;
        font-size: 13px;
        align-items: center;
    }

    .nav-search-cat-count {
        display: none;
    }
}

/* ─── Help link ── */
.nav-help-link {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: var(--weight-nav);
    color: var(--accent-blue);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 12px 16px;
    position: relative;
    transition: color 0.15s ease;
}

.nav-help-link::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 8px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-help-link:hover::after,
.nav-help-link:focus-visible::after {
    transform: scaleX(1);
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #b0b8c4;
    flex-shrink: 0;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.status-dot.is-online {
    background: #22c55e;
    animation: status-dot-pulse 2.2s ease-in-out infinite;
}

@keyframes status-dot-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
    }
    50% {
        box-shadow: 0 0 0 7px rgba(34, 197, 94, 0);
    }
}

.nav-help-icon {
    display: flex;
    align-items: center;
    color: var(--accent-blue);
    flex-shrink: 0;
}

/* ─── Primary CTA button ── */
.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--btn-gap);
    font-family: var(--font-display);
    font-size: var(--btn-font-size);
    font-weight: var(--weight-ui);
    letter-spacing: 0.02em;
    color: #fff;
    background: var(--red);
    padding: var(--btn-pad-y) var(--btn-pad-x);
    border: 1.5px solid var(--red);
    border-radius: var(--btn-radius);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.22s var(--btn-ease),
                border-color 0.22s var(--btn-ease),
                color 0.22s var(--btn-ease);
    margin-left: 4px;
}

.nav-cta-btn:hover {
    background: #ffffff;
    border-color: var(--red);
    color: var(--red);
}

/* ─── Dropdown trigger ── */
.nav-item { position: relative; }

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: #333;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px 18px;
    border-radius: 4px;
    white-space: nowrap;
    transition: color 0.15s, background 0.15s;
}

.nav-dropdown-trigger:hover,
.nav-item--dropdown:hover .nav-dropdown-trigger,
.nav-dropdown-trigger[aria-expanded="true"] {
    color: #e30613;
    background: rgba(227, 6, 19, 0.05);
}

.nav-chevron {
    transition: transform 0.25s ease;
    flex-shrink: 0;
    opacity: 0.6;
}

.nav-item--dropdown:hover .nav-chevron,
.nav-dropdown-trigger[aria-expanded="true"] .nav-chevron {
    transform: rotate(180deg);
    opacity: 1;
}


/* ─── Dropdown — VSE-style clean mega menu ───────────── */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 2px);
    left: -16px;
    width: 820px;
    background: #fff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
    display: grid;
    grid-template-columns: 1fr 1fr 240px;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    transform: translateY(-6px);
    z-index: 100;
    border-top: 3px solid #e30613;
    overflow: hidden;
}

.nav-item--dropdown:hover .nav-dropdown,
.nav-dropdown-trigger[aria-expanded="true"] + .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Stĺpce */
.ndd-col {
    padding: 28px 28px 24px;
    border-right: 1px solid #f0f0f0;
}

.ndd-col-hd {
    font-family: var(--font-body);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #e30613;
    margin-bottom: 16px;
}

.ndd-col-list {
    list-style: none;
}

.ndd-lnk {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: #222222;
    text-decoration: none;
    padding: 7px 0;
    border-bottom: 1px solid transparent;
    transition: color 0.15s ease, padding-left 0.15s ease;
    white-space: nowrap;
}

.ndd-lnk:hover {
    color: #e30613;
    padding-left: 8px;
}

.ndd-all-link {
    display: inline-block;
    margin-top: 18px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: #e30613;
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.ndd-all-link:hover { opacity: 0.75; }

/* Náhľad obrázku vpravo */
.ndd-preview {
    overflow: hidden;
    background: #f4f4f4;
}

.ndd-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.25s ease;
}

/* ─── Hamburger (SVG lines) ──────────────── */
.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--slate-200);
    background: #ffffff;
    cursor: pointer;
    color: #0d1117;
    margin-left: 6px;
    transition: background 0.2s ease, border-color 0.35s ease, color 0.35s ease;
    flex-shrink: 0;
}

.nav-toggle:hover {
    background: var(--slate-50);
    border-color: var(--slate-300);
}

.hamburger-icon line {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
    transform-box: fill-box;
}

/* open state */
.nav-toggle.open .hb-top {
    transform: translateY(5px) rotate(45deg);
}

.nav-toggle.open .hb-mid {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.open .hb-bot {
    transform: translateY(-5px) rotate(-45deg);
}

/* ─── Mobile drawer ──────────────────────── */
.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
    overflow: hidden;
}

.mobile-drawer.open {
    pointer-events: auto;
}

.mdr-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.35s ease;
}

.mobile-drawer.open .mdr-backdrop {
    background: rgba(0, 0, 0, 0.5);
}

.mdr-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(380px, 100vw);
    background: #0d1117;
    display: flex;
    flex-direction: column;
    padding: 0;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-drawer.open .mdr-panel {
    transform: translateX(0);
}

.mdr-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.mdr-close {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: none;
    color: rgba(255, 255, 255, 0.7);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.mdr-close:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.mdr-nav {
    flex: 1;
    padding: 16px 16px 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mdr-link {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 14px 16px;
    border-radius: 10px;
    transition: background 0.18s ease, color 0.18s ease;
}

.mdr-link:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}

/* accordion */
.mdr-group {
    display: flex;
    flex-direction: column;
}

.mdr-accordion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    background: none;
    border: none;
    cursor: pointer;
    padding: 14px 16px;
    border-radius: 10px;
    text-align: left;
    transition: background 0.18s ease, color 0.18s ease;
    width: 100%;
}

.mdr-accordion-left {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.mdr-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    flex-shrink: 0;
}

.mdr-icon-wrap svg {
    width: 22px !important;
    height: 22px !important;
    stroke-width: 2.25;
}

.mdr-accordion:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}

.mdr-chevron {
    flex-shrink: 0;
    opacity: 0.5;
    transition: transform 0.28s ease, opacity 0.2s ease;
}

.mdr-accordion[aria-expanded="true"] .mdr-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

.mdr-accordion-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    padding-left: 8px;
}

.mdr-accordion-body.open {
    grid-template-rows: 1fr;
}

.mdr-accordion-body > * {
    min-height: 0;
    overflow: hidden;
}

.mdr-sub-link {
    display: block;
    font-family: var(--font-body);
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    transition: background 0.18s ease, color 0.18s ease;
}

.mdr-sub-link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
}

/* Red accent line on the left for sub-links */
.mdr-accordion-body {
    border-left: 2px solid rgba(227, 6, 19, 0.3);
    margin-left: 16px;
}

.mdr-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.mdr-cta {
    display: block;
    text-align: center;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: var(--weight-ui);
    letter-spacing: 0.2px;
    color: #fff;
    background: var(--red);
    padding: 15px 24px;
    border: 1.5px solid var(--red);
    border-radius: var(--btn-radius);
    text-decoration: none;
    margin-bottom: 14px;
    transition: background 0.22s var(--btn-ease), border-color 0.22s var(--btn-ease), color 0.22s var(--btn-ease);
}

.mdr-cta:hover {
    background: #ffffff;
    border-color: var(--red);
    color: var(--red);
}

.mdr-meta {
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    line-height: 1.6;
}

/* ---------- HERO — defined in hero section below ---------- */

/* Floating editorial shapes — layered 1.webp + 2.webp */
.hero-shapes {
    position: absolute;
    bottom: -150px;
    right: clamp(-120px, -6vw, -40px);
    width: min(34vw, 460px);
    aspect-ratio: 1600 / 1578;
    z-index: 3;
    pointer-events: none;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.3));
    will-change: transform;
}

.hero-shape {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
    will-change: transform, opacity;
}

.hero-shape--white {
    z-index: 1;
}

/* Navbar fade-in on load */
.navbar {
    opacity: 0;
    transform: translateY(-16px);
}

body.hero-ready .navbar {
    opacity: 1;
    transform: none;
    transition:
        opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.05s,
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.05s,
        box-shadow 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
    .hero-anim,
    .hero-shape--red,
    .hero-shape--white,
    .navbar,
    .navbar-bottom,
    .hero-overlay,
    .hero-tagline,
    .hero-headline,
    .hero-cta,
    .hero-arrows,
    .map-section,
    .map-panel-title,
    .map-panel-kicker,
    .map-panel-cities,
    .map-panel-lead,
    .map-panel-cta,
    .map-svg-wrap,
    .map-branch-panel,
    .logos-track .logo-mono {
        opacity: 1;
        transform: none;
        transition: none;
        animation: none;
        filter: none;
    }

    .hero-tagline::before {
        transform: none;
    }

    .logos-track .logo-mono {
        opacity: 0.72;
    }

    .logos-track .logo-mono.logo-mono--ready {
        opacity: 0.72;
    }
}


/* ══════════════════════════════════════════════════════════
   HERO — VSE-style: dark card left + full video right
══════════════════════════════════════════════════════════ */

/* Spacer below fixed navbar.
   Homepage (.hero): top row only — secondary bar overlays the hero intentionally.
   Subpages: reserve top + secondary bar height using raw tokens (not --nav-h),
   so hide-on-scroll does not shrink the spacer and cause jump. */
.hero-spacer {
    height: var(--nav-top-h);
}

body:not(:has(.hero)) .hero-spacer,
body:has(.hero--about) .hero-spacer {
    height: calc(var(--nav-top-h) + var(--nav-bot-h));
}

.hero {
    position: relative;
    width: 100%;
    height: calc(100dvh - var(--nav-top-h));
    min-height: 480px;
    overflow: hidden;
    background: #ffffff;
    z-index: 1;
}

/* ── Video fills entire hero ── */
.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #ffffff;
}

/* Top-left shade — readable text without crushing the photo */
.hero-media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(
        ellipse 66% 76% at 0% 0%,
        rgba(8, 12, 20, 0.44) 0%,
        rgba(8, 12, 20, 0.26) 28%,
        rgba(8, 12, 20, 0.1) 52%,
        rgba(8, 12, 20, 0.03) 68%,
        transparent 82%
    );
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(8, 12, 20, 0.28) 0%,
            rgba(8, 12, 20, 0.12) 28%,
            rgba(8, 12, 20, 0.04) 52%,
            transparent 70%
        ),
        linear-gradient(
            270deg,
            rgba(12, 18, 28, 0.28) 0%,
            rgba(12, 18, 28, 0.1) 34%,
            transparent 58%
        ),
        linear-gradient(
            0deg,
            rgba(12, 18, 28, 0.55) 0%,
            rgba(12, 18, 28, 0.22) 38%,
            transparent 62%
        );
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.025);
    transition:
        opacity 1.15s cubic-bezier(0.4, 0, 0.2, 1),
        transform 1.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    will-change: opacity, transform;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 1;
}

.hero-slide picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: #0d1117;
}

.hero--about .hero-media::before {
    content: none;
    display: none;
}

/* Fade into process section (#000) — light at top, solid match at bottom */
.hero--about .hero-media::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 28%,
        rgba(0, 0, 0, 0.18) 48%,
        rgba(0, 0, 0, 0.55) 68%,
        rgba(0, 0, 0, 0.88) 86%,
        #000000 100%
    );
}

.hero.hero--about:fullscreen .hero-media::after,
.hero.hero--about:-webkit-full-screen .hero-media::after {
    display: none;
}

.hero--about .hero-media {
    background: #000000;
}

.hero.hero--about {
    height: min(78dvh, 740px);
    min-height: 420px;
}

.hero-cover {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 32px 24px;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.22) 0%,
        rgba(0, 0, 0, 0.42) 28%,
        rgba(0, 0, 0, 0.58) 52%,
        rgba(0, 0, 0, 0.5) 100%
    );
    transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.55s;
}

.hero--about.is-playing .hero-cover {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hero-cover__logo {
    display: none;
}

.hero-about__brand {
    position: absolute;
    z-index: 2;
    left: max(var(--nav-gutter), calc((100vw - var(--nav-container)) / 2 + var(--nav-gutter)));
    bottom: clamp(28px, 4.5vw, 52px);
    width: auto;
    height: clamp(36px, 4.8vw, 56px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
}

.hero--about.is-playing .hero-about__brand {
    opacity: 0.96;
}

.hero.hero--about:fullscreen .hero-about__brand,
.hero.hero--about:-webkit-full-screen .hero-about__brand {
    left: max(20px, env(safe-area-inset-left));
    bottom: max(24px, env(safe-area-inset-bottom));
}

.hero-cover__title {
    margin: 0;
    width: 100%;
    max-width: none;
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 6.4vw, 5.4rem);
    font-weight: var(--weight-display);
    letter-spacing: var(--tracking-display);
    line-height: 1.02;
    color: #ffffff;
}

.hero-cover__title.kh-title {
    color: #ffffff;
}

.hero-cover__title .kh-title__row {
    justify-content: center;
    flex-wrap: nowrap;
}

@media (max-width: 720px) {
    .hero-cover__title .kh-title__row {
        flex-wrap: wrap;
    }

    .hero.hero--about {
        height: min(58dvh, 480px);
        min-height: 340px;
    }

    .hero-cover {
        gap: 18px;
        padding: 20px 16px;
        justify-content: center;
    }

    .hero-cover__title {
        font-size: clamp(1.45rem, 6.8vw, 1.95rem);
        line-height: 1.1;
        letter-spacing: -0.03em;
        max-width: 16ch;
        margin-inline: auto;
    }

    .hero-cover__play {
        width: 68px;
        height: 68px;
    }

    .hero-cover__play svg,
    .hero-cover__play i {
        width: 24px;
        height: 24px;
    }

    .hero-cover__play-hint {
        font-size: 0.7rem;
        letter-spacing: 0.1em;
    }

    .hero-cover__play-wrap {
        gap: 10px;
    }

    .hero-about__brand {
        left: 16px;
        bottom: 16px;
        height: 26px;
    }

    .hero--about .hero-video-controls {
        top: 12px;
        right: 12px;
        gap: 8px;
    }
}

.hero-cover__play-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-cover__play {
    display: grid;
    place-items: center;
    width: 88px;
    height: 88px;
    padding: 0;
    border: 1.5px solid rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
    transition:
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}

.hero-cover__play:hover {
    transform: scale(1.05);
    background: #ffffff;
    color: #111111;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}

.hero-cover__play:hover + .hero-cover__play-hint,
.hero-cover__play-wrap:hover .hero-cover__play-hint {
    color: rgba(255, 255, 255, 0.92);
}

.hero-cover__play svg,
.hero-cover__play i {
    width: 30px;
    height: 30px;
    margin-left: 4px;
}

.hero-cover__play-hint {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.25s ease;
}

.hero--about .hero-video-controls {
    top: clamp(16px, 2vw, 28px);
    right: max(var(--nav-gutter), calc((100vw - var(--nav-container)) / 2 + var(--nav-gutter)));
    left: auto;
}

.hero.hero--about:not(.is-playing) .hero-video-controls {
    opacity: 0;
    pointer-events: none;
}

/* ── Callout + arrows stack (PC: top right)
   Offset by secondary-nav band so the badge stays below the fixed subnav
   overlay (spacer is only --nav-top-h; subnav covers the top of the hero). */
.hero-callout-wrap {
    position: absolute;
    top: calc(var(--nav-bot-h) + clamp(16px, 2vw, 28px));
    right: max(var(--nav-gutter), calc((100vw - var(--nav-container)) / 2 + var(--nav-gutter)));
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    max-width: min(300px, 36vw);
    transition: top 0.36s cubic-bezier(0.4, 0, 0.2, 1);
}

html.navbar-sub-hidden .hero-callout-wrap {
    top: clamp(20px, 3vw, 36px);
}

.hero-callout {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-left: 3px solid var(--red);
    box-shadow: 0 4px 20px rgba(13, 17, 23, 0.08);
}

.hero-callout-link {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: inherit;
    text-decoration: none;
}

.hero-callout-link:hover .hero-callout-text {
    color: var(--red);
}

.hero-callout-service {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: var(--text-eyebrow);
    font-weight: var(--weight-ui);
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: var(--red);
    line-height: 1.2;
    transition: opacity 0.35s ease;
}

.hero-callout-service::after {
    content: "→";
    font-size: 0.85em;
    letter-spacing: 0;
    text-transform: none;
    opacity: 0.7;
}

.hero-callout-text {
    font-family: var(--font-body);
    font-size: clamp(0.8rem, 1vw, 0.92rem);
    font-weight: var(--weight-nav);
    line-height: 1.45;
    color: #0d1117;
    margin: 0;
    transition: opacity 0.35s ease, color 0.22s ease;
}

.hero-callout-text.is-fading,
.hero-callout-service.is-fading {
    opacity: 0;
}

/* ── Slider arrows — under callout on PC ── */
.hero-arrows {
    display: flex;
    gap: 8px;
    margin: 0;
}

.hero-arrow {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.78);
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.hero-arrow svg {
    width: 14px;
    height: 14px;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.7);
    color: #ffffff;
    transform: scale(1.04);
}

.hero.hero--about:fullscreen,
.hero.hero--about:-webkit-full-screen {
    width: 100%;
    height: 100%;
    min-height: 100%;
    background: #0d1117;
}

.hero-video-controls {
    position: absolute;
    top: calc(var(--nav-bot-h) + clamp(16px, 2vw, 28px));
    right: max(var(--nav-gutter), calc((100vw - var(--nav-container)) / 2 + var(--nav-gutter)));
    z-index: 4;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(12px);
}

.hero.is-loaded .hero-video-controls {
    opacity: 1;
    transform: none;
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.4s,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
}

html.navbar-sub-hidden .hero-video-controls {
    top: clamp(16px, 2vw, 28px);
}

.hero.hero--about:fullscreen .hero-video-controls,
.hero.hero--about:-webkit-full-screen .hero-video-controls {
    top: 24px;
    right: 24px;
}

.hero-video-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 0;
    background: rgba(8, 12, 20, 0.42);
    color: #ffffff;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}

.hero-video-btn > svg {
    width: 18px;
    height: 18px;
    display: block;
    pointer-events: none;
}

.hero-video-btn:hover,
.hero-video-btn:focus-visible {
    background: rgba(8, 12, 20, 0.62);
    border-color: rgba(255, 255, 255, 0.7);
    outline: none;
}

.hero-video-btn[aria-pressed="true"] {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(8, 12, 20, 0.62);
}

.hero-video-btn__swap {
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
}

.hero-video-btn__icon {
    position: absolute;
    inset: 0;
    width: 18px;
    height: 18px;
    display: block;
    pointer-events: none;
}

.hero-video-btn__icon--on {
    opacity: 0;
}

.hero-video-btn[aria-pressed="true"] .hero-video-btn__icon--on {
    opacity: 1;
}

.hero-video-btn[aria-pressed="true"] .hero-video-btn__icon--off {
    opacity: 0;
}

@media (max-width: 900px) {
    .hero-video-controls {
        top: auto;
        bottom: 20px;
        right: auto;
        left: max(16px, var(--nav-gutter));
    }
}

/* ── Caption — vertically centered on PC ── */
.hero-caption {
    position: absolute;
    top: 50%;
    bottom: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: var(--nav-container);
    padding: 0 var(--nav-gutter) 0 calc(var(--nav-gutter) + var(--content-offset));
    z-index: 2;
}

.hero-tagline,
.hero-headline,
.hero-cta,
.hero-arrows {
    opacity: 0;
    transform: translateY(22px);
    will-change: opacity, transform;
}

.hero.is-loaded .hero-tagline {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.14s,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.14s;
}

.hero.is-loaded .hero-headline {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.28s,
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.28s;
}

.hero.is-loaded .hero-cta {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.42s,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.42s;
}

.hero.is-loaded .hero-arrows {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.54s,
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.54s;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 20px;
    padding: 0;
    font-family: var(--font-body);
    font-size: var(--text-eyebrow);
    font-weight: var(--weight-ui);
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
}

.hero-tagline::before {
    content: "";
    width: 36px;
    height: 2.5px;
    background: var(--red);
    flex-shrink: 0;
}

.hero-tagline::after {
    display: none;
}

.hero-headline {
    margin: 0;
    max-width: 18ch;
    font-family: "Barlow Condensed", "Helvetica Neue Condensed Black", "Arial Narrow", sans-serif;
    font-weight: 800;
    font-size: clamp(3.4rem, 7.2vw, 6.4rem);
    line-height: 0.94;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
}

.hero-headline__primary,
.hero-headline__secondary {
    display: block;
}

.hero-headline__secondary {
    font-weight: 800;
    color: #ffffff;
}

.hero-cta {
    margin: 26px 0 0;
    align-self: flex-start;
}

/* ── White ghost button variant (kept for other sections) ── */
.btn-white-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.55);
    background: transparent;
}

.btn-white-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.9);
}

/* ── Responsive hero ── */
@media (max-width: 900px) {
    /* Homepage: full-bleed photo under transparent nav */
    body:has(.hero:not(.hero--about)) .hero-spacer {
        height: 0;
    }

    .hero:not(.hero--about) {
        margin-top: calc(-1 * env(safe-area-inset-top, 0px));
        height: calc(100dvh + env(safe-area-inset-top, 0px));
        min-height: calc(100svh + env(safe-area-inset-top, 0px));
        background: #0d1117;
    }

    .hero:not(.hero--about) .hero-media,
    .hero:not(.hero--about) .hero-slider,
    .hero:not(.hero--about) .hero-slide,
    .hero:not(.hero--about) .hero-slide picture {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .hero:not(.hero--about) .hero-media {
        background: #0d1117;
    }

    .hero:not(.hero--about) .hero-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .hero:not(.hero--about) .hero-caption {
        padding-top: calc(var(--nav-h) + clamp(28px, 7vh, 56px));
    }

    .hero-slide img {
        object-position: center center;
    }

    .hero-media::before {
        background: radial-gradient(
            ellipse 110% 75% at 8% 18%,
            rgba(8, 12, 20, 0.42) 0%,
            rgba(8, 12, 20, 0.2) 38%,
            rgba(8, 12, 20, 0.06) 66%,
            transparent 82%
        );
    }

    .hero-media::after {
        background:
            linear-gradient(
                180deg,
                rgba(8, 12, 20, 0.18) 0%,
                rgba(8, 12, 20, 0.12) 34%,
                rgba(8, 12, 20, 0.34) 62%,
                rgba(8, 12, 20, 0.62) 100%
            );
    }

    .hero-callout-wrap {
        inset: auto;
        top: auto;
        right: 16px;
        bottom: max(18px, env(safe-area-inset-bottom, 0px));
        left: auto;
        max-width: min(172px, 48vw);
        align-items: flex-end;
        gap: 8px;
        pointer-events: none;
        z-index: 3;
    }

    html.navbar-sub-hidden .hero-callout-wrap {
        top: auto;
        bottom: max(18px, env(safe-area-inset-bottom, 0px));
    }

    .hero-callout {
        position: static;
        width: 100%;
        max-width: none;
        padding: 9px 11px;
        border-left-width: 2px;
        background: rgba(255, 255, 255, 0.82);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 2px 14px rgba(13, 17, 23, 0.1);
        pointer-events: auto;
    }

    .hero-callout-service {
        font-size: 0.58rem;
        letter-spacing: 0.1em;
        gap: 4px;
    }

    .hero-callout-text {
        font-size: 0.7rem;
        line-height: 1.35;
        font-weight: var(--weight-body);
        color: rgba(13, 17, 23, 0.78);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-caption {
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
        max-width: none;
        height: 100%;
        padding:
            clamp(28px, 7vh, 56px)
            22px
            calc(96px + env(safe-area-inset-bottom, 0px));
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        text-align: left;
        box-sizing: border-box;
    }

    .hero-tagline {
        font-size: 1.05rem;
        letter-spacing: 0.14em;
        margin-bottom: 18px;
        gap: 12px;
    }

    .hero-tagline::before {
        width: 34px;
        height: 2.5px;
    }

    .hero-headline {
        font-size: clamp(3.45rem, 14.5vw, 4.75rem);
        font-weight: 800;
        letter-spacing: 0.04em;
        line-height: 0.96;
        max-width: 11.5ch;
        text-align: left;
        text-wrap: balance;
    }

    .hero-cta {
        flex: 0 0 auto;
        align-self: flex-start;
        width: auto;
        min-height: 54px;
        margin-top: 24px;
        margin-bottom: 0;
        padding: 17px 28px;
        font-size: 17px;
    }

    .hero-arrows {
        position: static;
        margin: 0;
        gap: 8px;
        justify-content: flex-end;
        pointer-events: auto;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
        border-width: 1px;
        border-color: rgba(255, 255, 255, 0.5);
        background: rgba(13, 17, 23, 0.28);
        color: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }

    .hero-arrow svg {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 480px) {
    .hero:not(.hero--about) .hero-caption {
        padding-top: calc(var(--nav-h) + clamp(22px, 5vh, 40px));
    }

    .hero-callout-wrap {
        right: 14px;
        bottom: max(14px, env(safe-area-inset-bottom, 0px));
        max-width: min(150px, 46vw);
        gap: 7px;
    }

    html.navbar-sub-hidden .hero-callout-wrap {
        bottom: max(14px, env(safe-area-inset-bottom, 0px));
    }

    .hero-callout {
        padding: 8px 10px;
    }

    .hero-callout-service {
        font-size: 0.54rem;
    }

    .hero-callout-text {
        font-size: 0.64rem;
        line-height: 1.3;
    }

    .hero-caption {
        padding:
            clamp(22px, 5vh, 40px)
            18px
            calc(88px + env(safe-area-inset-bottom, 0px));
    }

    .hero-tagline {
        margin-bottom: 16px;
        font-size: 0.98rem;
    }

    .hero-headline {
        font-size: clamp(3.2rem, 15vw, 4.25rem);
        max-width: 11ch;
        letter-spacing: 0.035em;
    }

    .hero-cta {
        margin-top: 22px;
        min-height: 52px;
        padding: 16px 26px;
        font-size: 16.5px;
    }

    .hero-arrow {
        width: 38px;
        height: 38px;
    }

    .hero-arrow svg {
        width: 14px;
        height: 14px;
    }
}


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

/* ═══════════════════════════════════════════════════════════
   BUTTON SYSTEM — jednotná hierarchia CTA
   Primary  → plná červená (hlavná akcia)
   Secondary→ outline (vedľajšia akcia)
   Tertiary → textový odkaz s posuvnou šípkou (.link-cta)
═══════════════════════════════════════════════════════════ */
.btn {
    font-family: var(--font-display);
    font-weight: var(--weight-ui);
    font-size: var(--btn-font-size);
    letter-spacing: 0.02em;
    line-height: 1;
    padding: var(--btn-pad-y) var(--btn-pad-x);
    border-radius: var(--btn-radius);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--btn-gap);
    border: 1.5px solid transparent;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.22s var(--btn-ease),
                border-color 0.22s var(--btn-ease),
                color 0.22s var(--btn-ease),
                transform 0.22s var(--btn-ease);
}

.btn svg,
.btn span[aria-hidden] {
    width: var(--icon-sm);
    height: var(--icon-sm);
    transition: transform 0.22s var(--btn-ease);
}

.btn:hover svg,
.btn:hover span[aria-hidden] {
    transform: translateX(4px);
}

/* Primary — solid brand red */
.btn-primary {
    color: #ffffff;
    background: var(--red);
    border-color: var(--red);
}

.btn-primary:hover {
    background: #ffffff;
    border-color: var(--red);
    color: var(--red);
}

/* Secondary — outline (light background) */
.btn-secondary {
    color: #0d1117;
    background: transparent;
    border-color: rgba(13, 17, 23, 0.22);
}

.btn-secondary:hover {
    border-color: #0d1117;
    background: rgba(13, 17, 23, 0.04);
    transform: translateY(-2px);
}

/* Ghost — outline on dark backgrounds */
.btn-ghost {
    color: #ffffff;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Shared focus ring for all CTAs */
.btn:focus-visible,
.nav-cta-btn:focus-visible,
.mdr-cta:focus-visible,
.mega-promo-cta:focus-visible,
.exp-cta-btn:focus-visible,
.infra-showcase-cta:focus-visible,
.link-cta:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 3px;
}

/* ---------- LARGE MONITORS ---------- */
@media (min-width: 1600px) {
    :root {
        --container: 1440px;
        --gutter: 40px;
        --nav-container: min(97vw, 1840px);
        --nav-gutter: 56px;
    }
    .hero-title { font-size: clamp(4rem, 5vw, 5.6rem); }
}

@media (min-width: 2000px) {
    :root {
        --container: 1680px;
        --gutter: 48px;
        --nav-container: min(96vw, 1960px);
        --nav-gutter: 64px;
    }
    .hero-title { font-size: clamp(5rem, 5vw, 6.2rem); }
    .btn { font-size: 17px; padding: 17px 34px; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
    :root {
        /* Two-row mobile header: logo+menu, then full-width search */
        --nav-h: calc(136px + env(safe-area-inset-top, 0px));
        --nav-top-h: 136px;
        --nav-bot-h: 0px;
        --nav-gutter: 16px;
        --content-offset: 0px;
    }

    .nav-links,
    .nav-help-link,
    .nav-cta-btn {
        display: none !important;
    }

    .navbar-bottom,
    .mega-backdrop,
    .subnav-reveal {
        display: none !important;
    }

    .navbar::after {
        display: none;
    }

    .navbar {
        background: #ffffff;
        padding-top: env(safe-area-inset-top, 0px);
    }

    .navbar-top {
        height: var(--nav-top-h);
        align-items: stretch;
        background: #ffffff;
    }

    .hero-spacer {
        height: var(--nav-h);
    }

    /* Homepage: hero is the full first viewport under the transparent nav */
    body:has(.hero:not(.hero--about)) .hero-spacer {
        height: 0;
    }

    body:has(.hero:not(.hero--about)) .navbar {
        background: transparent;
        transition: background-color 0.55s ease;
    }

    body:has(.hero:not(.hero--about)) .navbar.scrolled {
        background: #ffffff;
    }

    body:has(.hero:not(.hero--about)) .navbar-top {
        position: relative;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        border-bottom: none;
        isolation: isolate;
        overflow: visible;
        -webkit-mask-image: none;
        mask-image: none;
        transition: box-shadow 0.55s ease;
    }

    body:has(.hero:not(.hero--about)) .navbar-top > * {
        position: relative;
        z-index: 1;
    }

    /* Glass/blur wash — extends into notch / Dynamic Island safe area */
    body:has(.hero:not(.hero--about)) .navbar-top::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: calc(-1 * env(safe-area-inset-top, 0px));
        height: calc(100% + env(safe-area-inset-top, 0px) + clamp(160px, 28vw, 220px));
        z-index: 0;
        pointer-events: none;
        opacity: 1;
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.55) 0%,
            rgba(255, 255, 255, 0.4) 22%,
            rgba(255, 255, 255, 0.26) 42%,
            rgba(255, 255, 255, 0.14) 62%,
            rgba(255, 255, 255, 0.06) 78%,
            rgba(255, 255, 255, 0.02) 90%,
            rgba(255, 255, 255, 0) 100%
        );
        backdrop-filter: blur(22px) saturate(1.15);
        -webkit-backdrop-filter: blur(22px) saturate(1.15);
        -webkit-mask-image: linear-gradient(
            180deg,
            #000 0%,
            #000 28%,
            rgba(0, 0, 0, 0.88) 42%,
            rgba(0, 0, 0, 0.62) 56%,
            rgba(0, 0, 0, 0.36) 68%,
            rgba(0, 0, 0, 0.18) 78%,
            rgba(0, 0, 0, 0.08) 86%,
            rgba(0, 0, 0, 0.03) 92%,
            rgba(0, 0, 0, 0.01) 96%,
            transparent 100%
        );
        mask-image: linear-gradient(
            180deg,
            #000 0%,
            #000 28%,
            rgba(0, 0, 0, 0.88) 42%,
            rgba(0, 0, 0, 0.62) 56%,
            rgba(0, 0, 0, 0.36) 68%,
            rgba(0, 0, 0, 0.18) 78%,
            rgba(0, 0, 0, 0.08) 86%,
            rgba(0, 0, 0, 0.03) 92%,
            rgba(0, 0, 0, 0.01) 96%,
            transparent 100%
        );
        transition: opacity 0.55s ease;
    }

    /* Solid white layer — fades in on scroll, covers safe area too */
    body:has(.hero:not(.hero--about)) .navbar-top::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: calc(-1 * env(safe-area-inset-top, 0px));
        bottom: 0;
        z-index: 0;
        pointer-events: none;
        background: #ffffff;
        opacity: 0;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0);
        transition: opacity 0.55s ease, box-shadow 0.55s ease;
    }

    body:has(.hero:not(.hero--about)) .navbar.scrolled .navbar-top {
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        border-bottom-color: transparent;
        -webkit-mask-image: none;
        mask-image: none;
    }

    body:has(.hero:not(.hero--about)) .navbar.scrolled .navbar-top::before {
        opacity: 0;
    }

    body:has(.hero:not(.hero--about)) .navbar.scrolled .navbar-top::after {
        opacity: 1;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    }

    /* ── Mobile header: row1 logo+menu · row2 search (not cramped) ── */
    .nav-inner {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        column-gap: 18px;
        row-gap: 14px;
        padding: 16px 20px 16px;
        width: 100%;
        max-width: none;
        height: 100%;
        align-items: center;
        box-sizing: border-box;
    }

    .nav-brand {
        margin-right: 0;
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
        flex-shrink: 0;
        padding: 4px 0;
    }

    .nav-logo-img {
        height: 44px;
    }

    .nav-toggle {
        display: flex;
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        width: 52px;
        height: 52px;
        margin-left: 0;
        border-radius: 14px;
        flex-shrink: 0;
    }

    .hamburger-icon {
        width: 24px;
        height: 24px;
    }

    .nav-search {
        grid-column: 1 / -1;
        grid-row: 2;
        display: flex !important;
        width: 100%;
        min-width: 0;
        max-width: none;
        margin: 0;
        height: 44px;
    }

    .nav-search-input {
        height: 44px;
        font-size: 16px;
        padding: 0 14px 0 42px;
        border-radius: 12px;
        border-color: var(--slate-200);
        background: var(--slate-50);
        color: #0d1117;
    }

    .nav-search-input:focus {
        border-color: var(--red);
        background: #fff;
        box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
    }

    .nav-search-icon {
        left: 14px;
        width: 16px;
        height: 16px;
    }

    .nav-search-ghost {
        left: 42px;
        right: 14px;
        font-size: 16px;
    }

    .nav-search-ghost-static {
        display: none;
    }

    /* ── Fullscreen mobile search ── */
    .nav-search-close {
        display: none;
        flex-shrink: 0;
        align-items: center;
        justify-content: center;
        height: 44px;
        padding: 0 14px;
        border: 1px solid var(--slate-200);
        border-radius: 12px;
        background: #ffffff;
        color: #0d1117;
        font-family: var(--font-body);
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-search-close:active {
        background: var(--slate-50);
    }

    html.search-is-open {
        --nav-h: calc(64px + env(safe-area-inset-top, 0px));
        --nav-top-h: 64px;
        overflow: hidden;
    }

    body.search-is-open {
        overflow: hidden;
        touch-action: none;
    }

    html.search-is-open .nav-brand,
    html.search-is-open .nav-toggle {
        display: none !important;
    }

    html.search-is-open .navbar-top {
        height: var(--nav-top-h);
        min-height: var(--nav-top-h);
    }

    html.search-is-open .nav-inner {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        padding: 10px 16px;
        height: 100%;
    }

    html.search-is-open .nav-search {
        display: flex !important;
        flex: 1 1 auto;
        align-items: center;
        gap: 10px;
        width: auto;
        height: 44px;
        margin: 0;
        grid-column: unset;
        grid-row: unset;
    }

    html.search-is-open .nav-search-close {
        display: inline-flex;
    }

    html.search-is-open .nav-search-field {
        flex: 1;
        min-width: 0;
    }

    .nav-search-backdrop {
        inset: 0;
        z-index: 310;
        background: #ffffff;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    /* Navbar (input + Zavrieť) and its panel must paint above the white backdrop */
    html.search-is-open .navbar {
        z-index: 340;
    }

    html.search-is-open .operator-pill {
        display: none !important;
    }

    .nav-search.is-open {
        z-index: 330;
    }

    .nav-search-panel {
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: none;
        max-height: none;
        height: calc(var(--search-vh, 100dvh) - var(--nav-h));
        margin: 0;
        border: none;
        border-radius: 0;
        box-shadow: none;
        z-index: 320;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto minmax(0, 1fr);
        transform: none;
        background: #ffffff;
        transition: none;
    }

    .nav-search.is-open .nav-search-panel {
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-search-side {
        display: none;
    }

    .nav-search-side::-webkit-scrollbar {
        display: none;
    }

    .nav-search-cat {
        width: auto;
        flex-shrink: 0;
        gap: 8px;
        padding: 10px 14px;
        margin: 0;
        border-radius: 999px;
        border: 1px solid var(--slate-200);
        background: var(--slate-50);
        font-size: 13px;
        font-weight: 600;
        color: rgba(13, 17, 23, 0.72);
        white-space: nowrap;
    }

    .nav-search-cat-label {
        font-size: 13px;
    }

    .nav-search-cat svg {
        width: 16px;
        height: 16px;
    }

    .nav-search-cat.is-active {
        background: #0d1117;
        border-color: #0d1117;
        color: #ffffff;
        box-shadow: none;
    }

    .nav-search-cat.is-active svg {
        color: #ffffff;
        opacity: 1;
    }

    .nav-search-cat-count {
        display: inline;
        margin-left: 2px;
        font-size: 12px;
        color: rgba(13, 17, 23, 0.4);
    }

    .nav-search-cat.is-active .nav-search-cat-count {
        color: rgba(255, 255, 255, 0.65);
    }

    .nav-search-body {
        min-height: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        background: #ffffff;
    }

    .nav-search-body-top {
        position: sticky;
        top: 0;
        z-index: 1;
        display: flex;
        align-items: center;
        min-height: 52px;
        padding: 14px 18px 10px;
        gap: 10px;
        background: #ffffff;
        border-bottom: 1px solid var(--slate-100);
    }

    .nav-search-body-title {
        font-size: 15px;
        font-weight: 700;
    }

    .nav-search-body-count {
        display: none;
    }

    .nav-search-results {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        padding-top: 4px;
        padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    }

    .nav-search-person {
        gap: 12px;
        padding: 10px 16px 24px;
    }

    .nav-search-person-back {
        min-height: 40px;
        padding: 8px 4px;
        font-size: 14px;
    }

    .nav-search-person-card {
        grid-template-columns: 1fr;
        grid-template-areas:
            "photo"
            "copy"
            "actions";
        justify-items: center;
        text-align: center;
        gap: 14px;
        padding: 22px 18px 18px;
        border-radius: 18px;
    }

    .nav-search-person-photo {
        width: 112px;
        height: 112px;
    }

    .nav-search-person-name {
        font-size: 1.28rem;
    }

    .nav-search-person-role {
        font-size: 0.92rem;
    }

    .nav-search-person-actions {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .nav-search-person-link {
        align-items: flex-start;
        text-align: left;
        padding: 14px 16px;
        min-height: 64px;
        justify-content: center;
    }

    .nav-search-person-link-value {
        font-size: 1.02rem;
    }

    .nav-search-group-title {
        display: none;
    }

    .nav-search-row {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 12px;
        padding: 15px 18px;
        min-height: 64px;
    }

    .nav-search-row-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background: var(--slate-50);
    }

    .nav-search-row-title {
        font-size: 15px;
    }

    .nav-search-row-desc {
        margin-top: 2px;
        font-size: 12px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        color: rgba(13, 17, 23, 0.58);
    }

    .nav-search-row-tag {
        display: none;
    }

    .nav-search-browse-row {
        padding: 15px 18px;
        min-height: 64px;
        gap: 10px;
    }

    .nav-search-browse-title {
        font-size: 15px;
    }

    .nav-search-browse-meta {
        margin-top: 2px;
        font-size: 12px;
        line-height: 1.4;
        color: rgba(13, 17, 23, 0.58);
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .nav-search-browse-arrow {
        width: 12px;
        height: 12px;
        opacity: 0.45;
    }

    .nav-search-row--accent .nav-search-row-icon,
    .nav-search-browse-row--accent .nav-search-browse-title,
    .nav-search-browse-row--accent .nav-search-browse-meta {
        color: initial;
    }

    .nav-search-row--accent .nav-search-row-icon {
        background: var(--slate-50);
        color: var(--accent-blue);
    }

    .nav-search-browse-row--accent .nav-search-browse-title {
        color: #0d1117;
    }

    .nav-search-browse-row--accent .nav-search-browse-meta {
        color: rgba(13, 17, 23, 0.58);
    }

    .nav-search-empty {
        padding: 56px 24px;
    }

    .nav-search-empty-title {
        font-size: 18px;
    }

    .nav-search-empty-desc {
        font-size: 14px;
    }

    html.mobile-nav-open .nav-search-panel,
    html.mobile-nav-open .nav-search-backdrop {
        display: none !important;
    }

    /* ══════════════════════════════════════════════════
       FULLSCREEN MOBILE NAVIGATION — one clean system
    ══════════════════════════════════════════════════ */
    .mobile-drawer {
        z-index: 300;
    }

    .mdr-panel {
        width: 100%;
        max-width: none;
        left: 0;
        right: 0;
        height: 100%;
        max-height: 100dvh;
        background: #ffffff;
        color: #0d1117;
        transform: translateY(8px);
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition:
            transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
            opacity 0.22s ease,
            visibility 0.22s ease;
    }

    .mobile-drawer.open .mdr-panel {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mdr-backdrop {
        background: rgba(13, 17, 23, 0.38);
        opacity: 0;
        transition: opacity 0.22s ease;
    }

    .mobile-drawer.open .mdr-backdrop {
        opacity: 1;
    }

    .mdr-top {
        flex-shrink: 0;
        padding: 0 18px;
        height: calc(64px + env(safe-area-inset-top, 0px));
        min-height: calc(64px + env(safe-area-inset-top, 0px));
        padding-top: env(safe-area-inset-top, 0px);
        background: #ffffff;
        border-bottom: 1px solid var(--slate-100);
    }

    .mdr-brand .nav-logo-img {
        height: 30px;
        filter: none;
    }

    .mdr-close {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        border: 1px solid var(--slate-200);
        background: #ffffff;
        color: #0d1117;
    }

    .mdr-close:hover,
    .mdr-close:active {
        background: var(--slate-50);
        color: #0d1117;
    }

    .mdr-nav {
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        padding: 4px 20px 24px;
        gap: 0;
    }

    .mdr-promo {
        display: block;
        position: relative;
        flex: 0 0 auto;
        width: 100%;
        max-width: none;
        margin: 20px 0 8px;
        border: 1.5px solid rgba(13, 17, 23, 0.18);
        border-radius: 14px;
        overflow: hidden;
        background: transparent;
        text-decoration: none;
        color: inherit;
    }

    .mdr-promo::after {
        content: "";
        display: block;
        position: absolute;
        top: 12px;
        right: 12px;
        width: 28px;
        height: 28px;
        z-index: 2;
        pointer-events: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 17L17 7M17 7H10M17 7v7' stroke='%23e30613' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        transform: rotate(10deg);
        transform-origin: center center;
        transition: transform 0.28s var(--btn-ease);
    }

    .mdr-promo:hover::after,
    .mdr-promo:active::after {
        transform: rotate(10deg) scale(1.18);
    }

    .mdr-promo img {
        display: block;
        width: 100%;
        height: auto;
    }

    .mdr-section {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 18px 0 10px;
        border-bottom: 1px solid var(--slate-100);
        text-align: left;
    }

    .mdr-section:last-of-type {
        border-bottom: none;
        padding-bottom: 4px;
    }

    .mdr-section-label {
        margin: 0;
        padding: 0 0 10px;
        width: 100%;
        font-family: var(--font-body);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: rgba(13, 17, 23, 0.34);
        text-align: left;
    }

    .mdr-link,
    .mdr-link--primary {
        display: block;
        width: 100%;
        font-family: var(--font-body);
        font-size: 17px;
        font-weight: 600;
        letter-spacing: -0.02em;
        line-height: 1.25;
        color: #0d1117;
        padding: 15px 0;
        border-radius: 0;
        border-bottom: 1px solid var(--slate-100);
        transition: color 0.15s ease, opacity 0.15s ease;
        text-align: left;
    }

    .mdr-section > .mdr-link:last-child,
    .mdr-section > .mdr-link--primary:last-child {
        border-bottom: none;
    }

    .mdr-link:hover,
    .mdr-link:active,
    .mdr-link--primary:hover,
    .mdr-link--primary:active {
        background: none;
        color: #0d1117;
        padding-left: 0;
        opacity: 0.55;
    }

    .mdr-group {
        width: 100%;
        border-bottom: 1px solid var(--slate-100);
    }

    .mdr-group:last-child {
        border-bottom: none;
    }

    .mdr-accordion,
    .mdr-accordion--proj,
    .mdr-accordion--inz,
    .mdr-accordion--vyst {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        width: 100%;
        font-family: var(--font-body);
        font-size: 17px;
        font-weight: 600;
        letter-spacing: -0.02em;
        line-height: 1.25;
        color: #0d1117;
        padding: 15px 0;
        border-radius: 0;
        text-align: left;
    }

    .mdr-accordion-left {
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        min-width: 0;
        width: auto;
        flex: 1 1 auto;
    }

    .mdr-accordion .mdr-chevron {
        position: static;
        flex-shrink: 0;
        transform: none;
        margin-left: auto;
    }

    .mdr-accordion[aria-expanded="true"] .mdr-chevron {
        transform: rotate(180deg);
    }

    .mdr-accordion:hover,
    .mdr-accordion--proj:hover,
    .mdr-accordion--inz:hover,
    .mdr-accordion--vyst:hover,
    .mdr-accordion--proj[aria-expanded="true"],
    .mdr-accordion--inz[aria-expanded="true"],
    .mdr-accordion--vyst[aria-expanded="true"] {
        background: none;
        color: #0d1117;
    }

    /* Hide service icons — same visual language as Navigácia */
    .mdr-icon-wrap,
    .mdr-icon-wrap--proj,
    .mdr-icon-wrap--inz,
    .mdr-icon-wrap--vyst {
        display: none;
    }

    .mdr-chevron {
        width: 16px;
        height: 16px;
        color: rgba(13, 17, 23, 0.28);
        opacity: 1;
    }

    .mdr-accordion[aria-expanded="true"] .mdr-chevron {
        color: rgba(13, 17, 23, 0.45);
    }

    .mdr-accordion-body {
        margin: 0;
        padding: 0 0 8px;
        border-left: none;
        text-align: left;
    }

    .mdr-sub-link {
        display: block;
        font-size: 15px;
        font-weight: 500;
        line-height: 1.3;
        color: rgba(13, 17, 23, 0.58);
        padding: 11px 0;
        border-radius: 0;
        transition: color 0.15s ease, opacity 0.15s ease;
        text-align: left;
    }

    .mdr-sub-link:hover,
    .mdr-sub-link:active,
    .mdr-group:has(.mdr-accordion--proj) .mdr-sub-link:hover,
    .mdr-group:has(.mdr-accordion--inz) .mdr-sub-link:hover,
    .mdr-group:has(.mdr-accordion--vyst) .mdr-sub-link:hover {
        background: none;
        color: #0d1117;
        padding-left: 0;
        opacity: 0.7;
    }

    .mdr-footer {
        flex-shrink: 0;
        padding: 14px 18px calc(16px + env(safe-area-inset-bottom, 0px));
        background: #ffffff;
        border-top: 1px solid var(--slate-100);
    }

    .mdr-cta {
        display: block;
        width: 100%;
        margin: 0;
        border-radius: 0;
        padding: 15px 20px;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: -0.01em;
    }

    .mdr-footer-contacts {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 12px;
    }

    .mdr-footer-contacts a {
        display: block;
        text-align: center;
        font-family: var(--font-body);
        font-size: 13px;
        font-weight: 500;
        color: rgba(13, 17, 23, 0.48);
        text-decoration: none;
    }

    .mdr-footer-contacts a:hover,
    .mdr-footer-contacts a:focus-visible {
        color: #0d1117;
    }

    .mdr-meta {
        display: none;
    }
}

/* Mobile */
@media (max-width: 640px) {
    :root {
        --gutter: 22px;
        --nav-h: calc(132px + env(safe-area-inset-top, 0px));
        --nav-top-h: 132px;
    }

    .nav-inner {
        padding: 14px 18px 14px;
        column-gap: 16px;
        row-gap: 12px;
    }

    .nav-logo-img {
        height: 42px;
    }

    .nav-toggle {
        width: 50px;
        height: 50px;
    }

    .hamburger-icon {
        width: 23px;
        height: 23px;
    }

    .nav-search {
        height: 44px;
    }

    .nav-search-input {
        height: 44px;
        font-size: 16px;
    }

    .nav-search-ghost {
        font-size: 16px;
    }

    .btn {
        flex: 1;
        justify-content: center;
        padding: 13px 14px;
        font-size: 14px;
    }

    .hero-cta.btn {
        flex: 0 0 auto;
        width: auto;
        align-self: flex-start;
    }

    .hero-brand {
        display: none;
    }
}

/* ============================================================
   HOMEPAGE SECTIONS
   ============================================================ */

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

section {
    color: #0d1117;
}

/* Reusable typography */
.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--text-eyebrow);
    font-weight: var(--weight-ui);
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: #e30613;
    margin-bottom: 20px;
}

.eyebrow--light {
    color: rgba(255, 255, 255, 0.7);
}

.section-title {
    font-family: var(--font-display);
    font-weight: var(--weight-title);
    font-size: var(--text-h2);
    line-height: var(--lh-title);
    letter-spacing: var(--tracking-title);
    color: #0d1117;
    max-width: 20ch;
}

.section-head {
    margin-bottom: clamp(40px, 5vw, 72px);
    max-width: 760px;
}

.section-sub {
    font-family: var(--font-body);
    font-weight: var(--weight-body);
    font-size: var(--text-lead);
    line-height: var(--lh-lead);
    color: rgba(13, 17, 23, 0.58);
    margin-top: 18px;
    max-width: 48ch;
}

.lead {
    font-family: var(--font-body);
    font-weight: var(--weight-body);
    font-size: var(--text-lead);
    line-height: var(--lh-lead);
    color: rgba(13, 17, 23, 0.72);
    margin: 28px 0 20px;
    max-width: 50ch;
}

.muted-p {
    font-family: var(--font-body);
    font-weight: var(--weight-body);
    font-size: var(--text-body);
    line-height: var(--lh-body);
    color: rgba(13, 17, 23, 0.6);
    max-width: 54ch;
}

.link-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--btn-gap);
    margin-top: 30px;
    font-family: var(--font-display);
    font-weight: var(--weight-ui);
    font-size: var(--btn-font-size);
    letter-spacing: 0.02em;
    color: #0d1117;
    text-decoration: none;
    transition: color 0.22s var(--btn-ease);
}

.link-cta span {
    color: var(--red);
    transition: transform 0.22s var(--btn-ease);
}

.link-cta:hover {
    color: var(--red);
}

.link-cta:hover span {
    transform: translateX(4px);
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ---------- LOGO STRIP under hero ---------- */
.logos-strip {
    background: #ffffff;
    padding: clamp(48px, 7vw, 96px) 0 clamp(36px, 5vw, 64px);
    overflow: hidden;
}

.logos-track {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(56px, 9vw, 130px);
    flex-wrap: wrap;
    will-change: transform;
}

.logo-mono {
    height: clamp(30px, 4vw, 54px);
    width: auto;
    max-width: clamp(120px, 22vw, 230px);
    object-fit: contain;
    filter: brightness(0);
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.3s ease;
}

body.hero-ready .logos-track .logo-mono {
    opacity: 0.72;
    transform: none;
    transition:
        opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

body.hero-ready .logos-track .logo-mono:nth-child(1) { transition-delay: 0.82s; }
body.hero-ready .logos-track .logo-mono:nth-child(2) { transition-delay: 0.94s; }
body.hero-ready .logos-track .logo-mono:nth-child(3) { transition-delay: 1.06s; }

.logo-mono:hover {
    opacity: 1;
}

.logo-mono--ready {
    filter: none;
}

body.hero-ready .logos-track .logo-mono--ready {
    opacity: 0.72;
}

/* ---------- SECTION 2 — TRUST ---------- */
.stats {
    background: #ffffff;
    padding: clamp(24px, 4vw, 56px) 0 clamp(70px, 8vw, 120px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(24px, 4vw, 56px);
}

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

.stat-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -2px;
    color: #0d1117;
}

.stat-num--text {
    color: #e30613;
}

.stat-num--img {
    display: flex;
    align-items: center;
}

.stat-eu-img {
    height: clamp(44px, 6vw, 72px);
    width: auto;
    display: block;
    object-fit: contain;
}

.stat-label {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(0.9rem, 1.1vw, 1.05rem);
    color: rgba(13, 17, 23, 0.6);
}


/* ══════════════════════════════════════════════════════════
   SECTION — OFFICES MAP
══════════════════════════════════════════════════════════ */
.map-section {
    display: flex;
    align-items: stretch;
    min-height: 0;
    position: relative;
    z-index: 2;
    background:
        radial-gradient(ellipse 48% 60% at 12% 70%, rgba(79, 109, 137, 0.05) 0%, transparent 72%),
        linear-gradient(180deg, #e9edf2 0%, #e4e9ef 48%, #eef1f5 100%);
    overflow: visible;
    padding-bottom: clamp(24px, 3vw, 40px);
    color: #0d1117;
}

/* PC — subtle grid over soft gray */
@media (min-width: 861px) {
    .map-section::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        opacity: 0.35;
        background-image:
            linear-gradient(rgba(13, 17, 23, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(13, 17, 23, 0.03) 1px, transparent 1px);
        background-size: 56px 56px;
        mask-image: radial-gradient(ellipse 80% 75% at 65% 45%, #000 15%, transparent 80%);
        -webkit-mask-image: radial-gradient(ellipse 80% 75% at 65% 45%, #000 15%, transparent 80%);
    }

    .map-section::after {
        display: none;
    }

    .map-panel,
    .map-visual,
    .map-svg-wrap {
        background: transparent;
    }

    .map-panel,
    .map-visual {
        position: relative;
        z-index: 1;
    }

    .map-watermark {
        color: rgba(13, 17, 23, 0.04);
    }
}

.map-watermark {
    position: absolute;
    top: 48%;
    left: 58%;
    z-index: 1;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(6rem, 22vw, 16rem);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 0.88;
    color: rgba(13, 17, 23, 0.028);
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    transform: translate(-30%, -42%);
}

.map-panel-title,
.map-panel-kicker,
.map-panel-cities,
.map-panel-lead,
.map-panel-cta {
    opacity: 0;
    transform: translateY(18px);
    will-change: opacity, transform;
}

.map-panel-cta {
    transform: translateY(14px) scale(0.98);
}

/* ── Left panel — anchored with branch controls, not floating mid-map ── */
.map-panel {
    width: clamp(260px, 26%, 340px);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 14px;
    padding:
        clamp(48px, 6vw, 80px)
        clamp(16px, 2vw, 28px)
        clamp(28px, 3.5vw, 44px)
        var(--section-rail-left);
    background: transparent;
    position: relative;
    z-index: 2;
}

.map-panel-kicker {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--text-eyebrow);
    font-weight: var(--weight-ui);
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: var(--red);
}

.map-panel-title {
    font-family: var(--font-display);
    font-weight: var(--weight-title);
    font-size: clamp(2.1rem, 3.2vw, 2.65rem);
    letter-spacing: var(--tracking-title);
    color: #111111;
    margin: 0;
    line-height: 1.05;
    max-width: 8ch;
    white-space: normal;
}

.map-panel-title-dot {
    color: var(--red);
}

.map-panel-cities {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--text-caption);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.01em;
    color: rgba(13, 17, 23, 0.5);
    white-space: nowrap;
}

.map-panel-cta {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin-top: 6px;
    text-decoration: none;
}

.map-panel-lead {
    margin: 0;
    max-width: 28ch;
    font-family: var(--font-body);
    font-size: var(--text-lead);
    font-weight: var(--weight-body);
    line-height: var(--lh-lead);
    color: rgba(13, 17, 23, 0.58);
}

.map-visual {
    --map-h: clamp(340px, 42vh, 520px);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    position: relative;
    z-index: 1;
    background: transparent;
}

.map-svg-wrap {
    flex-shrink: 0;
    position: relative;
    height: var(--map-h);
    min-height: var(--map-h);
    background: transparent;
    overflow: visible;
    opacity: 0;
    transform: translateY(36px) scale(0.97);
    transform-origin: center top;
    will-change: opacity, transform;
    z-index: 1;
}

#skMapChart {
    position: absolute;
    top: calc(var(--map-h) * -0.55);
    left: 6%;
    width: 100%;
    height: calc(var(--map-h) * 1.55);
    min-height: calc(var(--map-h) * 1.55);
    z-index: 2;
    pointer-events: auto;
    background: transparent !important;
    overflow: visible;
}

#skMapChart > div,
#skMapChart canvas,
#skMapChart svg {
    background: transparent !important;
}

#skMapChart .map-branch-popup,
.map-svg-wrap .map-branch-popup {
    position: absolute;
    z-index: 6;
}

.map-pins {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
}

.map-pins.is-ready {
    opacity: 1;
    visibility: visible;
}

.map-pin {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 48px;
    padding: 0;
    border: 0;
    background: transparent;
    transform: translate(-50%, -100%);
    transform-origin: 50% 100%;
    cursor: pointer;
    pointer-events: auto;
    z-index: 1;
    opacity: 0.82;
    transition:
        transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.22s ease;
}

.map-pin.is-active {
    z-index: 3;
    opacity: 1;
    transform: translate(-50%, -100%) scale(1.1);
}

/* Keep hit-area; only hide the visual pin under the popout */
.map-pin.is-open {
    z-index: 4;
    opacity: 1;
    transform: translate(-50%, -100%);
}

.map-pin.is-open .map-pin__body,
.map-pin.is-open .map-pin__pulse {
    opacity: 0;
    transition: opacity 0.18s ease;
}

/* Classic red teardrop — no black */
.map-pin__body {
    position: relative;
    display: block;
    width: 34px;
    height: 34px;
    margin: 0 auto;
    border-radius: 50% 50% 50% 0;
    background:
        linear-gradient(145deg, #ff3b45 0%, var(--red) 48%, #b80510 100%);
    border: 2px solid #ffffff;
    box-shadow:
        0 4px 12px rgba(227, 6, 19, 0.35),
        0 2px 6px rgba(13, 17, 23, 0.18);
    transform: rotate(-45deg);
}

.map-pin.is-active .map-pin__body {
    box-shadow:
        0 6px 18px rgba(227, 6, 19, 0.45),
        0 2px 8px rgba(13, 17, 23, 0.2);
}

.map-pin__logo {
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    overflow: hidden;
    transform: rotate(45deg);
    background: transparent;
}

.map-pin__logo img {
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    /* Keep arrow tip inside the circular clip (source art hugs the right edge) */
    width: 78%;
    height: 78%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    object-position: center;
    /* Black bg disappears on red pin; white K stays */
    mix-blend-mode: screen;
    filter: brightness(1.08);
}

.map-pin__pulse {
    position: absolute;
    left: 50%;
    top: 17px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(227, 6, 19, 0.28);
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

.map-pin.is-active .map-pin__pulse {
    animation: mapPinPulse 1.9s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes mapPinPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.85);
        opacity: 0.35;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.85);
        opacity: 0;
    }
}

.map-branch-popup {
    position: absolute;
    z-index: 7;
    left: 0;
    top: 0;
    width: 212px;
    max-width: min(212px, 72vw);
    transform: translate(-50%, -100%) scale(0.18);
    transform-origin: 50% 100%;
    pointer-events: none;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    filter: drop-shadow(0 8px 24px rgba(13, 17, 23, 0.14))
            drop-shadow(0 2px 6px rgba(13, 17, 23, 0.06));
    transition:
        opacity 0.2s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.36s;
}

.map-branch-popup.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -100%) scale(1);
    pointer-events: auto;
}

.map-branch-popup__shell {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 14px 16px 15px;
    background: #ffffff;
    border: 1.5px solid var(--slate-200);
    border-radius: 18px;
    overflow: hidden;
}

.map-branch-popup__mark {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background:
        linear-gradient(145deg, #ff3b45 0%, var(--red) 50%, #b80510 100%);
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 1.5px var(--red);
    flex-shrink: 0;
    transform: scale(0.75);
    opacity: 0;
    transition:
        opacity 0.22s ease 0.08s,
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0.06s;
}

.map-branch-popup.is-visible .map-branch-popup__mark {
    opacity: 1;
    transform: scale(1);
}

.map-branch-popup__mark img {
    display: block;
    width: 18px;
    height: 18px;
    object-fit: cover;
    mix-blend-mode: screen;
    filter: brightness(1.08);
}

.map-branch-popup__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    opacity: 0;
    transform: translateY(6px);
    transition:
        opacity 0.22s ease 0.1s,
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0.08s;
}

.map-branch-popup.is-visible .map-branch-popup__body {
    opacity: 1;
    transform: translateY(0);
}

.map-branch-popup__tip {
    display: block;
    width: 14px;
    height: 14px;
    margin: -8px auto 0;
    background: #ffffff;
    border-right: 1.5px solid var(--slate-200);
    border-bottom: 1.5px solid var(--slate-200);
    transform: rotate(45deg);
    border-radius: 0 0 2px 0;
}

.map-branch-popup-role {
    display: block;
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
}

.map-branch-popup-city {
    display: block;
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0d1117;
    line-height: 1.15;
}

.map-branch-popup-address {
    display: block;
    margin-top: 2px;
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 400;
    line-height: 1.35;
    color: rgba(13, 17, 23, 0.58);
    max-width: 28ch;
}

.map-branch-panel {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
    min-height: 0;
    margin-top: clamp(-48px, -5vw, -24px);
    position: relative;
    z-index: 4;
    padding:
        0
        var(--section-rail-right)
        clamp(16px, 2.5vw, 28px)
        var(--section-rail-left);
    background: transparent;
    opacity: 0;
    transform: translateY(20px);
    will-change: opacity, transform;
}

.map-section.is-copy-in .map-panel-kicker {
    opacity: 1;
    transform: none;
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.02s,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.02s;
}

.map-section.is-copy-in .map-panel-title {
    opacity: 1;
    transform: none;
    transition:
        opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.06s,
        transform 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.06s;
}

.map-section.is-copy-in .map-panel-lead {
    opacity: 1;
    transform: none;
    transition:
        opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.18s,
        transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.18s;
}

.map-section.is-copy-in .map-panel-cities {
    opacity: 1;
    transform: none;
    transition:
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.18s,
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.18s;
}

.map-section.is-copy-in .map-panel-cta {
    opacity: 1;
    transform: none;
    transition:
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s,
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.map-section.is-revealed .map-svg-wrap {
    opacity: 1;
    transform: none;
    transition:
        opacity 1s cubic-bezier(0.22, 1, 0.36, 1) 0.12s,
        transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.12s;
}

.map-section.is-revealed .map-branch-panel {
    opacity: 1;
    transform: none;
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.28s,
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.28s;
}

.branch-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.branch-list li {
    min-width: 0;
}

.branch-item {
    display: block;
    width: 100%;
    padding: 10px 16px;
    border: 1px solid var(--slate-200);
    border-radius: 999px;
    background: #ffffff;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.branch-item:hover {
    border-color: var(--slate-300);
    transform: translateY(-1px);
}

.branch-item.active {
    background: #0d1117;
    border-color: #0d1117;
}

.branch-item-city {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: rgba(13, 17, 23, 0.62);
    line-height: 1.2;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.branch-item:hover .branch-item-city {
    color: #0d1117;
}

.branch-item.active .branch-item-city {
    color: #ffffff;
    font-weight: 600;
}

.branch-detail-card {
    position: relative;
    min-height: 92px;
    padding: 18px 22px;
    background: #ffffff;
    border: 1px solid rgba(227, 6, 19, 0.16);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(13, 17, 23, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.branch-detail-card:has(.branch-detail.active) {
    border-color: rgba(227, 6, 19, 0.22);
    box-shadow: 0 10px 28px rgba(13, 17, 23, 0.08);
}

.branch-detail {
    display: none;
    align-items: flex-start;
    gap: 14px;
    animation: branchDetailIn 0.24s ease;
}

.branch-detail.active {
    display: flex;
}

.branch-detail-pin {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    margin-top: 8px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 4px rgba(227, 6, 19, 0.14);
}

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

.branch-detail-hours {
    flex-shrink: 0;
    margin-left: auto;
    padding-left: 24px;
    border-left: 1px solid var(--slate-200);
    text-align: left;
    min-width: 148px;
}

.branch-detail-hours-label {
    display: block;
    margin-bottom: 6px;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
}

.branch-detail-hours p {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.86rem;
    font-weight: 400;
    line-height: 1.45;
    color: rgba(13, 17, 23, 0.58);
}

.branch-detail-hours p + p {
    margin-top: 2px;
}

.branch-detail-hours strong {
    font-weight: 600;
    color: #0d1117;
}

@keyframes branchDetailIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.branch-detail-head {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 6px;
}

.branch-detail-city {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    font-weight: 700;
    letter-spacing: -0.3px;
    color: #0d1117;
    margin: 0;
    line-height: 1.15;
}

.branch-detail-role {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--red);
}

.branch-detail-address {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.55;
    color: rgba(13, 17, 23, 0.58);
    margin: 0;
}

.am5-credits-button { opacity: 0.25 !important; }

.am5-tooltip-container .am5-tooltip {
    font-family: var(--font-body) !important;
}

/* ═══════════════════════════════════════════════════════════
   SECTION — CLIENT REVIEWS
═══════════════════════════════════════════════════════════ */
.reviews {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: clamp(48px, 6vw, 72px) 0;
}

.reviews::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url("img/elprokan-sluzby.webp") center center / cover no-repeat;
}

.reviews::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(
        180deg,
        rgba(245, 247, 249, 0.92) 0%,
        rgba(245, 247, 249, 0.84) 50%,
        rgba(245, 247, 249, 0.9) 100%
    );
}

.reviews-inner {
    position: relative;
    z-index: 2;
}

.reviews-watermark {
    position: absolute;
    top: 50%;
    right: max(
        calc(var(--nav-gutter) * 0.35),
        calc((100vw - var(--nav-container)) / 2 + var(--nav-gutter) * 0.2)
    );
    z-index: 1;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(20rem, 46vw, 40rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 0.82;
    color: var(--red);
    opacity: 0.22;
    pointer-events: none;
    user-select: none;
    transform: translate(8%, -48%);
}

.reviews-head {
    max-width: 640px;
    margin-bottom: clamp(24px, 3vw, 36px);
}

.reviews-head .eyebrow {
    margin-bottom: 12px;
}

.reviews-title {
    font-family: var(--font-display);
    font-weight: var(--weight-title);
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    line-height: 1.06;
    letter-spacing: -1px;
    color: #0d1117;
    margin: 0;
    max-width: 16ch;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(14px, 2vw, 22px);
    align-items: stretch;
}

.review-card {
    margin: 0;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 32px rgba(13, 17, 23, 0.06);
    padding: clamp(18px, 2.2vw, 24px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 100%;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
    border-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 44px rgba(13, 17, 23, 0.1);
}

.review-mark {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    font-weight: 800;
    line-height: 1;
    color: var(--red);
}

.review-text {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(0.9rem, 1.05vw, 0.98rem);
    line-height: 1.55;
    color: rgba(13, 17, 23, 0.72);
    margin: 0;
    flex: 1;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 4px;
    border-top: 1px solid var(--slate-200);
}

.review-author strong {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: #0d1117;
}

.review-author span {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(13, 17, 23, 0.48);
    line-height: 1.4;
}

@media (max-width: 960px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .reviews-watermark {
        font-size: clamp(14rem, 72vw, 22rem);
        top: auto;
        bottom: 6%;
        transform: translate(16%, 0);
        opacity: 0.16;
    }
}

@media (max-width: 860px) {
    .map-section {
        flex-direction: column;
        align-items: center;
        min-height: 0;
        padding-bottom: 28px;
    }

    .map-panel {
        width: 100%;
        padding: 80px 20px 16px;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .map-panel-kicker {
        letter-spacing: 0.12em;
    }

    .map-panel-title {
        font-size: clamp(2.05rem, 8vw, 2.5rem);
        letter-spacing: -0.03em;
        max-width: 9ch;
        line-height: 1.02;
        text-align: center;
        white-space: normal;
    }

    .map-panel-lead {
        text-align: center;
        max-width: 26ch;
        margin: 0 auto;
        font-size: 0.98rem;
        line-height: 1.5;
        color: rgba(13, 17, 23, 0.54);
    }

    .map-panel-cities {
        white-space: normal;
        text-align: center;
        max-width: 28ch;
    }

    .map-panel-cta {
        align-self: center;
        margin-top: 2px;
        min-height: 46px;
        padding-inline: 20px;
    }

    .map-watermark {
        font-size: clamp(4.5rem, 38vw, 8rem);
        transform: translate(-50%, -50%);
        left: 50%;
        top: 50%;
        opacity: 0.7;
    }

    .map-branch-panel {
        margin-top: -22px;
        padding: 0 16px 26px;
        gap: 14px;
        width: 100%;
        z-index: 4;
    }

    .branch-detail.active {
        flex-wrap: wrap;
        gap: 12px;
    }

    .branch-detail-pin {
        width: 8px;
        height: 8px;
        margin-top: 7px;
        box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.12);
    }

    .branch-detail-head {
        gap: 4px 10px;
        margin-bottom: 4px;
    }

    .branch-detail-city {
        font-size: 1.12rem;
        letter-spacing: -0.02em;
    }

    .branch-detail-role {
        font-size: 0.7rem;
        letter-spacing: 0.07em;
    }

    .branch-detail-address {
        font-size: 0.88rem;
        line-height: 1.45;
        color: rgba(13, 17, 23, 0.56);
    }

    .branch-detail-hours {
        width: 100%;
        margin-left: 20px;
        margin-top: 8px;
        padding-left: 0;
        padding-top: 10px;
        border-left: none;
        border-top: 1px solid var(--slate-200);
        min-width: 0;
    }

    .branch-detail-hours-label {
        margin-bottom: 4px;
        font-size: 0.64rem;
    }

    .branch-detail-hours p {
        font-size: 0.84rem;
        line-height: 1.4;
    }

    .branch-list {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        gap: 8px;
        padding: 2px 4px 6px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 4px;
        mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 36px), transparent 100%);
        -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 36px), transparent 100%);
    }

    .branch-list::-webkit-scrollbar {
        display: none;
    }

    .branch-list li {
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .branch-item {
        white-space: nowrap;
        padding: 11px 16px;
        min-height: 42px;
    }

    .branch-item-city {
        font-size: 13.5px;
    }

    .branch-detail-card {
        padding: 15px 16px 14px;
        min-height: 0;
        border-radius: 14px;
        box-shadow: 0 6px 18px rgba(13, 17, 23, 0.05);
    }

    .map-visual {
        --map-h: min(64vw, 400px);
        z-index: auto;
        width: 100%;
        align-items: center;
    }

    .map-svg-wrap {
        height: var(--map-h);
        min-height: var(--map-h);
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        isolation: isolate;
        touch-action: pan-y;
    }

    #skMapChart {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: var(--map-h);
        min-height: var(--map-h);
        margin: 0 auto;
        overflow: hidden;
        pointer-events: none;
        touch-action: pan-y;
        -webkit-user-select: none;
        user-select: none;
    }

    #skMapChart canvas,
    #skMapChart svg {
        pointer-events: none !important;
        touch-action: pan-y !important;
    }

    .map-pins {
        overflow: hidden;
        touch-action: pan-y;
    }

    .map-pin {
        width: 28px;
        height: 34px;
        opacity: 0.9;
        touch-action: manipulation;
    }

    .map-pin.is-active {
        transform: translate(-50%, -100%) scale(1.08);
    }

    .map-pin__body {
        width: 22px;
        height: 22px;
        border-width: 1.5px;
        box-shadow:
            0 2px 8px rgba(227, 6, 19, 0.3),
            0 1px 3px rgba(13, 17, 23, 0.14);
    }

    .map-pin__logo {
        inset: 3px;
    }

    .map-pin__pulse {
        top: 11px;
        width: 22px;
        height: 22px;
    }

    .map-branch-popup {
        width: 184px;
        max-width: min(184px, 78vw);
    }

    .map-branch-popup__shell {
        padding: 12px 13px 14px;
        border-radius: 18px;
        gap: 6px;
    }

    .map-branch-popup-role {
        font-size: 0.58rem;
    }

    .map-branch-popup-city {
        font-size: 0.95rem;
    }

    .map-branch-popup-address {
        font-size: 0.72rem;
    }
}

@media (max-width: 480px) {
    .map-section {
        padding-bottom: 20px;
    }

    .map-panel {
        padding: 72px 18px 14px;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .map-panel-title {
        font-size: clamp(2rem, 9.2vw, 2.4rem);
        text-align: center;
        line-height: 1.01;
    }

    .map-panel-lead {
        font-size: 0.94rem;
        max-width: 24ch;
        line-height: 1.48;
    }

    .map-visual {
        --map-h: min(68vw, 360px);
    }

    .map-branch-panel {
        padding: 10px 14px 20px;
        gap: 12px;
    }

    .branch-item {
        padding: 10px 14px;
        min-height: 40px;
    }

    .branch-detail-card {
        padding: 14px 14px 12px;
    }

    .branch-detail-city {
        font-size: 1.06rem;
    }

    .branch-detail-address {
        font-size: 0.84rem;
    }

    .branch-detail-hours {
        margin-left: 18px;
        margin-top: 6px;
        padding-top: 9px;
    }

    .map-watermark {
        font-size: clamp(3.8rem, 40vw, 6.5rem);
        transform: translate(-50%, -50%);
    }
}

/* ═══════════════════════════════════════════════════════════
   SECTION — KONTAKTY / TÍM (O nás)
═══════════════════════════════════════════════════════════ */
.team-contact {
    background: #ffffff;
    border-top: 1px solid var(--slate-100);
}

.team-contact__inner {
    width: min(var(--nav-container), 100%);
    margin: 0 auto;
    padding:
        clamp(48px, 6vw, 72px)
        var(--section-rail-right)
        clamp(40px, 5vw, 56px)
        var(--section-rail-left);
}

.team-contact__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(24px, 4vw, 48px);
    margin-bottom: clamp(24px, 3.5vw, 36px);
}

.team-contact__intro {
    max-width: 520px;
}

.team-contact__head .section-sub {
    margin-top: 10px;
    font-size: 0.92rem;
    color: rgba(13, 17, 23, 0.52);
}

.team-contact__title {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #0d1117;
}

.team-contact__general {
    flex-shrink: 0;
    text-align: right;
    padding-left: clamp(20px, 3vw, 36px);
    border-left: 1px solid var(--slate-100);
}

.team-contact__general-label {
    margin: 0 0 8px;
    font-family: var(--font-body);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(13, 17, 23, 0.38);
}

.team-contact__general-link {
    display: block;
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.55;
    color: #0d1117;
    text-decoration: none;
    transition: color 0.2s ease;
}

.team-contact__general-link:hover {
    color: var(--red);
}

.team-contact__general-note {
    margin: 8px 0 0;
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: rgba(13, 17, 23, 0.4);
}

/* --- karty --- */
.team-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: clamp(18px, 2.2vw, 24px);
    border: 1px solid var(--slate-100);
    background: #ffffff;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: 40px;
    height: 2px;
    background: var(--slate-200);
    transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s ease;
}

.team-card:hover {
    border-color: rgba(13, 17, 23, 0.16);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px -22px rgba(13, 17, 23, 0.22);
}

.team-card:hover::before {
    width: calc(100% + 2px);
    background: var(--red);
}

.team-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 1.8vw, 20px);
}

.team-card__top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: clamp(14px, 1.8vw, 18px);
}

.team-card__dept {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(13, 17, 23, 0.38);
}

.team-card__index {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(13, 17, 23, 0.16);
    transition: color 0.25s ease;
}

.team-card:hover .team-card__index {
    color: rgba(227, 6, 19, 0.55);
}

.team-card__person {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: clamp(14px, 1.8vw, 18px);
}

.team-card__photo {
    display: block;
    flex-shrink: 0;
    width: 56px;
    height: auto;
    max-height: 68px;
    object-fit: contain;
    object-position: top center;
    filter: grayscale(1);
    transition: filter 0.35s ease;
}

.team-card:hover .team-card__photo {
    filter: grayscale(0);
}

.team-card__name {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #0d1117;
}

.team-card__actions {
    margin-top: auto;
    border-top: 1px solid var(--slate-100);
}

.team-card__action {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(13, 17, 23, 0.55);
    text-decoration: none;
    transition: color 0.2s ease;
    word-break: break-word;
}

.team-card__action + .team-card__action {
    border-top: 1px solid var(--slate-100);
}

.team-card__action-ic {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1.5px solid rgba(227, 6, 19, 0.45);
    color: var(--red);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.team-card__action:hover {
    color: #0d1117;
}

.team-card__action:hover .team-card__action-ic {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

/* --- karta vedenia --- */
.team-card--lead {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: clamp(20px, 3vw, 40px);
    margin-bottom: clamp(14px, 1.8vw, 20px);
}

.team-card--lead::before {
    width: 40px;
    background: var(--red);
}

.team-card__lead-person {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2vw, 22px);
}

.team-card__photo--lead {
    width: 74px;
    max-height: 92px;
}

.team-card__name--lead {
    font-size: clamp(1.1rem, 1.6vw, 1.25rem);
}

.team-card__role {
    margin: 5px 0 0;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--red);
}

.team-card__lead-info .team-card__dept {
    margin-bottom: 7px;
}

.team-card__actions--lead {
    margin-top: 0;
    border-top: 0;
    flex-shrink: 0;
}

.team-card__actions--lead .team-card__action {
    justify-content: flex-end;
    font-size: 0.84rem;
}

/* --- CTA dlaždica --- */
.team-card--cta {
    background: #0d1117;
    border-color: #0d1117;
}

.team-card--cta::before {
    background: rgba(255, 255, 255, 0.16);
}

.team-card--cta:hover {
    border-color: #0d1117;
}

.team-card--cta .team-card__dept {
    color: rgba(255, 255, 255, 0.45);
}

.team-card--cta .team-card__index {
    color: rgba(255, 255, 255, 0.18);
}

.team-card--cta:hover .team-card__index {
    color: rgba(227, 6, 19, 0.75);
}

.team-card__cta-text {
    margin: 0 0 18px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
}

.team-card__cta-link {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-family: var(--font-display);
    font-size: 0.86rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
}

.team-card__cta-link .team-card__action-ic {
    border-color: rgba(227, 6, 19, 0.75);
    color: #ff4d57;
}

.team-card__cta-link:hover .team-card__action-ic {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.team-card__cta-link .team-card__action-ic svg {
    transition: transform 0.22s ease;
}

.team-card__cta-link:hover .team-card__action-ic svg {
    transform: translateX(2px);
}

.team-contact__legal {
    margin-top: clamp(36px, 5vw, 48px);
    padding-top: clamp(20px, 2.5vw, 28px);
    border-top: 1px solid var(--slate-100);
    text-align: center;
}

.team-contact__legal p {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(13, 17, 23, 0.4);
}

.team-contact__legal p + p {
    margin-top: 4px;
}

@media (max-width: 960px) {
    .team-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-card--lead {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .team-card__actions--lead {
        border-top: 1px solid var(--slate-100);
        padding-top: 4px;
    }

    .team-card__actions--lead .team-card__action {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .team-contact__head {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .team-contact__general {
        text-align: left;
        padding-left: 0;
        padding-top: 18px;
        border-left: 0;
        border-top: 1px solid var(--slate-100);
    }

    .team-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* ═══════════════════════════════════════════════════════════
   SECTION — KONTAKTY / TÍM — VARIANT 2 (adresár)
═══════════════════════════════════════════════════════════ */
.team-variant-divider {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    background: #f6f8fa;
    border-top: 1px solid var(--slate-100);
    border-bottom: 1px solid var(--slate-100);
}

.team-variant-divider span {
    font-family: var(--font-body);
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(13, 17, 23, 0.35);
}

.team-dir {
    background: #ffffff;
}

.team-dir__inner {
    width: min(var(--nav-container), 100%);
    margin: 0 auto;
    padding:
        clamp(48px, 6vw, 72px)
        var(--section-rail-right)
        clamp(40px, 5vw, 56px)
        var(--section-rail-left);
    display: grid;
    grid-template-columns: minmax(260px, 330px) 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
}

.team-dir__aside {
    position: sticky;
    top: calc(var(--nav-h) + 24px);
}

.team-dir__title {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #0d1117;
}

.team-dir__aside .section-sub {
    margin-top: 10px;
    font-size: 0.92rem;
    color: rgba(13, 17, 23, 0.52);
}

.team-dir__general {
    margin-top: clamp(24px, 3vw, 32px);
    padding-top: clamp(18px, 2.2vw, 24px);
    border-top: 1px solid var(--slate-100);
}

.team-dir__general-label {
    margin: 0 0 8px;
    font-family: var(--font-body);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(13, 17, 23, 0.38);
}

.team-dir__general-link {
    display: block;
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.55;
    color: #0d1117;
    text-decoration: none;
    transition: color 0.2s ease;
}

.team-dir__general-link:hover {
    color: var(--red);
}

.team-dir__general-note {
    margin: 8px 0 0;
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: rgba(13, 17, 23, 0.4);
}

/* --- zoznam --- */
.team-dir__list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--slate-200);
}

.team-dir__row {
    position: relative;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(14px, 2vw, 26px);
    padding: clamp(15px, 1.8vw, 20px) clamp(6px, 1vw, 14px);
    border-bottom: 1px solid var(--slate-200);
    transition: background 0.2s ease;
}

.team-dir__row::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: -1px;
    width: 2px;
    background: var(--red);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-dir__row:hover {
    background: #fafbfd;
}

.team-dir__row:hover::before {
    transform: scaleY(1);
}

.team-dir__index {
    font-family: var(--font-display);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(13, 17, 23, 0.2);
    transition: color 0.25s ease;
}

.team-dir__row:hover .team-dir__index {
    color: var(--red);
}

.team-dir__who {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.6vw, 18px);
    min-width: 0;
}

.team-dir__photo {
    display: block;
    flex-shrink: 0;
    width: 50px;
    height: auto;
    max-height: 62px;
    object-fit: contain;
    object-position: top center;
    filter: grayscale(1);
    transition: filter 0.35s ease;
}

.team-dir__row:hover .team-dir__photo {
    filter: grayscale(0);
}

.team-dir__dept {
    margin: 0 0 3px;
    font-family: var(--font-body);
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(13, 17, 23, 0.38);
}

.team-dir__name {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.02rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #0d1117;
}

.team-dir__role {
    margin: 3px 0 0;
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 500;
    color: var(--red);
}

.team-dir__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.team-dir__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border: 1px solid var(--slate-200);
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 500;
    color: rgba(13, 17, 23, 0.6);
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.team-dir__pill svg {
    flex-shrink: 0;
    color: var(--red);
    transition: color 0.2s ease;
}

.team-dir__pill:hover {
    border-color: var(--red);
    background: var(--red);
    color: #ffffff;
}

.team-dir__pill:hover svg {
    color: #ffffff;
}

/* --- riadok vedenia --- */
.team-dir__row--lead {
    background: #fafbfc;
    padding-top: clamp(18px, 2.2vw, 24px);
    padding-bottom: clamp(18px, 2.2vw, 24px);
}

.team-dir__row--lead::before {
    transform: scaleY(1);
}

.team-dir__row--lead .team-dir__index {
    color: var(--red);
}

.team-dir__photo--lead {
    width: 62px;
    max-height: 78px;
}

.team-dir__name--lead {
    font-size: clamp(1.1rem, 1.5vw, 1.2rem);
}

/* --- CTA riadok --- */
.team-dir__row--cta {
    background: #0d1117;
    border-bottom-color: #0d1117;
}

.team-dir__row--cta::before {
    transform: scaleY(1);
}

.team-dir__row--cta .team-dir__index {
    color: rgba(255, 255, 255, 0.25);
}

.team-dir__row--cta:hover {
    background: #0d1117;
}

.team-dir__row--cta:hover .team-dir__index {
    color: rgba(227, 6, 19, 0.85);
}

.team-dir__cta-text {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.75);
}

.team-dir__cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
}

.team-dir__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1.5px solid rgba(227, 6, 19, 0.75);
    color: #ff4d57;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.team-dir__arrow svg {
    transition: transform 0.22s ease;
}

.team-dir__cta-link:hover .team-dir__arrow {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.team-dir__cta-link:hover .team-dir__arrow svg {
    transform: translateX(2px);
}

@media (max-width: 1100px) {
    .team-dir__row {
        grid-template-columns: 36px minmax(0, 1fr);
    }

    .team-dir__links {
        grid-column: 2;
        justify-content: flex-start;
        margin-top: 2px;
    }

    .team-dir__row--cta .team-dir__cta-link {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 960px) {
    .team-dir__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .team-dir__aside {
        position: static;
    }
}

@media (max-width: 640px) {
    .team-dir__row {
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 12px;
    }

    .team-dir__pill {
        padding: 7px 11px;
        font-size: 0.72rem;
    }

    .team-dir__pill span {
        word-break: break-word;
    }
}

/* ═══════════════════════════════════════════════════════════
   SECTION — KONTAKTY / TÍM — VARIANT 3 (sprievodca)
═══════════════════════════════════════════════════════════ */
.team-guide {
    background: #f4f6f8;
    border-top: 1px solid var(--slate-100);
}

.team-guide__inner {
    width: min(var(--nav-container), 100%);
    margin: 0 auto;
    padding:
        clamp(48px, 6vw, 72px)
        var(--section-rail-right)
        clamp(40px, 5vw, 56px)
        var(--section-rail-left);
}

.team-guide__head {
    max-width: 560px;
    margin-bottom: clamp(22px, 3vw, 30px);
}

.team-guide__title {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.6rem, 2.6vw, 2.15rem);
    line-height: 1.1;
    letter-spacing: -0.035em;
    color: #0d1117;
}

.team-guide__head .section-sub {
    margin-top: 10px;
    font-size: 0.92rem;
    color: rgba(13, 17, 23, 0.52);
}

.team-guide__map {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: clamp(22px, 3vw, 30px);
}

.team-guide__chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid rgba(13, 17, 23, 0.12);
    background: #ffffff;
    font-family: var(--font-body);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: rgba(13, 17, 23, 0.62);
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.team-guide__chip:hover {
    border-color: var(--red);
    color: var(--red);
    background: #fff;
}

.team-guide__stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.team-guide__panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(16px, 2.5vw, 32px);
    padding: clamp(16px, 2vw, 22px) clamp(16px, 2.2vw, 24px);
    background: #ffffff;
    border: 1px solid rgba(13, 17, 23, 0.06);
    scroll-margin-top: calc(var(--nav-h) + 16px);
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.team-guide__panel:hover {
    border-color: rgba(13, 17, 23, 0.14);
    box-shadow: 0 12px 28px -20px rgba(13, 17, 23, 0.28);
}

.team-guide__panel--lead {
    border-left: 3px solid var(--red);
}

.team-guide__person {
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.8vw, 20px);
    min-width: 0;
    flex: 1;
}

.team-guide__photo {
    display: block;
    flex-shrink: 0;
    width: 58px;
    height: auto;
    max-height: 72px;
    object-fit: contain;
    object-position: top center;
    filter: grayscale(1);
    transition: filter 0.35s ease;
}

.team-guide__panel:hover .team-guide__photo {
    filter: grayscale(0);
}

.team-guide__photo--lead {
    width: 72px;
    max-height: 88px;
}

.team-guide__meta {
    min-width: 0;
}

.team-guide__dept {
    margin: 0 0 4px;
    font-family: var(--font-body);
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(13, 17, 23, 0.38);
}

.team-guide__name {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.02rem, 1.4vw, 1.12rem);
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #0d1117;
}

.team-guide__role {
    margin: 4px 0 0;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--red);
}

.team-guide__hint {
    margin: 6px 0 0;
    max-width: 420px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    line-height: 1.45;
    color: rgba(13, 17, 23, 0.48);
}

.team-guide__actions {
    display: flex;
    flex-shrink: 0;
    gap: 8px;
}

.team-guide__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 112px;
    justify-content: center;
    padding: 11px 16px;
    border: 1.5px solid rgba(13, 17, 23, 0.14);
    background: #ffffff;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    color: #0d1117;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.team-guide__btn svg {
    flex-shrink: 0;
    color: var(--red);
    transition: color 0.2s ease;
}

.team-guide__btn:hover {
    border-color: #0d1117;
    background: #0d1117;
    color: #ffffff;
}

.team-guide__btn:hover svg {
    color: #ffffff;
}

.team-guide__btn--primary {
    border-color: var(--red);
    background: var(--red);
    color: #ffffff;
}

.team-guide__btn--primary svg {
    color: #ffffff;
}

.team-guide__btn--primary:hover {
    border-color: #b80510;
    background: #b80510;
    color: #ffffff;
}

.team-guide__btn--primary:hover svg {
    color: #ffffff;
}

.team-guide__fallback {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(16px, 3vw, 32px);
    margin-top: clamp(16px, 2.2vw, 22px);
    padding: clamp(18px, 2.2vw, 24px);
    background: #0d1117;
}

.team-guide__fallback-label {
    margin: 0 0 6px;
    font-family: var(--font-body);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.team-guide__fallback-text {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
}

.team-guide__fallback-text a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.team-guide__fallback-text a:hover {
    color: #ff4d57;
}

.team-guide__fallback-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 0.86rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
}

.team-guide__fallback-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1.5px solid rgba(227, 6, 19, 0.75);
    color: #ff4d57;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.team-guide__fallback-arrow svg {
    transition: transform 0.22s ease;
}

.team-guide__fallback-cta:hover .team-guide__fallback-arrow {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.team-guide__fallback-cta:hover .team-guide__fallback-arrow svg {
    transform: translateX(2px);
}

@media (max-width: 900px) {
    .team-guide__panel {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .team-guide__actions {
        width: 100%;
    }

    .team-guide__btn {
        flex: 1;
    }

    .team-guide__fallback {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .team-guide__map {
        gap: 6px;
    }

    .team-guide__chip {
        padding: 7px 11px;
        font-size: 0.7rem;
    }

    .team-guide__hint {
        font-size: 0.76rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   SECTION — KVALITA A BEZPEČNOSŤ (O nás)
═══════════════════════════════════════════════════════════ */
.qa-band {
    position: relative;
    overflow: hidden;
    background: #0d1117;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.qa-band__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.72fr);
    align-items: stretch;
    column-gap: clamp(8px, 2vw, 40px);
    width: 100%;
    margin: 0 auto;
    padding:
        clamp(40px, 5vw, 72px)
        var(--section-rail-right)
        0
        0;
    min-height: clamp(540px, 68vh, 820px);
}

.qa-band__media {
    position: relative;
    margin: 0;
    align-self: stretch;
    min-width: 0;
    min-height: clamp(460px, 58vh, 760px);
    line-height: 0;
}

.qa-band__media img {
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: left bottom;
    pointer-events: none;
    user-select: none;
}

.qa-band__copy {
    padding: 0 0 clamp(40px, 5vw, 72px);
    min-width: 0;
}

.qa-band__head {
    max-width: none;
    margin: 0 0 clamp(28px, 3.5vw, 40px);
}

.qa-band__title {
    margin: 0;
    font-family: var(--font-display);
    font-weight: var(--weight-title);
    font-size: var(--text-h2);
    line-height: var(--lh-title);
    letter-spacing: var(--tracking-title);
    color: #ffffff;
    text-wrap: balance;
}

.qa-band__lead {
    margin: 16px 0 0;
    font-family: var(--font-body);
    font-size: var(--text-lead);
    line-height: var(--lh-lead);
    color: rgba(255, 255, 255, 0.62);
}

.qa-band__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(18px, 2.4vw, 28px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.qa-band__item {
    display: flex;
    flex-direction: column;
    padding-top: clamp(16px, 2vw, 22px);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.qa-band__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--icon-box-lg);
    height: var(--icon-box-lg);
    margin-bottom: 16px;
    background: var(--red);
    color: #ffffff;
}

.qa-band__icon svg,
.qa-band__icon [data-lucide] {
    width: var(--icon-md);
    height: var(--icon-md);
}

.qa-band__name {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-weight: var(--weight-subtitle);
    font-size: clamp(1.02rem, 1.2vw, 1.12rem);
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: #ffffff;
}

.qa-band__desc {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.58);
}

.qa-band__partners {
    margin: clamp(28px, 3.6vw, 40px) 0 0;
    padding-top: clamp(20px, 2.4vw, 26px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
}

.qa-band__partners strong {
    color: #ffffff;
    font-weight: var(--weight-ui);
}

@media (max-width: 1100px) {
    .qa-band__inner {
        grid-template-columns: 1fr;
        min-height: 0;
        padding-left: var(--section-rail-left);
        padding-bottom: 0;
        row-gap: 12px;
    }

    .qa-band__copy {
        order: 1;
        padding-bottom: clamp(16px, 3vw, 28px);
    }

    .qa-band__media {
        order: 2;
        justify-content: center;
        min-height: clamp(320px, 58vw, 480px);
    }

    .qa-band__media img {
        left: 50%;
        width: auto;
        max-width: min(100%, 560px);
        height: 100%;
        transform: translateX(-50%);
    }

    .qa-band__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .qa-band__grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════
   SECTION — KONTAKTY / TÍM — VARIANT 4 (meet / overlapping)
═══════════════════════════════════════════════════════════ */
.team-meet {
    background: #ffffff;
    border-top: 1px solid var(--slate-100);
    overflow: visible;
}

.team-meet__inner {
    width: min(var(--nav-container), 100%);
    margin: 0 auto;
    /* Symmetric rails — team block sits in true center (no content-offset pull right) */
    padding:
        clamp(56px, 7vw, 96px) var(--section-rail-right)
        clamp(48px, 5.5vw, 72px) var(--section-rail-right);
    overflow: visible;
}

.team-meet__rail {
    position: relative;
    width: 100%;
    margin-inline: auto;
}

.team-meet__head {
    text-align: left;
    max-width: none;
    margin: 0 0 clamp(28px, 3.5vw, 40px);
    padding-inline: 0;
}

.team-meet__eyebrow {
    margin: 0 0 10px;
    font-family: var(--font-body);
    font-size: var(--text-eyebrow);
    font-weight: var(--weight-ui);
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: rgba(13, 17, 23, 0.42);
}

.team-meet__head .eyebrow {
    margin-bottom: 12px;
}

.team-meet__title {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.22em 0.28em;
    font-family: var(--font-display);
    font-weight: var(--weight-display);
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: var(--tracking-display);
    color: #111111;
}

.team-meet__title-lead {
    display: inline-block;
}

.team-meet__head .section-sub {
    margin: 14px auto 0;
    max-width: 52ch;
    font-size: clamp(0.95rem, 1.05vw, 1.05rem);
    line-height: var(--lh-lead);
    color: rgba(13, 17, 23, 0.55);
}

.team-net {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
    width: 100%;
    margin: clamp(48px, 6vw, 72px) 0 0;
    padding: clamp(32px, 4vw, 48px);
    background: #0d1117;
    color: #ffffff;
}

.team-net__title {
    margin: 0;
    font-family: var(--font-display);
    font-weight: var(--weight-title);
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    line-height: 1.15;
    letter-spacing: var(--tracking-title);
    color: #ffffff;
}

.team-net__lead {
    margin: 0;
    max-width: 46ch;
    font-family: var(--font-body);
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.62);
}

.team-net__lead-wrap {
    margin-top: 14px;
}

.team-net__lead-short {
    display: none;
}

.team-net__lead-toggle {
    display: none;
}

.team-net__rail {
    position: relative;
    min-width: 0;
}

.team-net__swipe {
    display: none;
}

.team-net__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.team-net__item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 18px 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.team-net__item:nth-child(-n + 2) {
    border-top: none;
}

.team-net__name {
    font-family: var(--font-display);
    font-weight: var(--weight-ui);
    font-size: 0.92rem;
    color: #ffffff;
}

.team-net__desc {
    font-family: var(--font-body);
    font-size: 0.8rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55);
}


/* Primary arc — Kandala elevated above center, Saraka in his place */
.team-meet__row {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.05fr)
        minmax(0, 1.35fr)
        minmax(0, 1.05fr)
        minmax(0, 0.9fr);
    grid-template-rows: auto auto;
    align-items: start;
    column-gap: clamp(8px, 1.8vw, 28px);
    row-gap: clamp(4px, 0.8vw, 10px);
    width: 100%;
    margin: 0 auto;
    padding-top: clamp(20px, 2.5vw, 36px);
}

.team-meet__row #tm-kentos {
    grid-column: 1;
    grid-row: 2;
}

.team-meet__row #tm-saraka {
    grid-column: 2;
    grid-row: 2;
}

.team-meet__row #tm-kandala {
    grid-column: 3;
    grid-row: 1;
    justify-self: center;
    width: 100%;
    max-width: 220px;
    z-index: 5;
}

.team-meet__row #tm-harmadi {
    grid-column: 3;
    grid-row: 2;
}

.team-meet__row #tm-mital {
    grid-column: 4;
    grid-row: 2;
}

.team-meet__row #tm-onderova {
    grid-column: 5;
    grid-row: 2;
}

.team-meet__swipe {
    display: none;
}

.team-meet__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    text-align: center;
    padding: 0 4px;
    scroll-margin-top: calc(var(--nav-h) + 16px);
}

.team-meet__avatar-slot {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    margin: 0 0 14px;
    height: auto;
    min-height: 0;
    position: relative;
    overflow: visible;
}

.team-meet__row #tm-kandala .team-meet__avatar-slot {
    height: auto;
    margin-bottom: 6px;
    align-items: flex-end;
}

/*
  Subtle arc via top padding — names stay tight under photos.
*/
.team-meet__card--s .team-meet__avatar-slot {
    padding-top: clamp(36px, 4.2vw, 52px);
}

.team-meet__card--m .team-meet__avatar-slot {
    padding-top: clamp(16px, 2vw, 24px);
}

.team-meet__card--lead .team-meet__avatar-slot {
    padding-top: 0;
}

.team-meet__card--s .team-meet__avatar {
    z-index: 1;
    margin-top: 0;
    max-width: clamp(84px, 9vw, 104px);
}

.team-meet__card--m .team-meet__avatar {
    z-index: 4;
    margin-top: 0;
    max-width: clamp(112px, 12vw, 136px);
}

/*
  Fixed slot height keeps bottom-row names on one baseline.
  Harmadi (sublead) can be taller — photo overflows upward under Kandala.
*/
.team-meet__row #tm-kentos .team-meet__avatar-slot,
.team-meet__row #tm-saraka .team-meet__avatar-slot,
.team-meet__row #tm-harmadi .team-meet__avatar-slot,
.team-meet__row #tm-mital .team-meet__avatar-slot,
.team-meet__row #tm-onderova .team-meet__avatar-slot {
    height: clamp(170px, 18vw, 206px);
    min-height: 0;
    align-items: flex-end;
    margin-bottom: 12px;
    overflow: visible;
}

.team-meet__row #tm-harmadi .team-meet__avatar-slot {
    padding-top: 0;
}

.team-meet__card--sublead .team-meet__avatar-slot {
    padding-top: 0;
}

.team-meet__card--sublead .team-meet__avatar {
    z-index: 6;
    margin-top: 0;
    max-width: clamp(142px, 15.2vw, 176px);
}

/* Sublead: fotka v kruhu (presah len konateľ) */
.team-meet__card--sublead .team-meet__avatar--photo {
    overflow: hidden;
    border-radius: 50%;
    background: var(--red);
    aspect-ratio: 1;
}

.team-meet__card--sublead .team-meet__avatar-disc {
    display: none;
}

.team-meet__card--sublead .team-meet__avatar--photo img {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transform: none;
    object-fit: cover;
    object-position: center 18%;
    -webkit-mask-image: none;
    mask-image: none;
}

.team-meet__card--sublead .team-meet__avatar--photo .team-meet__avatar-disc,
.team-meet__card--sublead .team-meet__avatar:not(.team-meet__avatar--photo) {
    border: none;
    box-shadow: none;
}

.team-meet__card--sublead .team-meet__name {
    font-size: clamp(1rem, 1.28vw, 1.16rem);
}

.team-meet__card--lead .team-meet__avatar {
    z-index: 8;
    margin-top: clamp(-40px, -4vw, -24px);
    max-width: clamp(168px, 18vw, 210px);
}

.team-meet__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    border: none;
    background: var(--red);
    color: #ffffff;
    box-shadow: none;
    transition: transform 0.3s var(--btn-ease);
}

/* Photo inside circle */
.team-meet__avatar--photo {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 50%;
    background: var(--red);
    box-shadow: none;
    aspect-ratio: 1;
}

.team-meet__avatar-disc {
    display: none;
}

.team-meet__avatar--photo img {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    transform: none;
    object-fit: cover;
    object-position: center 18%;
    display: block;
    mask-image: none;
    -webkit-mask-image: none;
}

/* Konateľ only — head pops out above the circle */
.team-meet__card--lead .team-meet__avatar--photo {
    overflow: visible;
    border-radius: 0;
    background: transparent;
    aspect-ratio: 1 / 1.22;
}

.team-meet__card--lead .team-meet__avatar-disc {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--red);
    border: none;
    box-shadow: none;
    z-index: 0;
    pointer-events: none;
}

.team-meet__card--lead .team-meet__avatar--photo img {
    left: 50%;
    right: auto;
    top: auto;
    bottom: 0;
    width: 108%;
    height: 100%;
    transform: translateX(-50%);
    object-fit: contain;
    object-position: center bottom;
    -webkit-mask-image:
        linear-gradient(#000 0 0),
        radial-gradient(circle closest-side at 50% 50%, #000 100%, transparent 100.5%);
    -webkit-mask-size: 100% 50%, 93.2% 82.5%;
    -webkit-mask-position: top center, bottom center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-composite: source-over;
    mask-image:
        linear-gradient(#000 0 0),
        radial-gradient(circle closest-side at 50% 50%, #000 100%, transparent 100.5%);
    mask-size: 100% 50%, 93.2% 82.5%;
    mask-position: top center, bottom center;
    mask-repeat: no-repeat;
    mask-composite: add;
}

.team-meet__card--lead .team-meet__avatar--photo .team-meet__avatar-disc,
.team-meet__card--lead .team-meet__avatar:not(.team-meet__avatar--photo) {
    border: none;
    box-shadow: none;
}

.team-meet__initials {
    font-family: var(--font-display);
    font-weight: var(--weight-display);
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    line-height: 1;
    user-select: none;
}

.team-meet__card--s .team-meet__initials {
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
}

.team-meet__card--m .team-meet__initials {
    font-size: clamp(1.15rem, 1.35vw, 1.35rem);
}

.team-meet__card--lead .team-meet__initials {
    font-size: clamp(1.55rem, 2vw, 2rem);
    letter-spacing: 0.1em;
}

.team-meet__card:hover .team-meet__avatar-slot,
.team-meet__card:focus-within .team-meet__avatar-slot {
    z-index: 16;
}

.team-meet__card:hover .team-meet__avatar,
.team-meet__card:focus-within .team-meet__avatar {
    transform: scale(1.04);
    box-shadow: none;
}

/* Copy under circles — tight under photos */
.team-meet__name {
    margin: 0 0 6px;
    max-width: none;
    white-space: nowrap;
    font-family: var(--font-display);
    font-weight: var(--weight-display);
    font-size: clamp(0.88rem, 1.1vw, 1.02rem);
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: #0d1117;
}

.team-meet__card--s .team-meet__name {
    font-size: clamp(0.82rem, 1vw, 0.94rem);
    font-weight: var(--weight-ui);
}

.team-meet__card--lead .team-meet__name {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(1.05rem, 1.4vw, 1.28rem);
}

.team-meet__role {
    margin: 0 0 12px;
    max-width: none;
    min-height: 0;
    white-space: nowrap;
    font-family: var(--font-body);
    font-size: clamp(0.78rem, 0.9vw, 0.88rem);
    font-weight: var(--weight-body);
    line-height: 1.3;
    color: rgba(13, 17, 23, 0.55);
}

.team-meet__name + .team-meet__links {
    margin-top: 12px;
}

.team-meet__card--lead .team-meet__role {
    color: var(--red);
    font-weight: var(--weight-ui);
    font-size: clamp(0.82rem, 0.98vw, 0.94rem);
    max-width: none;
    white-space: nowrap;
}

.team-meet__links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    margin-top: auto;
    width: 100%;
}

.team-meet__phone {
    font-family: var(--font-body);
    font-size: clamp(0.84rem, 1vw, 0.95rem);
    font-weight: var(--weight-ui);
    letter-spacing: -0.01em;
    color: #0d1117;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.team-meet__email {
    font-family: var(--font-body);
    font-size: clamp(0.78rem, 0.92vw, 0.88rem);
    font-weight: var(--weight-nav);
    color: rgba(13, 17, 23, 0.58);
    text-decoration: none;
    overflow-wrap: anywhere;
    transition: color 0.2s ease;
}

.team-meet__card--lead .team-meet__phone {
    font-size: clamp(0.95rem, 1.15vw, 1.05rem);
}

.team-meet__card--lead .team-meet__email {
    font-size: clamp(0.86rem, 1vw, 0.95rem);
    color: rgba(13, 17, 23, 0.62);
}

.team-meet__phone:hover,
.team-meet__email:hover {
    color: var(--red);
}

/* Secondary members — quieter hierarchy */
.team-meet__more {
    margin: clamp(56px, 7vw, 80px) 0 0;
    max-width: none;
    width: 100%;
    padding: clamp(28px, 3.5vw, 36px) 0 0;
    border-top: 1px solid var(--slate-200);
}

.team-meet__more-head--mobile {
    display: none;
}

.team-meet__roster {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: var(--slate-100);
    border: 1px solid var(--slate-100);
}

.team-meet__group,
.team-meet__more-rail,
.team-meet__more-list,
.team-meet__more-list--special,
.team-meet__more-list--proj {
    display: contents;
    list-style: none;
    margin: 0;
    padding: 0;
}

.team-meet__group + .team-meet__group {
    margin-top: 0;
}

.team-meet__more-rail {
    position: static;
}

.team-meet__more-swipe {
    display: none;
}

.team-meet__more-head {
    margin: 0 0 28px;
    text-align: left;
}

.team-meet__more-title {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.22em 0.28em;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.7rem, 2.9vw, 2.55rem);
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: #111111;
}

.team-meet__more-title .kh-hit {
    font-size: inherit;
    font-weight: inherit;
    padding: 0.06em 0.18em 0.1em;
}

.team-meet__more-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-width: 0;
    max-width: none;
    padding: 24px 20px;
    text-align: center;
    border: 0;
    scroll-margin-top: calc(var(--nav-h) + 16px);
    transition: background 0.2s ease;
    background: #ffffff;
    min-height: 0;
    aspect-ratio: auto;
}

.team-meet__more-item:hover {
    background: var(--slate-50);
}

/* Desktop order for secondary roster */
.team-meet__roster #tm-kazimir { order: 1; }
.team-meet__roster #tm-chlup { order: 2; }
.team-meet__roster #tm-lacko { order: 3; }
.team-meet__roster #tm-peter { order: 4; }
.team-meet__roster #tm-gavala { order: 5; }
.team-meet__roster #tm-kandalova { order: 6; }
.team-meet__roster #tm-hvozdikova { order: 7; }

.team-meet__beyond {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    pointer-events: none;
    mask-image: linear-gradient(90deg, #000 0%, #000 42%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 42%, transparent 100%);
}

.team-meet__ghosts {
    display: flex;
    align-items: center;
}

.team-meet__ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: -10px;
    border-radius: 50%;
    background: var(--slate-200);
    border: 2px solid #ffffff;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(13, 17, 23, 0.28);
}

.team-meet__ghost:first-child {
    margin-left: 0;
}

.team-meet__ghost:nth-child(1) { opacity: 0.95; }
.team-meet__ghost:nth-child(2) { opacity: 0.72; }
.team-meet__ghost:nth-child(3) { opacity: 0.5; }
.team-meet__ghost:nth-child(4) { opacity: 0.32; }
.team-meet__ghost:nth-child(5) { opacity: 0.18; }
.team-meet__ghost:nth-child(6) { opacity: 0.08; }

.team-meet__beyond-copy {
    margin: clamp(18px, 2.2vw, 28px) 0 0;
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(13, 17, 23, 0.38);
    mask-image: linear-gradient(90deg, #000 0%, #000 68%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 68%, transparent 100%);
}

.team-meet__join {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
    margin-top: clamp(28px, 3.6vw, 40px);
    padding: clamp(24px, 3vw, 32px);
    background: #0d1117;
    color: #ffffff;
    width: auto;
}

.team-meet__join-kicker {
    margin: 0 0 8px;
    font-family: var(--font-body);
    font-size: var(--text-eyebrow);
    font-weight: var(--weight-ui);
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.team-meet__join-title {
    margin: 0;
    font-family: var(--font-display);
    font-weight: var(--weight-subtitle);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    letter-spacing: -0.025em;
    color: #ffffff;
}

.team-meet__join-lead {
    margin: 8px 0 0;
    max-width: 46ch;
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.58);
}

.team-meet__join-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--btn-pad-y) var(--btn-pad-x);
    background: var(--red);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: var(--btn-font-size);
    font-weight: var(--weight-ui);
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s var(--btn-ease), transform 0.2s var(--btn-ease);
}

.team-meet__join-btn:hover {
    background: var(--red-deep);
    transform: translateY(-1px);
}

.team-meet__more-avatar {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(76px, 7.2vw, 82px);
    height: clamp(76px, 7.2vw, 82px);
    border-radius: 50%;
    background: var(--red);
    font-family: var(--font-display);
    font-weight: var(--weight-display);
    font-size: 1rem;
    letter-spacing: 0.06em;
    color: #ffffff;
    overflow: hidden;
    aspect-ratio: 1;
}

.team-meet__more-avatar--photo {
    position: relative;
    width: clamp(76px, 7.2vw, 82px);
    height: clamp(76px, 7.2vw, 82px);
    overflow: hidden;
    border-radius: 50%;
    background: var(--red);
    aspect-ratio: 1;
}

.team-meet__more-avatar--photo::before {
    display: none;
}

.team-meet__more-avatar--photo img {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    transform: none;
    object-fit: cover;
    object-position: center 18%;
    display: block;
    mask-image: none;
    -webkit-mask-image: none;
}

.team-meet__more-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    min-width: 0;
    position: static;
    inset: auto;
    padding: 0;
    background: none;
    pointer-events: auto;
    opacity: 1;
    transform: none;
}

.team-meet__more-name {
    font-family: var(--font-display);
    font-weight: var(--weight-ui);
    font-size: clamp(0.86rem, 0.98vw, 0.92rem);
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: #0d1117;
}

.team-meet__more-role {
    font-family: var(--font-body);
    font-size: clamp(0.72rem, 0.8vw, 0.76rem);
    font-weight: var(--weight-ui);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(13, 17, 23, 0.4);
    margin: 0;
}

.team-meet__more-meta a {
    font-family: var(--font-body);
    font-size: clamp(0.72rem, 0.84vw, 0.78rem);
    font-weight: var(--weight-nav);
    color: rgba(13, 17, 23, 0.42);
    text-decoration: none;
    word-break: break-all;
    transition: color 0.18s ease;
}

.team-meet__more-meta a:first-of-type {
    color: rgba(13, 17, 23, 0.62);
    font-weight: var(--weight-ui);
    font-size: clamp(0.78rem, 0.92vw, 0.82rem);
    word-break: normal;
}

.team-meet__more-meta a:hover {
    color: var(--red);
}

.team-meet__note {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 18px;
    margin: clamp(28px, 3.5vw, 40px) auto 0;
    max-width: none;
    width: 100%;
    padding-inline: clamp(24px, 4vw, 48px);
    text-align: center;
    font-family: var(--font-body);
    font-size: var(--text-caption);
    line-height: 1.3;
    color: rgba(13, 17, 23, 0.45);
}

.team-meet__note-label {
    margin: 0;
    font-size: inherit;
    color: inherit;
}

.team-meet__note-label::after {
    content: ":";
}

.team-meet__note-links {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 0;
}

.team-meet__note-links a {
    color: #0d1117;
    font-weight: var(--weight-ui);
    text-decoration: none;
    transition: color 0.2s ease;
}

.team-meet__note-links a:not(:last-child)::after {
    content: "·";
    margin-inline: 12px;
    color: rgba(13, 17, 23, 0.35);
    font-weight: 400;
    pointer-events: none;
}

.team-meet__note-links a:hover {
    color: var(--red);
}

@media (max-width: 1100px) {
    .team-net {
        grid-template-columns: 1fr;
        gap: 28px;
        margin: 40px 20px 0;
        padding: 36px 0 32px;
        border-radius: 16px;
        width: auto;
        overflow: hidden;
    }

    .team-net .eyebrow {
        color: rgba(255, 255, 255, 0.42);
        margin-bottom: 12px;
    }

    .team-net__copy {
        padding: 0 22px;
    }

    .team-net__title {
        font-size: clamp(1.4rem, 4.5vw, 1.75rem);
        line-height: 1.15;
        letter-spacing: -0.03em;
        max-width: 18ch;
    }

    .team-net__lead-wrap {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 4px;
        margin-top: 16px;
    }

    .team-net__lead {
        margin: 0;
        flex: 1;
        min-width: 0;
        font-size: 0.92rem;
        line-height: 1.55;
        max-width: none;
        color: rgba(255, 255, 255, 0.58);
    }

    .team-net__lead-short {
        display: inline;
    }

    .team-net__lead-full {
        display: none;
    }

    .team-net__lead-wrap.is-open .team-net__lead-short {
        display: none;
    }

    .team-net__lead-wrap.is-open .team-net__lead-full {
        display: inline;
    }

    .team-net__lead-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: auto;
        height: auto;
        margin: 0.28em 0 0;
        padding: 4px;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: rgba(255, 255, 255, 0.48);
        cursor: pointer;
        transition: color 0.2s ease;
    }

    .team-net__lead-toggle svg {
        display: block;
        width: 16px;
        height: 16px;
        transition: transform 0.25s ease;
    }

    .team-net__lead-wrap.is-open .team-net__lead-toggle svg {
        transform: rotate(180deg);
    }

    .team-net__lead-toggle:hover,
    .team-net__lead-toggle:focus-visible {
        color: #ffffff;
        background: transparent;
        outline: none;
    }

    .team-net__rail::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 56px;
        pointer-events: none;
        background: linear-gradient(
            90deg,
            rgba(13, 17, 23, 0) 0%,
            rgba(13, 17, 23, 0.78) 62%,
            #0d1117 100%
        );
        z-index: 2;
    }

    .team-net__swipe {
        display: grid;
        place-items: center;
        position: absolute;
        top: 50%;
        right: 12px;
        z-index: 3;
        width: 36px;
        height: 36px;
        margin: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.22);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        pointer-events: none;
        transform: translateY(-50%);
        animation: none;
    }

    .team-net__swipe svg {
        display: block;
    }

    .team-net__grid {
        display: flex;
        grid-template-columns: none;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 22px;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
        border-top: 0;
        padding: 2px 22px 6px;
    }

    .team-net__grid::-webkit-scrollbar {
        display: none;
    }

    .team-net__item,
    .team-net__item:nth-child(-n + 2),
    .team-net__item:first-child {
        flex: 0 0 min(78vw, 280px);
        width: min(78vw, 280px);
        max-width: min(78vw, 280px);
        padding: 18px 16px;
        gap: 8px;
        scroll-snap-align: start;
        box-sizing: border-box;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.04);
    }

    .team-net__name {
        font-size: 0.98rem;
    }

    .team-net__desc {
        font-size: 0.84rem;
        line-height: 1.45;
    }

    .team-meet {
        overflow: hidden;
    }

    .team-meet__inner {
        padding:
            clamp(48px, 8vw, 72px) 0
            clamp(40px, 7vw, 56px);
    }

    .team-meet__head {
        margin: 0 0 24px;
        padding: 0 20px;
    }

    .team-meet__title {
        font-size: clamp(1.7rem, 5vw, 2.15rem);
        line-height: 1.1;
        letter-spacing: -0.03em;
        display: block;
    }

    .team-meet__title-lead {
        display: block;
    }

    .team-meet__title .kh-hit {
        display: inline-block;
        margin-top: 0.1em;
    }

    .team-meet__rail {
        position: relative;
        margin: 0;
    }

    .team-meet__rail::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 8px;
        width: 56px;
        pointer-events: none;
        background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.88) 62%,
            #ffffff 100%
        );
        z-index: 4;
    }

    .team-meet__swipe {
        display: grid;
        place-items: center;
        position: absolute;
        top: 50%;
        right: 12px;
        z-index: 5;
        width: 36px;
        height: 36px;
        margin: 0;
        border-radius: 50%;
        background: #ffffff;
        color: #111111;
        border: 1px solid rgba(17, 17, 17, 0.12);
        box-shadow: 0 6px 18px rgba(17, 17, 17, 0.14);
        pointer-events: none;
        transform: translateY(-50%);
        animation: none;
    }

    .team-meet__swipe svg {
        display: block;
    }

    .team-meet__row {
        display: flex;
        grid-template-columns: none;
        grid-template-rows: none;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 20px;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
        padding: 2px 20px 8px;
        column-gap: 12px;
        row-gap: 0;
    }

    .team-meet__row #tm-kentos,
    .team-meet__row #tm-mital,
    .team-meet__row #tm-kandala,
    .team-meet__row #tm-saraka,
    .team-meet__row #tm-harmadi,
    .team-meet__row #tm-onderova {
        grid-column: auto;
        grid-row: auto;
        max-width: none;
        width: auto;
        justify-self: auto;
    }

    .team-meet__row::-webkit-scrollbar {
        display: none;
    }

    .team-meet__card {
        flex: 0 0 min(78vw, 280px);
        width: min(78vw, 280px);
        max-width: min(78vw, 280px);
        padding: 20px 18px 18px;
        scroll-snap-align: start;
        box-sizing: border-box;
        border: 1px solid rgba(17, 17, 17, 0.1);
        border-radius: 14px;
        background: #ffffff;
        box-shadow: 0 8px 24px rgba(13, 17, 23, 0.04);
    }

    /* Mobile: všetky kartičky vedenia rovnaké; fotka v kruhu okrem konateľa */
    .team-meet__card--s,
    .team-meet__card--m,
    .team-meet__card--sublead,
    .team-meet__card--lead {
        grid-column: auto;
        padding: 20px 18px 18px;
        margin-bottom: 0;
        border-bottom: 0;
        background: #ffffff;
    }

    /* Mobile: rovnaké poradie ako Kontakt */
    .team-meet__row #tm-kandala { order: 1; }
    .team-meet__row #tm-harmadi { order: 2; }
    .team-meet__row #tm-mital { order: 3; }
    .team-meet__row #tm-saraka { order: 4; }
    .team-meet__row #tm-kentos { order: 5; }
    .team-meet__row #tm-onderova { order: 6; }

    .team-meet__avatar-slot,
    .team-meet__row #tm-kandala .team-meet__avatar-slot,
    .team-meet__row #tm-kentos .team-meet__avatar-slot,
    .team-meet__row #tm-saraka .team-meet__avatar-slot,
    .team-meet__row #tm-harmadi .team-meet__avatar-slot,
    .team-meet__row #tm-mital .team-meet__avatar-slot,
    .team-meet__row #tm-onderova .team-meet__avatar-slot,
    .team-meet__card--s .team-meet__avatar-slot,
    .team-meet__card--m .team-meet__avatar-slot,
    .team-meet__card--sublead .team-meet__avatar-slot,
    .team-meet__card--lead .team-meet__avatar-slot {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        width: 100%;
        margin: 0 0 14px;
        height: 132px;
        min-height: 132px;
        max-height: 132px;
        padding-top: 0;
        overflow: visible;
    }

    /* Základ: rovnaký kruh, fotka dnu */
    .team-meet__row .team-meet__avatar,
    .team-meet__card--s .team-meet__avatar,
    .team-meet__card--m .team-meet__avatar,
    .team-meet__card--sublead .team-meet__avatar,
    .team-meet__card--lead .team-meet__avatar {
        z-index: 1;
        margin-top: 0;
        margin-inline: auto;
        max-width: 112px;
        width: 112px;
        height: 112px;
        aspect-ratio: 1;
        border-radius: 50%;
        overflow: hidden;
        background: var(--red);
    }

    .team-meet__row .team-meet__avatar--photo,
    .team-meet__card--s .team-meet__avatar--photo,
    .team-meet__card--m .team-meet__avatar--photo,
    .team-meet__card--sublead .team-meet__avatar--photo,
    .team-meet__card--lead .team-meet__avatar--photo {
        overflow: hidden;
        border-radius: 50%;
        background: var(--red);
        aspect-ratio: 1;
        width: 112px;
        height: 112px;
        max-width: 112px;
    }

    .team-meet__row .team-meet__avatar-disc,
    .team-meet__card--s .team-meet__avatar-disc,
    .team-meet__card--m .team-meet__avatar-disc,
    .team-meet__card--sublead .team-meet__avatar-disc,
    .team-meet__card--lead .team-meet__avatar-disc {
        display: none;
    }

    .team-meet__row .team-meet__avatar--photo img,
    .team-meet__card--s .team-meet__avatar--photo img,
    .team-meet__card--m .team-meet__avatar--photo img,
    .team-meet__card--sublead .team-meet__avatar--photo img,
    .team-meet__card--lead .team-meet__avatar--photo img {
        inset: 0;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        transform: none;
        object-fit: cover;
        object-position: center 18%;
        -webkit-mask-image: none;
        mask-image: none;
    }

    /* Len konateľ: fotka presahuje von z kruhu */
    .team-meet__row #tm-kandala .team-meet__avatar,
    .team-meet__row .team-meet__card--lead .team-meet__avatar {
        overflow: visible;
        border-radius: 0;
        background: transparent;
        aspect-ratio: 1 / 1.22;
        width: 112px;
        height: auto;
        max-width: 112px;
    }

    .team-meet__row #tm-kandala .team-meet__avatar--photo,
    .team-meet__row .team-meet__card--lead .team-meet__avatar--photo {
        overflow: visible;
        border-radius: 0;
        background: transparent;
        aspect-ratio: 1 / 1.22;
        width: 112px;
        height: auto;
        max-width: 112px;
    }

    .team-meet__row #tm-kandala .team-meet__avatar-disc,
    .team-meet__row .team-meet__card--lead .team-meet__avatar-disc {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        aspect-ratio: 1;
        border-radius: 50%;
        background: var(--red);
        border: none;
        box-shadow: none;
        z-index: 0;
        pointer-events: none;
    }

    .team-meet__row #tm-kandala .team-meet__avatar--photo img,
    .team-meet__row .team-meet__card--lead .team-meet__avatar--photo img {
        inset: auto;
        left: 50%;
        right: auto;
        top: auto;
        bottom: 0;
        width: 108%;
        height: 100%;
        transform: translateX(-50%);
        object-fit: contain;
        object-position: center bottom;
        -webkit-mask-image:
            linear-gradient(#000 0 0),
            radial-gradient(circle closest-side at 50% 50%, #000 100%, transparent 100.5%);
        -webkit-mask-size: 100% 50%, 93.2% 82.5%;
        -webkit-mask-position: top center, bottom center;
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-composite: source-over;
        mask-image:
            linear-gradient(#000 0 0),
            radial-gradient(circle closest-side at 50% 50%, #000 100%, transparent 100.5%);
        mask-size: 100% 50%, 93.2% 82.5%;
        mask-position: top center, bottom center;
        mask-repeat: no-repeat;
        mask-composite: add;
    }

    .team-meet__row .team-meet__name,
    .team-meet__card--s .team-meet__name,
    .team-meet__card--m .team-meet__name,
    .team-meet__card--sublead .team-meet__name,
    .team-meet__card--lead .team-meet__name {
        max-width: none;
        white-space: normal;
        font-size: 1.08rem;
        font-weight: var(--weight-display);
        line-height: 1.25;
        letter-spacing: -0.02em;
        color: #0d1117;
        text-align: center;
    }

    .team-meet__row .team-meet__role,
    .team-meet__card--s .team-meet__role,
    .team-meet__card--m .team-meet__role,
    .team-meet__card--sublead .team-meet__role,
    .team-meet__card--lead .team-meet__role {
        min-height: 2.7em;
        max-width: none;
        white-space: normal;
        margin-bottom: 12px;
        font-size: 0.88rem;
        line-height: 1.35;
        color: rgba(13, 17, 23, 0.55);
        font-weight: var(--weight-body);
        text-align: center;
    }

    .team-meet__row #tm-kandala .team-meet__role,
    .team-meet__row .team-meet__card--lead .team-meet__role {
        color: var(--red);
        font-weight: var(--weight-ui);
    }

    .team-meet__links {
        gap: 4px;
        align-items: center;
    }

    .team-meet__row .team-meet__phone,
    .team-meet__card--s .team-meet__phone,
    .team-meet__card--m .team-meet__phone,
    .team-meet__card--sublead .team-meet__phone,
    .team-meet__card--lead .team-meet__phone {
        font-size: 0.86rem;
        white-space: nowrap;
        text-align: center;
    }

    .team-meet__row .team-meet__email,
    .team-meet__card--s .team-meet__email,
    .team-meet__card--m .team-meet__email,
    .team-meet__card--sublead .team-meet__email,
    .team-meet__card--lead .team-meet__email {
        font-size: 0.78rem;
        word-break: break-all;
        text-align: center;
    }

    .team-meet__more {
        margin-top: 40px;
        padding: 28px 0 0;
        border-top: 1px solid var(--slate-200);
    }

    .team-meet__roster {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-meet__join {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-top: 32px;
        margin-inline: 20px;
        padding: 28px 22px;
        border-radius: 16px;
        text-align: left;
    }

    .team-meet__join-kicker {
        margin-bottom: 10px;
        color: rgba(255, 255, 255, 0.42);
    }

    .team-meet__join-title {
        font-size: clamp(1.35rem, 5vw, 1.65rem);
        line-height: 1.15;
        letter-spacing: -0.03em;
        max-width: 16ch;
    }

    .team-meet__join-lead {
        margin-top: 12px;
        font-size: 0.92rem;
        line-height: 1.5;
        max-width: none;
        color: rgba(255, 255, 255, 0.58);
    }

    .team-meet__join-btn {
        justify-self: stretch;
        width: 100%;
        min-height: 48px;
        font-size: 0.95rem;
    }

    .team-meet__note {
        flex-direction: column;
        gap: 12px;
        margin-top: 28px;
        padding: 0 20px;
        white-space: normal;
    }

    .team-meet__note-label {
        font-size: 0.68rem;
        font-weight: var(--weight-ui);
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: rgba(13, 17, 23, 0.4);
    }

    .team-meet__note-label::after {
        content: none;
    }

    .team-meet__note-links {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .team-meet__note-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 48px;
        padding: 12px 16px;
        border: 1px solid rgba(13, 17, 23, 0.1);
        border-radius: 12px;
        background: #ffffff;
        font-size: 0.95rem;
        box-sizing: border-box;
    }

    .team-meet__note-links a:not(:last-child)::after {
        content: none;
        margin: 0;
    }
}

@keyframes teamMeetSwipe {
    0%,
    100% {
        transform: translateY(-50%) translateX(0);
        opacity: 0.88;
    }
    50% {
        transform: translateY(-50%) translateX(6px);
        opacity: 1;
    }
}

@keyframes teamNetSwipe {
    0%,
    100% {
        transform: translateY(-50%) translateX(0);
        opacity: 0.88;
    }
    50% {
        transform: translateY(-50%) translateX(6px);
        opacity: 1;
    }
}

/* Phone only: split Projektový tím into 2 carousels */
@media (max-width: 720px) {
    .team-meet__more-head--desk {
        display: none;
    }

    .team-meet__more-head--mobile {
        display: block;
    }

    .team-meet__roster {
        display: flex;
        flex-direction: column;
        gap: 0;
        background: transparent;
        border: 0;
    }

    .team-meet__roster #tm-peter,
    .team-meet__roster #tm-kazimir,
    .team-meet__roster #tm-chlup,
    .team-meet__roster #tm-gavala,
    .team-meet__roster #tm-lacko,
    .team-meet__roster #tm-hvozdikova,
    .team-meet__roster #tm-kandalova {
        order: 0;
    }

    .team-meet__group {
        display: block;
    }

    /* Mobile: Projektový tím first, Špecializované pozície below */
    .team-meet__roster > .team-meet__group:nth-child(1) {
        order: 2;
        margin-top: 36px;
    }

    .team-meet__roster > .team-meet__group:nth-child(2) {
        order: 1;
        margin-top: 0;
    }

    .team-meet__group + .team-meet__group {
        margin-top: 0;
    }

    .team-meet__more-head {
        margin: 0 0 18px;
        padding: 0 20px;
    }

    .team-meet__more-head .team-meet__eyebrow {
        display: none;
    }

    .team-meet__more-title {
        font-size: clamp(1.45rem, 5.8vw, 1.85rem);
        line-height: 1.12;
        display: block;
    }

    .team-meet__more-title .team-meet__title-lead {
        display: block;
    }

    .team-meet__more-title .kh-hit {
        display: inline-block;
        margin-top: 0.08em;
    }

    .team-meet__more-rail {
        display: block;
        position: relative;
        margin: 0;
    }

    .team-meet__more-rail::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 48px;
        pointer-events: none;
        background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.9) 70%,
            #ffffff 100%
        );
        z-index: 2;
    }

    .team-meet__more-swipe {
        display: grid;
        place-items: center;
        position: absolute;
        top: 50%;
        right: 12px;
        z-index: 3;
        width: 36px;
        height: 36px;
        margin: 0;
        border-radius: 50%;
        background: #ffffff;
        color: #111111;
        border: 1px solid rgba(17, 17, 17, 0.12);
        box-shadow: 0 6px 18px rgba(17, 17, 17, 0.12);
        pointer-events: none;
        transform: translateY(-50%);
        animation: none;
    }

    .team-meet__more-swipe svg {
        display: block;
    }

    .team-meet__more-list,
    .team-meet__more-list--special,
    .team-meet__more-list--proj {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 2px 20px 8px;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 20px;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
        border: 0;
        background: transparent;
    }

    .team-meet__more-list::-webkit-scrollbar {
        display: none;
    }

    .team-meet__more-item,
    .team-meet__more-item:nth-child(n),
    .team-meet__more-list--special .team-meet__more-item:nth-child(3n),
    .team-meet__more-list--proj .team-meet__more-item:nth-child(5n),
    .team-meet__more-item:nth-child(2n),
    .team-meet__more-item:nth-child(3n),
    .team-meet__more-item:nth-child(4n),
    .team-meet__more-item:nth-last-child(-n + 2),
    .team-meet__more-item:nth-last-child(-n + 3),
    .team-meet__more-item:nth-last-child(-n + 4),
    .team-meet__more-list--special .team-meet__more-item:nth-last-child(-n + 3),
    .team-meet__more-list--proj .team-meet__more-item:nth-last-child(-n + 5),
    .team-meet__more-item:last-child {
        flex: 0 0 min(72vw, 250px);
        width: min(72vw, 250px);
        max-width: min(72vw, 250px);
        padding: 18px 16px;
        scroll-snap-align: start;
        box-sizing: border-box;
        border: 1px solid rgba(17, 17, 17, 0.1);
        border-radius: 14px;
        background: #ffffff;
        min-height: 0;
        aspect-ratio: auto;
    }
}

@media (max-width: 640px) {
    .team-net {
        margin: 36px 16px 0;
        padding: 32px 0 28px;
        gap: 24px;
    }

    .team-net__copy {
        padding: 0 18px;
    }

    .team-net__title {
        font-size: clamp(1.35rem, 6.2vw, 1.6rem);
        max-width: none;
    }

    .team-net__lead {
        font-size: 0.9rem;
    }

    .team-net__grid {
        gap: 10px;
        padding: 2px 18px 6px;
        scroll-padding-inline: 18px;
    }

    .team-net__item,
    .team-net__item:nth-child(-n + 2),
    .team-net__item:first-child {
        flex-basis: min(82vw, 270px);
        width: min(82vw, 270px);
        max-width: min(82vw, 270px);
        padding: 18px 16px;
    }

    .team-net__name {
        font-size: 0.94rem;
    }

    .team-net__desc {
        font-size: 0.82rem;
    }

    .team-meet__row {
        gap: 10px;
        padding: 2px 16px 8px;
        scroll-padding-inline: 16px;
    }

    .team-meet__card {
        flex-basis: min(82vw, 270px);
        width: min(82vw, 270px);
        max-width: min(82vw, 270px);
        padding: 18px 16px 16px;
    }

    .team-meet__more {
        margin-top: 40px;
        padding: 24px 0 0;
    }

    .team-meet__group + .team-meet__group {
        margin-top: 32px;
    }

    .team-meet__more-head {
        margin-bottom: 16px;
        padding: 0 16px;
    }

    .team-meet__more-title {
        font-size: clamp(1.35rem, 5.8vw, 1.65rem);
        line-height: 1.15;
    }

    .team-meet__more-list,
    .team-meet__more-list--special,
    .team-meet__more-list--proj {
        gap: 10px;
        padding: 2px 16px 8px;
        scroll-padding-inline: 16px;
    }

    .team-meet__more-item,
    .team-meet__more-item:nth-child(n),
    .team-meet__more-list--special .team-meet__more-item:nth-child(3n),
    .team-meet__more-list--proj .team-meet__more-item:nth-child(5n),
    .team-meet__more-item:nth-child(2n),
    .team-meet__more-item:nth-child(3n),
    .team-meet__more-item:nth-child(4n),
    .team-meet__more-item:nth-last-child(-n + 2),
    .team-meet__more-item:nth-last-child(-n + 3),
    .team-meet__more-item:nth-last-child(-n + 4),
    .team-meet__more-list--special .team-meet__more-item:nth-last-child(-n + 3),
    .team-meet__more-list--proj .team-meet__more-item:nth-last-child(-n + 5),
    .team-meet__more-item:last-child {
        flex-basis: min(78vw, 240px);
        width: min(78vw, 240px);
        max-width: min(78vw, 240px);
        padding: 16px 14px;
    }

    .team-meet__beyond {
        margin-top: 20px;
        padding: 0 16px;
    }

    .team-meet__beyond-copy {
        mask-image: linear-gradient(180deg, #000 0%, #000 52%, transparent 100%);
        -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 52%, transparent 100%);
        padding: 0 16px;
    }

    .team-meet__join {
        margin-top: 32px;
        margin-inline: 16px;
        padding: 26px 18px;
        border-radius: 14px;
        gap: 20px;
    }

    .team-meet__join-title {
        font-size: clamp(1.3rem, 6vw, 1.55rem);
        max-width: none;
    }

    .team-meet__join-lead {
        font-size: 0.9rem;
    }

    .team-meet__join-btn {
        width: 100%;
        justify-self: stretch;
        min-height: 48px;
    }

    .team-meet__note {
        margin-top: 24px;
        padding: 0 16px;
    }

    .team-meet__note-links a {
        font-size: 0.92rem;
        min-height: 46px;
    }
}

/* ---------- SERVICE PAGE — Projekčná činnosť ---------- */
.svc-hero {
    background: #ffffff;
    overflow: hidden;
}

.svc-hero-inner {
    position: relative;
    width: 100%;
    min-height: clamp(420px, 46vw, 540px);
    margin: 0;
    padding: 0;
}

.svc-hero-media {
    position: absolute;
    inset: 0;
    margin: 0;
    overflow: hidden;
}

.svc-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.svc-hero-panel {
    position: absolute;
    right: 0;
    bottom: 0;
    top: auto;
    transform: none;
    z-index: 2;
    width: min(640px, 54vw);
    max-width: calc(100% - clamp(96px, 22vw, 360px));
    padding:
        clamp(36px, 4vw, 52px)
        clamp(48px, 6vw, 88px)
        clamp(36px, 4vw, 52px)
        clamp(40px, 4.5vw, 56px);
    background: #ffffff;
    box-sizing: border-box;
}

.svc-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    margin: 0 0 16px;
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(13, 17, 23, 0.45);
}

.svc-breadcrumb a {
    color: rgba(13, 17, 23, 0.55);
    transition: color 0.15s ease;
}

.svc-breadcrumb a:hover {
    color: var(--red);
}

.svc-breadcrumb [aria-current] {
    color: rgba(13, 17, 23, 0.75);
}

.svc-hero-title {
    margin: 0 0 18px;
    font-family: "Barlow Condensed", "Helvetica Neue Condensed Black", "Arial Narrow", sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 4.4vw, 3.35rem);
    line-height: 1.02;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0d1117;
    text-wrap: balance;
}

.svc-hero-lead {
    margin: 0;
    font-family: var(--font-body);
    font-size: clamp(0.92rem, 1.1vw, 1rem);
    line-height: 1.65;
    color: rgba(13, 17, 23, 0.58);
    max-width: 36em;
}

.svc-hero-cta {
    display: inline-block;
    margin-top: 26px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: #0d1117;
    text-decoration: none;
    border-bottom: 4px solid var(--red);
    padding-bottom: 3px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.svc-hero-cta:hover,
.svc-hero-cta:focus-visible {
    color: var(--red);
    border-color: var(--red-deep);
}

.svc-brief {
    position: relative;
    background:
        radial-gradient(120% 80% at 0% 0%, rgba(227, 6, 19, 0.05), transparent 42%),
        linear-gradient(180deg, #f4f6f8 0%, #ffffff 36%, #ffffff 100%);
    padding: clamp(56px, 7vw, 96px) 0 clamp(56px, 7vw, 88px);
    overflow: hidden;
}

.svc-brief__inner {
    position: relative;
    width: min(var(--nav-container), 100%);
    margin: 0 auto;
    padding: 0 var(--section-rail-right) 0 var(--section-rail-left);
}

.svc-brief__head {
    margin: 0 0 clamp(28px, 3.5vw, 40px);
}

.svc-brief__eyebrow {
    margin: 0 0 10px;
    font-family: var(--font-body);
    font-size: var(--text-eyebrow);
    font-weight: var(--weight-ui);
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: rgba(13, 17, 23, 0.42);
}

.svc-brief__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.2vw, 2.6rem);
    font-weight: var(--weight-display);
    letter-spacing: var(--tracking-display);
    line-height: 1.1;
    color: #0d1117;
}

.svc-brief__lead {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(220px, 0.7fr);
    gap: clamp(24px, 3vw, 40px);
    align-items: stretch;
    margin: 0 0 clamp(40px, 5vw, 56px);
    padding: clamp(28px, 3.4vw, 40px);
    background:
        linear-gradient(135deg, #10151c 0%, #0d1117 55%, #161b22 100%);
    color: #ffffff;
    border-left: 4px solid var(--red);
}

.svc-brief__lead-main {
    min-width: 0;
}

.svc-brief__lead-label {
    margin: 0 0 12px;
    font-family: var(--font-body);
    font-size: var(--text-eyebrow);
    font-weight: var(--weight-ui);
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.svc-brief__lead-text {
    margin: 0;
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 1.4vw, 1.22rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
}

.svc-brief__chips {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 8px;
    align-self: center;
}

.svc-brief__chips li {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.05);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
}

.svc-brief__block {
    margin: 0 0 clamp(44px, 5.5vw, 64px);
}

.svc-brief__block:last-child {
    margin-bottom: 0;
}

.svc-brief__block-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin: 0 0 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(13, 17, 23, 0.12);
}

.svc-brief__block-head--on-dark {
    border-bottom-color: rgba(255, 255, 255, 0.14);
}

.svc-brief__num {
    flex: 0 0 auto;
    margin-top: 4px;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: var(--weight-ui);
    letter-spacing: 0.12em;
    color: var(--red);
}

.svc-brief__h {
    margin: 0 0 6px;
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 1.7vw, 1.45rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #0d1117;
}

.svc-brief__block-head--on-dark .svc-brief__h {
    color: #ffffff;
}

.svc-brief__sub {
    margin: 0;
    max-width: 42em;
    font-family: var(--font-body);
    font-size: clamp(0.92rem, 1.05vw, 1rem);
    line-height: 1.5;
    color: rgba(13, 17, 23, 0.55);
}

.svc-brief__block-head--on-dark .svc-brief__sub {
    color: rgba(255, 255, 255, 0.58);
}

.svc-brief__p {
    margin: 0 0 18px;
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.65;
    color: rgba(13, 17, 23, 0.72);
}

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

.svc-brief__reason {
    position: relative;
    min-height: 100%;
    padding: clamp(22px, 2.6vw, 28px);
    background: #ffffff;
    border: 1px solid rgba(13, 17, 23, 0.1);
    border-top: 3px solid var(--red);
    transition: transform 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}

.svc-brief__reason:hover {
    transform: translateY(-3px);
    border-color: rgba(13, 17, 23, 0.18);
    background: #fbfcfd;
}

.svc-brief__reason-n {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(13, 17, 23, 0.28);
}

.svc-brief__reason-tag {
    margin: 0 0 12px;
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
}

.svc-brief__reason-title {
    margin: 0 0 10px;
    padding-right: 28px;
    font-family: var(--font-display);
    font-size: clamp(1.02rem, 1.25vw, 1.15rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: #0d1117;
}

.svc-brief__reason-text {
    margin: 0;
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.05vw, 0.98rem);
    line-height: 1.55;
    color: rgba(13, 17, 23, 0.68);
}

.svc-brief__layers {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    counter-reset: none;
    background: #0d1117;
}

.svc-brief__layer {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: clamp(22px, 2.6vw, 30px);
    background: transparent;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.svc-brief__layer:last-child {
    border-right: 0;
}

.svc-brief__layer-idx {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    background: var(--red);
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.svc-brief__layer-copy h4 {
    margin: 0 0 6px;
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 1.25vw, 1.18rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.svc-brief__layer-meta {
    margin: 0 0 10px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.45);
}

.svc-brief__layer-copy p:last-child {
    margin: 0;
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.05vw, 0.98rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
}

.svc-brief__fit-banner {
    padding: clamp(28px, 3.4vw, 40px);
    background:
        linear-gradient(160deg, #12171f 0%, #0d1117 100%);
    border-top: 3px solid var(--red);
}

.svc-brief__fit {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.svc-brief__fit li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.svc-brief__fit li:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.18);
}

.svc-brief__fit-mark {
    margin-top: 2px;
    padding: 4px 8px;
    background: var(--red);
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
}

.svc-brief__fit p {
    margin: 0;
    font-family: var(--font-body);
    font-size: clamp(0.92rem, 1.05vw, 1rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 1100px) {
    .svc-brief__lead {
        grid-template-columns: 1fr;
    }

    .svc-brief__reasons,
    .svc-brief__layers {
        grid-template-columns: 1fr 1fr;
    }

    .svc-brief__layer:nth-child(2) {
        border-right: 0;
    }

    .svc-brief__layer:nth-child(1),
    .svc-brief__layer:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 720px) {
    .svc-brief__reasons,
    .svc-brief__layers,
    .svc-brief__fit {
        grid-template-columns: 1fr;
    }

    .svc-brief__layer {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .svc-brief__layer:last-child {
        border-bottom: 0;
    }

    .svc-brief__layer:nth-child(1),
    .svc-brief__layer:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .svc-brief__reason,
    .svc-brief__fit li {
        transition: none;
    }

    .svc-brief__reason:hover {
        transform: none;
    }
}

.svc-useful {
    background: #ffffff;
    border-top: 1px solid rgba(13, 17, 23, 0.06);
    padding: clamp(56px, 7vw, 88px) 0 clamp(72px, 9vw, 110px);
}

.svc-useful__inner {
    width: min(var(--nav-container), 100%);
    margin: 0 auto;
    padding: 0 var(--section-rail-right) 0 var(--section-rail-left);
}

.svc-useful__head {
    margin: 0 0 clamp(28px, 3.5vw, 40px);
}

.svc-useful__eyebrow {
    margin: 0 0 10px;
    font-family: var(--font-body);
    font-size: var(--text-eyebrow);
    font-weight: var(--weight-ui);
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: rgba(13, 17, 23, 0.42);
}

.svc-useful__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    font-weight: var(--weight-display);
    letter-spacing: var(--tracking-display);
    line-height: 1.12;
    color: #0d1117;
}

.svc-useful__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 4vw, 56px);
    border-top: 1px solid rgba(13, 17, 23, 0.12);
}

.svc-useful__col {
    padding-top: clamp(22px, 2.8vw, 32px);
}

.svc-useful__col-title {
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #0d1117;
}

.svc-useful__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.svc-useful__list li {
    border-bottom: 1px solid rgba(13, 17, 23, 0.08);
}

.svc-useful__list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.05vw, 1.02rem);
    font-weight: 500;
    color: rgba(13, 17, 23, 0.78);
    text-decoration: none;
    transition: color 0.18s ease;
}

.svc-useful__list a::after {
    content: "→";
    color: var(--red);
    opacity: 0.7;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.svc-useful__list a:hover,
.svc-useful__list a:focus-visible {
    color: #0d1117;
}

.svc-useful__list a:hover::after,
.svc-useful__list a:focus-visible::after {
    opacity: 1;
    transform: translateX(3px);
}

@media (max-width: 820px) {
    .svc-useful__grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

.svc-intro {
    background: #ffffff;
    overflow: hidden;
}

.svc-intro-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: clamp(460px, 58vw, 720px);
}

.svc-intro-text {
    padding: clamp(60px, 8vw, 120px)
             clamp(32px, 4vw, 72px)
             clamp(60px, 8vw, 120px)
             max(var(--gutter), calc((100vw - var(--nav-container)) / 2 + var(--gutter)));
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.svc-intro-title {
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    max-width: 14ch;
    margin-bottom: 20px;
}

.svc-intro-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 28px;
}

.svc-intro-media {
    margin: 0;
    overflow: hidden;
}

.svc-intro-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.svc-scope {
    background: #fff;
    padding: clamp(72px, 9vw, 112px) 0;
    border-top: 1px solid var(--slate-100);
}

.svc-scope--alt {
    background: #f6f7f9;
}

.svc-all-lead {
    margin: 0 0 clamp(72px, 9vw, 104px);
    max-width: 52ch;
    font-family: var(--font-body);
    font-size: clamp(0.92rem, 1.1vw, 1rem);
    line-height: 1.65;
    color: rgba(13, 17, 23, 0.58);
}

.svc-all-pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.4vw, 28px);
}

.svc-all-pillar {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid var(--slate-200);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.svc-all-pillar:hover,
.svc-all-pillar:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(13, 17, 23, 0.08);
}

.svc-all-pillar--proj:hover,
.svc-all-pillar--proj:focus-visible {
    border-color: rgba(227, 6, 19, 0.35);
}

.svc-all-pillar--inz:hover,
.svc-all-pillar--inz:focus-visible {
    border-color: rgba(0, 168, 232, 0.35);
}

.svc-all-pillar--vyst:hover,
.svc-all-pillar--vyst:focus-visible {
    border-color: rgba(90, 107, 94, 0.45);
}

.svc-all-pillar-media {
    margin: 0;
    overflow: hidden;
    background: var(--slate-50);
}

.svc-all-pillar-media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.svc-all-pillar:hover .svc-all-pillar-media img,
.svc-all-pillar:focus-visible .svc-all-pillar-media img {
    transform: none;
}

.svc-all-pillar-body {
    padding: clamp(22px, 2.8vw, 30px);
}

.svc-all-pillar-title {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 1.8vw, 1.45rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #0d1117;
}

.svc-all-pillar-text {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(13, 17, 23, 0.58);
}

.svc-all-pillar-cta {
    display: inline-block;
    margin-top: 18px;
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    color: #0d1117;
}

.svc-all-pillar--proj .svc-all-pillar-cta {
    border-bottom: 3px solid var(--red);
    padding-bottom: 2px;
}

.svc-all-pillar--inz .svc-all-pillar-cta {
    border-bottom: 3px solid var(--accent-blue);
    padding-bottom: 2px;
}

.svc-all-pillar--vyst .svc-all-pillar-cta {
    border-bottom: 3px solid var(--accent-build);
    padding-bottom: 2px;
}

.svc-ref-cat--proj {
    color: var(--red);
}

.svc-ref-cat--inz {
    color: var(--accent-blue);
}

.svc-ref-cat--vyst {
    color: var(--accent-build);
}

.svc-ref-title {
    margin: 0 0 clamp(40px, 5vw, 64px);
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: var(--weight-title);
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #0d1117;
}

.svc-ref-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(40px, 6vw, 80px);
}

.svc-ref-grid--quad {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: clamp(48px, 6vw, 72px);
    column-gap: clamp(40px, 6vw, 80px);
}

.svc-ref-cat {
    margin: 0;
    padding-bottom: clamp(20px, 2.5vw, 28px);
    border-bottom: 2px solid #0d1117;
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.4vw, 1.125rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #0d1117;
}

.svc-scope .svc-ref-col,
.svc-faq .svc-ref-col,
.svc-corp .svc-ref-col {
    display: flex;
    flex-direction: column;
    gap: clamp(32px, 4vw, 48px);
}

.svc-ref-col > .svc-corp-list > li:first-child,
.svc-ref-col > .svc-ref-rows > li:first-child.svc-ref-row,
.svc-ref-col > .svc-ref-rows > li:first-child .svc-ref-link,
.svc-ref-col > .svc-ref-rows--faq > li:first-child .svc-faq-trigger {
    padding-top: 0;
}

.svc-ref-cat--spaced {
    margin-top: clamp(36px, 4.5vw, 52px);
}

.svc-ref-rows {
    margin: 0;
    padding: 0;
    list-style: none;
}

.svc-ref-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: clamp(16px, 2vw, 20px) 0;
    border-bottom: 1px solid var(--slate-200);
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.15vw, 1.05rem);
    font-weight: 500;
    line-height: 1.45;
    color: #0d1117;
}

.svc-ref-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 0;
    border: 1.5px solid rgba(227, 6, 19, 0.45);
    background: transparent;
    color: var(--red);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.svc-ref-btn svg {
    width: 11px;
    height: 11px;
    transition: transform 0.22s ease;
}

.svc-ref-link:hover .svc-ref-btn,
.svc-ref-link:focus-visible .svc-ref-btn {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.svc-ref-row--link {
    padding: 0;
}

.svc-ref-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: clamp(16px, 2vw, 20px) 0;
    text-decoration: none;
    color: #0d1117;
    transition: color 0.2s ease;
}

.svc-ref-link:hover,
.svc-ref-link:focus-visible {
    color: var(--red);
}

.svc-ref-link:focus-visible {
    outline: 2px solid rgba(227, 6, 19, 0.28);
    outline-offset: 2px;
}

.svc-faq {
    background: #fff;
    padding: clamp(72px, 9vw, 112px) 0;
    border-top: 1px solid var(--slate-100);
}

.svc-ref-row--faq {
    display: block;
    padding: 0;
    border-bottom: none;
}

.svc-ref-rows--faq .svc-ref-row--faq {
    border-bottom: 1px solid var(--slate-200);
}

.svc-ref-rows--faq .svc-ref-row--faq:last-child {
    border-bottom: none;
}

.svc-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: clamp(16px, 2vw, 20px) 0;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.15vw, 1.05rem);
    font-weight: 500;
    line-height: 1.45;
    color: #0d1117;
    transition: color 0.2s ease;
}

.svc-faq-trigger:hover,
.svc-faq-trigger:focus-visible {
    color: rgba(13, 17, 23, 0.72);
}

.svc-faq-trigger[aria-expanded="true"] .svc-ref-btn {
    background: #0d1117;
    border-color: #0d1117;
    color: #fff;
}

.svc-faq-trigger[aria-expanded="true"] .svc-ref-btn svg {
    transform: rotate(90deg);
}

.svc-faq-body {
    display: none;
    padding: 0 0 clamp(16px, 2vw, 20px);
}

.svc-faq-body.open {
    display: block;
}

.svc-faq-body p {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(13, 17, 23, 0.65);
}

.svc-faq-body a {
    color: var(--red);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.svc-manager {
    margin-top: clamp(96px, 12vw, 160px);
    display: flex;
    justify-content: center;
}

.svc-manager-inner {
    position: relative;
    width: min(1180px, 100%);
    min-height: clamp(380px, 40vw, 500px);
}

.svc-manager-media {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: clamp(28px, 4.5vw, 52px);
    margin: 0;
    overflow: hidden;
}

.svc-manager-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.svc-manager-panel {
    position: absolute;
    top: 50%;
    right: clamp(20px, 3vw, 36px);
    transform: translateY(-50%);
    z-index: 2;
    width: min(520px, 52%);
    padding: clamp(28px, 3vw, 40px);
    background: #ffffff;
}

.svc-manager-name {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: #0d1117;
    max-width: 18ch;
}

.svc-manager-role {
    margin: 0;
    font-family: var(--font-body);
    font-size: clamp(0.88rem, 1vw, 0.95rem);
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: -0.01em;
    color: rgba(13, 17, 23, 0.58);
    max-width: 42ch;
}

.svc-manager-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 20px;
}

.svc-manager-contact a {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 600;
    color: #0d1117;
    text-decoration: none;
    border-bottom: 2px solid var(--red);
    align-self: flex-start;
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.svc-manager-contact a:hover,
.svc-manager-contact a:focus-visible {
    color: var(--red);
    border-color: var(--red-deep);
}

.svc-corp {
    background: #f6f7f9;
    padding: clamp(72px, 9vw, 112px) 0;
    border-top: 1px solid var(--slate-100);
}

.svc-corp-lead {
    margin: 0 0 clamp(72px, 9vw, 104px);
    max-width: 56ch;
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.15vw, 1.05rem);
    line-height: 1.6;
    color: rgba(13, 17, 23, 0.58);
}

.svc-ref-title + .svc-corp-lead,
.svc-ref-title + .svc-all-lead {
    margin-top: clamp(-28px, -3.5vw, -16px);
}

.svc-corp-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.svc-corp-list li {
    padding: clamp(14px, 1.8vw, 18px) 0;
    border-bottom: 1px solid var(--slate-200);
    font-family: var(--font-body);
    font-size: clamp(0.92rem, 1.1vw, 1rem);
    font-weight: 500;
    line-height: 1.5;
    color: rgba(13, 17, 23, 0.72);
}

.svc-corp-list li:last-child {
    border-bottom: none;
}

/* ── Catalog (podkategórie) — boxy product grid ── */
.svc-catalog {
    background: #ffffff;
    padding: clamp(72px, 9vw, 120px) 0;
    border-top: 1px solid var(--slate-100);
}

.svc-catalog__head {
    margin-bottom: clamp(40px, 5.5vw, 64px);
}

.svc-catalog__intro {
    max-width: 560px;
}

.svc-catalog__title {
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #0d1117;
}

.svc-catalog__lead {
    margin: 0 0 22px;
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.15vw, 1.05rem);
    line-height: 1.6;
    color: rgba(13, 17, 23, 0.58);
}

.svc-catalog__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: var(--red);
    border: 1.5px solid var(--red);
    border-radius: var(--btn-radius);
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.22s var(--btn-ease), color 0.22s var(--btn-ease), border-color 0.22s var(--btn-ease);
}

.svc-catalog__cta:hover,
.svc-catalog__cta:focus-visible {
    background: #ffffff;
    color: var(--red);
}

.svc-catalog__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(32px, 4.5vw, 56px) clamp(28px, 3.5vw, 48px);
}

.svc-catalog__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.svc-catalog__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
}

.svc-catalog__name {
    margin: 0 0 8px;
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: #0d1117;
}

.svc-catalog__text {
    margin: 0 0 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(13, 17, 23, 0.55);
}

.svc-catalog__more {
    margin-top: auto;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: #0d1117;
    text-decoration: none;
    border-bottom: 3px solid var(--red);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.svc-catalog__more:hover,
.svc-catalog__more:focus-visible {
    color: var(--red);
    border-color: var(--red-deep);
}

/* ── Path (od návrhu) — boxy split ── */
.svc-path {
    background: var(--slate-100);
    padding: clamp(56px, 7vw, 96px) 0;
    border-top: 1px solid var(--slate-200);
}

.svc-path__inner {
    width: min(var(--nav-container), 100%);
    margin: 0 auto;
    padding: 0 var(--section-rail-right) 0 var(--section-rail-left);
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.75fr);
    gap: clamp(20px, 3vw, 36px);
    align-items: stretch;
}

.svc-path__card {
    background: #ffffff;
    padding: clamp(32px, 4vw, 52px);
    border-radius: var(--btn-radius);
}

.svc-path__title {
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #0d1117;
}

.svc-path__lead {
    margin: 0 0 24px;
    max-width: 48ch;
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.15vw, 1.05rem);
    line-height: 1.6;
    color: rgba(13, 17, 23, 0.6);
}

.svc-path__checks {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.svc-path__checks li {
    position: relative;
    padding-left: 36px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.45;
    color: #0d1117;
}

.svc-path__checks li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.1em;
    width: 22px;
    height: 22px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: inset 0 0 0 0 transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='m3.5 8.2 3 3 6-6.5' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 12px;
}

.svc-path__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.svc-path__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    background: var(--red);
    border: 1.5px solid var(--red);
    border-radius: var(--btn-radius);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.22s var(--btn-ease), color 0.22s var(--btn-ease);
}

.svc-path__btn:hover,
.svc-path__btn:focus-visible {
    background: #ffffff;
    color: var(--red);
}

.svc-path__aside {
    background: #ffffff;
    padding: clamp(28px, 3.5vw, 40px);
    border-radius: var(--btn-radius);
    display: flex;
    flex-direction: column;
}

.svc-path__aside-title {
    margin: 0 0 22px;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0d1117;
}

.svc-path__links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.svc-path__links a {
    display: inline;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: #0d1117;
    text-decoration: none;
    border-bottom: 3px solid var(--red);
    padding-bottom: 2px;
    transition: color 0.2s ease;
}

.svc-path__links a:hover,
.svc-path__links a:focus-visible {
    color: var(--red);
}

@media (max-width: 960px) {
    .svc-catalog__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .svc-path__inner {
        grid-template-columns: 1fr;
        padding-left: var(--gutter);
        padding-right: var(--gutter);
    }
}

@media (max-width: 640px) {
    .svc-catalog__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .svc-path__actions {
        flex-direction: column;
    }

    .svc-path__btn {
        width: 100%;
    }
}

/* ── Deliver (leaf scope) — boxy benefit cards ── */
.svc-deliver {
    background: #ffffff;
    padding: clamp(64px, 8vw, 104px) 0;
    border-top: 1px solid var(--slate-100);
}

.svc-deliver__head {
    margin-bottom: clamp(32px, 4.5vw, 48px);
    max-width: 640px;
}

.svc-deliver__title {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.2vw, 2.55rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #0d1117;
}

.svc-deliver__lead {
    margin: 0;
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.15vw, 1.05rem);
    line-height: 1.6;
    color: rgba(13, 17, 23, 0.58);
}

.svc-deliver__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 2.2vw, 24px);
}

.svc-deliver__card {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    padding: clamp(24px, 3vw, 32px);
}

.svc-deliver__card-title {
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #0d1117;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0d1117;
}

.svc-deliver__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.svc-deliver__list li {
    position: relative;
    padding-left: 28px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.45;
    color: rgba(13, 17, 23, 0.78);
}

.svc-deliver__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.25em;
    width: 16px;
    height: 16px;
    background: var(--red);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='m3.5 8.2 3 3 6-6.5' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px 10px;
}

.svc-deliver__card--links {
    background: #ffffff;
}

.svc-deliver__card--links .svc-deliver__list li {
    padding-left: 0;
}

.svc-deliver__card--links .svc-deliver__list li::before {
    display: none;
}

.svc-deliver__card--links a {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: #0d1117;
    text-decoration: none;
    border-bottom: 3px solid var(--red);
    padding-bottom: 2px;
    transition: color 0.2s ease;
}

.svc-deliver__card--links a:hover,
.svc-deliver__card--links a:focus-visible {
    color: var(--red);
}

@media (max-width: 720px) {
    .svc-deliver__grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ polish to match boxy system */
.svc-faq .svc-ref-title {
    margin-bottom: clamp(28px, 4vw, 40px);
}

.svc-faq .svc-ref-cat {
    border-bottom-color: var(--red);
}

.svc-areas {
    background: #f6f7f9;
    padding: clamp(72px, 9vw, 120px) 0;
    border-top: 1px solid var(--slate-100);
}

.svc-areas-head {
    margin-bottom: clamp(36px, 5vw, 52px);
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(14px, 1.8vw, 20px);
}

.svc-card {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.svc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(13, 17, 23, 0.08);
}

.svc-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.svc-card-body {
    padding: clamp(16px, 2vw, 22px);
}

.svc-card-title {
    margin: 0 0 8px;
    font-family: var(--font-display);
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0d1117;
}

.svc-card-desc {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.55;
    color: rgba(13, 17, 23, 0.58);
}

.svc-trust {
    background: #0d1117;
    padding: clamp(48px, 6vw, 72px) 0;
}

.svc-trust-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(16px, 2.5vw, 32px);
}

.svc-trust-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: clamp(16px, 2vw, 24px);
    border-left: 2px solid var(--red);
}

.svc-trust-num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    color: #fff;
}

.svc-trust-label {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 1100px) {
    .svc-ref-grid,
    .svc-ref-grid--quad {
        grid-template-columns: 1fr;
        gap: clamp(40px, 8vw, 56px);
    }

    .svc-all-pillars {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 820px) {
    .svc-hero-inner {
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    .svc-hero-media {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        min-height: clamp(280px, 52vw, 380px);
    }

    .svc-hero-panel {
        position: relative;
        right: auto;
        bottom: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: none;
        padding: 36px var(--gutter) 44px;
        box-shadow: none;
    }

    .svc-hero-title {
        font-size: clamp(2rem, 8.2vw, 2.7rem);
        line-height: 1.05;
    }

    .svc-manager-inner {
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    .svc-manager-media {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        min-height: clamp(300px, 56vw, 400px);
    }

    .svc-manager-panel {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        padding: 28px var(--gutter) 36px;
    }

    .svc-manager-name {
        max-width: none;
    }

    .svc-manager-role {
        max-width: none;
    }

    .svc-intro-inner {
        grid-template-columns: 1fr;
    }

    .svc-intro-media {
        min-height: 280px;
        order: -1;
    }

    .svc-intro-text {
        padding: 40px var(--gutter);
    }

    .svc-scope,
    .svc-faq,
    .svc-corp {
        padding: clamp(56px, 10vw, 72px) 0;
    }

    .svc-ref-title {
        margin-bottom: clamp(28px, 6vw, 40px);
    }

    .svc-manager {
        margin-top: clamp(72px, 14vw, 112px);
    }

    .svc-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .svc-grid,
    .svc-trust-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- FULL-WIDTH BANNER (own section, gentle overlap below) ---------- */
/* ---------- BLOG PREVIEW ---------- */
.blog-section {
    background: #fff;
    padding: clamp(80px, 10vw, 150px) 0;
    border-top: 1px solid #eef0f4;
}

.blog-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: clamp(40px, 6vw, 64px);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2.5vw, 28px);
}

.blog-card {
    background: #fff;
    border: 1px solid #eaecf0;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.blog-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.blog-card-img-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    flex-shrink: 0;
}

.blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card-img-wrap img {
    transform: scale(1.05);
}

.blog-card-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #fff;
    background: #e30613;
    padding: 5px 11px;
    border-radius: 20px;
}

.blog-card-cat--blue  { background: #1a56e8; }
.blog-card-cat--green { background: #14874e; }

.blog-card-body {
    display: flex;
    flex-direction: column;
    padding: 22px 22px 20px;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.blog-date {
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(13,17,23,0.4);
}

.blog-read {
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(13,17,23,0.4);
    padding-left: 12px;
    border-left: 1px solid #e0e2e7;
}

.blog-card-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.3;
    letter-spacing: -0.2px;
    margin-bottom: 12px;
}

.blog-card-title a {
    color: #0d1117;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-title a:hover { color: #e30613; }

.blog-card-excerpt {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(13,17,23,0.58);
    flex: 1;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: #e30613;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.blog-card-link:hover { gap: 10px; }

/* ---------- CONTACT CTA ---------- */
.contact-cta {
    position: relative;
    overflow: visible;
    z-index: 1;
    padding: clamp(80px, 10vw, 150px) 0;
    color: #fff;
    background-image: linear-gradient(rgba(13, 17, 23, 0.82), rgba(13, 17, 23, 0.82)),
        url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
}

.contact-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.contact-cta-heading {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.12;
    color: #ffffff;
    max-width: 18ch;
}

.contact-cta-text {
    margin: 0;
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
    max-width: 42ch;
}

.svc-areas .section-sub {
    color: rgba(13, 17, 23, 0.58);
}

/* ═══════════════════════════════════════════════════════════
   SECTION — KONTAKTNÝ FORMULÁR
═══════════════════════════════════════════════════════════ */
.contact-form-section {
    position: relative;
    background: #ffffff;
    padding: clamp(72px, 9vw, 120px) 0;
    border-top: 1px solid var(--slate-100);
    overflow: hidden;
}

.contact-form-aside {
    position: relative;
    min-height: 100%;
}

.contact-form-accent--bar {
    position: absolute;
    top: clamp(-20px, -2.5vw, -8px);
    right: 0;
    bottom: clamp(-20px, -2.5vw, -8px);
    width: clamp(96px, 18vw, 220px);
    background: linear-gradient(
        180deg,
        var(--slate-200) 0%,
        var(--slate-100) 100%
    );
    z-index: 0;
}

.contact-form-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: stretch;
    width: min(var(--nav-container), 100%);
    margin: 0 auto;
    padding-left: max(
        var(--gutter),
        calc((100vw - var(--nav-container)) / 2 + var(--gutter))
    );
    padding-right: max(
        var(--gutter),
        calc((100vw - var(--nav-container)) / 2 + var(--gutter))
    );
    min-height: clamp(480px, 52vw, 620px);
}

.contact-form-panel {
    padding: clamp(32px, 5vw, 64px) clamp(24px, 4vw, 56px) clamp(40px, 6vw, 72px) 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-title {
    font-family: var(--font-display);
    font-weight: var(--weight-title);
    font-size: var(--text-h2);
    line-height: var(--lh-title);
    letter-spacing: var(--tracking-title);
    color: #0d1117;
    margin-bottom: clamp(14px, 2vw, 20px);
}

.contact-form-lead {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: var(--text-lead);
    line-height: var(--lh-lead);
    color: rgba(13, 17, 23, 0.55);
    max-width: 42ch;
    margin-bottom: clamp(28px, 4vw, 44px);
}

.contact-form {
    max-width: 520px;
}

.contact-field {
    margin-bottom: clamp(22px, 3vw, 32px);
}

.contact-field label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(13, 17, 23, 0.72);
    margin-bottom: 10px;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    color: #0d1117;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid var(--slate-200);
    border-radius: 0;
    padding: 10px 0 12px;
    outline: none;
    resize: vertical;
    min-height: 44px;
    transition: border-color 0.22s var(--btn-ease);
}

.contact-field textarea {
    min-height: 110px;
    line-height: 1.55;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: rgba(13, 17, 23, 0.32);
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-bottom-color: #0d1117;
}

.contact-field input:invalid:not(:placeholder-shown),
.contact-field textarea:invalid:not(:placeholder-shown) {
    border-bottom-color: rgba(227, 6, 19, 0.55);
}

.contact-form-submit {
    margin-top: clamp(8px, 1.5vw, 16px);
    min-width: clamp(160px, 28vw, 200px);
}

.contact-form-feedback {
    margin-top: 14px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--accent-blue);
}

.contact-form-feedback.is-error {
    color: var(--red);
}

.contact-info-panel {
    position: relative;
    z-index: 1;
    background: var(--bg);
    color: #ffffff;
    padding: clamp(40px, 6vw, 72px) clamp(28px, 4vw, 48px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: clamp(12px, 2vw, 24px) clamp(40px, 7vw, 96px) clamp(12px, 2vw, 24px) 0;
    box-shadow: 0 28px 64px rgba(13, 17, 23, 0.18);
}

.contact-info-accent {
    position: absolute;
    top: clamp(18px, 3vw, 28px);
    left: clamp(-10px, -1.2vw, -6px);
    width: clamp(22px, 2.8vw, 32px);
    height: clamp(22px, 2.8vw, 32px);
    background: var(--red);
    z-index: 1;
}

.contact-info-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: clamp(28px, 4vw, 40px);
}

.contact-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: clamp(22px, 3vw, 30px);
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 2px;
}

.contact-info-list a,
.contact-info-list span {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.15vw, 1.05rem);
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
}

.contact-info-list a {
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-list a:hover {
    color: #ffffff;
}

@media (max-width: 960px) {
    .contact-form-inner {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-left: var(--gutter);
        padding-right: var(--gutter);
    }

    .contact-form-panel {
        padding: 0 0 clamp(32px, 6vw, 48px);
    }

    .contact-form {
        max-width: none;
    }

    .contact-form-accent--bar {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: clamp(72px, 14vw, 120px);
    }

    .contact-info-panel {
        margin: 0 0 clamp(72px, 14vw, 120px);
    }
}

@media (max-width: 640px) {
    .contact-form-submit {
        width: 100%;
    }
}

/* ═══════════════════════════════════════════════════════════
   SECTION — KONTAKT (glass checklist CTA, full-width pozadie)
═══════════════════════════════════════════════════════════ */
.contact-glass-anchor {
    position: relative;
    overflow: visible;
    --contact-glass-top-space: clamp(28px, 3.5vw, 48px);
}

.contact-glass {
    position: relative;
    z-index: 4;
    min-height: clamp(820px, 96vh, 1100px);
    overflow: visible;
    background: #ffffff;
    margin-top: 0;
}

.contact-glass__media {
    position: absolute;
    /* Bleed white phone top into section above */
    top: calc(var(--contact-glass-top-space) * -2.2);
    right: 0;
    bottom: 0;
    left: 0;
    background: #ffffff;
    z-index: 0;
}

.contact-glass__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Keep phone crown/top visible; crop surplus from bottom if needed */
    object-position: 100% 0%;
}

.contact-glass__media picture {
    display: block;
    width: 100%;
    height: 100%;
}

.contact-glass__overlay {
    display: none;
}

.contact-glass__badge {
    position: absolute;
    top: clamp(20px, 3vw, 36px);
    right: clamp(20px, 4vw, 56px);
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--red);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 12px 32px rgba(227, 6, 19, 0.35);
}

.contact-glass__badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.28);
}

.contact-glass__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    min-height: inherit;
    width: min(var(--nav-container), 100%);
    margin: 0 auto;
    padding:
        clamp(96px, 14vw, 168px)
        var(--section-rail-right)
        clamp(56px, 8vw, 96px)
        var(--section-rail-left);
}

.contact-glass__panel {
    width: min(100%, 440px);
    padding: clamp(22px, 3vw, 32px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(22px) saturate(1.35);
    -webkit-backdrop-filter: blur(22px) saturate(1.35);
    box-shadow:
        0 4px 24px rgba(13, 17, 23, 0.12),
        0 28px 64px rgba(13, 17, 23, 0.22);
}

.contact-glass__eyebrow {
    margin: 0 0 10px;
    font-family: var(--font-body);
    font-size: var(--text-eyebrow, 0.72rem);
    font-weight: var(--weight-ui);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.contact-glass__reply {
    display: none;
}

.contact-glass__title {
    font-family: var(--font-display);
    font-weight: var(--weight-title);
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    letter-spacing: -0.03em;
    color: #ffffff;
    line-height: 1.08;
    margin: 0 0 clamp(22px, 3vw, 28px);
}

.contact-glass__lead {
    font-family: var(--font-body);
    font-size: clamp(0.82rem, 1vw, 0.92rem);
    font-weight: var(--weight-body);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 clamp(18px, 2.5vw, 22px);
    max-width: 40ch;
}

.contact-glass__check {
    list-style: none;
    margin: 0 0 clamp(20px, 2.8vw, 26px);
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.contact-glass__check li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.92);
}

.contact-glass__check-ic {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    border: 1.5px solid rgba(227, 6, 19, 0.65);
    background: rgba(227, 6, 19, 0.18);
    color: #ffffff;
}

.contact-glass__check-ic svg {
    display: block;
}

.contact-glass__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.contact-glass__submit {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.contact-glass__tel {
    display: block;
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: var(--weight-nav);
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-glass__tel:hover {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-glass__micro {
    margin: 2px 0 0;
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.76rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 720px) {
    .contact-glass {
        min-height: clamp(620px, 88vh, 820px);
    }

    .contact-glass__media {
        top: calc(var(--contact-glass-top-space) * -0.15);
    }

    .contact-glass__media img {
        object-position: -8% 32%;
    }

    .contact-glass__inner {
        align-items: flex-end;
        padding:
            clamp(40px, 10vw, 72px)
            16px
            clamp(20px, 5vw, 28px);
    }

    .contact-glass__panel {
        width: 100%;
        padding: 18px 18px 16px;
        background: rgba(13, 17, 23, 0.28);
        border: 1px solid rgba(255, 255, 255, 0.16);
        backdrop-filter: blur(14px) saturate(1.2);
        -webkit-backdrop-filter: blur(14px) saturate(1.2);
        box-shadow: 0 16px 40px rgba(13, 17, 23, 0.28);
        text-align: center;
    }

    .contact-glass__eyebrow,
    .contact-glass__check,
    .contact-glass__micro {
        display: none;
    }

    .contact-glass__reply {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        margin: 0 auto 12px;
        padding: 6px 11px;
        border: 1px solid rgba(255, 255, 255, 0.22);
        background: rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.9);
        font-family: var(--font-body);
        font-size: 0.68rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        line-height: 1;
    }

    .contact-glass__reply::before {
        content: "";
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #7dffa3;
        box-shadow: 0 0 0 3px rgba(125, 255, 163, 0.22);
    }

    .contact-glass__title {
        font-size: clamp(1.55rem, 7.2vw, 1.9rem);
        line-height: 1.05;
        letter-spacing: -0.035em;
        margin: 0 auto 16px;
        max-width: none;
        text-wrap: balance;
    }

    .contact-glass__title span {
        display: block;
    }

    .contact-glass__actions {
        gap: 10px;
    }

    .contact-glass__submit {
        min-height: 48px;
        font-size: 0.92rem;
    }

    .contact-glass__tel {
        text-align: center;
        font-size: 0.84rem;
        color: rgba(255, 255, 255, 0.82);
    }

    .contact-glass__badge {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════
   PAGE END — partneri, certifikáty, floating CTA, footer
═══════════════════════════════════════════════════════════ */
.partners {
    position: relative;
    overflow: visible;
    background: linear-gradient(
        165deg,
        #ffffff 0%,
        #ffffff 28%,
        var(--slate-50) 100%
    );
    padding: clamp(88px, 10.5vw, 132px) 0 clamp(92px, 11vw, 140px);
    border-top: none;
    min-height: 0;
    display: flex;
    align-items: flex-start;
}

.partners-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    grid-template-areas:
        "copy logos"
        "cta logos";
    align-items: start;
    column-gap: clamp(32px, 5vw, 72px);
    row-gap: clamp(24px, 3vw, 32px);
    width: min(var(--nav-container), 100%);
    margin: 0 auto;
    padding-left: var(--section-rail-left);
    padding-right: var(--section-rail-right);
}

.partners-copy {
    grid-area: copy;
    max-width: none;
    text-align: left;
    align-self: end;
}

.partners-title {
    font-family: var(--font-display);
    font-weight: var(--weight-title);
    font-size: var(--text-h2);
    line-height: var(--lh-title);
    letter-spacing: var(--tracking-title);
    color: #0d1117;
    margin: 0 0 clamp(14px, 2vw, 20px);
    text-align: left;
    text-wrap: balance;
}

.partners-title__line {
    white-space: nowrap;
}

.partners-lead {
    font-family: var(--font-body);
    font-weight: var(--weight-body);
    font-size: var(--text-lead);
    line-height: var(--lh-lead);
    color: rgba(13, 17, 23, 0.58);
    max-width: 42ch;
    margin: 0;
    text-align: left;
}

.partners-lead__l1,
.partners-lead__l2 {
    display: inline;
}

.partners-marquee {
    grid-area: logos;
    margin-top: 0;
    width: 100%;
    overflow: visible;
    mask-image: none;
    -webkit-mask-image: none;
    align-self: center;
}

.partners-cta {
    grid-area: cta;
    justify-self: start;
    min-width: clamp(160px, 24vw, 200px);
}

.partners-marquee-track {
    display: block;
    width: 100%;
    animation: none;
}

.partners-logos.partners-logos--clone {
    display: none;
}

.partners-logos {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(20px, 3vw, 36px);
    margin: 0;
    padding: 0;
}

.partners-logos li {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(72px, 9vw, 96px);
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.22s ease;
}

.partners-logos li:hover {
    border: none;
    box-shadow: none;
    transform: translateY(-1px);
}

.partners-logos img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(0.15);
    opacity: 0.92;
    transition: filter 0.22s ease, opacity 0.22s ease;
}

/* Per-logo optical balance (content aspect ratios differ a lot) */
.partners-logo--vsd img {
    max-height: clamp(72px, 9vw, 96px);
    max-width: min(100%, 260px);
}

.partners-logo--spp img {
    max-height: clamp(68px, 8.5vw, 90px);
    max-width: min(100%, 250px);
}

.partners-logo--zse img {
    max-height: clamp(34px, 4.2vw, 44px);
    max-width: min(100%, 240px);
}

.partners-logo--vvs img {
    max-height: clamp(70px, 8.5vw, 92px);
    max-width: min(100%, 78px);
}

.partners-logos li:hover img {
    filter: grayscale(0);
    opacity: 1;
}

@keyframes partnersMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.certs-showcase {
    position: relative;
    z-index: 3;
    background: #ffffff;
    /* Sit a bit higher above partners; keep logos clear of contact bleed */
    margin-top: clamp(-36px, -3.5vw, -20px);
    padding: clamp(72px, 9vw, 110px) 0 clamp(176px, 18vw, 232px);
    margin-bottom: clamp(-104px, -10.5vw, -72px);
    border-top: none;
}

.certs-showcase-inner {
    width: min(920px, 100%);
    margin: 0 auto;
    padding: 0 var(--gutter);
    text-align: center;
}

.certs-showcase-title {
    font-family: var(--font-display);
    font-weight: var(--weight-title);
    font-size: var(--text-h2);
    line-height: var(--lh-title);
    letter-spacing: var(--tracking-title);
    color: #0d1117;
    margin-bottom: clamp(14px, 2vw, 18px);
}

.certs-showcase-lead {
    font-family: var(--font-body);
    font-weight: var(--weight-body);
    font-size: var(--text-lead);
    line-height: var(--lh-lead);
    color: rgba(13, 17, 23, 0.58);
    max-width: 58ch;
    margin: 0 auto clamp(40px, 5vw, 56px);
}

.certs-showcase-grid {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(20px, 4vw, 40px);
    margin: 0;
    padding: 48px 0 0;
    overflow: visible;
}

.certs-showcase-grid > li {
    position: relative;
    overflow: visible;
    z-index: 1;
}

.certs-showcase-grid > li:hover,
.certs-showcase-grid > li:focus-within {
    z-index: 8;
}

.certs-showcase-item {
    position: relative;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: help;
    overflow: visible;
}

.certs-showcase-item img {
    width: clamp(88px, 12vw, 120px);
    height: clamp(88px, 12vw, 120px);
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.72;
    transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.certs-showcase-item:hover img,
.certs-showcase-item:focus-visible img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.04);
}

.certs-showcase-item::after {
    content: attr(data-tip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 14px);
    z-index: 12;
    width: max-content;
    max-width: min(240px, 72vw);
    padding: 11px 13px;
    border-radius: 8px;
    border: 1px solid rgba(13, 17, 23, 0.08);
    background: #ffffff;
    color: #0d1117;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.4;
    text-align: center;
    box-shadow:
        0 2px 6px rgba(13, 17, 23, 0.06),
        0 14px 36px rgba(13, 17, 23, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.certs-showcase-item::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);
    z-index: 13;
    width: 10px;
    height: 10px;
    border-right: 1px solid rgba(13, 17, 23, 0.08);
    border-bottom: 1px solid rgba(13, 17, 23, 0.08);
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 8px) rotate(45deg);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.certs-showcase-item:hover::after,
.certs-showcase-item:hover::before,
.certs-showcase-item:focus-visible::after,
.certs-showcase-item:focus-visible::before {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.certs-showcase-item:hover::before,
.certs-showcase-item:focus-visible::before {
    transform: translate(-50%, 0) rotate(45deg);
}

.certs-showcase-item:focus {
    outline: none;
}

.certs-showcase-item:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 4px;
    border-radius: 8px;
}

.certs-showcase-item figcaption {
    font-family: var(--font-display);
    font-size: var(--text-eyebrow);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(13, 17, 23, 0.45);
}

.site-footer--ink .certs-showcase-item::after,
.site-footer--ink .certs-showcase-item::before {
    background: #111111;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.12);
}

.site-footer--ink .certs-showcase-item::after {
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
}

.site-footer--ink .certs-showcase-item::before {
    border-right-color: rgba(255, 255, 255, 0.12);
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

@media (hover: none) {
    .certs-showcase-item:focus::after,
    .certs-showcase-item:focus::before {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
    }

    .certs-showcase-item:focus::before {
        transform: translate(-50%, 0) rotate(45deg);
    }
}

@media (max-width: 900px) {
    .certs-showcase {
        margin-top: 0;
        padding: 108px 0 160px;
        margin-bottom: -24px;
    }

    .certs-showcase-inner {
        padding: 0 20px;
    }

    .certs-showcase-title {
        font-size: clamp(1.75rem, 7vw, 2.2rem);
        line-height: 1.15;
        letter-spacing: -0.03em;
        margin: 0 auto 16px;
        max-width: 16ch;
    }

    .certs-showcase-lead {
        font-size: 1rem;
        line-height: 1.5;
        max-width: 28ch;
        margin: 0 auto 40px;
        color: rgba(13, 17, 23, 0.55);
    }

    .certs-showcase-grid {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: flex-start;
        gap: 10px;
        max-width: none;
        margin: 0 auto;
        width: 100%;
        padding-top: 28px;
    }

    .certs-showcase-grid > li {
        flex: 0 0 auto;
    }

    .certs-showcase-item {
        gap: 8px;
        min-width: 0;
        width: auto;
    }

    .certs-showcase-item img {
        width: 96px;
        max-width: 96px;
        height: auto;
        aspect-ratio: 1;
    }

    .certs-showcase-item figcaption {
        font-size: 0.66rem;
        letter-spacing: 0.05em;
        line-height: 1.25;
    }
}

@media (max-width: 480px) {
    .certs-showcase {
        padding: 100px 0 148px;
        margin-bottom: -16px;
    }

    .certs-showcase-inner {
        padding: 0 14px;
    }

    .certs-showcase-title {
        font-size: clamp(1.7rem, 7.5vw, 2.05rem);
        margin-bottom: 14px;
    }

    .certs-showcase-lead {
        font-size: 0.98rem;
        margin-bottom: 28px;
        max-width: 24ch;
    }

    .certs-showcase-grid {
        gap: 6px;
        padding-top: 22px;
    }

    .certs-showcase-item {
        gap: 7px;
    }

    .certs-showcase-item img {
        width: 88px;
        max-width: 88px;
    }

    .certs-showcase-item figcaption {
        font-size: 0.6rem;
        letter-spacing: 0.04em;
    }
}

@media (max-width: 380px) {
    .certs-showcase-grid {
        gap: 4px;
    }

    .certs-showcase-item img {
        width: 78px;
        max-width: 78px;
    }

    .certs-showcase-item figcaption {
        font-size: 0.56rem;
    }
}

.page-end {
    position: relative;
}

.page-end-cta {
    position: relative;
    z-index: 4;
    width: min(920px, calc(100% - var(--gutter) * 2));
    margin: clamp(-56px, -5vw, -40px) auto 0;
}

.page-end-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: clamp(22px, 3vw, 32px) clamp(24px, 4vw, 40px);
    background: #ffffff;
    border: 1px solid var(--slate-100);
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(13, 17, 23, 0.1);
}

.page-end-cta-text {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    letter-spacing: -0.02em;
    color: #0d1117;
}

.page-end-cta-btn {
    flex-shrink: 0;
}

.page-end .footer {
    padding-top: 0;
}

.footer--corp {
    position: relative;
    overflow: hidden;
}

.footer--corp::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 100% 0%, rgba(227, 6, 19, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 0% 100%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer--corp > .container,
.footer--corp > .footer-cta {
    position: relative;
    z-index: 1;
}

.footer-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    gap: clamp(28px, 5vw, 56px);
    align-items: start;
    padding: clamp(40px, 6vw, 64px) 0 clamp(28px, 4vw, 40px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo--original {
    margin-bottom: 18px;
}

.footer-logo-img--hero {
    height: clamp(40px, 5vw, 52px);
    width: auto;
    opacity: 0.95;
}

.footer-tagline--hero {
    max-width: 42ch;
    font-size: clamp(14px, 1.6vw, 16px);
    margin-bottom: 20px;
}

.footer-social-showcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.footer-social-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    text-decoration: none;
    color: inherit;
    transition:
        border-color 0.22s ease,
        background 0.22s ease,
        transform 0.22s ease;
}

.footer-social-card:hover {
    border-color: rgba(227, 6, 19, 0.45);
    background: rgba(227, 6, 19, 0.08);
    transform: translateY(-2px);
}

.footer-social-card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    display: grid;
    place-items: center;
    transition: background 0.22s ease;
}

.footer-social-card:hover .footer-social-card-icon {
    background: var(--red);
}

.footer-social-card-copy {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-social-card-copy strong {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}

.footer-social-card-copy span {
    font-family: var(--font-body);
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.42);
}

.footer-social-card-arrow {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.28);
    transition: color 0.22s ease, transform 0.22s ease;
}

.footer-social-card:hover .footer-social-card-arrow {
    color: var(--red);
    transform: translate(2px, -2px);
}

.footer-stats {
    list-style: none;
    margin: 0;
    padding: clamp(24px, 4vw, 36px) 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(12px, 2vw, 24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-stats li {
    padding: clamp(16px, 2.5vw, 22px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
}

.footer-stats strong {
    display: block;
    margin-bottom: 6px;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
}

.footer-stats span {
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 300;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.45);
}

.footer-col-title--spaced {
    margin-top: 28px;
}

.footer-map-section {
    padding: clamp(36px, 5vw, 52px) 0 clamp(12px, 2vw, 20px);
}

.footer-map-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: clamp(18px, 3vw, 24px);
}

.footer-map-eyebrow {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red);
}

.footer-map-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.2vw, 1.65rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
}

.footer-map-open {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-map-open:hover {
    color: #fff;
}

.footer-map-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 9;
    min-height: 280px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.footer-map-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.footer-newsletter {
    margin-top: 8px;
}

@media (max-width: 1100px) {
    .footer-hero {
        grid-template-columns: 1fr;
    }

    .footer-social-showcase {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 640px) {
    .footer-social-showcase {
        grid-template-columns: 1fr;
    }

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

    .footer-map-frame {
        aspect-ratio: 4 / 3;
        min-height: 240px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-made {
        order: 3;
    }
}

@media (max-width: 420px) {
    .footer-stats {
        grid-template-columns: 1fr;
    }
}

.footer-main--compact {
    grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
}

.footer-copy--inline {
    margin: 12px 0 0;
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.38);
}

.footer-address--compact {
    margin-top: 18px;
    margin-bottom: 0;
}

@media (max-width: 960px) {
    .partners {
        padding: 108px 0 100px;
        overflow: hidden;
    }

    .partners-inner {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding-left: 20px;
        padding-right: 20px;
        gap: 0;
    }

    .partners-copy {
        display: block;
        align-self: stretch;
        order: 1;
        text-align: center;
    }

    .partners-title {
        order: unset;
        font-size: clamp(1.85rem, 7.5vw, 2.35rem);
        line-height: 1.12;
        letter-spacing: -0.03em;
        margin: 0 auto 14px;
        max-width: none;
        text-align: center;
    }

    .partners-lead {
        order: unset;
        font-size: 1rem;
        line-height: 1.4;
        max-width: none;
        margin: 0 auto;
        text-align: center;
        color: rgba(13, 17, 23, 0.55);
    }

    .partners-lead__l1,
    .partners-lead__l2 {
        display: block;
        white-space: nowrap;
    }

    /* Mobile: infinite logo marquee, no frames */
    .partners-marquee {
        order: 2;
        margin-top: 44px;
        margin-bottom: 8px;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        overflow: hidden;
        mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
        -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
        align-self: stretch;
    }

    .partners-marquee-track {
        display: flex;
        width: max-content;
        align-items: center;
        gap: 40px;
        animation: partnersMarquee 28s linear infinite;
        will-change: transform;
    }

    .partners-marquee:hover .partners-marquee-track {
        animation-play-state: paused;
    }

    .partners-logos.partners-logos--clone {
        display: flex;
    }

    .partners-logos {
        display: flex;
        align-items: center;
        gap: 40px;
        flex-shrink: 0;
        width: auto;
        grid-template-columns: none;
    }

    .partners-logos li {
        flex-shrink: 0;
        min-height: 0;
        padding: 0;
        border: none;
        border-radius: 0;
        background: none;
        box-shadow: none;
    }

    .partners-logos li:hover {
        border: none;
        box-shadow: none;
        transform: none;
    }

    .partners-logos img {
        height: auto;
        max-height: none;
        width: auto;
        max-width: none;
        filter: none;
        opacity: 0.88;
    }

    .partners-logo--vsd img {
        height: 48px;
        max-height: none;
        max-width: none;
    }

    .partners-logo--spp img {
        height: 50px;
        max-height: none;
        max-width: none;
    }

    .partners-logo--zse img {
        height: 26px;
        max-height: none;
        max-width: none;
    }

    .partners-logo--vvs img {
        height: 48px;
        max-height: none;
        max-width: none;
    }

    .partners-logos li:hover img {
        filter: none;
        opacity: 1;
    }

    .partners-cta {
        order: 3;
        flex: 0 0 auto;
        align-self: center;
        justify-self: center;
        width: auto;
        min-width: 0;
        margin-top: 44px;
        min-height: 48px;
        padding: 14px 22px;
    }

    .footer-main--compact {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .partners {
        padding: 100px 0 88px;
    }

    .partners-inner {
        padding-left: 18px;
        padding-right: 18px;
    }

    .partners-title {
        font-size: clamp(1.65rem, 7.2vw, 2.05rem);
        max-width: none;
        margin: 0 auto 12px;
        text-align: center;
    }

    .partners-lead {
        font-size: clamp(0.9rem, 3.7vw, 0.98rem);
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        line-height: 1.4;
    }

    .partners-marquee {
        margin-top: 40px;
        margin-bottom: 6px;
    }

    .partners-marquee-track,
    .partners-logos {
        gap: 32px;
    }

    .partners-logo--vsd img {
        height: 44px;
    }

    .partners-logo--spp img {
        height: 44px;
    }

    .partners-logo--zse img {
        height: 22px;
    }

    .partners-logo--vvs img {
        height: 44px;
    }

    .partners-cta {
        margin-top: 40px;
        min-height: 46px;
    }

    .page-end-cta-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .page-end-cta-btn {
        width: 100%;
    }

    .footer-main--compact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 960px) and (prefers-reduced-motion: reduce) {
    .partners-marquee-track {
        animation: none;
        flex-wrap: wrap;
        width: 100%;
        justify-content: flex-start;
        gap: 28px;
        padding: 0 16px;
    }

    .partners-logos.partners-logos--clone {
        display: none;
    }

    .partners-marquee {
        width: 100%;
        margin-left: 0;
        mask-image: none;
        -webkit-mask-image: none;
        overflow: visible;
    }
}

/* ---------- SECTION 4 — EXPERTISE ---------- */
/* ═══════════════════════════════════════════════════════════
   SECTION 4 — EXPERTISE
═══════════════════════════════════════════════════════════ */
.expertise {
    position: relative;
    z-index: 1;
    background: #ffffff;
    padding: 0;
    color: #0d1117;
}

.exp-container {
    max-width: none;
    padding: 0;
}

.exp-board {
    --exp-content-inset: max(
        calc(var(--nav-gutter) + var(--content-offset)),
        calc((100vw - var(--nav-container)) / 2 + var(--nav-gutter) + var(--content-offset))
    );
    --exp-right-inset: clamp(32px, 4vw, 52px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(40vh, 1fr) auto;
    min-height: clamp(560px, 80vh, 820px);
    gap: 2px;
    background: var(--slate-100);
}

.exp-cell {
    min-height: 0;
    min-width: 0;
}

.exp-cell--intro {
    grid-column: 1;
    grid-row: 1;
    background: #ffffff;
    padding:
        clamp(28px, 4vw, 48px)
        clamp(24px, 3vw, 40px)
        clamp(28px, 4vw, 48px)
        var(--exp-content-inset);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    overflow: auto;
}

.exp-cell--intro .exp-intro-title {
    opacity: 1;
    transform: none;
    margin: 0;
    max-width: 14ch;
}

.exp-cell--proj {
    grid-column: 1;
    grid-row: 1;
}

.exp-cell--inz {
    grid-column: 2;
    grid-row: 1;
}

.exp-cell--inz-sub {
    grid-column: 1 / -1;
    grid-row: 2;
    background: #ffffff;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: clamp(32px, 5vw, 56px);
    padding:
        clamp(32px, 4vw, 52px)
        clamp(24px, 3vw, 40px)
        clamp(32px, 4vw, 52px)
        var(--exp-right-inset);
}

.exp-cell--inz-sub .exp-sub-col {
    min-width: 0;
    padding: 0;
}

/* ── Sub‑services (in board cells) ───────── */
.exp-sub-label {
    margin: 0 0 14px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red);
}

.exp-sub-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.exp-sub-link {
    display: block;
    padding: 11px 0;
    border-bottom: 1px solid var(--slate-200);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
    color: rgba(13, 17, 23, 0.78);
    transition: color 0.15s ease;
}

.exp-sub-link:hover {
    color: var(--red);
}

.exp-sub-more {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
    overflow: hidden;
}

.exp-sub-more.open {
    grid-template-rows: 1fr;
}

.exp-sub-more > ul {
    min-height: 0;
    overflow: hidden;
}

.exp-sub-toggle {
    margin-top: 10px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    transition: opacity 0.15s ease;
}

.exp-sub-toggle:hover {
    opacity: 0.7;
}

.exp-cell--proj,
.exp-cell--inz {
    padding: 0;
    overflow: hidden;
}

.exp-board .exp-item {
    aspect-ratio: unset;
    height: 100%;
    width: 100%;
    border-radius: 0;
    border: none;
    box-shadow: none;
    display: block;
}

.exp-board .exp-item:hover {
    transform: none;
    box-shadow: none;
}

.exp-board .exp-thumb {
    inset: 0;
}

.exp-board .exp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    transform: scale(1.06);
    transform-origin: center;
    filter: brightness(1.06) contrast(1.04);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.exp-board .exp-item:hover .exp-thumb img {
    transform: scale(1.1);
}

.exp-board .exp-info {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding:
        clamp(22px, 3.2vw, 40px)
        clamp(24px, 3vw, 40px)
        clamp(28px, 4vw, 48px);
    background: linear-gradient(
        to top,
        rgba(13, 17, 23, 0.72) 0%,
        rgba(13, 17, 23, 0.28) 52%,
        transparent 100%
    );
}

.exp-cell--inz .exp-info {
    padding-left: var(--exp-content-inset);
}

.exp-cell--proj .exp-info {
    padding-left: var(--exp-right-inset);
}

.exp-board .exp-claim {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.15rem, 2vw, 1.65rem);
    line-height: 1.15;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
    max-width: 20ch;
    margin: 0 0 clamp(18px, 2.5vw, 24px);
}

.exp-board .exp-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    background: #ffffff;
    color: var(--red);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease, gap 0.2s ease;
}

.exp-board .exp-cta-icon {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.exp-board .exp-item:hover .exp-cta-btn {
    background: var(--red);
    color: #ffffff;
    gap: 14px;
}

.exp-board .exp-item:hover .exp-cta-icon {
    transform: translateX(2px);
}

.exp-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
    aspect-ratio: 4 / 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.exp-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}

.exp-thumb {
    position: absolute;
    inset: 0;
    margin: 0;
}

.exp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.55;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}

.exp-item:hover .exp-thumb img {
    transform: scale(1.07);
    opacity: 0.45;
}

.exp-info {
    position: relative;
    z-index: 1;
    padding: clamp(18px, 3vw, 32px);
}

.exp-num {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.55);
    display: block;
    margin-bottom: 10px;
}

.exp-claim {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.2rem, 2.1vw, 1.75rem);
    line-height: 1.12;
    letter-spacing: -0.4px;
    color: #ffffff;
    max-width: 18ch;
    margin: 0 0 clamp(16px, 2.5vw, 22px);
}

.exp-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--btn-pad-y) var(--btn-pad-x);
    background: var(--red);
    color: #ffffff;
    border: 1.5px solid var(--red);
    border-radius: var(--btn-radius);
    font-family: var(--font-display);
    font-size: var(--btn-font-size);
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1;
    transition: background 0.22s var(--btn-ease),
                border-color 0.22s var(--btn-ease),
                color 0.22s var(--btn-ease);
}

.exp-item:hover .exp-cta-btn {
    background: #ffffff;
    border-color: var(--red);
    color: var(--red);
}

.exp-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.25rem, 2.2vw, 1.9rem);
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin-bottom: 10px;
}

.exp-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.65);
    max-width: 40ch;
    margin-bottom: 18px;
    display: none;
}

.exp-item:hover .exp-desc {
    display: block;
}

.exp-link {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.25s ease;
}

.exp-link span {
    color: var(--red);
    transition: transform 0.3s ease;
    display: inline-block;
}

.exp-item:hover .exp-link {
    gap: 14px;
}

.exp-item:hover .exp-link span {
    transform: translateX(4px);
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 820px) {
    .exp-board {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        min-height: 0;
        gap: 2px;
    }

    .exp-cell--proj,
    .exp-cell--inz,
    .exp-cell--inz-sub {
        grid-column: 1;
        grid-row: auto;
    }

    .exp-cell--proj .exp-info {
        padding-left: max(
            calc(var(--gutter) + var(--content-offset)),
            calc((100vw - var(--nav-container)) / 2 + var(--nav-gutter) + var(--content-offset))
        );
    }

    .exp-cell--inz-sub {
        grid-template-columns: 1fr;
        gap: clamp(32px, 6vw, 48px);
        padding:
            clamp(28px, 6vw, 40px)
            var(--gutter);
    }

    .exp-cell--inz-sub .exp-sub-col {
        max-width: none;
        padding: 0
            0
            0
            max(
                calc(var(--gutter) + var(--content-offset)),
                calc((100vw - var(--nav-container)) / 2 + var(--nav-gutter) + var(--content-offset))
            );
    }

    .exp-board .exp-item {
        min-height: clamp(320px, 58vw, 440px);
    }
}

/* ---------- SECTION 5 — PROCESS ---------- */
.process {
    background: #000000;
    padding: clamp(48px, 6vw, 80px) 0;
}

.process-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: clamp(20px, 4vw, 48px);
    margin-bottom: clamp(32px, 5vw, 56px);
}

.process-header .eyebrow {
    color: #e30613;
    margin-bottom: 12px;
}

.process-title {
    font-family: var(--font-display);
    font-weight: var(--weight-title);
    font-size: clamp(1.75rem, 3.2vw, 2.75rem);
    line-height: 1.06;
    letter-spacing: -1.2px;
    color: #ffffff;
    grid-column: 1;
    margin-top: 0;
}

.process-sub {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(0.95rem, 1.15vw, 1.05rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    max-width: 44ch;
    grid-column: 2;
    justify-self: end;
    text-align: right;
    padding-bottom: 4px;
    padding-left: clamp(24px, 5vw, 72px);
}

.proc-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}

.proc-rail {
    position: relative;
}

.proc-swipe {
    display: none;
}

.proc-item {
    padding-right: clamp(16px, 2.5vw, 36px);
    transition: opacity 0.3s ease;
}

.proc-list:has(.proc-item:hover) .proc-item:not(:hover) {
    opacity: 0.4;
}

.proc-top {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.proc-divider {
    display: block;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin-top: 12px;
    width: calc(100% + clamp(16px, 2.5vw, 36px));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.proc-divider--last {
    width: 100%;
}

.proc-item.is-visible .proc-divider {
    transform: scaleX(1);
}

.proc-num {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #e30613;
}

.proc-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(0.95rem, 1.4vw, 1.2rem);
    line-height: 1.2;
    letter-spacing: -0.3px;
    color: #ffffff;
    margin-bottom: 8px;
}

.proc-desc {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.5);
    padding-right: 4px;
}

/* ═══════════════════════════════════════════════════════════
   SECTION — FULL-BLEED BREAK (brake.jpg)
═══════════════════════════════════════════════════════════ */
.site-break {
    position: relative;
    isolation: isolate;
    width: 100%;
    min-height: clamp(640px, 88svh, 980px);
    overflow: hidden;
    background: #000000;
    color: #ffffff;
}

.site-break__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    z-index: 0;
}

.site-break__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(
            ellipse 70% 58% at 50% 48%,
            rgba(0, 0, 0, 0.52) 0%,
            rgba(0, 0, 0, 0.28) 58%,
            rgba(0, 0, 0, 0.18) 100%
        );
}

.site-break__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    min-height: clamp(640px, 88svh, 980px);
    width: min(var(--nav-container), 100%);
    margin: 0 auto;
    padding:
        clamp(40px, 5vw, 64px)
        var(--section-rail-right)
        clamp(16px, 2.2vw, 28px)
        var(--section-rail-left);
    gap: clamp(24px, 3.5vw, 40px);
}

.site-break__hero {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: calc(100% - var(--section-rail-left) - var(--section-rail-right));
    max-width: 100%;
    gap: 24px;
    margin: 0;
    padding: 0;
    z-index: 3;
}

.site-break__title {
    margin: 0;
    font-family: "Barlow Condensed", "Helvetica Neue Condensed Black", "Arial Narrow", sans-serif;
    font-weight: 800;
    font-size: clamp(3.4rem, 7.2vw, 6.4rem);
    line-height: 0.94;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #f4f1ea;
}

.site-break__title span {
    display: block;
}

.site-break__lead {
    margin: 0;
    max-width: 28rem;
    font-size: var(--text-lead);
    line-height: var(--lh-lead);
    color: rgba(244, 241, 234, 0.82);
}

.site-break .btn-primary {
    align-self: center;
}

.site-break .btn-primary:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--red);
}

@media (max-width: 860px) {
    .site-break {
        min-height: clamp(560px, 82svh, 820px);
    }

    .site-break__img {
        object-position: center 16%;
    }

    .site-break__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.28) 0%,
                rgba(0, 0, 0, 0.42) 42%,
                rgba(0, 0, 0, 0.62) 100%
            );
    }

    .site-break__inner {
        min-height: clamp(560px, 82svh, 820px);
        justify-content: flex-end;
        align-items: center;
        gap: 22px;
        padding:
            calc(40px + env(safe-area-inset-top, 0px))
            20px
            calc(16px + env(safe-area-inset-bottom, 0px));
    }

    .site-break__hero {
        width: calc(100% - 40px);
        gap: 20px;
        padding-top: 0;
    }

    .site-break__title {
        font-size: clamp(2.7rem, 11.5vw, 3.8rem);
        line-height: 0.95;
        letter-spacing: 0.045em;
        width: max-content;
        max-width: 100%;
    }

    .site-break__title span {
        display: block;
        white-space: nowrap;
    }

    .site-break__title span + span {
        margin-top: 0.04em;
    }

    .site-break__lead {
        margin: 18px 0 26px;
        max-width: none;
        width: max-content;
        max-width: 100%;
        font-size: clamp(0.95rem, 3.8vw, 1.05rem);
        line-height: 1.4;
        white-space: nowrap;
        color: rgba(255, 255, 255, 0.78);
    }

    .site-break .btn,
    .site-break .btn-primary {
        flex: 0 0 auto;
        align-self: center;
        width: auto;
        max-width: none;
        min-height: 48px;
        padding: 14px 24px;
    }
}

@media (max-width: 480px) {
    .site-break__inner {
        padding:
            calc(64px + env(safe-area-inset-top, 0px))
            18px
            calc(48px + env(safe-area-inset-bottom, 0px));
    }

    .site-break__title {
        font-size: clamp(2.45rem, 11.8vw, 3.2rem);
        letter-spacing: 0.04em;
    }

    .site-break__lead {
        margin: 16px 0 24px;
        font-size: clamp(0.88rem, 3.6vw, 0.98rem);
    }
}

/* ═══════════════════════════════════════════════════════════
   SECTION — SHOWCASE (referencie)
═══════════════════════════════════════════════════════════ */
.showcase {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    margin-top: 0;
    padding: clamp(96px, 12vw, 148px) 0;
    border-top: 1px solid var(--slate-100);
}

.showcase-deco {
    position: absolute;
    left: 0;
    top: 50%;
    width: clamp(960px, 150vh, 1800px);
    height: clamp(960px, 150vh, 1800px);
    border-radius: 50%;
    background: var(--slate-100);
    transform: translate(-62%, -50%);
    pointer-events: none;
    user-select: none;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 0.78;
}

.showcase-deco-k {
    width: clamp(480px, 62vw, 1100px);
    max-width: none;
    height: auto;
    object-fit: contain;
    opacity: 0.7;
    transform: translate(8%, -2%);
}

.showcase .container,
.showcase .showcase-head-wrap,
.showcase .showcase-rail,
.showcase .showcase-foot {
    position: relative;
    z-index: 1;
}

.showcase-head-wrap {
    max-width: none;
    width: 100%;
    margin: 0;
    padding-left: var(--section-rail-left);
    padding-right: var(--section-rail-right);
}

.showcase-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(24px, 4vw, 48px);
    margin-bottom: clamp(36px, 5vw, 56px);
}

.showcase-head-main {
    flex: 1;
    min-width: 0;
    max-width: 640px;
}

.showcase-title-light {
    color: var(--red);
}

.showcase .section-title {
    color: #0d1117;
    font-weight: var(--weight-title-feature);
}

.showcase-lead {
    margin: clamp(12px, 1.8vw, 18px) 0 0;
    font-family: var(--font-body);
    font-weight: var(--weight-body);
    font-size: var(--text-lead);
    line-height: var(--lh-lead);
    color: rgba(13, 17, 23, 0.58);
}

.showcase-head-cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: rgba(13, 17, 23, 0.55);
    text-decoration: none;
    border-bottom: 1px solid rgba(13, 17, 23, 0.22);
    padding-bottom: 2px;
    white-space: nowrap;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.showcase-head-cta:hover {
    color: var(--red);
    border-bottom-color: var(--red);
}

.showcase-head-cta-ic {
    display: none;
}

.showcase-rail {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.4vw, 16px);
    padding-left: var(--section-rail-left);
    padding-right: var(--section-rail-right);
    margin-bottom: clamp(20px, 3vw, 28px);
}

.showcase-viewport-wrap {
    position: relative;
    flex: 1;
    min-width: 0;
}

.showcase-viewport {
    position: relative;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    --showcase-gap: clamp(14px, 1.6vw, 20px);
    --showcase-visible: 2.35;
}

.showcase-track {
    display: flex;
    gap: var(--showcase-gap);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    padding-right: var(--showcase-gap);
}

.showcase-item {
    flex: 0 0 calc((100% - (var(--showcase-visible) - 1) * var(--showcase-gap)) / var(--showcase-visible));
    height: clamp(340px, 44vh, 480px);
    border-radius: 18px;
    overflow: hidden;
    border: none;
    background: var(--slate-100);
    box-shadow:
        0 4px 24px rgba(13, 17, 23, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.04) inset;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.showcase-item:hover {
    transform: translateY(-4px);
    box-shadow:
        0 20px 48px rgba(13, 17, 23, 0.16),
        0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.showcase-media {
    position: relative;
    display: block;
    height: 100%;
    min-height: 0;
    text-decoration: none;
    color: inherit;
}

.showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.showcase-media-cap {
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 28px 24px 22px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(13, 17, 23, 0.28) 28%,
        rgba(13, 17, 23, 0.78) 100%
    );
    pointer-events: none;
}

.showcase-media-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 6px;
    border-radius: 50%;
    background: rgba(227, 6, 19, 0.95);
    color: #fff;
    box-shadow: 0 6px 18px rgba(227, 6, 19, 0.35);
}

.showcase-media-icon svg,
.showcase-media-icon i {
    width: 24px;
    height: 24px;
}

.showcase-media-tag {
    align-self: flex-start;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(227, 6, 19, 0.9);
    padding: 6px 12px;
    border-radius: 999px;
}

.showcase-media-title {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.45rem, 2.6vw, 1.85rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #fff;
    text-wrap: balance;
}

.showcase-media-meta {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
}

.showcase-item--claim .showcase-media-title {
    max-width: 18ch;
}

.showcase-media:hover img {
    transform: scale(1.05);
}

.showcase-nav {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid var(--slate-200);
    border-radius: 50%;
    background: #fff;
    color: #0d1117;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 4px 18px rgba(13, 17, 23, 0.08);
}

.showcase-nav--next {
    position: absolute;
    right: clamp(14px, 2vw, 24px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.showcase-nav--prev:hover:not(:disabled) {
    border-color: rgba(227, 6, 19, 0.35);
    color: var(--accent-red, #e30613);
    transform: scale(1.04);
}

.showcase-nav--next:hover:not(:disabled) {
    border-color: rgba(227, 6, 19, 0.35);
    color: var(--accent-red, #e30613);
    transform: translateY(-50%) scale(1.04);
}

.showcase-nav:disabled {
    opacity: 0.3;
    cursor: default;
}

.showcase-nav:focus-visible {
    outline: 2px solid var(--accent-red, #e30613);
    outline-offset: 2px;
}

.showcase-dots {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
}

.showcase-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 0;
    max-width: none;
    width: 100%;
    margin: 0;
    padding-left: var(--section-rail-left);
    padding-right: var(--section-rail-right);
}

.showcase-foot-note {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: rgba(13, 17, 23, 0.42);
}

.showcase-foot-accent {
    background: linear-gradient(90deg, var(--red) 0%, #ff6b52 55%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
}

.showcase-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: var(--slate-200);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.showcase-dot.is-active {
    width: 28px;
    background: var(--accent-red, #e30613);
}

.showcase-dot:focus-visible {
    outline: 2px solid var(--accent-red, #e30613);
    outline-offset: 2px;
}

@media (max-width: 960px) {
    .showcase {
        margin-top: 0;
        padding: clamp(80px, 12vw, 112px) 0;
    }

    .showcase-deco {
        display: flex;
        width: min(200vw, 1100px);
        height: min(200vw, 1100px);
        top: 8%;
        left: 0;
        transform: translate(-58%, -8%);
        opacity: 0.7;
    }

    .showcase-deco-k {
        width: min(155vw, 780px);
        transform: translate(10%, -18%);
        opacity: 0.62;
    }

    .showcase-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .showcase-head-cta {
        align-self: flex-start;
    }

    .showcase-viewport {
        --showcase-visible: 1.45;
    }

    .showcase-rail {
        gap: 8px;
    }

    .showcase-nav {
        width: 44px;
        height: 44px;
    }

    .showcase-foot {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 560px) {
    .showcase-deco {
        width: min(240vw, 920px);
        height: min(240vw, 920px);
        top: 4%;
        transform: translate(-62%, -6%);
        opacity: 0.62;
    }

    .showcase-deco-k {
        width: min(175vw, 700px);
        transform: translate(12%, -16%);
        opacity: 0.55;
    }

    .showcase-viewport {
        --showcase-visible: 1.08;
    }

    .showcase-item {
        height: clamp(300px, 72vw, 400px);
    }

    .showcase-nav--prev {
        display: none;
    }

    .showcase-foot-note {
        display: none;
    }
}

@media (min-width: 1400px) {
    .showcase-viewport {
        --showcase-visible: 2.55;
    }
}

/* ═══════════════════════════════════════════════════════════
   SECTION — INFRAŠTRUKTÚRA / RIEŠENIA
═══════════════════════════════════════════════════════════ */
.infra-showcase {
    background: linear-gradient(
        165deg,
        var(--slate-50) 0%,
        #ffffff 42%,
        var(--slate-100) 100%
    );
    padding: clamp(72px, 9vw, 120px) 0;
    border-top: 1px solid var(--slate-100);
    scroll-margin-top: calc(var(--nav-h) + 16px);
}

.infra-showcase-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    align-items: center;
    gap: clamp(24px, 4vw, 56px);
    width: min(var(--nav-container), 100%);
    margin: 0 auto;
    padding-left: max(var(--nav-gutter), calc(var(--section-rail-left) - clamp(96px, 14vw, 180px)));
    padding-right: var(--section-rail-right);
}

.infra-showcase-media {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.infra-showcase-media img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: clamp(500px, 58vw, 760px);
    object-fit: contain;
    display: block;
    margin-left: clamp(-40px, -6vw, -80px);
    filter: drop-shadow(0 24px 48px rgba(13, 17, 23, 0.08));
}

.infra-showcase-copy {
    max-width: 500px;
    margin-left: 0;
}

.infra-showcase-title {
    font-family: var(--font-display);
    font-weight: var(--weight-title);
    font-size: var(--text-h2);
    line-height: var(--lh-title);
    letter-spacing: var(--tracking-title);
    color: #0d1117;
    margin-bottom: clamp(20px, 2.5vw, 28px);
}

.infra-showcase-accent {
    background: linear-gradient(90deg, var(--red) 0%, #ff6b52 55%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.infra-showcase-lead {
    font-family: var(--font-body);
    font-weight: var(--weight-body);
    font-size: var(--text-lead);
    line-height: var(--lh-lead);
    color: rgba(13, 17, 23, 0.62);
    max-width: 46ch;
}

.infra-showcase-lead-wrap {
    max-width: 46ch;
}

.infra-showcase-lead__short {
    display: none;
}

.infra-showcase-lead-toggle {
    display: none;
}

.infra-showcase-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--btn-gap);
    margin-top: clamp(28px, 3.5vw, 40px);
    padding: var(--btn-pad-y) var(--btn-pad-x);
    background: var(--red);
    border: 1.5px solid var(--red);
    border-radius: var(--btn-radius);
    color: #ffffff;
    text-decoration: none;
    transition: background 0.22s var(--btn-ease),
                border-color 0.22s var(--btn-ease),
                color 0.22s var(--btn-ease);
    font-weight: var(--weight-ui);
}

.infra-showcase-cta:hover {
    background: #ffffff;
    border-color: var(--red);
    color: var(--red);
}

.infra-showcase-cta-text {
    font-family: var(--font-display);
    font-weight: var(--weight-ui);
    font-size: var(--btn-font-size);
    letter-spacing: 0.02em;
    line-height: 1;
    color: inherit;
}

.infra-showcase-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--icon-sm);
    height: var(--icon-sm);
    color: inherit;
    flex-shrink: 0;
    transition: transform 0.22s var(--btn-ease), color 0.22s var(--btn-ease);
}

.infra-showcase-cta-icon svg {
    width: 100%;
    height: 100%;
}

.infra-showcase-cta:hover .infra-showcase-cta-icon {
    transform: translateX(4px);
}

.infra-showcase--about {
    padding: clamp(20px, 3vw, 36px) 0 clamp(12px, 1.5vw, 20px);
}

.about-band__eyebrow {
    margin: 0 0 clamp(12px, 1.6vw, 16px);
    font-family: var(--font-body);
    font-size: var(--text-eyebrow);
    font-weight: var(--weight-ui);
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.42);
}

.about-band__title {
    margin: 0 0 clamp(16px, 2vw, 22px);
    display: block;
    font-size: 0;
    line-height: 0;
}

.about-band__logo {
    display: block;
    height: clamp(56px, 6vw, 72px);
    width: auto;
}

@media (max-width: 980px) {
    .about-band__logo {
        height: clamp(50px, 8vw, 62px);
    }
}

@media (max-width: 640px) {
    .about-band__logo {
        height: 48px;
    }
}

.infra-showcase--about .infra-showcase-inner {
    align-items: center;
    gap: clamp(24px, 4vw, 48px);
}

.infra-showcase--about .infra-showcase-media {
    justify-content: center;
    margin-left: 0;
    margin-top: 0;
    line-height: 0;
}

.infra-showcase--about .infra-showcase-media img {
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    max-height: clamp(240px, 45vw, 360px);
    margin-left: auto;
    margin-right: auto;
    border-radius: 0;
}

.infra-showcase--about .infra-showcase-copy {
    align-self: auto;
    padding-top: 0;
    margin-left: 0;
    max-width: none;
    width: 100%;
}

.infra-showcase--about .infra-showcase-title {
    margin-bottom: clamp(14px, 1.8vw, 20px);
}

.infra-showcase--about .infra-showcase-cta {
    margin-top: clamp(18px, 2.2vw, 28px);
}

.infra-showcase--about .infra-showcase-lead + .infra-showcase-lead {
    margin-top: clamp(14px, 2vw, 18px);
}

.infra-showcase--about .infra-showcase-lead {
    max-width: none;
}

@media (min-width: 1200px) {
    .infra-showcase--about .infra-showcase-inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        align-items: start;
        gap: clamp(24px, 3vw, 44px);
        padding-left: var(--section-rail-left);
        padding-right: var(--section-rail-right);
    }

    .infra-showcase--about .infra-showcase-copy {
        order: 1;
        align-self: start;
        padding-top: clamp(72px, 8vw, 120px);
        margin-top: 0;
        margin-left: 0;
        max-width: none;
    }

    .infra-showcase--about .infra-showcase-media {
        order: 2;
        justify-content: flex-start;
        margin-left: clamp(-16px, -2vw, -28px);
        margin-right: 0;
        margin-top: clamp(-28px, -3.5vw, -48px);
    }

    .infra-showcase--about .infra-showcase-media img {
        width: auto;
        max-width: calc(100% + clamp(28px, 4.5vw, 64px));
        height: auto;
        max-height: clamp(500px, 54vw, 680px);
        margin-left: 0;
        margin-right: auto;
        object-position: left center;
    }

    .infra-showcase--about .infra-showcase-title {
        font-size: clamp(1.5rem, 2.1vw, 1.9rem);
        max-width: none;
    }

    .infra-showcase--about .infra-showcase-lead {
        font-size: clamp(0.92rem, 1.05vw, 1.02rem);
        max-width: none;
    }
}

@media (min-width: 1680px) {
    .infra-showcase--about .infra-showcase-inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        align-items: start;
        gap: clamp(20px, 2.5vw, 36px);
        padding-left: var(--section-rail-left);
        padding-right: var(--section-rail-right);
    }

    .infra-showcase--about .infra-showcase-media {
        justify-content: flex-start;
        margin-left: clamp(-20px, -2.5vw, -36px);
        margin-right: 0;
        margin-top: clamp(-36px, -4vw, -64px);
    }

    .infra-showcase--about .infra-showcase-media img {
        object-position: left center;
        width: auto;
        max-width: calc(100% + clamp(40px, 6vw, 88px));
        height: auto;
        max-height: clamp(540px, 58vw, 820px);
        margin-left: 0;
        margin-right: auto;
    }

    .infra-showcase--about .infra-showcase-copy {
        align-self: start;
        padding-top: clamp(88px, 9vw, 140px);
        margin-left: 0;
        max-width: 520px;
    }

    .infra-showcase--about .infra-showcase-title {
        font-size: var(--text-h2);
    }

    .infra-showcase--about .infra-showcase-lead {
        font-size: var(--text-lead);
    }
}

@media (max-width: 1199px) {
    .infra-showcase--about .infra-showcase-inner {
        grid-template-columns: 1fr;
        grid-template-areas:
            "head"
            "media"
            "body";
        gap: clamp(18px, 4vw, 28px);
        padding-left: var(--section-rail-left);
        padding-right: var(--section-rail-right);
    }

    .infra-showcase--about .infra-showcase-copy {
        display: contents;
    }

    .infra-showcase--about .about-band__head {
        grid-area: head;
    }

    .infra-showcase--about .infra-showcase-media {
        grid-area: media;
        justify-content: center;
        margin: 0;
    }

    .infra-showcase--about .about-band__body {
        grid-area: body;
    }

    .infra-showcase--about .infra-showcase-media img {
        max-width: min(100%, 520px);
        max-height: clamp(260px, 42vw, 380px);
        width: auto;
        height: auto;
    }

    .infra-showcase--about .infra-showcase-title {
        font-size: clamp(1.35rem, 4vw, 1.7rem);
        max-width: none;
    }

    .infra-showcase--about .infra-showcase-lead {
        font-size: 0.94rem;
        max-width: none;
    }
}

@media (max-width: 640px) {
    .infra-showcase--about {
        padding: clamp(28px, 7vw, 40px) 0 clamp(28px, 6vw, 40px);
    }

    .infra-showcase--about .infra-showcase-inner {
        gap: 20px;
    }

    .about-band__eyebrow {
        margin-bottom: 10px;
        font-size: 0.68rem;
    }

    .about-band__title {
        margin-bottom: 0;
    }

    .about-band__logo {
        height: 44px;
    }

    .infra-showcase--about .infra-showcase-media img {
        max-height: none;
        max-width: 100%;
        width: 100%;
        height: auto;
    }

    .infra-showcase--about .about-band__body {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .infra-showcase--about .infra-showcase-lead {
        font-size: 0.95rem;
        line-height: 1.55;
        color: rgba(13, 17, 23, 0.62);
    }

    .infra-showcase--about .infra-showcase-lead + .infra-showcase-lead {
        margin-top: 14px;
    }

    .infra-showcase--about .infra-showcase-cta {
        align-self: flex-start;
        margin-top: 22px;
        min-height: 48px;
    }

    .infra-showcase--about .infra-showcase-title {
        font-size: clamp(1.5rem, 6.5vw, 2rem);
    }
}

/* Director quote — O nás */
.pledge {
    background: #ffffff;
    color: #111111;
    overflow: hidden;
    scroll-margin-top: calc(var(--nav-h) + 8px);
}

.pledge__stage {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    align-items: stretch;
    gap: clamp(28px, 4vw, 56px);
    width: min(var(--nav-container), 100%);
    margin: 0 auto;
    padding:
        clamp(56px, 7vw, 96px) var(--section-rail-right)
        0 var(--section-rail-left);
}

.pledge__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 47em;
    padding: clamp(12px, 2vw, 24px) 0;
}

.pledge__words {
    transform: translateY(calc(-1 * clamp(18px, 2.4vw, 32px)));
}

.pledge__quote {
    margin: 0;
}

.pledge__quote p {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.6vw, 3.1rem);
    font-weight: var(--weight-display);
    letter-spacing: var(--tracking-display);
    line-height: 1.08;
    color: #111111;
    text-wrap: balance;
}

.pledge__quote-accent {
    color: var(--red);
}

.pledge__body {
    margin: clamp(16px, 2.2vw, 22px) 0 0;
    max-width: 47em;
    font-family: var(--font-body);
    font-weight: var(--weight-body);
    font-size: clamp(1rem, 1.25vw, 1.12rem);
    line-height: 1.65;
    color: rgba(17, 17, 17, 0.72);
}

.pledge__body + .pledge__body {
    margin-top: clamp(12px, 1.4vw, 16px);
}

.pledge__body-strong {
    font-weight: 700;
    color: #111111;
}

.pledge__cite {
    margin: clamp(22px, 2.6vw, 32px) 0 0;
    padding: 2px 0 2px clamp(16px, 1.8vw, 22px);
    border-left: 2px solid rgba(17, 17, 17, 0.18);
    max-width: 47em;
}

.pledge__cite p {
    margin: 0;
    font-family: var(--font-body);
    font-weight: var(--weight-body);
    font-style: italic;
    font-size: clamp(0.98rem, 1.2vw, 1.08rem);
    line-height: 1.6;
    color: rgba(17, 17, 17, 0.68);
}

/* Scroll-driven text reveal — faint → full ink, line by line */
.pledge__words.is-reveal .pledge__quote p,
.pledge__words.is-reveal .pledge__body,
.pledge__words.is-reveal .pledge__cite p,
.pledge__words.is-reveal .pledge__quote-accent,
.pledge__words.is-reveal .pledge__body-strong {
    color: inherit;
}

.pledge__word {
    display: inline;
    color: rgba(17, 17, 17, calc(0.1 + var(--p, 0) * 0.9));
    will-change: color;
}

.pledge__word--accent {
    color: rgba(227, 6, 19, calc(0.14 + var(--p, 0) * 0.86));
}

.pledge__word--strong {
    font-weight: 700;
    color: rgba(17, 17, 17, calc(0.12 + var(--p, 0) * 0.88));
}

.pledge__word--cite {
    color: rgba(17, 17, 17, calc(0.1 + var(--p, 0) * 0.7));
}

@media (prefers-reduced-motion: reduce) {
    .pledge__word,
    .pledge__word--accent,
    .pledge__word--strong,
    .pledge__word--cite {
        color: inherit;
        will-change: auto;
    }

    .pledge__words.is-reveal .pledge__quote p {
        color: #111111;
    }

    .pledge__words.is-reveal .pledge__quote-accent {
        color: var(--red);
    }

    .pledge__words.is-reveal .pledge__body {
        color: rgba(17, 17, 17, 0.72);
    }

    .pledge__words.is-reveal .pledge__body-strong {
        color: #111111;
    }

    .pledge__words.is-reveal .pledge__cite p {
        color: rgba(17, 17, 17, 0.68);
    }
}

.pledge__sign {
    display: block;
    width: min(240px, 58%);
    height: auto;
    margin: clamp(22px, 3vw, 32px) 0 14px;
    filter: invert(1);
    user-select: none;
    pointer-events: none;
}

.pledge__signoff {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pledge__person {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-family: var(--font-display);
    color: #111111;
}

.pledge__person strong {
    font-weight: 700;
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    letter-spacing: -0.02em;
}

.pledge__person span {
    font-weight: 300;
    font-size: 0.88rem;
    color: #6a6a6a;
}

.pledge__photo {
    margin: 0;
    line-height: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.pledge__photo img {
    display: block;
    width: min(100%, 680px);
    height: auto;
    max-height: clamp(520px, 72vw, 820px);
    object-fit: contain;
    object-position: bottom right;
    user-select: none;
}

.pledge__inner {
    width: min(var(--nav-container), 100%);
    margin: 0 auto;
    padding:
        0 var(--section-rail-right)
        clamp(56px, 7vw, 88px) var(--section-rail-left);
}

.pledge-qa {
    background:
        linear-gradient(180deg, #eef1f5 0%, #f5f7f9 42%, #f5f7f9 100%);
    color: #111111;
    border-top: 1px solid rgba(17, 17, 17, 0.06);
}

.pledge-qa__inner {
    width: min(var(--nav-container), 100%);
    margin: 0 auto;
    padding:
        clamp(56px, 7vw, 96px) var(--section-rail-right)
        clamp(64px, 8vw, 110px) var(--section-rail-left);
}

.pledge-qa__head {
    max-width: 42rem;
    margin: 0 0 clamp(32px, 4vw, 48px);
}

.pledge-qa__eyebrow {
    margin: 0 0 12px;
    font-family: var(--font-body);
    font-size: var(--text-eyebrow);
    font-weight: var(--weight-ui);
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.42);
}

.pledge-qa__title {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.18em 0.28em;
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.4vw, 2.85rem);
    font-weight: var(--weight-display);
    letter-spacing: var(--tracking-display);
    line-height: 1.08;
    color: #111111;
}

.pledge-qa__title-lead {
    display: inline;
}

.pledge-qa__title .kh-hit {
    font-size: inherit;
    font-weight: inherit;
    padding: 0.05em 0.16em 0.08em;
}

.pledge-qa__rail {
    position: relative;
}

.pledge-qa__swipe {
    display: none;
}

.pledge-qa__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.pledge-qa__item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: clamp(16px, 2vw, 24px);
    align-items: start;
    padding: clamp(28px, 3.4vw, 40px) clamp(0px, 2vw, 28px) clamp(28px, 3.4vw, 40px) 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.pledge-qa__item:nth-child(odd) {
    padding-right: clamp(20px, 3vw, 40px);
    border-right: 1px solid rgba(17, 17, 17, 0.12);
}

.pledge-qa__item:nth-child(even) {
    padding-left: clamp(20px, 3vw, 40px);
}

.pledge-qa__num {
    font-family: var(--font-display);
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    font-weight: var(--weight-ui);
    letter-spacing: 0.08em;
    line-height: 1.2;
    color: var(--red);
    padding-top: 0.2em;
}

.pledge-qa__copy h3 {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 1.35vw, 1.22rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: #111111;
}

.pledge-qa__copy p {
    margin: 0;
    font-size: clamp(0.92rem, 1.05vw, 0.98rem);
    line-height: 1.58;
    color: rgba(17, 17, 17, 0.62);
}

.pledge-qa__note {
    margin: clamp(32px, 4vw, 48px) 0 0;
    max-width: 54ch;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(17, 17, 17, 0.55);
}

.pledge-qa__note strong {
    color: #111111;
    font-weight: 600;
}

.pledge-clients {
    margin: clamp(28px, 3.6vw, 40px) 0 0;
    padding-top: 26px;
    border-top: 1px dotted rgba(17, 17, 17, 0.18);
}

.pledge-clients__label {
    margin: 0 0 16px;
    font-family: var(--font-body);
    font-size: var(--text-eyebrow);
    font-weight: var(--weight-ui);
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.42);
}

.pledge-clients__marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.pledge-clients__track {
    display: flex;
    width: max-content;
    animation: pledgeClientsMarquee 42s linear infinite;
}

.pledge-clients__marquee:hover .pledge-clients__track {
    animation-play-state: paused;
}

.pledge-clients__list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.pledge-clients__list li {
    position: relative;
    flex-shrink: 0;
    padding: 0 18px 0 16px;
    border-left: 1px solid rgba(17, 17, 17, 0.16);
}

.pledge-clients__list a {
    display: inline-block;
    white-space: nowrap;
    font-family: var(--font-body);
    font-size: clamp(0.82rem, 0.95vw, 0.9rem);
    font-weight: 500;
    line-height: 1.35;
    color: rgba(17, 17, 17, 0.62);
    text-decoration: none;
    transition: color 0.2s ease;
}

.pledge-clients__list a:hover,
.pledge-clients__list a:focus-visible {
    color: var(--red);
}

@keyframes pledgeClientsMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .pledge-clients__marquee {
        overflow-x: auto;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .pledge-clients__track {
        animation: none;
        width: auto;
    }

    .pledge-clients__list[aria-hidden="true"] {
        display: none;
    }
}

@media (max-width: 900px) {
    .pledge__stage {
        grid-template-columns: 1fr;
        grid-template-areas:
            "words"
            "signoff"
            "photo";
        gap: 0;
        padding:
            clamp(56px, 10vw, 72px) var(--section-rail-right)
            0 var(--section-rail-left);
    }

    .pledge__copy {
        display: contents;
        max-width: none;
        padding: 0;
    }

    .pledge__words {
        grid-area: words;
        transform: none;
    }

    .pledge__quote p {
        font-size: clamp(1.55rem, 7vw, 2.05rem);
        line-height: 1.12;
        letter-spacing: -0.03em;
    }

    .pledge__body {
        margin-top: 16px;
        font-size: 0.98rem;
        line-height: 1.55;
        max-width: none;
    }

    .pledge__photo {
        grid-area: photo;
        justify-content: center;
        order: unset;
        margin: 0;
        align-items: flex-end;
    }

    .pledge__photo img {
        width: min(100%, 420px);
        max-height: 480px;
        object-fit: contain;
        object-position: bottom center;
    }

    .pledge__signoff {
        grid-area: signoff;
        margin: clamp(36px, 8vw, 48px) 0 clamp(28px, 6vw, 36px);
    }

    .pledge__sign {
        width: min(200px, 52%);
        margin: 0 0 12px;
    }

    .pledge__person strong {
        font-size: 1.02rem;
    }

    .pledge__person span {
        font-size: 0.86rem;
    }

    .pledge-qa {
        overflow: hidden;
    }

    .pledge-qa__inner {
        padding:
            clamp(40px, 8vw, 56px) 0
            clamp(48px, 9vw, 64px);
    }

    .pledge-qa__head {
        margin: 0 0 24px;
        padding: 0 20px;
        max-width: none;
    }

    .pledge-qa__title {
        font-size: clamp(1.55rem, 6.8vw, 2rem);
        line-height: 1.12;
        letter-spacing: -0.03em;
        display: block;
    }

    .pledge-qa__title-lead {
        display: block;
    }

    .pledge-qa__title .kh-hit {
        display: inline-block;
        margin-top: 0.12em;
    }

    .pledge-qa__list {
        display: flex;
        grid-template-columns: none;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 20px;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
        border-top: 0;
        padding: 2px 20px 8px;
        margin: 0;
    }

    .pledge-qa__list::-webkit-scrollbar {
        display: none;
    }

    .pledge-qa__rail::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 8px;
        width: 56px;
        pointer-events: none;
        background: linear-gradient(
            90deg,
            rgba(245, 247, 249, 0) 0%,
            rgba(245, 247, 249, 0.88) 62%,
            #f5f7f9 100%
        );
        z-index: 2;
    }

    .pledge-qa__swipe {
        display: grid;
        place-items: center;
        position: absolute;
        top: 50%;
        right: 10px;
        z-index: 3;
        width: 36px;
        height: 36px;
        margin-top: -18px;
        border-radius: 50%;
        background: #ffffff;
        color: #111111;
        border: 1px solid rgba(17, 17, 17, 0.1);
        box-shadow: 0 6px 18px rgba(17, 17, 17, 0.1);
        pointer-events: none;
        animation: none;
    }

    .pledge-qa__swipe svg {
        display: block;
    }

    .pledge-qa__item,
    .pledge-qa__item:nth-child(odd),
    .pledge-qa__item:nth-child(even) {
        flex: 0 0 min(82vw, 300px);
        width: min(82vw, 300px);
        max-width: min(82vw, 300px);
        display: flex;
        flex-direction: column;
        gap: 14px;
        align-items: flex-start;
        padding: 22px 20px 20px;
        scroll-snap-align: start;
        box-sizing: border-box;
        border: 1px solid rgba(17, 17, 17, 0.1);
        border-radius: 14px;
        border-right: 1px solid rgba(17, 17, 17, 0.1);
        border-bottom: 1px solid rgba(17, 17, 17, 0.1);
        background: #ffffff;
    }

    .pledge-qa__num {
        font-size: 0.78rem;
        letter-spacing: 0.12em;
        padding-top: 0;
    }

    .pledge-qa__copy h3 {
        font-size: 1.08rem;
        margin-bottom: 8px;
    }

    .pledge-qa__copy p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .pledge-clients {
        margin-top: 40px;
        padding: 28px 0 0;
        border-top: 1px dotted rgba(17, 17, 17, 0.18);
    }

    .pledge-clients__label {
        margin: 0 0 18px;
        padding: 0 20px;
    }

    .pledge-clients__marquee {
        margin: 0;
        overflow: hidden;
        mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
        -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    }

    .pledge-clients__track {
        animation: pledgeClientsMarquee 28s linear infinite;
        width: max-content;
    }

    .pledge-clients__list[aria-hidden="true"] {
        display: flex;
    }

    .pledge-clients__list li {
        padding: 0 22px 0 20px;
    }

    .pledge-clients__list a {
        font-size: 0.92rem;
    }
}

@keyframes pledgeQaSwipe {
    0%,
    100% {
        transform: translateX(0);
        opacity: 0.88;
    }
    50% {
        transform: translateX(5px);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pledge-qa__swipe,
    .proc-swipe,
    .team-meet__swipe,
    .team-meet__more-swipe,
    .team-net__swipe {
        animation: none;
    }

    .team-meet__swipe,
    .team-meet__more-swipe,
    .team-net__swipe {
        transform: translateY(-50%);
    }
}

.director-quote__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
    width: 100%;
    min-height: 0;
}

.director-quote__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 38em;
    margin-left: 0;
    justify-self: start;
    align-self: center;
    padding:
        clamp(48px, 6vw, 80px)
        clamp(24px, 3.5vw, 48px)
        clamp(48px, 6vw, 80px)
        var(--section-rail-left);
}

.director-quote__photo {
    margin: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px clamp(24px, 5vw, 80px) 0 8px;
    overflow: visible;
}

.director-quote__text {
    margin: 0;
    max-width: 38em;
}

.director-quote__text p {
    margin: 0;
    font-family: var(--font-body);
    font-weight: var(--weight-body);
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.65;
    color: rgba(13, 17, 23, 0.82);
}

.director-quote__sign {
    display: block;
    width: min(240px, 58%);
    height: auto;
    margin: clamp(16px, 2.2vw, 24px) 0 12px;
    filter: invert(1);
    user-select: none;
    pointer-events: none;
}

.director-quote__person {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-family: var(--font-display);
    color: #0d1117;
}

.director-quote__person strong {
    font-weight: var(--weight-ui);
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    letter-spacing: -0.01em;
}

.director-quote__person span {
    font-weight: var(--weight-body);
    font-size: var(--text-caption);
    color: rgba(13, 17, 23, 0.55);
}

.director-quote__photo img {
    display: block;
    width: auto;
    height: clamp(360px, 48vw, 560px);
    max-width: min(480px, 100%);
    object-fit: contain;
    object-position: bottom right;
    user-select: none;
}

@media (max-width: 860px) {
    .director-quote__inner {
        grid-template-columns: 1fr;
        justify-items: center;
        min-height: 0;
    }

    .director-quote__copy {
        max-width: none;
        margin-left: 0;
        justify-self: stretch;
        padding: clamp(32px, 7vw, 44px) clamp(20px, 5vw, 32px) 12px;
    }

    .director-quote__photo {
        justify-content: center;
        padding: 0 20px 0;
    }

    .director-quote__photo img {
        height: clamp(280px, 72vw, 400px);
        max-width: 340px;
        object-position: bottom center;
    }

    .director-quote__sign {
        width: min(180px, 58%);
    }
}

@media (max-width: 960px) {
    .infra-showcase-inner {
        grid-template-columns: 1fr;
        gap: clamp(28px, 6vw, 40px);
        padding-left: max(var(--nav-gutter), calc(var(--section-rail-left) - clamp(48px, 8vw, 96px)));
        padding-right: var(--section-rail-right);
    }

    .infra-showcase-media {
        justify-content: center;
        margin-left: 0;
    }

    .infra-showcase-media img {
        width: 100%;
        max-height: clamp(320px, 72vw, 480px);
        margin: 0 auto;
    }

    .infra-showcase-copy {
        max-width: none;
        margin-left: 0;
    }

    .infra-showcase-lead-wrap {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 4px;
        max-width: none;
    }

    .infra-showcase-lead {
        max-width: none;
        margin: 0;
        flex: 1;
        min-width: 0;
    }

    .infra-showcase-lead__short {
        display: inline;
    }

    .infra-showcase-lead__full {
        display: none;
    }

    .infra-showcase-lead-wrap.is-open .infra-showcase-lead__short {
        display: none;
    }

    .infra-showcase-lead-wrap.is-open .infra-showcase-lead__full {
        display: inline;
    }

    .infra-showcase-lead-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: auto;
        height: auto;
        margin: 0.28em 0 0;
        padding: 4px;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: rgba(13, 17, 23, 0.42);
        cursor: pointer;
        transition: color 0.2s ease;
    }

    .infra-showcase-lead-toggle svg {
        display: block;
        width: 16px;
        height: 16px;
        transition: transform 0.25s ease;
    }

    .infra-showcase-lead-wrap.is-open .infra-showcase-lead-toggle svg {
        transform: rotate(180deg);
    }

    .infra-showcase-lead-toggle:hover,
    .infra-showcase-lead-toggle:focus-visible {
        color: var(--red);
        background: transparent;
        outline: none;
    }
}

/* ═══════════════════════════════════════════════════════════
   SECTION — SLUŽBY (route)
═══════════════════════════════════════════════════════════ */
.svc-route {
    background: #ffffff;
    border-top: 1px solid rgba(13, 17, 23, 0.06);
    color: #0d1117;
}

.svc-route__inner {
    width: min(var(--nav-container), 100%);
    margin: 0 auto;
    padding:
        clamp(72px, 9vw, 120px)
        var(--section-rail-right)
        clamp(64px, 8vw, 96px)
        var(--section-rail-left);
}

.svc-route__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(24px, 4vw, 56px);
    margin-bottom: clamp(36px, 5vw, 52px);
}

.svc-route__intro {
    max-width: 640px;
}

.svc-route__title {
    margin: 0;
    font-family: var(--font-display);
    font-weight: var(--weight-title);
    font-size: var(--text-h2);
    line-height: var(--lh-title);
    letter-spacing: var(--tracking-title);
    color: #0d1117;
}

.svc-route__head-side {
    max-width: 280px;
    text-align: right;
}

.svc-route__lead {
    margin: 0 0 14px;
    font-family: var(--font-body);
    font-size: var(--text-lead);
    line-height: var(--lh-lead);
    color: rgba(13, 17, 23, 0.5);
}

.svc-route__all {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: rgba(13, 17, 23, 0.55);
    text-decoration: none;
    border-bottom: 1px solid rgba(13, 17, 23, 0.22);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.svc-route__all:hover {
    color: var(--red);
    border-bottom-color: var(--red);
}

.svc-route__all-ic {
    display: none;
}

.svc-route__radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.svc-route__track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 28px;
}

.svc-route__line {
    position: absolute;
    top: 33px;
    left: calc(16.666% + 8px);
    right: calc(16.666% + 8px);
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(13, 17, 23, 0.12) 0%,
        rgba(13, 17, 23, 0.18) 50%,
        rgba(13, 17, 23, 0.12) 100%
    );
    pointer-events: none;
}

.svc-route__step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 0 8px 8px;
    cursor: pointer;
    text-align: center;
    transition: transform 0.25s ease;
}

.svc-route__step:hover {
    transform: translateY(-2px);
}

.svc-route__body:has(#sr-proj:focus-visible) .svc-route__step--proj .svc-route__node,
.svc-route__body:has(#sr-inz:focus-visible) .svc-route__step--inz .svc-route__node,
.svc-route__body:has(#sr-vyst:focus-visible) .svc-route__step--vyst .svc-route__node {
    outline: 2px solid var(--red);
    outline-offset: 3px;
}

.svc-route__node {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(13, 17, 23, 0.12);
    box-shadow: 0 8px 24px rgba(13, 17, 23, 0.06);
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.svc-route__node span {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: var(--weight-ui);
    letter-spacing: 0.08em;
    color: rgba(13, 17, 23, 0.45);
    transition: color 0.25s ease;
}

.svc-route__step-copy {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.svc-route__phase {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: var(--weight-ui);
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: rgba(13, 17, 23, 0.38);
    transition: color 0.25s ease;
}

.svc-route__name {
    font-family: var(--font-display);
    font-size: clamp(0.98rem, 1.35vw, 1.08rem);
    font-weight: var(--weight-nav);
    letter-spacing: -0.015em;
    line-height: 1.25;
    color: rgba(13, 17, 23, 0.48);
    transition: color 0.25s ease, font-weight 0.25s ease;
}

.svc-route__panels {
    position: relative;
    min-height: 340px;
}

.svc-route__panels-rail {
    position: relative;
}

.svc-route__swipe {
    display: none;
}

.svc-route__panel {
    display: none;
    grid-template-columns: 1.15fr 1fr;
    grid-template-rows: auto auto;
    column-gap: clamp(28px, 4vw, 56px);
    row-gap: 18px;
    align-items: start;
    padding: clamp(32px, 4vw, 48px);
    background: #ffffff;
    border: 1px solid rgba(13, 17, 23, 0.08);
    box-shadow: 0 18px 48px rgba(13, 17, 23, 0.05);
    animation: svcRouteIn 0.35s ease;
}

.svc-route__panel > .svc-route__panel-main {
    grid-column: 1;
    grid-row: 1;
}

.svc-route__panel > .svc-route__cta {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
}

.svc-route__panel > .svc-route__links {
    grid-column: 2;
    grid-row: 1 / -1;
}

.svc-route__panel-kicker {
    margin: 0 0 10px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(13, 17, 23, 0.4);
}

.svc-route__panel--proj .svc-route__panel-kicker,
.svc-route__panel--inz .svc-route__panel-kicker,
.svc-route__panel--vyst .svc-route__panel-kicker {
    color: var(--red);
}

.svc-route__panel-title {
    margin: 0;
    max-width: 20ch;
    font-family: var(--font-display);
    font-weight: var(--weight-subtitle);
    font-size: var(--text-h3);
    line-height: 1.28;
    letter-spacing: -0.02em;
    color: #0d1117;
}

.svc-route__panel-text {
    display: none;
}

.svc-route__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--btn-gap);
    font-family: var(--font-display);
    font-size: var(--btn-font-size);
    font-weight: var(--weight-ui);
    letter-spacing: 0.02em;
    color: #0d1117;
    text-decoration: none;
}

.svc-route__cta-ic {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--icon-box-md);
    height: var(--icon-box-md);
    border: 1.5px solid currentColor;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.svc-route__cta-ic svg {
    width: var(--icon-sm);
    height: var(--icon-sm);
    transition: transform 0.22s ease;
}

.svc-route__cta--proj .svc-route__cta-ic,
.svc-route__cta--inz .svc-route__cta-ic,
.svc-route__cta--vyst .svc-route__cta-ic {
    color: var(--red);
    border-color: rgba(227, 6, 19, 0.45);
}

.svc-route__cta:hover .svc-route__cta-ic svg {
    transform: translateX(2px);
}

.svc-route__cta--proj:hover .svc-route__cta-ic,
.svc-route__cta--inz:hover .svc-route__cta-ic,
.svc-route__cta--vyst:hover .svc-route__cta-ic {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.svc-route__links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(13, 17, 23, 0.08);
    padding-left: clamp(20px, 3vw, 32px);
}

.svc-route__links a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(13, 17, 23, 0.08);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: var(--weight-body);
    line-height: 1.35;
    color: rgba(13, 17, 23, 0.72);
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.svc-route__link-ic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: var(--icon-box-lg);
    height: var(--icon-box-lg);
    border: 1.5px solid rgba(13, 17, 23, 0.12);
    color: #0d1117;
    background: #f5f7f9;
}

.svc-route__link-ic svg,
.svc-route__link-ic i {
    width: var(--icon-lg);
    height: var(--icon-lg);
    stroke-width: 2;
}

.svc-route__panel--proj .svc-route__link-ic,
.svc-route__panel--inz .svc-route__link-ic,
.svc-route__panel--vyst .svc-route__link-ic {
    color: var(--red);
    border-color: rgba(227, 6, 19, 0.28);
}

.svc-route__links a > span:last-of-type {
    flex: 1;
    min-width: 0;
}

.svc-route__links li:first-child a {
    padding-top: 0;
}

.svc-route__links li:last-child a {
    border-bottom: 0;
    padding-bottom: 0;
}

.svc-route__links a::after {
    content: "";
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(-45deg);
    opacity: 0.3;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.svc-route__panel--proj .svc-route__links a:hover,
.svc-route__panel--inz .svc-route__links a:hover,
.svc-route__panel--vyst .svc-route__links a:hover {
    color: var(--red);
}

.svc-route__links a:hover {
    padding-left: 4px;
}

.svc-route__links a:hover::after {
    opacity: 1;
    transform: rotate(-45deg) translate(1px, 1px);
}

.svc-route__body:has(#sr-proj:checked) .svc-route__step--proj .svc-route__node,
.svc-route__body:has(#sr-inz:checked) .svc-route__step--inz .svc-route__node,
.svc-route__body:has(#sr-vyst:checked) .svc-route__step--vyst .svc-route__node {
    transform: scale(1.08);
    box-shadow: 0 12px 28px rgba(13, 17, 23, 0.12);
    background: var(--red);
    border-color: var(--red);
}

.svc-route__body:has(#sr-proj:checked) .svc-route__step--proj .svc-route__node span,
.svc-route__body:has(#sr-inz:checked) .svc-route__step--inz .svc-route__node span,
.svc-route__body:has(#sr-vyst:checked) .svc-route__step--vyst .svc-route__node span {
    color: #ffffff;
}

.svc-route__body:has(#sr-proj:checked) .svc-route__step--proj .svc-route__phase,
.svc-route__body:has(#sr-inz:checked) .svc-route__step--inz .svc-route__phase,
.svc-route__body:has(#sr-vyst:checked) .svc-route__step--vyst .svc-route__phase {
    color: rgba(13, 17, 23, 0.55);
}

.svc-route__body:has(#sr-proj:checked) .svc-route__step--proj .svc-route__name,
.svc-route__body:has(#sr-inz:checked) .svc-route__step--inz .svc-route__name,
.svc-route__body:has(#sr-vyst:checked) .svc-route__step--vyst .svc-route__name {
    color: #0d1117;
    font-weight: var(--weight-ui);
}

.svc-route__body:has(#sr-proj:checked) .svc-route__panel--proj,
.svc-route__body:has(#sr-inz:checked) .svc-route__panel--inz,
.svc-route__body:has(#sr-vyst:checked) .svc-route__panel--vyst {
    display: grid;
}

@keyframes svcRouteIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.svc-route__card-head {
    display: none;
}

@media (max-width: 900px) {
    .svc-route__panel {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .svc-route__links {
        border-left: 0;
        padding-left: 0;
        border-top: 1px solid rgba(13, 17, 23, 0.08);
        padding-top: 8px;
    }

    .svc-route__links li:first-child a {
        padding-top: 12px;
    }

    .svc-route__panel-title {
        max-width: none;
    }
}

/* Mobile: airy service cards carousel */
@media (max-width: 860px) {
    .svc-route__inner {
        padding: 72px 0 64px;
        overflow: visible;
    }

    .svc-route__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 28px;
        padding: 0 22px;
    }

    .svc-route__title {
        font-size: clamp(1.85rem, 7.6vw, 2.25rem);
        line-height: 1.08;
        letter-spacing: -0.032em;
    }

    .svc-route__head-side {
        max-width: none;
        text-align: left;
    }

    .svc-route__all {
        font-size: 0.9rem;
        font-weight: 500;
        color: rgba(13, 17, 23, 0.48);
        border-bottom-color: rgba(13, 17, 23, 0.16);
        padding-bottom: 1px;
    }

    .svc-route__radio,
    .svc-route__track {
        display: none !important;
    }

    .svc-route__body {
        display: block;
    }

    .svc-route__panels-rail {
        position: relative;
        margin: 0;
    }

    .svc-route__swipe {
        display: grid;
        place-items: center;
        position: absolute;
        top: 50%;
        right: 14px;
        z-index: 5;
        width: 44px;
        height: 44px;
        margin: 0;
        border-radius: 50%;
        background: #fff;
        color: #0d1117;
        border: 1px solid var(--slate-200);
        box-shadow: 0 4px 18px rgba(13, 17, 23, 0.08);
        pointer-events: none;
        transform: translateY(-50%);
    }

    .svc-route__swipe svg {
        display: block;
    }

    .svc-route__panels {
        display: flex;
        gap: 14px;
        min-height: 0;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 22px;
        -webkit-overflow-scrolling: touch;
        padding: 2px 22px 20px;
        scrollbar-width: none;
        overscroll-behavior-x: contain;
    }

    .svc-route__panels::-webkit-scrollbar {
        display: none;
    }

    .svc-route__panel,
    .svc-route__body:has(#sr-proj:checked) .svc-route__panel--proj,
    .svc-route__body:has(#sr-inz:checked) .svc-route__panel--inz,
    .svc-route__body:has(#sr-vyst:checked) .svc-route__panel--vyst {
        display: flex;
        flex-direction: column;
        flex: 0 0 min(84vw, 320px);
        width: min(84vw, 320px);
        max-width: min(84vw, 320px);
        min-height: 0;
        gap: 0;
        padding: 24px 22px 22px;
        scroll-snap-align: start;
        animation: none;
        box-shadow: 0 10px 28px rgba(13, 17, 23, 0.045);
        border: 1px solid rgba(13, 17, 23, 0.08);
        border-radius: 16px;
        box-sizing: border-box;
        background: #ffffff;
    }

    .svc-route__panel > .svc-route__panel-main,
    .svc-route__panel > .svc-route__cta,
    .svc-route__panel > .svc-route__links {
        grid-column: auto;
        grid-row: auto;
    }

    .svc-route__card-head {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin: 0 0 14px;
        padding: 0;
        border: 0;
    }

    .svc-route__card-num {
        display: none;
    }

    .svc-route__card-meta {
        display: flex;
        flex-direction: column;
        gap: 6px;
        min-width: 0;
    }

    .svc-route__card-phase {
        display: none;
    }

    .svc-route__card-name {
        font-family: var(--font-display);
        font-size: clamp(1.36rem, 5.6vw, 1.55rem);
        font-weight: 700;
        letter-spacing: -0.028em;
        line-height: 1.18;
        color: #0d1117;
    }

    .svc-route__panel-main {
        margin: 0 0 18px;
    }

    .svc-route__panel-title {
        margin: 0;
        max-width: 22ch;
        font-size: 0.98rem;
        font-weight: 400;
        line-height: 1.45;
        letter-spacing: -0.012em;
        color: rgba(13, 17, 23, 0.55);
    }

    .svc-route__links {
        margin: 0 0 18px;
        padding: 4px 0 0;
        border-top: 1px solid rgba(13, 17, 23, 0.08);
        border-left: 0;
        list-style: none;
    }

    .svc-route__links li:nth-child(n + 4) {
        display: none;
    }

    .svc-route__link-ic,
    .svc-route__links a::after {
        display: none !important;
    }

    .svc-route__links a {
        display: block;
        padding: 12px 0;
        gap: 0;
        font-size: 0.92rem;
        font-weight: 500;
        line-height: 1.35;
        color: #0d1117;
        border: 0;
    }

    .svc-route__links li:first-child a {
        padding-top: 12px;
    }

    .svc-route__links li + li a {
        border-top: 1px solid rgba(13, 17, 23, 0.06);
    }

    .svc-route__cta {
        align-self: flex-start;
        margin-top: auto;
        min-height: 0;
        padding: 4px 0 0;
        gap: 6px;
        font-size: 0.92rem;
        font-weight: 600;
        color: var(--red);
    }

    .svc-route__cta-ic {
        width: auto;
        height: auto;
        border: 0 !important;
        background: none !important;
        color: inherit !important;
    }

    .svc-route__cta-ic svg {
        width: 13px;
        height: 13px;
    }

    .svc-route__cta:hover .svc-route__cta-ic {
        background: none !important;
        border: 0 !important;
        color: inherit !important;
    }
}

@media (max-width: 480px) {
    .svc-route__inner {
        padding: 64px 0 56px;
    }

    .svc-route__head {
        padding: 0 20px;
        margin-bottom: 24px;
        gap: 12px;
    }

    .svc-route__title {
        font-size: clamp(1.75rem, 8vw, 2.05rem);
    }

    .svc-route__panels {
        padding: 2px 20px 18px;
        scroll-padding-inline: 20px;
        gap: 12px;
    }

    .svc-route__panel,
    .svc-route__body:has(#sr-proj:checked) .svc-route__panel--proj,
    .svc-route__body:has(#sr-inz:checked) .svc-route__panel--inz,
    .svc-route__body:has(#sr-vyst:checked) .svc-route__panel--vyst {
        flex-basis: min(86vw, 320px);
        width: min(86vw, 320px);
        max-width: min(86vw, 320px);
        padding: 22px 20px 20px;
    }

    .svc-route__card-name {
        font-size: 1.42rem;
    }

    .svc-route__panel-title {
        font-size: 0.95rem;
    }

    .svc-route__links a {
        padding: 11px 0;
        font-size: 0.9rem;
    }
}

/* ---------- SECTION 8 — INDUSTRIES ---------- */
.industries {
    background: #ffffff;
    padding: clamp(80px, 10vw, 150px) 0;
}

.ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 28px);
}

.ind-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: flex-end;
}

.ind-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.ind-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(13, 17, 23, 0.8) 0%, rgba(13, 17, 23, 0) 60%);
}

.ind-card:hover img {
    transform: scale(1.07);
}

.ind-name {
    position: relative;
    z-index: 1;
    padding: 26px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    color: #ffffff;
}

/* ---------- SECTION 9 — CLIENTS ---------- */
.clients {
    background: #ffffff;
    padding: clamp(70px, 9vw, 130px) 0 clamp(90px, 11vw, 160px);
}

.logo-wall {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(30px, 5vw, 70px) clamp(20px, 4vw, 60px);
    align-items: center;
}

.logo-item {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.1rem, 1.8vw, 1.6rem);
    letter-spacing: 1px;
    text-align: center;
    color: rgba(13, 17, 23, 0.3);
    transition: color 0.3s ease;
}

.logo-item:hover {
    color: rgba(13, 17, 23, 0.7);
}

.contact-title {
    font-family: var(--font-display);
    font-weight: var(--weight-title);
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.08;
    letter-spacing: -1.5px;
    color: #fff;
    max-width: 18ch;
    margin-bottom: 40px;
}

.contact-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ---------- FOOTER ---------- */
/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
    background: #0a0d12;
    padding: 0 0 env(safe-area-inset-bottom, 0);
    border-top: 3px solid var(--red);
}

.footer-cta {
    background: linear-gradient(135deg, #11151c 0%, #0a0d12 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding: clamp(28px, 4vw, 40px) 0;
}

.footer-cta-eyebrow {
    margin: 0 0 6px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red);
}

.footer-cta-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
}

.footer-cta-actions {
    display: flex;
    align-items: center;
    gap: clamp(16px, 3vw, 28px);
    flex-wrap: wrap;
}

.footer-cta-phone {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-cta-phone:hover {
    color: #fff;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, minmax(0, 1fr));
    gap: clamp(28px, 4vw, 48px);
    padding: clamp(48px, 7vw, 72px) 0 clamp(40px, 6vw, 56px);
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

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

.footer-logo-k {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--red);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.footer-logo-k img {
    width: 78%;
    height: auto;
    display: block;
    mix-blend-mode: lighten;
}

.footer-logo-wordmark {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.18em;
    color: #fff;
    text-transform: uppercase;
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.48);
    margin: 0 0 16px;
    max-width: 32ch;
}

.footer-company {
    margin: 0 0 18px;
}

.footer-company div {
    margin: 0;
}

.footer-company dt {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 4px;
}

.footer-company dd {
    margin: 0;
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.38);
}

.footer-certs {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 22px;
}

.footer-cert-badge {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 4px 10px;
    border-radius: 20px;
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.5);
    display: grid;
    place-items: center;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.footer-social-link:hover {
    border-color: rgba(227, 6, 19, 0.45);
    color: #fff;
    background: rgba(227, 6, 19, 0.12);
}

.footer-nav-col h3,
.footer-col-title {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 18px;
}

.footer-nav-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-col ul a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.48);
    text-decoration: none;
    transition: color 0.18s ease;
}

.footer-nav-col ul a:hover {
    color: rgba(255, 255, 255, 0.92);
}

.footer-branches {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-branches li {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-branches strong {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
}

.footer-branches span {
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 300;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.42);
}

.footer-branches-link {
    display: inline-block;
    margin-top: 14px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--red);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-branches-link:hover {
    opacity: 0.8;
}

.footer-address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 22px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.48);
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.28);
}

.footer-contact-item span,
.footer-contact-item a {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 300;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.48);
    text-decoration: none;
    transition: color 0.18s ease;
}

.footer-contact-item a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-newsletter-label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.footer-newsletter-row {
    display: flex;
    gap: 8px;
}

.footer-newsletter-row input {
    flex: 1;
    min-width: 0;
    height: 40px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-family: var(--font-body);
    font-size: 13px;
}

.footer-newsletter-row input::placeholder {
    color: rgba(255, 255, 255, 0.32);
}

.footer-newsletter-row input:focus {
    outline: none;
    border-color: rgba(227, 6, 19, 0.45);
}

.footer-newsletter-row button {
    flex-shrink: 0;
    height: 40px;
    padding: 0 14px;
    border: none;
    border-radius: 8px;
    background: var(--red);
    color: #fff;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.2s ease;
}

.footer-newsletter-row button:hover {
    background: var(--red-deep);
}

.footer-blog {
    padding-bottom: clamp(40px, 6vw, 56px);
}

.footer-blog-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: clamp(20px, 3vw, 28px);
}

.footer-blog-eyebrow {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red);
}

.footer-blog-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.2vw, 1.65rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
}

.footer-blog-all {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-blog-all:hover {
    color: #fff;
}

.footer-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(12px, 2vw, 20px);
}

.footer-blog-card {
    padding: clamp(18px, 2.5vw, 24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.footer-blog-card:hover {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.05);
}

.footer-blog-cat {
    display: inline-block;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: var(--red);
    padding: 4px 9px;
    border-radius: 999px;
}

.footer-blog-cat--blue { background: #1a56e8; }
.footer-blog-cat--green { background: #14874e; }

.footer-blog-card-title {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: clamp(0.95rem, 1.4vw, 1.05rem);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.footer-blog-card-title a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-blog-card-title a:hover {
    color: #fff;
}

.footer-blog-card-meta {
    margin: 0;
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.38);
}

.footer-sep {
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 22px 0;
}

.footer-copy {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal a {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.18s ease;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.footer-made {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.18);
    margin: 0;
}

@media (max-width: 1100px) {
    .footer-main {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 520px) {
    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* ---------- SECTION RESPONSIVE ---------- */
@media (max-width: 980px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }


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

    .proc-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .proc-item {
        padding-bottom: 28px;
    }

    .process-header {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .process-sub {
        grid-column: 1;
        justify-self: start;
        text-align: left;
        padding-left: 0;
    }

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

/* Process — horizontal carousel on phone */
@media (max-width: 860px) {
    .process {
        padding: clamp(40px, 8vw, 56px) 0 clamp(36px, 7vw, 48px);
        overflow: hidden;
    }

    .process .container {
        padding-left: 0;
        padding-right: 0;
        overflow: visible;
    }

    .process-header {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 28px;
        padding: 0 20px;
    }

    .process-title {
        font-size: clamp(1.7rem, 7vw, 2.15rem);
        letter-spacing: -0.03em;
    }

    .process-sub {
        grid-column: 1;
        justify-self: start;
        text-align: left;
        padding-left: 0;
        font-size: 0.95rem;
        max-width: 28ch;
        color: rgba(255, 255, 255, 0.58);
    }

    .proc-list {
        display: flex;
        grid-template-columns: none;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 20px;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
        padding: 2px 20px 18px;
    }

    .proc-list::-webkit-scrollbar {
        display: none;
    }

    .proc-rail::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 18px;
        width: 56px;
        pointer-events: none;
        background: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.72) 55%,
            #000000 100%
        );
        z-index: 2;
    }

    .proc-swipe {
        display: grid;
        place-items: center;
        position: absolute;
        top: 50%;
        right: 10px;
        z-index: 3;
        width: 36px;
        height: 36px;
        margin-top: -26px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.22);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        pointer-events: none;
        animation: none;
    }

    .proc-swipe svg {
        display: block;
    }

    .proc-list:has(.proc-item:hover) .proc-item:not(:hover) {
        opacity: 1;
    }

    .proc-item {
        flex: 0 0 min(78vw, 280px);
        width: min(78vw, 280px);
        max-width: min(78vw, 280px);
        padding: 20px 18px 18px;
        scroll-snap-align: start;
        box-sizing: border-box;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.03);
    }

    .proc-top {
        margin-bottom: 14px;
    }

    .proc-divider {
        width: 100%;
        transform: scaleX(1);
        background: rgba(255, 255, 255, 0.18);
        margin-top: 10px;
    }

    .proc-name {
        font-size: 1.12rem;
        margin-bottom: 8px;
    }

    .proc-desc {
        font-size: 0.9rem;
        line-height: 1.45;
        padding-right: 0;
        color: rgba(255, 255, 255, 0.55);
    }
}

@media (max-width: 640px) {
    .process-header {
        padding: 0 16px;
        margin-bottom: 24px;
    }

    .proc-list {
        gap: 10px;
        padding: 2px 16px 16px;
        scroll-padding-inline: 16px;
    }

    .proc-item {
        flex-basis: min(82vw, 270px);
        width: min(82vw, 270px);
        max-width: min(82vw, 270px);
        padding: 18px 16px 16px;
    }

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

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

    .stat-num {
        font-size: clamp(2.6rem, 14vw, 3.4rem);
    }
}

/* ─── Operator pill ── */
.operator-pill {
    position: fixed;
    right: clamp(16px, 2vw, 28px);
    bottom: clamp(16px, 2vw, 28px);
    z-index: 9990;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px) scale(0.94);
    transition:
        opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.45s ease;
}

.operator-pill.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.operator-pill-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    pointer-events: auto;
}

.operator-pill-main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px 10px 10px;
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: 999px;
    box-shadow:
        0 2px 4px rgba(13, 17, 23, 0.04),
        0 12px 32px rgba(13, 17, 23, 0.14);
    cursor: default;
    outline: none;
    transition:
        border-color 0.25s ease,
        box-shadow 0.28s ease,
        transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.operator-pill-avatar {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--slate-100);
    flex-shrink: 0;
    transition: background 0.25s ease;
}

.operator-pill-avatar svg {
    width: 21px !important;
    height: 21px !important;
    color: var(--accent-blue);
    stroke-width: 2;
}

.operator-pill-avatar--chat {
    background: rgba(230, 0, 18, 0.08);
}

.operator-pill-avatar--chat svg {
    color: var(--red);
}

.operator-pill-status {
    position: absolute;
    top: 1px;
    right: 1px;
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
}

.operator-pill-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    padding-right: 2px;
}

.operator-pill-label {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: #0d1117;
    letter-spacing: -0.2px;
    line-height: 1.1;
    white-space: nowrap;
}

.operator-pill-hint {
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 500;
    color: rgba(13, 17, 23, 0.45);
    line-height: 1.2;
    transition: color 0.25s ease;
}

.operator-pill[data-online="true"] .operator-pill-main {
    border-color: rgba(34, 197, 94, 0.28);
}

.operator-pill[data-online="true"] .operator-pill-avatar {
    background: rgba(34, 197, 94, 0.1);
}

.operator-pill[data-online="true"] .operator-pill-avatar svg {
    color: #14874e;
}

.operator-pill[data-online="true"] .operator-pill-hint {
    color: #14874e;
}

.operator-pill-inner:hover .operator-pill-main,
.operator-pill-inner:focus-within .operator-pill-main {
    transform: translateY(-3px);
    box-shadow:
        0 4px 8px rgba(13, 17, 23, 0.06),
        0 20px 48px rgba(13, 17, 23, 0.16);
}

.operator-pill-menu {
    position: absolute;
    right: 0;
    bottom: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 220px;
    padding-bottom: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.98);
    transition:
        opacity 0.24s ease,
        transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.24s ease;
    pointer-events: none;
}

.operator-pill-inner:hover .operator-pill-menu,
.operator-pill-inner:focus-within .operator-pill-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.operator-pill-action {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(13, 17, 23, 0.08);
    text-decoration: none;
    transition:
        border-color 0.18s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.operator-pill-action-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: rgba(227, 6, 19, 0.08);
    flex-shrink: 0;
    transition: background 0.18s ease;
}

.operator-pill-action-icon--mail {
    background: rgba(79, 109, 137, 0.1);
}

.operator-pill-action-icon svg {
    width: 17px !important;
    height: 17px !important;
    color: var(--red);
    stroke-width: 2;
}

.operator-pill-action-icon--mail svg {
    color: var(--accent-blue);
}

.operator-pill-action-copy {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.operator-pill-action-copy strong {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 600;
    color: #0d1117;
    line-height: 1.2;
}

.operator-pill-action-copy span {
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 400;
    color: rgba(13, 17, 23, 0.48);
    line-height: 1.2;
}

.operator-pill-action:hover {
    border-color: rgba(227, 6, 19, 0.25);
    transform: translateX(-4px);
    box-shadow: 0 10px 28px rgba(13, 17, 23, 0.1);
}

.operator-pill-action:hover .operator-pill-action-icon {
    background: rgba(227, 6, 19, 0.14);
}

.operator-pill-action:focus-visible {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

@media (max-width: 640px) {
    .operator-pill-main {
        padding: 8px 14px 8px 8px;
        gap: 10px;
    }

    .operator-pill-avatar {
        width: 40px;
        height: 40px;
    }

    .operator-pill-label {
        font-size: 13px;
    }

    .operator-pill-menu {
        min-width: 200px;
    }
}


/* ═══════════════════════════════════════════════════════════
   SITE FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
    margin: 0;
    padding: 0;
    background: #ffffff;
    border-top: 1px solid rgba(13, 17, 23, 0.1);
}

.site-footer::before {
    display: none;
}

.site-footer__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: clamp(28px, 4vw, 56px);
    width: min(var(--nav-container), 100%);
    margin: 0 auto;
    padding:
        40px var(--section-rail-right) 32px var(--section-rail-left);
}

.site-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    flex-shrink: 0;
}

.site-footer__years {
    display: block;
    position: relative;
    width: 112px;
    max-width: 100%;
    margin: 0;
    padding: 0;
    text-decoration: none;
    line-height: 0;
    overflow: visible;
    transform-origin: center center;
    transition: transform 0.28s var(--btn-ease);
}

.site-footer__years:hover {
    transform: scale(1.06);
}

.site-footer__years::after {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    z-index: 2;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 17L17 7M17 7H10M17 7v7' stroke='%23e30613' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(10deg);
    transform-origin: center center;
    transition: transform 0.28s var(--btn-ease);
}

.site-footer__years:hover::after {
    transform: rotate(10deg) scale(1.18);
}

.site-footer__years img {
    display: block;
    width: 100%;
    height: auto;
}

.site-footer__logo {
    display: block;
    transition: opacity 0.2s ease;
}

.site-footer__logo img {
    display: block;
    height: 28px;
    width: auto;
}

.site-footer__logo:hover {
    opacity: 0.7;
}

.site-footer__social {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

.site-footer__social-link {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border: 1.5px solid rgba(13, 17, 23, 0.16);
    color: rgba(13, 17, 23, 0.55);
    transition: color 0.22s var(--btn-ease),
                border-color 0.22s var(--btn-ease),
                background 0.22s var(--btn-ease);
}

.site-footer__social-link:hover {
    color: #ffffff;
    background: var(--red);
    border-color: var(--red);
}

.site-footer__heading {
    display: none;
}

.site-footer__nav,
.site-footer__col {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 8px 22px;
    max-width: 36rem;
}

.site-footer__nav a,
.site-footer__col a {
    font-family: var(--font-display);
    font-size: 0.86rem;
    font-weight: var(--weight-nav);
    letter-spacing: 0.01em;
    color: rgba(13, 17, 23, 0.62);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__nav a:hover,
.site-footer__col a:hover,
.site-footer__nav a[aria-current="page"] {
    color: var(--red);
}

.site-footer__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    flex-shrink: 0;
    text-align: right;
}

.site-footer__contact-link {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: var(--weight-nav);
    letter-spacing: 0.01em;
    color: #0d1117;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.site-footer__contact-link:hover {
    color: var(--red);
}

.site-footer__address {
    margin: 4px 0 0;
    max-width: 16rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    line-height: 1.45;
    color: rgba(13, 17, 23, 0.45);
}

.site-footer__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px 20px;
    width: min(var(--nav-container), 100%);
    margin: 0 auto;
    border-top: 1px solid rgba(13, 17, 23, 0.08);
    padding: 16px var(--section-rail-right) 20px var(--section-rail-left);
}

.site-footer__mark {
    display: none;
}

.site-footer__bar p {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: rgba(13, 17, 23, 0.38);
}

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

.site-footer__legal a,
.site-footer__credit a {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: rgba(13, 17, 23, 0.42);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__legal a:hover,
.site-footer__credit a:hover {
    color: var(--red);
}

.site-footer__motto {
    margin: 0;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: var(--weight-title);
    line-height: 1.2;
    letter-spacing: var(--tracking-title);
    color: rgba(13, 17, 23, 0.42);
}

.site-footer--ink {
    position: relative;
    display: block;
    min-height: 0;
    background: #141414;
    border-top: none;
    overflow: hidden;
}

.site-footer--ink .site-footer__wash {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    pointer-events: none;
    opacity: 0.055;
}

.site-footer--ink > *:not(.site-footer__wash):not(.site-footer__totop) {
    position: relative;
    z-index: 1;
}

.site-footer--ink .site-footer__inner {
    display: grid;
    grid-template-columns: minmax(200px, 1.35fr) minmax(140px, 1fr) minmax(180px, 1.15fr) minmax(220px, 1.2fr);
    align-items: start;
    gap: clamp(32px, 4vw, 64px);
    width: min(var(--nav-container), 100%);
    margin: 0 auto;
    padding: 112px var(--section-rail-right) 0 var(--section-rail-left);
}

.site-footer--ink .site-footer__brand {
    width: fit-content;
    gap: 0;
    margin-top: -48px;
}

.site-footer--ink .site-footer__tagline {
    align-self: flex-end;
    margin: -40px 8px 0 0;
    font-family: var(--font-body);
    font-size: 0.73rem;
    font-weight: 300;
    line-height: 1.35;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: right;
    color: rgba(255, 255, 255, 0.42);
}

.site-footer--ink .site-footer__logo img,
.site-footer--ink .footer-logo-img {
    height: clamp(72px, 7vw, 96px);
    filter: none;
    mix-blend-mode: normal;
    opacity: 1;
}

.site-footer--ink .site-footer__heading {
    display: block;
    width: fit-content;
    min-width: 8.5rem;
    margin: 0 0 22px;
    padding: 0 0 12px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: var(--weight-title);
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.48);
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.site-footer--ink .site-footer__heading--wide {
    min-width: 14rem;
}

.site-footer--ink .site-footer__col {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    max-width: none;
    gap: 12px;
}

.site-footer--ink .site-footer__col a {
    color: #ffffff;
    font-size: 1rem;
    font-weight: var(--weight-body);
    letter-spacing: 0;
}

.site-footer--ink .site-footer__col a:hover,
.site-footer--ink .site-footer__col a[aria-current="page"] {
    color: rgba(255, 255, 255, 0.7);
}

.site-footer--ink .site-footer__contact {
    align-items: flex-start;
    gap: 14px;
    text-align: left;
}

.site-footer--ink .site-footer__contact-link {
    font-size: clamp(1.35rem, 2vw, 1.7rem);
    font-weight: 700;
    letter-spacing: 0;
    color: #ffffff;
    white-space: nowrap;
}

.site-footer--ink .site-footer__contact-link--mail {
    color: var(--red);
}

.site-footer--ink .site-footer__contact-link:hover,
.site-footer--ink .site-footer__contact-link--mail:hover {
    opacity: 0.8;
    color: inherit;
}

.site-footer--ink .site-footer__floor {
    display: grid;
    grid-template-columns: minmax(200px, 1.35fr) minmax(140px, 1fr) minmax(180px, 1.15fr) minmax(220px, 1.2fr);
    align-items: start;
    gap: clamp(32px, 4vw, 64px);
    width: min(var(--nav-container), 100%);
    margin: 0 auto;
    padding: 96px var(--section-rail-right) 40px var(--section-rail-left);
}

.site-footer--ink .site-footer__years {
    grid-column: 1;
    align-self: start;
    width: 120px;
}

.site-footer--ink .site-footer__legal-stack {
    grid-column: 2;
}

.site-footer--ink .site-footer__ids {
    grid-column: 3;
}

.site-footer--ink .site-footer__legal-stack,
.site-footer--ink .site-footer__ids {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.site-footer--ink .site-footer__legal-stack a,
.site-footer--ink .site-footer__legal-stack p,
.site-footer--ink .site-footer__ids p {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.42);
    text-decoration: none;
}

.site-footer--ink .site-footer__legal-stack a:hover {
    color: #ffffff;
}

.site-footer--ink .site-footer__copy {
    width: min(var(--nav-container), 100%);
    margin: 0 auto;
    padding: 0 var(--section-rail-right) 12px var(--section-rail-left);
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.34);
}

.site-footer--ink .site-footer__creditbar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px 24px;
    flex-wrap: wrap;
    width: min(var(--nav-container), 100%);
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px var(--section-rail-right) 32px var(--section-rail-left);
}

.site-footer--ink .site-footer__creditbar p,
.site-footer--ink .site-footer__creditbar a {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.34);
    text-decoration: none;
}

.site-footer--ink .site-footer__credit-brand {
    background: linear-gradient(90deg, var(--red) 0%, #ff6b52 42%, var(--accent-blue) 88%, var(--red) 100%);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
}

.site-footer--ink .site-footer__creditbar a:hover {
    color: inherit;
}

.site-footer--ink .site-footer__isos {
    display: flex;
    grid-column: 4;
    justify-self: start;
    max-width: 100%;
    min-width: 0;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px 10px;
    overflow: visible;
    position: relative;
    z-index: 4;
}

.site-footer--ink .site-footer__isos a {
    text-decoration: none;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.site-footer--ink .site-footer__isos a:hover,
.site-footer--ink .site-footer__isos a:focus-within {
    z-index: 8;
}

.site-footer--ink .site-footer__isos a:hover .certs-showcase-item::after,
.site-footer--ink .site-footer__isos a:hover .certs-showcase-item::before,
.site-footer--ink .site-footer__isos a:focus-within .certs-showcase-item::after,
.site-footer--ink .site-footer__isos a:focus-within .certs-showcase-item::before {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.site-footer--ink .site-footer__isos a:hover .certs-showcase-item::before,
.site-footer--ink .site-footer__isos a:focus-within .certs-showcase-item::before {
    transform: translate(-50%, 0) rotate(45deg);
}

.site-footer--ink .site-footer__isos .certs-showcase-item {
    gap: 6px;
    min-width: 0;
    z-index: 1;
}

.site-footer--ink .site-footer__isos a:hover .certs-showcase-item,
.site-footer--ink .site-footer__isos a:focus-within .certs-showcase-item {
    z-index: 8;
}

.site-footer--ink .site-footer__isos img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: grayscale(1) brightness(1.55);
    opacity: 0.78;
}

.site-footer--ink .site-footer__isos a:hover img {
    filter: grayscale(0) brightness(1);
    opacity: 1;
}

.site-footer--ink .site-footer__isos figcaption {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.58rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.site-footer--ink .site-footer__totop {
    position: absolute;
    z-index: 3;
    right: var(--section-rail-right);
    bottom: 28px;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: #ffffff;
    background: #2b2b2b;
    border: none;
}

.site-footer--ink .site-footer__totop:hover {
    background: #3a3a3a;
}

.site-footer--ink .site-footer__totop i,
.site-footer--ink .site-footer__totop svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 900px) {
    .site-footer--ink .site-footer__wash {
        inset: auto;
        top: 50%;
        left: 50%;
        width: 220%;
        height: 220%;
        max-width: none;
        object-fit: cover;
        object-position: center;
        transform: translate(-50%, -50%) rotate(90deg);
    }

    .site-footer--ink .site-footer__inner,
    .site-footer--ink .site-footer__floor {
        display: flex;
        flex-direction: column;
    }

    .site-footer--ink .site-footer__isos {
        justify-content: flex-start;
    }

    .site-footer--ink .site-footer__contact {
        align-items: flex-start;
        text-align: left;
    }

    .site-footer--ink .site-footer__tagline {
        font-size: 0.545rem;
        margin-right: 6px;
    }
}

@media (max-width: 900px) {
    .site-footer__inner {
        flex-direction: column;
        gap: 24px;
    }

    .site-footer__contact {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .site-footer__bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ═══════════════════════════════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════════════════════════════ */
.legal-page {
    padding:
        clamp(48px, 8vw, 88px)
        var(--section-rail-right)
        clamp(72px, 10vw, 112px)
        var(--section-rail-left);
    background: var(--slate-50);
}

.legal-page__inner {
    width: min(760px, 100%);
    margin: 0 auto;
}

.legal-page__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #0d1117;
    margin: 0 0 12px;
    line-height: 1.15;
}

.legal-page__updated {
    margin: 0 0 clamp(32px, 5vw, 48px);
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(13, 17, 23, 0.45);
}

.legal-page__content h2 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: #0d1117;
    margin: 2rem 0 0.75rem;
}

.legal-page__content h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: #0d1117;
    margin: 1.5rem 0 0.6rem;
}

.legal-page__content table {
    width: 100%;
    margin: 0 0 1rem;
    border-collapse: collapse;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.5;
    color: rgba(13, 17, 23, 0.72);
}

.legal-page__content th,
.legal-page__content td {
    padding: 10px 12px;
    border: 1px solid rgba(13, 17, 23, 0.12);
    text-align: left;
    vertical-align: top;
}

.legal-page__content th {
    font-weight: 600;
    color: #0d1117;
    background: #fafbfc;
}

.legal-page__content p,
.legal-page__content li {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(13, 17, 23, 0.72);
}

.legal-page__content p {
    margin: 0 0 1rem;
}

.legal-page__content ul {
    margin: 0 0 1rem;
    padding-left: 1.25rem;
}

.legal-page__content a {
    color: var(--red);
    text-decoration: none;
}

.legal-page__content a:hover {
    text-decoration: underline;
}

.navbar--legal .nav-inner {
    justify-content: space-between;
}

.navbar--legal .nav-cta-btn {
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   PAGE — KARIÉRA
══════════════════════════════════════════════════════════ */

.chero {
    background: #ffffff;
}

.chero__stage {
    position: relative;
    isolation: isolate;
    min-height: clamp(520px, 78vh, 760px);
    overflow: hidden;
}

.chero__photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 78% center;
    background: #14181f;
}

@media (prefers-reduced-motion: reduce) {
    .chero__photo {
        display: none;
    }

    .chero__stage {
        background:
            linear-gradient(90deg, rgba(10, 13, 18, 0.72), rgba(10, 13, 18, 0.2)),
            url("img/kariera-hero.webp") 78% center / cover no-repeat;
    }
}

.chero__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(10, 13, 18, 0.62) 0%, rgba(10, 13, 18, 0.28) 38%, transparent 66%),
        linear-gradient(180deg, rgba(10, 13, 18, 0.12) 0%, transparent 32%, rgba(10, 13, 18, 0.42) 100%);
    pointer-events: none;
    transition: opacity 0.8s var(--btn-ease);
}

.chero__stage.is-split .chero__shade {
    opacity: 0.72;
}

.chero__aside {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(44%, 560px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding:
        clamp(48px, 8vh, 96px)
        var(--section-rail-right)
        clamp(48px, 8vh, 88px)
        48px;
    pointer-events: none;
}

.chero__aside-fill {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 0%, rgba(10, 13, 18, 0.55) 28%, rgba(10, 13, 18, 0.88) 100%);
    transform: translateX(102%);
    pointer-events: none;
}

.chero__stage.is-split .chero__aside-fill {
    transform: translateX(0);
    transition: transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.chero__aside-title {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 10ch;
    font-family: var(--font-display);
    font-weight: var(--weight-display);
    font-size: clamp(2.2rem, 5.2vw, 4.1rem);
    line-height: 0.96;
    letter-spacing: -0.045em;
    text-align: right;
    color: #ffffff;
    opacity: 0;
    transform: translateX(28px);
}

.chero__stage.is-split .chero__aside-title {
    opacity: 1;
    transform: none;
    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.38s,
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.38s;
}

@media (prefers-reduced-motion: reduce) {
    .chero__aside-title,
    .chero__aside-fill {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.chero__lead {
    margin: 0 0 32px;
    max-width: 46ch;
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.25vw, 1.125rem);
    line-height: 1.6;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
}

.chero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.chero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: var(--weight-ui);
    letter-spacing: 0.01em;
    text-decoration: none;
    border-radius: var(--btn-radius);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s var(--btn-ease);
}

.chero__btn--red {
    background: var(--red);
    color: #ffffff;
}

.chero__btn--red:hover {
    background: var(--red-deep);
}

.chero__btn--light {
    background: #ffffff;
    color: #0d1117;
}

.chero__btn--light:hover {
    background: var(--slate-100);
}

.csplit {
    background: #ffffff;
    padding:
        clamp(28px, 4vw, 48px)
        var(--section-rail-right)
        clamp(36px, 5vw, 64px)
        var(--section-rail-left);
}

.csplit__frame {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: min(78vh, 740px);
    isolation: isolate;
}

.csplit__copy {
    --csplit-notch: 90px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 36px;
    min-height: 100%;
    padding: clamp(28px, 3.4vw, 44px) clamp(72px, 8vw, 108px) clamp(28px, 3.4vw, 40px) clamp(28px, 3.2vw, 44px);
    background: var(--red);
    color: #ffffff;
    border-radius: 48px 0 0 48px;
    -webkit-mask-image: radial-gradient(circle var(--csplit-notch) at 100% 50%, transparent var(--csplit-notch), #000 calc(var(--csplit-notch) + 1px));
    mask-image: radial-gradient(circle var(--csplit-notch) at 100% 50%, transparent var(--csplit-notch), #000 calc(var(--csplit-notch) + 1px));
}

.csplit__clip {
    position: relative;
    display: block;
    width: min(100%, 248px);
    aspect-ratio: 16 / 10;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 28px;
    background: #14181f;
    cursor: pointer;
}

.csplit__clip img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 78% center;
}

.csplit__play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #0d1117;
}

.csplit__play::before {
    content: "";
    position: absolute;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffffff;
}

.csplit__play svg,
.csplit__play [data-lucide] {
    position: relative;
    width: 18px;
    height: 18px;
    margin-left: 2px;
}

.csplit__title {
    margin: 0 0 16px;
    max-width: 11ch;
    font-family: var(--font-display);
    font-weight: var(--weight-display);
    font-size: clamp(2.35rem, 4.6vw, 4.15rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    color: #ffffff;
}

.csplit__lead {
    margin: 0;
    max-width: 38ch;
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.15vw, 1.05rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

.csplit__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 18px;
}

.csplit__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 8px 0 20px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: var(--weight-ui);
    letter-spacing: 0.01em;
    text-decoration: none;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.2s var(--btn-ease), background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.csplit__btn--dark {
    background: #111111;
    color: #ffffff;
    border: 0;
}

.csplit__btn--dark:hover {
    background: #000000;
}

.csplit__btn--ghost {
    padding: 0 18px;
    background: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.78);
}

.csplit__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

.csplit__btn-ico {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    color: #111111;
}

.csplit__btn-ico svg,
.csplit__btn-ico [data-lucide] {
    width: 16px;
    height: 16px;
}

.csplit__btn-ico--bare {
    width: auto;
    height: auto;
    background: transparent;
    color: #ffffff;
}

.csplit__visual {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    border-radius: 0 48px 48px 0;
    background: #14181f;
}

.csplit__photo {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.csplit__visual::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    background: linear-gradient(180deg, transparent, rgba(10, 13, 18, 0.78));
    pointer-events: none;
}

.csplit__stats {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
    padding: 28px 28px 32px 36px;
    list-style: none;
}

.csplit__stats li {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #ffffff;
}

.csplit__stats strong {
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.4vw, 2.05rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
}

.csplit__stats span {
    max-width: 14ch;
    font-size: 0.78rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.78);
}

.csplit__seal {
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    width: 156px;
    height: 156px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(13, 17, 23, 0.12);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.csplit__orbit {
    position: absolute;
    inset: 8px;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    overflow: visible;
    animation: csplit-orbit 42s linear infinite;
}

.csplit__orbit text {
    fill: #1a1a1a;
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.csplit__plus {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    color: #111111;
}

.csplit__plus svg {
    width: 42px;
    height: 42px;
    fill: currentColor;
}

.cvid {
    position: relative;
    width: min(1080px, calc(100vw - 32px));
    max-width: 1080px;
    margin: auto;
    padding: 0;
    border: 0;
    background: #000000;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.cvid::backdrop {
    background: rgba(10, 13, 18, 0.78);
}

.cvid__media {
    display: block;
    width: 100%;
    height: auto;
    max-height: min(78vh, 720px);
    background: #000000;
}

.cvid__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #111111;
    cursor: pointer;
}

.cvid__close svg,
.cvid__close [data-lucide] {
    width: 18px;
    height: 18px;
}

@keyframes csplit-orbit {
    to { transform: rotate(360deg); }
}

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

@media (max-width: 980px) {
    .csplit {
        padding-left: 16px;
        padding-right: 16px;
    }

    .csplit__frame {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .csplit__copy {
        min-height: 0;
        border-radius: 36px 36px 0 0;
        -webkit-mask-image: none;
        mask-image: none;
        padding: 28px 24px 32px;
        gap: 28px;
    }

    .csplit__title {
        max-width: none;
    }

    .csplit__visual {
        min-height: 360px;
        border-radius: 0 0 36px 36px;
    }

    .csplit__seal {
        display: none;
    }
}

@media (max-width: 640px) {
    .csplit__stats {
        padding: 20px 18px 22px;
        gap: 10px;
    }

    .csplit__seal {
        display: none;
    }

    .csplit__copy,
    .csplit__visual {
        border-radius: 28px;
    }

    .csplit__frame {
        gap: 12px;
    }
}

.cjobs {
    background: #ffffff;
    padding: clamp(56px, 7vw, 88px) 0 clamp(48px, 6vw, 72px);
}

.cjobs__head {
    margin-bottom: clamp(28px, 4vw, 44px);
}

.cjobs__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cjob {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 32px 28px;
    border: 1px solid var(--slate-200);
    background: #ffffff;
}

.cjob--lead {
    border-top: 3px solid var(--red);
}

.cjob__kicker {
    margin: 0 0 12px;
    font-size: 0.75rem;
    font-weight: var(--weight-ui);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(13, 17, 23, 0.45);
}

.cjob__title {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2vw, 1.7rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #0d1117;
}

.cjob__lead {
    margin: 0 0 22px;
    font-family: var(--font-body);
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(13, 17, 23, 0.68);
}

.cjob__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.cjob__facts li {
    padding: 6px 10px;
    background: var(--slate-50);
    font-size: 0.82rem;
    color: #3d4753;
}

.cjob__btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 0 20px;
    background: var(--red);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: var(--weight-ui);
    text-decoration: none;
    border-radius: var(--btn-radius);
    transition: background 0.2s ease;
}

.cjob__btn:hover {
    background: var(--red-deep);
}

@media (max-width: 720px) {
    .chero__stage {
        min-height: 560px;
    }

    .chero__aside {
        top: auto;
        left: 0;
        width: 100%;
        height: 46%;
        align-items: flex-end;
        justify-content: flex-start;
        padding: 0 var(--section-rail-right) 48px var(--section-rail-left);
    }

    .chero__aside-fill {
        background: linear-gradient(180deg, transparent 0%, rgba(10, 13, 18, 0.82) 46%, rgba(10, 13, 18, 0.92) 100%);
        transform: translateY(102%);
    }

    .chero__stage.is-split .chero__aside-fill {
        transform: translateY(0);
    }

    .chero__aside-title {
        max-width: 12ch;
        text-align: left;
        transform: translateY(18px);
    }

    .chero__stage.is-split .chero__aside-title {
        transform: none;
    }

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

/* Hero badge — live vacancy count */
.career-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 7px 13px;
    background: rgba(227, 6, 19, 0.07);
    border: 1px solid rgba(227, 6, 19, 0.22);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: var(--weight-ui);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--red-deep);
}

.career-hero__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.16);
}

.svc-hero-title.career-hero-title {
    margin: 0 0 18px;
    font-size: clamp(2.85rem, 5.8vw, 4.5rem);
}

.career-hero-title__line {
    display: block;
}

/* Shared section header */
.career-section-head {
    max-width: 720px;
    margin-bottom: clamp(40px, 5vw, 68px);
}

.career-section-title {
    margin: 0;
    font-family: var(--font-display);
    font-weight: var(--weight-title);
    font-size: var(--text-h2);
    line-height: var(--lh-title);
    letter-spacing: var(--tracking-title);
    color: #0d1117;
    text-wrap: balance;
}

.career-section-lead {
    margin: 18px 0 0;
    font-family: var(--font-body);
    font-size: var(--text-lead);
    line-height: var(--lh-lead);
    color: rgba(13, 17, 23, 0.58);
    max-width: 58ch;
}

.career-section-head--light .career-section-title {
    color: #ffffff;
}

.career-section-head--light .career-section-lead {
    color: rgba(255, 255, 255, 0.65);
}

/* Facts strip */
.career-facts {
    background: #ffffff;
    padding: clamp(28px, 3.5vw, 44px) 0;
    border-bottom: 1px solid var(--slate-100);
}

.career-facts__list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(16px, 3vw, 40px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.career-facts__item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: clamp(14px, 1.6vw, 20px);
    border-left: 2px solid var(--red);
}

.career-facts__num {
    font-family: var(--font-display);
    font-weight: var(--weight-display);
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    line-height: 1;
    letter-spacing: -0.03em;
    color: #0d1117;
}

.career-facts__label {
    font-family: var(--font-body);
    font-size: var(--text-caption);
    line-height: 1.4;
    color: rgba(13, 17, 23, 0.55);
}

/* Open positions */
.career-jobs {
    background: #ffffff;
    padding: clamp(64px, 8vw, 104px) 0 clamp(56px, 7vw, 88px);
}

.career-jobs__list {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 2.4vw, 28px);
}

.career-jobs__note {
    margin: clamp(28px, 3.5vw, 40px) 0 0;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.65;
    color: rgba(13, 17, 23, 0.55);
    max-width: 62ch;
}

.career-jobs__note a {
    color: var(--red);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Job card */
.job {
    border: 1px solid var(--slate-200);
    border-top: 3px solid var(--slate-300);
    background: #ffffff;
    padding: clamp(24px, 3vw, 40px);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.job:hover {
    border-color: var(--slate-300);
    box-shadow: 0 16px 40px rgba(13, 17, 23, 0.06);
}

.job--lead {
    border-top-color: var(--red);
}

.job__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: clamp(20px, 3vw, 40px);
}

.job__tag {
    display: inline-block;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: var(--weight-ui);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(13, 17, 23, 0.45);
}

.job__title {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-weight: var(--weight-subtitle);
    font-size: clamp(1.35rem, 2.1vw, 1.75rem);
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #0d1117;
}

.job__pitch {
    margin: 0;
    max-width: 62ch;
    font-family: var(--font-body);
    font-size: clamp(0.94rem, 1.05vw, 1rem);
    line-height: 1.65;
    color: rgba(13, 17, 23, 0.6);
}

.job__apply {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.job__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--btn-pad-y) var(--btn-pad-x);
    border-radius: var(--btn-radius);
    background: var(--red);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: var(--btn-font-size);
    font-weight: var(--weight-ui);
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s var(--btn-ease), transform 0.2s var(--btn-ease);
}

.job__btn:hover {
    background: var(--red-deep);
    transform: translateY(-1px);
}

.job__btn:focus-visible {
    outline: 2px solid rgba(227, 6, 19, 0.4);
    outline-offset: 3px;
}

.job__note {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: rgba(13, 17, 23, 0.45);
}

/* Job meta row */
.job__meta {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 28px);
    margin: clamp(24px, 3vw, 32px) 0 0;
    padding: clamp(18px, 2.2vw, 24px) 0 0;
    border-top: 1px solid var(--slate-100);
}

.job__meta-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}

.job__meta dt {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: var(--weight-ui);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(13, 17, 23, 0.42);
}

.job__meta dd {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.45;
    color: #0d1117;
}

.job__meta-item--salary dd {
    font-weight: var(--weight-ui);
    color: var(--red-deep);
}

/* Expandable detail */
.job__more {
    margin-top: clamp(18px, 2.2vw, 24px);
    border-top: 1px solid var(--slate-100);
}

.job__summary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: clamp(14px, 1.8vw, 18px) 0 0;
    list-style: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: var(--weight-ui);
    color: #0d1117;
    transition: color 0.2s ease;
}

.job__summary::-webkit-details-marker {
    display: none;
}

.job__summary:hover {
    color: var(--red);
}

.job__summary:focus-visible {
    outline: 2px solid rgba(227, 6, 19, 0.32);
    outline-offset: 4px;
}

.job__summary-close {
    display: none;
}

.job__more[open] .job__summary-open {
    display: none;
}

.job__more[open] .job__summary-close {
    display: inline;
}

.job__summary-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--icon-box-sm);
    height: var(--icon-box-sm);
    border: 1px solid var(--slate-200);
    color: rgba(13, 17, 23, 0.6);
    transition: transform 0.22s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.job__summary:hover .job__summary-icon {
    background: var(--red);
    border-color: var(--red);
    color: #ffffff;
}

.job__more[open] .job__summary-icon {
    background: #0d1117;
    border-color: #0d1117;
    color: #ffffff;
    transform: rotate(90deg);
}

.job__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(20px, 2.6vw, 36px);
    padding: clamp(26px, 3vw, 36px) 0 clamp(8px, 1vw, 12px);
}

.job__col-title {
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-weight: var(--weight-ui);
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
    color: #0d1117;
}

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

.job__list li {
    position: relative;
    padding-left: 16px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(13, 17, 23, 0.62);
}

.job__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 6px;
    height: 1px;
    background: var(--red);
}

.job__col--offer {
    padding: clamp(18px, 2vw, 22px);
    margin: calc(-1 * clamp(18px, 2vw, 22px)) 0;
    background: var(--slate-50);
}

/* Values — dark band */
.career-values {
    background: #0d1117;
    padding: clamp(72px, 9vw, 112px) 0;
    color: #ffffff;
}

.career-values__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(20px, 2.6vw, 36px);
}

.career-value {
    display: flex;
    flex-direction: column;
    padding-top: clamp(20px, 2.4vw, 26px);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.career-value__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--icon-box-lg);
    height: var(--icon-box-lg);
    margin-bottom: 20px;
    background: var(--red);
    color: #ffffff;
}

.career-value__icon svg,
.career-value__icon [data-lucide] {
    width: var(--icon-md);
    height: var(--icon-md);
}

.career-value__title {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-weight: var(--weight-subtitle);
    font-size: clamp(1.02rem, 1.25vw, 1.15rem);
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: #ffffff;
}

.career-value__desc {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.62);
}

/* Hiring process */
.career-process {
    background: #ffffff;
    padding: clamp(72px, 9vw, 112px) 0;
}

.career-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(20px, 2.6vw, 40px);
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: none;
}

.career-step {
    padding-top: clamp(18px, 2vw, 24px);
    border-top: 2px solid var(--slate-200);
    transition: border-color 0.25s ease;
}

.career-step:hover {
    border-top-color: var(--red);
}

.career-step__num {
    display: block;
    margin-bottom: 14px;
    font-family: var(--font-display);
    font-weight: var(--weight-display);
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
    color: var(--red);
}

.career-step__name {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-weight: var(--weight-subtitle);
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    letter-spacing: -0.015em;
    color: #0d1117;
}

.career-step__desc {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.65;
    color: rgba(13, 17, 23, 0.58);
}

/* Perks */
.career-perks {
    background: var(--slate-50);
    padding: clamp(72px, 9vw, 112px) 0;
    border-top: 1px solid var(--slate-100);
}

.career-perks__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(12px, 1.6vw, 20px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.career-perk {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: clamp(18px, 2vw, 24px);
    background: #ffffff;
    border: 1px solid var(--slate-200);
}

.career-perk__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--icon-box-md);
    height: var(--icon-box-md);
    flex-shrink: 0;
    background: var(--slate-100);
    color: var(--red);
}

.career-perk__icon svg,
.career-perk__icon [data-lucide] {
    width: var(--icon-sm);
    height: var(--icon-sm);
}

.career-perk__text {
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(13, 17, 23, 0.72);
}

/* Open application */
.career-open {
    background: #ffffff;
    padding: clamp(72px, 9vw, 112px) 0 clamp(48px, 6vw, 72px);
}

.career-open__panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(28px, 4vw, 56px);
    padding: clamp(32px, 4vw, 56px);
    background: #0d1117;
    color: #ffffff;
}

.career-open__title {
    margin: 0;
    font-family: var(--font-display);
    font-weight: var(--weight-title);
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    line-height: 1.15;
    letter-spacing: var(--tracking-title);
    color: #ffffff;
}

.career-open__lead {
    margin: 16px 0 0;
    max-width: 56ch;
    font-family: var(--font-body);
    font-size: 0.96rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
}

.career-open__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    flex-shrink: 0;
}

.career-open__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--btn-pad-y) var(--btn-pad-x);
    border-radius: var(--btn-radius);
    background: var(--red);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: var(--btn-font-size);
    font-weight: var(--weight-ui);
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s var(--btn-ease), transform 0.2s var(--btn-ease);
}

.career-open__btn:hover {
    background: var(--red-deep);
    transform: translateY(-1px);
}

.career-open__phone {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: var(--weight-ui);
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.2s ease;
}

.career-open__phone:hover {
    color: #ffffff;
}

.career-open__gdpr {
    margin: clamp(20px, 2.4vw, 28px) 0 0;
    max-width: 76ch;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    line-height: 1.65;
    color: rgba(13, 17, 23, 0.45);
}

.career-open__gdpr a {
    color: rgba(13, 17, 23, 0.7);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.career-open__gdpr a:hover {
    color: var(--red);
}

/* ── Kariéra — responsive ── */
@media (max-width: 1100px) {
    .job__grid,
    .career-values__grid,
    .career-steps,
    .career-perks__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .job__col--offer {
        margin: 0;
    }
}

@media (max-width: 860px) {
    .career-facts__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .job__head {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .job__apply {
        align-items: stretch;
    }

    .job__btn {
        width: 100%;
    }

    .job__note {
        text-align: center;
    }

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

    .career-open__panel {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .career-open__actions {
        align-items: stretch;
        width: 100%;
    }

    .career-open__phone {
        text-align: center;
    }
}

@media (max-width: 560px) {
    .career-facts__list,
    .job__meta,
    .job__grid,
    .career-values__grid,
    .career-steps,
    .career-perks__grid {
        grid-template-columns: 1fr;
    }

    .career-hero__badge {
        font-size: 0.72rem;
    }
}

.career-page {
    background: #f4f4f4;
    color: #111111;
}

.kh {
    background: #f4f4f4;
    color: #111111;
}

.kh-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(240px, 0.5fr);
    align-items: start;
    gap: clamp(36px, 6vw, 96px);
    width: min(var(--nav-container), 100%);
    margin: 0 auto;
    padding:
        clamp(88px, 12vw, 160px) var(--section-rail-right)
        clamp(80px, 10vw, 140px) var(--section-rail-left);
}

.kh-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.15rem, 4.4vw, 3.85rem);
    font-weight: var(--weight-display);
    letter-spacing: var(--tracking-display);
    line-height: 1.02;
    color: #111111;
}

.kh-title__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.22em 0.28em;
}

.kh-mark {
    display: inline-grid;
    place-items: center;
    width: 0.72em;
    height: 0.72em;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--red);
    color: #ffffff;
}

.kh-mark svg,
.kh-mark i {
    width: 0.46em;
    height: 0.46em;
    stroke-width: 2.2;
}

.kh-hit {
    display: inline-block;
    padding: 0.04em 0.16em 0.08em;
    color: #ffffff;
    background: var(--red);
    border-radius: 4px;
    white-space: nowrap;
}

.kh-aside {
    padding-top: 0.2em;
    max-width: 34ch;
}

.kh-lead {
    margin: 0 0 1.35rem;
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.15vw, 1.08rem);
    font-weight: var(--weight-body);
    line-height: 1.55;
    color: #2a2a2a;
}

.kh-lead--close {
    margin-top: -0.7rem;
}

.kh-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35em;
    padding-bottom: 3px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: #111111;
    border-bottom: 1px solid #111111;
}

.kh-cta__arr {
    color: var(--red);
    font-size: 0.95em;
    line-height: 1;
}

.kh-cta:hover {
    opacity: 0.7;
}

.kh-shot {
    margin: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 1672 / 565;
    min-height: 0;
    overflow: hidden;
    background: #111111;
}

.kh-shot img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.kj {
    background: #f4f4f4;
    color: #111111;
}

.kj-wrap {
    width: min(var(--nav-container), 100%);
    margin: 0 auto;
    padding:
        clamp(72px, 9vw, 120px) var(--section-rail-right)
        clamp(80px, 10vw, 128px) var(--section-rail-left);
}

.kj-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(24px, 4vw, 64px);
    margin-bottom: clamp(36px, 5vw, 56px);
}

.kj-kicker {
    margin: 0 0 10px;
    font-size: 0.78rem;
    font-weight: var(--weight-ui);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.42);
}

.kj-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.6vw, 3.1rem);
    font-weight: var(--weight-display);
    letter-spacing: var(--tracking-display);
    line-height: 1.05;
    color: #111111;
}

.kj-lead {
    margin: 0;
    max-width: none;
    text-align: right;
    font-size: 1rem;
    line-height: 1.45;
    color: #3a3a3a;
}

.kj-job {
    background: #ffffff;
    padding: clamp(28px, 3.5vw, 44px);
    margin-bottom: 20px;
}

.kj-job__preview {
    min-width: 0;
}

.kj-job__role {
    margin: 0 0 8px;
    font-size: 0.75rem;
    font-weight: var(--weight-ui);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
}

.kj-job__name {
    margin: 0 0 18px;
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #111111;
}

.kj-job__pitch {
    margin: 0 0 22px;
    max-width: 68ch;
    font-size: 1.02rem;
    line-height: 1.6;
    color: #333333;
}

.kj-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.kj-facts li {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.35;
    color: #111111;
}

.kj-facts span {
    display: block;
    margin-bottom: 4px;
    font-size: 0.72rem;
    font-weight: var(--weight-ui);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.42);
}

.kj-job__more {
    margin-top: 8px;
    border-top: 1px solid #ececec;
}

.kj-job__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 16px 0 0;
    list-style: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: var(--weight-ui);
    color: #111111;
    user-select: none;
    transition: color 0.2s ease;
}

.kj-job__toggle::-webkit-details-marker {
    display: none;
}

.kj-job__toggle::marker {
    content: "";
}

.kj-job__toggle:hover {
    color: var(--red);
}

.kj-job__toggle:focus-visible {
    outline: 2px solid rgba(227, 6, 19, 0.32);
    outline-offset: 4px;
}

.kj-job__toggle-close {
    display: none;
}

.kj-job__more[open] .kj-job__toggle-open {
    display: none;
}

.kj-job__more[open] .kj-job__toggle-close {
    display: inline;
}

.kj-job__toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border: 1px solid rgba(17, 17, 17, 0.14);
    border-radius: 50%;
    color: rgba(17, 17, 17, 0.55);
    transition: transform 0.22s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.kj-job__toggle:hover .kj-job__toggle-icon {
    border-color: var(--red);
    background: var(--red);
    color: #ffffff;
}

.kj-job__more[open] .kj-job__toggle-icon {
    transform: rotate(180deg);
    border-color: #111111;
    background: #111111;
    color: #ffffff;
}

.kj-job__detail {
    padding-top: 20px;
}

.kj-job__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 40px;
    padding: 0 0 8px;
}

.kj-block {
    min-width: 0;
}

.kj-block--wide {
    grid-column: 1 / -1;
}

.kj-block h4 {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 600;
    color: #111111;
}

.kj-block ul {
    margin: 0;
    padding: 0 0 0 1.1em;
    color: #3a3a3a;
}

.kj-block li {
    margin: 0 0 6px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.kj-block p {
    margin: 0;
    max-width: 70ch;
    font-size: 0.98rem;
    line-height: 1.6;
    color: #3a3a3a;
}

.kj-reqs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px 20px;
    grid-column: 1 / -1;
    margin: 8px 0 0;
}

.kj-reqs div {
    margin: 0;
}

.kj-reqs dt {
    margin: 0 0 4px;
    font-size: 0.72rem;
    font-weight: var(--weight-ui);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.42);
}

.kj-reqs dd {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 500;
    color: #111111;
}

.kj-job__apply {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid #ececec;
    margin-top: 8px;
}

.kj-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    background: var(--red);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: var(--weight-ui);
    text-decoration: none;
}

.kj-btn:hover {
    background: var(--red-deep);
}

.kj-btn--ghost {
    background: transparent;
    color: #111111;
    border: 1px solid #111111;
}

.kj-btn--ghost:hover {
    background: #111111;
    color: #ffffff;
}

.kj-foot {
    margin: 28px 0 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: #555555;
}

.kj-foot__label {
    margin: 0 0 4px;
    font-size: 0.72rem;
    font-weight: var(--weight-ui);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.42);
}

.kj-foot__name {
    margin: 0 0 8px;
    font-size: 0.95rem;
    color: #111111;
}

.kj-foot__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 14px;
}

.kj-foot__links a {
    color: #111111;
    text-decoration: underline;
    text-underline-offset: 2px;
    white-space: nowrap;
}

.kj-foot__links a:hover {
    color: var(--red);
}

.kj-foot a {
    color: #111111;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.kj-foot a:hover {
    color: var(--red);
}

@media (max-width: 900px) {
    .kj-facts {
        grid-template-columns: 1fr 1fr;
    }

    .kj-job__body,
    .kj-reqs {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .kj-wrap {
        padding-top: 48px;
        padding-bottom: 64px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .kj-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 28px;
    }

    .kj-title {
        font-size: clamp(1.65rem, 7vw, 2.1rem);
    }

    .kj-lead {
        text-align: left;
        font-size: 0.95rem;
        max-width: 34ch;
    }

    .kj-job {
        padding: 22px 18px;
        margin-bottom: 14px;
        border-radius: 14px;
    }

    .kj-job__name {
        margin-bottom: 16px;
        font-size: clamp(1.25rem, 5.6vw, 1.5rem);
    }

    .kj-facts {
        grid-template-columns: 1fr 1fr;
        gap: 14px 12px;
    }

    .kj-facts li {
        font-size: 0.9rem;
    }

    .kj-job__toggle {
        min-height: 48px;
        padding-top: 14px;
        font-size: 0.9rem;
    }

    .kj-job__detail {
        padding-top: 18px;
    }

    .kj-job__pitch {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .kj-job__body,
    .kj-reqs {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .kj-job__apply {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding-top: 20px;
    }

    .kj-btn {
        width: 100%;
        min-height: 48px;
    }

    .kj-foot {
        margin-top: 24px;
        font-size: 0.86rem;
    }

    .kj-foot__links {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 860px) {
    .kh-wrap {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: clamp(72px, 16vw, 112px);
        padding-bottom: 72px;
    }

    .kh-aside {
        max-width: 42ch;
    }
}

@media (max-width: 640px) {
    .kh-wrap {
        gap: 22px;
        padding: 56px 16px 48px;
    }

    .kh-title {
        font-size: clamp(1.85rem, 8.2vw, 2.45rem);
        line-height: 1.05;
    }

    .kh-title__row {
        gap: 0.18em 0.22em;
    }

    .kh-aside {
        max-width: none;
    }

    .kh-lead {
        margin-bottom: 1.1rem;
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .kh-lead--close {
        margin-top: -0.45rem;
        margin-bottom: 1.25rem;
    }

    .kh-cta {
        min-height: 44px;
        align-items: center;
        font-size: 0.95rem;
    }

    .km {
        min-height: 58vh;
        padding: 72px 16px;
    }
}

.km {
    --cx-ink: #0d1117;
    display: grid;
    place-items: center;
    min-height: 88vh;
    padding: clamp(80px, 12vw, 140px) var(--section-rail-right)
        clamp(80px, 12vw, 140px) var(--section-rail-left);
    background: #ffffff;
    color: var(--cx-ink);
}

.km .cx-title__lead,
.km .cx-title__grad,
.km .cx-title__dot {
    animation: none;
    opacity: 0;
}

.km.is-in .cx-title__lead {
    animation: cxTitleLeadIn 1.15s cubic-bezier(0.25, 0.1, 0.25, 1) both;
}

.km.is-in .cx-title__grad {
    animation:
        cxTitleKeyIn 2.6s cubic-bezier(0.33, 0.1, 0.2, 1) 0.55s both,
        cxTitleShine 8s linear 3.2s infinite;
}

.km.is-in .cx-title__dot {
    animation: cxTitleKeyIn 2.6s cubic-bezier(0.33, 0.1, 0.2, 1) 0.75s both;
}

@media (max-width: 720px) {
    .km .cx-title {
        flex-flow: column;
        align-items: center;
        white-space: normal;
        gap: 0.18em;
    }
}

@media (prefers-reduced-motion: reduce) {
    .km .cx-title__lead,
    .km .cx-title__grad,
    .km .cx-title__dot {
        opacity: 1;
        animation: none;
    }
}

/* ═══════════════════════════════════════════════════════════
   KONTAKT — scan-first, rounded shells
═══════════════════════════════════════════════════════════ */
.cx {
    --cx-radius: 28px;
    --cx-radius-sm: 20px;
    --cx-ink: #0d1117;
    --cx-muted: #6b7683;
    --cx-line: #e6ebf1;
    --cx-shell: #f3f5f8;
    --cx-card: #ffffff;
    background: #ffffff;
    color: var(--cx-ink);
}

.cx a {
    color: inherit;
}

.cx-wrap {
    width: min(1480px, calc(100% - clamp(40px, 6.5vw, 104px)));
    margin: 0 auto;
    padding: clamp(96px, 14vw, 168px) 0 clamp(64px, 8vw, 96px);
}

.cx-intro {
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 0 0 clamp(40px, 5.5vw, 64px);
}

.cx-intro .kh-title__row {
    flex-wrap: nowrap;
    justify-content: center;
}

.cx-intro__lead,
.cx-intro__key {
    display: inline-block;
    backface-visibility: hidden;
    will-change: opacity, transform, filter;
}

.cx-intro__lead {
    animation: cxIntroIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.cx-intro__key {
    animation: cxIntroKeyIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.16s both;
}

@keyframes cxIntroIn {
    from {
        opacity: 0;
        filter: blur(7px);
        transform: translate3d(0, 0.28em, 0);
        letter-spacing: 0.02em;
    }
    to {
        opacity: 1;
        filter: blur(0);
        transform: translate3d(0, 0, 0);
        letter-spacing: inherit;
    }
}

@keyframes cxIntroKeyIn {
    from {
        opacity: 0;
        filter: blur(6px);
        transform: translate3d(0, 0.22em, 0) scale(0.97);
    }
    to {
        opacity: 1;
        filter: blur(0);
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@media (max-width: 640px) {
    .cx-intro .kh-title {
        font-size: clamp(1.35rem, 7.2vw, 2.2rem);
    }
}

.cx-title {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: baseline;
    gap: 0.72em;
    margin: 0;
    max-width: 100%;
    overflow: visible;
    font-family: var(--font-display);
    font-size: clamp(1.28rem, 4.15vw, 3.15rem);
    font-weight: var(--weight-title);
    letter-spacing: 0.08em;
    line-height: 1.15;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--cx-ink);
}

.cx-title__lead {
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: baseline;
    gap: 0.72em;
    font-size: 0.78em;
    font-weight: inherit;
    letter-spacing: 0.18em;
    backface-visibility: hidden;
    animation: cxTitleLeadIn 0.5s cubic-bezier(0.25, 0.1, 0.25, 1) both;
}

.cx-title__lead .cx-title__w {
    animation: none;
}

.cx-title__key {
    display: inline-flex;
    align-items: baseline;
    position: relative;
}

.cx-title__w {
    display: inline-block;
    backface-visibility: hidden;
}

.cx-title__grad {
    font-size: 1.18em;
    font-weight: var(--weight-display);
    letter-spacing: 0.12em;
    background: linear-gradient(90deg, var(--red) 0%, #ff6b52 42%, var(--accent-blue) 88%, var(--red) 100%);
    background-size: 220% 100%;
    background-position: 8% 50%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    backface-visibility: hidden;
    animation:
        cxTitleKeyIn 1.35s cubic-bezier(0.33, 0.1, 0.2, 1) 0.48s both,
        cxTitleShine 8s linear 2s infinite;
}

.cx-title__dot {
    display: inline-block;
    margin-left: 0.02em;
    font-weight: var(--weight-display);
    color: var(--red);
    backface-visibility: hidden;
    animation: cxTitleKeyIn 1.35s cubic-bezier(0.33, 0.1, 0.2, 1) 0.62s both;
}

@keyframes cxTitleLeadIn {
    from {
        opacity: 0;
        transform: translate3d(0, 0.16em, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes cxTitleKeyIn {
    from {
        opacity: 0;
        transform: translate3d(0, 0.3em, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes cxTitleShine {
    0%, 100% { background-position: 8% 50%; }
    50% { background-position: 92% 50%; }
}

@media (prefers-reduced-motion: reduce) {
    .cx-intro__lead,
    .cx-intro__key,
    .cx-title__lead,
    .cx-title__w,
    .cx-title__grad,
    .cx-title__dot {
        animation: none;
        filter: none;
        opacity: 1;
        transform: none;
        letter-spacing: inherit;
    }

    .cx-title__grad {
        background-position: 8% 50%;
    }

    .cx-badge::before {
        animation: none;
    }
}

.cx-shell {
    background: var(--cx-shell);
    border-radius: var(--cx-radius);
    padding: clamp(40px, 5.2vw, 72px) clamp(28px, 3.8vw, 56px);
}

#mapa {
    scroll-margin-top: calc(var(--nav-h) + 16px);
}

.cx-shell + .cx-shell {
    margin-top: clamp(22px, 2.8vw, 32px);
}

.cx-shell--photo {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        #11161c
        url("img/kontakt.webp") center / cover no-repeat;
    color: #ffffff;
}

.cx-shell--photo::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(
        180deg,
        rgba(8, 11, 16, 0.06) 0%,
        rgba(8, 11, 16, 0.16) 28%,
        rgba(8, 11, 16, 0.48) 40%,
        rgba(8, 11, 16, 0.88) 62%,
        rgba(8, 11, 16, 1) 100%
    );
    pointer-events: none;
}

.cx-shell--photo > * {
    position: relative;
    z-index: 1;
}

.cx-shell--photo .cx-desk__head {
    border-bottom-color: rgba(255, 255, 255, 0.18);
}

.cx-shell--photo .cx-desk__head .cx-label,
.cx-shell--photo .cx-desk__title,
.cx-shell--photo .cx-card--person strong,
.cx-shell--photo .cx-more {
    color: #ffffff;
}

.cx-shell--photo .cx-card--person .cx-label {
    color: rgba(255, 255, 255, 0.62);
}

.cx-shell--photo .cx-card--person .cx-card__meta > a,
.cx-shell--photo .cx-card--person .cx-tile__row a {
    color: rgba(255, 255, 255, 0.78);
}

.cx-shell--photo .cx-card--person .cx-card__meta > a:hover,
.cx-shell--photo .cx-card--person .cx-tile__row a:hover,
.cx-shell--photo .cx-more:hover {
    color: #ffffff;
}

.cx-shell--photo .cx-people-nav__btn {
    border-color: rgba(255, 255, 255, 0.38);
    color: #ffffff;
}

.cx-shell--photo .cx-people-nav__btn:hover:not(:disabled) {
    background: var(--red);
    border-color: var(--red);
    color: #ffffff;
}

.cx-shell--photo .cx-card--person .cx-copy {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.82);
}

.cx-shell--photo .cx-card--person .cx-copy:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.cx-label {
    margin: 0;
    font-size: 0.72rem;
    font-weight: var(--weight-ui);
    letter-spacing: 0.04em;
    text-transform: none;
    color: var(--cx-muted);
}

.cx-card {
    background: var(--cx-card);
    border-radius: var(--cx-radius-sm);
    box-shadow:
        0 1px 1px rgba(13, 17, 23, 0.03),
        0 10px 28px -20px rgba(13, 17, 23, 0.22);
    min-width: 0;
}

.cx-card--reach,
.cx-card:not(.cx-card--person) {
    padding: 32px 30px 34px;
}

.cx-card--reach {
    --cx-reach-label: 1.1rem;
    --cx-reach-value: 2.2rem;
    --cx-reach-meta: 1.4rem;
    --cx-reach-gap: 6px;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-height: 0;
}

.cx-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px 4px 7px;
    border: 1px solid rgba(13, 17, 23, 0.08);
    border-radius: 8px;
    background: #11161c;
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: 650;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.cx-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34c759;
    box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.45);
    animation: cxBadgePulse 2.2s ease-out infinite;
}

.cx-card--reach:has(.cx-badge) .cx-label {
    padding-right: 4.6rem;
}

@keyframes cxBadgePulse {
    0% { box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.45); }
    70%, 100% { box-shadow: 0 0 0 6px rgba(52, 199, 89, 0); }
}

.cx-card--reach .cx-icon {
    margin-top: calc(var(--cx-reach-label) + var(--cx-reach-gap) + (var(--cx-reach-value) - 46px) / 2);
}

.cx-card__body {
    min-width: 0;
    flex: 1;
}

.cx-card--reach .cx-card__body {
    display: grid;
    grid-template-rows: var(--cx-reach-label) var(--cx-reach-value) var(--cx-reach-meta);
    row-gap: var(--cx-reach-gap);
    align-items: center;
    min-width: 0;
}

.cx-card--reach .cx-label {
    line-height: var(--cx-reach-label);
}

.cx-card__title {
    margin: 0 0 4px;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: none;
    color: var(--cx-ink);
}

.cx-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--red);
    color: #ffffff;
}

.cx-icon svg,
.cx-icon [data-lucide] {
    width: 20px;
    height: 20px;
    stroke-width: 2.1;
}

.cx-reach {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.cx-tile__row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.cx-card--reach .cx-tile__row {
    margin-top: 0;
    min-height: 2.2rem;
    flex-wrap: nowrap;
}

.cx-phone,
.cx-mail,
.cx-card--reach .cx-addr {
    min-width: 0;
    font-size: clamp(1.02rem, 1.28vw, 1.2rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    color: var(--cx-ink);
    transition: color 0.2s ease;
}

.cx-phone:hover,
.cx-mail:hover {
    color: var(--red);
}

.cx-hours {
    margin: 8px 0 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--cx-muted);
}

.cx-card--reach .cx-hours {
    margin: 0;
    align-self: start;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cx-addr {
    margin: 6px 0 0;
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--cx-ink);
}

.cx-card--reach .cx-addr {
    margin: 0;
}

.cx-copy {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    margin: 0;
    padding: 7px 12px;
    border: 1px solid var(--cx-line);
    border-radius: 999px;
    background: #ffffff;
    font-size: 0.68rem;
    font-weight: var(--weight-ui);
    letter-spacing: 0.04em;
    text-transform: none;
    color: var(--cx-muted);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.cx-copy svg {
    width: 13px;
    height: 13px;
    stroke-width: 2;
}

.cx-copy:hover {
    color: var(--red);
    border-color: rgba(227, 6, 19, 0.35);
    background: rgba(227, 6, 19, 0.04);
}

.cx-copy.is-done {
    color: #ffffff;
    border-color: var(--red);
    background: var(--red);
}

.cx-card--reach .cx-copy {
    width: 32px;
    height: 32px;
    padding: 0;
    justify-content: center;
    border: none;
    background: #f3f5f7;
    color: #6b7683;
}

.cx-card--reach .cx-copy svg {
    width: 15px;
    height: 15px;
    stroke-width: 1.35;
}

.cx-copy__check {
    display: none;
}

.cx-card--reach .cx-copy.is-done .cx-copy__glyph {
    display: none;
}

.cx-card--reach .cx-copy.is-done .cx-copy__check {
    display: block;
}

.cx-card--reach .cx-copy:hover {
    color: var(--red);
    background: rgba(227, 6, 19, 0.07);
}

.cx-card--reach .cx-copy.is-done {
    color: #ffffff;
    background: var(--red);
}

.cx-card--person .cx-copy__label,
.cx-facts .cx-copy__label {
    display: none;
}

.cx-card--person .cx-copy,
.cx-facts .cx-copy {
    padding: 6px;
}

.cx-stage {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 20px;
    align-items: stretch;
    min-height: clamp(420px, 42vw, 560px);
}

.cx-map {
    position: relative;
    min-height: clamp(380px, 40vw, 560px);
    overflow: hidden;
    border-radius: var(--cx-radius-sm);
    background: #dce3ea;
    box-shadow:
        0 1px 1px rgba(13, 17, 23, 0.03),
        0 10px 28px -20px rgba(13, 17, 23, 0.22);
}

.cx-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.cx-panel {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 28px 28px 24px;
    background: var(--cx-card);
    border-radius: var(--cx-radius-sm);
    box-shadow:
        0 1px 1px rgba(13, 17, 23, 0.03),
        0 10px 28px -20px rgba(13, 17, 23, 0.22);
}

.cx-panel__head {
    margin: 0 0 4px;
}

.cx-panel__head .cx-label {
    font-size: 0.64rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cx-panel__title {
    margin: 8px 0 0;
    font-family: var(--font-display);
    font-size: clamp(1.22rem, 1.8vw, 1.48rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--cx-ink);
}

.cx-visit {
    list-style: none;
    margin: 0;
    padding: 10px 0 0;
}

.cx-visit li {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 13px 0;
    border-top: 1px solid var(--cx-line);
}

.cx-visit li:last-child {
    border-bottom: 1px solid var(--cx-line);
}

.cx-visit__ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 1.4em;
    margin: 0;
    color: #8a939d;
}

.cx-visit__ico svg,
.cx-visit__ico [data-lucide] {
    width: 16px;
    height: 16px;
    stroke-width: 1.6;
}

.cx-visit__val {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.4;
    color: var(--cx-ink);
}

.cx-visit__offices {
    min-width: 0;
}

.cx-visit__place {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    text-align: left;
    font: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.4;
    color: var(--cx-ink);
    cursor: pointer;
    border-radius: 6px;
    transition: color 0.18s ease;
}

.cx-visit__place-text {
    min-width: 0;
    flex: 1;
}

.cx-visit__place:hover,
.cx-visit__place:focus-visible,
.cx-visit__place.is-active {
    color: var(--red);
}

.cx-visit__place:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 3px;
}

.cx-visit__office {
    display: grid;
    grid-template-columns: 5.6em minmax(0, 1fr) auto;
    gap: 8px 12px;
    align-items: center;
    width: 100%;
    margin: 0 0 8px;
    padding: 4px 2px;
    border: 0;
    border-radius: 6px;
    background: none;
    text-align: left;
    font: inherit;
    cursor: pointer;
    transition: background-color 0.18s ease;
}

.cx-visit__office:last-of-type {
    margin-bottom: 0;
}

.cx-visit__office:hover,
.cx-visit__office:focus-visible {
    background: rgba(227, 6, 19, 0.04);
}

.cx-visit__office:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 2px;
}

.cx-visit__office strong {
    font-size: 0.92rem;
    font-weight: 650;
    letter-spacing: -0.02em;
    color: var(--cx-ink);
    transition: color 0.18s ease;
}

.cx-visit__office-addr {
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.35;
    color: var(--cx-muted);
}

.cx-visit__map-hint {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: rgba(13, 17, 23, 0.32);
    transition: color 0.18s ease, transform 0.18s ease;
}

.cx-visit__map-hint svg,
.cx-visit__map-hint [data-lucide] {
    width: 15px;
    height: 15px;
    stroke-width: 2;
}

.cx-visit__office:hover strong,
.cx-visit__office:focus-visible strong,
.cx-visit__office.is-active strong {
    color: var(--red);
}

.cx-visit__office:hover .cx-visit__map-hint,
.cx-visit__office:focus-visible .cx-visit__map-hint,
.cx-visit__office.is-active .cx-visit__map-hint,
.cx-visit__place:hover .cx-visit__map-hint,
.cx-visit__place:focus-visible .cx-visit__map-hint,
.cx-visit__place.is-active .cx-visit__map-hint {
    color: var(--red);
}

.cx-visit__office.is-active .cx-visit__office-addr {
    color: rgba(13, 17, 23, 0.72);
}

.cx-visit__hint {
    margin: 6px 0 0;
    font-size: 0.75rem;
    line-height: 1.35;
    color: var(--cx-muted);
}

.cx-panel__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding-top: 22px;
}

.cx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 0;
    padding: var(--btn-pad-y) var(--btn-pad-x);
    border: 1.5px solid var(--red);
    border-radius: var(--btn-radius);
    background: transparent;
    color: var(--red);
    font-family: var(--font-display);
    font-size: var(--btn-font-size);
    font-weight: var(--weight-ui);
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: background 0.22s var(--btn-ease),
                border-color 0.22s var(--btn-ease),
                color 0.22s var(--btn-ease);
}

.cx-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: #ffffff;
}

.cx-panel__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.cx-btn--ghost {
    background: transparent;
    color: var(--cx-ink);
    border-color: rgba(13, 17, 23, 0.22);
}

.cx-btn--ghost:hover {
    background: rgba(13, 17, 23, 0.04);
    border-color: #0d1117;
    color: var(--cx-ink);
}

.cx-desk__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--cx-line);
}

.cx-desk__head .cx-label {
    margin-bottom: 8px;
    font-size: 0.64rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cx-desk__title {
    margin: 0;
    font-size: clamp(1.22rem, 1.8vw, 1.48rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--cx-ink);
}

.cx-people-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.cx-people-nav__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0;
    padding: 0;
    border: 1.5px solid rgba(13, 17, 23, 0.22);
    border-radius: var(--btn-radius);
    background: transparent;
    color: var(--cx-ink);
    cursor: pointer;
    transition: color 0.22s var(--btn-ease),
                border-color 0.22s var(--btn-ease),
                background 0.22s var(--btn-ease);
}

.cx-people-nav__btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.8;
}

.cx-people-nav__btn:hover:not(:disabled) {
    background: var(--red);
    border-color: var(--red);
    color: #ffffff;
}

.cx-people-nav__btn:disabled {
    opacity: 0.32;
    cursor: default;
}

.cx-people {
    --cx-people-gap: 16px;
    --cx-people-visible: 3;
    display: flex;
    gap: var(--cx-people-gap);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    padding: 4px 0 2px;
    touch-action: pan-x;
}

.cx-people::-webkit-scrollbar {
    display: none;
}

.cx-people.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.cx-card--person {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    flex: 0 0 calc((100% - (var(--cx-people-visible) - 1) * var(--cx-people-gap)) / var(--cx-people-visible));
    min-width: 220px;
    padding: 8px 12px 18px;
    min-height: 0;
    overflow: visible;
    scroll-snap-align: start;
    user-select: none;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.cx-card__photo {
    position: relative;
    margin: 0 auto 18px;
    width: 72%;
    max-width: 196px;
    aspect-ratio: 1 / 1.16;
    background: transparent;
    overflow: hidden;
    border-radius: 0 0 56px 56px;
}

.cx-card__disc {
    display: none;
}

.cx-card__fill {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    border-radius: 0 0 56px 56px;
    background: transparent;
    pointer-events: none;
}

.cx-card__fill img {
    position: absolute;
    left: 50%;
    bottom: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    transform: translateX(-50%);
    object-fit: contain;
    object-position: center bottom;
    background: transparent;
}

.cx-card__meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
}

.cx-card--person .cx-label {
    margin: 0;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cx-card--person strong {
    margin-top: 6px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: var(--cx-ink);
}

.cx-card--person .cx-card__meta > a {
    margin-top: 10px;
}

.cx-card--person .cx-card__meta > a,
.cx-card--person .cx-tile__row a {
    font-size: 0.84rem;
    line-height: 1.35;
    text-decoration: none;
    color: #5d6772;
    font-variant-numeric: tabular-nums;
    min-width: 0;
    transition: color 0.18s ease;
}

.cx-card--person .cx-card__meta > a:hover,
.cx-card--person .cx-tile__row a:hover {
    color: var(--red);
}

.cx-card--person .cx-tile__row {
    justify-content: center;
    margin-top: 4px;
    gap: 6px;
    flex-wrap: nowrap;
    min-width: 0;
}

.cx-card--person .cx-tile__row a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cx-card--person .cx-copy {
    width: 28px;
    height: 28px;
    padding: 0;
    justify-content: center;
    border: none;
    border-radius: 0;
    background: #eef1f4;
    color: #6b7683;
}

.cx-card--person .cx-copy svg {
    width: 14px;
    height: 14px;
    stroke-width: 1.35;
}

.cx-card--person .cx-copy:hover {
    color: var(--red);
    background: rgba(227, 6, 19, 0.07);
}

.cx-more {
    display: inline-block;
    margin: 18px 0 0;
    font-size: 0.82rem;
    font-weight: var(--weight-ui);
    letter-spacing: 0.02em;
    text-transform: none;
    text-decoration: none;
    color: var(--cx-ink);
}

.cx-more:hover {
    color: var(--red);
}

.cx-dir {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin: 0;
    padding: 0;
    list-style: none;
    background: var(--cx-line);
    border: 1px solid var(--cx-line);
    border-radius: var(--cx-radius-sm);
    overflow: hidden;
}

.cx-dir__item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
    padding: 18px 20px;
    background: var(--cx-card);
    min-width: 0;
}

.cx-dir__avatar {
    position: relative;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--red);
    overflow: hidden;
}

.cx-dir__avatar--photo {
    height: 64px;
    overflow: hidden;
    border-radius: 50%;
    background: var(--red);
}

.cx-dir__disc {
    display: none;
}

.cx-dir__avatar--photo img {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    transform: none;
    object-fit: cover;
    object-position: center 18%;
    mask-image: none;
    -webkit-mask-image: none;
}

.cx-dir__avatar--empty {
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: var(--weight-display);
    letter-spacing: 0.06em;
    color: #ffffff;
}

.cx-dir__photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    flex-shrink: 0;
    background: var(--red);
}

.cx-dir__photo--empty {
    display: grid;
    place-items: center;
    font-size: 0.72rem;
    font-weight: var(--weight-ui);
    letter-spacing: 0.04em;
    color: #ffffff;
    background: var(--red);
}

.cx-dir__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.cx-dir__body strong {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--cx-ink);
}

.cx-dir__role {
    font-size: 0.78rem;
    line-height: 1.35;
    color: var(--cx-muted);
}

.cx-dir__body a {
    font-size: 0.84rem;
    line-height: 1.4;
    color: rgba(13, 17, 23, 0.72);
    text-decoration: none;
    overflow-wrap: anywhere;
}

.cx-dir__body a:hover {
    color: var(--red);
}

.cx-dir__item--cta {
    grid-column: 1 / -1;
    align-items: stretch;
    background: var(--cx-shell);
    padding: clamp(20px, 2.4vw, 24px) clamp(20px, 2.8vw, 28px);
}

.cx-dir__cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(16px, 2.2vw, 28px);
    align-items: center;
    width: 100%;
}

.cx-dir__cta-copy {
    min-width: 0;
}

.cx-dir__cta-kicker {
    margin: 0 0 6px;
    font-family: var(--font-body);
    font-size: 0.64rem;
    font-weight: var(--weight-ui);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cx-muted);
}

.cx-dir__cta-title {
    display: block;
    margin: 0 0 6px;
    font-family: var(--font-display);
    font-size: clamp(1.02rem, 1.35vw, 1.18rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: var(--cx-ink);
}

.cx-dir__cta-text {
    margin: 0;
    max-width: 38em;
    font-family: var(--font-body);
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--cx-muted);
}

.cx-dir__cta-text a {
    color: var(--cx-ink);
    font-weight: 600;
    text-decoration: none;
}

.cx-dir__cta-text a:hover {
    color: var(--red);
}

.cx-dir__cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.cx-dir__cta-actions .cx-btn {
    width: auto;
    min-width: 132px;
}

@media (min-width: 1100px) {
    .cx-dir {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .cx-dir__item--cta {
        grid-column: span 2;
    }
}

@media (max-width: 900px) {
    .cx-dir__cta {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .cx-dir__cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 700px) {
    .cx-dir {
        grid-template-columns: 1fr;
    }

    .cx-dir__item--cta {
        grid-column: 1;
    }
}

.cx-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cx-facts {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
}

.cx-facts li {
    display: grid;
    grid-template-columns: 5.5rem minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px 12px;
    min-height: 58px;
    border-top: 1px solid var(--cx-line);
}

.cx-facts li:last-child {
    border-bottom: 1px solid var(--cx-line);
}

.cx-facts__v {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--cx-ink);
    font-variant-numeric: tabular-nums;
}

.cx-facts a.cx-facts__v {
    text-decoration: none;
    font-weight: 500;
    transition: color 0.18s ease;
}

.cx-facts a.cx-facts__v:hover {
    color: var(--red);
}

.cx-facts--docs li {
    grid-template-columns: 1fr;
    padding: 0;
    min-height: 0;
}

.cx-facts--docs a {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr) 14px;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    text-decoration: none;
}

.cx-facts__ico,
.cx-facts__go {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #c2cbd6;
}

.cx-facts__ico svg,
.cx-facts__go svg {
    width: 15px;
    height: 15px;
    stroke-width: 2;
}

.cx-facts__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    min-width: 0;
}

.cx-facts__meta strong {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--cx-ink);
}

.cx-facts__meta em {
    font-style: normal;
    font-size: 0.75rem;
    color: var(--cx-muted);
}

.cx-facts--docs a:hover .cx-facts__meta strong,
.cx-facts--docs a:hover .cx-facts__go {
    color: var(--red);
}

@media (max-width: 1320px) {
    .cx-people {
        --cx-people-visible: 2;
    }
}

@media (max-width: 980px) {
    .cx-reach,
    .cx-stage,
    .cx-split {
        grid-template-columns: 1fr;
    }

    .cx-reach {
        gap: 14px;
    }

    .cx-panel {
        order: 1;
        padding: 24px 22px 20px;
    }

    .cx-map {
        order: 2;
        min-height: 300px;
    }

    .cx-stage {
        min-height: 0;
        gap: 14px;
    }

    .cx-dir {
        grid-template-columns: 1fr;
    }

    .cx-dir__item--cta {
        grid-column: 1;
    }
}

@media (max-width: 860px) {
    .cx-people {
        --cx-people-visible: 1;
    }
}

@media (max-width: 640px) {
    .cx-wrap {
        width: calc(100% - 24px);
        padding-top: 64px;
        padding-bottom: 48px;
    }

    .cx-intro {
        margin-bottom: 36px;
    }

    .cx-intro .kh-title {
        font-size: clamp(1.55rem, 8vw, 2.15rem);
    }

    .cx-intro .kh-title__row {
        flex-wrap: wrap;
        row-gap: 0.12em;
    }

    .cx-shell {
        padding: 22px 16px;
        border-radius: 18px;
    }

    .cx-shell + .cx-shell {
        margin-top: 14px;
    }

    .cx-card--reach,
    .cx-card:not(.cx-card--person) {
        padding: 20px 18px;
    }

    .cx-card--reach {
        --cx-reach-label: 1rem;
        --cx-reach-value: auto;
        --cx-reach-meta: auto;
        --cx-reach-gap: 4px;
        gap: 14px;
        min-height: 0;
        align-items: center;
    }

    .cx-card--reach .cx-icon {
        width: 42px;
        height: 42px;
        margin-top: 0;
    }

    .cx-card--reach .cx-card__body {
        grid-template-rows: auto auto auto;
        align-items: start;
    }

    .cx-badge {
        top: 12px;
        right: 12px;
        padding: 4px 7px;
        font-size: 0.58rem;
    }

    .cx-card--reach:has(.cx-badge) .cx-label {
        padding-right: 4.2rem;
    }

    .cx-phone,
    .cx-mail,
    .cx-card--reach .cx-addr {
        font-size: 1.05rem;
        letter-spacing: -0.03em;
        white-space: nowrap;
        overflow: visible;
        text-overflow: clip;
    }

    .cx-card--reach .cx-hours {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        font-size: 0.8rem;
    }

    .cx-card--reach .cx-copy {
        width: 40px;
        height: 40px;
    }

    .cx-title {
        font-size: clamp(1.05rem, 6.6vw, 1.85rem);
        gap: 0.5em;
        letter-spacing: 0.06em;
    }

    .cx-title__lead {
        gap: 0.5em;
        letter-spacing: 0.12em;
    }

    .cx-desk__head {
        margin-bottom: 16px;
    }

    .cx-desk__title {
        font-size: clamp(1.2rem, 5.5vw, 1.45rem);
    }

    .cx-copy__label {
        display: none;
    }

    .cx-copy {
        padding: 6px;
        min-width: 40px;
        min-height: 40px;
        justify-content: center;
    }

    .cx-map {
        min-height: 260px;
        border-radius: 14px;
    }

    .cx-panel {
        padding: 20px 16px 16px;
        border-radius: 14px;
    }

    .cx-panel__title {
        font-size: 1.2rem;
    }

    .cx-visit li {
        padding: 12px 0;
        gap: 10px;
    }

    .cx-visit__office {
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "city icon"
            "addr icon";
        gap: 2px 8px;
        align-items: center;
        margin-bottom: 12px;
    }

    .cx-visit__office strong {
        grid-area: city;
    }

    .cx-visit__office-addr {
        grid-area: addr;
    }

    .cx-visit__office .cx-visit__map-hint {
        grid-area: icon;
        align-self: center;
    }

    .cx-visit__hint {
        margin-top: 2px;
    }

    .cx-panel__actions {
        padding-top: 16px;
        gap: 8px;
    }

    .cx-panel__row {
        grid-template-columns: 1fr;
    }

    .cx-btn {
        min-height: 48px;
    }

    .cx-dir {
        border-radius: 14px;
    }

    .cx-dir__item {
        align-items: flex-start;
        gap: 14px;
        padding: 16px;
    }

    .cx-dir__avatar,
    .cx-dir__avatar--photo,
    .cx-dir__photo {
        width: 56px;
        height: 56px;
    }

    .cx-dir__body {
        gap: 3px;
    }

    .cx-dir__body strong {
        font-size: 0.98rem;
    }

    .cx-dir__role {
        margin-bottom: 2px;
        font-size: 0.76rem;
    }

    .cx-dir__body a {
        display: inline-block;
        padding: 2px 0;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .cx-dir__cta {
        gap: 16px;
        padding: 4px 0;
    }

    .cx-dir__cta-title {
        font-size: 1.15rem;
    }

    .cx-dir__cta-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 8px;
    }

    .cx-dir__cta-actions .cx-btn {
        width: 100%;
        min-width: 0;
        min-height: 48px;
    }

    .cx-split {
        gap: 14px;
    }

    .cx-facts li {
        grid-template-columns: minmax(0, 1fr) auto;
        min-height: 52px;
        gap: 8px 10px;
    }

    .cx-facts li .cx-label {
        grid-column: 1 / -1;
        margin-bottom: -2px;
    }

    .cx-facts__v {
        font-size: 0.95rem;
    }

    .cx-facts--docs a {
        min-height: 56px;
        padding-inline: 4px;
    }
}
