/* ============================================================
   BIZ WORK AGENCY — Modern Redesign 2026
   Lighter design, gradient accents, glassmorphism,
   Ken Burns hero, parallax scroll, floating card animations.
   Cross-browser: Chrome, Firefox, Safari, Edge, Mobile
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ---------- CSS Custom Properties — Logo-matched palette ---------- */
/* Extracted from BIZ WORK AGENCY logo sphere:
   Dark navy (text/base dots): #0D1B3E
   Deep blue (sphere dark):    #1565C0
   Medium blue (sphere mid):   #2196F3
   Light blue (sphere top):    #64B5F6
   Sky blue (sphere highlight): #BBDEFB
*/
:root {
  --navy:        #0D1B3E;
  --navy-mid:    #1A3167;
  --blue:        #1565C0;
  --blue-mid:    #1E88E5;
  --blue-light:  #64B5F6;
  --blue-sky:    #BBDEFB;
  --teal:        #1976D2;
  --teal-light:  #42A5F5;
  --accent:      #0D47A1;
  --light-bg:    #E8F4FD;
  --light-bg-2:  #F0F8FF;
  --card-bg:     #FFFFFF;
  --white:       #FFFFFF;
  --text-dark:   #0D1B3E;
  --text-mid:    #2A3F6F;
  --text-light:  #5A7BA8;
  --border:      #DAEAF7;
  --shadow-sm:   0 2px 8px rgba(21,101,192,.08);
  --shadow-md:   0 8px 32px rgba(21,101,192,.14);
  --shadow-lg:   0 24px 64px rgba(21,101,192,.20);
  --grad-hero:   linear-gradient(160deg, #0D1B3E 0%, #1565C0 55%, #42A5F5 100%);
  --grad-blue:   linear-gradient(135deg, #1565C0 0%, #42A5F5 100%);
  --grad-card:   linear-gradient(135deg, rgba(100,181,246,.07) 0%, rgba(187,222,251,.10) 100%);
  --grad-dark:   linear-gradient(160deg, #0D1B3E 0%, #1565C0 60%, #42A5F5 100%);
  --grad-light:  linear-gradient(160deg, #E8F4FD 0%, #F5FAFF 50%, #FFFFFF 100%);
  --grad-page:   linear-gradient(180deg, #EAF4FD 0%, #F5F9FF 30%, #FFFFFF 70%);
  --radius:      14px;
  --radius-lg:   22px;
  --transition:  all .3s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  /* Blue-to-white gradient across the full page */
  background: var(--grad-page);
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--wide { max-width: 1400px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text-mid); line-height: 1.78; }

/* ---------- Section helpers ---------- */
.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-title { color: var(--navy); margin-bottom: 20px; }
.section-lead { font-size: 1.1rem; color: var(--text-mid); max-width: 620px; line-height: 1.8; }
.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-lead { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--grad-blue);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(21,101,192,.35);
  border-color: transparent;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(21,101,192,.45);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

.btn-outline {
  background: var(--white);
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-dark:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-nav {
  background: var(--grad-blue);
  color: var(--white);
  border-radius: 50px;
  padding: 9px 22px;
  font-weight: 600;
  font-size: .85rem;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(21,101,192,.35);
}

/* ---------- Keyframe Animations ---------- */
@keyframes kenburns-1 {
  0%   { transform: scale(1) translate(0%, 0%); }
  100% { transform: scale(1.12) translate(-2%, -1.5%); }
}
@keyframes kenburns-2 {
  0%   { transform: scale(1.12) translate(-2%, -1.5%); }
  100% { transform: scale(1) translate(2%, 1%); }
}
@keyframes float-gentle {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-10px) rotate(1deg); }
  66%       { transform: translateY(-5px) rotate(-1deg); }
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-18px); }
}
@keyframes blob-morph {
  0%, 100% { border-radius: 60% 40% 55% 45% / 55% 45% 65% 35%; }
  25%       { border-radius: 40% 60% 45% 55% / 45% 65% 35% 55%; }
  50%       { border-radius: 55% 45% 65% 35% / 60% 40% 55% 45%; }
  75%       { border-radius: 45% 55% 35% 65% / 40% 60% 45% 55%; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(1.6); }
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}
@keyframes slide-up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes count-in {
  from { opacity: 0; transform: scale(.8); }
  to   { opacity: 1; transform: scale(1); }
}

/* ---------- Scroll animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }
.stagger-1 { transition-delay: .08s; }
.stagger-2 { transition-delay: .16s; }
.stagger-3 { transition-delay: .24s; }
.stagger-4 { transition-delay: .32s; }
.fade-up.delay-1 { transition-delay: .1s; }
.fade-up.delay-2 { transition-delay: .2s; }
.fade-up.delay-3 { transition-delay: .3s; }
.fade-up.delay-4 { transition-delay: .4s; }

/* ---------- Parallax ---------- */
.parallax { will-change: transform; }

/* ---------- Section background helpers ---------- */
.bg-white    { background: var(--white); }
.bg-light    { background: var(--grad-light); }
.bg-navy     { background: var(--grad-dark); }
.section     { padding: 96px 0; }
.section--light { background: var(--light-bg); }
.section--dark  { background: var(--navy); }
.section--blue  { background: var(--grad-dark); }
.content-section { padding: 96px 0; }
.content-section h2 { color: var(--navy); margin-bottom: 24px; }

/* ---------- HEADER — vždy bílý ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: box-shadow .35s ease;
  background: rgba(255,255,255,.97);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(13,27,62,.08);
}

.site-header .header-inner,
.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  transition: padding .35s ease;
  gap: 24px;
}

.site-header.scrolled {
  box-shadow: 0 2px 40px rgba(13,27,62,.12);
}
.site-header.scrolled .header-top { display: none; }
.site-header.scrolled .header-inner,
.site-header.scrolled .header-main .container {
  padding: 10px 40px;
}

/* Header top bar */
.header-top {
  background: rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 8px 0;
}
.header-top .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.header-top a {
  font-size: .78rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.header-top a:hover { color: var(--white); }
.header-top a svg { width: 14px; height: 14px; opacity: .7; }
.header-top .sep { width: 1px; height: 14px; background: rgba(255,255,255,.2); }

/* Header main */
.header-main { padding: 0; }
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo img { max-height: 48px; width: auto; transition: transform .25s ease; }
.logo img:hover { transform: scale(1.04); }

/* Logo — vždy barevné (header je vždy bílý) */
.logo-dark  { display: none; }
.logo-light { display: block; }
.logo-icon {
  width: 44px; height: 44px;
  background: var(--grad-blue);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 24px; height: 24px; color: #fff; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-size: 1rem; font-weight: 800; color: var(--white);
  letter-spacing: -.01em; line-height: 1.1;
}
.logo-sub {
  font-size: .65rem; font-weight: 500; color: rgba(255,255,255,.6);
  letter-spacing: .06em; text-transform: uppercase;
}
/* logo always colored — no scrolled override needed */

/* Nav links */
.main-nav { display: flex; align-items: center; gap: 6px; }

.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .87rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
  letter-spacing: .01em;
  position: relative;
}
.nav-link:hover { color: var(--blue); background: var(--light-bg); }
.nav-link.active { color: var(--blue); font-weight: 600; }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

/* Dropdown */
.nav-item { position: relative; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown {
  position: absolute;
  top: calc(100% + 8px); left: 0;
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.dropdown a {
  display: block; padding: 10px 14px;
  font-size: .85rem; color: var(--text-mid);
  border-radius: 8px; font-weight: 500;
  transition: var(--transition);
}
.dropdown a:hover { background: var(--light-bg); color: var(--navy); }

/* Header CTA area */
.header-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-phone {
  display: flex; align-items: center; gap: 6px;
  font-size: .85rem; font-weight: 600; color: var(--navy); padding: 8px 14px;
}
.header-phone svg { width: 16px; height: 16px; color: var(--blue); }

/* ---------- Hamburger ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile nav ---------- */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--white);
  padding: 16px 24px 24px;
  box-shadow: 0 8px 40px rgba(13,27,62,.12);
  border-top: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .35s ease, opacity .35s ease;
}
.mobile-nav.open { max-height: 500px; opacity: 1; }
.mobile-nav a {
  padding: 12px 16px;
  border-radius: 10px;
  color: var(--text-mid);
  font-weight: 500;
  font-size: .95rem;
  display: block;
  transition: var(--transition);
}
.mobile-nav a:hover { background: var(--light-bg); color: var(--blue); }
.mobile-nav .mobile-sub {
  padding-left: 28px;
  font-size: .88rem;
  color: var(--text-light);
}
.mobile-nav-cta { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }

/* ---------- HERO (Homepage — full screen, dark with gradient) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

/* Decorative blobs */
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(66,165,245,.30) 0%, transparent 65%);
  z-index: 1;
  animation: blob-morph 18s ease-in-out infinite;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(100,181,246,.22) 0%, transparent 65%);
  z-index: 1;
  animation: blob-morph 22s ease-in-out infinite reverse;
  pointer-events: none;
}

