/**
 * JERGONLAB - Vylepšené styly pro web.php
 * OPRAVENÁ VERZE - Nadpisy optimalizovány pro všechny velikosti obrazovky
 */

/* Základní nastavení */
:root {
  /* Základní barvy */
  --primary: #ff3c2a;          /* Červeno-oranžová */
  --primary-hover: #ff5945;    /* Světlejší varianta primární */
  --primary-dark: #e82918;     /* Tmavší varianta primární */
  --accent: #ff6a00;           /* Oranžová akcentní */
  --accent-glow: rgba(255, 60, 42, 0.3); /* Záře pro tlačítka */
  
  /* Gradienty */
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--accent));
  --gradient-hover: linear-gradient(135deg, var(--accent), var(--primary));
  
  /* Tmavý režim specifické barvy */
  --dark-bg-1: #111111;        /* Pozadí základní */
  --dark-bg-2: #1a1a1a;        /* Pozadí zvýrazněné (pro sekce) */
  --dark-bg-3: #222222;        /* Pozadí pro karty */
  
  /* Světlý režim specifické barvy */
  --light-bg-1: #ffffff;       /* Pozadí základní */
  --light-bg-2: #f8f8f8;       /* Pozadí zvýrazněné (pro sekce) */
  --light-bg-3: #f0f0f0;       /* Pozadí pro karty */
  
  /* Konzistentní mezery */
  --section-spacing: 9rem;     /* Konzistentní výška sekcí */
  --section-spacing-mobile: 6rem; /* Výška sekcí na mobilech */
  --element-spacing: 2.5rem;   /* Mezera mezi prvky v sekci */
  
  /* Rádius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  
  /* Efekty */
  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --shadow-primary: 0 10px 25px var(--accent-glow);
  
  /* Animace */
  --transition-fast: 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --transition-normal: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --transition-slow: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Typografie a základní styly */
body {
  font-family: 'Inter', 'Satoshi', 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.01em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Oprava výšky sekcí - konzistentní dýchání */
.section {
  padding: var(--section-spacing) 0;
  position: relative;
  overflow: hidden;
  border: none !important;
}

/* Alternující barvy sekcí pro lepší oddělení */
.hero-section {
  background-color: var(--dark-bg-1);
  position: relative;
  z-index: 1;
}

.process-section {
  background-color: var(--dark-bg-2);
  position: relative;
  z-index: 2;
}

.persona-section {
  background-color: var(--dark-bg-1);
  position: relative;
  z-index: 1;
}

.subscription-section {
  background-color: var(--dark-bg-2);
  position: relative;
  z-index: 2;
}

.pricing-section {
  background-color: var(--dark-bg-1);
  position: relative;
  z-index: 1;
}

.scarcity-section {
  background-color: var(--dark-bg-2);
  position: relative;
  z-index: 2;
}

.proof-section {
  background-color: var(--dark-bg-1);
  position: relative;
  z-index: 1;
}

.final-cta-section {
  background-color: var(--dark-bg-2);
  position: relative;
  z-index: 2;
}

/* Světlý režim - alternující barvy sekcí */
.light-mode .hero-section {
  background-color: var(--light-bg-1);
}

.light-mode .process-section {
  background-color: var(--light-bg-2);
}

.light-mode .persona-section {
  background-color: var(--light-bg-1);
}

.light-mode .subscription-section {
  background-color: var(--light-bg-2);
}

.light-mode .pricing-section {
  background-color: var(--light-bg-1);
}

.light-mode .scarcity-section {
  background-color: var(--light-bg-2);
}

.light-mode .proof-section {
  background-color: var(--light-bg-1);
}

.light-mode .final-cta-section {
  background-color: var(--light-bg-2);
}

/* Moderní vizuální oddělení sekcí - elegantní vlna */
.section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M1200 120L0 16.48V0h1200v120z' fill='%23ff3c2a' opacity='0.05'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  z-index: 3;
  pointer-events: none;
}

/* KOMPLETNÍ OPRAVA HERO NADPISU - perfektní vzhled bez rozdělování slov 
   DŮLEŽITÁ ÚPRAVA: Zmenšeny velikosti nadpisů a vylepšeno zalomení */
