/* design-system.css - Kompletní verze pro všechny stránky */

:root {
  /* Hlavní barvy podle grafického manuálu */
  --primary: #4B87A0;
  --primary-dark: #3d7085;
  --primary-light: #6298AD;
  --gray: #808285;
  --light-blue: #E0F3F7;
  --medium-blue: #ACD1E1;
  --white: #FFFFFF;
  --dark-text: #333333;
  --light-text: #555555;
  --light-gray: #f8f9fa;
  
  /* Stíny */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
  
  /* Mezery */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-xxl: 64px;
  
  /* Zaoblení */
  --radius-sm: 5px;
  --radius-md: 8px;
  --radius-lg: 10px;
  
  /* Přechody */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-bezier: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Základní styly */
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Typografie */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
  margin-top: 0;
  line-height: 1.2;
}

h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: var(--space-lg); }
h2 { font-size: 2rem; font-weight: 700; margin-bottom: var(--space-md); }
h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: var(--space-sm); }
h4 { font-size: 1.25rem; font-weight: 600; margin-bottom: var(--space-sm); }
h5 { font-size: 1.1rem; font-weight: 600; margin-bottom: var(--space-sm); }
h6 { font-size: 1rem; font-weight: 600; margin-bottom: var(--space-sm); }

p { margin-bottom: var(--space-md); }

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header-container { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
}

.section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-divider {
  height: 3px;
  width: 80px;
  background-color: var(--medium-blue);
  margin: 0 auto var(--space-md);
}