/* Hero slides (Ken Burns) */
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-bg     { position: absolute; inset: 0; z-index: 0; }

.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide:nth-child(1).active {
  animation: kenburns-1 14s ease-in-out infinite alternate;
}
.hero-slide:nth-child(2).active {
  animation: kenburns-2 14s ease-in-out infinite alternate;
}

/* Hero bg img (img-tag based slides) */
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-bg-img.active { opacity: 1; }

/* Hero overlay */
.hero-overlay,
.hero-bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(13,27,62,.92) 0%,
    rgba(21,101,192,.55) 55%,
    rgba(66,165,245,.25) 100%
  );
}

/* Hero content — centered, clears fixed white header */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 160px 0 120px;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.hero .hero-content { z-index: 2; position: relative; }
.hero-content .hero-btns { justify-content: center; }
.hero-content .hero-tag { align-self: auto; margin: 0 auto 16px; }

/* Hero badge / tag */
.hero-tag {
  display: inline-block;
  background: rgba(20,184,166,.15);
  border: 1px solid rgba(20,184,166,.35);
  border-radius: 50px;
  padding: 7px 20px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 24px;
  animation: slide-up .8s ease both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20,184,166,.15);
  border: 1px solid rgba(20,184,166,.35);
  border-radius: 50px;
  padding: 7px 20px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 24px;
  animation: slide-up .8s ease both;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal-light);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  animation: slide-up .8s .15s ease both;
  max-width: 800px;
}
.hero h1 span { color: var(--teal-light); }

