/* =====================================================
   HERO – FINAL
===================================================== */

.hero-card {
  position: relative;
  overflow: visible;
  background: var(--cream);
  padding: 5.2rem 5rem;
  border-radius: 32px;
}

/* světelný akcent */
.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    760px 420px at 14% 12%,
    rgba(79, 111, 100, 0.12),
    transparent 72%
  );
  pointer-events: none;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* ===== LAYOUT ===== */
.hero-with-image .hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 5.5rem;
  align-items: flex-start;
}

/* ===== TEXT ===== */

.hero-badge {
  display: inline-block;
  margin-bottom: 1.9rem;
  padding: 0.45rem 1.3rem;
  background: rgba(79, 111, 100, 0.12);
  color: var(--sage);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(3rem, 5vw, 4.1rem);
  line-height: 1.07;
  color: #2f3e3a;
  margin-bottom: 1.9rem;
  max-width: 520px;
}

.hero-title em {
  font-style: italic;
  color: var(--sage);
}

.hero-alert {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.55rem 1.1rem;
  background: rgba(79, 111, 100, 0.08);
  border-radius: 14px;
  color: var(--sage);
  font-weight: 500;
  font-size: 0.95rem;
}

.hero-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 1.9rem;
}

.hero-questions {
  list-style: none;
  padding: 0;
  margin: 0 0 2.2rem 0;
}

.hero-questions li {
  margin-bottom: 0.65rem;
  color: #3a4a44;
  font-size: 0.95rem;
  padding-left: 1.1rem;
  position: relative;
  opacity: 0.9;
}

.hero-questions li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--sage);
}


/* ===== CTA ===== */

.hero-actions {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}

/* primární – klidné, matné */
.hero-actions .btn-sage {
  background: #4f6f64;
  color: #ffffff;
  border-radius: 999px;
  padding: 0.75rem 1.9rem;
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: none;
  transition: background 0.25s ease;
}

.hero-actions .btn-sage:hover {
  background: #435f55;
}

/* sekundární – editorial */
.hero-actions .btn-outline-sage {
  background: transparent;
  border: 1px solid #d6ded9;
  color: #4f6f64;
  border-radius: 999px;
  padding: 0.75rem 1.9rem;
  font-size: 0.95rem;
  font-weight: 500;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.hero-actions .btn-outline-sage:hover {
  border-color: #4f6f64;
  color: #2f3e3a;
}


/* ===== IMAGE ===== */

.hero-media {
  position: relative;
  transform: translateY(90px);
}

.hero-media img {
  width: 125%;
  max-width: none;
  display: block;
  border-radius: 36px;
  background: #0e7aa1;
  box-shadow: 0 48px 96px rgba(0, 0, 0, 0.13);

  transform: rotate(-1.8deg);
}


/* ===== QUALITY CARD ===== */

.hero-quality {
  position: absolute;
  bottom: -48px;
  right: -48px;
  background: #ffffff;
  padding: 1.2rem 1.6rem;
  border-radius: 24px;
  display: flex;
  gap: 0.9rem;
  align-items: center;
  max-width: 280px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);

  transform: rotate(1.5deg);
}

.hero-quality .icon {
  font-size: 1.6rem;
}

.hero-quality small {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: #8a9a9f;
  font-weight: 500;
}

.hero-quality strong {
  font-size: 0.95rem;
  color: #2f3e3a;
  font-weight: 600;
}

.hero-card.hero-with-image > .hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5.5rem;
  align-items: flex-start;
}

/* =====================================================
   PROČ POROZUMĚT SIGNÁLŮM
===================================================== */

.course-why {
  background: #fff;
}

.why-card {
  text-align: left;
}

.why-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  font-size: 1.4rem;
}

/* jemné barevné varianty ikon */
.why-icon.eye {
  background: #eaf3ef;
  color: var(--sage);
}

.why-icon.video {
  background: #eef4ff;
  color: #3b82f6;
}

.why-icon.heart {
  background: #f4efff;
  color: #8b5cf6;
}