.hero-title {
  font-family: 'Inter', 'Poppins', sans-serif !important;
  font-weight: 900 !important;
  font-size: 3.8rem !important; /* ZMENŠENO z 4.5rem */
  line-height: 1.1 !important;
  margin-bottom: 2.5rem !important;
  color: var(--primary) !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  text-shadow: none !important;
  letter-spacing: -0.02em !important;
  word-spacing: 0.05em !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 !important;
  text-transform: uppercase !important;
  text-align: center !important;
  position: relative;
  z-index: 5;
  display: block !important;
  width: 90% !important; /* ZVĚTŠENO pro lepší zalamování nadpisů */
}

/* NOVÝ VIZUÁLNÍ EFEKT PRO DLOUHÉ NADPISY - opraveny pro lepší zalomení */
.hero-title.long-title {
  font-size: 3.2rem !important; /* ZMENŠENO z 3.5rem */
  width: 90% !important;
  letter-spacing: -0.01em !important;
  word-spacing: 0.08em !important;
  margin-bottom: 2.5rem !important;
}

/* Každý řádek nadpisu je samostatný - OPRAVENO pro lepší zalamování */
.hero-title-line {
  display: block !important;
  width: 100% !important;
  white-space: normal !important; /* ZMĚNĚNO z nowrap na normal pro všechny případy */
  margin-bottom: 0.5rem !important;
  font-family: 'Inter', 'Poppins', sans-serif !important;
  font-weight: 900 !important;
  font-size: inherit !important;
  line-height: 1.3 !important;
  color: var(--primary) !important;
  text-transform: uppercase !important;
  letter-spacing: -0.01em !important;
  word-spacing: 0.08em !important;
}

/* Pro velmi dlouhé řádky - další opravy a vylepšení */
.hero-title.long-title .hero-title-line {
  white-space: normal !important;
  margin-bottom: 0.6rem !important;
  max-width: 100% !important;
  line-height: 1.3 !important;
  letter-spacing: -0.01em !important;
  word-spacing: 0.08em !important;
  font-size: 0.95em !important; /* Mírně menší pro dlouhé texty */
}

/* OPRAVA: Ostatní nadpisy */
.process-title,
.persona-title,
.subscription-title,
.pricing-title,
.scarcity-title,
.proof-title,
.final-cta-title,
.section-title {
  font-family: 'Inter', 'Poppins', sans-serif !important;
  font-weight: 900 !important;
  font-size: 2.5rem !important; /* ZMENŠENO z 2.8rem */
  line-height: 1.3 !important;
  margin-bottom: 2rem !important;
  color: var(--primary) !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  text-shadow: none !important;
  letter-spacing: -0.01em !important;
  word-spacing: 0.08em !important;
  word-wrap: break-word !important;
  hyphens: auto !important;
  max-width: 90% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  display: block !important;
  text-transform: uppercase !important;
}

/* Speciální úprava pro nadpisy s více řádky */
.multi-line-title {
  display: block !important;
  width: 100% !important;
  margin-bottom: 0.5rem !important;
  font-family: 'Inter', 'Poppins', sans-serif !important;
  font-weight: 900 !important;
  line-height: 1.3 !important;
  color: var(--primary) !important;
  letter-spacing: -0.01em !important;
  word-spacing: 0.08em !important;
}

/* ZÁSADNÍ OPRAVA: Subscription karty - kompletní redesign */
.subscription-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 5;
}

.subscription-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.light-mode .subscription-card {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.subscription-card.traditional {
  border-top: 5px solid #777;
}

.subscription-card.premium {
  border-top: 5px solid var(--primary);
}

.card-header {
  margin-bottom: 2rem;
  text-align: center;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--light);
  letter-spacing: -0.01em;
  word-spacing: 0.05em;
}

.light-mode .card-title {
  color: var(--text-light);
}

.traditional .card-title {
  color: #777;
}

.premium .card-title {
  color: var(--primary);
}

.card-subtitle {
  font-size: 1rem;
  color: var(--light-3);
  margin-top: 0.5rem;
}

.light-mode .card-subtitle {
  color: var(--muted-light);
}

.card-icon {
  font-size: 1.5rem;
  display: inline-block;
}

/* ZÁSADNÍ OPRAVA: Checkmarky a feature itemy */
.card-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  gap: 1rem;
}