.hero > .hero-content > p,
.hero .hero-content p,
.hero-desc {
  color: rgba(255,255,255,.76);
  font-size: 1.15rem;
  max-width: 580px;
  margin-bottom: 40px;
  animation: slide-up .8s .3s ease both;
  line-height: 1.8;
}

.hero-btns,
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: slide-up .8s .45s ease both;
}

/* Hero dots */
.hero-dots,
.hero-indicators {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.hero-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--teal-light);
}

/* Hero stats bar */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255,255,255,.06);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.hero-stat:last-child { border-right: none; }
.hero-stat strong,
.hero-stat-num {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-num span,
.hero-stat strong span { color: var(--teal-light); }
.hero-stat span,
.hero-stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Hero photo layout (optional split layout) */
.hero-right { position: relative; }
.hero-photos { position: relative; height: 480px; }
.hero-photo-main {
  position: absolute; right: 0; top: 0;
  width: 80%; height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.hero-photo-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-accent {
  position: absolute; left: 0; bottom: 40px;
  width: 52%; height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
  border: 4px solid var(--navy);
}
.hero-photo-accent img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-float {
  position: absolute; bottom: -10px; right: -10px;
  background: var(--white); border-radius: var(--radius);
  padding: 16px 20px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px; min-width: 200px;
}
.hero-card-float-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--grad-blue);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-card-float-icon svg { width: 20px; height: 20px; color: #fff; }
.hero-card-float-text strong { display: block; font-size: .85rem; color: var(--navy); font-weight: 700; }
.hero-card-float-text span { font-size: .72rem; color: var(--text-light); }

/* ---------- Info banner ---------- */
.info-banner {
  background: linear-gradient(135deg, #1A3167 0%, #1D4ED8 100%);
  padding: 20px 0;
}
.info-banner .container { display: flex; align-items: center; gap: 16px; }
.info-banner-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.15); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-banner-icon svg { width: 18px; height: 18px; color: #fff; }
.info-banner p { color: rgba(255,255,255,.9); font-size: .9rem; line-height: 1.5; margin: 0; }
.info-banner p strong { color: #fff; }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  position: relative;
  background: var(--grad-dark);
  background-size: 200% 200%;
  animation: gradient-shift 8s ease infinite;
  padding: 160px 0 80px;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  opacity: .04;
  background-image: radial-gradient(circle at 20% 50%, white 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); position: relative; z-index: 1; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.72); font-size: 1.1rem; max-width: 560px; }

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: rgba(255,255,255,.7); transition: color .2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.3); }
.breadcrumb .current { color: rgba(255,255,255,.85); }

