/*
Theme Name: Upsight
Theme URI: https://upsight.sk
Author: Andrej
Description: Firemna tema Upsight s.r.o. Prepis navrhu z Claude Design do klasickej WordPress temy.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: upsight
*/

/* ============================================================
   1. Pisma
   ============================================================ */

@font-face {
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 400 700;
    font-stretch: 100%;
    font-display: swap;
    src: url('assets/fonts/archivo-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;
}

@font-face {
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 400 700;
    font-stretch: 100%;
    font-display: swap;
    src: url('assets/fonts/archivo-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: 'Archivo';
    font-style: normal;
    font-weight: 400 700;
    font-stretch: 100%;
    font-display: swap;
    src: url('assets/fonts/archivo-vietnamese.woff2') format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
        U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
        U+1EA0-1EF9, U+20AB;
}

/* ============================================================
   2. Tokeny
   ============================================================ */

:root {
    /* Farby */
    --u-navy: #0d1a2b;
    --u-blue: #10459f;
    --u-blue-dark: #0a2f74;
    --u-blue-mid: #3a7bd5;
    --u-blue-pale: #a8c8ff;
    --u-blue-soft: #8fb4f0;

    --u-body: #3c4b60;
    --u-muted: #4a5a70;
    --u-subtle: #7a8798;
    --u-faint: #8d9bb0;

    --u-line: #e3e8f0;
    --u-line-soft: #eaeff6;
    --u-line-mid: #dde3ec;
    --u-line-strong: #c8d3e2;
    --u-line-dash: #d3dceb;

    --u-bg-soft: #f4f6f9;
    --u-bg-cool-1: #f2f6fc;
    --u-bg-cool-2: #e8eff9;

    --u-dark-line: #23334a;
    --u-dark-line-2: #26364d;
    --u-dark-body: #b9c6d8;
    --u-dark-body-2: #a9b8cc;
    --u-dark-faint: #6d809b;

    --u-footer-bg: #08111d;
    --u-footer-text: #9fb0c6;

    /* Pisma */
    --u-font-display: 'Archivo', Helvetica, Arial, sans-serif;
    --u-font-body: Helvetica, 'Helvetica Neue', Arial, sans-serif;
    --u-font-mono: ui-monospace, Menlo, Consolas, monospace;

    /* Rozmery */
    --u-max: 1440px;
    --u-gutter: 40px;
    --u-header-h: 64px;
    --u-section-y: 104px;
    --u-radius: 2px;

    /* Pohyb */
    --u-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ============================================================
   3. Zaklad
   ============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #ffffff;
    color: var(--u-navy);
    font-family: var(--u-font-body);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-wrap: break-word;
}

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

a {
    color: var(--u-blue);
    text-decoration: none;
}

a:hover {
    color: var(--u-blue-dark);
    text-decoration: underline;
}

::selection {
    background: #cfe0ff;
}

:focus-visible {
    outline: 2px solid var(--u-blue);
    outline-offset: 2px;
}

.u-skip {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 200;
    background: #ffffff;
    color: var(--u-navy);
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 500;
}

.u-skip:focus {
    left: 12px;
    top: 12px;
}

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

.u-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.u-main {
    flex: 1;
}

/* ============================================================
   4. Rozvrh
   ============================================================ */

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

.u-container--narrow {
    max-width: 1120px;
}

.u-section {
    padding: var(--u-section-y) 0;
}

.u-section--tight {
    padding: 88px 0;
}

.u-section--white {
    background: #ffffff;
}

.u-section--soft {
    background: var(--u-bg-soft);
}

.u-section--dark {
    background: var(--u-navy);
    color: #ffffff;
}

.u-section--line-top {
    border-top: 1px solid var(--u-line);
}

.u-section--line-bottom {
    border-bottom: 1px solid var(--u-line);
}

/* ============================================================
   5. Typografia
   ============================================================ */

.u-kicker {
    font-size: 12px;
    letter-spacing: 0.16em;
    color: var(--u-blue);
    font-weight: 600;
    text-transform: uppercase;
}

.u-kicker--light {
    color: var(--u-blue-soft);
}

.u-h1 {
    font-family: var(--u-font-display);
    font-weight: 600;
    font-size: clamp(32px, 6.2vw, 64px);
    line-height: 1.04;
    letter-spacing: -0.028em;
    margin: 20px 0 0;
    text-wrap: pretty;
}

.u-h2 {
    font-family: var(--u-font-display);
    font-weight: 600;
    font-size: clamp(26px, 4.2vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.022em;
    margin: 16px 0 0;
    text-wrap: pretty;
}

.u-h2--mid {
    font-size: clamp(25px, 4vw, 42px);
    line-height: 1.12;
}

.u-h2--small {
    font-size: clamp(23px, 3.4vw, 34px);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.u-h3 {
    font-family: var(--u-font-display);
    font-weight: 600;
    font-size: 19px;
    letter-spacing: -0.012em;
    margin: 0;
}

.u-lead {
    margin: 24px 0 0;
    font-size: 18px;
    line-height: 1.55;
    color: var(--u-body);
    text-wrap: pretty;
}

.u-lead--sm {
    margin: 18px 0 0;
    font-size: 17px;
    line-height: 1.6;
}

.u-lead--light {
    color: var(--u-dark-body);
}

.u-measure {
    max-width: 680px;
}

.u-measure--wide {
    max-width: 900px;
}

.u-slot {
    font-family: var(--u-font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    color: var(--u-faint);
}

/* ============================================================
   6. Tlacidla
   ============================================================ */

.u-btn {
    display: inline-block;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    padding: 14px 26px;
    border-radius: var(--u-radius);
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.u-btn:hover {
    text-decoration: none;
}

.u-btn--dark {
    color: #ffffff;
    background: var(--u-navy);
}

.u-btn--dark:hover {
    background: #17293f;
    color: #ffffff;
}

.u-btn--blue {
    color: #ffffff;
    background: var(--u-blue);
}

.u-btn--blue:hover {
    background: var(--u-blue-dark);
    color: #ffffff;
}

.u-btn--light {
    color: var(--u-navy);
    background: #ffffff;
    border-color: var(--u-line-strong);
}

.u-btn--light:hover {
    background: #f4f7fc;
    border-color: #a9bbd4;
    color: var(--u-navy);
}

.u-btn--ghost {
    color: #ffffff;
    background: transparent;
    border-color: #3a4c66;
}

.u-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.u-btn--sm {
    font-size: 14px;
    padding: 9px 18px;
}

.u-btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.u-textlink {
    font-size: 15px;
    font-weight: 500;
    color: var(--u-blue);
    white-space: nowrap;
}

/* ============================================================
   7. Hlavicka
   ============================================================ */

.u-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(1.4) blur(10px);
    border-bottom: 1px solid var(--u-line);
}

.u-header__inner {
    max-width: var(--u-max);
    margin: 0 auto;
    padding: 0 32px;
    height: var(--u-header-h);
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 0;
}

.u-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--u-navy);
    text-decoration: none;
    flex-shrink: 0;
}

.u-brand:hover {
    color: var(--u-navy);
    text-decoration: none;
}

.u-brand__mark {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--u-blue-mid) 0 50%, var(--u-blue) 50% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 62%, 50% 100%, 0 62%);
}

.u-brand__name {
    font-family: var(--u-font-display);
    font-weight: 700;
    font-size: 17px;
    letter-spacing: -0.01em;
}

.u-header__rule {
    width: 1px;
    height: 26px;
    background: var(--u-line-mid);
    flex-shrink: 0;
}

.u-nav {
    min-width: 0;
}

.u-nav__list {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.u-nav__list::-webkit-scrollbar {
    display: none;
}

.u-nav__link,
.u-nav__list a {
    display: block;
    font-size: 14px;
    color: #26364b;
    padding: 8px 10px;
    border-radius: 4px;
    white-space: nowrap;
    text-decoration: none;
    transition: background 160ms ease, color 160ms ease;
}

.u-nav__link:hover,
.u-nav__list a:hover {
    background: #eef2f8;
    color: var(--u-blue);
    text-decoration: none;
}

.u-header__actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.u-lang {
    display: flex;
    border: 1px solid var(--u-line-mid);
    border-radius: 999px;
    overflow: hidden;
    flex-shrink: 0;
}

.u-lang__btn {
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 6px 12px;
    color: #4a5a70;
    white-space: nowrap;
}

.u-lang__btn[aria-current='true'] {
    background: var(--u-navy);
    color: #ffffff;
}

.u-burger {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--u-line-mid);
    border-radius: 4px;
    background: #ffffff;
    cursor: pointer;
    padding: 0;
    position: relative;
    flex-shrink: 0;
}

.u-burger__bar,
.u-burger__bar::before,
.u-burger__bar::after {
    position: absolute;
    left: 50%;
    width: 18px;
    height: 1.5px;
    background: var(--u-navy);
    transform: translateX(-50%);
    transition: transform 180ms var(--u-ease), opacity 120ms ease;
}

.u-burger__bar {
    top: 50%;
    margin-top: -0.75px;
}

.u-burger__bar::before,
.u-burger__bar::after {
    content: '';
    left: 0;
    transform: none;
}

.u-burger__bar::before {
    top: -6px;
}

.u-burger__bar::after {
    top: 6px;
}

.u-burger[aria-expanded='true'] .u-burger__bar {
    background: transparent;
}

.u-burger[aria-expanded='true'] .u-burger__bar::before {
    transform: translateY(6px) rotate(45deg);
}

.u-burger[aria-expanded='true'] .u-burger__bar::after {
    transform: translateY(-6px) rotate(-45deg);
}

/* ============================================================
   8. Hero
   ============================================================ */

.u-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--u-bg-cool-1) 0%, var(--u-bg-cool-2) 100%);
    border-bottom: 1px solid var(--u-line);
    padding-bottom: 64px;
}

