/* ==========================================================================
   XEVOS Cyber Security Center – Main Stylesheet
   Dark cyber theme based on Figma design.
   Fonts: Montserrat (headings) + Sora (body)
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. @font-face – Self-hosted fonts (Montserrat + Sora)
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/montserrat-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/montserrat-medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/montserrat-semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/montserrat-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/montserrat-black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/montserrat-bold-italic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/montserrat-black-italic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Sora';
  src: url('../fonts/sora/sora-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sora';
  src: url('../fonts/sora/sora-medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sora';
  src: url('../fonts/sora/sora-semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sora';
  src: url('../fonts/sora/sora-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


/* Space Mono — used for dates in event cards (Figma: Space Mono Bold 32px) */
@font-face {
  font-family: 'Space Mono';
  src: url('../fonts/space-mono/space-mono-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Space Mono';
  src: url('../fonts/space-mono/space-mono-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


/* --------------------------------------------------------------------------
   1. Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Background gradients */
  --bg-primary: #010129;
  --bg-secondary: #0d1233;
  --bg-card: rgba(15, 20, 60, 0.6);
  --bg-card-hover: rgba(20, 28, 80, 0.7);
  --bg-header: rgba(10, 14, 39, 0.85);

  /* Figma radial glow layer – generic, 40% opacity, Lighten blend */
  --bg-glow-color: rgba(87, 24, 244, 0.4);

  /* Accent */
  --color-accent: #F527AA;
  --color-accent-hover: #e6006e;
  --color-accent-glow: rgba(255, 0, 128, 0.3);
  --color-accent-soft: rgba(255, 0, 128, 0.15);

  /* Blues */
  --color-blue: #4a6cf7;
  --color-blue-light: #6d8cff;
  --color-blue-glow: rgba(74, 108, 247, 0.3);

  /* Cyan */
  --color-cyan: #06b6d4;

  /* Text */
  --color-white: #ffffff;
  --color-text: #ECECEC;
  --color-text-muted: #94a3b8;
  --color-text-dim: #64748b;

  /* Borders */
  --color-border: #747474;
  --color-border-light: rgba(255, 255, 255, 0.15);
  --color-border-accent: rgba(255, 0, 128, 0.4);

  /* Status */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;

  /* Typography – Figma: Montserrat (headings) + Sora (body) */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Sora', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --font-size-base: 1rem;
  --font-size-sm: 16px;
  --font-size-xs: 0.75rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.5rem;
  --line-height-base: 1.65;
  --line-height-heading: 1.05;

  /* Layout */
  --container-max: 1600px;
  --gutter: 1.5rem;

  /* Radius */
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 20px var(--color-accent-glow);
  --shadow-blue-glow: 0 0 30px var(--color-blue-glow);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Z-index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
}


/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding-top: 80px;
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: 400;
  line-height: var(--line-height-base);
  color: var(--color-text);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


body:not(.home) {
  background-color: #010129;
  padding-top: 0px;
}

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


/* --------------------------------------------------------------------------
   2b. Radial glow blobs – decorative elements between sections
   Generic reusable glow system. HP-specific overrides in frontpage.css.
   -------------------------------------------------------------------------- */
.xevos-glow-blob {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--bg-glow-color) 0%, transparent 60%);
  mix-blend-mode: lighten;
  pointer-events: none;
  z-index: 0;
}

/* Position variants */
.xevos-glow-blob--right {
  right: -400px;
}

.xevos-glow-blob--left {
  left: -400px;
}

.xevos-glow-blob--center {
  left: 50%;
  transform: translateX(-50%);
}

/* Wrapper: clip overflow so glow never causes scrollbar */
.xevos-glow-wrap {
  position: relative;
  overflow: hidden;
}

/* Children stay above glow */
.xevos-glow-wrap>*:not(.xevos-glow-blob) {
  position: relative;
  z-index: 1;
}


/* --------------------------------------------------------------------------
   3. Typography – Figma Design System
   Desktop: H1=80/Black, H2=52/Black, H3=32/Black, H6=18/Black
   Mobile:  H1=36/Black, H2=26/Black, H3=22/Black, H6=18/Black
   Body:    Sora – Body-1=24/Regular(desktop) 16(mobile), Body-2=16(d) 14(m)
   -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: var(--line-height-heading);
  color: var(--color-white);
  margin-top: 0;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

/* ---- Mobile first (360px base) ---- */
h1 {
  font-size: 2.25rem;
}

/* 36px – Montserrat Black */
h2 {
  font-size: 1.625rem;
}

/* 26px – Montserrat Black */
h3 {
  font-size: 1.375rem;
}

/* 22px – Montserrat Black */
h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1.125rem;
  font-weight: 900;
}

/* 18px – Montserrat Black */

/* ---- Desktop (1024px+) ---- */
@media (min-width: 1024px) {
  h1 {
    font-size: 5rem;
  }

  /* 80px – Montserrat Black */
  h2 {
    font-size: 3.25rem;
  }

  /* 52px – Montserrat Black */
  h3 {
    font-size: 2rem;
  }

  /* 32px – Montserrat Black */
  h6 {
    font-size: 1.125rem;
  }

  /* 18px */
}

/* Accent colored words in headings (magenta) */
h1 span,
h2 span,
.xevos-accent {
  color: var(--color-accent);
}

/* H1 description variant: Montserrat Bold (not Black) */
.xevos-h1-desc {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.625rem;
  /* 26px mobile */
  line-height: 1.3;
  color: var(--color-white);
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  .xevos-h1-desc {
    font-size: 2.5rem;
  }

  /* 40px desktop */
}

/* H2-bold variant: Montserrat Bold (700) instead of Black (900) */
.xevos-h2-bold {
  font-weight: 700;
}

/* H3 variants */
.xevos-h3-regular {
  font-weight: 400;
}

.xevos-h3-medium {
  font-weight: 500;
}

.xevos-h3-bold {
  font-weight: 700;
}

/* Numbers variant: Montserrat 52px Bold */
.xevos-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  color: var(--color-white);
}

@media (min-width: 1024px) {
  .xevos-number {
    font-size: 3.25rem;
  }

  /* 52px */
}

/* Price/Cena display */
.xevos-price {
  font-family: var(--font-heading);
  font-weight: 700;
}

.xevos-price__amount {
  font-size: 2.5rem;
  /* 40px mobile */
  color: var(--color-white);
}

