/* ══ Landing page – Baldachýn pre deti (Honza-style) ══ */

:root {
  --lp-cream: #faf8f5;
  --lp-cream-deep: #f3efe8;
  --lp-purple: #6d28d9;
  --lp-purple-soft: rgba(109, 40, 217, 0.08);
  --lp-purple-border: rgba(109, 40, 217, 0.16);
  --lp-yellow-soft: rgba(253, 230, 138, 0.35);
  --lp-yellow-border: rgba(229, 176, 0, 0.22);
  --lp-radius-lg: 16px;
  --lp-radius-md: 12px;
  --lp-shadow: 0 8px 32px rgba(28, 28, 28, 0.06);
  --lp-shadow-sm: 0 2px 12px rgba(28, 28, 28, 0.04);
}

/* Full-width landing within main content */
.lp-page {
  max-width: 920px;
}

.lp-page .sec-title {
  font-size: 2rem;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 18px;
  line-height: 1.25;
}

.lp-page .sec-lead {
  font-size: 1rem;
  line-height: 1.85;
}

/* ── Hero ── */
.lp-hero {
  background: linear-gradient(145deg, var(--lp-cream) 0%, #fff 55%, var(--lp-purple-soft) 100%);
  border-radius: var(--lp-radius-lg);
  border: 1px solid var(--border);
  padding: 56px 56px 48px;
  margin-bottom: 64px;
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--lp-shadow-sm);
}

.lp-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lp-yellow-soft) 0%, transparent 68%);
  pointer-events: none;
}

.lp-hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lp-purple-soft) 0%, transparent 70%);
  pointer-events: none;
}

.lp-hero-content {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.lp-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.35rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.lp-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 28px;
  max-width: 520px;
}

.lp-hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 4px;
}

.lp-unique-offer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px 9px 16px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(253, 230, 138, 0.55) 0%, rgba(255, 255, 255, 0.95) 42%, rgba(109, 40, 217, 0.12) 100%);
  border: 1px solid rgba(109, 40, 217, 0.28);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5b21b6;
  box-shadow: 0 4px 18px rgba(109, 40, 217, 0.1);
  position: relative;
}

.lp-unique-offer::before {
  content: '✦';
  font-size: 0.62rem;
  line-height: 1;
  color: #6d28d9;
}

.lp-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

.lp-hero-media {
  flex: 0 0 340px;
  max-width: 340px;
  position: relative;
  z-index: 1;
}

.lp-hero-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--lp-radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--lp-shadow);
}

/* ── Buttons ── */
.lp-btn-primary {
  display: inline-block;
  background: var(--lp-purple);
  color: #fff;
  padding: 14px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: background 0.18s, transform 0.12s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(109, 40, 217, 0.2);
}

.lp-btn-primary:hover {
  background: #5b21b6;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(109, 40, 217, 0.28);
}

.lp-btn-primary .lp-btn-strike {
  text-decoration: line-through;
  opacity: 0.88;
  margin: 0 0.2em;
}


.lp-btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--lp-purple);
  border: 1px solid var(--lp-purple-border);
  padding: 13px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.18s, transform 0.12s;
}

.lp-btn-secondary:hover {
  background: var(--lp-purple-soft);
  transform: translateY(-1px);
}

.lp-learn-more {
  text-align: center;
  margin: -24px 0 56px;
}


/* ── Sections ── */
.lp-section {
  margin-bottom: 64px;
  scroll-margin-top: 28px;
}

.lp-section--alt {
  background: var(--lp-cream);
  border-radius: var(--lp-radius-lg);
  border: 1px solid var(--border);
  padding: 40px 44px;
  box-shadow: var(--lp-shadow-sm);
}

/* ── Personal intro (video-style) ── */
.lp-personal {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.lp-personal-media {
  flex: 0 0 300px;
  max-width: 300px;
}

.lp-personal-media img {
  width: 100%;
  height: auto;
  border-radius: var(--lp-radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--lp-shadow-sm);
}

.lp-personal-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-purple);
  background: var(--lp-purple-soft);
  border: 1px solid var(--lp-purple-border);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.lp-personal-body {
  flex: 1;
  min-width: 260px;
}

.lp-personal-body p {
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 16px;
}

.lp-personal-body p:last-child {
  margin-bottom: 0;
}

.lp-personal-body strong {
  color: var(--text);
  font-weight: 500;
}

/* ── Benefit list ── */
.lp-benefits {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 12px;
}

.lp-benefits li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--lp-radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
  transition: box-shadow 0.18s, transform 0.15s;
}

.lp-section--alt .lp-benefits li {
  background: #fff;
}