.u-hero__hatch {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background: repeating-linear-gradient(115deg, rgba(16, 69, 159, 0.1) 0 2px, transparent 2px 26px);
    pointer-events: none;
}

.u-hero__orb {
    position: absolute;
    right: -120px;
    top: -80px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(58, 123, 213, 0.35), rgba(16, 69, 159, 0.05) 65%, transparent 70%);
    transition: transform 420ms var(--u-ease);
    pointer-events: none;
}

.u-hero__inner {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 96px 40px 0;
    text-align: center;
    animation: u-rise 620ms ease both;
}

.u-hero__sub {
    max-width: 660px;
    margin: 24px auto 0;
    font-size: 18px;
    line-height: 1.55;
    color: var(--u-body);
    text-wrap: pretty;
}

.u-hero__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

@keyframes u-rise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* Hero podstranok */
.u-subhero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #0a1d3d 0%, var(--u-blue) 58%, #2f6fc4 100%);
    color: #ffffff;
}

.u-subhero__hatch {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background: repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.16) 0 2px, transparent 2px 26px);
    pointer-events: none;
}

.u-subhero__orb {
    position: absolute;
    right: 6%;
    top: -160px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, rgba(126, 180, 255, 0.55), rgba(16, 69, 159, 0.15) 62%, transparent 70%);
    transition: transform 420ms var(--u-ease);
    pointer-events: none;
}

