/* === Sekce dovedností/technologií === */
.skills-section {
  width: 90vw;
  max-width: 900px;
  /* zmenšená mezera nad/pod sekcí, původně 40px */
  margin: 12px auto;
  /* ponecháme vnitřní odsazení, ale lze upravit pokud chcete kompaktnější vzhled */
  padding: 28px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(45,127,249,0.10);
  animation: fadeInBox 1.2s ease;
}

.skills-section h2 {
  margin-bottom: 24px;
  font-size: 2rem;
  color: #2d7ff9;
  text-align: center;
}

.skills-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.skills-list li {
  background: linear-gradient(90deg, #2d7ff9 0%, #4fa3ff 100%);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(45,127,249,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.skills-list li:hover {
  transform: scale(1.07);
  box-shadow: 0 4px 16px rgba(45,127,249,0.18);
}
/* === LOADING SCREEN === */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2d7ff9 0%, #4fa3ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  text-align: center;
}

.loader-circle {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loader-text {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}

/* === SCROLL PROGRESS BAR === */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #2d7ff9 0%, #4fa3ff 100%);
  z-index: 9999;
  transition: width 0.1s ease-out;
  box-shadow: 0 2px 8px rgba(45,127,249,0.5);
  will-change: width;
}

/* === FADE-IN & SLIDE-UP EFEKT SEKCE === */
.section-fade {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
  will-change: opacity, transform;
}
.section-fade.visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}
.contact-icon-text {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
/* footer { margin-top: auto; } odstraněno kvůli bílému pruhu dole */
footer {
  background: linear-gradient(90deg, #2d7ff9 0%, #4fa3ff 100%);
  padding: 60px 0 80px 0;
  font-size: 1rem;
  color: #f7f7f7;
  border-top: none;
  width: 100vw;
  position: static;
  left: unset;
  right: unset;
  bottom: unset;
  min-height: 320px;
  margin: 0;

body {
  min-height: 100vh;
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
}

main, section, .content {
  width: 90vw;
  max-width: 1400px;
  margin: 32px auto;
  padding: 32px 24px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 4px 32px rgba(45,127,249,0.08);
  border-radius: 16px;
}
}
/* footer { margin-top: auto; } odstraněno kvůli bílému pruhu dole */

.footer-icon-text {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}
.footer-icon {
  display: inline-block;
  vertical-align: middle;
  stroke: #111;
  fill: none;
}
/* O nás - jeden sloupec, vysoký obsah */
.about-onecol {
  max-width: 700px;
  margin: 24px auto 0 auto;
}
.about-onecol p {
  font-size: 1.15rem;
  color: #222;
  line-height: 1.7;
  margin-bottom: 22px;
}

/* O nás – zúžený layout (více do výšky) */
#about .about-cols {
  display: grid;
  grid-template-columns: 1fr; /* vždy jeden sloupec */
  row-gap: 16px;
  max-width: 680px; /* zúžení obsahu */
  margin: 12px auto 0;
  padding: 0 16px;
}
#about .about-onecol {
  max-width: 680px; /* stejné zúžení jako výše */
  padding: 0 16px;
}

/* Proč zrovna my */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto 0;
  padding: 0 20px;
}
.why-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(45,127,249,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(45,127,249,0.1);
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(45,127,249,0.2);
}
.why-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  animation: float 3s ease-in-out infinite;
}
.why-card:nth-child(2) .why-icon {
  animation-delay: 0.5s;
}
.why-card:nth-child(3) .why-icon {
  animation-delay: 1s;
}
.why-card h3 {
  font-size: 1.5rem;
  color: #2d7ff9;
  margin-bottom: 12px;
  font-weight: 700;
}
.why-card p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

