/* ─── SHARED COURSE PAGE STYLES ─── */

/* ─── COURSE HERO ─── */
.course-hero {
  background: var(--grad-primary);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 82vh;
  display: flex;
  align-items: center;
}

.ch-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  z-index: 1;
  pointer-events: none;
}

.ch-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.ch-orb-1 {
  width: 520px; height: 520px;
  top: -110px; right: -80px;
  animation: floatOrb 10s ease-in-out infinite;
}

.ch-orb-2 {
  width: 320px; height: 320px;
  bottom: -70px; left: -50px;
  animation: floatOrb 14s ease-in-out infinite reverse;
}

.ch-content { position: relative; z-index: 2; width: 100%; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 22px;
  transition: color 0.3s;
  letter-spacing: 0.3px;
}

.back-link:hover { color: var(--accent); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(246,185,59,0.14);
  border: 1px solid rgba(246,185,59,0.38);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeUp 0.5s ease 0.1s both;
}

.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 1.6s ease infinite;
  flex-shrink: 0;
}

.course-hero h1 {
  font-size: clamp(1.85rem, 3.8vw, 3.1rem);
  font-weight: 900;
  color: white;
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  animation: fadeUp 0.5s ease 0.25s both;
}

.hero-hl {
  background: linear-gradient(135deg, var(--accent) 0%, #ffd866 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.course-hero p.lead {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.82;
  max-width: 560px;
  margin-bottom: 28px;
  animation: fadeUp 0.5s ease 0.4s both;
}

.cqs-row {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  animation: fadeUp 0.5s ease 0.5s both;
}

.cqs-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.88);
  padding: 7px 15px;
  border-radius: 50px;
  font-size: 0.77rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.cqs-pill i { color: var(--accent); font-size: 0.75rem; }

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 0.5s ease 0.6s both;
}

.btn-wa-hero {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.93rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 10px 30px rgba(37,211,102,0.35);
}

.btn-wa-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(37,211,102,0.5);
  color: white;
}

.btn-email-hero {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(255,255,255,0.26);
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(10px);
}

.btn-email-hero:hover {
  background: rgba(255,255,255,0.15);
  color: white;
  transform: translateY(-2px);
}

.hero-tech-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 30px;
  backdrop-filter: blur(12px);
  animation: fadeUp 0.5s ease 0.7s both;
}

.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(246,185,59,0.14);
  border: 1px solid rgba(246,185,59,0.24);
  color: var(--accent);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.71rem;
  font-weight: 700;
  margin: 3px;
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--primary-dark);
  border-bottom: 3px solid var(--accent);
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.tbi {
  padding: 20px 14px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.065);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: background 0.3s;
}

.tbi:last-child { border-right: none; }
.tbi:hover { background: rgba(246,185,59,0.04); }
.tbi i { font-size: 1.3rem; color: var(--accent); margin-bottom: 3px; }
.tbi .tb-val { font-size: 1rem; font-weight: 800; color: white; line-height: 1; }
.tbi .tb-lbl { font-size: 0.64rem; color: rgba(255,255,255,0.48); font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; }

/* ─── OVERVIEW STATS CARDS ─── */
.osc {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  transition: all 0.3s var(--ease);
  height: 100%;
}

.osc:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.osc-icon {
  width: 62px; height: 62px;
  margin: 0 auto 14px;
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.osc-num {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}

.osc-label { font-size: 0.77rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* ─── INCLUDED LIST ─── */
.included-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
}

.ib-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 0;
  border-bottom: 1px solid var(--light-bg);
  font-size: 0.84rem;
  color: var(--text);
  font-weight: 500;
}

.ib-item:last-child { border-bottom: none; }
.ib-item i { color: var(--success); font-size: 0.85rem; flex-shrink: 0; }

/* ─── SCHEDULE BOX ─── */
.schedule-box {
  background: var(--grad-primary);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
}

.sb-title { font-weight: 800; color: white; font-size: 1rem; margin-bottom: 18px; }

.sb-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.sb-row:last-child { border-bottom: none; }

