/* ============================================================
   HRUBY Software — sloučené styly pro všechny stránky.
   Stránky se odlišují třídou na <body>:
     .page-home      — hlavní landing (CZ i EN)
     .page-vehicles  — /vehicles/
     .page-privacy   — /privacy/
     .page-404       — 404.html
   ============================================================ */

/* ---------- Reset (univerzální) ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ============================================================
   HOME (CZ + EN landing) — refreshed design handoff
   Operator-grade, technical, calm. Single-page composition.
   Tokens shared globally; component styles scoped via .hs-* prefix
   and `body.page-home` so detail pages stay untouched.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&family=IBM+Plex+Sans:wght@400;500;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ---------- Design tokens (global, used by home + future) ---------- */
:root {
    /* Brand */
    --accent:           #00CAFE;
    --accent-strong:    #00B5E2;
    --accent-soft:      #CFF5FF;
    --accent-ink:       #00181F;

    /* Neutrals (light) */
    --bg-0:             #FFFFFF;
    --bg-1:             #F7F8FA;
    --bg-2:             #EEF0F4;
    --bg-3:             #E2E5EB;

    /* Foreground (light) */
    --fg-1:             #0A0E12;
    --fg-2:             #2C333D;
    --fg-3:             #5A6373;
    --fg-4:             #8B95A6;

    /* Borders */
    --border-subtle:    rgba(10, 14, 18, 0.08);
    --border-strong:    rgba(10, 14, 18, 0.16);

    /* Semantic */
    --success:          #1E9E6A;
    --success-soft:     #DCF5E9;
    --danger:           #D9445B;

    /* Typography */
    --font-display:     'Space Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-body:        'IBM Plex Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-mono:        'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

    /* Radii */
    --radius-1:         3px;
    --radius-2:         6px;
    --radius-3:         10px;
    --radius-4:         16px;

    /* Shadows */
    --shadow-1:         0 1px 2px rgba(10, 14, 18, 0.06), 0 1px 1px rgba(10, 14, 18, 0.04);
    --shadow-2:         0 12px 24px -8px rgba(10, 14, 18, 0.18), 0 4px 8px -4px rgba(10, 14, 18, 0.10);
    --focus-ring:       0 0 0 3px rgba(0, 202, 254, 0.40);

    /* Motion */
    --ease-out:         cubic-bezier(0.2, 0, 0, 1);
    --duration-fast:    150ms;
    --duration-base:    220ms;

    /* Layout */
    --max-content:      1280px;
    --header-height:    64px;
    --gutter:           96px;
}

@media (max-width: 1100px) { :root { --gutter: 48px; } }
@media (max-width: 700px)  { :root { --gutter: 24px; } }

/* ---------- Body baseline (only home; detail pages keep own font) ---------- */
body.page-home {
    background: var(--bg-0);
    color: var(--fg-1);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.page-home img,
body.page-home svg { display: block; max-width: 100%; }
body.page-home button { font: inherit; }

/* ---------- Selection ---------- */
body.page-home ::selection { background: var(--accent); color: var(--accent-ink); }

/* ---------- Buttons ---------- */
body.page-home .hs-btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-display);
    font-weight: 500; font-size: 14px;
    padding: 11px 18px;
    border-radius: var(--radius-2);
    border: 1px solid transparent;
    cursor: pointer; text-decoration: none;
    transition: all 150ms var(--ease-out);
    white-space: nowrap;
}
body.page-home .hs-btn-primary { background: var(--accent); color: var(--accent-ink); }
body.page-home .hs-btn-primary:hover { background: var(--accent-strong); }
body.page-home .hs-btn-primary:active { transform: translateY(1px); transition-duration: 60ms; }
body.page-home .hs-btn-lg { padding: 14px 22px; font-size: 15px; }
body.page-home .hs-btn-sm { padding: 7px 12px; font-size: 13px; }
body.page-home .hs-btn-secondary { background: transparent; color: var(--fg-1); border-color: var(--border-strong); }
body.page-home .hs-btn-secondary:hover { background: var(--bg-2); border-color: var(--accent); }