.benefit-clickable { 
  position: relative;
  cursor: pointer;
  user-select: none;
}
.benefit-clickable .addon-bubble {
  display: none;
  background: #2d7ff9;
  color: #fff;
  border-radius: 18px;
  padding: 14px 18px;
  font-size: 0.98rem;
  box-shadow: 0 8px 24px rgba(45,127,249,0.22), 0 2px 8px rgba(0,0,0,0.12);
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  max-width: 300px;
  text-align: left;
  z-index: 100;
  pointer-events: auto;
  opacity: 0;
  transition: opacity 0.18s ease-out;
}
.benefit-clickable .addon-bubble.show {
  display: block !important;
  opacity: 1;
}
.benefits-undertext {
  text-align: center;
  color: #fff;
  font-size: 1.08rem;
  margin-top: 18px;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(45,127,249,0.25), 0 1px 0 #2d7ff9;
  font-weight: 500;
}
/* === UPOZORNĚNÍ U BENEFITS (BUBLINY HERO) === */
.benefits-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
  margin-bottom: 0;
}
.benefits-hint-outer {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
  margin-top: 8px;
  user-select: none;
}
.mouse-anim.small {
  margin-bottom: 6px;
  animation: mouseBounce 1.5s infinite;
}
.mouse-anim.small svg {
  width: 32px;
  height: 40px;
}
  .hint-text.small {
    font-size: 0.92rem;
    color: #fff;
    text-align: center;
    font-weight: 600;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(45,127,249,0.25), 0 1px 0 #2d7ff9;
  }