.why-card h5 {
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.why-card p {
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}



/* ===============================
   PILÍŘE – ODSAZENÍ
================================ */
.course-pillars {
  margin-bottom: 5rem;
}

/* ===============================
   CÍLE KURZU – SAMOSTATNÝ BLOK
================================ */
.course-goals-wrapper {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.course-goals-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #2f3e3a;
  margin-bottom: 2rem;
}

/* seznam cílů */
.course-goals-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.course-goals-list li {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0.9rem;
  color: #2f3e3a;
}

/* ===============================
   PROČ POROZUMĚT – FIX LAYOUT
================================ */

/* sjednocení šířky celé sekce */
.course-why .container {
  max-width: 1100px;
}

/* PILÍŘE – jeden vizuální blok */
.course-why .row {
  background: #faf9f6;
  border-radius: 36px;
  padding: 3.5rem 3rem;
  margin-top: 3rem;
}

/* karty sjednotit */
.why-card {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

/* ikony vycentrovat k textu */
.why-icon {
  margin-bottom: 1rem;
}

/* nadpisy pilířů */
.why-card h5 {
  margin-bottom: 0.6rem;
}

/* ===============================
   CÍLE KURZU – VLASTNÍ KARTA
================================ */

.course-goals {
  background: #ffffff;
  border-radius: 32px;
  padding: 3rem 3.5rem;
  margin-top: 4.5rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}

.course-goals h4 {
  margin-bottom: 2rem;
}

/* cíle – lepší čitelnost */
.goal-list li {
  padding-left: 0.4rem;
}

.course-goals-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 720px;
}

.course-goals-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #2f3e3a;
}

/* zelená tečka */
.course-goals-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background-color: var(--sage);
  border-radius: 50%;
}



/* ================================
   STRUKTURA KURZU
================================ */

.course-structure {
  background: var(--cream);
}

.structure-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
}

/* LEVÁ STRANA */

.structure-title {
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.structure-title span {
  color: var(--sage);
}

.structure-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 3rem;
}

.module-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.module-card {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  background: #ffffff;
  padding: 1.4rem 1.6rem;
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.05);
}

.module-number {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--sage);
  min-width: 36px;
}

/* PRAVÁ STRANA – KRUH */

.structure-circle {
  background: var(--sage);
  border-radius: 50%;
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-content {
  text-align: center;
  color: #ffffff;
  max-width: 260px;
}

.play-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  font-size: 1.2rem;
}

.circle-content h4 {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.circle-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.circle-content li {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}


/* =====================================================
   PRICING / VARIANTY
===================================================== */

.pricing-card {
    position: relative;
    background: #ffffff;
    border-radius: 32px;
    padding: 2.8rem 2.6rem;
    height: 100%;
    box-shadow: 0 20px 45px rgba(0,0,0,0.06);
}

.pricing-card-featured {
    border: none;
}

.pricing-badge {
    position: absolute;
    top: -14px;
    right: 24px;
    background: var(--sage);
    color: #fff;
    font-size: 0.75rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-weight: 500;
    letter-spacing: 0.06em;
}

.pricing-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.pricing-subtitle {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 1.8rem;
}

.pricing-price {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.6rem;
}

.pricing-price span {
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.8rem 0;
}

.pricing-features li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.7rem;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: 600;
}

.pricing-note {
    background: var(--sage-soft);
    border-radius: 18px;
    padding: 1rem 1.2rem;
    font-size: 0.9rem;
}


/* =====================================================
   CTA TLAČÍTKA (HOME)
===================================================== */

.btn-sage {
  background: var(--sage);
  color: white;
  border-radius: 999px;
  padding: 0.8rem 2rem;
  font-weight: 500;
}

.btn-outline-sage {
  border: 1px solid var(--sage);
  color: var(--sage);
  background: transparent;
  border-radius: 999px;
  padding: 0.8rem 2rem;
}


.btn-sage:hover {
    box-shadow: 0 18px 40px rgba(79, 111, 100, 0.38);
}


.hero-actions a {
  text-decoration: none !important;
}

/* ===============================
   LEKTORKA / AUTHOR SECTION
================================ */