/* ---------- Eyebrow ---------- */
body.page-home .hs-eyebrow {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
body.page-home .hs-eyebrow::before {
    content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 999px;
    box-shadow: 0 0 0 4px rgba(0,202,254,0.15);
}

/* ---------- Section primitives ---------- */
body.page-home .hs-section { padding: 96px var(--gutter); }
body.page-home .hs-wrap { max-width: var(--max-content); margin: 0 auto; }
body.page-home .hs-section-head { max-width: 760px; margin-bottom: 56px; }
body.page-home .hs-section-head .hs-h2 { margin-top: 14px; }
body.page-home .hs-section-head p { margin-top: 18px; font-size: 18px; line-height: 1.6; color: var(--fg-2); max-width: 640px; }

@media (max-width: 700px) {
    body.page-home .hs-section { padding: 64px var(--gutter); }
}

/* ---------- Display headings ---------- */
body.page-home .hs-h1 { font-family: var(--font-display); font-size: clamp(40px, 5vw, 64px); line-height: 1.05; letter-spacing: -0.025em; font-weight: 700; margin: 0; text-wrap: balance; }
body.page-home .hs-h2 { font-family: var(--font-display); font-size: clamp(32px, 3.6vw, 48px); line-height: 1.1; letter-spacing: -0.022em; font-weight: 700; margin: 0; text-wrap: balance; }

/* ---------- Header ---------- */
body.page-home .hs-header {
    position: sticky; top: 0; z-index: 100;
    height: var(--header-height);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 var(--gutter);
    background: rgba(10,14,18,0.70);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: #fff;
}
body.page-home .hs-header-left { display: flex; align-items: center; gap: 40px; }
body.page-home .hs-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
body.page-home .hs-logo-mark {
    width: 32px; height: 32px;
    background: var(--accent);
    border-radius: var(--radius-2);
    display: grid; place-items: center;
    font-family: var(--font-mono);
    font-weight: 700; font-size: 16px;
    color: var(--accent-ink);
    letter-spacing: -0.02em;
}
body.page-home .hs-logo-word {
    font-family: var(--font-display);
    font-size: 17px; line-height: 1; letter-spacing: -0.01em;
    color: #F4F6FA;
}
body.page-home .hs-logo-word b { font-weight: 700; }
body.page-home .hs-logo-word em { font-style: normal; font-weight: 400; color: var(--accent); margin-left: 1px; }
body.page-home .hs-nav { display: flex; gap: 28px; list-style: none; padding: 0; margin: 0; }
body.page-home .hs-nav a {
    font-family: var(--font-display);
    font-size: 14px; font-weight: 500;
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    transition: color 150ms;
    display: inline-flex; align-items: baseline; gap: 6px;
}
body.page-home .hs-nav a::before { content: attr(data-num); font-family: var(--font-mono); font-size: 11px; color: var(--accent); opacity: 0.7; }
body.page-home .hs-nav a:hover { color: #fff; }
body.page-home .hs-header-right { display: flex; align-items: center; gap: 14px; }
body.page-home .hs-lang {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: var(--radius-2);
    padding: 6px 10px;
    cursor: pointer; text-decoration: none;
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: 0.10em;
    color: rgba(255,255,255,0.6);
    transition: all 150ms;
}
body.page-home .hs-lang:hover { border-color: var(--accent); color: #fff; }
body.page-home .hs-lang .on { color: #fff; }
body.page-home .hs-lang .sep { margin: 0 6px; opacity: 0.4; }
body.page-home .hs-status-pill {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.6);
    padding: 5px 10px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 999px;
}
body.page-home .hs-status-pill .dot {
    width: 6px; height: 6px; border-radius: 999px;
    background: var(--success);
    box-shadow: 0 0 0 3px rgba(30,158,106,0.18);
}
@media (max-width: 900px) {
    body.page-home .hs-nav { display: none; }
    body.page-home .hs-status-pill { display: none; }
}

/* ---------- Hero ---------- */
body.page-home .hs-hero {
    background: #0A0E12;
    color: #F4F6FA;
    padding: 96px var(--gutter) 120px;
    position: relative;
    overflow: hidden;
}
body.page-home .hs-hero-grid-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 70%);
    pointer-events: none;
}
body.page-home .hs-hero-inner {
    position: relative;
    max-width: var(--max-content);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: center;
}
body.page-home .hs-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 5.6vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    font-weight: 700;
    margin: 18px 0 0;
    color: #F4F6FA;
    text-wrap: balance;
}
body.page-home .hs-hero h1 .accent { color: var(--accent); }
body.page-home .hs-hero-lead {
    font-size: 18px; line-height: 1.6;
    color: rgba(255,255,255,0.72);
    max-width: 560px;
    margin: 28px 0 0;
    text-wrap: pretty;
}
body.page-home .hs-hero-cta { display: flex; align-items: center; gap: 18px; margin-top: 40px; flex-wrap: wrap; }
body.page-home .hs-hero-meta {
    font-family: var(--font-mono); font-size: 12px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
body.page-home .hs-hero-tags {
    display: flex; gap: 8px; flex-wrap: wrap;
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px dashed rgba(255,255,255,0.10);
}
body.page-home .hs-hero-tag {
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    padding: 6px 10px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 999px;
    text-decoration: none;
}
body.page-home .hs-hero-tag .pre { color: var(--accent); margin-right: 6px; opacity: 0.8; }
body.page-home a.hs-hero-tag:hover { border-color: var(--accent); color: #fff; }

/* Terminal */
body.page-home .hs-terminal {
    background: #0E141B;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius-3);
    overflow: hidden;
    box-shadow:
        0 24px 48px -16px rgba(0,0,0,0.55),
        0 8px 16px -8px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.04);
    font-family: var(--font-mono);
    font-size: 13px;
}
body.page-home .hs-term-bar {
    display: flex; align-items: center; gap: 6px;
    padding: 10px 14px;
    background: linear-gradient(180deg, #161D26 0%, #11171F 100%);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
body.page-home .hs-term-bar .dot {
    width: 11px; height: 11px; border-radius: 999px;
    background: rgba(255,255,255,0.14);
}
body.page-home .hs-term-bar em {
    margin-left: auto;
    font-style: normal; font-size: 11px;
    color: rgba(255,255,255,0.40);
    letter-spacing: 0.08em;
    font-family: var(--font-mono);
}
body.page-home .hs-term-body { padding: 22px 22px 26px; color: #C4CCD8; line-height: 1.85; }
body.page-home .hs-term-body .row { display: block; }
body.page-home .hs-term-body .c-mute { color: #5A6373; }
body.page-home .hs-term-body .c-accent { color: var(--accent); margin-right: 8px; }
body.page-home .hs-term-body .c-key { color: #00CAFE; }
body.page-home .hs-term-body .c-ok { color: var(--success); }
body.page-home .hs-caret {
    display: inline-block; width: 7px; height: 14px;
    background: var(--accent);
    vertical-align: -2px;
    animation: hs-blink 1.06s steps(2) infinite;
}
@keyframes hs-blink { 50% { opacity: 0; } }

/* Hero stats strip */
body.page-home .hs-hero-strip {
    position: relative;
    max-width: var(--max-content);
    margin: 80px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.10);
    border-bottom: 1px solid rgba(255,255,255,0.10);
}
body.page-home .hs-hero-strip .cell {
    padding: 24px 28px;
    border-right: 1px solid rgba(255,255,255,0.08);
}
body.page-home .hs-hero-strip .cell:last-child { border-right: none; }
body.page-home .hs-hero-strip .v {
    font-family: var(--font-display);
    font-size: 32px; font-weight: 700;
    color: #F4F6FA;
    letter-spacing: -0.02em;
    display: flex; align-items: baseline; gap: 6px;
}
body.page-home .hs-hero-strip .v .unit { font-family: var(--font-mono); font-size: 14px; color: var(--accent); font-weight: 500; }
body.page-home .hs-hero-strip .l {
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.50);
    margin-top: 6px;
}

@media (max-width: 1000px) {
    body.page-home .hs-hero-inner { grid-template-columns: 1fr; gap: 56px; }
    body.page-home .hs-hero-strip { grid-template-columns: 1fr 1fr; }
    body.page-home .hs-hero-strip .cell:nth-child(2) { border-right: none; }
    body.page-home .hs-hero-strip .cell:nth-child(1),
    body.page-home .hs-hero-strip .cell:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* ---------- Services ---------- */
body.page-home .hs-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-3);
    overflow: hidden;
}
body.page-home .hs-tile {
    background: var(--bg-0);
    padding: 32px 28px 28px;
    display: flex; flex-direction: column;
    min-height: 320px;
    position: relative;
    transition: background 220ms var(--ease-out);
    color: inherit; text-decoration: none;
}
body.page-home .hs-tile:hover { background: var(--bg-1); }
body.page-home .hs-tile-head {
    display: flex; align-items: flex-start; justify-content: space-between;
    margin-bottom: 32px;
}
body.page-home .hs-tile-num {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.10em;
    color: var(--fg-3);
}
body.page-home .hs-tile-icon {
    width: 40px; height: 40px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-2);
    display: grid; place-items: center;
    color: var(--fg-1);
    background: var(--bg-1);
    transition: all 220ms var(--ease-out);
}
body.page-home .hs-tile:hover .hs-tile-icon {
    border-color: var(--accent);
    color: var(--accent);
}
body.page-home .hs-tile-title {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0 0 14px;
    color: var(--fg-1);
    text-wrap: balance;
}
body.page-home .hs-tile-text {
    font-size: 14px; line-height: 1.6;
    color: var(--fg-2);
    margin: 0 0 24px;
}
body.page-home .hs-tile-stack {
    margin-top: auto;
    display: flex; gap: 6px; flex-wrap: wrap;
}
body.page-home .hs-stack-chip {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--fg-3);
    padding: 3px 8px;
    background: var(--bg-1);
    border: 1px solid var(--border-subtle);
    border-radius: 999px;
}
body.page-home .hs-tile-arrow {
    position: absolute;
    bottom: 24px; right: 24px;
    width: 28px; height: 28px;
    display: grid; place-items: center;
    color: var(--fg-3);
    transition: all 220ms var(--ease-out);
}
body.page-home .hs-tile:hover .hs-tile-arrow {
    color: var(--accent);
    transform: translate(2px, -2px);
}

@media (max-width: 1000px) { body.page-home .hs-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { body.page-home .hs-services-grid { grid-template-columns: 1fr; } }

/* ---------- Process ---------- */
body.page-home .hs-process { background: var(--bg-1); }
body.page-home .hs-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
body.page-home .hs-process-grid::before {
    content: ''; position: absolute;
    top: 30px; left: 0; right: 0; height: 1px;
    background: repeating-linear-gradient(90deg, var(--border-strong) 0 6px, transparent 6px 12px);
    z-index: 0;
}
body.page-home .hs-step { position: relative; z-index: 1; }
body.page-home .hs-step-num {
    display: inline-grid; place-items: center;
    width: 60px; height: 60px;
    background: var(--bg-0);
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 14px; font-weight: 500;
    color: var(--accent);
    margin-bottom: 24px;
    position: relative;
}
body.page-home .hs-step-num::before {
    content: ''; position: absolute; inset: -5px;
    border: 1px dashed var(--border-strong);
    border-radius: 999px;
    opacity: 0.6;
}
body.page-home .hs-step-title {
    font-family: var(--font-display);
    font-size: 20px; font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0 0 8px;
}
body.page-home .hs-step-text { font-size: 14px; line-height: 1.6; color: var(--fg-2); margin: 0; }
@media (max-width: 900px) {
    body.page-home .hs-process-grid { grid-template-columns: 1fr 1fr; }
    body.page-home .hs-process-grid::before { display: none; }
}
@media (max-width: 600px) { body.page-home .hs-process-grid { grid-template-columns: 1fr; } }

/* ---------- About ---------- */
body.page-home .hs-about-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}
body.page-home .hs-about p { margin-top: 18px; font-size: 17px; line-height: 1.7; color: var(--fg-2); }
body.page-home .hs-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 40px;
    border-top: 1px solid var(--border-subtle);
    padding-top: 24px;
}
body.page-home .hs-stat-v {
    font-family: var(--font-display);
    font-size: 44px; font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--fg-1);
    line-height: 1;
}
body.page-home .hs-stat-v .unit { color: var(--accent); font-family: var(--font-mono); font-size: 18px; }
body.page-home .hs-stat-l {
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fg-3);
    margin-top: 8px;
}