.u-crumb {
    position: relative;
    max-width: var(--u-max);
    margin: 0 auto;
    padding: 26px 32px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
}

.u-crumb a {
    color: rgba(255, 255, 255, 0.72);
}

.u-crumb a:hover {
    color: #ffffff;
}

.u-crumb__current {
    color: #ffffff;
}

.u-subhero__inner {
    position: relative;
    max-width: var(--u-max);
    margin: 0 auto;
    padding: 56px 32px 88px;
}

.u-subhero .u-h1 {
    max-width: 880px;
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-top: 22px;
}

.u-subhero__sub {
    margin: 24px 0 0;
    font-size: 19px;
    line-height: 1.55;
    color: #d3e0f5;
    max-width: 680px;
    text-wrap: pretty;
}

.u-subhero .u-kicker {
    color: var(--u-blue-pale);
    letter-spacing: 0.18em;
}

/* ============================================================
   9. Prepinac segmentov
   ============================================================ */

.u-seg {
    position: relative;
    max-width: 1120px;
    margin: 56px auto 0;
    padding: 0 40px;
}

.u-seg__tabs {
    background: #ffffff;
    border: 1px solid var(--u-line);
    border-radius: 999px;
    box-shadow: 0 18px 40px -22px rgba(13, 26, 43, 0.35);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 6px;
}

.u-seg__tab {
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 20px;
    border-radius: 999px;
    color: #26364b;
    transition: background 160ms ease, color 160ms ease;
}

.u-seg__tab[aria-selected='true'] {
    background: var(--u-navy);
    color: #ffffff;
}

.u-seg__panel {
    background: #ffffff;
    border: 1px solid var(--u-line);
    border-top: none;
    margin: 0 24px;
    padding: 26px 32px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.u-seg__panel[hidden] {
    display: none;
}

.u-seg__main {
    flex: 1;
}

.u-seg__title {
    font-family: var(--u-font-display);
    font-weight: 600;
    font-size: 20px;
    letter-spacing: -0.015em;
}

.u-seg__body {
    margin: 8px 0 0;
    font-size: 15px;
    line-height: 1.55;
    color: var(--u-body);
    max-width: 620px;
}

.u-seg__aside {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 230px;
    border-left: 1px solid var(--u-line-soft);
    padding-left: 28px;
}

.u-seg__label {
    font-size: 12px;
    letter-spacing: 0.12em;
    color: var(--u-subtle);
    text-transform: uppercase;
}

.u-seg__scope {
    font-size: 14px;
    color: var(--u-navy);
    line-height: 1.6;
}

/* ============================================================
   10. Kotviaca navigacia
   ============================================================ */

.u-subnav {
    position: sticky;
    top: var(--u-header-h);
    z-index: 50;
    background: #ffffff;
    border-bottom: 1px solid var(--u-line);
}

.u-subnav__inner {
    max-width: var(--u-max);
    margin: 0 auto;
    padding: 0 32px;
    height: 56px;
    display: flex;
    align-items: center;
    gap: 24px;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.u-subnav__inner::-webkit-scrollbar {
    display: none;
}

.u-subnav__link {
    font-size: 14px;
    color: #26364b;
    white-space: nowrap;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: color 160ms ease, border-color 160ms ease;
}

.u-subnav__link:hover {
    text-decoration: none;
    color: var(--u-blue);
}

.u-subnav__link.is-active {
    color: var(--u-blue);
    border-bottom-color: var(--u-blue);
}

.u-subnav__cta {
    margin-left: auto;
}

/* ============================================================
   11. Logo pas
   ============================================================ */

.u-logos {
    background: #ffffff;
    border-bottom: 1px solid var(--u-line-soft);
}

.u-logos__inner {
    max-width: var(--u-max);
    margin: 0 auto;
    padding: 36px var(--u-gutter);
    display: flex;
    align-items: center;
    gap: 44px;
    flex-wrap: wrap;
}

.u-logos__label {
    font-size: 13px;
    color: var(--u-subtle);
    letter-spacing: 0.04em;
    max-width: 210px;
    line-height: 1.5;
}

.u-logos__grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    align-items: center;
    min-width: 260px;
}

.u-logos__item {
    height: 30px;
    border: 1px dashed var(--u-line-dash);
    display: grid;
    place-items: center;
    font-family: var(--u-font-mono);
    font-size: 10px;
    color: #9aa6b8;
}

/* ============================================================
   12. Karty a dlazdice
   ============================================================ */

.u-grid {
    display: grid;
    gap: 24px;
    margin-top: 44px;
}

.u-grid--4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

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

.u-card {
    border: 1px solid var(--u-line);
    background: #ffffff;
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
    transition: box-shadow 180ms ease, transform 180ms ease;
}

.u-card:hover {
    box-shadow: 0 18px 34px -24px rgba(13, 26, 43, 0.45);
    transform: translateY(-2px);
    color: inherit;
    text-decoration: none;
}

.u-card--plain {
    border-top: 2px solid var(--u-blue);
}

.u-card__body {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.u-card__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--u-muted);
}

