/**
 * JERGONLAB - Vylepšené styly pro web.php
 */

/* Hlavní sekce */
.section {
  padding: 9rem 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.section:last-child {
  margin-bottom: calc(var(--footer-height) + 0.5rem); /* Zmenšeno z 1rem */
  padding-bottom: 4rem; /* Přidáno pro zmenšení mezery */
}

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* Hero sekce */
.hero-section {
  padding: 9rem 0 7rem;
  text-align: center;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 60, 42, 0.07), transparent 70%);
  z-index: 1;
  opacity: 0.5;
}

.light-mode .hero-section::before {
  background: radial-gradient(circle at center, rgba(255, 60, 42, 0.05), transparent 70%);
}

/* OPRAVA HERO NADPISU - lepší čitelnost pro dlouhé nadpisy */
.hero-title {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 3.5rem; /* Trochu zmenšeno pro lepší čitelnost */
  line-height: 1.15;
  margin-bottom: 2.5rem;
  color: var(--primary);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  text-shadow: none;
  position: relative;
  z-index: 2;
  letter-spacing: -0.02em;
  max-width: 90%; /* Omezení šířky pro lepší čitelnost */
  margin-left: auto;
  margin-right: auto;
}

.hero-title br {
  display: block;
  margin: 0.4rem 0;
}

.hero-text {
  font-size: 1.3rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: var(--light-2);
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}

.light-mode .hero-text {
  color: var(--text-light);
}

.hero-cta {
  margin-top: 2.5rem;
  position: relative;
  z-index: 2;
}

/* Proces sekce */
.process-section {
  position: relative;
  padding: 9rem 0;
}

.process-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary);
  position: relative;
  z-index: 2;
  letter-spacing: -0.02em;
  max-width: 85%; /* Omezení šířky pro lepší čitelnost */
  margin-left: auto;
  margin-right: auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.process-step {
  font-size: 1.1rem;
  padding: 2.5rem;
  position: relative;
  color: var(--light-2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.light-mode .process-step {
  color: var(--text-light);
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.step-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 60, 42, 0.2);
}

.process-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* Persony sekce */
.persona-section {
  text-align: center;
  position: relative;
  padding: 9rem 0;
}

.persona-title {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
  color: var(--primary);
  position: relative;
  z-index: 2;
  letter-spacing: -0.02em;
  max-width: 85%; /* Omezení šířky pro lepší čitelnost */
  margin-left: auto;
  margin-right: auto;
}

.persona-text {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  color: var(--light-2);
  position: relative;
  z-index: 2;
}

.light-mode .persona-text {
  color: var(--text-light);
}

.persona-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.persona-button {
  padding: 0.85rem 1.2rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--light);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.light-mode .persona-button {
  background-color: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-light);
}

.persona-button::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
  z-index: 1;
  pointer-events: none;
}

.persona-button:hover::after {
  transform: rotate(30deg) translate(50%, 50%);
  opacity: 1;
}

/* OPRAVA: Barva textu tlačítka při hoveru */
.persona-button:hover, 
.persona-button.active {
  background-color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(255, 60, 42, 0.3);
  color: white !important; /* Pevně nastavená barva textu */
}

/* Subscription model sekce - OPRAVENO */
.subscription-section {
  position: relative;
  padding: 9rem 0;
}

.subscription-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
  color: var(--primary);
  position: relative;
  z-index: 2;
  letter-spacing: -0.02em;
  max-width: 85%; /* Omezení šířky pro lepší čitelnost */
  margin-left: auto;
  margin-right: auto;
}

.subscription-text {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  color: var(--light-2);
  position: relative;
  z-index: 2;
}

.light-mode .subscription-text {
  color: var(--text-light);
}

/* OPRAVA: Subscription karty */
.subscription-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto 3.5rem;
  position: relative;
  z-index: 2;
}

.subscription-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.light-mode .subscription-card {
  background: rgba(0, 0, 0, 0.02);
  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);
  transform: translateY(-5px); /* Zmenšeno z -10px pro lepší responzivitu */
  box-shadow: 0 15px 40px rgba(255, 60, 42, 0.2);
}