/* About visual — bracket frame with code inside */
body.page-home .hs-about-visual {
    position: relative;
    aspect-ratio: 5 / 4;
}
body.page-home .hs-bracket-frame {
    position: absolute; inset: 0;
}
body.page-home .hs-bracket-frame .b {
    position: absolute; width: 28px; height: 28px;
    border: 2px solid var(--accent);
}
body.page-home .hs-bracket-frame .tl { top: 0; left: 0; border-right: none; border-bottom: none; }
body.page-home .hs-bracket-frame .tr { top: 0; right: 0; border-left: none; border-bottom: none; }
body.page-home .hs-bracket-frame .bl { bottom: 0; left: 0; border-right: none; border-top: none; }
body.page-home .hs-bracket-frame .br { bottom: 0; right: 0; border-left: none; border-top: none; }

body.page-home .hs-about-card {
    position: absolute; inset: 20px;
    background: #0A0E12;
    border-radius: var(--radius-3);
    padding: 28px;
    display: flex; flex-direction: column;
    color: #F4F6FA;
    overflow: hidden;
}
body.page-home .hs-about-card .label {
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: 0.10em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    margin-bottom: 18px;
}
body.page-home .hs-about-card .label::before {
    content: '// '; color: var(--accent);
}
body.page-home .hs-about-card pre {
    font-family: var(--font-mono);
    font-size: 12.5px;
    line-height: 1.85;
    color: #C4CCD8;
    margin: 0;
    white-space: pre-wrap;
}
body.page-home .hs-about-card .k { color: var(--accent); }
body.page-home .hs-about-card .s { color: #F4F6FA; }
body.page-home .hs-about-card .c { color: #5A6373; }
body.page-home .hs-about-card-foot {
    margin-top: auto; padding-top: 18px;
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-family: var(--font-mono); font-size: 11px;
    color: rgba(255,255,255,0.45); letter-spacing: 0.06em;
}
body.page-home .hs-about-card-foot .ok { color: var(--success); }

@media (max-width: 1000px) {
    body.page-home .hs-about-inner { grid-template-columns: 1fr; gap: 56px; }
}

/* ---------- Trust strip ---------- */
body.page-home .hs-trust {
    background: #0A0E12;
    color: #F4F6FA;
    padding: 64px var(--gutter);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
body.page-home .hs-trust-inner {
    max-width: var(--max-content);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: center;
}
body.page-home .hs-trust-label {
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: 0.10em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
body.page-home .hs-trust-label .accent { color: var(--accent); }
body.page-home .hs-trust-label h3 {
    font-family: var(--font-display);
    font-size: 18px; font-weight: 500;
    color: #F4F6FA;
    margin: 8px 0 0;
    letter-spacing: -0.01em;
    text-transform: none;
}
body.page-home .hs-trust-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}
body.page-home .hs-tech {
    display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
    padding: 16px 14px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-2);
    background: rgba(255,255,255,0.02);
}
body.page-home .hs-tech .t {
    font-family: var(--font-mono); font-size: 11px;
    color: rgba(255,255,255,0.45); letter-spacing: 0.06em;
}
body.page-home .hs-tech .n {
    font-family: var(--font-display); font-size: 14px;
    color: #F4F6FA; font-weight: 500;
}
@media (max-width: 1000px) {
    body.page-home .hs-trust-inner { grid-template-columns: 1fr; gap: 32px; }
    body.page-home .hs-trust-row { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Contact ---------- */
body.page-home .hs-contact {
    background: var(--bg-0);
    border-top: 1px solid var(--border-subtle);
}
body.page-home .hs-contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}
body.page-home .hs-contact-list {
    list-style: none; padding: 0; margin: 32px 0 0;
    display: flex; flex-direction: column;
    border-top: 1px solid var(--border-subtle);
}
body.page-home .hs-contact-list li {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    gap: 24px;
    padding: 18px 0;
    align-items: center;
    border-bottom: 1px solid var(--border-subtle);
}
body.page-home .hs-contact-label {
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--fg-3);
}
body.page-home .hs-contact-list a,
body.page-home .hs-contact-list .hs-contact-val {
    font-family: var(--font-display);
    font-size: 18px; font-weight: 500;
    color: var(--fg-1);
    text-decoration: none;
    letter-spacing: -0.005em;
}
body.page-home .hs-contact-list a:hover { color: var(--accent); }
body.page-home .hs-contact-arrow { color: var(--fg-4); font-family: var(--font-mono); font-size: 14px; }
body.page-home .hs-contact-list li:hover .hs-contact-arrow { color: var(--accent); }

body.page-home .hs-form {
    display: flex; flex-direction: column; gap: 16px;
    background: var(--bg-1);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-3);
    padding: 32px;
    position: relative;
}
body.page-home .hs-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
body.page-home .hs-form label { display: flex; flex-direction: column; gap: 8px; }
body.page-home .hs-form label span {
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--fg-3);
}
body.page-home .hs-form input,
body.page-home .hs-form textarea {
    font-family: var(--font-body);
    font-size: 15px;
    padding: 12px 14px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-2);
    background: var(--bg-0);
    color: var(--fg-1);
    outline: none;
    transition: all 150ms;
}
body.page-home .hs-form input:focus,
body.page-home .hs-form textarea:focus {
    border-color: var(--accent);
    box-shadow: var(--focus-ring);
}
body.page-home .hs-form input.field-error,
body.page-home .hs-form textarea.field-error {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(217,68,91,0.15);
}
body.page-home .hs-form textarea { resize: vertical; min-height: 110px; }
body.page-home .hs-form .hp-field {
    position: absolute;
    left: -10000px; top: -10000px;
    width: 1px; height: 1px;
    opacity: 0;
}
body.page-home .hs-form-foot {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 8px;
    gap: 16px;
    flex-wrap: wrap;
}
body.page-home .hs-form-foot .meta {
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: 0.06em;
    color: var(--fg-3);
}
body.page-home .form-status {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--fg-3);
    margin-top: 4px;
    min-height: 1.5em;
}
body.page-home .form-status.error { color: var(--danger); }
body.page-home .form-status.success { display: none; }
body.page-home .hs-form-success {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--success);
    padding: 24px;
    background: var(--success-soft);
    border-radius: var(--radius-2);
}