.u-card__link {
    margin-top: auto;
    font-size: 14px;
    font-weight: 500;
    color: var(--u-blue);
}

.u-card__meta {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--u-subtle);
}

.u-thumb {
    height: 150px;
    background: repeating-linear-gradient(135deg, #eef3fb 0 6px, #e2eaf6 6px 12px);
    border-bottom: 1px solid var(--u-line);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.u-thumb--tall {
    height: 170px;
}

.u-thumb--square {
    aspect-ratio: 1 / 1;
    height: auto;
    border: 1px solid var(--u-line-mid);
    background: repeating-linear-gradient(135deg, #e9eef7 0 8px, #dfe7f3 8px 16px);
}

.u-thumb--panel {
    aspect-ratio: 4 / 3;
    height: auto;
    border: 1px solid var(--u-dark-line-2);
    background: repeating-linear-gradient(135deg, #132238 0 8px, #16283f 8px 16px);
}

.u-thumb--panel .u-thumb__label {
    color: var(--u-dark-faint);
}

.u-thumb--image {
    background: none;
    border: none;
    height: auto;
    padding: 0;
    display: block;
}

.u-thumb--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.u-thumb__label {
    font-family: var(--u-font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    color: var(--u-faint);
    text-align: center;
    padding: 0 12px;
}

/* ============================================================
   13. Sekcia platformy
   ============================================================ */

.u-split {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 72px;
    align-items: center;
}

.u-split--even {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-top: 16px;
}

.u-rows {
    display: grid;
    gap: 2px;
    margin-top: 32px;
    border-top: 1px solid var(--u-dark-line);
}

.u-rows__item {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 24px;
    padding: 18px 0;
    border-bottom: 1px solid var(--u-dark-line);
}

.u-rows__key {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.u-rows__value {
    font-size: 14px;
    line-height: 1.6;
    color: var(--u-dark-body-2);
}

/* ============================================================
   14. Statistiky
   ============================================================ */

.u-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.u-stat {
    border-top: 2px solid var(--u-blue);
    padding-top: 14px;
}

.u-stat__value {
    font-family: var(--u-font-display);
    font-weight: 700;
    font-size: clamp(30px, 3.4vw, 40px);
    letter-spacing: -0.03em;
    color: var(--u-navy);
    white-space: nowrap;
}

.u-stat__label {
    font-size: 13px;
    line-height: 1.5;
    color: var(--u-muted);
    margin-top: 6px;
}

/* ============================================================
   15. Zdroje a kariera
   ============================================================ */

.u-headrow {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
}

.u-band {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}

/* ============================================================
   16. Paticka
   ============================================================ */

.u-footer {
    background: var(--u-footer-bg);
    color: var(--u-footer-text);
    padding: 64px 0 36px;
}

.u-footer a {
    color: var(--u-footer-text);
}

.u-footer a:hover {
    color: #ffffff;
    text-decoration: none;
}

.u-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 40px;
}

.u-footer__blurb {
    font-size: 14px;
    line-height: 1.65;
    margin: 16px 0 0;
    max-width: 320px;
}

.u-footer__brand .u-brand__name {
    color: #ffffff;
}

.u-footer__brand .u-brand,
.u-footer__brand .u-brand:hover {
    color: #ffffff;
}

.u-footer__head {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
}

.u-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 9px;
    font-size: 14px;
}

.u-footer__bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #16243a;
    font-size: 13px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
}

/* ============================================================
   17. Obsah stranky a prispevku
   ============================================================ */

.u-prose {
    max-width: 720px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--u-body);
}

.u-prose h2,
.u-prose h3 {
    font-family: var(--u-font-display);
    color: var(--u-navy);
    letter-spacing: -0.018em;
    line-height: 1.2;
}

.u-prose h2 {
    font-size: 28px;
    margin: 44px 0 12px;
}

.u-prose h3 {
    font-size: 21px;
    margin: 32px 0 10px;
}

.u-prose p {
    margin: 0 0 18px;
}

.u-prose ul,
.u-prose ol {
    margin: 0 0 18px;
    padding-left: 22px;
}

.u-prose li {
    margin-bottom: 8px;
}

.u-prose img {
    margin: 24px 0;
}

.u-prose--after {
    margin-top: 56px;
}

.u-prose blockquote {
    margin: 24px 0;
    padding-left: 20px;
    border-left: 2px solid var(--u-blue);
    color: var(--u-navy);
}

/* Zoznam pozicii */
.u-joblist {
    display: grid;
    gap: 2px;
    margin-top: 40px;
    border-top: 1px solid var(--u-line);
}

.u-job {
    display: grid;
    grid-template-columns: 1fr 220px 180px 140px;
    gap: 24px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid var(--u-line);
}

.u-job__title {
    font-family: var(--u-font-display);
    font-weight: 600;
    font-size: 17px;
    letter-spacing: -0.012em;
    margin: 0;
}

.u-job__cell {
    font-size: 14px;
    color: var(--u-muted);
}

.u-job__action {
    text-align: right;
}

/* ============================================================
   18. Odhalenie pri scrollovani
   ============================================================ */

.u-reveal {
    opacity: 0;
    transform: translateY(26px);
}

.u-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: opacity 700ms ease, transform 700ms var(--u-ease);
}

/* Ak sa JavaScript nespusti, obsah musi zostat viditelny. */
.no-js .u-reveal {
    opacity: 1;
    transform: none;
}

.u-h2--flush {
    margin-top: 0;
}

.u-flush {
    margin-top: 0;
}

.u-pagination {
    margin-top: 48px;
}

.u-h3--card {
    font-size: 18px;
    line-height: 1.3;
}

.u-nav__item {
    min-width: 0;
}

.u-footer__col {
    min-width: 0;
}

.u-band__title {
    max-width: 720px;
}

.u-band__body {
    font-size: 16px;
    max-width: 640px;
}

.u-stats--detail {
    margin: 0 0 48px;
    max-width: 900px;
}

/* ============================================================
   18b. Komponenty podstranok
   ============================================================ */

.u-section--sub {
    padding: 64px 0 96px;
}

/* Zoznam rieseni */
.u-rowlist {
    display: grid;
    gap: 2px;
    border-top: 1px solid var(--u-line);
}

.u-rowlist__item {
    display: grid;
    grid-template-columns: 280px 1fr 240px;
    gap: 40px;
    padding: 32px 0;
    border-bottom: 1px solid var(--u-line);
    align-items: start;
}

.u-rowlist__title {
    font-family: var(--u-font-display);
    font-weight: 600;
    font-size: 22px;
    letter-spacing: -0.015em;
    margin: 0;
}

.u-rowlist__body {
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    color: var(--u-body);
    max-width: 720px;
}

.u-rowlist__tech {
    font-size: 13px;
    line-height: 1.7;
    color: var(--u-muted);
    border-left: 1px solid var(--u-line);
    padding-left: 24px;
}

/* Moduly platformy */
.u-modules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.u-module {
    border: 1px solid var(--u-line);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Pripadove studie */
.u-cases {
    display: grid;
    gap: 24px;
}

.u-case {
    border: 1px solid var(--u-line);
    display: grid;
    grid-template-columns: 340px 1fr;
    color: inherit;
    text-decoration: none;
}

.u-case:hover {
    color: inherit;
    text-decoration: none;
}

.u-case__media {
    background: repeating-linear-gradient(135deg, #eef3fb 0 6px, #e2eaf6 6px 12px);
    border-right: 1px solid var(--u-line);
    border-bottom: none;
    display: grid;
    place-items: center;
    min-height: 240px;
    height: auto;
}

.u-case__media.u-thumb--image {
    border-right: 1px solid var(--u-line);
    background: none;
}

.u-case__body {
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.u-case__title {
    font-family: var(--u-font-display);
    font-weight: 600;
    font-size: clamp(21px, 2.4vw, 26px);
    line-height: 1.2;
    letter-spacing: -0.018em;
    margin: 0;
    max-width: 760px;
    text-wrap: pretty;
}

.u-case__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--u-body);
    max-width: 800px;
}

.u-case__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 180px));
    gap: 24px;
    margin-top: 8px;
}