.feature-icon {
  font-size: 1.25rem;
  min-width: 24px;
  width: 24px;
  height: 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.traditional .feature-icon {
  color: #777;
}

.premium .feature-icon {
  color: var(--primary);
}

.feature-text {
  font-size: 1rem;
  line-height: 1.5;
  flex: 1;
  text-align: left;
  color: var(--light);
  letter-spacing: -0.01em;
  word-spacing: 0.05em;
}

.light-mode .feature-text {
  color: var(--text-light);
}

/* Tlačítka - vylepšení */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  word-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition-normal);
  background: var(--gradient-primary);
  box-shadow: var(--shadow-primary);
  position: relative;
  overflow: hidden;
  color: white !important;
  border: none;
  outline: none;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px var(--accent-glow);
  background: var(--gradient-hover);
  color: white !important;
}

.btn-large {
  padding: 1rem 2.2rem;
  font-size: 1.1rem;
}

/* OPRAVA: Barva textu tlačítek při hoveru */
.btn, 
.btn:hover,
.btn:active,
.btn:focus {
  color: white !important;
}

.light-mode .btn,
.light-mode .btn:hover,
.light-mode .btn:active,
.light-mode .btn:focus {
  color: white !important;
}

.persona-button:hover, 
.persona-button.active {
  color: white !important;
}

/* Tlačítka v patičce - úprava velikosti */
.contact-button button {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-primary);
  transition: all var(--transition-normal);
}

.contact-button button:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px var(--accent-glow);
  background: var(--gradient-hover);
  z-index: 200;
}

.contact-button button svg {
  width: 22px;
  height: 22px;
}

/* Persona tlačítka - redesign */
.persona-button {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.2rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  letter-spacing: -0.01em;
  word-spacing: 0.05em;
}

.light-mode .persona-button {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.persona-button:hover, 
.persona-button.active {
  background-color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px var(--accent-glow);
  color: white !important;
}

/* Karty a prvky - konzistentní styl */
.process-step,
.pricing-item,
.subscription-card,
.proof-form,
.scarcity-highlight {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  overflow: hidden;
}

.light-mode .process-step,
.light-mode .pricing-item,
.light-mode .subscription-card,
.light-mode .proof-form,
.light-mode .scarcity-highlight {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.process-step:hover,
.pricing-item:hover,
.subscription-card:hover,
.proof-form:hover,
.scarcity-highlight:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 60, 42, 0.2);
}

/* Texty sekcí - konzistence */
.hero-text,
.process-text,
.persona-text,
.subscription-text,
.pricing-text,
.scarcity-text,
.proof-text,
.final-cta-text {
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto var(--element-spacing);
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 5;
  letter-spacing: -0.01em;
  word-spacing: 0.05em;
}

.light-mode .hero-text,
.light-mode .process-text,
.light-mode .persona-text,
.light-mode .subscription-text,
.light-mode .pricing-text,
.light-mode .scarcity-text,
.light-mode .proof-text,
.light-mode .final-cta-text {
  color: rgba(0, 0, 0, 0.7);
}

/* OPRAVA: Mezera nad třemi tlačítky v patičce */
.section:last-child {
  margin-bottom: calc(var(--footer-height) + 0.5rem) !important;
  padding-bottom: 3rem !important;
}

.footer {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Dekorativní efekty - moderní prvky */
.section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 60, 42, 0.08) 0%, rgba(255, 60, 42, 0) 70%);
  filter: blur(80px);
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}

/* Moderní 3D efekt tlačítek a karet */
.btn, 
.persona-button, 
.process-step, 
.pricing-item,
.subscription-card {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.btn::after, 
.persona-button::after,
.process-step::after,
.pricing-item::after,
.subscription-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  transform: translateZ(-1px);
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}

/* Další opravu pro mezeru u patičky */
.final-cta-section {
  padding-bottom: 5rem !important;
}

/* ZÁSADNÍ OPRAVA: Scarcity sekce - ukazatel dostupnosti */
.spots-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 auto 1.5rem;
  max-width: 100%;
  width: 100%;
}