.xevos-price__currency {
  font-size: 1.375rem;
  /* 22px mobile */
}

.xevos-price__vat {
  font-size: 1.375rem;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .xevos-price__amount {
    font-size: 4rem;
  }

  /* 64px */
  .xevos-price__currency {
    font-size: 2rem;
  }

  /* 32px */
  .xevos-price__vat {
    font-size: 1.5rem;
  }

  /* 24px */
}

/* Date display: Sora */
.xevos-date {
  font-family: var(--font-body);
}

.xevos-date__day {
  font-size: 2rem;
  /* 32px Sora Regular */
  font-weight: 400;
}

.xevos-date__month {
  font-size: 2.5rem;
  /* 40px Sora SemiBold */
  font-weight: 600;
}

/* Body text: Sora */
p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--color-text);
}

/* Body-1: Sora 16px(mobile) / 24px(desktop) Regular */
.xevos-body-1 {
  font-size: 1rem;
  font-weight: 400;
}

.xevos-body-1-medium {
  font-size: 1rem;
  font-weight: 500;
}

@media (min-width: 1024px) {
  .xevos-body-1 {
    font-size: 1.5rem;
  }

  /* 24px */
  .xevos-body-1-medium {
    font-size: 1.5rem;
  }
}

/* Body-2: Sora 14px(mobile) / 16px(desktop) Regular */
.xevos-body-2 {
  font-size: 0.875rem;
  font-weight: 400;
}

@media (min-width: 1024px) {
  .xevos-body-2 {
    font-size: 1rem;
  }
}

/* Body-4: Sora 14px Regular */
.xevos-body-4 {
  font-size: 0.875rem;
  font-weight: 400;
}

/* Body-1-mix: Montserrat Regular + Black */
.xevos-body-mix {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1rem;
}

.xevos-body-mix strong {
  font-weight: 900;
  font-size: 1.5rem;
}

@media (min-width: 1024px) {
  .xevos-body-mix {
    font-size: 1.5rem;
  }

  /* 24px */
  .xevos-body-mix strong {
    font-size: 2rem;
  }

  /* 32px */
}

/* Recenze text: Sora 22px Regular */
.xevos-recenze-text {
  font-family: var(--font-body);
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.5;
}

small {
  font-size: var(--font-size-sm);
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-white);
}

a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

ul,
ol {
  margin-top: 0;
  padding-left: 1.5rem;
}

strong,
b {
  font-weight: 700;
  color: var(--color-white);
}


/* --------------------------------------------------------------------------
   4. Utility
   -------------------------------------------------------------------------- */
.xevos-skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.xevos-skip-link:focus {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  clip: auto;
  z-index: var(--z-modal);
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--radius);
}

.xevos-main {
  min-height: 50vh;
}

.xevos-section {
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .xevos-section {
    padding: 6rem 0;
  }
}

.xevos-section__container {
  position: relative;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  z-index: 1;
}


/* --------------------------------------------------------------------------
   5. Buttons – Figma Design System
   Main-btn:      Magenta gradient fill, white text, arrow icon
   Secondary-btn: Dark BG, magenta border, magenta text (smaller)
   Tercial-btn:   Outline thin border, smaller
   Link-btn:      Text-only magenta, uppercase, underline on hover
   -------------------------------------------------------------------------- */
.xevos-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.xevos-btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Arrow icon inside button (Figma: ↗ icon left of text) */
.xevos-btn__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  flex-shrink: 0;
  background: url('../img/global/button-arrow.svg') no-repeat center / contain;
}

.xevos-btn__arrow svg {
  display: none;
}

/* ================================================================
   Main-btn (Primary) – Magenta filled, gradient, shadow
   Figma: Background gradient from magenta to slightly darker
   ================================================================ */
.xevos-btn--primary {
  background: #F527AA;
  color: var(--color-white);
  border-color: #FFFFFF;
  box-shadow: 0 4px 20px var(--color-accent-glow);
  padding: 24px;
  font-size: 24px;
  font-weight: bold;
  gap: 20px;
}

.xevos-btn--primary:hover {
  background: linear-gradient(135deg, #ff1a8f 0%, #e6006e 100%);
  color: var(--color-white);
  box-shadow: 0 6px 30px rgba(255, 0, 128, 0.5);
  transform: translateY(-2px);
}

.xevos-btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px var(--color-accent-glow);
}

/* ================================================================
   Secondary-btn – Dark bg, magenta border + text
   Figma: Smaller button, transparent bg, magenta border
   ================================================================ */
.xevos-btn--secondary {
  background: rgba(255, 0, 128, 0.08);
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
}

.xevos-btn--secondary:hover {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 15px var(--color-accent-glow);
}

/* ================================================================
   Tercial-btn – Thin outline, subtle
   Figma: Thinner border, smaller padding
   ================================================================ */
.xevos-btn--outline {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  padding: 35.5px 24px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.xevos-btn--outline:hover {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-glow);
}

/* ================================================================
   Link-btn – Text link, magenta, uppercase, no border
   Figma: "ZOBRAZIT VŠECHNY ŠKOLENÍ" style
   ================================================================ */
.xevos-btn--link {
  background: none;
  color: var(--color-accent);
  border: none;
  padding: 0;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  position: relative;
}

.xevos-btn--link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: var(--color-accent);
  transition: width var(--transition-base);
}

.xevos-btn--link:hover::after {
  width: 100%;
}

.xevos-btn--link:hover {
  color: var(--color-accent);
}

/* Ghost – read more style: "Číst více ———→" */
.xevos-btn--ghost {
  background: transparent;
  color: var(--color-accent);
  border-color: transparent;
  padding: 0.5rem 0;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.875rem;
}

.xevos-btn--ghost::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--color-accent);
  margin-left: 0.75rem;
  transition: width var(--transition-base);
  vertical-align: middle;
}

.xevos-btn--ghost:hover::after {
  width: 48px;
}

.xevos-btn--ghost:hover {
  color: var(--color-white);
}

/* ---- Size variants ---- */
.xevos-btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
}

/* .xevos-btn--lg {
  padding: 1.25rem 3rem;
  font-size: 1rem;
} */

.xevos-btn--full {
  width: 100%;
}