.u-case__stat {
    border-top: 2px solid var(--u-blue);
    padding-top: 10px;
}

.u-case__num {
    font-family: var(--u-font-display);
    font-weight: 700;
    font-size: 26px;
    letter-spacing: -0.02em;
    color: var(--u-navy);
}

.u-case__lbl {
    font-size: 12px;
    color: var(--u-muted);
    margin-top: 4px;
    line-height: 1.4;
}

/* Kontakt: fakty */
.u-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.u-facts {
    display: grid;
    gap: 2px;
    border-top: 1px solid var(--u-line);
}

.u-facts__item {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid var(--u-line);
}

.u-facts__key {
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--u-subtle);
}

.u-facts__value {
    font-size: 15px;
    color: #26364b;
}

/* Kontakt: formular */
.u-form {
    background: #ffffff;
    color: var(--u-navy);
    border: 1px solid var(--u-line);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 24px 48px -32px rgba(13, 26, 43, 0.4);
}

.u-form__title {
    font-family: var(--u-font-display);
    font-weight: 600;
    font-size: 22px;
    letter-spacing: -0.015em;
}

.u-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.u-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: var(--u-muted);
}

.u-input,
.u-select,
.u-textarea {
    border: 1px solid var(--u-line-strong);
    border-radius: 0;
    padding: 11px 12px;
    font-size: 15px;
    font-family: inherit;
    color: var(--u-navy);
    background: #ffffff;
    width: 100%;
}

.u-textarea {
    resize: vertical;
}

.u-input:focus,
.u-select:focus,
.u-textarea:focus {
    border-color: var(--u-blue);
    outline: 2px solid rgba(16, 69, 159, 0.18);
    outline-offset: 0;
}

.u-form__note {
    font-size: 12px;
    line-height: 1.5;
    color: var(--u-subtle);
}