/* ---------- VALUES section ---------- */
.values-section { padding: 80px 0; background: var(--white); }
.values-row,
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
  justify-content: center;
}
.value-pill {
  background: var(--grad-card);
  border: 1px solid rgba(21,101,192,.18);
  border-radius: 50px;
  padding: 14px 32px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
  cursor: default;
  display: flex;
  align-items: center;
  gap: 8px;
}
.value-pill:hover {
  background: var(--grad-blue);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.value-pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
  opacity: .6;
}

/* ---------- ABOUT section ---------- */
.about-section,
.about-grid-section { padding: 96px 0; background: var(--grad-light); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img,
.about-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
  animation: float-slow 7s ease-in-out infinite;
  overflow: hidden;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-frame {
  position: absolute; inset: -16px;
  border-radius: 28px;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box, var(--grad-blue) border-box;
  z-index: -1;
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--grad-blue);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge-num { font-size: 2rem; font-weight: 800; display: block; }
.about-badge-label { font-size: .78rem; opacity: .85; font-weight: 500; }
.about-content h2 { color: var(--navy); margin-bottom: 24px; }
.about-content p { margin-bottom: 20px; }
.about-list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.about-list-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; background: var(--white);
  border-radius: var(--radius); font-size: .9rem;
  color: var(--text-mid); font-weight: 500; transition: var(--transition);
}
.about-list-item:hover { box-shadow: var(--shadow-sm); }
.about-list-item svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; margin-top: 1px; }

/* ---------- BENEFITS section ---------- */
.benefits-section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  background: var(--grad-dark);
  background-size: 300% 300%;
  animation: gradient-shift 12s ease infinite;
}
.benefits-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(59,130,246,.18) 0%, transparent 60%);
  pointer-events: none;
}
.benefits-section::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(66,165,245,.15) 0%, transparent 60%);
  pointer-events: none;
}
.benefits-section h2 { color: var(--white); position: relative; z-index: 1; }
.benefits-section h3 { color: var(--white); position: relative; z-index: 1; }