.lecturer-section {
  background: #5f766b;
  color: #ffffff;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.lecturer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

/* LEVÁ STRANA */

.lecturer-badge {
  display: inline-block;
  margin-bottom: 1.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #bfe0d4;
}

.lecturer-name {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 1.8rem;
}

.lecturer-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 520px;
  opacity: 0.95;
  margin-bottom: 3rem;
}

.lecturer-lead strong {
  color: #ffffff;
  font-weight: 600;
}

/* STATISTIKY */

.lecturer-stats {
  display: flex;
  gap: 3rem;
}

.stat strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
}

.stat span {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* PRAVÁ STRANA – DEKOR */

.lecturer-visual {
  position: relative;
  width: 100%;
  height: 420px;
}

.lecturer-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 60% 40%,
      rgba(255,255,255,0.12),
      transparent 60%
    );
  border-radius: 50%;
}

.lecturer-signature {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 0.95rem;
  opacity: 0.8;
}

/* doplnění vizuálu */
.lecturer-stats {
  display: flex;
  gap: 4rem;
  align-items: baseline;
}

.stat-text {
  max-width: 280px;
}

.stat-text .stat-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.4rem;
}

.stat-text .stat-value {
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.stat-text .stat-note {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
}
.stat-number {
  position: relative;
  top: 0.35rem;
}


.stat-number .stat-value {
  display: block;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.stat-number .stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}
.lecturer-stats {
  display: flex;
  gap: 4rem;
  align-items: flex-end;
}

.stat-note,
.stat-number .stat-label {
  margin-bottom: 0;
}

.stat-note,
.stat-number .stat-label {
  font-size: 0.8rem;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-top: 0.6rem;
  margin-bottom: 0;
}
.lecturer-stats {
  display: flex;
  gap: 4rem;
  align-items: flex-end;
}

.lecturer-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}
.lecturer-visual::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255,255,255,0.22) 0%,
    rgba(255,255,255,0.12) 40%,
    rgba(255,255,255,0.04) 65%,
    transparent 70%
  );
  z-index: 0;
}
.lecturer-signature {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  opacity: 0.75;
  letter-spacing: 0.02em;
}

.lecturer-photo {
  position: relative;
  z-index: 1;
  max-width: 320px;
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
}

.lecturer-photo {
  position: relative;
  z-index: 1;
  width: 280px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.lecturer-photo-wrap {
  position: relative;
  width: 280px;
  height: 280px;
  display: grid;
  place-items: center;
}

.lecturer-photo-wrap::before {
  content: "";
  position: absolute;
  inset: -40px;              
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0.12) 35%,
    rgba(255, 255, 255, 0.04) 60%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: 0;
}

.lecturer-visual::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 420px;
  border-radius: 50%;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at 50% 38%,
    rgba(255,255,255,0.22) 0%,
    rgba(255,255,255,0.12) 40%,
    rgba(255,255,255,0.04) 62%,
    transparent 72%
  );
  z-index: 0;
}



/* MOBILE */