/* HEADER A NAVIGACE - univerzální pro všechny stránky */
header { 
  background-color: var(--white);
  position: sticky; 
  top: 0; 
  z-index: 1000; 
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Pro stránky s bílým headerem */
header.white-header {
  background-color: var(--white);
}

/* Pro stránky s barevným headerem */
header.colored-header {
  background-color: var(--primary);
}

header.colored-header .main-nav a {
  color: white;
}

header.colored-header .hamburger {
  color: white;
}

/* Logo styly */
.logo {
  display: flex !important;
  align-items: center !important;
  text-decoration: none !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.logo-image {
  height: 80px !important;
  width: auto !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  max-width: none !important;
}

/* Menu styly - OPRAVA 1: Zajištění zobrazení všech položek menu s maximální specificitou */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 24px;
  cursor: pointer;
}

.main-nav {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.main-nav ul {
  display: flex !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.main-nav li,
.main-nav ul li,
header .main-nav li,
header .main-nav ul li,
.header-container .main-nav li,
.header-container .main-nav ul li {
  margin-left: 30px !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.main-nav a,
.main-nav li a,
.main-nav ul li a,
header .main-nav a,
header .main-nav li a,
header .main-nav ul li a,
.header-container .main-nav a,
.header-container .main-nav li a,
.header-container .main-nav ul li a {
  color: grey !important;
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  transition: all 0.3s !important;
  padding: 5px 0 !important;
  position: relative !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Přepsání všech možných skrývajících stylů */
.main-nav li.hidden,
.main-nav li.d-none,
.main-nav li[style*="display: none"],
.main-nav li[style*="display:none"],
.main-nav li[style*="visibility: hidden"],
.main-nav li[style*="visibility:hidden"] {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Zajištění, že se menu nefiltruje podle stránky */
.main-nav li:not(.current-page),
.main-nav li:not(.active-page),
.main-nav li.other-page,
.main-nav li.inactive {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a:hover {
  color: var(--primary);
}

.main-nav a.active {
  color: var(--primary);
}

/* OPRAVA 2: Breadcrumbs s jednotným modrým podkladem přes celou obrazovku */
.breadcrumbs {
  padding: 15px 0;
  font-size: 14px;
  background-color: var(--primary);
  color: var(--white);
  width: 100%;
  position: relative;
}

/* Zajištění, aby se modrý podklad rozprostřel přes celou obrazovku */
.breadcrumbs::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100vw;
  right: -100vw;
  bottom: 0;
  background-color: var(--primary);
  z-index: -1;
}

.breadcrumbs a {
  color: var(--light-blue);
  text-decoration: none;
  transition: color 0.3s;
}

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

/* Navigation Status Bar - pro homepage struktur */
.nav-status-bar {
  background-color: var(--primary);
  padding: 10px 0;
  width: 100%;
  position: relative;
}

.nav-status-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100vw;
  right: -100vw;
  bottom: 0;
  background-color: var(--primary);
  z-index: -1;
}

.nav-status-bar .breadcrumbs {
  background-color: transparent;
  padding: 0;
  color: var(--white);
}

.nav-status-bar .breadcrumbs::before {
  display: none;
}

.nav-status-bar .breadcrumbs a {
  color: var(--light-blue);
}

.nav-status-bar .breadcrumbs a:hover {
  color: var(--white);
}

/* Hero sekce */
.hero {
  background-color: var(--light-blue);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/api/placeholder/1920/1080');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 42px;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 18px;
  color: var(--light-text);
  margin-bottom: 15px;
}

.hero-text .bold {
  font-weight: 700;
  font-size: 20px;
  color: var(--primary);
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image-container {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 20px;
  position: relative;
  overflow: hidden;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

/* Tlačítka */
.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-md);
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition: var(--transition-bezier);
  border: 2px solid transparent;
}

.btn-sm { 
  padding: 8px 16px; 
  font-size: 14px; 
}

.btn-lg { 
  padding: 14px 28px; 
  font-size: 18px; 
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-center {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.btn-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: transparent;
  border: none;
  color: var(--primary);
  font-size: 36px;
  cursor: pointer;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* Karty */
.card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.card-header {
  padding: var(--space-md);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.card-body {
  padding: var(--space-md);
  flex-grow: 1;
}

.card-footer {
  padding: var(--space-md);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Animace */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.5;
  }
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(-15deg);
  }
  100% {
    transform: translateY(-15px) rotate(-5deg);
  }
}

/* Trusted by section - homepage */
.trusted-by {
  padding: 60px 0;
  text-align: center;
  background-color: var(--white);
}

.trusted-by h3 {
  color: var(--gray);
  font-size: 16px;
  margin-bottom: 30px;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.trusted-by h3::before,
.trusted-by h3::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 50px;
  height: 1px;
  background-color: #ddd;
}

.trusted-by h3::before {
  left: -70px;
}

.trusted-by h3::after {
  right: -70px;
}

.client-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.client-logo {
  height: 40px;
  width: 150px;
  min-width: 120px;
  max-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(50%);
  opacity: 0.7;
  transition: all 0.3s;
  flex: 1 1 auto;
  position: relative;
  z-index: 1;
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
  z-index: 2;
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Services section - homepage */
.services {
  background-color: var(--light-gray);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, var(--light-blue) 0%, transparent 50%);
  z-index: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.service-card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

/*.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}*/

.service-card-icon {
  text-align: center;
  padding: 30px 0 10px;
}

.icon-circle {
  background-color: var(--light-blue);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: var(--primary);
  transition: all 0.3s;
}

.service-card:hover .icon-circle {
  background-color: var(--primary);
  color: var(--white);
  transform: rotateY(180deg);
}

.service-card-content {
  padding: 20px 25px 30px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 15px;
}

.service-card p {
  color: var(--light-text);
  margin-bottom: 25px;
  flex-grow: 1;
}

.service-features {
  text-align: left;
  margin-bottom: 25px;
  margin-left: 20px;
  list-style-type: disc;
  list-style-position: outside;
}

.service-features li {
  margin-bottom: 10px;
  color: var(--light-text);
  padding-left: 5px;
}

/* Why us section - homepage */
.why-us {
  background-color: var(--primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.why-us::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translate(-30%, 30%);
}

.why-us .section-header h2 {
  color: var(--white);
}

.why-us .section-divider {
  background-color: rgba(255, 255, 255, 0.3);
}

.why-us .section-header p {
  color: rgba(255, 255, 255, 0.9);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.advantage-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s, background-color 0.3s;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.advantage-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.advantage-card i {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--light-blue);
}

.advantage-card h3 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 15px;
}

.advantage-card p {
  font-size: 15px;
  opacity: 0.9;
}

/* Approach section - homepage */
.approach {
  background-color: var(--white);
  position: relative;
}

.approach::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom left, var(--light-blue) 0%, transparent 40%);
  opacity: 0.7;
  z-index: 0;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.steps-line {
  position: absolute;
  top: 60px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--light-blue), var(--primary), var(--light-blue));
  z-index: 1;
}

.step {
  text-align: center;
  width: 220px;
  position: relative;
  z-index: 2;
}

.step-circle {
  background-color: var(--light-blue);
  border: 2px solid var(--primary);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
}

.step:hover .step-circle {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(75, 135, 160, 0.3);
  background-color: var(--primary);
  border-color: var(--light-blue);
}

.step:hover .step-number,
.step:hover .step-title {
  color: var(--white);
}

.step-number {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 5px;
  transition: color 0.3s;
}

.step-title {
  font-size: 16px;
  color: var(--primary);
  font-weight: 500;
  transition: color 0.3s;
  word-wrap: break-word;
  hyphens: auto;
  max-width: 100px;
  margin: 0 auto;
}

.step-description {
  color: var(--light-text);
  font-size: 15px;
  padding: 0 10px;
}

/* References section - homepage */
.references {
  background-color: var(--light-gray);
  position: relative;
}

.references::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--light-blue) 0%, transparent 70%);
  opacity: 0.7;
  z-index: 0;
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.reference-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  top: 0;
}

.reference-card:hover {
  top: -15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.reference-header {
  background-color: var(--light-blue);
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.reference-header h4 {
  color: var(--primary);
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
}

.reference-content {
  padding: 25px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.reference-content h3 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 15px;
}

.reference-content p {
  color: var(--light-text);
  font-size: 15px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.reference-logo {
  height: 60px;
  width: 120px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(50%);
  opacity: 0.7;
  transition: all 0.3s;
}

.reference-card:hover .reference-logo {
  filter: grayscale(0%);
  opacity: 1;
}

/* CTA sekce */
.cta {
  background-color: var(--light-blue);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(75, 135, 160, 0.1);
  border-radius: 50%;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background-color: rgba(75, 135, 160, 0.1);
  border-radius: 50%;
}

.cta h2 {
  color: var(--primary);
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta p {
  color: var(--light-text);
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 18px;
  position: relative;
  z-index: 1;
}

/* SLUŽBY STRÁNKA - specifické styly */
.service-circle {
  position: absolute;
  background-color: var(--light-blue);
  opacity: 0.6;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: pulse 5s infinite alternate;
}

.service-icon-hero {
  font-size: 60px;
  color: var(--primary);
  position: relative;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.services-section {
  padding: 80px 0;
  background-color: var(--light-gray);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(224, 243, 247, 0.5) 0%, transparent 50%);
  z-index: 0;
}

.services-section .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
  grid-auto-rows: 1fr;
  align-items: stretch;
}

.services-section .service-card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 550px;
}

.services-section .service-card:hover  {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-header {
  background-color: var(--primary);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 140px;
  max-height: 140px;
  flex-shrink: 0;
}

.service-icon {
  background-color: var(--white);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  color: var(--primary);
  transition: all 0.3s;
  flex-shrink: 0;
  margin: 0 auto 10px;
}

.service-card:hover .service-icon {
  transform: rotateY(180deg);
}

.service-header h3 {
  color: var(--white);
  font-size: 20px;
  margin: 0;
  line-height: 1.3;
}

.service-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-content p {
  color: var(--light-text);
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.6;
}

.service-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
  list-style-type: disc;
  flex-grow: 1;
}

.service-content li {
  margin-bottom: 10px;
  color: var(--light-text);
  font-size: 15px;
  line-height: 1.6;
}

/* KYBERBEZPEČNOST STRÁNKA */
.security-circle {
  position: absolute;
  background-color: var(--light-blue);
  opacity: 0.6;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: pulse 5s infinite alternate;
}

.security-icon {
  font-size: 60px;
  color: var(--primary);
  position: relative;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.security-solutions {
  background-color: var(--light-gray);
  position: relative;
  padding: 80px 0;
}

.security-solutions::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(224, 243, 247, 0.5) 0%, transparent 50%);
  z-index: 0;
}

/* OPRAVA 3 a 4: Jednotný grid pro kyberbezpečnost a infrastrukturu */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

/* OPRAVA 3: Centrování posledního panelu když je lichý počet */
.solutions-grid:has(.solution-card:nth-child(7):last-child) {
  grid-template-columns: repeat(3, 1fr);
}

.solutions-grid .solution-card:nth-child(7):last-child {
  grid-column: 2 / 3;
}

.solution-card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 400px;
  height: 100%;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.solution-icon {
  margin-bottom: 20px;
  align-self: center;
}

.solution-card:hover .icon-circle {
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.solution-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.solution-content h3 {
  font-size: 20px;
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
}

.solution-content p {
  color: var(--light-text);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

/* OPRAVA 5: Sekce partnerů s odlišným podkladem */
.partners-section {
  padding: 60px 0;
  background-color: var(--light-gray);
  position: relative;
}

.partners-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
}

.vendor-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.vendor-logo {
  flex: 0 0 auto;
  width: 160px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(50%);
  opacity: 0.7;
  transition: all 0.3s;
  background-color: var(--white);
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.vendor-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.vendor-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* INFRASTRUKTURA STRÁNKA */
.infra-circle {
  position: absolute;
  background-color: var(--light-blue);
  opacity: 0.6;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: pulse 5s infinite alternate;
}

.infra-icon-hero {
  font-size: 60px;
  color: var(--primary);
  position: relative;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.infrastructure-solutions {
  background-color: var(--light-gray);
  position: relative;
  padding: 80px 0;
}

.storage-solutions {
  padding: 80px 0;
  background-color: var(--white);
  position: relative;
}

.storage-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
}

.storage-text {
  flex: 1;
  min-width: 300px;
}

.storage-text h3 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 20px;
}

.storage-benefits {
  flex: 1;
  min-width: 300px;
  background-color: var(--light-blue);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.storage-benefits h4 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.storage-benefits h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary);
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.benefit-icon {
  background-color: var(--primary);
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
  background-color: var(--primary-dark);
  transform: scale(1.1);
}

.benefit-text {
  font-size: 15px;
  color: var(--dark-text);
}

.vendors {
  padding: 60px 0;
  background-color: var(--light-gray);
}

/* STRÁNKA O NÁS */
.team-image {
  width: 100%;
  height: auto;
  border-radius: 5px;
  display: block;
}

.values-section {
  background-color: var(--primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.values-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.values-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translate(-30%, 30%);
}

.values-section .section-header h2 {
  color: var(--white);
}

.values-section .section-divider {
  background-color: rgba(255, 255, 255, 0.3);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.value-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s, background-color 0.3s;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.value-icon {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--light-blue);
}

.value-card h3 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 15px;
}

.value-card p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 0;
  flex-grow: 1;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.team-member {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-photo {
  width: 100%;
  height: 200px;
  background-color: var(--light-blue);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

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

.team-member:hover .member-photo img {
  transform: scale(1.05);
}

.member-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.member-info h3 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 5px;
}

.member-info .position {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 15px;
}

.member-info p {
  font-size: 14px;
  color: var(--light-text);
  margin-bottom: 15px;
  flex-grow: 1;
}

.member-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
}

.member-contact-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--light-text);
}

.member-contact-item i {
  width: 20px;
  margin-right: 8px;
  color: var(--primary);
}

.member-contact-item a {
  color: var(--light-text);
  text-decoration: none;
  transition: color 0.3s;
}

.member-contact-item a:hover {
  color: var(--primary);
}

.member-social {
  display: flex;
  gap: 10px;
}

.member-social a {
  color: var(--primary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

.member-social a:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.partners-slider-container {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  padding: 20px 0;
  z-index: 1;
}

.partners-slider {
  display: flex;
  transition: transform 0.5s ease;
  align-items: center;
}

.partner-logo {
  flex: 0 0 20%;
  min-width: 160px;
  padding: 0 20px;
  opacity: 0.7;
  transition: all 0.3s;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: grayscale(50%);
}

.partner-logo:hover {
  opacity: 1;
  transform: scale(1.05);
  filter: grayscale(0%);
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.slider-arrow {
  background-color: var(--primary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

.slider-arrow:hover {
  background-color: #3d7085;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.news-cta {
  padding: 50px 0;
  background-color: var(--white);
  position: relative;
}

.news-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--light-blue) 0%, transparent 70%);
  opacity: 0.5;
  z-index: 0;
}

.news-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--light-blue);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}

.news-cta-text {
  flex: 1;
}

.news-cta-text h2 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 15px;
}