@media (max-width: 1000px) {
    body.page-home .hs-contact-inner { grid-template-columns: 1fr; gap: 56px; }
    body.page-home .hs-form-row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
body.page-home .hs-footer {
    background: #0A0E12; color: #C4CCD8;
    padding: 80px var(--gutter) 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
body.page-home .hs-footer-inner { max-width: var(--max-content); margin: 0 auto; }
body.page-home .hs-footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
body.page-home .hs-footer-brand .hs-logo-word { font-size: 22px; }
body.page-home .hs-footer-brand .hs-logo-mark { width: 40px; height: 40px; font-size: 20px; }
body.page-home .hs-footer-tag {
    font-size: 14px; line-height: 1.6;
    color: rgba(255,255,255,0.6);
    margin-top: 18px; max-width: 340px;
}
body.page-home .hs-footer-h {
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}
body.page-home .hs-footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
body.page-home .hs-footer-list a {
    font-family: var(--font-display);
    font-size: 14px;
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    transition: color 150ms;
}
body.page-home .hs-footer-list a:hover { color: var(--accent); }
body.page-home .hs-footer-list .l {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}
body.page-home .hs-footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 24px;
    font-family: var(--font-mono); font-size: 11px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.06em;
    flex-wrap: wrap; gap: 12px;
}
body.page-home .hs-footer-bottom .accent { color: var(--accent); }
@media (max-width: 900px) {
    body.page-home .hs-footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ---------- Cookie banner (new design pill) ---------- */
body.page-home .hs-cookie {
    position: fixed; bottom: 16px; left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #11161C;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: var(--radius-3);
    padding: 14px 18px;
    display: none;
    align-items: center; gap: 14px;
    box-shadow: var(--shadow-2);
    color: rgba(255,255,255,0.78);
    font-size: 13px;
    max-width: 580px; z-index: 200;
    transition: transform 220ms var(--ease-out), opacity 220ms var(--ease-out);
    opacity: 0;
}
body.page-home .hs-cookie.show {
    display: flex;
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
body.page-home .hs-cookie button {
    font-family: var(--font-display); font-size: 12px;
    padding: 7px 14px; border-radius: var(--radius-2);
    cursor: pointer; border: 1px solid transparent;
    white-space: nowrap;
}
body.page-home .hs-cookie .accept { background: var(--accent); color: var(--accent-ink); }
body.page-home .hs-cookie .decline { background: transparent; color: rgba(255,255,255,0.78); border-color: rgba(255,255,255,0.16); }
@media (max-width: 600px) {
    body.page-home .hs-cookie { flex-wrap: wrap; max-width: calc(100% - 32px); }
}


/* ============================================================
   SERVICE DETAIL (/sluzby/*, /en/services/*)
   Sdílí .page-service, per-služba se odlišuje akcentem
   přes .page-service-{slug} (např. .page-service-ai).
   ============================================================ */

body.page-service {
    font-family: var(--font-body, 'IBM Plex Sans', system-ui, -apple-system, 'Segoe UI', sans-serif);
    line-height: 1.65;
    color: #0a0e12;
    background: #ffffff;
    --service-accent: #00cafe;
    --service-accent-2: #00cafe;
    --service-on-accent: #ffffff;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Display headings — Space Grotesk on service detail pages */
body.page-service h1,
body.page-service h2,
body.page-service h3,
body.page-service h4 {
    font-family: var(--font-display, 'Space Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif);
    letter-spacing: -0.02em;
}

/* Navigation (sdílená s home) — selektor jen pro hlavní nav (přímý child body),
   ne pro <nav class="breadcrumb"> uvnitř <main>. */
body.page-service > nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    padding: 1.25rem 0;
    z-index: 1000;
}

body.page-service .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body.page-service .logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #0a0e12;
}
body.page-service .logo-mark {
    width: 32px; height: 32px;
    background: var(--accent, #00cafe);
    border-radius: 6px;
    display: grid; place-items: center;
    font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace);
    font-weight: 700;
    font-size: 16px;
    color: #00181F;
    letter-spacing: -0.02em;
}
body.page-service .logo-word {
    font-family: var(--font-display, 'Space Grotesk', system-ui, sans-serif);
    font-size: 17px;
    line-height: 1;
    letter-spacing: -0.01em;
    color: #0a0e12;
}
body.page-service .logo-word b { font-weight: 700; }
body.page-service .logo-word em {
    font-style: normal;
    font-weight: 400;
    color: var(--accent, #00cafe);
    margin-left: 1px;
}

/* Eyebrow — mono font with cyan dot, matches home design */
body.page-service .eyebrow {
    font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace);
    font-size: 12px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--service-accent, #00cafe);
    font-weight: 500;
}

body.page-service .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

body.page-service .nav-links a {
    color: #475569;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

body.page-service .nav-links a:hover {
    color: #00cafe;
}

body.page-service .lang-switch {
    color: #00cafe;
    font-weight: 500;
}

/* Main získá horní offset, aby se obsah nevešel pod fixed nav */
body.page-service main {
    padding-top: 80px;
}

/* Breadcrumb — uvnitř <main>, normální flow */
body.page-service .breadcrumb {
    max-width: 1200px;
    margin: 1.5rem auto 0;
    padding: 0 2rem;
    font-size: 0.9rem;
    color: #64748b;
}

body.page-service .breadcrumb a {
    color: #64748b;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

body.page-service .breadcrumb a:hover {
    color: #00cafe;
    border-bottom-color: #00cafe;
}

body.page-service .breadcrumb .sep {
    margin: 0 0.5rem;
    color: #cbd5e1;
}

body.page-service .breadcrumb [aria-current="page"] {
    color: #0f172a;
    font-weight: 500;
}

/* Hero */
body.page-service .service-hero {
    margin-top: 1.75rem;
    padding: 70px 2rem 90px;
    background:
        radial-gradient(circle at 75% 20%, rgba(255,255,255,0.18) 0%, transparent 55%),
        linear-gradient(135deg, var(--service-accent) 0%, var(--service-accent-2) 100%);
    color: var(--service-on-accent);
    position: relative;
    overflow: hidden;
}

body.page-service .service-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.12) 1px, transparent 0);
    background-size: 24px 24px;
    opacity: 0.5;
    pointer-events: none;
}

body.page-service .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

body.page-service .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.85;
}

body.page-service .service-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    max-width: 900px;
}