.lp-benefits li:hover {
  box-shadow: var(--lp-shadow-sm);
  transform: translateY(-1px);
}

.lp-benefit-ico {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: var(--lp-purple-soft);
  border: 1px solid var(--lp-purple-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-purple);
  font-size: 1rem;
}

/* ── Quote / emphasis box ── */
.lp-quote {
  margin-top: 20px;
  padding: 20px 22px;
  background: var(--lp-yellow-soft);
  border: 1px solid var(--lp-yellow-border);
  border-radius: var(--lp-radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  font-style: italic;
}

/* ── Product cards grid ── */
.lp-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.lp-product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--lp-radius-md);
  padding: 22px 24px;
  transition: box-shadow 0.18s, transform 0.15s;
}

.lp-product-card:hover {
  box-shadow: var(--lp-shadow-sm);
  transform: translateY(-2px);
}

.lp-product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.lp-product-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
}

/* ── Two-column layout ── */
.lp-split {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 8px;
}

.lp-split-text {
  flex: 1;
  min-width: 260px;
}

.lp-split-media {
  flex: 0 0 300px;
  max-width: 300px;
}

.lp-split-media img {
  width: 100%;
  height: auto;
  border-radius: var(--lp-radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--lp-shadow-sm);
}

/* ── Offer badge ── */
.lp-offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lp-purple);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.lp-offer-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 16px 0 20px;
}

.lp-offer-price .old {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: var(--text-light);
  text-decoration: line-through;
  font-weight: 300;
}

.lp-offer-price .new {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--lp-purple);
}

/* ── Form section ── */
.lp-form-wrap {
  background: linear-gradient(165deg, var(--lp-cream) 0%, #fff 100%);
  border: 1px solid var(--border);
  border-radius: var(--lp-radius-lg);
  padding: 40px 44px;
  box-shadow: var(--lp-shadow);
  scroll-margin-top: 28px;
}

.lp-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
  margin-top: 24px;
}

.lp-form-grid .form-group--full {
  grid-column: 1 / -1;
}

.lp-form-grid .form-group--radio {
  grid-column: 1 / -1;
}

.lp-radio-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.lp-radio-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}

.lp-radio-label input {
  width: auto;
  accent-color: var(--lp-purple);
}

.lp-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}

.lp-checkbox-label input {
  width: auto;
  margin-top: 3px;
  accent-color: var(--lp-purple);
  flex-shrink: 0;
}

.lp-form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.lp-form-success.is-visible {
  display: block;
}

.lp-form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 12px;
}

.lp-form-success p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto;
}

.lp-form-success .success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(76, 175, 80, 0.12);
  color: #4caf50;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.lp-form-wrap.is-submitted .lp-form-inner {
  display: none;
}

/* ── FAQ ── */
.lp-faq details {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.lp-faq details:first-of-type {
  margin-top: 8px;
}

.lp-faq summary {
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
  list-style: none;
  padding-right: 32px;
  position: relative;
}

.lp-faq summary::-webkit-details-marker {
  display: none;
}

.lp-faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  color: var(--lp-purple);
  font-weight: 700;
  font-size: 1.1rem;
}

.lp-faq details[open] summary::after {
  content: '–';
}

.lp-faq .faq-a {
  margin-top: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.91rem;
  color: var(--text-muted);
  line-height: 1.85;
  font-weight: 300;
}

/* ── Final CTA ── */
.lp-final-cta {
  background: linear-gradient(135deg, var(--lp-purple-soft) 0%, var(--lp-yellow-soft) 100%);
  border: 1px solid var(--lp-purple-border);
  border-radius: var(--lp-radius-lg);
  padding: 44px 48px;
  text-align: center;
  margin-bottom: 48px;
}

.lp-final-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.3;
  border: none;
  padding: 0;
}

.lp-final-cta p {
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 12px;
}

.lp-final-cta .lp-hero-actions {
  justify-content: center;
  margin-top: 24px;
}

/* ── Urgency note ── */
.lp-urgency {
  margin-top: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  color: var(--text-light);
  font-weight: 400;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .lp-hero {
    flex-direction: column;
    padding: 40px 32px;
  }

  .lp-hero-media {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .lp-product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .lp-page .sec-title {
    font-size: 1.65rem;
  }

  .lp-hero h1 {
    font-size: 1.85rem;
  }

  .lp-section--alt,
  .lp-form-wrap {
    padding: 28px 24px;
  }

  .lp-form-grid {
    grid-template-columns: 1fr;
  }

  .lp-final-cta {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .lp-hero h1 {
    font-size: 1.65rem;
  }

  .lp-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .lp-btn-primary,
  .lp-btn-secondary {
    text-align: center;
  }
}