.xevos-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* ---- Mobile button adjustments ---- */
@media (max-width: 767px) {
  .xevos-btn--primary {
    padding: 0.875rem 1.5rem;
    font-size: 0.8125rem;
  }

  .xevos-btn--lg {
    padding: 1rem 2rem;
    font-size: 0.875rem;
  }
}


/* --------------------------------------------------------------------------
   6. Forms (dark theme)
   -------------------------------------------------------------------------- */
.xevos-form__group {
  margin-bottom: 1.25rem;
}

.xevos-form__label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-white);
}

.xevos-form__required {
  color: var(--color-accent);
}

.xevos-form__input,
.xevos-form__textarea,
.xevos-form__select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  color: var(--color-white);
  background: #00BBFF33;
  border: 1px solid #747474;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.xevos-form__input::placeholder,
.xevos-form__textarea::placeholder {
  color: var(--color-text-dim);
}

.xevos-form__input:focus,
.xevos-form__textarea:focus,
.xevos-form__select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-soft);
}

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

.xevos-form__error {
  margin-top: 0.25rem;
  font-size: var(--font-size-xs);
  color: var(--color-danger);
}

.xevos-form__hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* CF7 overrides */
.wpcf7 .wpcf7-form-control-wrap {
  display: block;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-soft);
}

.wpcf7 .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: 700;
  text-transform: uppercase;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--color-accent);
  color: var(--color-white);
  transition: all var(--transition-base);
  box-shadow: 0 4px 15px var(--color-accent-glow);
}

.wpcf7 .wpcf7-submit:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
}

.wpcf7 .wpcf7-not-valid-tip {
  font-size: var(--font-size-xs);
  color: var(--color-danger);
  margin-top: 4px;
}


/* --------------------------------------------------------------------------
   7. Header (dark transparent with blur)
   -------------------------------------------------------------------------- */
.xevos-header {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
}

.xevos-header__inner {
  position: relative;
  width: 100%;
  max-width: calc(1600px - 48px);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 104px;
  border: 1px solid var(--color-border);
  background: rgb(255 255 255 / 10%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: height var(--transition-base);
}

.xevos-header--scrolled .xevos-header__inner {

  height: 64px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.xevos-header__logo {
  flex-shrink: 0;
}

.xevos-header__logo img {
  height: 56px;
  width: auto;
  transition: height var(--transition-base);
}

.xevos-header--scrolled .xevos-header__logo img {
  height: 28px;
}

/* Desktop nav */
.xevos-header__nav {
  display: none;
}

@media (min-width: 1024px) {
  .xevos-header__nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}

.xevos-header__nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.xevos-header__nav-list a {
  color: var(--color-white);
}

.xevos-header__nav-list a:hover {
  color: #F527AA;
}

.xevos-header__nav-item {
  position: relative;
}

.xevos-header__nav-item>a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 0.875rem;
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.xevos-header__nav-item>a:hover,
.xevos-header__nav-item.current-menu-item>a {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  text-decoration-color: var(--color-accent);
}

/* Dropdown */
.xevos-header__nav-item:hover>.xevos-header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.xevos-header__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 0.5rem 0;
  background: var(--bg-secondary);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-base);
}

.xevos-header__dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.xevos-header__dropdown a:hover {
  color: var(--color-accent);
  background: rgba(255, 255, 255, 0.03);
}

/* Header actions */
.xevos-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.xevos-header__phone {
  display: none;
}

@media (min-width: 1024px) {
  .xevos-header__phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-muted);
    text-decoration: none;
  }

  .xevos-header__phone:hover {
    color: var(--color-white);
  }
}

/* Search icon */
.xevos-header__search-btn {
  display: none;
  background: url('../img/global/search.svg') no-repeat center / 18px 18px;
  border: none;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: 0;
  transition: opacity var(--transition-fast);
}

.xevos-header__search-btn svg {
  display: none;
}

.xevos-header__search-btn:hover {
  color: var(--color-white);
}

@media (min-width: 1024px) {
  .xevos-header__search-btn {
    display: flex;
  }
}

/* CTA in header – outline magenta */
.xevos-header__cta {
  display: none;
  padding: 8px 1.5rem;
  font-size: var(--font-size-sm);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: 0;
  text-decoration: none;
  transition: all var(--transition-base);
}

.xevos-header__cta:hover {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-glow);
}

@media (min-width: 1024px) {
  .xevos-header__cta {
    display: inline-flex;
  }
}

/* Hamburger */
.xevos-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .xevos-header__hamburger {
    display: none;
  }
}

.xevos-header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

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

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

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


/* --------------------------------------------------------------------------
   8. Mobile Menu (dark overlay)
   -------------------------------------------------------------------------- */
.xevos-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  z-index: var(--z-overlay);
  background: var(--bg-primary);
  padding: 100px var(--gutter) 3rem;
  overflow-y: auto;
  transition: right var(--transition-slow);
}

.xevos-mobile-menu.is-open {
  right: 0;
}

.xevos-mobile-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: 299;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.xevos-mobile-menu__overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.xevos-mobile-menu__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.xevos-mobile-menu__nav-item {
  border-bottom: 1px solid var(--color-border);
}

.xevos-mobile-menu__nav-item>a {
  display: block;
  padding: 1rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-white);
  text-decoration: none;
}

.xevos-mobile-menu__nav-item>a:hover {
  color: var(--color-accent);
}

.xevos-mobile-menu__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.xevos-mobile-menu__submenu.is-open {
  max-height: 500px;
}

.xevos-mobile-menu__submenu a {
  display: block;
  padding: 0.5rem 0 0.5rem 1rem;
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
}

.xevos-mobile-menu__submenu a:hover {
  color: var(--color-accent);
}

/* Submenu toggle button (created by JS for items with children) */
.xevos-mobile-menu__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  margin-left: auto;
}