.years-badge {
  display: inline-block;
  background: rgba(20,184,166,.15);
  border: 1px solid rgba(20,184,166,.35);
  color: var(--teal-light);
  font-size: .85rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.benefits-lead {
  color: rgba(255,255,255,.72);
  max-width: 560px;
  margin: 16px 0 56px;
  font-size: 1.05rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.benefit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.benefit-card {
  background: rgba(255,255,255,.07);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  animation: float-gentle 8s ease-in-out infinite;
}
.benefit-card:nth-child(2) { animation-delay: -3s; }
.benefit-card:nth-child(3) { animation-delay: -6s; }
.benefit-card:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(20,184,166,.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.benefit-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--grad-blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.benefit-card-icon svg { width: 26px; height: 26px; color: #fff; }
.benefit-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 10px; }
.benefit-card h4 { color: var(--white); margin: 12px 0 8px; }
.benefit-card p { color: rgba(255,255,255,.65); font-size: .92rem; }

/* Card icon in light context */
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--grad-card);
  border: 1px solid rgba(21,101,192,.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 26px; height: 26px; color: var(--blue); }

/* Generic light card */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

/* ---------- SECTORS section ---------- */
.sectors-section { padding: 96px 0; background: var(--white); }
.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.sector-card {
  display: block;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  height: 320px;
}
.sector-img-wrap { position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden; }
.sector-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.4,0,.2,1);
}
.sector-card:hover .sector-img-wrap img { transform: scale(1.1); }
.sector-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.4,0,.2,1);
}
.sector-card:hover img { transform: scale(1.1); }
.sector-overlay,
.sector-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,62,.88) 0%, rgba(13,27,62,.15) 50%, transparent 100%);
  transition: var(--transition);
  display: flex; align-items: flex-end; padding: 28px;
}
.sector-overlay span { color: var(--white); font-size: 1.1rem; font-weight: 700; letter-spacing: .02em; }
.sector-card:hover .sector-overlay,
.sector-card:hover .sector-card-overlay {
  background: linear-gradient(to top, rgba(13,27,62,.95) 0%, rgba(21,101,192,.5) 55%, rgba(66,165,245,.2) 100%);
}
.sector-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px; z-index: 1;
}
.sector-tag {
  display: inline-block;
  background: var(--teal); color: var(--white);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px; margin-bottom: 10px;
}
.sector-card-content h3,
.sector-card-content h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 8px; }
.sector-arrow,
.sector-card-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(8px);
  transition: var(--transition);
  margin-top: 12px;
}
.sector-card:hover .sector-arrow,
.sector-card:hover .sector-card-arrow {
  opacity: 1;
  transform: translateY(0);
  background: var(--teal);
  border-color: var(--teal);
}
.sector-arrow svg, .sector-card-arrow svg { width: 16px; height: 16px; color: #fff; }

/* ---------- STATS section ---------- */
.stats-section {
  padding: 96px 0;
  background: var(--grad-light);
  overflow: hidden;
  position: relative;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(21,101,192,.12) 0%, transparent 65%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.stat-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.stat-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--blue-light);
}
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-number span { font-size: 2rem; }
.stat-item h3 {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.stat-item p,
.stat-desc { font-size: .88rem; color: var(--text-light); }
.stat-label { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }

/* ---------- CTA strip ---------- */
.cta-strip {
  padding: 80px 0;
  background: var(--grad-blue);
  background-size: 200% 200%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,.3) 0%, transparent 50%);
  pointer-events: none;
}
.cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-strip-text h2 { color: var(--white); font-size: 1.8rem; margin-bottom: 8px; }
.cta-strip-text p { margin: 0; font-size: 1rem; color: rgba(255,255,255,.8); }
.cta-strip-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.cta-strip h2 { color: var(--white); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-strip p { color: rgba(255,255,255,.8); max-width: 500px; margin: 0 auto 32px; font-size: 1.05rem; position: relative; z-index: 1; }
.cta-strip .btn-outline-white { position: relative; z-index: 1; }

/* ---------- Reference grid ---------- */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.ref-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--border);
  padding: 28px 24px;
  text-align: center;
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  gap: 8px;
}
.ref-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad-blue);
  opacity: 0;
  transition: var(--transition);
}
.ref-card:hover {
  border-color: transparent;
  color: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.ref-card:hover::before { opacity: 1; }
.ref-card span { position: relative; z-index: 1; }
.ref-card svg { width: 16px; height: 16px; color: var(--blue); opacity: 0; transition: var(--transition); position: relative; z-index: 1; }
.ref-card:hover svg { opacity: 1; color: var(--white); }

/* ---------- Downloads ---------- */
.download-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
.download-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.download-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--blue-light);
}
.download-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: var(--grad-light);
  border: 1px solid rgba(21,101,192,.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.download-icon svg { width: 26px; height: 26px; color: var(--blue); }
.download-info { flex: 1; }
.download-info h3,
.download-info strong { color: var(--navy); font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; display: block; }
.download-info p,
.download-info span { font-size: .88rem; color: var(--text-light); }
.download-btn {
  display: flex; align-items: center; gap: 6px;
  background: var(--light-bg); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 16px;
  font-size: .82rem; font-weight: 600; color: var(--navy);
  transition: var(--transition); flex-shrink: 0;
}
.download-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.download-btn svg { width: 15px; height: 15px; }

/* ---------- Three-lists (Společnost) ---------- */
.three-lists { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 40px; }
.list-column h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--teal-light); }
.list-column .values-grid { gap: 8px; margin-top: 0; }

/* ---------- Team cards ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  transition: var(--transition);
}
.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(21,101,192,.3);
}
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--grad-blue);
  color: var(--white);
  font-size: 1.3rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 8px 24px rgba(21,101,192,.35);
  animation: float-gentle 6s ease-in-out infinite;
  flex-shrink: 0;
}
.team-card:nth-child(2) .team-avatar { animation-delay: -3s; }
.team-card h3,
.team-info h4 { color: var(--navy); font-size: 1.25rem; }
.team-role {
  font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px;
}
.team-card a,
.team-contact {
  display: block;
  font-size: .88rem;
  color: var(--text-mid);
  transition: color .2s;
  margin-top: 4px;
  display: flex; align-items: center; gap: 6px;
}
.team-card a:hover,
.team-contact:hover { color: var(--blue); }
.team-contact svg { width: 14px; height: 14px; color: var(--blue); flex-shrink: 0; }
.team-contacts { display: flex; flex-direction: column; gap: 8px; }

/* ---------- Contact boxes ---------- */
.contact-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.contact-box,
.contact-info-boxes .contact-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.contact-info-boxes .contact-box {
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  gap: 20px;
}
.contact-box:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(21,101,192,.3);
}
.contact-box-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--grad-blue);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  flex-shrink: 0;
}
.contact-info-boxes .contact-box-icon {
  border-radius: 12px;
  margin: 0;
}
.contact-box-icon svg { width: 22px; height: 22px; color: var(--white); }
.contact-box label,
.contact-box-info label {
  display: block;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 6px;
}
.contact-box a,
.contact-box p,
.contact-box-info a,
.contact-box-info p {
  color: var(--navy); font-weight: 600; font-size: 1rem;
  line-height: 1.4; margin: 0;
}
.contact-box a:hover,
.contact-box-info a:hover { color: var(--blue); }
.contact-box-info { flex: 1; }

