/* =========================================
   FONTS
   ========================================= */

@font-face {
    font-family: 'Telegraf';
    src: url('fonts/Telegraf-UltraLight.woff2') format('woff2');
    font-weight: 200;
}

@font-face {
    font-family: 'Telegraf';
    src: url('fonts/Telegraf-Regular.woff2') format('woff2');
    font-weight: 400;
}

@font-face {
    font-family: 'Telegraf';
    src: url('fonts/Telegraf-UltraBold.woff2') format('woff2');
    font-weight: 800;
}

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

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

:root {
    --bg-base:        #111e1c;
    --bg-dark:        #0d1614;
    --bg-mid:         #1b2725;
    --bg-light:       #20302d;
    --teal:           #2ae2d2;
    --teal-dim:       rgba(42, 226, 210, 0.12);
    --teal-glow:      rgba(42, 226, 210, 0.08);
    --orange:         #fb8810;
    --white:          #ffffff;
    --text-primary:   rgba(255, 255, 255, 0.95);
    --text-secondary: rgba(255, 255, 255, 0.55);
    --text-muted:     rgba(255, 255, 255, 0.35);
    --border:         rgba(255, 255, 255, 0.10);
    --border-strong:  rgba(255, 255, 255, 0.18);
    --glass-bg:       rgba(255, 255, 255, 0.05);
    --glass-bg-hover: rgba(255, 255, 255, 0.08);

    --font:           'Telegraf', sans-serif;
    --container:      1200px;
    --radius:         14px;
    --radius-lg:      22px;
    --nav-height:     72px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Telegraf', sans-serif;
    font-weight: 400;
    color: var(--text-primary);
    background:
        radial-gradient(ellipse at 15% 10%, rgba(42,226,210,0.07) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 85%, rgba(40,73,78,0.35) 0%, transparent 50%),
        linear-gradient(160deg, #0d1614 0%, #1b2725 45%, #162220 75%, #0d1614 100%);
    background-attachment: fixed;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

h1, h2, h3 {
    font-family: 'Telegraf', sans-serif;
    font-weight: 800;
}

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

ul {
    list-style: none;
}

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

/* =========================================
   LAYOUT
   ========================================= */

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

/* =========================================
   GLASS CARD – sdílený styl pro všechny karty
   ========================================= */

.glass-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow:
        inset 0 0 20px rgba(255, 255, 255, 0.05),
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 28px rgba(42, 226, 210, 0.07);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.07),
        rgba(255, 255, 255, 0.02),
        transparent
    );
    pointer-events: none;
    z-index: 0;
}

.glass-card > * {
    position: relative;
    z-index: 1;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow:
        inset 0 0 24px rgba(255, 255, 255, 0.07),
        0 16px 48px rgba(0, 0, 0, 0.4),
        0 0 44px rgba(42, 226, 210, 0.13);
}

/* =========================================
   TYPOGRAPHY
   ========================================= */

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 60px;
}

.section-title--light {
    color: var(--text-primary);
}

/* =========================================
   BUTTONS
   ========================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.25s ease;
    white-space: nowrap;
    position: relative;
}

.btn--primary {
    background: var(--teal);
    color: #0d1614;
    border-color: var(--teal);
    box-shadow: 0 0 24px rgba(42,226,210,0.25), 0 4px 16px rgba(0,0,0,0.3);
}

.btn--primary:hover {
    background: #22cfc0;
    border-color: #22cfc0;
    box-shadow: 0 0 36px rgba(42,226,210,0.4), 0 8px 24px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    overflow: hidden;
    box-shadow:
        inset 0 0 20px rgba(255,255,255,0.08),
        0 8px 32px rgba(0,0,0,0.35),
        0 0 25px rgba(42,226,210,0.12);
}

.btn--secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.25),
        rgba(255,255,255,0.05),
        transparent
    );
    pointer-events: none;
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(42,226,210,0.4);
    box-shadow:
        inset 0 0 20px rgba(255,255,255,0.1),
        0 8px 32px rgba(0,0,0,0.4),
        0 0 32px rgba(42,226,210,0.2);
    transform: translateY(-2px);
}

.btn--nav {
    background: var(--teal);
    color: #0d1614;
    padding: 10px 22px;
    font-size: 0.9rem;
    border-color: var(--teal);
    box-shadow: 0 0 16px rgba(42,226,210,0.2);
}

.btn--nav:hover {
    background: #22cfc0;
    box-shadow: 0 0 28px rgba(42,226,210,0.35);
    transform: translateY(-1px);
}

.btn--large {
    padding: 18px 44px;
    font-size: 1.1rem;
}

.btn--orange {
    background: #fb8810;
    color: #ffffff;
    border-color: #fb8810;
    padding: 14px 24px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(251, 136, 16, 0.3), 0 4px 14px rgba(0,0,0,0.25);
}

.btn--orange:hover {
    background: #ff9a2a;
    border-color: #ff9a2a;
    box-shadow: 0 0 32px rgba(251, 136, 16, 0.5), 0 6px 20px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

/* =========================================
   EYEBROW LABEL – shared across all pages
   ========================================= */

.eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    opacity: 0.8;
    margin-bottom: 16px;
}

/* =========================================
   SCROLL REVEAL – shared across all pages
   ========================================= */

.reveal {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.is-visible  { opacity: 1; transform: translateX(0); }
.reveal-delay-1     { transition-delay: 0.12s; }
.reveal-delay-2     { transition-delay: 0.24s; }
.reveal-delay-3     { transition-delay: 0.36s; }
.reveal-delay-4     { transition-delay: 0.48s; }

@media (max-width: 768px) {
    .reveal {
        transform: translateX(-16px);
        transition-duration: 0.5s;
    }
}

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

/* =========================================
   NAVIGATION
   ========================================= */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-height);
    background: rgba(13, 22, 20, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav__logo img {
    height: 60px;
    width: auto;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.2s;
}

.nav__links a:hover {
    color: var(--teal);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}

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

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

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

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

.hero {
    padding-top: calc(var(--nav-height) + 100px);
    padding-bottom: 120px;
    background: transparent;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(42,226,210,0.06) 0%, transparent 65%);
    pointer-events: none;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 72px;
    position: relative;
}

.hero__eyebrow {
    font-size: 0.8rem;
    font-weight: 200;
    color: var(--teal);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
    opacity: 0.85;
}

.hero__title {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    margin-bottom: 28px;
}

.hero__subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-weight: 200;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 44px;
    max-width: 500px;
}

.hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__image {
    position: relative;
}

.hero__image::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-lg) + 2px);
    background: linear-gradient(135deg, rgba(42,226,210,0.2), transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.hero__image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow:
        0 0 0 1px var(--border),
        0 32px 80px rgba(0,0,0,0.5),
        0 0 60px rgba(42,226,210,0.07);
    position: relative;
}

/* =========================================
   PRO KOHO
   ========================================= */

.pro-koho {
    padding: 120px 0;
    background: transparent;
}

.pro-koho__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pro-koho__card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.pro-koho__image {
    overflow: hidden;
    height: 220px;
    position: relative;
}

.pro-koho__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(13,22,20,0.6) 100%);
    pointer-events: none;
}

.pro-koho__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.08);
    transition: transform 0.5s ease;
}

.pro-koho__card:hover .pro-koho__image img {
    transform: scale(1.04);
}

.pro-koho__body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pro-koho__card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.2;
}

.pro-koho__list {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 24px;
    flex: 1;
}

.pro-koho__list li {
    font-size: 0.92rem;
    color: var(--text-secondary);
    padding-left: 16px;
    position: relative;
    line-height: 1.6;
}

.pro-koho__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--teal);
    opacity: 0.7;
}

.pro-koho__text {
    font-size: 0.93rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}

.btn--teal-ghost {
    display: inline-flex;
    align-items: center;
    padding: 11px 20px;
    background: rgba(42,226,210,0.08);
    border: 1px solid rgba(42,226,210,0.25);
    color: var(--teal);
    border-radius: 9px;
    font-family: var(--font);
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: all 0.2s ease;
    align-self: flex-start;
    white-space: nowrap;
}

