/* Bootcamp LP scoped styles */
#page-bootcamp {
  --bs-secondary-rgb: 73, 80, 87;
  --cta-hot: #ff7f50;
  --ink: #0f1214;
  --sand: #efeae2;
  color: var(--ink);
  line-height: 1.6;
  scroll-behavior: smooth;
}

.text-on-light {
  color: var(--ink) !important;
}

.text-high {
  color: var(--ink) !important;
}

.btn-cta-hot {
  background: var(--cta-hot);
  color: var(--ink);
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta-hot:hover,
.btn-cta-hot:focus {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(255, 127, 80, 0.25);
  color: var(--ink);
}

.tracking-wide {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn-cta-hot:focus-visible {
  outline: 3px solid rgba(255, 127, 80, 0.4);
  outline-offset: 2px;
}

.hero-icon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(15, 18, 20, 0.08);
  color: var(--ink);
  font-size: 1.1rem;
}

.hero-badges .badge {
  background: rgba(15, 18, 20, 0.08);
  border-color: rgba(15, 18, 20, 0.12);
  padding: 0.5rem 0.75rem;
}

.hero-media img {
  object-fit: cover;
  width: 100%;
}

.is-hidden {
  opacity: 0;
  transform: translateY(20px);
}

.is-revealed {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.proof-track {
  display: grid;
  gap: 1.5rem;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.proof-track::-webkit-scrollbar {
  height: 6px;
}

.proof-track::-webkit-scrollbar-thumb {
  background: rgba(15, 18, 20, 0.2);
  border-radius: 3px;
}

.proof-card {
  background: #fff;
  scroll-snap-align: center;
}

.proof-portrait {
  max-width: 160px;
  border: 4px solid rgba(15, 18, 20, 0.08);
}

.program-timeline {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.program-day {
  border-radius: 1.5rem;
  background: linear-gradient(180deg, rgba(239, 234, 226, 0.35) 0%, rgba(239, 234, 226, 0.15) 100%);
  padding: 1.5rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.program-day:hover,
.program-day:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 18, 20, 0.12);
}

.program-day-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.program-day-index {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 127, 80, 0.1);
  color: var(--cta-hot);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.program-day-media {
  width: 100%;
  border-radius: 1rem;
  margin-top: auto;
}

.deliverable-card {
  background: linear-gradient(180deg, rgba(13, 110, 253, 0.06) 0%, rgba(13, 110, 253, 0.02) 100%);
  border-radius: 1.25rem;
  border: 1px solid rgba(13, 110, 253, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.deliverable-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(13, 110, 253, 0.15);
}

.deliverable-pct {
  font-size: 1.35rem;
  font-weight: 600;
  color: #0d6efd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.deliverable-media {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 0.75rem;
}

.bootcamp-pack {
  background: linear-gradient(180deg, rgba(239, 234, 226, 0.45) 0%, rgba(239, 234, 226, 0.15) 100%);
  border-radius: 2rem;
}

.pack-banner {
  width: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
}

.pack-items {
  display: grid;
  gap: 0.75rem;
}

.pack-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 6px 18px rgba(15, 18, 20, 0.06);
}

.pack-item i {
  color: var(--cta-hot);
  margin-right: 0.5rem;
}

.pack-map {
  width: 100%;
  object-fit: cover;
}

.bootcamp-faq details {
  border-radius: 1rem;
  border: 1px solid rgba(15, 18, 20, 0.1);
  padding: 1rem 1.25rem;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bootcamp-faq summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}

.bootcamp-faq summary::-webkit-details-marker {
  display: none;
}

.bootcamp-faq summary::after {
  content: "▾";
  position: absolute;
  right: 0;
  top: 0;
  transition: transform 0.2s ease-in-out;
}

.bootcamp-faq details[open] {
  border-color: rgba(255, 127, 80, 0.45);
  box-shadow: 0 12px 32px rgba(255, 127, 80, 0.12);
}

.bootcamp-faq details[open] summary::after {
  transform: rotate(-180deg);
}

.sticky-cta {
  position: fixed;
  inset: auto 0 1.5rem 0;
  z-index: 1050;
  transform: translateY(120%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta .container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 1rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(15, 18, 20, 0.25);
}
@media (max-width: 767.98px) {
  .btn-cta-hot {
    width: 100%;
  }

  .hero-media img {
    border-radius: 1.25rem;
  }

  .sticky-cta .container {
    border-radius: 1.5rem;
  }

  .sticky-cta--mobile-off {
    display: none !important;
  }
}