/* Contact detail layout */
.contact-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
  margin-top: 48px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-address-block address { font-style: normal; line-height: 2; color: var(--text-mid); }
.contact-address-block strong { color: var(--navy); }
.contact-address-block a { color: var(--blue); font-weight: 500; }
.company-detail {
  background: var(--light-bg); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--border);
}
.company-detail h3 { color: var(--navy); margin-bottom: 20px; font-size: 1.2rem; }
.company-detail-row {
  display: flex; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px solid var(--border); font-size: .88rem;
}
.company-detail-row:last-child { border-bottom: none; }
.company-detail-row label { color: var(--text-light); font-weight: 500; }
.company-detail-row span { color: var(--navy); font-weight: 600; text-align: right; }

/* ---------- Guarantee cards ---------- */
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.guarantee-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex; gap: 20px; align-items: flex-start;
  transition: var(--transition);
}
.guarantee-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(21,101,192,.3);
}
.guarantee-num {
  font-size: 2.2rem; font-weight: 800;
  background: var(--grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  min-width: 52px; line-height: 1;
}
.guarantee-card p { color: var(--text-mid); line-height: 1.75; }

/* ---------- Position pills ---------- */
.positions-grid {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px;
}
.position-pill {
  background: var(--grad-card);
  border: 1px solid rgba(21,101,192,.2);
  border-radius: 50px;
  padding: 11px 28px;
  font-size: .9rem; font-weight: 600; color: var(--navy);
  transition: var(--transition);
}
.position-pill:hover {
  background: var(--grad-blue);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---------- Service list ---------- */
.service-list {
  display: flex; flex-direction: column; gap: 16px; margin-top: 32px;
}
.service-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex; gap: 20px; align-items: flex-start;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--blue);
  transition: var(--transition);
}
.service-item:hover {
  box-shadow: var(--shadow-md);
  border-left-color: var(--teal);
  transform: translateX(4px);
}
.service-num {
  font-size: 1.5rem; font-weight: 800;
  background: var(--grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  min-width: 44px; line-height: 1;
}
.service-item p { color: var(--text-dark); font-size: .95rem; }

/* ---------- Callout box ---------- */
.callout-box {
  background: var(--grad-dark);
  background-size: 200% 200%;
  animation: gradient-shift 10s ease infinite;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  margin: 48px 0;
}
.callout-box h2, .callout-box h3 { color: var(--white); margin-bottom: 12px; }
.callout-box p { color: rgba(255,255,255,.7); }

/* ---------- Company lists ---------- */
.company-lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.company-list {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.company-list h4 {
  color: var(--navy);
  font-size: .95rem; font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--teal);
}
.company-list li {
  padding: 8px 0;
  color: var(--text-mid);
  font-size: .9rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.company-list li:last-child { border-bottom: none; }
.company-list li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 7px;
  flex-shrink: 0;
}

/* ---------- OR images ---------- */
.or-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.or-images a {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
  transition: var(--transition);
}
.or-images a:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--blue-light);
}
.or-images img { width: 100%; display: block; }

/* ---------- Info section ---------- */
.info-section { padding: 96px 0; background: var(--grad-light); }
.info-section h2 { color: var(--navy); margin-bottom: 24px; }

/* ---------- Footer links bar ---------- */
.footer-links-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--navy);
  gap: 2px;
}
.footer-link-box {
  display: block;
  padding: 40px 36px;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.footer-link-box::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad-blue);
  opacity: 0;
  transition: opacity .3s ease;
}
.footer-link-box:hover::before { opacity: 1; }
.footer-link-box h3 {
  color: var(--white);
  font-size: 1.1rem; margin-bottom: 8px; font-weight: 600;
  position: relative; z-index: 1;
}
.footer-link-box p {
  color: rgba(255,255,255,.5);
  font-size: .88rem;
  position: relative; z-index: 1;
}
.footer-link-box:hover h3 { color: var(--white); }