.btn--teal-ghost:hover {
    background: rgba(42,226,210,0.15);
    border-color: rgba(42,226,210,0.5);
    box-shadow: 0 0 18px rgba(42,226,210,0.15);
    transform: translateY(-1px);
}

/* =========================================
   VÝSLEDKY
   ========================================= */

.vysledky {
    padding: 120px 0;
    background:
        radial-gradient(ellipse at 90% 50%, rgba(42,226,210,0.05) 0%, transparent 55%),
        rgba(10, 18, 16, 0.6);
    position: relative;
}

.vysledky__grid {
    display: flex;
    flex-direction: column;
}

.vysledky__item {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
    transition: padding-left 0.2s;
}

.vysledky__item:last-child {
    border-bottom: none;
}

.vysledky__item:hover {
    padding-left: 8px;
}

.vysledky__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    color: var(--teal);
    margin-top: 3px;
    opacity: 0.9;
}

.vysledky__icon svg {
    width: 100%;
    height: 100%;
}

.vysledky__text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vysledky__text strong {
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.vysledky__text span {
    font-size: 0.93rem;
    font-weight: 200;
    color: var(--text-secondary);
}

/* =========================================
   ROZCESTNÍK KURZŮ
   ========================================= */

.kurzy {
    padding: 120px 0;
    background: transparent;
    position: relative;
}

.kurzy__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.kurzy__card {
    overflow: hidden;
}

.kurzy__image {
    overflow: hidden;
    height: 260px;
    position: relative;
}

.kurzy__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(13,22,20,0.6) 100%);
    pointer-events: none;
}

.kurzy__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.kurzy__card:hover .kurzy__image img {
    transform: scale(1.04);
}

.kurzy__body {
    padding: 36px;
}

.kurzy__body h3 {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.kurzy__body p {
    font-size: 0.93rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 10px;
}

.kurzy__detail {
    font-size: 0.83rem;
    font-weight: 200;
    color: var(--text-muted);
    margin-bottom: 28px !important;
}

/* =========================================
   REFERENCE
   ========================================= */

.reference {
    padding: 120px 0;
    background:
        radial-gradient(ellipse at 10% 80%, rgba(42,226,210,0.04) 0%, transparent 50%),
        rgba(10, 18, 16, 0.4);
}

.reference__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 72px;
}

.reference__card {
    padding: 36px;
}

.reference__card p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.reference__card cite {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--teal);
    font-style: normal;
    letter-spacing: 0.03em;
    opacity: 0.8;
}

.reference__stats {
    display: flex;
    gap: 72px;
    align-items: center;
    padding-top: 52px;
    border-top: 1px solid var(--border);
}

.reference__stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.reference__stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--teal);
    line-height: 1;
}

.reference__stat-label {
    font-size: 0.88rem;
    font-weight: 200;
    color: var(--text-secondary);
}

/* =========================================
   KOHO JSME PROŠKOLILI
   ========================================= */

.klienti {
    padding: 100px 0;
    background: transparent;
}

.klienti__logos {
    display: flex;
    flex-wrap: wrap;
    gap: 96px;
    justify-content: center;
    align-items: center;
}

.klienti__logo-slot {
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.klienti__logo-slot img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 1;
}

/* =========================================
   CTA BLOK
   ========================================= */

.cta-blok {
    padding: 120px 0;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(42,226,210,0.07) 0%, transparent 55%),
        rgba(10, 18, 16, 0.5);
    position: relative;
}

.cta-blok__inner {
    max-width: 680px;
}

.cta-blok__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.1;
}

.cta-blok__subtitle {
    font-size: 1.05rem;
    font-weight: 200;
    color: var(--text-secondary);
    margin-bottom: 52px;
}

/* =========================================
   FORM
   ========================================= */