body.page-service .service-hero .lead {
    font-size: 1.2rem;
    line-height: 1.65;
    max-width: 720px;
    margin-bottom: 2rem;
    opacity: 0.95;
}

body.page-service .hero-cta {
    display: inline-block;
    padding: 0.95rem 1.75rem;
    background: var(--service-on-accent);
    color: var(--service-accent);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.15s, box-shadow 0.15s;
}

body.page-service .hero-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

/* Sekce */
body.page-service .service-section {
    padding: 90px 2rem;
}

body.page-service .service-section.alt {
    background: #f8fafc;
}

body.page-service .section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

body.page-service .service-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: #0f172a;
}

body.page-service .section-lead {
    font-size: 1.1rem;
    color: #475569;
    max-width: 720px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

body.page-service .service-intro {
    padding: 70px 2rem 0;
}

body.page-service .service-intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: #334155;
    line-height: 1.75;
}

/* Use case karty */
body.page-service .usecases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

body.page-service .usecase {
    background: white;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    border-left: 3px solid var(--service-accent);
    border-radius: 4px;
    transition: border-left-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

body.page-service .usecase:hover {
    border-left-color: var(--service-accent-2);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    transform: translateY(-2px);
}

body.page-service .usecase h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: #0f172a;
    letter-spacing: -0.01em;
}