.subscription-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(255, 60, 42, 0.25);
}

.subscription-cta {
  text-align: center;
  margin-top: 3.5rem;
  position: relative;
  z-index: 2;
}

/* OPRAVA: Checkmarky a feature itemy */
.card-features {
  flex: 1;
  margin-bottom: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 0.75rem;
}

.feature-icon {
  font-size: 1.25rem;
  min-width: 24px;
  text-align: center;
  flex-shrink: 0;
  display: inline-block;
  margin-top: 0.1rem;
}

.traditional .feature-icon {
  color: #777;
}

.premium .feature-icon {
  color: var(--primary);
}

.feature-text {
  font-size: 1rem;
  line-height: 1.4;
  flex: 1;
  text-align: left;
}

/* Ceník sekce */
.pricing-section {
  position: relative;
  padding: 9rem 0;
}

.pricing-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary);
  position: relative;
  z-index: 2;
  letter-spacing: -0.02em;
  max-width: 85%; /* Omezení šířky pro lepší čitelnost */
  margin-left: auto;
  margin-right: auto;
}

.pricing-list {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.pricing-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  color: var(--light-2);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.8rem;
  border-radius: 16px;
  border-left: 4px solid var(--primary);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.light-mode .pricing-item {
  background: rgba(0, 0, 0, 0.02);
  color: var(--text-light);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.pricing-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.light-mode .pricing-item:hover {
  background: rgba(0, 0, 0, 0.03);
}

.pricing-item.featured {
  background: linear-gradient(135deg, rgba(255, 60, 42, 0.1), rgba(255, 106, 0, 0.1));
  border-left: 4px solid var(--accent);
  box-shadow: 0 10px 30px rgba(255, 60, 42, 0.2);
}

.light-mode .pricing-item.featured {
  background: linear-gradient(135deg, rgba(255, 60, 42, 0.05), rgba(255, 106, 0, 0.05));
}

.checkmark {
  margin-right: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(255, 60, 42, 0.15);
  border-radius: 50%;
  z-index: 2;
  transition: transform 0.3s ease, background 0.3s ease;
}

.pricing-item:hover .checkmark {
  transform: scale(1.2);
  background: rgba(255, 60, 42, 0.25);
}

.checkmark svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
  transition: transform 0.3s ease;
}

.pricing-item:hover .checkmark svg {
  transform: scale(1.1);
}

.pricing-content {
  flex: 1;
  z-index: 2;
}

.pricing-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.pricing-cta {
  text-align: center;
  margin-top: 3.5rem;
  position: relative;
  z-index: 2;
}

/* Scarcity sekce */
.scarcity-section {
  text-align: center;
  position: relative;
  padding: 9rem 0;
}

.scarcity-title {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
  color: var(--primary);
  position: relative;
  z-index: 2;
  letter-spacing: -0.02em;
  max-width: 85%; /* Omezení šířky pro lepší čitelnost */
  margin-left: auto;
  margin-right: auto;
}

.scarcity-text {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--light-2);
  position: relative;
  z-index: 2;
}

.light-mode .scarcity-text {
  color: var(--text-light);
}

.scarcity-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.scarcity-highlight {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin: 2.5rem 0;
  display: inline-block;
  padding: 2.5rem;
  background: rgba(255, 60, 42, 0.1);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(255, 60, 42, 0.2);
  position: relative;
  z-index: 2;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.scarcity-highlight:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 60, 42, 0.3);
}

.light-mode .scarcity-highlight {
  background: rgba(255, 60, 42, 0.08);
  box-shadow: 0 10px 30px rgba(255, 60, 42, 0.15);
}