.u-form button {
    align-self: flex-start;
}

.u-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.u-notice {
    background: #eef4ff;
    border: 1px solid #c2d6f7;
    padding: 14px 16px;
    font-size: 14px;
    color: var(--u-blue);
}

.u-notice--error {
    background: #fdeeee;
    border-color: #f2c4c4;
    color: #9c2b2b;
}

/* Zaverecny pas */
.u-ctaband {
    background: #ffffff;
    border-top: 1px solid var(--u-line);
    padding: 80px 0;
}

.u-ctaband__inner {
    max-width: var(--u-max);
    margin: 0 auto;
    padding: 0 var(--u-gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.u-ctaband__title {
    font-family: var(--u-font-display);
    font-weight: 600;
    font-size: clamp(24px, 3.4vw, 34px);
    line-height: 1.14;
    letter-spacing: -0.022em;
    margin: 0;
    max-width: 680px;
    text-wrap: pretty;
}

.u-ctaband__body {
    margin: 12px 0 0;
    font-size: 16px;
    color: var(--u-body);
    max-width: 620px;
    line-height: 1.6;
}

/* ============================================================
   18c. Textove bloky stranok
   ============================================================ */

.u-copy {
    max-width: 760px;
    margin-top: 18px;
}

.u-copy p {
    margin: 0 0 16px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--u-body);
}

.u-copy p:last-child {
    margin-bottom: 0;
}

.u-note {
    margin: 24px 0 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--u-muted);
    max-width: 720px;
}

.u-bullets {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    max-width: 760px;
    display: grid;
    gap: 10px;
}

.u-bullets li {
    position: relative;
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.65;
    color: var(--u-body);
}

.u-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    background: var(--u-blue);
}

.u-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 32px;
    margin-top: 36px;
}

.u-features--wide {
    grid-template-columns: repeat(2, 1fr);
}

.u-feature {
    border-top: 2px solid var(--u-blue);
    padding-top: 16px;
}

.u-feature__body {
    margin: 8px 0 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--u-muted);
}

.u-tablewrap {
    margin-top: 32px;
    overflow-x: auto;
}

.u-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    min-width: 520px;
}

.u-table th,
.u-table td {
    text-align: left;
    padding: 14px 18px 14px 0;
    border-bottom: 1px solid var(--u-line);
    vertical-align: top;
    line-height: 1.6;
}

.u-table th {
    font-weight: 600;
    color: var(--u-navy);
    border-bottom-color: var(--u-line-strong);
    white-space: nowrap;
}

.u-table td {
    color: var(--u-body);
}

.u-faq {
    margin-top: 28px;
    max-width: 860px;
    border-top: 1px solid var(--u-line);
}

.u-faq__item {
    border-bottom: 1px solid var(--u-line);
}

.u-faq__q {
    cursor: pointer;
    list-style: none;
    padding: 18px 36px 18px 0;
    font-size: 17px;
    font-weight: 500;
    color: var(--u-navy);
    position: relative;
}

.u-faq__q::-webkit-details-marker {
    display: none;
}

.u-faq__q::after {
    content: '';
    position: absolute;
    right: 6px;
    top: 26px;
    width: 9px;
    height: 9px;
    border-right: 1.5px solid var(--u-blue);
    border-bottom: 1.5px solid var(--u-blue);
    transform: rotate(45deg);
    transition: transform 180ms var(--u-ease);
}

.u-faq__item[open] .u-faq__q::after {
    transform: rotate(225deg);
    top: 30px;
}

.u-faq__q:hover {
    color: var(--u-blue);
}

.u-faq__a {
    padding: 0 36px 20px 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--u-body);
}

.u-form__intro {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--u-muted);
}

.u-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.55;
    color: var(--u-muted);
    cursor: pointer;
}

.u-check input {
    margin: 2px 0 0;
    flex-shrink: 0;
}

.u-nav__link.is-active,
.u-nav__list .current-menu-item > a {
    color: var(--u-blue);
    font-weight: 500;
}

/* ============================================================
   18d. Kroky a pas doveryhodnosti
   ============================================================ */

.u-steps {
    display: grid;
    gap: 2px;
    margin-top: 28px;
    border-top: 1px solid var(--u-line);
}

.u-step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--u-line);
    align-items: start;
}

.u-step__num {
    font-family: var(--u-font-display);
    font-weight: 700;
    font-size: 15px;
    color: var(--u-blue);
    border-top: 2px solid var(--u-blue);
    padding-top: 8px;
}

.u-step__title {
    font-family: var(--u-font-display);
    font-weight: 600;
    font-size: 17px;
    letter-spacing: -0.012em;
    margin: 0;
}

.u-step__body {
    margin: 6px 0 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--u-muted);
}

.u-trust {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}

.u-facts-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 28px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.u-facts-inline li {
    font-size: 14px;
    color: var(--u-navy);
    padding-left: 16px;
    position: relative;
}

.u-facts-inline li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--u-blue);
}

/* ============================================================
   18e. Komponenty podstranok
   ============================================================ */

/* Delena sekcia: obrateny poradok */
.u-split--flip .u-split__text {
    order: 2;
}

.u-split--flip .u-split__media {
    order: 1;
}

/* Vety z porady */
.u-quotes {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
    align-content: start;
}

