/* Shared LP Core */

:root {
  --lp-focus: #ffb800;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--lp-focus);
  outline-offset: 2px;
}

.faq-item__q {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
}

.offer-snapshot {
  margin: 0 auto;
  max-width: 760px;
  background: #fff;
  border: 1px solid #e2e4ed;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.08);
  padding: 1rem;
}

.offer-snapshot__list {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-snapshot__item {
  background: #f6f7fb;
  border-radius: 10px;
  padding: 0.75rem;
}

.offer-snapshot__label {
  display: block;
  font-size: 0.75rem;
  color: #555770;
  margin-bottom: 0.2rem;
}

.offer-snapshot__value {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.4;
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  padding: 0.55rem 0.75rem calc(0.55rem + env(safe-area-inset-bottom));
  background: rgba(10, 22, 40, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.sticky-cta__btn {
  display: block;
  width: 100%;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  font-weight: 900;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(135deg, #ff6b2b 0%, #e85d1f 100%);
  padding: 0.75rem 1rem;
  box-shadow: 0 6px 24px rgba(255, 107, 43, 0.35);
}

.curriculum-more {
  margin-top: 0.75rem;
}

.curriculum-more > summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  text-align: center;
  color: #1a1a2e;
  background: #f6f7fb;
  border: 1px solid #e2e4ed;
  border-radius: 999px;
  padding: 0.7rem 1rem;
}

.curriculum-more > summary::-webkit-details-marker {
  display: none;
}

@media (min-width: 768px) {
  .sticky-cta {
    display: none;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .offer-snapshot__list {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