.spots-container {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.spots-taken, .spots-available {
  display: flex;
  gap: 0.5rem;
}

.spot {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.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 15px rgba(255, 60, 42, 0.5);
}

.scarcity-cta {
  margin-top: 2.5rem;
  position: relative;
  z-index: 2;
}

/* Proof sekce */
.proof-section {
  text-align: center;
  position: relative;
  padding: 9rem 0;
}

.proof-title {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
  color: var(--primary);
  position: relative;
  z-index: 2;
  letter-spacing: -0.02em;
  max-width: 85%; /* Omezení šířky pro lepší čitelnost */
  margin-left: auto;
  margin-right: auto;
}

.proof-text {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: var(--light-2);
  position: relative;
  z-index: 2;
}

.light-mode .proof-text {
  color: var(--text-light);
}

.proof-form {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.light-mode .proof-form {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.proof-form:hover {
  box-shadow: 0 20px 50px rgba(255, 60, 42, 0.2);
  border-color: rgba(255, 60, 42, 0.1);
  transform: translateY(-10px);
}

.form-header {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
}

.form-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.form-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.form-icon svg {
  width: 22px;
  height: 22px;
  stroke: white;
}

form {
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 2rem;
}

.input-group {
  display: flex;
  gap: 1.5rem;
}

.input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--light-2);
  text-align: left;
}

.light-mode label {
  color: var(--text-light);
}

input[type="text"], 
input[type="email"] {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--light);
  font-family: inherit;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.light-mode input[type="text"], 
.light-mode input[type="email"] {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.02);
  color: var(--text-light);
}

input[type="text"]:focus, 
input[type="email"]:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 60, 42, 0.3);
}

.form-submit {
  margin-top: 2rem;
}

/* Zpětná vazba z formuláře */
.form-feedback {
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.form-feedback.success {
  background-color: rgba(0, 200, 0, 0.1);
  border: 1px solid rgba(0, 200, 0, 0.3);
  animation: fadeIn 0.5s ease-out forwards;
}

.form-feedback.error {
  background-color: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  animation: fadeIn 0.5s ease-out forwards;
}

.light-mode .form-feedback.success {
  background-color: rgba(0, 180, 0, 0.05);
  border: 1px solid rgba(0, 180, 0, 0.2);
}

.light-mode .form-feedback.error {
  background-color: rgba(180, 0, 0, 0.05);
  border: 1px solid rgba(180, 0, 0, 0.2);
}

.feedback-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  height: 45px;
  border-radius: 50%;
}

.form-feedback.success .feedback-icon {
  background: rgba(0, 200, 0, 0.2);
  color: #00c800;
}

.form-feedback.error .feedback-icon {
  background: rgba(255, 0, 0, 0.2);
  color: #ff0000;
}

.feedback-content h4 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  text-align: left;
}

.form-feedback.success .feedback-content h4 {
  color: #00c800;
}

.form-feedback.error .feedback-content h4 {
  color: #ff0000;
}

.feedback-content p {
  margin: 0;
  font-size: 1rem;
  text-align: left;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Final CTA sekce */
.final-cta-section {
  text-align: center;
  position: relative;
  padding: 9rem 0 6rem; /* Zmenšeno spodní odsazení pro mezeru nad patičkou */
}

.final-cta-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
  color: var(--primary);
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  letter-spacing: -0.02em;
  max-width: 85%; /* Omezení šířky pro lepší čitelnost */
  margin-left: auto;
  margin-right: auto;
}

.final-cta-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.final-cta-text-container {
  flex: 2;
}

.final-cta-text {
  font-size: 1.2rem;
  color: var(--light-2);
  text-align: left;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.light-mode .final-cta-text {
  color: var(--text-light);
}

.final-cta-button-container {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* OPRAVA: Barva textu tlačítka při hoveru */
.final-cta-btn {
  font-size: 1.2rem;
  padding: 1.25rem 2rem;
  box-shadow: 0 12px 30px rgba(255, 60, 42, 0.4);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  text-transform: uppercase;
  font-weight: 800;
  min-width: 250px;
  color: white !important; /* Pevně nastavená barva textu */
}

.final-cta-btn:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 60, 42, 0.5);
  color: white !important; /* Pevně nastavená barva textu při hoveru */
}

/* Animace a efekty */
.icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  position: relative;
}

.icon-wrapper svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
  transition: transform 0.3s ease;
}