.xevos-mobile-menu__toggle:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.xevos-mobile-menu__toggle svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.xevos-mobile-menu__toggle.is-active {
  background: rgba(255, 0, 128, 0.1);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.xevos-mobile-menu__toggle.is-active svg {
  transform: rotate(180deg);
}

/* Parent menu item: flex row so link + toggle sit side by side */
.xevos-mobile-menu__nav .menu-item-has-children {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.xevos-mobile-menu__nav .menu-item-has-children>a {
  flex: 1;
  min-width: 0;
}

.xevos-mobile-menu__nav .menu-item-has-children>.xevos-mobile-menu__submenu {
  flex-basis: 100%;
}

.xevos-mobile-menu__contact {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.xevos-mobile-menu__contact p {
  margin-bottom: 0.5rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.xevos-mobile-menu__contact p a {
  color: var(--color-white);
  font-weight: 500;
}


/* --------------------------------------------------------------------------
   9. Footer (dark, partners bar)
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   Archive bottom bar + Pagination — shared
   -------------------------------------------------------------------------- */
.xevos-archive-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.xevos-archive-bottom .xevos-pagination {
  position: absolute;
  right: 0;
}

.xevos-pagination {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.xevos-pagination__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.125rem;
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  font-weight: 500;
  border: 1px solid var(--color-border-light);
  background: rgba(0, 187, 255, 0.20);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
}

.xevos-pagination__num:hover {
  border-color: var(--color-white);
  color: var(--color-white);
}

.xevos-pagination__num.is-active {
  background: var(--color-white);
  color: var(--bg-primary);
  border-color: var(--color-white);
}


/* --------------------------------------------------------------------------
   Swiper nav arrows — shared (recenze, aktuality, lektoři)
   -------------------------------------------------------------------------- */
.xevos-nav-arrow {
  position: relative;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(217, 217, 217, 0.3);
  background: rgba(217, 217, 217, 0.08);
  color: var(--color-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.xevos-nav-arrow--prev {
  left: -24px;
}

.xevos-nav-arrow--next {
  right: -24px;
}

.xevos-nav-arrow:hover {
  background: rgba(217, 217, 217, 0.15);
  border-color: var(--color-cyan);
}

@media (max-width: 767px) {
  .xevos-nav-arrow {
    display: none;
  }
}


/* --------------------------------------------------------------------------
   Kyber aktuality — shared section (HP, Kyber testing)
   -------------------------------------------------------------------------- */
.xevos-hp-aktuality {
  background: transparent;
  padding-bottom: 68px;
}

.xevos-hp-aktuality__header {
  text-align: center;
  max-width: 950px;
  margin: 0 auto 4rem;
}

.xevos-hp-aktuality__header h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.75rem, 3.25vw, 3.25rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 0.625rem;
}

.xevos-hp-aktuality__header p {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.5vw, 1.5rem);
  line-height: 1.6;
  color: rgba(236, 236, 236, 1);
}

/* Figma: subtitle with mixed opacity — base 70%, <strong> at 100% */
.xevos-hp-aktuality__desc--mixed {
  color: rgba(236, 236, 236, 0.7);
}

.xevos-hp-aktuality__desc--mixed strong {
  color: var(--color-text);
  font-weight: inherit;
}

.xevos-hp-aktuality__carousel {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.xevos-hp-aktuality__carousel .xevos-aktuality-archive__grid {
  flex: 1;
  min-width: 0;
}

.xevos-hp-aktuality__footer {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 2.5rem;
}

.xevos-hp-aktuality .xevos-aktuality-archive__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .xevos-hp-aktuality .xevos-aktuality-archive__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Overlay card – shared style (fullscreen bg image + pattern + gradient) */
.xevos-card--overlay,
.xevos-hp-aktuality .xevos-card,
.xevos-blog-archive .xevos-card {
  position: relative;
  border: 1px solid #74747466;
  border-radius: 0;
  padding: 0;
}

.xevos-card--overlay .xevos-card__image,
.xevos-hp-aktuality .xevos-card__image,
.xevos-blog-archive .xevos-card__image {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
  z-index: 0;
}

.xevos-card--overlay .xevos-card__image img,
.xevos-hp-aktuality .xevos-card__image img,
.xevos-blog-archive .xevos-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.xevos-card--overlay .xevos-card__image::before,
.xevos-hp-aktuality .xevos-card__image::before,
.xevos-blog-archive .xevos-card__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/pattern.png');
  background-size: 50%;
  background-repeat: repeat;
  opacity: 0.04;
  z-index: 1;
  pointer-events: none;
}

.xevos-card--overlay .xevos-card__image::after,
.xevos-hp-aktuality .xevos-card__image::after,
.xevos-blog-archive .xevos-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1, 1, 41, 0.95) 0%, rgba(1, 1, 41, 0.6) 40%, transparent 100%);
  z-index: 2;
}

.xevos-card--overlay .xevos-card__body,
.xevos-hp-aktuality .xevos-card__body,
.xevos-blog-archive .xevos-card__body {
  position: relative;
  z-index: 3;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
  min-height: 400px;
}

.xevos-hp-aktuality .xevos-card__body {
  min-height: 480px;
}

.xevos-card--overlay .xevos-card__title,
.xevos-hp-aktuality .xevos-card__title,
.xevos-blog-archive .xevos-card__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(1.125rem, 2vw, 2rem);
  color: var(--color-text);
  letter-spacing: -0.64px;
}

.xevos-card--overlay .xevos-card__excerpt,
.xevos-hp-aktuality .xevos-card__excerpt,
.xevos-blog-archive .xevos-card__excerpt {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.6;
}

.xevos-card--overlay .xevos-card__badge,
.xevos-card--overlay .xevos-card__meta,
.xevos-hp-aktuality .xevos-card__badge,
.xevos-hp-aktuality .xevos-card__meta,
.xevos-blog-archive .xevos-card__badge,
.xevos-blog-archive .xevos-card__meta {
  display: none;
}

@media (max-width: 1023px) {
  .xevos-hp-aktuality__carousel {
    flex-direction: column;
  }

  .xevos-hp-aktuality .xevos-aktuality-archive__grid {
    grid-template-columns: 1fr;
  }
}


/* --------------------------------------------------------------------------
   Řekli o nás — shared section (HP, Kontakt, Detail školení, Kyber testing)
   -------------------------------------------------------------------------- */
/* BG přesahuje do partnerů — negative margin + extra padding */
.xevos-hp-recenze {
  background:
    linear-gradient(180deg, rgba(17, 1, 70, 0.00) 43.67%, #110146 83.67%),
    url('../img/backgrounds/bg-rekli-o-nas.png') lightgray 50% / cover no-repeat;
  mix-blend-mode: lighten;
  margin-bottom: -207px;
  padding-bottom: 400px;

}

.xevos-hp-recenze__header {
  text-align: center;
  max-width: 972px;
  margin: 0 auto 3rem;
}

.xevos-hp-recenze__header h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.75rem, 3.25vw, 3.25rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 0.625rem;
}