body.page-service .usecase p {
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.65;
}

/* Process steps */
body.page-service .process-steps {
    list-style: none;
    counter-reset: step;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

body.page-service .process-steps li {
    counter-increment: step;
    background: white;
    padding: 2rem 1.75rem 1.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    position: relative;
}

body.page-service .process-steps li::before {
    content: counter(step);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--service-accent);
    color: var(--service-on-accent);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

body.page-service .process-steps h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

body.page-service .process-steps p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.65;
}

/* Tech stack list */
body.page-service .tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.25rem;
}

body.page-service .tech-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 1.25rem 1.5rem;
}

body.page-service .tech-card h3 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--service-accent);
    margin-bottom: 0.75rem;
}

body.page-service .tech-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

body.page-service .tech-card li {
    background: #f1f5f9;
    color: #334155;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* FAQ */
body.page-service .faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    gap: 0.75rem;
}

body.page-service .faq-list details {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 0;
    transition: border-color 0.2s;
}

body.page-service .faq-list details[open] {
    border-color: var(--service-accent);
}

body.page-service .faq-list summary {
    cursor: pointer;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: #0f172a;
    list-style: none;
    position: relative;
    padding-right: 3rem;
}

body.page-service .faq-list summary::-webkit-details-marker {
    display: none;
}

body.page-service .faq-list summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--service-accent);
    transition: transform 0.2s;
}

body.page-service .faq-list details[open] summary::after {
    content: '−';
}

body.page-service .faq-list .faq-body {
    padding: 0 1.5rem 1.5rem;
    color: #475569;
    line-height: 1.7;
}

body.page-service .faq-list .faq-body p + p {
    margin-top: 0.75rem;
}

/* CTA banner před kontaktem */
body.page-service .cta-banner {
    background: linear-gradient(135deg, var(--service-accent) 0%, var(--service-accent-2) 100%);
    color: var(--service-on-accent);
    padding: 70px 2rem;
    text-align: center;
}

body.page-service .cta-banner h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--service-on-accent);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

body.page-service .cta-banner p {
    font-size: 1.1rem;
    opacity: 0.92;
    max-width: 640px;
    margin: 0 auto 1.75rem;
}

body.page-service .cta-banner a {
    display: inline-block;
    padding: 0.95rem 1.75rem;
    background: var(--service-on-accent);
    color: var(--service-accent);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
}

