/* MIKA Academy — Summer of Champions 2026 bundle landing */
.sb-page {
  background: #0f1923;
  color: #fff;
  font-family: 'Cairo', Tahoma, sans-serif;
  min-height: 100vh;
  margin: 0;
}

.sb-hero {
  text-align: center;
  padding: 48px 20px 40px;
}

.sb-logo {
  font-size: clamp(3rem, 10vw, 5rem);
  line-height: 1;
  margin-bottom: 8px;
}

.sb-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: #f6ad55;
  font-weight: 900;
  margin: 0 0 12px;
}

.sb-lead {
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: #a0aec0;
  max-width: 620px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.sb-price-box {
  background: rgba(246, 173, 85, 0.1);
  border: 3px solid #f6ad55;
  border-radius: 20px;
  padding: 24px 20px;
  max-width: 400px;
  margin: 0 auto 24px;
}

.sb-price-was {
  font-size: 0.9rem;
  color: #a0aec0;
  text-decoration: line-through;
}

.sb-price-now {
  font-size: clamp(2.2rem, 8vw, 3rem);
  font-weight: 900;
  color: #f6ad55;
  margin: 4px 0;
}

.sb-price-perk {
  color: #68d391;
  font-size: 0.9rem;
  line-height: 1.7;
}

.sb-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.sb-btn {
  border: none;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.sb-btn:active {
  transform: scale(0.98);
}

.sb-btn--primary {
  background: #f6ad55;
  color: #1a1a2e;
  padding: 18px 40px;
  font-size: clamp(1.1rem, 4vw, 1.35rem);
  box-shadow: 0 4px 30px rgba(246, 173, 85, 0.45);
}

.sb-btn--whatsapp {
  background: #25d366;
  color: #fff;
  padding: 14px 28px;
  font-size: 1rem;
}

.sb-btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
  padding: 12px 24px;
  font-size: 0.95rem;
}

.sb-pay-note {
  color: #a0aec0;
  margin-top: 16px;
  font-size: 0.88rem;
  line-height: 1.7;
}

.sb-pay-note strong {
  color: #f6ad55;
}

.sb-included {
  max-width: 820px;
  margin: 0 auto;
  padding: 32px 20px 48px;
}

.sb-included h2 {
  text-align: center;
  color: #f6ad55;
  font-size: 1.35rem;
  margin-bottom: 20px;
}

.sb-subjects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sb-subject {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 18px;
}

.sb-subject-icon {
  font-size: 2rem;
  line-height: 1;
}

.sb-subject h3 {
  margin: 8px 0 4px;
  font-size: 1rem;
}

.sb-subject p {
  color: #a0aec0;
  font-size: 0.85rem;
  margin: 0 0 8px;
  line-height: 1.5;
}

.sb-status-live { color: #68d391; font-size: 0.85rem; font-weight: 700; }
.sb-status-soon { color: #f6ad55; font-size: 0.85rem; font-weight: 700; }

.sb-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sb-topbar a {
  color: #a0aec0;
  text-decoration: none;
  font-size: 0.9rem;
}

.sb-free-note {
  text-align: center;
  color: #68d391;
  font-size: 0.9rem;
  margin-top: 8px;
}

@media (max-width: 640px) {
  .sb-subjects {
    grid-template-columns: 1fr;
  }

  .sb-page {
    padding-bottom: 72px;
  }
}

.sb-sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .sb-sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f6ad55;
    color: #1a1a2e;
    text-align: center;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 800;
    z-index: 9999;
    text-decoration: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  }
}