.xevos-hp-recenze__header p {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.5vw, 1.5rem);
  line-height: 1.6;
  color: var(--color-text);
}

/* Figma: subtitle with mixed opacity — base 70%, <strong> at 100% */
.xevos-hp-recenze__desc-mixed {
  color: rgba(236, 236, 236, 0.7);
}

.xevos-hp-recenze__desc-mixed strong {
  color: var(--color-text);
  font-weight: inherit;
}

.xevos-hp-recenze__carousel {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.xevos-hp-recenze__carousel .xevos-recenze-swiper {
  flex: 1;
  min-width: 0;
}

.xevos-recenze-swiper {
  overflow: visible;
}

.xevos-recenze-swiper .swiper-slide {
  margin-right: 50px;
}

.xevos-recenze-swiper .swiper-slide:last-child {
  margin-right: 0;
}

/* Recenze card — Figma: 417x303, cyan 20% bg, cyan stroke */
.xevos-recenze-card {
  background: rgba(0, 187, 255, 0.2);
  backdrop-filter: blur(25px);
  border: 1px solid #7474749e;
  border-radius: 0;
  padding: 1.5rem;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.xevos-recenze-card__inner {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.xevos-recenze-card__quote {
  display: block;
  width: clamp(48px, 5vw, 79px);
  height: auto;
  margin-bottom: 0.5rem;
  pointer-events: none;
}

.xevos-recenze-card__text {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.5vw, 1.5rem);
  line-height: 1.6;
  font-style: normal;
  color: var(--color-text);
  margin: 0 0 1.5rem 0;
  flex: 1;
  padding-top: 1rem;
  border: none;
}


/* Figma Section 07: bg rgb(16,2,69), border-top rgb(116,116,116), vertical gap 40 */
.xevos-footer {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.20) 100%), #100245;
  color: var(--color-text);
  border-top: 1px solid rgb(116, 116, 116);
  padding: 5rem 0 2.5rem;
}

/* Partners bar — Figma: 1600px, SPACE_BETWEEN, no gap */
.xevos-partners {
  padding: 4rem 0;
}

.xevos-partners__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Figma: 200x80 per logo — all images now exported at same 400x160 (2x) */
.xevos-partners__inner img {
  width: 200px;
  height: 80px;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.xevos-partners__inner img:hover {
  opacity: 1;
}

/* Footer inner — Figma: logo | menu (gap 32) | social (gap 15), vertical gap 40 */
.xevos-footer__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3.750rem;
}

/* Figma: 329x60 logo */
.xevos-footer__logo img {
  height: 60px;
  width: auto;
}

/* Figma: Sora 16px, gap 32, first item Sora 700 magenta */
.xevos-footer__nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.xevos-footer__nav a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.xevos-footer__nav a:hover {
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  text-decoration-color: var(--color-accent);
}

.xevos-footer__nav .current-menu-item a {
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  text-decoration-color: var(--color-accent);
}

/* Figma: social icons 24x24, gap 15, white fill */
.xevos-footer__social {
  display: flex;
  gap: 0.9375rem;
}

.xevos-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--color-white);
  transition: color var(--transition-fast);
}

.xevos-footer__social a:hover {
  color: var(--color-accent);
}

.xevos-footer__social svg {
  width: 20px;
  height: 20px;
}

.xevos-footer__social img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

/* Copyright — Figma: Sora 14px, gap 32, centered */
.xevos-footer__copy {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-white);
}

/* Figma: Sora 14px white, no underline */
.xevos-footer__copy a {
  color: var(--color-white);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.xevos-footer__copy a:hover {
  color: var(--color-accent);
}

/* Mobile footer */
@media (max-width: 767px) {
  .xevos-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .xevos-footer__logo img {
    height: 40px;
  }

  .xevos-footer__nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .xevos-footer__copy {
    flex-direction: column;
    gap: 0.5rem;
  }
}


/* --------------------------------------------------------------------------
   10. Cards (dark glass style)
   -------------------------------------------------------------------------- */
.xevos-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  text-decoration: none;
  color: inherit;
}

.xevos-card:hover {
  border-color: var(--color-border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.xevos-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.xevos-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.xevos-card:hover .xevos-card__image img {
  transform: scale(1.05);
}

.xevos-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.xevos-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
}

.xevos-card__arrow {
  width: 76px;
  height: auto;
  transition: transform var(--transition-base);
}

.xevos-card:hover .xevos-card__arrow {
  transform: translateX(6px);
}

.xevos-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
}


/* --------------------------------------------------------------------------
   13. Section Heading
   -------------------------------------------------------------------------- */
.xevos-section-heading {
  margin-bottom: 2.5rem;
}

.xevos-section-heading--center {
  text-align: center;
}

.xevos-section-heading--left {
  text-align: left;
}

.xevos-section-heading__subtitle {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.xevos-section-heading__line {
  display: none;
}

/* not used in dark design */
.xevos-section-heading__title {
  margin-bottom: 0;
}


/* --------------------------------------------------------------------------
   14. Page Hero (subpages)
   -------------------------------------------------------------------------- */
.xevos-page-hero {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--color-white);
  padding-bottom: 3rem;
}

@media (min-width: 1024px) {
  .xevos-page-hero {
    min-height: 450px;
  }
}

.xevos-page-hero__bg {
  position: absolute;
  inset: 0;
}

.xevos-page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.xevos-page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-primary) 0%, rgba(10, 14, 39, 0.6) 50%, rgba(10, 14, 39, 0.3) 100%);
}

.xevos-page-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.xevos-page-hero__title {
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.xevos-page-hero__subtitle {
  color: var(--color-text);
  font-size: var(--font-size-lg);
  max-width: 600px;
}


/* --------------------------------------------------------------------------
   16. Breadcrumbs
   -------------------------------------------------------------------------- */
.xevos-breadcrumbs {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-dim);
}

.xevos-breadcrumbs a {
  color: var(--color-text-dim);
}

.xevos-breadcrumbs a:hover {
  color: var(--color-accent);
}

.xevos-breadcrumbs__sep {
  margin: 0 0.5rem;
  color: var(--color-text-dim);
}


/* Aktuality archive + single styles moved to blog.css */


/* --------------------------------------------------------------------------
   18. Školení archive (list layout from Figma) + single
   -------------------------------------------------------------------------- */
