/* ============================================
   DRUHÝ MOZEK — LANDING PAGE STYLES
   ============================================ */

/* ─── RESET & BASE ─────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a2e;
  background: #f8f9fa;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── HEADER ───────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo-cube {
  display: inline-block;
  background: #e8461e;
  color: #e8461e;
  width: 0.7em;
  height: 0.7em;
  line-height: 0.7em;
  text-align: center;
  border-radius: 3px;
  margin: 0 1px;
  vertical-align: middle;
  position: relative;
  top: -1px;
  font-size: 0.8em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.main-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-icon {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 4px;
  opacity: 0.9;
}

.nav-separator {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 4px;
}

.nav-home {
  font-size: 1.1rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── HERO ─────────────────────────────── */
.hero {
  background: #fff;
  padding: 64px 0 72px;
  text-align: center;
}

.hero-heading {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: #0a0a0a;
  max-width: 720px;
  margin: 0 auto 20px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: #555;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.video-wrap {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.04),
    0 20px 60px rgba(0, 0, 0, 0.12);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  overflow: hidden;
  background: #1a1a2e;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── PRICING ──────────────────────────── */
.pricing {
  padding: 72px 0 80px;
  background: #f0f1f3;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
}

/* Card base */
.card {
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card-body {
  padding: 36px 32px 24px;
  flex: 1;
}

.card-footer {
  padding: 0 32px 32px;
}

/* Card light (template only) */
.card--light {
  background: #fff;
  border: 1px solid #e2e4e9;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.card--light:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.card--light .card-title {
  color: #0a0a0a;
  font-size: 1.4rem;
  font-weight: 800;
}

.card--light .card-subtitle {
  color: #666;
  font-size: 0.9rem;
  margin-top: 8px;
  line-height: 1.5;
}

.card--light .card-price {
  font-size: 2.4rem;
  font-weight: 900;
  color: #0a0a0a;
  margin: 24px 0 20px;
}

/* Card blue (bundle) */
.card--blue {
  background: linear-gradient(145deg, #1a3a8f, #1e47a8);
  color: #fff;
  box-shadow: 0 4px 24px rgba(26, 58, 143, 0.3);
}

.card--blue:hover {
  box-shadow: 0 12px 40px rgba(26, 58, 143, 0.4);
}

.card-badge {
  display: inline-block;
  position: absolute;
  top: -1px;
  right: 28px;
  background: #f5c518;
  color: #0a0a0a;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 6px 16px 8px;
  border-radius: 0 0 8px 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card--blue .card-title {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.3;
}

.card--blue .card-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin-top: 8px;
  line-height: 1.5;
}

.card--blue .card-price {
  margin: 24px 0 20px;
}

.price-current {
  font-size: 2.4rem;
  font-weight: 900;
}

.price-original {
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: line-through;
  opacity: 0.6;
  margin-left: 12px;
}

/* Features list */
.card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

.feature-icon {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.45;
}

.feature-highlight {
  font-weight: 600;
}

.card--light .feature-bold {
  font-weight: 700;
}

.card--blue .feature-bold {
  font-weight: 700;
}

/* CTA Buttons */
.btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 24px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--dark {
  background: #0a0a0a;
  color: #fff;
  border: 2px solid #0a0a0a;
}

.btn--dark:hover {
  background: #222;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn--yellow {
  background: #f5c518;
  color: #0a0a0a;
  border: 2px solid #f5c518;
}

.btn--yellow:hover {
  background: #ffd633;
  border-color: #ffd633;
  box-shadow: 0 6px 20px rgba(245, 197, 24, 0.4);
}

/* ─── FOOTER ───────────────────────────── */
.site-footer {
  background: #fff;
  border-top: 1px solid #e2e4e9;
  padding-top: 56px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.footer-col {
  text-align: center;
  min-width: 180px;
  max-width: 220px;
}

.footer-col h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  color: #555;
  font-size: 0.88rem;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #e8461e;
}

.footer-col p,
.footer-col .text-line {
  color: #555;
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 5px 0;
  color: #555;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-contact:hover {
  color: #e8461e;
}

.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  flex-shrink: 0;
  color: #e8461e;
  margin-right: 8px;
}

.footer-contact-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: #e8461e;
}

.footer-bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid #e2e4e9;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: #888;
}