.u-quote {
    background: #ffffff;
    border: 1px solid var(--u-line);
    border-left: 2px solid var(--u-blue);
    padding: 14px 18px;
    font-size: 15px;
    line-height: 1.55;
    color: var(--u-navy);
}

.u-section--soft .u-quote {
    background: #ffffff;
}

/* Panel so zoznamom pravidiel */
.u-panel {
    border: 1px solid var(--u-line);
    background: #ffffff;
    padding: 32px 36px;
}

.u-panel__title {
    margin: 0 0 6px;
    font-size: 20px;
}

.u-bullets--two {
    grid-template-columns: 1fr 1fr;
    gap: 10px 40px;
    max-width: none;
}

/* Celoriadkovy text v tmavej sekcii */
.u-rows__value--full {
    grid-column: 1 / -1;
}

/* Suvisiace stranky */
.u-related__title {
    margin: 0 0 20px;
    font-size: 15px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--u-subtle);
    font-weight: 600;
}

.u-related {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    border-top: 1px solid var(--u-line);
}

.u-related__item {
    display: block;
    padding: 20px 24px 20px 0;
    border-bottom: 1px solid var(--u-line);
    color: inherit;
    text-decoration: none;
    transition: color 160ms ease;
}

.u-related__item:hover {
    color: var(--u-blue);
    text-decoration: none;
}

.u-related__name {
    display: block;
    font-family: var(--u-font-display);
    font-weight: 600;
    font-size: 17px;
    letter-spacing: -0.012em;
    color: var(--u-blue);
}

.u-related__desc {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--u-muted);
}

/* Sekcia bez obrazka zaberie celu sirku */
.u-split--solo {
    grid-template-columns: 1fr;
}

.u-split--solo .u-copy,
.u-split--solo .u-steps,
.u-split--solo .u-rows {
    max-width: 860px;
}

/* Karta bez obrazka */
.u-card > .u-card__body:first-child {
    padding-top: 26px;
}

/* Vypocet nakladov */
.u-calc {
    border: 1px solid var(--u-line);
    background: #ffffff;
    padding: 8px 32px 28px;
    box-shadow: 0 24px 48px -34px rgba(13, 26, 43, 0.45);
    align-self: start;
}

.u-calc__fields {
    display: grid;
    gap: 14px;
    padding: 24px 0 20px;
    border-bottom: 1px solid var(--u-line);
}

.u-calc__field {
    display: grid;
    grid-template-columns: 1fr 104px;
    gap: 16px;
    align-items: center;
}

.u-calc__legend {
    font-size: 14px;
    line-height: 1.4;
    color: var(--u-muted);
}

.u-calc__field .u-input {
    text-align: right;
    font-variant-numeric: tabular-nums;
    padding: 9px 12px;
}

.u-calc__out {
    padding-top: 4px;
}

.u-calc__row {
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--u-line-soft);
}

.u-calc__row:last-of-type {
    border-bottom: none;
}

.u-calc__value {
    font-family: var(--u-font-display);
    font-weight: 700;
    font-size: clamp(26px, 3.2vw, 36px);
    letter-spacing: -0.03em;
    color: var(--u-navy);
    white-space: nowrap;
    min-width: 132px;
}

.u-calc__row:last-of-type .u-calc__value {
    color: var(--u-blue);
}

.u-calc__label {
    font-size: 14px;
    line-height: 1.5;
    color: var(--u-muted);
}

.u-calc__note {
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid var(--u-line);
    font-size: 13px;
    line-height: 1.55;
    color: var(--u-subtle);
}

/* ============================================================
   19. Responzivny rozvrh
   ============================================================ */