/* ---------- FOOTER ---------- */
.site-footer {
  background: #fff;
  color: var(--navy);
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-blue);
}
.footer-inner,
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 64px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.footer-brand p,
.footer-desc {
  color: rgba(0,0,0,.5);
  font-size: .9rem;
  margin-top: 16px;
  line-height: 1.7;
  max-width: 220px;
}
.footer-certs { display: flex; gap: 12px; align-items: center; margin-top: 20px; flex-wrap: wrap; }
.footer-certs img { max-height: 44px; width: auto; border-radius: 6px; }
.footer-cert {
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 8px; padding: 6px 14px;
  font-size: .75rem; font-weight: 600; color: rgba(0,0,0,.5);
  display: flex; align-items: center; gap: 6px; transition: var(--transition);
}
.footer-cert:hover { background: rgba(0,0,0,.08); color: var(--navy); }
.footer-cert svg { width: 14px; height: 14px; color: var(--teal-light); }

.footer-nav h4,
.footer-col h5 {
  color: var(--navy);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-nav a,
.footer-links a {
  display: flex; align-items: center; gap: 6px;
  color: rgba(0,0,0,.5);
  font-size: .9rem;
  padding: 5px 0;
  transition: color .2s;
}
.footer-nav a:hover,
.footer-links a:hover { color: var(--navy); padding-left: 4px; }
.footer-links a svg { width: 12px; height: 12px; opacity: .4; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-contact h4 { color: var(--navy); font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 20px; }
.footer-contact p,
.footer-contact-item p { color: rgba(0,0,0,.5); font-size: .88rem; line-height: 1.8; margin: 0; }
.footer-contact a,
.footer-contact-item a { color: rgba(0,0,0,.65); transition: color .2s; font-size: .85rem; }
.footer-contact a:hover,
.footer-contact-item a:hover { color: var(--navy); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--teal-light); margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,.08);
  background: #f8f9fb;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  margin: 0;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copyright,
.footer-bottom p { color: rgba(0,0,0,.4); font-size: .8rem; }
.footer-copyright strong { color: rgba(0,0,0,.6); }
.footer-legal,
.footer-bottom .footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a,
.footer-bottom a { color: rgba(0,0,0,.45); font-size: .78rem; transition: color .2s; }
.footer-legal a:hover,
.footer-bottom a:hover { color: var(--navy); }

/* ============================================================
   HERO SPLIT LAYOUT — 2-column with photo visual
   ============================================================ */

/* Split container — overrides the centred hero-content */
.hero-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 160px 0 120px;
  width: 100%;
}

/* Left column */
.hero-left { display: flex; flex-direction: column; }

.hero-left .hero-tag { align-self: flex-start; }

.hero-left h1 {
  color: var(--white);
  margin-bottom: 20px;
  animation: slide-up .8s .15s ease both;
}

.hero-desc {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 36px;
  animation: slide-up .8s .3s ease both;
}

/* Right column — photo visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slide-up .8s .5s ease both;
}

.hero-card-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(13,27,62,.5), 0 0 0 1px rgba(255,255,255,.1);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transform: rotate(-2deg);
  transition: transform .5s ease;
}

.hero-card-frame:hover { transform: rotate(0deg) scale(1.01); }

.hero-card-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

/* Fallback when photo not yet added */
.hero-card-placeholder {
  min-height: 300px;
  background: linear-gradient(135deg, rgba(21,101,192,.25) 0%, rgba(66,165,245,.15) 100%);
  border: 2px dashed rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-placeholder::after {
  content: 'Přidejte foto: assets/img/vizitka.jpg';
  color: rgba(255,255,255,.4);
  font-size: .8rem;
  text-align: center;
  padding: 24px;
}

/* Floating badge over the photo */
.hero-badge-float {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 22px;
  box-shadow: 0 12px 40px rgba(13,27,62,.25);
  text-align: center;
  animation: float-gentle 6s ease-in-out infinite;
}
.hero-badge-float strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.hero-badge-float span {
  font-size: .72rem;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Decorative ring behind photo */
.hero-ring {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid rgba(66,165,245,.3);
  animation: float-slow 8s ease-in-out infinite reverse;
  pointer-events: none;
}
.hero-ring::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(66,165,245,.2);
}

/* Responsive hero split */
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; gap: 40px; padding: 140px 0 80px; }
  .hero-visual { max-width: 380px; margin: 0 auto; }
  .hero-card-frame { transform: none; max-width: 100%; }
}

@media (max-width: 480px) {
  .hero-visual { display: none; }
  .hero-split { padding: 120px 0 80px; }
}