/* Školení archive & detail styles moved to skoleni.css */


/* --------------------------------------------------------------------------
   19. Pagination
   -------------------------------------------------------------------------- */
.xevos-no-results {
  text-align: center;
  padding: 4rem;
  color: var(--color-text-dim);
  font-size: var(--font-size-lg);
}

.xevos-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 3rem;
}

.xevos-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0;
  border: 1px solid var(--color-border);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: all var(--transition-fast);
  background: transparent;
}

.xevos-pagination .page-numbers:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.xevos-pagination .page-numbers.current {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

/* Load more button (Figma style) */
.xevos-load-more {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}


/* Kontakt page styles moved to kontakt.css */


/* --------------------------------------------------------------------------
   22. Školení detail – special sections from Figma
   -------------------------------------------------------------------------- */
/* Školení price badge, lektori styles moved to skoleni.css */


/* --------------------------------------------------------------------------
   23. Order form + sidebar (shared: školení detail + kyber testování)
   Figma: Form left + contact/price sidebar right, cyan inputs
   -------------------------------------------------------------------------- */
.xevos-order-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .xevos-order-section {
    grid-template-columns: 1fr 574px;
    gap: clamp(2rem, 7.75vw, 7.75rem);
  }
}

/* Order sidebar */
.xevos-order-summary {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1rem;
}

/* Contact info – shared component (kontakt, skoleni, kyber-testovani) */
.xevos-order-summary__contact {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.xevos-contact-info__item,
.xevos-order-summary__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.xevos-contact-info__icon,
.xevos-order-summary__contact-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #00bbff;
}

.xevos-contact-info__icon svg,
.xevos-order-summary__contact-icon svg {
  color: #00bbff;
  fill: #00bbff;
}

.xevos-contact-info__item a,
.xevos-order-summary__contact-text,
.xevos-order-summary__contact-text a {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.1vw, 1.125rem);
  line-height: 1.61;
  letter-spacing: 0.36px;
  color: var(--color-text);
  text-decoration: none;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.xevos-contact-info__item a:hover,
.xevos-order-summary__contact-text a:hover {
  color: var(--color-white);
}

/* Price block */
.xevos-order-summary__price-block {
  padding-top: 2.5rem;
}

.xevos-order-summary__price-label {
  color: #FFF;
  font-family: Montserrat;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.xevos-order-summary__price-main {
  color: #FFF;
  font-family: Montserrat;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.xevos-order-summary__price-main small {
  color: rgba(255, 255, 255, 0.70);
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.xevos-order-summary__price-secondary {
  color: rgba(255, 255, 255, 0.70);
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}


/* --------------------------------------------------------------------------
   24. Header logo text (fallback when no image uploaded)
   -------------------------------------------------------------------------- */
.xevos-header__logo-text {
  font-size: 1rem;
  color: var(--color-white);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.xevos-header__logo-text strong {
  font-weight: 800;
  letter-spacing: 0.05em;
}

.xevos-header__logo-sep {
  color: var(--color-text-dim);
  font-weight: 300;
}

/* Mobile menu refinements */
.xevos-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.xevos-mobile-menu__close {
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  padding: 0.5rem;
}

.xevos-mobile-menu__search {
  margin-bottom: 1.5rem;
}

.xevos-mobile-menu__cta {
  margin-top: 2rem;
}

.xevos-mobile-menu__emergency {
  margin-top: 2rem;
}


/* Emergency box (Figma: "CYBER POHOTOVOST") */
.xevos-emergency-box {
  background: linear-gradient(135deg, rgba(255, 0, 128, 0.1) 0%, rgba(74, 108, 247, 0.1) 100%);
  border: 1px solid var(--color-border-accent);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 3rem;
}

.xevos-emergency-box__title {
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  font-style: normal;
  text-transform: none;
}

.xevos-emergency-box p {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  margin-bottom: 1.25rem;
}


/* Checklist – shared component (cyan circle + checkmark SVG icon) */
.xevos-checklist,
.xevos-check-list,
.xevos-kyber-politika__checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.xevos-checklist li,
.xevos-check-list li,
.xevos-kyber-politika__checklist li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.25vw, 1.25rem);
  line-height: 1.58;
  color: var(--color-text);
}

/* ::before fallback for lists that don't use inline SVG (legacy .xevos-check-list) */
.xevos-check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  border: 1px solid rgba(0, 187, 255, 0.6);
  background-image: url("data:image/svg+xml,%3Csvg width='23' height='17' viewBox='0 0 23 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22.6 2.8L8.5 16.9L0 8.4L2.8 5.6L8.5 11.3L19.8 0L22.6 2.8Z' fill='%2300BBFF'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 12px;
}

/* Inline SVG icon container (cyan circle + checkmark with inner shadow) */
.xevos-checklist__icon,
.xevos-kyber-test__check-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: linear-gradient(180deg, rgba(124, 218, 248, 0.80) 0%, rgba(27, 51, 229, 0.80) 100%), rgba(255, 255, 255, 0.10);
  box-shadow: 0 0 13.2px 0 rgba(0, 183, 255, 0.80);
  border: 1px solid rgba(0, 187, 255, 0.6);
}

.xevos-checklist__icon svg,
.xevos-kyber-test__check-circle svg {
  width: 16px;
  height: 12px;
}

/* Horizontal layout variant (homepage kyber-politika) */
.xevos-kyber-politika__checklist {
  flex-direction: row;
  flex-wrap: wrap;
}

@media (max-width: 1023px) {
  .xevos-kyber-politika__checklist {
    flex-direction: column;
    gap: 0.75rem;
  }
}


/* --------------------------------------------------------------------------
   31. Partners bar refinements
   -------------------------------------------------------------------------- */
.xevos-partners__placeholder {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-text-dim);
  opacity: 0.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


/* --------------------------------------------------------------------------
   34. Fallback menu (when no WP menu assigned)
   -------------------------------------------------------------------------- */
/* handled by PHP fallback function */


/* --------------------------------------------------------------------------
   35. Helpers / text utilities
   -------------------------------------------------------------------------- */
.xevos-text-muted {
  color: var(--color-text-muted);
}

.xevos-accent {
  color: var(--color-accent);
}


/* Blog archive, filter pills, toolbar, archive-bottom styles moved to blog.css */


/* --------------------------------------------------------------------------
   38. Page hero variants
   -------------------------------------------------------------------------- */
.xevos-page-hero--short {
  min-height: 400px;
}

@media (min-width: 1024px) {
  .xevos-page-hero--short {
    min-height: 500px;
  }
}

.xevos-page-hero__bg--gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(74, 108, 247, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 70%, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
    var(--bg-primary);
}

/* Article hero, article content styles moved to blog.css */


/* --------------------------------------------------------------------------
   38b. Shared two-column page hero (used by hero-page.php component)
   Used on: blog archive, školení archive, eventy, přehled školení, search
   -------------------------------------------------------------------------- */
.xevos-blog-hero {
  padding-top: 160px;
  min-height: auto;
  padding-bottom: 0;
}

.xevos-blog-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .xevos-blog-hero__grid {
    grid-template-columns: 43% 57%;
    gap: 0;
  }
}