body.page-service .cta-banner a:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Contact section + form (znovupoužité z home, scope na page-service) */
body.page-service .contact {
    padding: 100px 2rem;
    background: #f8fafc;
}

body.page-service .contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

body.page-service .contact-info h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #0f172a;
    letter-spacing: -0.02em;
}

body.page-service .contact-info p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 2rem;
}

body.page-service .contact-channels {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

body.page-service .contact-channels li {
    font-size: 0.95rem;
    color: #475569;
}

body.page-service .contact-channels a {
    color: var(--service-accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

body.page-service .contact-channels a:hover {
    border-bottom-color: var(--service-accent);
}

body.page-service .contact-form {
    background: white;
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
    border-left: 3px solid var(--service-accent);
}

body.page-service .contact-form .hp-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

body.page-service .form-row {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

body.page-service .form-row label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #334155;
}

body.page-service .form-row .req {
    color: #ef4444;
    margin-left: 0.15rem;
}

body.page-service .form-row input,
body.page-service .form-row textarea {
    font: inherit;
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    background: #ffffff;
    color: #0f172a;
    transition: border-color 0.2s, box-shadow 0.2s;
}

body.page-service .form-row textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

body.page-service .form-row input:focus,
body.page-service .form-row textarea:focus {
    outline: none;
    border-color: var(--service-accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--service-accent) 22%, transparent);
}

body.page-service .form-row input.field-error,
body.page-service .form-row textarea.field-error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

body.page-service .form-submit {
    font: inherit;
    font-weight: 600;
    padding: 0.85rem 2rem;
    background: var(--service-accent);
    color: var(--service-on-accent);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s, filter 0.2s;
}

body.page-service .form-submit:hover:not(:disabled) {
    filter: brightness(0.9);
}

body.page-service .form-submit:active:not(:disabled) {
    transform: translateY(1px);
}

body.page-service .form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

body.page-service .form-status {
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
    min-height: 1.5em;
}

body.page-service .form-status.success {
    color: #047857;
    font-weight: 500;
}

body.page-service .form-status.error {
    color: #b91c1c;
}

/* Footer (sdílený, lehce zjednodušený) */
body.page-service footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 4rem 2rem 2rem;
}

body.page-service .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

body.page-service .footer-section h3 {
    color: #f1f5f9;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

body.page-service .footer-section p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

body.page-service .footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

body.page-service .footer-section a:hover {
    color: #00cafe;
}

body.page-service .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #1e293b;
    text-align: center;
    font-size: 0.9rem;
}

/* Cookie banner — recyklujeme home třídy, jen scopujeme i pod page-service */
body.page-service .cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0f172a;
    color: #f1f5f9;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}
body.page-service .cookie-consent.show { display: block; transform: translateY(0); }
body.page-service .cookie-consent-content {
    max-width: 1200px; margin: 0 auto; display: flex; align-items: center;
    justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
body.page-service .cookie-consent-text { flex: 1; min-width: 300px; }
body.page-service .cookie-consent-text p { margin: 0; font-size: 0.95rem; line-height: 1.6; color: #cbd5e1; }
body.page-service .cookie-consent-text a { color: #00cafe; text-decoration: underline; }
body.page-service .cookie-consent-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
body.page-service .cookie-btn {
    padding: 0.75rem 1.5rem; border: none; border-radius: 6px;
    font-weight: 600; font-size: 0.95rem; cursor: pointer;
    transition: all 0.2s; white-space: nowrap;
}
body.page-service .cookie-btn-accept { background: #00cafe; color: white; }
body.page-service .cookie-btn-accept:hover { background: #00a3cc; }
body.page-service .cookie-btn-decline { background: transparent; color: #cbd5e1; border: 1px solid #475569; }
body.page-service .cookie-btn-decline:hover { background: #1e293b; border-color: #64748b; }

/* Responsive */
@media (max-width: 768px) {
    body.page-service .nav-links { display: none; }
    body.page-service .breadcrumb { padding: 0 1.5rem; }
    body.page-service .service-hero { margin-top: 1.25rem; padding: 60px 1.5rem 70px; }
    body.page-service .service-hero h1 { font-size: 2.25rem; }
    body.page-service .service-hero .lead { font-size: 1.05rem; }
    body.page-service .service-section { padding: 60px 1.5rem; }
    body.page-service .service-section h2 { font-size: 1.75rem; }
    body.page-service .service-intro { padding: 50px 1.5rem 0; }
    body.page-service .cta-banner { padding: 50px 1.5rem; }
    body.page-service .cta-banner h2 { font-size: 1.5rem; }
    body.page-service .contact-container { grid-template-columns: 1fr; gap: 2.5rem; }
    body.page-service .contact-form { padding: 1.75rem; }
    body.page-service .contact { padding: 60px 1.5rem; }
    body.page-service .cookie-consent { padding: 1.25rem 1.5rem; }
    body.page-service .cookie-consent-content { flex-direction: column; align-items: stretch; }
    body.page-service .cookie-consent-buttons { width: 100%; }
    body.page-service .cookie-btn { flex: 1; }
}

/* Per-služba akcenty — brand cyan zůstává primárním, druhý odstín dělá identitu hero gradientu */
body.page-service.page-service-ai {
    --service-accent:   #00cafe;
    --service-accent-2: #7c3aed;     /* violet — AI */
    --service-on-accent: #ffffff;
}
body.page-service.page-service-security {
    --service-accent:   #00cafe;
    --service-accent-2: #dc2626;     /* red — bezpečnost */
    --service-on-accent: #ffffff;
}
body.page-service.page-service-mobile {
    --service-accent:   #00cafe;
    --service-accent-2: #10b981;     /* emerald — mobile */
    --service-on-accent: #ffffff;
}
body.page-service.page-service-migration {
    --service-accent:   #00cafe;
    --service-accent-2: #f59e0b;     /* amber — migrace */
    --service-on-accent: #ffffff;
}
body.page-service.page-service-website {
    --service-accent:   #00cafe;
    --service-accent-2: #1e3a8a;     /* deep blue — správa webů */
    --service-on-accent: #ffffff;
}
body.page-service.page-service-custom {
    --service-accent:   #00cafe;
    --service-accent-2: #4338ca;     /* indigo — zakázkový vývoj */
    --service-on-accent: #ffffff;
}




body.page-vehicles {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #0f172a;
    background: #ffffff;
}

/* Navigation */
body.page-vehicles nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    padding: 1.25rem 0;
    z-index: 1000;
}

body.page-vehicles .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body.page-vehicles .logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    letter-spacing: -0.02em;
}

body.page-vehicles .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

body.page-vehicles .nav-links a {
    color: #475569;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

body.page-vehicles .nav-links a:hover {
    color: #00cafe;
}

/* Hero */
body.page-vehicles .hero {
    margin-top: 80px;
    padding: 100px 2rem 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    text-align: center;
}

body.page-vehicles .hero-content {
    max-width: 900px;
    margin: 0 auto;
}

body.page-vehicles .hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

body.page-vehicles .hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Content Sections */
body.page-vehicles .section {
    padding: 80px 2rem;
}

body.page-vehicles .section-alt {
    background: #f8fafc;
}

body.page-vehicles .container {
    max-width: 1200px;
    margin: 0 auto;
}

body.page-vehicles .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

body.page-vehicles .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
    letter-spacing: -0.02em;
}

body.page-vehicles .section-header p {
    font-size: 1.1rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Grid */
body.page-vehicles .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

body.page-vehicles .service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 4px solid #00cafe;
    transition: transform 0.3s, box-shadow 0.3s;
}

body.page-vehicles .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

body.page-vehicles .service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0f172a;
}

body.page-vehicles .service-card p {
    color: #475569;
    line-height: 1.7;
}

/* Currently Looking For */
body.page-vehicles .looking-for {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-top: 2rem;
}

body.page-vehicles .looking-for h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #0f172a;
    text-align: center;
}

body.page-vehicles .vehicle-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

body.page-vehicles .vehicle-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    text-align: center;
}

body.page-vehicles .vehicle-item h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00cafe;
    margin-bottom: 0.5rem;
}

body.page-vehicles .vehicle-item .years {
    font-size: 1.1rem;
    color: #475569;
    font-weight: 500;
}

body.page-vehicles .vehicle-item .status {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: #00cafe;
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* CTA Section */
body.page-vehicles .cta-section {
    background: linear-gradient(135deg, #00cafe 0%, #00a3cc 100%);
    color: white;
    padding: 80px 2rem;
    text-align: center;
}

body.page-vehicles .cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

body.page-vehicles .cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

body.page-vehicles .cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #00cafe;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

body.page-vehicles .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Footer */
body.page-vehicles footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 3rem 2rem 2rem;
}

body.page-vehicles .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

body.page-vehicles .footer-content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

body.page-vehicles .footer-content a {
    color: #00cafe;
    text-decoration: none;
}

body.page-vehicles .footer-content a:hover {
    text-decoration: underline;
}

/* Vehicles — responsive */
@media (max-width: 768px) {
    body.page-vehicles .hero h1 {
        font-size: 2.5rem;
    }

    body.page-vehicles .hero p {
        font-size: 1.1rem;
    }

    body.page-vehicles .nav-links {
        display: none;
    }

    body.page-vehicles .section-header h2 {
        font-size: 2rem;
    }

    body.page-vehicles .services-grid,
    body.page-vehicles .vehicle-list {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   PRIVACY (/privacy/)
   ============================================================ */

body.page-privacy {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
}

body.page-privacy h1 {
    color: #2c3e50;
    border-bottom: 3px solid #3498db;
    padding-bottom: 10px;
    text-align: center;
}

body.page-privacy h2 {
    color: #34495e;
    margin-top: 30px;
}

body.page-privacy .container {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

body.page-privacy .last-updated {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 20px;
    text-align: center;
}

body.page-privacy .columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

body.page-privacy .column {
    padding: 0 15px;
}

body.page-privacy .column:first-child {
    border-right: 2px solid #e0e0e0;
}

body.page-privacy .column h2:first-child {
    margin-top: 0;
}

@media (max-width: 768px) {
    body.page-privacy .columns {
        grid-template-columns: 1fr;
    }
    body.page-privacy .column:first-child {
        border-right: none;
        border-bottom: 2px solid #e0e0e0;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
}


/* ============================================================
   404
   ============================================================ */

body.page-404 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f8fafc;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
}

body.page-404 .container {
    text-align: center;
    max-width: 600px;
}

body.page-404 h1 {
    font-size: 6rem;
    font-weight: 700;
    color: #00cafe;
    margin-bottom: 1rem;
}

body.page-404 h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

body.page-404 p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.6;
}

body.page-404 .btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #00cafe;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s;
}

body.page-404 .btn:hover {
    background: #00a3cc;
}