/* ─── RESPONSIVE ───────────────────────── */
@media (max-width: 768px) {

  /* Header */
  .hamburger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #0a0a0a;
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: 8px;
  }

  .nav-separator {
    width: 100%;
    height: 1px;
    margin: 8px 0;
  }

  /* Hero */
  .hero {
    padding: 40px 0 48px;
  }

  .hero-heading {
    padding: 0 8px;
  }

  .hero-sub {
    padding: 0 8px;
    margin-bottom: 28px;
  }

  .video-wrap {
    border-radius: 12px;
    margin: 0 4px;
  }

  /* Pricing */
  .pricing {
    padding: 48px 0 56px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .card-body {
    padding: 28px 24px 20px;
  }

  .card-footer {
    padding: 0 24px 24px;
  }

  /* Footer */
  .footer-col {
    max-width: 160px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0 16px;
  }

  .container {
    padding: 0 16px;
  }

  .logo {
    font-size: 1.3rem;
  }

  .hero-heading {
    font-size: 1.6rem;
  }

  .card--light .card-price,
  .price-current {
    font-size: 2rem;
  }

  .footer-col {
    max-width: 100%;
    width: 100%;
  }
}

/* ============================================
   THANK YOU PAGE STYLES
   ============================================ */

/* ─── TY HERO ──────────────────────────── */
.ty-hero {
  background: linear-gradient(135deg, #1a3a8f 0%, #2657d4 50%, #4a7aff 100%);
  padding: 64px 0 56px;
  text-align: center;
  color: #fff;
}

.ty-hero-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.ty-hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ─── TY SECTIONS ──────────────────────── */
.ty-section {
  padding: 56px 0;
}

.ty-section--alt {
  background: #f0f1f3;
}

.ty-section-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 12px;
  text-align: center;
}

.ty-section-desc {
  color: #555;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* ─── TY CARDS ─────────────────────────── */
.ty-card {
  background: #fff;
  border: 1px solid #e2e4e9;
  border-radius: 16px;
  padding: 40px 36px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.ty-card--accent {
  border-left: 5px solid #2657d4;
}

.ty-card--green {
  border-left: 5px solid #25d366;
}

.ty-card-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 12px;
}

.ty-card-desc {
  color: #555;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* CTA button for downloads / actions */
.btn--cta {
  display: inline-block;
  width: auto;
  background: linear-gradient(135deg, #1a3a8f, #2657d4);
  color: #fff;
  padding: 16px 40px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
}

.btn--cta:hover {
  background: linear-gradient(135deg, #15307a, #1e47a8);
  box-shadow: 0 6px 24px rgba(38, 87, 212, 0.35);
}

.btn--whatsapp {
  display: inline-block;
  width: auto;
  background: #25d366;
  color: #fff;
  padding: 16px 40px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
}

.btn--whatsapp:hover {
  background: #1fb855;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
}

/* ─── TY STEPS (numbered list) ─────────── */
.ty-steps {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #e2e4e9;
}

.ty-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 8px 0;
}

.ty-step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #2657d4;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.ty-step-text {
  color: #444;
  font-size: 0.92rem;
  line-height: 1.5;
  padding-top: 3px;
}

/* ─── TY WEBINAR INFO ──────────────────── */
.ty-webinar-info {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.ty-webinar-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a3a8f;
}

.ty-webinar-detail-icon {
  font-size: 1.3rem;
}

.ty-note {
  background: #f0f4ff;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.88rem;
  color: #444;
  line-height: 1.5;
  border-left: 3px solid #2657d4;
}

/* ─── TY EMBED BLOCKS ─────────────────── */
.ty-embed-block {
  margin-bottom: 40px;
}

.ty-embed-block:last-child {
  margin-bottom: 0;
}

.ty-embed-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 16px;
  text-align: center;
}

.ty-canva-wrap {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.ty-canva-wrap iframe {
  width: 100%;
  height: 480px;
  border: none;
}

/* ─── TY WHATSAPP ROW ──────────────────── */
.ty-whatsapp-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.ty-qr {
  flex-shrink: 0;
}

.ty-qr img {
  width: 150px;
  height: 150px;
  border-radius: 8px;
  border: 1px solid #e2e4e9;
}

.ty-qr-placeholder {
  width: 150px;
  height: 150px;
  background: #f0f1f3;
  border: 2px dashed #ccc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #888;
  text-align: center;
  padding: 8px;
}

/* ─── TY RESPONSIVE ────────────────────── */
@media (max-width: 768px) {
  .ty-hero {
    padding: 40px 0 36px;
  }

  .ty-section {
    padding: 40px 0;
  }

  .ty-card {
    padding: 28px 24px;
  }

  .ty-whatsapp-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .ty-canva-wrap iframe {
    height: 320px;
  }

  .ty-webinar-info {
    flex-direction: column;
    gap: 12px;
  }

  .btn--cta,
  .btn--whatsapp {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .ty-hero-heading {
    font-size: 1.7rem;
  }

  .ty-section-title {
    font-size: 1.3rem;
  }

  .ty-canva-wrap iframe {
    height: 240px;
  }
}