/* =====================================================
   MOBILE – GLOBAL LAYOUT RESET
===================================================== */
@media (max-width: 900px) {

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }


  /* HERO kontejner hlídá přetečení */
  .hero-card {
    overflow: hidden;
  }

  /* obrázek zůstává velký, ale kontrolovaný */
  .hero-media {
    transform: translateY(90px);
  }

  .hero-media img {
    width: 125%;
    max-width: none;
    transform: rotate(-1.8deg);
  }

  /* certifikační karta – PŘESNĚ jak chceš */
  .hero-quality {
    position: absolute;
    bottom: 32px;
    right: 32px;
    transform: none;
  }


  .container {
    max-width: 100% !important;
    padding-left: 1.4rem !important;
    padding-right: 1.4rem !important;
  }

  /* =====================================================
     HERO
  ===================================================== */

  .hero-card {
    padding: 2.4rem 1.4rem;
    border-radius: 0;
  }

  .hero-card::after {
    display: none;
  }

  .hero-with-image .hero-inner {
    display: block;
    max-width: 100%;
  }

  .hero-media,
  .hero-quality {
    display: none !important;
  }

  .hero-title {
    font-size: 2.1rem;
    line-height: 1.15;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.9rem;
  }

  .hero-actions a {
    width: 100%;
    text-align: center;
  }

  /* =====================================================
     PROČ POROZUMĚT SIGNÁLŮM
  ===================================================== */

  .course-why .row {
    padding: 2rem 1.6rem;
    border-radius: 24px;
  }

  .why-card {
    text-align: center;
  }

  .why-icon {
    margin-left: auto;
    margin-right: auto;
  }

  /* =====================================================
     CÍLE KURZU
  ===================================================== */

  .course-goals {
    padding: 2.2rem 1.6rem;
    border-radius: 24px;
    margin-top: 3rem;
  }

  .course-goals-list li {
    font-size: 1rem;
  }

  /* =====================================================
     STRUKTURA KURZU
  ===================================================== */

  .structure-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .structure-title {
    font-size: 2.2rem;
  }

  .structure-circle {
    width: 280px;
    height: 280px;
    margin: 0 auto;
  }

  /* =====================================================
     PRICING
  ===================================================== */

  .pricing-card {
    padding: 2rem 1.6rem;
    border-radius: 24px;
  }

  .pricing-price {
    font-size: 2rem;
  }

  /* =====================================================
     LEKTORKA
  ===================================================== */

  .lecturer-section {
    padding: 4rem 0;
  }

  .lecturer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .lecturer-name {
    font-size: 2.4rem;
  }

  .lecturer-stats {
    justify-content: center;
    gap: 2rem;
  }

  .lecturer-photo-wrap {
    margin: 0 auto;
  }

}
/* ===============================
   HERO – MOBILE (FINAL, CLEAN)
================================ */

.hero-mobile {
  display: none;
}

@media (max-width: 900px) {

  .hero-desktop {
    display: none;
  }

  .hero-mobile {
    display: block;
    background: var(--cream);
    padding: 3.2rem 1.6rem 3.6rem;
  }

  .hero-mobile-inner {
    max-width: 420px;
    margin: 0 auto;
    text-align: left;
  }

  .hero-mobile .hero-badge {
    display: inline-block;
    margin-bottom: 1.4rem;
    padding: 0.45rem 1.2rem;
    border-radius: 999px;
    background: rgba(79,111,100,0.12);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .hero-mobile .hero-title {
    font-size: 2.2rem;
    line-height: 1.15;
    margin-bottom: 1.4rem;
    max-width: none;
  }

  .hero-mobile .hero-alert {
    margin-bottom: 1.6rem;
    font-size: 0.95rem;
    background: rgba(79,111,100,0.08);
    padding: 0.9rem 1.1rem;
    border-radius: 18px;
  }

  .hero-mobile .hero-actions {
    margin-top: 1.8rem;
  }

  .hero-mobile .btn-sage {
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 1rem;
  }
}
/* =====================================================
   DESKTOP HERO – LOCK (NO MOBILE INTERFERENCE)
===================================================== */

@media (min-width: 901px) {

  /* desktop nesmí dědit mobile omezení */
  html, body {
    overflow-x: visible;
  }

  section {
    overflow: visible;
  }

  /* hero má být stabilní a ne „tekutý“ */
  .hero-card {
    overflow: visible;
  }

  .hero-media {
    transform: translateY(90px);
  }

  .hero-media img {
    width: 125%;
    max-width: none;
  }

}


/* =================================
   HERO QUALITY – TYPO FIX (FINAL)
================================= */

.hero-quality {
  display: flex;
  flex-direction: column;
}

.hero-quality small {
  font-size: 0.65rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: #8a9a9f !important;
  font-weight: 500 !important;
  margin-bottom: 0.3rem !important;
}

.hero-quality strong {
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: #2f3e3a !important;
  line-height: 1.25 !important;
}

/* =================================
   GLOBAL FIX – NO HORIZONTAL SCROLL
================================= */

html,
body {
  width: 100%;
  overflow-x: hidden;
}

/* ===============================
   PRICING – HIGHLIGHT FRAME
================================ */
.pricing-card {
  background: #F1F4F2;
  color: #2f3e3a;

  border-radius: 32px;
  padding: 2.8rem 2.6rem;
  height: 100%;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}


.bg-hero #variants {
  background: #93AB9F;
}