.btn:hover .icon-wrapper svg,
.persona-button:hover .icon-wrapper svg {
  transform: scale(1.2) rotate(5deg);
}

/* Zvýraznění formátu ceny */
.price-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  transition: color 0.3s ease, transform 0.3s ease;
}

.pricing-item:hover .price-value {
  transform: scale(1.1);
  color: var(--primary-hover);
}

/* SPECIÁLNÍ ÚPRAVA pro lepší scrollování do hero sekce při kliknutí na personu */
#hero {
  scroll-margin-top: 80px;
}

/* OPRAVA: mobilní responzivita */
@media (max-width: 992px) {
  #hero {
    scroll-margin-top: 100px;
  }
  
  .section {
    padding: 7rem 0;
  }
  
  .hero-section {
    padding: 7rem 0 5rem;
  }
  
  .final-cta-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .final-cta-text {
    text-align: center;
  }
  
  .subscription-comparison {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .subscription-card.premium {
    transform: translateY(0);
  }
  
  .process-steps {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .section-title,
  .process-title,
  .persona-title,
  .subscription-title,
  .pricing-title,
  .scarcity-title,
  .proof-title {
    font-size: 2.5rem;
  }
  
  .final-cta-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 6rem 0;
  }
  
  .hero-section {
    padding: 6rem 0 4rem;
  }
  
  .hero-title {
    font-size: 2.6rem;
    line-height: 1.2;
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .hero-text {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
  
  .process-title, 
  .persona-title, 
  .pricing-title, 
  .scarcity-title, 
  .proof-title,
  .subscription-title {
    font-size: 2.2rem;
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .final-cta-title {
    font-size: 2.5rem;
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .input-group {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .pricing-item {
    flex-direction: column;
  }
  
  .checkmark {
    margin-bottom: 1rem;
    align-self: center;
  }
  
  .pricing-content {
    text-align: center;
  }
  
  .form-header h3 {
    font-size: 1.3rem;
  }
  
  form {
    padding: 1.5rem;
  }
  
  /* OPRAVA: Feature itemy na mobilech */
  .feature-item {
    align-items: flex-start;
    text-align: left;
  }
  
  .feature-icon {
    margin-top: 0.2rem;
    min-width: 20px;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 5rem 0;
  }
  
  .hero-section {
    padding: 5rem 0 3rem;
  }
  
  #hero {
    scroll-margin-top: 150px;
  }
  
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.3;
    padding: 0 0.5rem;
  }
  
  .hero-text, 
  .process-step, 
  .persona-text, 
  .scarcity-text, 
  .proof-text, 
  .final-cta-text,
  .subscription-text {
    font-size: 1.1rem;
  }
  
  .process-title, 
  .persona-title, 
  .pricing-title, 
  .scarcity-title, 
  .proof-title,
  .subscription-title {
    font-size: 1.8rem;
    line-height: 1.3;
    padding: 0 0.5rem;
  }
  
  .final-cta-title {
    font-size: 2rem;
    line-height: 1.3;
    padding: 0 0.5rem;
  }
  
  .spots-container {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .spots-taken, .spots-available {
    margin: 0 auto;
  }
  
  .final-cta-btn {
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    width: 100%;
  }
  
  .proof-form {
    padding: 0;
  }
  
  .form-header {
    padding: 1rem;
  }
  
  .form-header h3 {
    font-size: 1.1rem;
  }
  
  .form-icon {
    width: 35px;
    height: 35px;
  }
  
  form {
    padding: 1.25rem;
  }
  
  input[type="text"], 
  input[type="email"] {
    padding: 0.8rem 1rem;
    font-size: 1rem;
  }
  
  .persona-buttons {
    grid-template-columns: 1fr;
  }
  
  /* OPRAVA: Feature ikony na mobilech */
  .feature-icon {
    min-width: 18px;
    font-size: 1rem;
  }
  
  .feature-text {
    font-size: 0.9rem;
    line-height: 1.3;
  }
  
  .feature-item {
    margin-bottom: 0.75rem;
    gap: 0.5rem;
  }
}