/* ============================================================
   PAID COURSE PAGE — additional styles built on top of style.css
   ============================================================ */

/* ──────────────────────────────────────────── HEADER LINK */
header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
}

.header-cta-link {
  position: absolute;
  left: 24px;
  background: var(--color-lime);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: .85rem;
  text-decoration: none;
  transition: transform .2s;
}

.header-cta-link:hover {
  transform: translateY(-2px);
}

/* ──────────────────────────────────────────── STATUS BANNERS */
.success-banner,
.error-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  font-weight: 600;
  font-size: .95rem;
  position: relative;
  z-index: 100;
}

.success-banner {
  background: #1a3a2a;
  color: #68d391;
  border-bottom: 2px solid #38a169;
}

.error-banner {
  background: #3a1a1a;
  color: #fc8181;
  border-bottom: 2px solid #e53e3e;
}

.success-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: inherit;
  padding: 0 8px;
  opacity: .7;
  line-height: 1;
}

.success-close:hover {
  opacity: 1;
}

/* ──────────────────────────────────────────── VIDEO */
.video-section {
  background: var(--color-dark);
  padding: 70px 0;
}

.video-wrapper {
  max-width: 820px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.video-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-lime);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(212, 246, 57, .4);
  transition: transform .2s, box-shadow .2s;
}

.play-button::before {
  content: '▶';
  font-size: 1.8rem;
  color: var(--color-dark);
  margin-right: -4px;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 60px rgba(212, 246, 57, .5);
}

/* ──────────────────────────────────────────── CHECKLIST SECTIONS */
.course-list-section {
  background: var(--color-dark);
  padding: 80px 0;
}

.course-list-section--alt {
  background: var(--color-lime);
}

.course-list-section h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  text-align: center;
  margin-bottom: 40px;
  color: white;
}

.course-checklist {
  list-style: none;
  padding: 0;
  max-width: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.course-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.479);
  border: 1px solid rgba(255, 255, 255, 0.911);
  padding: 14px 18px;
  border-radius: 10px;
  font-size: .98rem;
  color: white;
  transition: border-color .2s;
}

.course-checklist li:hover {
  border-color: rgba(212, 246, 57, .3);
}

.check-mark {
  color: var(--color-lime);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 1px;
}

.course-checklist--center {
  justify-items: center;
}

.course-checklist--center li {
  justify-content: center;
  text-align: center;
}

@media (min-width: 640px) {
  .course-checklist {
    grid-template-columns: 1fr 1fr;
  }
}

/* ──────────────────────────────────────────── PRICING */
.course-pricing {
  background: var(--color-purple);
  padding: 90px 0;
}

.course-pricing h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  text-align: center;
  margin-bottom: 48px;
  color: #fff;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto;
}

.price-card {
  flex: 1;
  min-width: 260px;
  max-width: 360px;
  background: rgba(255, 255, 255, .04);
  border: 2px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  position: relative;
  transition: transform .3s;
}

.price-card--featured {
  border-color: var(--color-lime);
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 0 40px rgba(212, 246, 57, .15);
  transform: scale(1.04);
}

.price-label {
  display: inline-block;
  background: var(--color-lime);
  color: white;
  padding: 4px 18px;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.price-label--muted {
  background: rgba(255, 255, 255, .12);
  color: white;
}

.price-urgency {
  font-size: .88rem;
  color: #f6ad55;
  margin-bottom: 12px;
}

.price-amount {
  margin: 20px 0;
}

.price-big {
  display: block;
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.price-was {
  display: block;
  text-decoration: line-through;
  color: #555;
  font-size: 1.2rem;
  margin-top: 6px;
}

.price-save {
  display: inline-block;
  background: rgba(56, 161, 105, .15);
  color: #68d391;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: .82rem;
  margin-top: 8px;
}

.price-install {
  font-size: .88rem;
  color: white;
  margin: 16px 0;
  line-height: 1.6;
}

.price-card .btn {
  margin-top: 8px;
  font-size: 1rem;
  padding: 14px 28px;
  width: 100%;
}

.btn-outline-lime {
  background: transparent !important;
  border: 2px solid var(--color-lime) !important;
  color: var(--color-lime) !important;
}

.btn-outline-lime:hover {
  background: var(--color-lime) !important;
  color: var(--color-dark) !important;
}

/* ──────────────────────────────────────────── BONUS */
.bonus-section {
  padding: 80px 0;
}

.bonus-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 36px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
}

.bonus-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.bonus-inner h2 {
  font-size: 1.7rem;
  margin-bottom: 12px;
  color: var(--color-lime);
}

.bonus-desc {
  color: white;
  margin-bottom: 28px;
  line-height: 1.8;
}


header {
  background-color: var(--color-purple);
}

header a span {
  font-family: var(--font-body) !important;
}


/* ──────────────────────────────────────────── GUARANTEE */
.guarantee-section {
  background: var(--color-purple);
  padding: 80px 0;
}

.guarantee-box {
  display: flex;
  gap: 32px;
  align-items: center;
  max-width: 780px;
  margin: 0 auto;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 36px 40px;
}

.guarantee-img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  flex-shrink: 0;
}

.guarantee-shield {
  font-size: 5rem;
  flex-shrink: 0;
  line-height: 1;
}

.guarantee-box h2 {
  font-size: 1.5rem;
  color: var(--color-lime);
  margin-bottom: 12px;
}

.guarantee-text {
  color: white;
  line-height: 1.8;
}

@media (max-width: 640px) {
  .guarantee-box {
    flex-direction: column;
    text-align: center;
    padding: 28px;
  }
}

/* ──────────────────────────────────────────── SCARCITY */
.scarcity-section {
  background: var(--color-dark);
  padding: 70px 0;
}

.scarcity-box {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 32px;
  border: 2px solid var(--color-lime);
  border-radius: 16px;
}

.scarcity-box p {
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 28px;
  line-height: 1.8;
}

/* ──────────────────────────────────────────── PAYMENT */
.payment-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 24px 0;
}

.pay-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  font-family: inherit;
  transition: transform .2s, opacity .2s;
}

.pay-btn:hover {
  transform: translateY(-2px);
  opacity: .9;
  text-decoration: none;
}

.pay-btn--paypal {
  background: #003087;
  color: #fff;
}

.pay-btn--whatsapp {
  background: #25d366;
  color: #fff;
}

.payment-note {
  color: white;
  font-size: .9rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ──────────────────────────────────────────── SPECIAL MESSAGE */
.special-msg {
  position: relative;
  overflow: hidden;
  padding: 150px 0;
  background: var(--color-dark);
  background-size: cover;
  background-position: center;
  text-align: center;
}

.special-msg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  pointer-events: none;
}

.special-msg__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.special-msg h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--color-lime);
  margin-bottom: 20px;
}

.special-msg p {
  color: #ccc;
  line-height: 1.9;
  font-size: 1.05rem;
}

/* ──────────────────────────────────────────── TESTIMONIAL AUTHOR LINE */
.testimonial-author-line {
  font-size: .95rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ──────────────────────────────────────────── WHO FOR (inherits .curriculum bg) */
.who-for-section {}

/* ──────────────────────────────────────────── SECTION HEADING (shared util) */
.section-heading {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  text-align: center;
  margin-bottom: 48px;
  color: #fff;
}