@media (max-width: 1200px) {
    :root {
        --u-section-y: 80px;
    }

    .u-split {
        gap: 48px;
    }

    .u-split--even {
        gap: 44px;
    }

    .u-footer__grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 36px;
    }

    .u-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 980px) {
    :root {
        --u-gutter: 28px;
        --u-section-y: 72px;
    }

    /* Navigacia sa presuva do vysuvacej zasuvky */
    .u-burger {
        display: block;
        order: 3;
    }

    .u-header__actions {
        order: 2;
        margin-left: auto;
    }

    .u-header__rule {
        display: none;
    }

    .u-nav {
        position: fixed;
        inset: var(--u-header-h) 0 auto;
        background: #ffffff;
        border-bottom: 1px solid var(--u-line);
        box-shadow: 0 24px 40px -30px rgba(13, 26, 43, 0.5);
        padding: 8px 28px 20px;
        display: none;
    }

    .u-nav.is-open {
        display: block;
    }

    .u-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        overflow: visible;
        text-align: right;
    }

    .u-nav__link,
    .u-nav__list a {
        padding: 14px 0;
        font-size: 16px;
        border-radius: 0;
        border-bottom: 1px solid var(--u-line-soft);
    }

    .u-nav__link:hover,
    .u-nav__list a:hover {
        background: transparent;
    }

    .u-header__actions {
        gap: 10px;
        margin-left: auto;
    }

    .u-burger {
        order: 3;
        margin-left: auto;
    }

    .u-split,
    .u-split--even {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Na uzkej obrazovke ide text vzdy pred obrazok */
    .u-split--flip .u-split__text {
        order: 1;
    }

    .u-split--flip .u-split__media {
        order: 2;
    }

    .u-bullets--two {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .u-related {
        grid-template-columns: 1fr;
    }

    .u-related__item {
        padding-right: 0;
    }

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

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

    .u-band,
    .u-trust {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .u-job {
        grid-template-columns: 1fr auto;
        gap: 8px 20px;
    }

    .u-section--sub {
        padding: 48px 0 72px;
    }

    .u-rowlist__item {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 26px 0;
    }

    .u-rowlist__tech {
        border-left: none;
        border-top: 1px solid var(--u-line);
        padding-left: 0;
        padding-top: 14px;
    }

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

    .u-case {
        grid-template-columns: 1fr;
    }

    .u-case__media {
        border-right: none;
        border-bottom: 1px solid var(--u-line);
        min-height: 200px;
    }

    .u-contact {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .u-ctaband {
        padding: 56px 0;
    }

    .u-ctaband__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .u-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .u-job__action {
        grid-row: span 2;
        align-self: center;
    }

    .u-hero {
        padding-bottom: 48px;
    }

    .u-hero__inner {
        padding: 72px 28px 0;
    }

    .u-subhero__inner {
        padding: 44px 28px 68px;
    }

    .u-crumb {
        padding: 22px 28px 0;
    }

    .u-header__inner,
    .u-subnav__inner {
        padding: 0 28px;
    }
}

@media (max-width: 720px) {
    :root {
        --u-gutter: 20px;
        --u-section-y: 56px;
    }

    .u-section--tight {
        padding: 48px 0;
    }

    .u-grid,
    .u-grid--3,
    .u-grid--4 {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 32px;
    }

    .u-logos__inner {
        gap: 22px;
    }

    .u-logos__label {
        max-width: none;
    }

    .u-logos__grid {
        grid-template-columns: repeat(2, 1fr);
        min-width: 0;
    }

    .u-headrow {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    /* Prepinac segmentov sa rozklada pod seba */
    .u-seg {
        padding: 0 20px;
        margin-top: 40px;
    }

    .u-seg__tabs {
        grid-template-columns: 1fr;
        border-radius: 8px;
        gap: 2px;
    }

    .u-seg__tab {
        border-radius: 6px;
        padding: 12px 16px;
        font-size: 14px;
    }

    .u-seg__panel {
        margin: 8px 0 0;
        border-top: 1px solid var(--u-line);
        flex-direction: column;
        gap: 20px;
        padding: 22px 20px;
    }

    .u-seg__aside {
        border-left: none;
        border-top: 1px solid var(--u-line-soft);
        padding-left: 0;
        padding-top: 16px;
        min-width: 0;
    }

    .u-rows__item {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .u-step {
        grid-template-columns: 32px 1fr;
        gap: 14px;
    }

    .u-stats {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .u-job {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 18px 0;
    }

    .u-job__action {
        grid-row: auto;
        text-align: left;
        margin-top: 8px;
    }

    .u-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .u-section--sub {
        padding: 40px 0 56px;
    }

    .u-modules {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .u-module {
        padding: 22px;
    }

    .u-case__body {
        padding: 24px 20px;
    }

    .u-case__stats {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .u-facts__item {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .u-form {
        padding: 24px 20px;
    }

    .u-panel {
        padding: 22px 20px;
    }

    .u-calc {
        padding: 4px 20px 22px;
    }

    .u-calc__row {
        flex-direction: column;
        gap: 4px;
        padding: 16px 0;
    }

    .u-calc__field {
        grid-template-columns: 1fr 88px;
        gap: 12px;
    }

    .u-calc__value {
        min-width: 0;
    }

    .u-quote {
        padding: 12px 14px;
        font-size: 14px;
    }

    .u-form__grid {
        grid-template-columns: 1fr;
    }

    .u-features,
    .u-features--wide {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-top: 28px;
    }

    .u-copy p {
        font-size: 16px;
    }

    .u-faq__q {
        font-size: 16px;
    }

    .u-hero {
        padding-bottom: 36px;
    }

    .u-hero__inner {
        padding: 56px 20px 0;
        text-align: left;
    }

    .u-hero__sub {
        margin-left: 0;
    }

    .u-hero__actions {
        justify-content: flex-start;
    }

    .u-hero__orb {
        width: 380px;
        height: 380px;
        right: -140px;
        top: -60px;
    }

    .u-subhero__orb {
        display: none;
    }

    .u-subhero__inner {
        padding: 36px 20px 56px;
    }

    .u-crumb {
        padding: 18px 20px 0;
    }

    .u-header__inner,
    .u-subnav__inner {
        padding: 0 20px;
    }

    .u-nav {
        padding: 8px 20px 20px;
    }

    .u-btn {
        padding: 13px 20px;
        font-size: 14px;
    }

    .u-btn-row {
        margin-top: 26px;
    }

    .u-prose {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .u-stats {
        grid-template-columns: 1fr;
    }

    .u-footer__grid {
        grid-template-columns: 1fr;
    }

    .u-lang {
        display: none;
    }

    .u-header__actions .u-btn {
        display: none;
    }
}

/* ============================================================
   20. Obmedzeny pohyb a tlac
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

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

@media print {
    .u-header,
    .u-subnav,
    .u-footer,
    .u-hero__orb,
    .u-hero__hatch {
        display: none;
    }
}