.sb-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  background: rgba(246,185,59,0.14);
  border: 1px solid rgba(246,185,59,0.25);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.95rem;
}

.sb-val { font-size: 0.88rem; font-weight: 700; color: white; line-height: 1.3; }
.sb-sub { font-size: 0.74rem; color: rgba(255,255,255,0.55); margin-top: 2px; }

/* ─── CURRICULUM ACCORDION ─── */
.cm {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.cm:hover { border-color: rgba(246,185,59,0.3); }

.cm-head {
  padding: 17px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  user-select: none;
}

.cm-num {
  width: 34px; height: 34px;
  min-width: 34px;
  background: var(--grad-accent);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--primary-dark);
}

.cm-title { font-weight: 700; color: var(--primary); font-size: 0.92rem; flex: 1; }
.cm-count { font-size: 0.73rem; color: var(--text-muted); font-weight: 600; white-space: nowrap; }
.cm-arrow { color: var(--text-muted); transition: transform 0.25s; flex-shrink: 0; font-size: 0.8rem; }
.cm.open .cm-arrow { transform: rotate(180deg); }
.cm-body { display: none; padding: 0 20px 16px 68px; }
.cm.open .cm-body { display: block; }

.cm-topics {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.cm-topics li {
  font-size: 0.79rem;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  padding: 3px 0;
  line-height: 1.4;
}

.cm-topics li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--success);
  font-size: 0.68rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ─── MENTORSHIP ─── */
.mentor-visual {
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  padding: 42px 36px;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.mentor-visual::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: rgba(246,185,59,0.07);
  border-radius: 50%;
}

.chat-row { display: flex; gap: 11px; margin-bottom: 13px; align-items: flex-end; }
.chat-row.right { flex-direction: row-reverse; }

.chat-avatar {
  width: 34px; height: 34px;
  min-width: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.78rem;
  flex-shrink: 0;
}

.chat-bubble {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px 14px 14px 3px;
  padding: 11px 15px;
  color: rgba(255,255,255,0.88);
  font-size: 0.81rem;
  line-height: 1.6;
  max-width: 82%;
  position: relative;
  z-index: 1;
  animation: bubbleSlide 0.4s ease both;
}

.chat-row.right .chat-bubble {
  border-radius: 14px 14px 3px 14px;
  background: rgba(246,185,59,0.15);
  border-color: rgba(246,185,59,0.22);
}

.chat-name { font-size: 0.65rem; font-weight: 700; opacity: 0.6; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.4px; }

.mentor-feature {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  display: flex;
  gap: 15px;
  align-items: flex-start;
  transition: all 0.3s var(--ease);
}

.mentor-feature:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
  border-color: rgba(246,185,59,0.25);
}

.mf-icon {
  width: 46px; height: 46px;
  min-width: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.mf-title { font-weight: 700; color: var(--primary); font-size: 0.9rem; margin-bottom: 2px; }
.mf-desc { font-size: 0.8rem; color: var(--text-light); line-height: 1.55; margin: 0; }

/* ─── LIMITED SEATS BANNER ─── */
.lsb-wrap {
  background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 50%, #b91c1c 100%);
  border-bottom: 2px solid rgba(252,165,165,0.2);
}

.lsb-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.lsb-icon-wrap {
  width: 46px; height: 46px;
  min-width: 46px;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
  animation: gPulse 2.5s ease-in-out infinite;
}

.lsb-text { flex: 1; min-width: 200px; }

.lsb-title {
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.lsb-pulse {
  width: 7px; height: 7px;
  background: #fca5a5;
  border-radius: 50%;
  animation: blink 1s ease infinite;
  flex-shrink: 0;
}

.lsb-desc { color: rgba(255,255,255,0.75); font-size: 0.78rem; line-height: 1.6; }
.lsb-desc strong { color: white; }

.lsb-cta {
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: white;
  padding: 10px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.81rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}

.lsb-cta:hover { background: rgba(255,255,255,0.25); color: white; }

/* ─── TRAINER CARD ─── */
.trainer-card {
  background: linear-gradient(135deg, var(--off-white), var(--light-bg));
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.trainer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-accent);
}

.trainer-badge-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }

.trainer-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(246,185,59,0.1);
  border: 1px solid rgba(246,185,59,0.22);
  color: var(--accent-dark);
  padding: 4px 11px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
}

.trainer-main { display: flex; align-items: center; gap: 13px; margin-bottom: 14px; }

.trainer-avatar {
  width: 50px; height: 50px;
  min-width: 50px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.35rem;
  box-shadow: 0 6px 16px rgba(10,61,98,0.22);
}

.trainer-title { font-weight: 800; color: var(--primary); font-size: 0.93rem; }
.trainer-sub { font-size: 0.76rem; color: var(--text-light); margin-top: 2px; }

.trainer-stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-bottom: 12px; }

.tsr-item {
  text-align: center;
  background: white;
  border-radius: 10px;
  padding: 9px 6px;
  border: 1px solid var(--border);
}

.tsr-val { display: block; font-size: 0.95rem; font-weight: 900; color: var(--primary); line-height: 1; }
.tsr-lbl { display: block; font-size: 0.56rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; margin-top: 3px; }
.trainer-bio { font-size: 0.8rem; color: var(--text-light); line-height: 1.7; margin: 0; }
.trainer-bio strong { color: var(--primary); }

/* ─── E-CERTIFICATE MOCKUP ─── */
.cert-frame {
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
  border-radius: var(--radius-xl);
  padding: 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  position: relative;
  transition: transform 0.35s var(--ease);
}

.cert-frame:hover { transform: scale(1.015) translateY(-4px); }

.cert-glow {
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-xl) + 3px);
  z-index: -1;
  animation: certGlow 3s ease-in-out infinite;
}