/* ---------- Styled lists ---------- */
.styled-list { display: flex; flex-direction: column; gap: 12px; }
.styled-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .92rem; color: var(--text-mid); line-height: 1.65;
}
.styled-list li::before {
  content: '';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  flex-shrink: 0; margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M13.5 2.5L6 10 2.5 6.5'/%3E%3C/svg%3E");
  background-size: 10px; background-position: center; background-repeat: no-repeat;
}
.styled-list-v2 { display: flex; flex-direction: column; gap: 14px; }
.styled-list-v2 li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: .92rem; color: var(--text-mid); line-height: 1.65;
  padding: 14px 16px; background: var(--light-bg);
  border-radius: 10px; border-left: 3px solid var(--teal);
}

/* ---------- Grid helpers ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-teal { color: var(--teal-light); }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.gap-16 { gap: 16px; }

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

@media (max-width: 1024px) {
  .footer-inner,
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .company-lists { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap { display: none; }
  .benefit-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-detail-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-content .container { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .hero-content { padding: 140px 0 80px; }
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .content-section { padding: 64px 0; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .header-inner,
  .header-main .container { padding: 16px 20px; }
  .site-header.scrolled .header-inner,
  .site-header.scrolled .header-main .container { padding: 12px 20px; }
  .header-top,
  .header-cta .header-phone { display: none; }
  .header-cta { gap: 4px; }

  .sector-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .ref-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .hero-stat:last-child { border-bottom: none; }
  .footer-links-bar { grid-template-columns: 1fr; }
  .contact-boxes { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-inner,
  .footer-grid { grid-template-columns: 1fr; padding: 0 24px 48px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 16px 24px; }
  .benefit-cards { grid-template-columns: 1fr; }
  .company-lists { grid-template-columns: 1fr; }
  .or-images { grid-template-columns: 1fr; }
  .hero-dots,
  .hero-indicators { bottom: 70px; }
  .callout-box { padding: 36px 24px; }
  .download-card { flex-direction: column; align-items: flex-start; gap: 16px; }
  .download-btn { width: 100%; justify-content: center; }
  .hero-content { padding: 120px 0 100px; }
  .cta-strip .container { flex-direction: column; text-align: center; }
  .cta-strip-actions { justify-content: center; }
  .section-header { margin-bottom: 40px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 2rem; }
  .hero h1 { font-size: 2rem; }
  .ref-grid { grid-template-columns: 1fr; }
  .hero-actions,
  .hero-btns { flex-direction: column; }
  .btn { justify-content: center; }
  .values-row,
  .values-grid { gap: 8px; }
  .value-pill { font-size: .8rem; padding: 10px 20px; }
  .team-card { flex-direction: column; }
  .guarantee-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .info-banner .container { flex-direction: column; text-align: center; }
}

/* ============================================================
   PHOTO SECTIONS — new images 1-6
   ============================================================ */

/* Photo + text split: image left, text right */
.photo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}
.photo-split.reverse { direction: rtl; }
.photo-split.reverse > * { direction: ltr; }
.photo-split-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.photo-split-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform .6s ease;
}
.photo-split-img:hover img { transform: scale(1.04); }
.photo-split-text { display: flex; flex-direction: column; gap: 20px; }
.photo-split-text h2 { color: var(--navy); }
.photo-split-text p { color: var(--text-mid); line-height: 1.8; }

/* Photo mosaic grid: 3-column, mixed sizes */
.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 16px;
  margin: 40px 0;
}
.photo-mosaic-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.photo-mosaic-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.photo-mosaic-item:hover img { transform: scale(1.06); }
.photo-mosaic-item.span2 { grid-column: span 2; }
.photo-mosaic-item.span-row { grid-row: span 2; }

/* Photo strip: horizontal scrolling strip */
.photo-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 8px 0 16px;
  margin: 32px 0;
}
.photo-strip::-webkit-scrollbar { display: none; }
.photo-strip-item {
  flex: 0 0 320px;
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
}
.photo-strip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.photo-strip-item:hover img { transform: scale(1.05); }

/* Simple centered photo with caption */
.photo-full {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin: 40px 0;
  max-height: 480px;
}
.photo-full img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .photo-split { grid-template-columns: 1fr; gap: 32px; }
  .photo-split.reverse { direction: ltr; }
  .photo-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .photo-mosaic-item.span2 { grid-column: span 1; }
  .photo-mosaic-item.span-row { grid-row: span 1; }
  .photo-split-img img { height: 260px; }
  .photo-full img { height: 260px; }
}