.xevos-blog-hero__content h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 5rem);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 5rem;
  text-shadow: 0px -5px 20px rgba(0, 0, 0, 0.25);
  filter: drop-shadow(0 0 1.75rem rgba(0, 0, 0, 1));
}

.xevos-blog-hero__desc {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.5vw, 1.5rem);
  line-height: normal;
  color: rgba(236, 236, 236, 0.7);
}

.xevos-blog-hero__image img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-mask-image: radial-gradient(ellipse 45% 56% at center, #000 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 45% 56% at center, #000 40%, transparent 100%);
}

@media (max-width: 767px) {
  .xevos-blog-hero {
    padding-top: 120px;
  }

  .xevos-blog-hero__content h1 {
    font-size: 2rem;
  }

  .xevos-blog-hero__desc {
    font-size: 0.875rem;
  }
}

@media (max-width: 479px) {
  .xevos-blog-hero {
    padding-top: 100px;
  }

  .xevos-blog-hero__content h1 {
    font-size: 1.75rem;
  }
}


/* --------------------------------------------------------------------------
   40. Two-column layout helper
   -------------------------------------------------------------------------- */
.xevos-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .xevos-two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.xevos-two-col h2 {
  font-size: 1.5rem;
}


/* --------------------------------------------------------------------------
   41. Form row (side-by-side fields)
   -------------------------------------------------------------------------- */