.services-hint-outer-bottom .hint-text.small {
  color: #2d7ff9;
  text-shadow: 0 2px 8px rgba(45,127,249,0.08);
}
.benefits-desc {
  text-align: center;
  color: #fff;
  font-size: 1.08rem;
  margin-top: 18px;
  text-shadow: 0 2px 8px rgba(45,127,249,0.25), 0 1px 0 #2d7ff9;
  font-weight: 500;
}
.benefits-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 700px) {
  .benefits-row { flex-direction: column; align-items: center; gap: 10px; }
  .benefits-hint-outer { flex-direction: row; min-width: 0; margin-bottom: 8px; margin-top: 0; }
  .mouse-anim.small { margin-bottom: 0; margin-right: 8px; }
  .hint-text.small { text-align: left; }
  .benefits-list { flex-wrap: wrap; justify-content: center; }
  .benefit-clickable .addon-bubble { left: 50%; transform: translateX(-50%); max-width: 90vw; }
}
/* === UPOZORNĚNÍ MIMO KARTY === */
.services-row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  position: relative;
.services-hint-outer.services-hint-outer-bottom {
  position: absolute;
  left: -3cm;
  top: 1cm;
  margin-left: 0;
  min-width: 80px;
  z-index: 2;
}
.services-row .services {
  margin-left: 110px;
}
@media (max-width: 900px) {
  .services-row {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .services-hint-outer.services-hint-outer-bottom {
    position: static;
    margin-bottom: 10px;
    margin-left: 0;
    min-width: 0;
    top: auto;
    left: auto;
  }
  .services-row .services {
    margin-left: 0;
  }
}
}
.services-hint-outer {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
  margin-top: 18px;
  user-select: none;
  margin-right: 0;
}
.mouse-anim {
  margin-bottom: 10px;
  animation: mouseBounce 1.5s infinite;
}
.mouse-anim svg {
  display: block;
}
.mouse-btn {
  animation: mouseClick 1.2s infinite;
  transform-origin: center;
}
@keyframes mouseBounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}
@keyframes mouseClick {
  0%, 100% { fill: #2d7ff9; }
  20% { fill: #1a5ed1; }
  30% { fill: #1a5ed1; transform: scaleY(0.7); }
  40% { fill: #2d7ff9; transform: scaleY(1); }
}
.hint-text {
  font-size: 1rem;
  color: #2d7ff9;
  text-align: center;
  font-weight: 600;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(45,127,249,0.08);
}

@media (max-width: 900px) {
  .services-row { flex-direction: column; align-items: center; gap: 18px; }
  .services-hint-outer { flex-direction: row; min-width: 0; margin-bottom: 10px; margin-top: 0; }
  .mouse-anim { margin-bottom: 0; margin-right: 12px; }
  .hint-text { text-align: left; }
}
/* === UPOZORNĚNÍ U SLUŽEB === */
.services-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.services-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
  margin-top: 18px;
  user-select: none;
}
.mouse-anim {
  margin-bottom: 10px;
  animation: mouseBounce 1.5s infinite;
}
.mouse-anim svg {
  display: block;
}
.mouse-btn {
  animation: mouseClick 1.2s infinite;
  transform-origin: center;
}
@keyframes mouseBounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}
@keyframes mouseClick {
  0%, 100% { fill: #2d7ff9; }
  20% { fill: #1a5ed1; }
  30% { fill: #1a5ed1; transform: scaleY(0.7); }
  40% { fill: #2d7ff9; transform: scaleY(1); }
}
.hint-text {
  font-size: 1rem;
  color: #2d7ff9;
  text-align: center;
  font-weight: 600;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(45,127,249,0.08);
}

@media (max-width: 900px) {
  .services-row { flex-direction: column; align-items: center; gap: 18px; }
  .services-hint { flex-direction: row; min-width: 0; margin-bottom: 10px; margin-top: 0; }
  .mouse-anim { margin-bottom: 0; margin-right: 12px; }
  .hint-text { text-align: left; }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html {
  overflow-x: hidden;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  color: #333;
  background: #fff;
  background-attachment: fixed;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transform: translateZ(0);
  will-change: transform;
}

.logo { font-size: 1.5rem; font-weight: bold; color: #2d7ff9; }
.nav-links { display: flex; list-style: none; gap: 18px; }
.nav-links a {
  text-decoration: none; font-weight: 600; color: #333;
  padding: 8px 14px; border-radius: 30px; transition: background 0.3s, color 0.3s;
}
.nav-links a:hover, .nav-links a.active { background: #2d7ff9; color: #fff; }

/* Navbar responsive adjustments */
@media (max-width: 768px) {
  .navbar { 
    padding: 10px 16px;
    flex-wrap: wrap;
  }
  .logo {
    font-size: 1.1rem;
  }
  .nav-links { 
    flex-direction: column;
    width: 100%;
    gap: 4px;
    margin-top: 8px;
    background: rgba(255,255,255,0.98);
    padding: 8px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  .nav-links a { 
    padding: 8px 12px;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .navbar { padding: 10px 12px; }
  .logo { font-size: 1.2rem; }
  .nav-links a { font-size: 0.95rem; padding: 8px 12px; }
}

/* === HERO === */
.hero {
  position: relative;
  background: linear-gradient(160deg, #2d7ff9 0%, #4fa3ff 70%, #ffffff 100%);
  color: #fff;
  overflow: hidden;
}

/* Animated particles background */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  animation: float-up 15s infinite ease-in-out;
}

@keyframes float-up {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(100px);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  min-height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 140px 20px 0;
  overflow: visible;
}

.hero h1 { font-size: 3rem; margin-bottom: 20px; text-shadow: 0 3px 6px rgba(0,0,0,0.2); }
.hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 50px; }

/* Hero responsive */
@media (max-width: 768px) {
  .hero {
    padding: 100px 16px 0;
  }
  .hero h1 {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  .hero p {
    font-size: 1.05rem;
    margin-bottom: 35px;
  }
  .benefits {
    gap: 12px;
    margin-bottom: 40px;
  }
  .benefit {
    padding: 18px 22px;
    font-size: 0.95rem;
    min-width: 120px;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .benefit {
    padding: 14px 18px;
    font-size: 0.9rem;
    min-width: 100px;
  }
}

/* === BUBLINY HERO === */
.benefits { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-bottom: 60px; position: relative; z-index: 2; }
.benefit {
  background: rgba(255,255,255,0.15); padding: 25px 30px; border-radius: 50px;
  font-size: 1.1rem; font-weight: 600; min-width: 150px; text-align: center;
  transition: background 0.3s, transform 0.2s;
  position: relative;
  z-index: 10;
}
.benefit-clickable {
  position: relative;
  cursor: pointer !important;
  user-select: none;
  z-index: 10;
  pointer-events: auto !important;
}
.benefit:hover { background: rgba(255,255,255,0.25); transform: translateY(-4px); }
.benefit .icon { 
  font-size: 2rem; 
  margin-bottom: 6px; 
  display: inline-block;
  animation: float 4.5s ease-in-out infinite;
  pointer-events: none;
}
.benefit:nth-child(1) .icon { animation-delay: 0s; }
.benefit:nth-child(2) .icon { animation-delay: 0.3s; }
.benefit:nth-child(3) .icon { animation-delay: 0.6s; }
.benefit:nth-child(4) .icon { animation-delay: 0.9s; }
.benefit:nth-child(5) .icon { animation-delay: 1.2s; }
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* === ŠIPKA NA SPODKU HERO === */
.scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin-top: auto;
  margin-bottom: 30px;
  z-index: 10;
}

.arrow-wrapper {
  font-size: 60px;
  color: #fff;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
  animation: bounce 1.5s infinite;
}

.scroll-text {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(15px); }
}

/* === VLNA === */
.wave-container { position: absolute; bottom: 0; left: 0; width: 100%; overflow: hidden; z-index: 0; pointer-events: none; }
.wave { display: block; width: 100%; height: auto; }

/* === SEKCE OBECNĚ === */
.section { padding: 80px 20px; max-width: 1000px; margin: auto; text-align: center; }
.section h2 { font-size: 2rem; margin-bottom: 20px; }

/* === SLUŽBY === */
.services { display: flex; gap: 25px; flex-wrap: wrap; justify-content: center; }
.card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(45,127,249,0.10), 0 1.5px 8px rgba(0,0,0,0.08);
  padding: 25px;
  max-width: 280px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  border: 1.5px solid rgba(255,255,255,0.25);
  position: relative;
  z-index: 1;
  pointer-events: auto;
}
.card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 8px 32px rgba(45,127,249,0.18), 0 2px 12px rgba(0,0,0,0.12);
  border-color: #2d7ff9;
}
.card h3 { margin-bottom:12px; font-size:1.3rem; color:#2d7ff9; }
.card p { font-size:0.95rem; }
.card .price { margin-top:16px; font-size:1.2rem; font-weight:700; color:#2d7ff9; }

/* === ROZKLIKÁVACÍ BUBLINA U SLUŽEB === */
.addon-bubble {
  display: none;
  background: #2d7ff9;
  color: #fff;
  border-radius: 18px;
  margin-top: 18px;
  padding: 16px 18px;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(45,127,249,0.10);
  position: relative;
  z-index: 2;
  animation: fadeInBubble 0.3s;
}
.addon-bubble.show {
  display: block;
}
@keyframes fadeInBubble {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === KONTAKT === */
.contact-modern {
  background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
  padding: 100px 20px !important;
  position: relative;
  overflow: hidden;
}

.contact-modern::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45,127,249,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-hero {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

.contact-hero h2 {
  font-size: 3rem;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #2d7ff9 0%, #5b9eff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  letter-spacing: -1px;
}

.contact-hero .contact-subtitle {
  font-size: 1.3rem;
  color: #666;
  margin: 0 auto;
  max-width: 700px;
  line-height: 1.6;
  font-weight: 400;
}

/* === FAQ SECTION === */
.faq-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin: -10px auto 40px;
  max-width: 600px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(45,127,249,0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(45,127,249,0.12);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d7ff9;
  text-align: left;
  transition: all 0.3s;
}

.faq-question:hover {
  background: rgba(45,127,249,0.03);
}

.faq-icon {
  font-size: 1.8rem;
  font-weight: 300;
  transition: transform 0.3s;
  color: #2d7ff9;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 28px 24px 28px;
}

.faq-answer p {
  color: #444;
  line-height: 1.7;
  font-size: 1.05rem;
  margin: 0;
}

/* === STATISTICS SECTION === */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
  max-width: 900px;
  margin: 20px auto 10px;
}

.stat-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 28px 20px 26px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 24px rgba(45,127,249,0.12);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s cubic-bezier(.4,0,.2,1);
  border: 1px solid rgba(45,127,249,0.15);
}
.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(45,127,249,0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
}
.stat-card:hover::before { opacity: 1; }
.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(45,127,249,0.22);
}
.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 6px;
  background: linear-gradient(90deg, #2d7ff9, #4fa3ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 1px;
  font-family: 'Segoe UI', Arial, sans-serif;
  position: relative;
}
.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2d7ff9;
  letter-spacing: .5px;
  text-transform: uppercase;
}
@media (max-width: 680px) {
  .stat-number { font-size: 2.2rem; }
  .stats-grid { gap: 20px; }
}

/* Animated entrance variants */
.section-fade[data-anim="slide-up"] { transform: translateY(60px); opacity: 0; }
.section-fade[data-anim="slide-left"] { transform: translateX(60px); opacity: 0; }
.section-fade[data-anim="zoom-in"] { transform: scale(.85); opacity: 0; }
.section-fade[data-anim="rotate-in"] { transform: rotate(4deg) scale(.95); opacity: 0; }
.section-fade.visible[data-anim] { transform: none; opacity: 1; }
.section-fade[data-anim] { transition: opacity .9s cubic-bezier(.4,0,.2,1), transform .9s cubic-bezier(.4,0,.2,1); }

@media (max-width: 768px) {
  .faq-question {
    padding: 18px 20px;
    font-size: 1rem;
  }
  
  .faq-icon {
    font-size: 1.5rem;
    margin-left: 12px;
  }
  
  .faq-answer p {
    font-size: 0.95rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 18px 20px;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.method-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 24px;
  border: 2px solid rgba(45,127,249,0.08);
  position: relative;
  overflow: hidden;
}

.method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #2d7ff9, #5b9eff);
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.method-card:hover::before {
  transform: scaleY(1);
}

.method-card:hover {
  transform: translateX(12px);
  box-shadow: 0 8px 32px rgba(45,127,249,0.12);
  border-color: rgba(45,127,249,0.2);
}

.method-bg {
  font-size: 3.2rem;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f5ff, #e3edff);
  border-radius: 20px;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.method-card:hover .method-bg {
  transform: rotate(-5deg) scale(1.05);
  background: linear-gradient(135deg, #e3edff, #d4e4ff);
}

.method-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.method-label {
  font-size: 0.8rem;
  color: #999;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.method-value {
  font-size: 1.15rem;
  color: #2d7ff9;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  white-space: nowrap;
  overflow: visible;
}

.method-value:hover {
  color: #1a5ed1;
  transform: translateX(4px);
}

.method-card.special {
  background: linear-gradient(135deg, #2d7ff9 0%, #5b9eff 100%);
  color: #fff;
  padding: 40px 32px;
  border: none;
  box-shadow: 0 8px 32px rgba(45,127,249,0.25);
}

.method-card.special:hover {
  transform: translateY(-8px) translateX(0);
  box-shadow: 0 16px 48px rgba(45,127,249,0.35);
}

/* Copy to Clipboard Functionality */
.method-card.copy-contact {
  cursor: pointer;
  position: relative;
}

.copy-hint {
  display: block;
  font-size: 0.75rem;
  color: #2d7ff9;
  margin-top: 6px;
  opacity: 0;
  transition: opacity 0.3s;
  font-weight: 600;
}

.method-card.copy-contact:hover .copy-hint {
  opacity: 1;
}

.method-card.copy-contact.copied::after {
  content: '✓ Zkopírováno!';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #10b981;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(16,185,129,0.3);
  animation: fadeInOut 2s ease;
  pointer-events: none;
  z-index: 10;
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0; }
  10%, 90% { opacity: 1; }
}

.special-content {
  text-align: center;
  width: 100%;
}

.special-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
  animation: float 3s ease-in-out infinite;
  display: inline-block;
}

.special-content h4 {
  font-size: 1.5rem;
  margin: 0 0 10px 0;
  color: #fff;
  font-weight: 700;
}

.special-content p {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.6;
}

.contact-form-box {
  background: #fff;
  border-radius: 28px;
  padding: 50px 45px;
  box-shadow: 0 8px 48px rgba(45,127,249,0.15);
  border: 2px solid rgba(45,127,249,0.15);
  transition: all 0.3s ease;
  position: relative;
}

.contact-form-box::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #2d7ff9, #5b9eff);
  border-radius: 28px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.contact-form-box:hover {
  box-shadow: 0 12px 60px rgba(45,127,249,0.25);
  border-color: rgba(45,127,249,0.3);
}

.contact-form-box:hover::before {
  opacity: 0.1;
}

.form-header {
  margin-bottom: 35px;
  text-align: center;
}

.form-header h3 {
  font-size: 2.2rem;
  color: #222;
  margin: 0 0 10px 0;
  font-weight: 700;
}

.form-header p {
  color: #777;
  margin: 0;
  font-size: 1.08rem;
}

.contact-form-modern {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form-modern input,
.contact-form-modern textarea {
  width: 100%;
  padding: 18px 22px;
  border: 2px solid #eff3ff;
  border-radius: 14px;
  font-size: 1.05rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #f9fbff;
  color: #333;
}

.contact-form-modern input:focus,
.contact-form-modern textarea:focus {
  outline: none;
  border-color: #2d7ff9;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(45,127,249,0.06);
  transform: translateY(-2px);
}

.contact-form-modern textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

/* GDPR Checkbox */
.gdpr-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 20px 0;
  padding: 16px;
  background: rgba(45,127,249,0.03);
  border-radius: 10px;
  border: 1px solid rgba(45,127,249,0.1);
}

.gdpr-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #2d7ff9;
}

.gdpr-checkbox label {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
  cursor: pointer;
  user-select: none;
}

.gdpr-checkbox .gdpr-link {
  color: #2d7ff9;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s;
}

.gdpr-checkbox .gdpr-link:hover {
  color: #1a5ed1;
}

.btn-modern {
  margin-top: 12px;
  padding: 20px 40px;
  background: linear-gradient(135deg, #2d7ff9 0%, #5b9eff 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 8px 28px rgba(45,127,249,0.3);
  position: relative;
  overflow: hidden;
}

.btn-modern::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-modern:hover::before {
  width: 300px;
  height: 300px;
}

.btn-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 42px rgba(45,127,249,0.4);
}

.btn-modern:active {
  transform: translateY(-2px);
}

.btn-arrow {
  font-size: 1.6rem;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.btn-modern:hover .btn-arrow {
  transform: translateX(6px);
}

/* Button Spinner for Loading State */
.btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1100px) {
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
  }
  .contact-methods {
    order: 2;
  }
  .contact-form-box {
    order: 1;
  }
  .method-card:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 768px) {
  .contact-modern {
    padding: 70px 20px !important;
  }
  .contact-hero h2 {
    font-size: 2.3rem;
  }
  .contact-hero .contact-subtitle {
    font-size: 1.15rem;
  }
  .contact-form-box {
    padding: 35px 28px;
  }
  .form-header h3 {
    font-size: 1.8rem;
  }
  .method-bg {
    width: 75px;
    height: 75px;
    font-size: 2.8rem;
  }
}

/* Toast zpráva */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #2d7ff9;
  color: #fff;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(45,127,249,0.35);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 2000;
  pointer-events: none;
  font-weight: 600;
  font-size: 1rem;
  max-width: 400px;
  line-height: 1.5;
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.toast.success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 8px 28px rgba(16,185,129,0.35);
}
.toast.error {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  box-shadow: 0 8px 28px rgba(239,68,68,0.35);
}
@media (max-width: 640px) {
  .toast { 
    left: 50%; 
    right: auto; 
    transform: translate(-50%, 8px);
    max-width: 90vw;
    padding: 14px 20px;
    font-size: 0.95rem;
  }
  .toast.show { transform: translate(-50%, 0); }
}

/* === SCROLL TO TOP BUTTON === */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2d7ff9 0%, #4fa3ff 100%);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(45,127,249,0.4);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 6px 28px rgba(45,127,249,0.5);
}

.scroll-to-top:active {
  transform: translateY(-2px) scale(1.05);
}

.scroll-to-top svg {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

/* === SHARE FLOATING BUTTON === */
.share-float {
  position: fixed;
  bottom: 170px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(102,126,234,0.4);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.share-float:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 6px 28px rgba(102,126,234,0.5);
}

.share-float svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .share-float {
    bottom: 150px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

/* === WHATSAPP FLOATING BUTTON === */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  animation: pulse 2s infinite;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  background: #20BA5A;
}

.whatsapp-float:hover svg {
  transform: scale(1.1);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.1); }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 85px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
}

/* === FOOTER === */
footer {
  background: linear-gradient(90deg, #2d7ff9 0%, #4fa3ff 100%);
  margin-top: 60px;
  padding: 60px 0 0 0; /* zvětšeno, spodní padding odstraněn */
  font-size: 1rem;
  color: #f7f7f7;
  border-top: none; /* odstraněn bílý pruh */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 180px; /* zvětšení výšky patičky */
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 10px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  margin-right: 18px;
  letter-spacing: 1px;
}
.footer-text {
  margin-right: 18px;
  font-size: 1.08rem;
  color: #e0e7ff;
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-nav {
  display: flex;
  gap: 18px;
}
.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
  background: rgba(255,255,255,0.08);
}
.footer-nav a:hover {
  background: #fff;
  color: #2d7ff9;
}
.footer-bottom {
  margin-top: 18px;
  font-size: 0.98rem;
  color: #e0e7ff;
  text-align: center;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-logo {
    font-size: 1.5rem;
  }
  .footer-text {
    flex-direction: column;
    gap: 10px;
    font-size: 1rem;
    margin: 0;
  }
  .footer-nav {
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  .footer-nav a {
    padding: 6px 12px;
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .footer-logo {
    font-size: 1.3rem;
  }
  .footer-text {
    font-size: 0.95rem;
  }
  .footer-nav a {
    font-size: 0.85rem;
    padding: 5px 10px;
  }
}

/* === COOKIE CONSENT BANNER === */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 20px;
  z-index: 10001;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background: #2d7ff9;
  color: #fff;
}

.cookie-btn.accept:hover {
  background: #1a6ee8;
  transform: translateY(-2px);
}

.cookie-btn.reject {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}

.cookie-btn.reject:hover {
  background: rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1;
  }
}

/* === 3D TILT CARD EFFECT === */
.tilt-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}

.tilt-card:hover {
  transform: perspective(1000px) rotateY(5deg) rotateX(5deg);
  box-shadow: 0 20px 40px rgba(45,127,249,0.3);
}

/* === ACCESSIBILITY & PERFORMANCE === */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .section-fade,
  .loader-circle {
    animation: none;
    transition: none;
  }
}

/* Mobile performance optimizations */
@media (max-width: 768px) {
  .navbar {
    backdrop-filter: blur(5px);
  }
  
  * {
    -webkit-tap-highlight-color: rgba(45, 127, 249, 0.2);
  }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid #2d7ff9;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .navbar,
  .scroll-progress,
  .scroll-to-top,
  .whatsapp-float,
  .loading-screen {
    display: none !important;
  }
}
