/* Shared fullPage section chrome — licensed commercial builds */
html.fp-enabled, html.fp-enabled body { margin: 0; }
#fp-nav ul li a span, .fp-slidesNav ul li a span { background: #fff !important; }
#fp-nav ul li a.active span, .fp-slidesNav ul li a.active span { background: #6ee7b7 !important; }
.fp-section, .section {
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.fp-section .inner, .section .inner {
  width: min(560px, 92vw);
  margin: 0 auto;
  padding: 28px 8px 48px;
  max-height: 92vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.fp-section h1, .section h1 {
  font-size: clamp(1.85rem, 5.5vw, 2.65rem);
  line-height: 1.08;
  margin: 0 0 12px;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.fp-section .lead, .section .lead {
  opacity: 0.85;
  font-size: 1.05rem;
  margin: 0 0 20px;
  line-height: 1.55;
}
.fp-section .badge, .section .badge {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 14px;
  opacity: 0.9;
}
.fp-section .card, .section .card {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 16px 18px;
  margin: 0 0 12px;
  background: rgba(0,0,0,0.22);
}
.fp-section .price, .section .price {
  font-size: 2rem;
  font-weight: 800;
  margin: 6px 0 10px;
}
.fp-section ul, .section ul {
  margin: 0 0 14px;
  padding-left: 1.15rem;
  opacity: 0.88;
}
.fp-section li, .section li { margin: 5px 0; }
.fp-section a.btn, .section a.btn {
  display: block;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  border-radius: 12px;
  padding: 14px 16px;
  margin: 8px 0;
  border: 1px solid rgba(255,255,255,0.15);
  color: inherit;
}
.fp-section a.btn.main, .section a.btn.main { border: none; }
.fp-section .split, .section .split {
  display: grid;
  gap: 8px;
}
@media (min-width: 420px) {
  .fp-section .split.two, .section .split.two { grid-template-columns: 1fr 1fr; }
}
/* normal scroll under tablet width — less janky on phone */
@media (max-width: 768px) {
  .fp-section .inner, .section .inner { max-height: none; }
}