.xevos-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.xevos-kontakt__info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.xevos-kontakt__info-item a {
  color: #ECECEC;
  font-family: Sora;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.36px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

@media (min-width: 480px) {
  .xevos-form-row {
    grid-template-columns: 1fr 1fr;
  }
}


/* Skoleni list card, harmonogram, osnova styles moved to skoleni.css */


/* Postup testování styles moved to kyber-testovani.css */


/* --------------------------------------------------------------------------
   44b. Kyber testování page — penetrační testy grid
   -------------------------------------------------------------------------- */
.xevos-kt-pentest__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .xevos-kt-pentest__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .xevos-kt-pentest__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* Kontakt form layout styles moved to kontakt.css */


/* --------------------------------------------------------------------------
   46. Order summary contact section
   -------------------------------------------------------------------------- */

.xevos-order-summary__total {
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
}


/* --------------------------------------------------------------------------
   47. Responsive tweaks
   -------------------------------------------------------------------------- */
@media (max-width: 1023px) {
  .xevos-page-hero__content {
    text-align: center !important;
  }

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

@media (max-width: 767px) {
  .xevos-order-section {
    grid-template-columns: 1fr;
  }

  .xevos-two-col {
    grid-template-columns: 1fr;
  }

  .xevos-footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .xevos-footer__nav ul {
    justify-content: center;
  }

  .xevos-footer__social {
    justify-content: center;
  }

  .xevos-footer__copy {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 479px) {
  body {
    padding-top: 64px;
    background-position: 0 64px;
    background-size: 100% calc(100% - 64px);
  }

  .xevos-header__inner {
    height: 64px;
  }
}


/* --------------------------------------------------------------------------
   48. Search overlay / modal
   -------------------------------------------------------------------------- */
.xevos-search-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20vh;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.xevos-search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.xevos-search-overlay__inner {
  width: 100%;
  max-width: 640px;
  padding: 0 var(--gutter);
}

.xevos-search-overlay__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  padding: 0.5rem;
}

.xevos-search-overlay .xevos-search-form__wrap {
  display: flex;
  gap: 0;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  overflow: hidden;
}

.xevos-search-overlay .xevos-search-form__input {
  flex: 1;
  padding: 1rem 1.25rem;
  font-size: 1.125rem;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: var(--color-white);
}

.xevos-search-overlay .xevos-search-form__input::placeholder {
  color: var(--color-text-dim);
}

.xevos-search-overlay .xevos-search-form__input:focus {
  outline: none;
  box-shadow: none;
}

.xevos-search-overlay .xevos-search-form__submit {
  background: var(--color-accent);
  border: none;
  color: var(--color-white);
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.xevos-search-overlay .xevos-search-form__submit:hover {
  background: var(--color-accent-hover);
}

/* Live search dropdown results */
.xevos-search-form__results {
  margin-top: 0.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  max-height: 400px;
  overflow-y: auto;
}

.xevos-live-search__group {
  padding: 0.5rem 0;
}

.xevos-live-search__group+.xevos-live-search__group {
  border-top: 1px solid var(--color-border);
}

.xevos-live-search__group-label {
  padding: 0.5rem 1rem;
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.xevos-live-search__item a {
  display: block;
  padding: 0.625rem 1rem;
  text-decoration: none;
  transition: background var(--transition-fast);
}

.xevos-live-search__item a:hover,
.xevos-live-search__item a.is-focused {
  background: rgba(255, 255, 255, 0.05);
}

.xevos-live-search__item strong {
  display: block;
  color: var(--color-white);
  font-size: var(--font-size-sm);
}

.xevos-live-search__item span {
  display: block;
  color: var(--color-text-dim);
  font-size: var(--font-size-xs);
  margin-top: 2px;
}

.xevos-live-search__empty {
  padding: 1.5rem;
  text-align: center;
  color: var(--color-text-dim);
}


/* --------------------------------------------------------------------------
   49. Service detail page (alternating sections)
   -------------------------------------------------------------------------- */
.xevos-section--alt {
  background: rgba(255, 255, 255, 0.02);
}

.xevos-service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .xevos-service-detail {
    grid-template-columns: 1fr 1fr;
  }
}

.xevos-service-detail--reverse .xevos-service-detail__image {
  order: -1;
}

@media (max-width: 767px) {
  .xevos-service-detail--reverse .xevos-service-detail__image {
    order: 0;
  }
}

.xevos-service-detail__num {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.xevos-service-detail__image img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.xevos-service-detail__placeholder {
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}


/* --------------------------------------------------------------------------
   50. Partner grid (Partnerství page)
   -------------------------------------------------------------------------- */
.xevos-partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.xevos-partner-card {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-base);
}

.xevos-partner-card:hover {
  border-color: var(--color-border-light);
}

.xevos-partner-card__logo {
  max-height: 48px;
  width: auto;
  margin: 0 auto 1.25rem;
  filter: brightness(0) invert(1);
}

.xevos-partner-card h3 {
  font-size: 1.125rem;
  font-style: normal;
  text-transform: none;
  margin-bottom: 0.5rem;
}


/* --------------------------------------------------------------------------
   51. Cookie banner placeholder (styled to match Figma)
   -------------------------------------------------------------------------- */
.xevos-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-modal);
  background: var(--bg-secondary);
  border-top: 1px solid var(--color-border);
  padding: 1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.xevos-cookie-banner__text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.xevos-cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
}

/* Figma: Montserrat Bold/400, 16px, 220x44 / 188x44 */
.xevos-cookie-btn {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--color-accent);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.xevos-cookie-btn--reject {
  font-weight: 700;
  background: transparent;
  color: var(--color-accent);
}

.xevos-cookie-btn--reject:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.xevos-cookie-btn--accept {
  font-weight: 400;
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.xevos-cookie-btn--accept:hover {
  background: var(--color-accent);
  color: var(--color-white);
}


/* --------------------------------------------------------------------------
   52. 404 page (dark theme update)
   -------------------------------------------------------------------------- */
.xevos-404 {
  text-align: center;
  padding: 8rem var(--gutter) 6rem;
}

.xevos-404__title {
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 800;
  color: var(--color-accent);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 1rem;
}

.xevos-404__text {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-inline: auto;
}

.xevos-404__search {
  max-width: 400px;
  margin: 0 auto 2rem;
}


/* --------------------------------------------------------------------------
   53. WP Admin bar fix (logged-in users)
   -------------------------------------------------------------------------- */

/* 80px header + 32px admin bar */
body.admin-bar .xevos-header {
  top: 32px;
}

body.admin-bar .xevos-mobile-menu {
  padding-top: 132px;
}

body.admin-bar .xevos-search-overlay {
  padding-top: calc(20vh + 32px);
}

@media (max-width: 782px) {
  body.admin-bar {
    padding-top: 110px;
  }

  body.admin-bar .xevos-header {
    top: 46px;
  }
}

@media (max-width: 479px) {
  body.admin-bar {
    padding-top: 110px;
  }
}


/* --------------------------------------------------------------------------
   54. Search form styling (dark theme)
   -------------------------------------------------------------------------- */
.xevos-search-form {
  position: relative;
}

.xevos-search-form__wrap {
  display: flex;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  overflow: hidden;
}

.xevos-search-form__input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: var(--color-white);
  font-size: var(--font-size-base);
  font-family: var(--font-body);
}

.xevos-search-form__input::placeholder {
  color: var(--color-text-dim);
}

.xevos-search-form__input:focus {
  outline: none;
}

.xevos-search-form__submit {
  background: var(--color-accent);
  border: none;
  color: var(--color-white);
  padding: 0.75rem 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background var(--transition-fast);
}

.xevos-search-form__submit:hover {
  background: var(--color-accent-hover);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}


/* --------------------------------------------------------------------------
   55. Swiper overrides (dark theme dots)
   -------------------------------------------------------------------------- */
.swiper-pagination-bullet {
  background: var(--color-text-dim);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: var(--color-accent);
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  width: 2.5rem !important;
  height: 2.5rem !important;
  border-radius: 100%;
  background: #00BBFF33;
}

.swiper-button-next:after,
.swiper-button-prev:after {

  width: 12px;
  height: 20px;
}

/* Legal / content page styles moved to legal.css */


/* --------------------------------------------------------------------------
   Global mobile enhancements
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  .xevos-section__container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .xevos-page-hero {
    min-height: 400px;
    padding-top: 100px;
  }

  .xevos-page-hero__title {
    font-size: 2rem;
  }

  .xevos-page-hero__subtitle {
    font-size: 1rem;
  }

  .xevos-btn {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
  }

  .xevos-btn__arrow {
    width: 40px;
    height: 40px;
  }

  .xevos-breadcrumbs {
    font-size: 0.75rem;
    padding: 0.75rem 1rem;
  }

  .xevos-hp-recenze__header h2,
  .xevos-section__heading h2 {
    font-size: 2rem;
  }

  .xevos-hp-recenze__header p {
    font-size: 0.875rem;
  }

  .xevos-card__body {
    padding: 1rem;
  }

  .xevos-no-results {
    padding: 2rem;
    font-size: 1rem;
  }

  .xevos-pagination {
    gap: 0.125rem;
    margin-top: 2rem;
  }

  .xevos-pagination .page-numbers {
    width: 36px;
    height: 36px;
    font-size: 0.75rem;
  }

  /* 404 mobile */
  .xevos-404__title {
    font-size: 6rem;
  }

  /* Partners bar mobile */
  .xevos-partners__list {
    gap: 2rem;
  }

  .xevos-partners__logo img {
    max-height: 28px;
  }

  /* Footer mobile */
  .xevos-footer__inner {
    text-align: center;
  }

  .xevos-footer__logo img {
    margin: 0 auto;
  }
}

@media (max-width: 479px) {
  .xevos-page-hero {
    min-height: 320px;
    padding-top: 80px;
  }

  .xevos-page-hero__title {
    font-size: 1.75rem;
  }

  .xevos-section {
    padding: 3rem 0;
  }

  .xevos-404__title {
    font-size: 4rem;
  }
}

/* Platba result pages (OK / chyba) */
.xevos-platba-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 4rem 2rem;
}

.xevos-platba-result svg {
  width: 80px;
  height: 80px;
  margin-bottom: 2rem;
}

.xevos-platba-result h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 4rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.xevos-platba-result p {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  color: var(--color-text-muted);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.xevos-platba-result__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}