.form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form__label {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.form__required {
    color: var(--teal);
}

.form__input {
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-primary);
    background: var(--glass-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 15px 20px;
    width: 100%;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    outline: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.form__input::placeholder {
    color: var(--text-muted);
}

.form__input:focus {
    border-color: rgba(42,226,210,0.5);
    background: var(--glass-bg-hover);
    box-shadow: 0 0 0 3px rgba(42,226,210,0.08);
}

.form__input.is-error {
    border-color: rgba(239,68,68,0.6);
}

.form__textarea {
    resize: vertical;
    min-height: 140px;
}

.form__error {
    font-size: 0.82rem;
    color: #f87171;
    display: none;
}

.form__error.is-visible {
    display: block;
}

.form__checkboxes {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.form__checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 0.95rem;
    user-select: none;
    transition: color 0.2s;
}

.form__checkbox-label:hover {
    color: var(--text-primary);
}

.form__checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.form__checkbox-custom {
    width: 20px;
    height: 20px;
    border: 1px solid var(--border-strong);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--glass-bg);
    transition: border-color 0.2s, background 0.2s;
}

.form__checkbox-label input[type="checkbox"]:checked + .form__checkbox-custom {
    background: var(--teal);
    border-color: var(--teal);
}

.form__checkbox-label input[type="checkbox"]:checked + .form__checkbox-custom::after {
    content: '';
    display: block;
    width: 5px;
    height: 9px;
    border: 2px solid #0d1614;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-1px);
}

.form__success {
    background: rgba(42,226,210,0.08);
    border: 1px solid rgba(42,226,210,0.3);
    color: var(--teal);
    padding: 18px 22px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.55;
}

/* =========================================
   FOOTER
   ========================================= */

.footer {
    background: rgba(10, 16, 14, 0.8);
    padding: 72px 0 0;
    border-top: 1px solid var(--border);
}

.footer__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    padding-bottom: 56px;
    max-width: 860px;
    margin: 0 auto;
}

.footer__logo {
    height: 44px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) saturate(100%) invert(78%) sepia(36%) saturate(650%) hue-rotate(130deg);
    opacity: 0.8;
}

.footer__col-title {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    opacity: 0.8;
    margin-bottom: 16px;
    display: block;
}

.footer__col p,
.footer__col address {
    font-size: 0.88rem;
    font-weight: 200;
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: normal;
}

.footer__col a {
    font-size: 0.88rem;
    font-weight: 200;
    color: var(--text-secondary);
    line-height: 1.8;
    transition: color 0.2s;
    display: block;
}

.footer__col a:hover {
    color: var(--teal);
}

.footer__bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.8rem;
    font-weight: 200;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1024px) {
    .pro-koho__grid {
        grid-template-columns: 1fr;
        max-width: 560px;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .hero__image img {
        height: 380px;
    }

    .hero__subtitle {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: rgba(13,22,20,0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 0;
        border-bottom: 1px solid var(--border);
    }

    .nav__links.is-open {
        display: flex;
    }

    .nav__links li {
        border-bottom: 1px solid var(--border);
    }

    .nav__links li:last-child {
        border-bottom: none;
        padding-top: 16px;
    }

    .nav__links a {
        display: block;
        padding: 14px 0;
        font-size: 1rem;
    }

    .nav__links .btn--nav {
        width: 100%;
        justify-content: center;
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        padding-top: calc(var(--nav-height) + 60px);
        padding-bottom: 80px;
    }

    .hero__title {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .hero__image img {
        height: 280px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .pro-koho {
        padding: 80px 0;
    }

    .pro-koho__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .vysledky {
        padding: 80px 0;
    }

    .vysledky__item {
        gap: 20px;
        padding: 32px 0;
    }

    .kurzy {
        padding: 80px 0;
    }

    .kurzy__grid {
        grid-template-columns: 1fr;
    }

    .reference {
        padding: 80px 0;
    }

    .reference__grid {
        grid-template-columns: 1fr;
        margin-bottom: 48px;
    }

    .reference__stats {
        flex-direction: column;
        gap: 36px;
        align-items: flex-start;
    }

    .klienti {
        padding: 72px 0;
    }

    .cta-blok {
        padding: 80px 0;
    }

    .form__checkboxes {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero__cta {
        flex-direction: column;
    }

    .hero__cta .btn {
        width: 100%;
        text-align: center;
    }

    .btn--large {
        width: 100%;
    }
}