.spots-taken, 
.spots-available {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.spot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.light-mode .spot {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.spot.active {
  background: var(--primary);
  border: 1px solid var(--primary-dark);
  box-shadow: 0 0 10px rgba(255, 60, 42, 0.5);
}

.scarcity-highlight {
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 500px;
  margin: 2rem auto;
}

.scarcity-highlight span {
  margin-top: 1rem;
  display: block;
  width: 100%;
  text-align: center;
}

/* Kontaktní modál oprava */
.contact-modal {
  position: fixed !important;
  bottom: calc(var(--footer-height) + 30px) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  max-width: 90vw !important;
  z-index: 1000 !important;
}

/* NOVÉ STYLY PRO NADPISY PERSONA */
.hero-title-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
}

/* Přidání vizuálního efektu za dlouhým nadpisem */
.hero-title.long-title::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 100%;
  left: -10%;
  top: 0;
  background: radial-gradient(ellipse at center, rgba(255, 60, 42, 0.05) 0%, rgba(255, 60, 42, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

/* OPRAVA RESPONZIVITY PRO LANDSCAPE REŽIM */
@media (orientation: landscape) and (max-height: 600px) {
  .section {
    padding: 4rem 0 !important;
  }
  
  .hero-title {
    font-size: 2.8rem !important; /* ZMENŠENO z 3rem */
  }
  
  .hero-title.long-title {
    font-size: 2.4rem !important; /* ZMENŠENO z 2.5rem */
  }
  
  .hero-title-line {
    margin-bottom: 0.3rem !important;
    white-space: normal !important; /* DŮLEŽITÉ - vždy normal pro lepší zalomení */
  }
  
  .process-title,
  .persona-title,
  .subscription-title,
  .pricing-title,
  .scarcity-title,
  .proof-title,
  .final-cta-title,
  .section-title {
    font-size: 2rem !important; /* ZMENŠENO z 2.2rem */
    margin-bottom: 1.5rem !important;
  }
  
  .subscription-comparison {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  .subscription-card {
    padding: 1.5rem;
  }
  
  .feature-item {
    margin-bottom: 0.3rem;
  }
  
  .contact-modal {
    bottom: calc(var(--footer-height) + 15px) !important;
  }
}

/* Oprava rozložení na mobilech */
@media (max-width: 768px) {
  .section {
    padding: var(--section-spacing-mobile) 0 !important;
  }
  
  .subscription-comparison {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .subscription-card.premium {
    transform: none;
  }
  
  /* ZÁSADNÍ OPRAVA: Checkmarky na mobilech */
  .feature-icon {
    min-width: 20px;
    width: 20px;
    height: 20px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .feature-text {
    font-size: 0.95rem;
  }

  .feature-item {
    gap: 0.75rem;
    margin-bottom: 0.5rem;
  }
  
  /* Oprava velikosti nadpisů na mobilech */
  .hero-title {
    font-size: 2.8rem !important; /* ZMENŠENO z 3.2rem */
    line-height: 1.15 !important;
    padding: 0 1rem !important;
    width: 100% !important; /* Na mobilech využít celou šířku */
  }
  
  .hero-title.long-title {
    font-size: 2.4rem !important; /* ZMENŠENO z 2.8rem */
    line-height: 1.3 !important;
    letter-spacing: -0.01em !important;
    word-spacing: 0.08em !important;
  }
  
  .hero-title-line {
    white-space: normal !important; /* KRITICKY DŮLEŽITÉ - vždy normal pro lepší zalomení */
    letter-spacing: -0.01em !important;
    word-spacing: 0.08em !important;
    line-height: 1.2 !important;
  }
  
  .process-title,
  .persona-title,
  .subscription-title,
  .pricing-title,
  .scarcity-title,
  .proof-title,
  .final-cta-title,
  .section-title {
    font-size: 2rem !important; /* ZMENŠENO z 2.2rem */
    line-height: 1.3 !important;
    padding: 0 1rem !important;
    letter-spacing: -0.01em !important;
    word-spacing: 0.08em !important;
  }
  
  /* ZÁSADNÍ OPRAVA: Spots container na mobilech */
  .spots-container {
    max-width: 280px;
    margin: 0 auto 1rem;
  }
  
  .spot {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.2rem !important; /* ZMENŠENO z 2.5rem */
    line-height: 1.3 !important;
    padding: 0 0.5rem !important;
    letter-spacing: -0.01em !important;
    word-spacing: 0.08em !important;
  }
  
  .hero-title.long-title {
    font-size: 2rem !important; /* ZMENŠENO z 2.2rem */
    line-height: 1.3 !important;
    letter-spacing: -0.01em !important;
    word-spacing: 0.08em !important;
  }
  
  .hero-title-line {
    margin-bottom: 0.4rem !important;
    white-space: normal !important; /* KRITICKY DŮLEŽITÉ - vždy normal pro lepší zalomení */
    line-height: 1.2 !important;
  }
  
  .process-title,
  .persona-title,
  .subscription-title,
  .pricing-title,
  .scarcity-title,
  .proof-title,
  .final-cta-title,
  .section-title {
    font-size: 1.7rem !important; /* ZMENŠENO z 1.8rem */
    line-height: 1.3 !important;
    padding: 0 0.5rem !important;
    letter-spacing: -0.01em !important;
    word-spacing: 0.08em !important;
  }
  
  /* ZÁSADNÍ OPRAVA: Mobilní subscription karty a feature items */
  .card-title {
    font-size: 1.3rem;
  }
  
  .card-subtitle {
    font-size: 0.9rem;
  }
  
  .card-icon {
    font-size: 1.3rem;
  }
  
  .feature-item {
    margin-bottom: 0.75rem;
    gap: 0.5rem;
  }
  
  .feature-icon {
    min-width: 18px;
    width: 18px;
    height: 18px;
    font-size: 1rem;
    margin-top: 0.2rem;
  }
  
  .feature-text {
    font-size: 0.9rem;
    line-height: 1.4;
    letter-spacing: -0.01em;
    word-spacing: 0.05em;
  }
  
  /* ZÁSADNÍ OPRAVA: Spots container na malých mobilech */
  .spots-container {
    max-width: 240px;
    gap: 0.4rem;
  }
  
  .spot {
    width: 22px;
    height: 22px;
  }
  
  .scarcity-highlight {
    padding: 1.5rem 1rem;
  }
  
  /* Oprava modálu na malých mobilech */
  .contact-modal {
    bottom: calc(var(--footer-height) + 15px) !important;
    padding: 1.25rem !important;
  }
  
  .contact-modal__title {
    font-size: 1.1rem !important;
  }
  
  .contact-modal__value {
    font-size: 1rem !important;
  }
}

/* Vlastní scrollbar - vylepšení */
::-webkit-scrollbar {
  width: 10px;
  background: rgba(255, 60, 42, 0.03);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-hover);
}

/* KRITICKÁ OPRAVA VŠECH NADPISŮ - OPRAVENO PRO VŽDY */
h1.hero-title, 
h2.process-title, 
h2.persona-title, 
h2.subscription-title, 
h2.pricing-title, 
h2.scarcity-title, 
h2.proof-title, 
h2.final-cta-title,
h2.section-title {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  color: var(--primary) !important;
  font-family: 'Inter', 'Poppins', sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: -0.01em !important;
  word-spacing: 0.08em !important;
  text-transform: uppercase !important;
  max-width: 90% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 2.5rem !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  text-shadow: none !important;
}

/* NOVÉ: Zajistit správné zalomení všech hero-title-line */
.hero-title-line {
  white-space: normal !important; /* KRITICKÁ OPRAVA - všechny řádky musí mít normal, ne nowrap */
  width: 100% !important;
  display: block !important;
  max-width: 100% !important;
  overflow-wrap: break-word !important;
  word-wrap: break-word !important;
}

/* Speciální úprava pro desktopové zobrazení dlouhých nadpisů */
@media (min-width: 992px) {
  .hero-title.long-title {
    font-size: 3rem !important; /* ZMENŠENO z 3.3rem */
    width: 85% !important;
    letter-spacing: -0.01em !important;
    word-spacing: 0.08em !important;
  }
  
  .hero-title.long-title .hero-title-line {
    font-size: 0.95em !important;
    margin-bottom: 0.4rem !important;
    line-height: 1.3 !important;
    letter-spacing: -0.01em !important;
    word-spacing: 0.1em !important;
    white-space: normal !important; /* KRITICKÁ OPRAVA - vždy normal */
  }
}