.cert-mockup {
  background: linear-gradient(145deg, #fefcee, #fffff5);
  border-radius: 12px;
  padding: 26px 22px 20px;
  position: relative;
  border: 1.5px solid rgba(200,150,20,0.28);
  overflow: hidden;
}

.cert-mockup::before {
  content: '';
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(200,150,20,0.14);
  border-radius: 8px;
  pointer-events: none;
  z-index: 0;
}

.cert-corner-dec { position: absolute; width: 20px; height: 20px; z-index: 1; }
.cert-corner-dec.tl { top: 10px; left: 10px; border-top: 2px solid rgba(200,150,20,0.45); border-left: 2px solid rgba(200,150,20,0.45); border-radius: 3px 0 0 0; }
.cert-corner-dec.tr { top: 10px; right: 10px; border-top: 2px solid rgba(200,150,20,0.45); border-right: 2px solid rgba(200,150,20,0.45); border-radius: 0 3px 0 0; }
.cert-corner-dec.bl { bottom: 10px; left: 10px; border-bottom: 2px solid rgba(200,150,20,0.45); border-left: 2px solid rgba(200,150,20,0.45); border-radius: 0 0 0 3px; }
.cert-corner-dec.br { bottom: 10px; right: 10px; border-bottom: 2px solid rgba(200,150,20,0.45); border-right: 2px solid rgba(200,150,20,0.45); border-radius: 0 0 3px 0; }

.cert-mock-logo-row { display: flex; align-items: center; justify-content: center; gap: 11px; margin-bottom: 3px; position: relative; z-index: 1; }
.cert-brand-name { font-size: 1.45rem; font-weight: 900; color: var(--primary); letter-spacing: 3px; }
.cert-brand-sub { text-align: center; font-size: 0.54rem; color: #999; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 7px; position: relative; z-index: 1; }
.cert-ornament { text-align: center; color: rgba(200,150,20,0.55); font-size: 0.82rem; margin-bottom: 7px; letter-spacing: 6px; position: relative; z-index: 1; }
.cert-type-label { text-align: center; font-size: 0.6rem; font-weight: 900; letter-spacing: 3.5px; text-transform: uppercase; color: #666; padding-bottom: 11px; border-bottom: 1px solid rgba(200,150,20,0.16); margin-bottom: 13px; position: relative; z-index: 1; }
.cert-certify { text-align: center; font-size: 0.7rem; color: #999; font-style: italic; margin-bottom: 4px; position: relative; z-index: 1; }
.cert-student-name { text-align: center; font-size: 1.5rem; font-weight: 800; color: var(--primary); letter-spacing: -0.5px; font-style: italic; margin-bottom: 4px; line-height: 1.2; position: relative; z-index: 1; }
.cert-completed { text-align: center; font-size: 0.7rem; color: #999; font-style: italic; margin-bottom: 5px; position: relative; z-index: 1; }
.cert-course-title { text-align: center; font-size: 0.87rem; font-weight: 800; color: #2d3748; line-height: 1.3; margin-bottom: 3px; position: relative; z-index: 1; }
.cert-subtitle { text-align: center; font-size: 0.57rem; color: #bbb; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 15px; position: relative; z-index: 1; }

.cert-mock-ft { display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 10px; padding-top: 13px; border-top: 1px solid rgba(200,150,20,0.16); position: relative; z-index: 1; }
.cert-sig-wave { font-size: 0.64rem; color: #ccc; text-align: center; letter-spacing: 2px; font-family: Georgia, serif; margin-bottom: 3px; }
.cert-sig-lbl { font-size: 0.57rem; color: #aaa; text-align: center; letter-spacing: 0.4px; line-height: 1.4; }

.cert-seal {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  gap: 2px;
  box-shadow: 0 4px 14px rgba(10,61,98,0.3);
}

.cert-seal i { font-size: 0.9rem; }
.cert-seal span { font-size: 0.42rem; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; }
.cert-id-lbl { font-size: 0.56rem; color: #aaa; text-align: center; letter-spacing: 0.4px; text-transform: uppercase; margin-bottom: 1px; }
.cert-id-num { font-size: 0.62rem; font-weight: 700; color: #555; text-align: center; font-family: monospace; margin-bottom: 4px; }
.cert-qr-box { width: 38px; height: 38px; background: #f0f0f0; border: 1px solid #e0e0e0; border-radius: 4px; display: flex; align-items: center; justify-content: center; color: #555; font-size: 1.15rem; margin: 0 auto; }

/* Lightbox (used in course-net) */
.cert-lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.93); z-index: 9999; align-items: center; justify-content: center; padding: 20px; animation: lbFadeIn 0.2s ease both; }
.cert-lightbox.open { display: flex; }
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
.cert-lb-inner { max-width: 860px; width: 100%; position: relative; }
.cert-lb-inner img { width: 100%; border-radius: var(--radius-lg); box-shadow: 0 40px 100px rgba(0,0,0,0.5); }
.cert-lb-close { position: absolute; top: -14px; right: -14px; width: 40px; height: 40px; background: var(--accent); color: var(--primary-dark); border: none; border-radius: 50%; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; font-weight: 800; box-shadow: 0 4px 14px rgba(0,0,0,0.3); }

.cert-feature-list { list-style: none; padding: 0; margin: 0; }
.cert-feature-list li { display: flex; gap: 13px; padding: 15px 0; border-bottom: 1px solid var(--border); }
.cert-feature-list li:last-child { border-bottom: none; }
.cfl-icon { width: 42px; height: 42px; min-width: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; }
.cfl-title { font-weight: 700; color: var(--primary); font-size: 0.87rem; margin-bottom: 2px; }
.cfl-desc { font-size: 0.79rem; color: var(--text-light); margin: 0; line-height: 1.5; }

.cert-verify-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-primary);
  color: white;
  padding: 11px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 20px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 6px 18px rgba(10,61,98,0.25);
}

.cert-verify-link:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(10,61,98,0.35); color: white; }

/* ─── ANNUAL EVENT ─── */
.event-hero-card {
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.event-hero-card::before { content: ''; position: absolute; top: -60px; right: -60px; width: 240px; height: 240px; background: rgba(246,185,59,0.08); border-radius: 50%; }
.event-hero-card::after  { content: ''; position: absolute; bottom: -40px; left: -40px; width: 160px; height: 160px; background: rgba(255,255,255,0.03); border-radius: 50%; }

.event-trophy { font-size: 3.8rem; display: block; margin-bottom: 16px; position: relative; z-index: 1; animation: trophyBounce 2s ease-in-out infinite; }
.event-hero-card h3 { color: white; font-weight: 800; font-size: 1.45rem; margin-bottom: 10px; position: relative; z-index: 1; }
.event-hero-card p  { color: rgba(255,255,255,0.72); font-size: 0.87rem; line-height: 1.8; position: relative; z-index: 1; margin-bottom: 22px; }

.event-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; position: relative; z-index: 1; }

.event-tile {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 15px 13px;
  text-align: center;
  transition: background 0.3s;
}

.event-tile:hover { background: rgba(255,255,255,0.14); }
.event-tile i     { color: var(--accent); font-size: 1.4rem; display: block; margin-bottom: 7px; }
.event-tile span  { font-size: 0.76rem; font-weight: 600; color: rgba(255,255,255,0.85); display: block; }
.event-tile small { font-size: 0.68rem; color: rgba(255,255,255,0.5); margin-top: 3px; display: block; }

/* ─── PRIZES ─── */
.prize-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 34px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  height: 100%;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.prize-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease); }
.prize-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.prize-card:hover::after { transform: scaleX(1); }

.prize-icon-wrap { width: 78px; height: 78px; margin: 0 auto 18px; border-radius: 21px; display: flex; align-items: center; justify-content: center; font-size: 2.4rem; transition: all 0.35s var(--ease); }
.prize-card:hover .prize-icon-wrap { transform: scale(1.1) rotate(-5deg); }
.prize-card h5 { font-weight: 800; color: var(--primary); font-size: 0.97rem; margin-bottom: 9px; }
.prize-card p  { color: var(--text-light); font-size: 0.81rem; line-height: 1.65; margin: 0; }
.prize-rank    { position: absolute; top: 12px; right: 12px; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; }

/* ─── COUNTER STRIP ─── */
.counter-strip {
  background: var(--grad-primary);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.counter-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.counter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; max-width: 1000px; margin: 0 auto; position: relative; z-index: 1; }
.counter-item { padding: 40px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,0.07); }
.counter-item:last-child { border-right: none; }
.counter-icon   { font-size: 2rem; color: rgba(246,185,59,0.45); display: block; margin-bottom: 10px; }
.counter-num    { font-size: 3rem; font-weight: 900; color: var(--accent); line-height: 1; display: block; margin-bottom: 7px; letter-spacing: -2px; }
.counter-suffix { font-size: 1.5rem; font-weight: 900; }
.counter-label  { font-size: 0.73rem; color: rgba(255,255,255,0.5); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ─── MONEY-BACK GUARANTEE ─── */
.guarantee-section {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.guarantee-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(16,185,129,0.07) 0%, transparent 50%),
    radial-gradient(circle at 85% 50%, rgba(16,185,129,0.05) 0%, transparent 50%);
}

.guarantee-section .st { color: #065f46; }
.guarantee-section .st::after { background: linear-gradient(135deg, #059669, #10b981); }

.guarantee-visual { display: flex; align-items: center; justify-content: center; position: relative; height: 320px; }
.g-ring { position: absolute; border-radius: 50%; border: 2px dashed; }
.g-ring-1 { width: 270px; height: 270px; border-color: rgba(16,185,129,0.2);  animation: rotateRing    12s linear infinite; }
.g-ring-2 { width: 210px; height: 210px; border-color: rgba(16,185,129,0.15); animation: rotateRingRev  8s linear infinite; }
.g-ring-3 { width: 330px; height: 330px; border-color: rgba(16,185,129,0.09); animation: rotateRing    20s linear infinite reverse; }
.g-dots   { position: absolute; width: 370px; height: 370px; border-radius: 50%; background: radial-gradient(circle, #10b981 1.5px, transparent 1.5px) 0 0 / 22px 22px; opacity: 0.07; animation: rotateRing 30s linear infinite; }

.guarantee-badge {
  position: relative;
  z-index: 2;
  width: 160px; height: 160px;
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(16,185,129,0.45), 0 0 0 6px rgba(16,185,129,0.14), 0 0 0 14px rgba(16,185,129,0.07);
  animation: gPulse 2.5s ease-in-out infinite;
  text-align: center;
  padding: 12px;
}

.guarantee-badge i { font-size: 1.7rem; color: white; margin-bottom: 4px; }
.gb-big   { font-size: 1.3rem; font-weight: 900; color: white; line-height: 1; display: block; }
.gb-small { font-size: 0.54rem; font-weight: 800; color: rgba(255,255,255,0.82); text-transform: uppercase; letter-spacing: 0.8px; display: block; margin-top: 3px; }

.g-ring-label { position: absolute; font-size: 0.65rem; font-weight: 800; color: #059669; text-transform: uppercase; letter-spacing: 1px; background: #dcfce7; padding: 4px 10px; border-radius: 50px; border: 1px solid rgba(16,185,129,0.3); }
.g-ring-label.top       { top: 20px; }
.g-ring-label.bottom    { bottom: 20px; }
.g-ring-label.left      { left: 8px; }
.g-ring-label.right-pos { right: 8px; }

.guarantee-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(16,185,129,0.15);
  margin-bottom: 12px;
  transition: all 0.3s var(--ease);
}

.guarantee-point:hover { transform: translateX(6px); box-shadow: var(--shadow); border-color: rgba(16,185,129,0.35); }

.gp-icon { width: 44px; height: 44px; min-width: 44px; background: linear-gradient(135deg, #d1fae5, #a7f3d0); border-radius: 13px; display: flex; align-items: center; justify-content: center; color: #059669; font-size: 1.1rem; }
.gp-title { font-weight: 700; color: var(--primary); font-size: 0.9rem; margin-bottom: 2px; }
.gp-desc  { font-size: 0.8rem; color: var(--text-light); margin: 0; line-height: 1.55; }

.free-trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #059669, #10b981);
  color: white;
  padding: 13px 26px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(16,185,129,0.35);
  margin-top: 12px;
}

/* ─── TESTIMONIALS (course style) ─── */
.tcard {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  height: 100%;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.tcard::before {
  content: '\201C';
  position: absolute;
  top: 12px; right: 18px;
  font-size: 6.5rem;
  font-weight: 900;
  color: rgba(10,61,98,0.05);
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
}

.tcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.tcard-accent { position: absolute; top: 0; left: 0; right: 0; height: 4px; }

.t-stars { display: flex; gap: 4px; margin-bottom: 14px; }
.t-stars i { color: #f59e0b; font-size: 0.85rem; }
.t-text { color: var(--text-light); font-style: italic; line-height: 1.85; font-size: 0.84rem; margin-bottom: 20px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.95rem; color: white; flex-shrink: 0; }
.t-name { font-weight: 700; color: var(--primary); font-size: 0.88rem; line-height: 1.3; }
.t-role { font-size: 0.73rem; color: var(--text-muted); font-weight: 600; margin-top: 2px; }

/* ─── ENROLL CTA ─── */
.enroll-cta {
  background: var(--grad-primary);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.enroll-cta::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 40px 40px; }
.enroll-cta h2 { color: white; font-weight: 900; font-size: clamp(1.7rem, 3vw, 2.5rem); margin-bottom: 14px; position: relative; z-index: 1; }
.enroll-cta p  { color: rgba(255,255,255,0.7); font-size: 0.97rem; max-width: 520px; margin: 0 auto 30px; line-height: 1.8; position: relative; z-index: 1; }
.enroll-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ─── COURSE PAGE RESPONSIVE ─── */
@media (max-width: 991px) {
  .trust-bar-inner { grid-template-columns: repeat(3, 1fr); }
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .event-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .course-hero { padding: 80px 0 60px; min-height: auto; }
  .section { padding: 60px 0; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .cm-topics { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
}

@media (max-width: 575px) {
  .trust-bar-inner { grid-template-columns: 1fr; }
  .counter-grid { grid-template-columns: 1fr 1fr; }
}