.news-cta-text p {
  color: var(--light-text);
  margin-bottom: 0;
}

.news-cta-button {
  margin-left: 30px;
}

/* VIDEO STYLY */
.hero-image-container.video-container {
  background-color: var(--primary);
  padding: 0;
  overflow: hidden;
  position: relative;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.video-fallback {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1;
}

.video-error .video-fallback {
  opacity: 1;
  visibility: visible;
}

.video-loading .video-fallback {
  opacity: 0.5;
  visibility: visible;
}

/* Footer */
footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 60px 0 20px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, transparent 100%);
  z-index: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
  color: var(--white);
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--light-blue);
}

.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.contact-info {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
  margin-right: 12px;
  color: var(--light-blue);
  min-width: 16px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

.social-links a:hover {
  background-color: var(--light-blue);
  color: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  z-index: 1;
}

/* Zpět nahoru */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  text-decoration: none;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Lazy load */
.lazy-image {
  transition: opacity 0.3s ease;
}

.lazy-loaded {
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Utility třídy */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

/* STRÁNKA NOVINKY - základní styly */
.news-section {
  padding: 80px 0;
  background-color: var(--white);
}

.featured-article {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

.featured-article:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.news-card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.events-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.event-card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.newsletter-section {
  background-color: var(--light-blue);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}