/* ─── INTERNSHIP COURSE — SPECIFIC STYLES ─── */

/* ─── HOW IT WORKS — ANIMATED TIMELINE ─── */

/* progress track (desktop) */
.hiw-track-outer {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 0 44px;
  margin-bottom: 4px;
}

.hiw-track-line-bg {
  position: absolute;
  top: 26px; left: 26px; right: 26px;
  height: 3px;
  background: var(--border);
  border-radius: 3px;
}

.hiw-track-fill {
  position: absolute;
  top: 26px; left: 26px;
  height: 3px;
  width: 0;
  background: var(--grad-primary);
  border-radius: 3px;
  z-index: 1;
  transition: width 1.7s cubic-bezier(0.4,0,0.2,1);
}

.hiw-track-fill.go { width: calc(100% - 52px); }

.hiw-dot-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  position: relative;
}

.hiw-dot {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text-muted);
  transition: all 0.45s var(--ease);
  box-shadow: var(--shadow-xs);
}

.hiw-dot.lit {
  border-color: var(--dc, var(--primary));
  background: var(--dc, var(--primary));
  color: #fff;
  box-shadow: 0 6px 22px color-mix(in srgb, var(--dc, var(--primary)) 40%, transparent);
  transform: scale(1.12);
}

.hiw-dot.lit-final {
  background: var(--grad-accent);
  border-color: var(--accent);
  color: var(--primary-dark);
  animation: hiwGlow 2s ease-in-out infinite;
}

@keyframes hiwGlow {
  0%,100% { box-shadow: 0 6px 22px rgba(246,185,59,.45); transform: scale(1.12); }
  50%      { box-shadow: 0 10px 36px rgba(246,185,59,.75); transform: scale(1.18); }
}

.hiw-dot-lbl {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: color 0.4s;
  text-align: center;
  white-space: nowrap;
}

.hiw-dot-wrap.lit .hiw-dot-lbl { color: var(--dc, var(--primary)); }

/* 5-column step cards grid */
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 14px;
}

.hiw-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  padding: 22px 16px 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease),
              box-shadow 0.3s var(--ease), border-color 0.3s;
}

/* top accent bar */
.hiw-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--sc, var(--primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--ease);
}

.hiw-card.visible { opacity: 1; transform: translateY(0); }
.hiw-card.visible::before { transform: scaleX(1); }

.hiw-card:hover {
  transform: translateY(-7px) !important;
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--sc, var(--primary)) 35%, transparent);
}

.hiw-card-final {
  background: linear-gradient(145deg, #fff 60%, #f0fdf4);
  border-color: rgba(246,185,59,.35);
}

/* icon box with floating number badge */
.hiw-icon-box {
  width: 60px; height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 14px;
  position: relative;
}

.hiw-num-pin {
  position: absolute;
  top: -7px; right: -7px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--sc, var(--primary));
  color: #fff;
  font-size: 0.6rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  line-height: 1;
}

.hiw-card-title { font-size: 0.9rem; font-weight: 800; color: var(--text); margin-bottom: 8px; line-height: 1.3; }
.hiw-card-desc  { font-size: 0.74rem; color: var(--text-light); line-height: 1.65; margin-bottom: 14px; }

.hiw-card-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.hiw-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 50px;
  padding: 4px 10px;
  font-size: 0.68rem;
  font-weight: 700;
  white-space: nowrap;
}

.hiw-chip-time {
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  color: var(--sc, var(--primary));
}

.hiw-chip-tag {
  background: #f8fafc;
  border: 1.5px solid var(--border);
  color: var(--text-light);
}

/* Old step-card kept for fallback */
.step-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  height: 100%;
  position: relative;
  transition: all 0.3s var(--ease);
}

.step-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-xl); border-color: rgba(16,185,129,0.3); }

.step-num {
  width: 52px; height: 52px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  color: white;
  margin: 0 auto 16px;
  box-shadow: 0 8px 22px rgba(16,185,129,0.3);
}

.step-card h5 { font-weight: 800; color: var(--primary); font-size: 0.95rem; margin-bottom: 9px; }
.step-card p  { color: var(--text-light); font-size: 0.82rem; line-height: 1.65; margin: 0; }

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: rgba(16,185,129,0.3);
  font-size: 1.5rem;
  padding-top: 26px;
}

/* ─── CERT PROCESS CARD ─── */
.cert-process-card {
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  padding: 42px 36px;
  position: relative;
  overflow: hidden;
  height: 100%;
}

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

.cp-step { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; position: relative; z-index: 1; }

.cp-step-num {
  width: 36px; height: 36px;
  min-width: 36px;
  background: var(--grad-accent);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
}

.cp-step-line { width: 2px; height: 20px; background: rgba(246,185,59,0.25); margin-left: 17px; margin-bottom: -4px; position: relative; z-index: 1; }
.cp-step-title { font-weight: 700; color: white; font-size: 0.88rem; margin-bottom: 2px; }
.cp-step-sub   { font-size: 0.76rem; color: rgba(255,255,255,0.62); }

.cp-final {
  background: rgba(246,185,59,0.14);
  border: 1px solid rgba(246,185,59,0.25);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: 8px;
}

.cp-final-icon  { font-size: 2.4rem; display: block; margin-bottom: 8px; animation: trophyBounce 2s ease-in-out infinite; }
.cp-final-title { font-weight: 800; color: var(--accent); font-size: 0.9rem; }
.cp-final-sub   { font-size: 0.75rem; color: rgba(255,255,255,0.65); margin-top: 3px; }

/* ─── PLAN CARDS ─── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.plan-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s;
}

.plan-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.plan-card.popular { border-color: var(--primary); box-shadow: 0 12px 40px rgba(5,150,105,0.18); }

.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 18px;
  width: fit-content;
}

.plan-badge.popular-badge { background: var(--grad-primary); color: #fff; }

.plan-icon-wrap { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin-bottom: 14px; }

.plan-duration-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--light-bg);
  color: var(--primary);
  border-radius: 50px;
  padding: 4px 13px;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.plan-name { font-size: 1.08rem; font-weight: 800; color: var(--text); margin-bottom: 8px; line-height: 1.35; }
.plan-suitable { font-size: 0.82rem; color: var(--text-light); margin-bottom: 20px; line-height: 1.55; }

.plan-price-wrap { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.plan-price-amount { font-size: 2rem; font-weight: 900; color: var(--primary); }
.plan-price-note   { font-size: 0.78rem; color: var(--text-muted); }

.plan-features {
  list-style: none;
  padding: 0;
  margin: 16px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.83rem;
  color: var(--text);
}

.plan-features li { display: flex; align-items: flex-start; gap: 8px; }
.plan-features li::before { content: '✓'; color: var(--primary); font-weight: 800; flex-shrink: 0; margin-top: 1px; }

.plan-deliverables {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 0.8rem;
}

.plan-deliverables strong { color: var(--primary); display: block; margin-bottom: 6px; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; }
.plan-deliverables ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.plan-deliverables ul li { display: flex; align-items: center; gap: 6px; }
.plan-deliverables ul li::before { content: '📄'; font-size: 0.75rem; flex-shrink: 0; }

.plan-cta-btn {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease);
  margin-top: auto;
  text-decoration: none;
}

.plan-cta-btn.cta-solid { background: var(--grad-primary); color: #fff; box-shadow: 0 6px 22px rgba(5,150,105,0.3); }
.plan-cta-btn.cta-solid:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(5,150,105,0.4); }
.plan-cta-btn.cta-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.plan-cta-btn.cta-outline:hover { background: var(--primary); color: #fff; }

/* ─── TRUST CHECKS STRIP ─── */
.trust-checks-strip {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.trust-checks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px 20px; }
.tc-item { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; font-weight: 600; color: var(--text); }
.tc-item::before { content: '✅'; font-size: 1rem; flex-shrink: 0; }

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

.benefit-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 60%, rgba(16,185,129,0.04)); pointer-events: none; }
.benefit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: rgba(16,185,129,0.35); }

.benefit-icon { width: 70px; height: 70px; border-radius: 22px; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; font-size: 1.85rem; }
.benefit-card h5 { font-weight: 800; color: var(--primary); font-size: 0.97rem; margin-bottom: 9px; }
.benefit-card p  { color: var(--text-light); font-size: 0.81rem; line-height: 1.72; margin: 0; }

/* ─── MENTORSHIP ROWS ─── */
.mentor-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: white;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  margin-bottom: 10px;
}

.mentor-feature-row:hover { box-shadow: var(--shadow); transform: translateX(5px); border-color: rgba(16,185,129,0.3); }

.mfr-icon { width: 44px; height: 44px; border-radius: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.05rem; }
.mfr-title { font-weight: 800; color: var(--text); font-size: 0.87rem; margin-bottom: 3px; }
.mfr-desc  { color: var(--text-light); font-size: 0.79rem; margin: 0; line-height: 1.6; }

.mentor-stat-card {
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  padding: 30px 22px;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 100%;
}

.msc-icon { font-size: 1.7rem; opacity: 0.65; margin-bottom: 4px; }
.msc-num  { font-size: 2.3rem; font-weight: 900; line-height: 1; color: white; }
.msc-lbl  { font-size: 0.71rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.7px; font-weight: 700; }

/* ─── PROJECT SUBMISSION ─── */
.project-step {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  padding: 20px;
  background: white;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  margin-bottom: 11px;
}

.project-step:hover { box-shadow: var(--shadow); border-color: rgba(16,185,129,0.3); }

.ps-num {
  width: 40px; height: 40px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(5,150,105,0.28);
}

.ps-title { font-weight: 800; color: var(--text); font-size: 0.9rem; margin-bottom: 3px; }
.ps-desc  { color: var(--text-light); font-size: 0.8rem; line-height: 1.65; margin: 0; }

.submission-req-card {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1.5px solid rgba(16,185,129,0.18);
}

.submission-req-card h5 { font-weight: 800; color: var(--primary); margin-bottom: 14px; font-size: 0.95rem; }

.req-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid rgba(16,185,129,0.1); font-size: 0.82rem; color: var(--text); font-weight: 500; }
.req-item:last-child { border-bottom: none; }
.req-item i { color: var(--success); font-size: 0.78rem; flex-shrink: 0; }

/* ─── CERTIFICATION TYPE CARDS ─── */
.cert-type-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  height: 100%;
  transition: all 0.3s;
}

.cert-type-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: rgba(16,185,129,0.3); }

.ctc-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 14px; }
.ctc-title { font-weight: 800; color: var(--primary); font-size: 0.95rem; margin-bottom: 8px; }
.ctc-desc  { color: var(--text-light); font-size: 0.8rem; line-height: 1.7; margin-bottom: 12px; }

.ctc-features { list-style: none; padding: 0; margin: 0; }
.ctc-features li { display: flex; align-items: center; gap: 8px; padding: 5px 0; font-size: 0.79rem; color: var(--text); border-bottom: 1px solid var(--light-bg); }
.ctc-features li:last-child { border-bottom: none; }
.ctc-features li i { color: var(--success); font-size: 0.75rem; flex-shrink: 0; }

/* ─── VERIFY CTA BLOCK ─── */
.verify-cta-block {
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  padding: 50px 44px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.verify-cta-block::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.07), transparent 50%); pointer-events: none; }

.vcb-features { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 20px 0 28px; }
.vcb-feat { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.9); padding: 7px 15px; border-radius: 50px; font-size: 0.77rem; font-weight: 600; }
.vcb-feat i { color: var(--accent); }

.btn-verify-cta {
  background: white;
  color: var(--primary-dark);
  border: none;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all 0.3s;
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
}

.btn-verify-cta:hover { transform: translateY(-3px); box-shadow: 0 16px 42px rgba(0,0,0,0.22); color: var(--primary-dark); }

.btn-verify-sec {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.32);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.87rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-verify-sec:hover { background: rgba(255,255,255,0.12); color: white; }

/* ─── FAQ ITEMS ─── */
.faq-item {
  background: white;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item.open { border-color: rgba(16,185,129,0.4); box-shadow: var(--shadow); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.87rem;
  color: var(--text);
  user-select: none;
  gap: 12px;
  transition: background 0.2s;
}

.faq-q:hover { background: var(--light-bg); }
.faq-item.open .faq-q { color: var(--primary); background: rgba(16,185,129,0.04); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--primary);
  transition: transform 0.3s, background 0.3s, color 0.3s;
}

.faq-item.open .faq-icon { background: var(--primary); color: white; transform: rotate(45deg); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.38s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 22px 18px; color: var(--text-light); font-size: 0.82rem; line-height: 1.8; }
.faq-a-inner strong { color: var(--text); }

/* ─── REGISTRATION MODAL ─── */
.ireg-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.ireg-overlay.open { opacity: 1; pointer-events: all; }

.ireg-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 640px;
  margin: auto;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: translateY(24px);
  transition: transform 0.35s var(--ease);
}

.ireg-overlay.open .ireg-modal { transform: translateY(0); }

.ireg-head {
  background: var(--grad-primary);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

.ireg-head h5 { color: #fff; font-weight: 800; font-size: 1.05rem; margin: 0; flex: 1; }
.ireg-head .ireg-plan-pill { background: rgba(255,255,255,0.2); color: #fff; border-radius: 50px; padding: 4px 13px; font-size: 0.75rem; font-weight: 700; white-space: nowrap; }
.ireg-head .ireg-close-btn { background: rgba(255,255,255,0.18); border: none; color: #fff; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; transition: background 0.2s; }
.ireg-head .ireg-close-btn:hover { background: rgba(255,255,255,0.32); }

.ireg-form-wrap { padding: 26px; overflow-y: auto; max-height: calc(100vh - 180px); }
.ireg-section-label { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.8px; color: var(--primary); margin: 20px 0 10px; border-bottom: 2px solid var(--border); padding-bottom: 6px; }
.ireg-section-label:first-child { margin-top: 0; }

.ireg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ireg-row.full { grid-template-columns: 1fr; }

.ireg-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 4px; }
.ireg-field label { font-size: 0.8rem; font-weight: 700; color: var(--text); }
.ireg-field input, .ireg-field select, .ireg-field textarea { border: 2px solid #e2e8f0; border-radius: 10px; padding: 10px 13px; font-size: 0.87rem; font-family: 'Poppins', sans-serif; transition: border-color 0.25s; outline: none; width: 100%; }
.ireg-field input:focus, .ireg-field select:focus, .ireg-field textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(5,150,105,0.12); }
.ireg-field input.err, .ireg-field select.err { border-color: #ef4444; }
.ireg-field .err-msg { font-size: 0.74rem; color: #ef4444; display: none; }
.ireg-field.has-err .err-msg { display: block; }
.ireg-field.has-err input, .ireg-field.has-err select { border-color: #ef4444; }

.ireg-status { padding: 10px 14px; border-radius: 10px; font-size: 0.84rem; font-weight: 600; margin: 14px 0 4px; display: none; }
.ireg-status.error   { background: #fef2f2; color: #dc2626; border: 1px solid #fca5a5; display: block; }
.ireg-status.success { background: #f0fdf4; color: #059669; border: 1px solid #86efac; display: block; }
.ireg-status.info    { background: #eff6ff; color: #2563eb; border: 1px solid #93c5fd; display: block; }

.ireg-submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--grad-primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
  margin-top: 16px;
}

.ireg-submit-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(5,150,105,0.35); }
.ireg-submit-btn:disabled { opacity: 0.65; cursor: not-allowed; }

.ireg-razorpay-note { text-align: center; font-size: 0.74rem; color: var(--text-muted); margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 5px; }

.ireg-success { padding: 40px 28px; text-align: center; display: none; }
.ireg-success.show { display: block; }
.ireg-success .check-circle { font-size: 3.5rem; margin-bottom: 12px; }
.ireg-success h4 { font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.ireg-success p  { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; margin-bottom: 16px; }
.ireg-success .ref-id { background: var(--light-bg); border-radius: 10px; padding: 10px 16px; font-size: 0.8rem; font-weight: 700; color: var(--primary); margin-bottom: 20px; display: inline-block; }
.ireg-done-btn { background: var(--grad-primary); color: #fff; border: none; border-radius: 50px; padding: 11px 32px; font-size: 0.9rem; font-weight: 800; cursor: pointer; transition: all 0.3s; }
.ireg-done-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(5,150,105,0.35); }

/* ─── MULTI-STEP PROGRESS ─── */
.ireg-step-progress { display: flex; align-items: center; justify-content: center; padding: 16px 26px 4px; gap: 0; }

.ireg-step-dot {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
  background: #e5e7eb;
  color: #9ca3af;
}

.ireg-step-dot.active { background: var(--primary); color: #fff; box-shadow: 0 4px 12px rgba(5,150,105,0.35); }
.ireg-step-dot.done   { background: var(--success); color: #fff; }

.ireg-step-line { flex: 1; height: 2px; background: #e5e7eb; max-width: 50px; transition: background 0.3s; }
.ireg-step-line.done { background: var(--success); }

.ireg-step-labels { display: flex; justify-content: space-between; padding: 4px 16px 14px; border-bottom: 1px solid var(--border); }
.ireg-step-labels span { font-size: 0.64rem; font-weight: 700; color: #9ca3af; text-align: center; width: 50px; transition: color 0.3s; }
.ireg-step-labels span.active { color: var(--primary); }
.ireg-step-labels span.done   { color: var(--success); }

.ireg-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; gap: 10px; }
.ireg-back-btn { background: none; border: 2px solid var(--border); color: var(--text-light); border-radius: 50px; padding: 10px 22px; font-weight: 700; font-size: 0.85rem; cursor: pointer; font-family: inherit; transition: all 0.25s; }
.ireg-back-btn:hover { border-color: var(--primary); color: var(--primary); }
.ireg-next-btn { background: var(--grad-primary); color: #fff; border: none; border-radius: 50px; padding: 11px 28px; font-weight: 800; font-size: 0.87rem; cursor: pointer; font-family: inherit; transition: all 0.25s; display: flex; align-items: center; gap: 7px; }
.ireg-next-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(5,150,105,0.35); }

.ireg-review-box { background: var(--off-white); border-radius: var(--radius); padding: 16px; margin-bottom: 14px; }
.ireg-review-row { display: flex; justify-content: space-between; align-items: flex-start; padding: 6px 0; border-bottom: 1px solid var(--border); font-size: 0.82rem; gap: 12px; }
.ireg-review-row:last-child { border-bottom: none; }
.ireg-review-label { color: var(--text-muted); font-weight: 600; white-space: nowrap; flex-shrink: 0; min-width: 110px; }
.ireg-review-value { color: var(--text); font-weight: 700; text-align: right; word-break: break-word; }

.ireg-plan-summary { background: linear-gradient(135deg, var(--light-bg), #dcfce7); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 13px 16px; margin-bottom: 14px; display: flex; justify-content: space-between; align-items: center; }
.ireg-plan-summary-name  { font-weight: 800; color: var(--primary); font-size: 0.87rem; }
.ireg-plan-summary-price { font-size: 1.15rem; font-weight: 900; color: var(--primary); }

/* ─── PAYMENT PANEL ─── */
.ireg-pay-panel { padding: 36px 28px; text-align: center; }
.ireg-pay-icon  { font-size: 3.2rem; margin-bottom: 14px; display: block; animation: trophyBounce 2s ease-in-out infinite; }
.ireg-pay-panel h4 { font-weight: 800; color: var(--primary); margin-bottom: 8px; font-size: 1.1rem; }
.ireg-pay-panel p  { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; margin-bottom: 18px; }

.ireg-pay-app-id { display: inline-block; background: var(--light-bg); border-radius: 8px; padding: 6px 14px; font-size: 0.78rem; font-weight: 700; color: var(--primary); margin-bottom: 18px; font-family: monospace; }

.ireg-pay-amount-box { background: var(--grad-primary); border-radius: var(--radius); padding: 16px 24px; margin-bottom: 20px; display: inline-block; }
.ireg-pay-amount-label { font-size: 0.68rem; color: rgba(255,255,255,0.7); font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; display: block; }
.ireg-pay-amount-val   { font-size: 2rem; font-weight: 900; color: #fff; display: block; line-height: 1.1; }

.ireg-pay-btn {
  background: var(--grad-primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  justify-content: center;
  margin-bottom: 14px;
}

.ireg-pay-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(5,150,105,0.4); }

.ireg-pay-later { border-top: 1px solid var(--border); padding-top: 14px; margin-top: 4px; }
.ireg-pay-later p { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 8px; }

.ireg-copy-link-btn { background: white; border: 2px solid var(--primary); color: var(--primary); border-radius: 50px; padding: 9px 20px; font-size: 0.82rem; font-weight: 700; cursor: pointer; font-family: inherit; transition: all 0.25s; display: inline-flex; align-items: center; gap: 7px; }
.ireg-copy-link-btn:hover { background: var(--light-bg); }
.ireg-pay-link-note { font-size: 0.72rem; color: var(--text-muted); margin-top: 8px; line-height: 1.55; }

/* ─── OFFER PRICING ─── */
.plan-offer-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fef3c7;
  border: 1px solid #f59e0b;
  color: #92400e;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.plan-offer-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.plan-original-price {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: #dc2626;
}

.plan-discount-badge {
  display: inline-flex;
  align-items: center;
  background: #dc2626;
  color: #fff;
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.4px;
}

/* ─── TECHNOLOGIES SECTION ─── */
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}

.tech-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 9px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}

.tech-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(5,150,105,0.15);
  transform: translateY(-2px);
}

.tech-chip i {
  font-size: 0.95rem;
  color: var(--primary);
}

/* ─── PROMO ANNOUNCEMENT BAR ─── */
.promo-bar {
  background: linear-gradient(90deg, #064e3b 0%, #059669 50%, #047857 100%);
  color: #fff;
  padding: 11px 20px;
  text-align: center;
  position: relative;
  z-index: 1050;
  font-size: 0.84rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.promo-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  padding-right: 30px;
}

.promo-fire { font-size: 1rem; flex-shrink: 0; }
.promo-bar-text { color: rgba(255,255,255,0.88); }
.promo-bar-text strong { color: #fff; font-weight: 700; }
.promo-bar-highlight { background: rgba(246,185,59,0.22); border: 1px solid rgba(246,185,59,0.5); color: #fcd34d; border-radius: 50px; padding: 2px 10px; font-size: 0.78rem; font-weight: 700; white-space: nowrap; }

.promo-bar-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--grad-accent);
  color: #064e3b;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 5px 14px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.promo-bar-cta:hover { transform: scale(1.04); box-shadow: 0 4px 14px rgba(246,185,59,0.45); color: #064e3b; }

.promo-bar-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: rgba(255,255,255,0.7);
  width: 26px; height: 26px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}

.promo-bar-close:hover { background: rgba(255,255,255,0.22); color: #fff; }

/* ─── COMPANY TRUST CREDENTIALS BAR ─── */
.trust-creds-bar {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.trust-creds-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-cred {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 24px;
  border-right: 1px solid var(--border);
  white-space: nowrap;
}

.trust-cred:last-child { border-right: none; }

.trust-cred-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.trust-cred-label { font-size: 0.73rem; font-weight: 800; color: var(--text); letter-spacing: 0.1px; }
.trust-cred-sub   { font-size: 0.68rem; color: var(--text-muted); font-weight: 500; }

/* ─── ENHANCED PLAN CARDS ─── */
.plan-card {
  position: relative;
  overflow: visible;
}

.plan-card.popular {
  box-shadow: 0 16px 48px rgba(5,150,105,0.22), 0 2px 8px rgba(5,150,105,0.1);
  transform: translateY(-4px);
}

.plan-card.popular:hover {
  box-shadow: 0 24px 64px rgba(5,150,105,0.28);
  transform: translateY(-8px);
}

.plan-popular-ribbon {
  position: absolute;
  top: -1px; right: 22px;
  background: var(--grad-accent);
  color: #064e3b;
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 12px 5px;
  border-radius: 0 0 8px 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.plan-secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 10px;
  font-weight: 500;
}

.plan-secure-note i { color: var(--primary); font-size: 0.72rem; }

/* ─── REFUND POLICY / FULL T&C SECTION ─── */
.refund-policy-section {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 72px 0;
}

.refund-promise-card {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 60%, #047857 100%);
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.refund-promise-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(246,185,59,0.1) 0%, transparent 65%);
  border-radius: 50%;
}

.refund-promise-card::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(16,185,129,0.12) 0%, transparent 65%);
  border-radius: 50%;
}

.refund-seal {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2.5px solid rgba(255,255,255,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(255,255,255,0.06);
}

.refund-seal-icon { font-size: 2rem; margin-bottom: 4px; }
.refund-seal-label { font-size: 0.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.8px; color: rgba(255,255,255,0.85); line-height: 1.3; }

.refund-promise-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.4px;
  position: relative;
  z-index: 1;
}

.refund-promise-sub {
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.refund-promise-sub strong { color: #fcd34d; font-weight: 700; }

.refund-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.refund-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.refund-check-icon {
  width: 20px; height: 20px;
  background: rgba(246,185,59,0.2);
  border: 1px solid rgba(246,185,59,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.6rem;
  color: #fcd34d;
}

/* ─── T&C ACCORDION ─── */
.tc-accordion {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.tc-accordion-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  background: #f8fafc;
  border-bottom: 1.5px solid transparent;
  transition: background 0.2s;
  user-select: none;
}

.tc-accordion-head:hover { background: var(--light-bg); }
.tc-accordion.open .tc-accordion-head { border-bottom-color: var(--border); background: var(--light-bg); }

.tc-accordion-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.tc-accordion-title i { color: var(--primary); }

.tc-accordion-arrow {
  width: 28px; height: 28px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.75rem;
  transition: transform 0.3s, background 0.2s;
  flex-shrink: 0;
}

.tc-accordion.open .tc-accordion-arrow { transform: rotate(180deg); background: rgba(5,150,105,0.12); }

.tc-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out, ease);
}

.tc-accordion.open .tc-accordion-body { max-height: 1000px; }

.tc-accordion-inner {
  padding: 24px;
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.75;
}

.tc-accordion-inner h6 {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 18px 0 8px;
}

.tc-accordion-inner h6:first-child { margin-top: 0; }

.tc-accordion-inner ul {
  padding-left: 18px;
  margin: 0 0 10px;
}

.tc-accordion-inner ul li { margin-bottom: 5px; }

.tc-note {
  background: #fef3c7;
  border: 1px solid #f59e0b;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.8rem;
  color: #92400e;
  margin-top: 14px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.tc-note i { flex-shrink: 0; margin-top: 2px; color: #d97706; }

/* ─── PLAN SECTION HEADING UPGRADE ─── */
.plans-section-head { text-align: center; margin-bottom: 0; }
.plans-section-head .plans-offer-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(90deg, rgba(220,38,38,.08), rgba(220,38,38,.04));
  border: 1px solid rgba(220,38,38,.22);
  color: #dc2626;
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

/* ─── TALK-TO-ADVISOR PLAN BUTTON ─── */
.plan-cta-advisor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.84rem;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-light);
  transition: all 0.25s var(--ease);
  margin-top: 8px;
  font-family: inherit;
}
.plan-cta-advisor:hover { border-color: var(--primary); color: var(--primary); background: var(--light-bg); }
.plan-cta-advisor i { color: var(--primary); font-size: 0.8rem; }

/* ─── SHARE / COPY LINK BUTTON ─── */
.plan-share-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.76rem;
  cursor: pointer;
  border: 1.5px dashed var(--border);
  background: transparent;
  color: var(--text-muted, #94a3b8);
  transition: all 0.22s var(--ease);
  margin-top: 6px;
  font-family: inherit;
  letter-spacing: 0.2px;
}
.plan-share-link:hover {
  border-color: #2563eb;
  color: #2563eb;
  background: rgba(37,99,235,.04);
  border-style: solid;
}
.plan-share-link.copied {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(5,150,105,.06);
  border-style: solid;
}
.plan-share-link i { font-size: 0.72rem; }

/* ─── PLAN SHARE SHEET ─── */
.pshare-overlay {
  position: fixed; inset: 0;
  background: rgba(15,23,42,.55);
  backdrop-filter: blur(4px);
  z-index: 9998;
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s var(--ease);
}
.pshare-overlay.open { opacity: 1; pointer-events: all; }

.pshare-sheet {
  background: #fff;
  border-radius: 20px 20px 0 0;
  width: 100%; max-width: 480px;
  padding: 24px 20px 32px;
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.32,0.72,0,1);
  box-shadow: 0 -8px 40px rgba(15,23,42,.18);
}
.pshare-overlay.open .pshare-sheet { transform: translateY(0); }

/* drag handle bar */
.pshare-sheet::before {
  content: '';
  display: block;
  width: 40px; height: 4px;
  background: var(--border);
  border-radius: 4px;
  margin: 0 auto 20px;
}

.pshare-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.pshare-head-left { display: flex; align-items: center; gap: 12px; }
.pshare-head-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(5,150,105,.1); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.pshare-head-title { font-size: 0.92rem; font-weight: 800; color: var(--text); line-height: 1.2; }
.pshare-head-sub   { font-size: 0.74rem; color: var(--text-light); margin-top: 2px; }
.pshare-close {
  width: 32px; height: 32px; border-radius: 50%;
  border: none; background: var(--light-bg);
  color: var(--text-light); font-size: 0.85rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.pshare-close:hover { background: var(--border); }

/* URL preview row */
.pshare-url-row {
  display: flex; align-items: center; gap: 8px;
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 20px;
}
.pshare-url-text {
  flex: 1; font-size: 0.72rem; color: var(--text-light);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  font-family: 'Courier New', monospace;
}
.pshare-copy-inline {
  flex-shrink: 0;
  width: 28px; height: 28px; border-radius: 8px;
  border: none; background: var(--primary); color: #fff;
  font-size: 0.75rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.pshare-copy-inline:hover { background: var(--primary-dark); }

.pshare-label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-muted, #94a3b8);
  margin-bottom: 12px;
}

/* Share options grid */
.pshare-opts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.pshare-opt {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 12px 6px;
  border-radius: 14px;
  border: 1.5px solid var(--border);
  background: #fff;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  font-family: inherit;
}
.pshare-opt:hover { border-color: currentColor; transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,.08); }
.pshare-opt-icon { font-size: 1.35rem; line-height: 1; }
.pshare-opt-label { font-size: 0.64rem; font-weight: 700; color: var(--text-light); white-space: nowrap; }

/* Per-channel colors */
.pshare-wa  { color: #25d366; } .pshare-wa:hover  { background: #f0fdf4; border-color: #25d366; }
.pshare-tg  { color: #2AABEE; } .pshare-tg:hover  { background: #eff9fe; border-color: #2AABEE; }
.pshare-email { color: #6366f1; } .pshare-email:hover { background: #eef2ff; border-color: #6366f1; }
.pshare-sms { color: #f59e0b; } .pshare-sms:hover  { background: #fffbeb; border-color: #f59e0b; }
.pshare-copy  { color: #2563eb; } .pshare-copy:hover  { background: #eff6ff; border-color: #2563eb; }
.pshare-native { color: var(--text-light); }

.pshare-note {
  font-size: 0.72rem; color: var(--text-muted, #94a3b8);
  background: var(--light-bg);
  border-radius: 8px; padding: 10px 12px;
  display: flex; align-items: flex-start; gap: 7px; line-height: 1.5;
}
.pshare-note i { font-size: 0.78rem; color: var(--primary); margin-top: 1px; flex-shrink: 0; }

/* On larger screens — centered card instead of bottom sheet */
@media (min-width: 640px) {
  .pshare-overlay { align-items: center; }
  .pshare-sheet {
    border-radius: 20px;
    max-width: 420px;
    transform: scale(0.92) translateY(16px);
    opacity: 0;
    transition: transform 0.28s cubic-bezier(0.32,0.72,0,1), opacity 0.25s var(--ease);
  }
  .pshare-overlay.open .pshare-sheet { transform: scale(1) translateY(0); opacity: 1; }
  .pshare-sheet::before { display: none; }
  .pshare-opts { grid-template-columns: repeat(5, 1fr); }
}

/* ─── ADVISOR STRIP ─── */
.cadv-strip {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.cadv-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cadv-strip-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
}

.cadv-strip-icon {
  font-size: 2.2rem;
  width: 56px; height: 56px;
  background: var(--light-bg);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
}

.cadv-strip-title { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 3px; }
.cadv-strip-sub   { font-size: 0.8rem; color: var(--text-muted); }

.cadv-strip-btns { display: flex; align-items: center; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }

.cadv-strip-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 11px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.25s;
  box-shadow: var(--shadow-brand);
}
.cadv-strip-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(5,150,105,0.35); }

.cadv-strip-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s;
}
.cadv-strip-wa:hover { background: #20ba61; color: #fff; transform: translateY(-2px); }

/* ─── CALLBACK MODAL ─── */
.cadv-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4,31,24,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.cadv-overlay.open { opacity: 1; pointer-events: all; }

.cadv-modal {
  background: #fff;
  border-radius: var(--radius-xl);
  max-width: 540px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: translateY(28px) scale(0.97);
  opacity: 0;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  scrollbar-width: thin;
}
.cadv-overlay.open .cadv-modal { transform: none; opacity: 1; }

.cadv-head {
  background: var(--grad-primary);
  padding: 22px 24px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: sticky;
  top: 0;
  z-index: 1;
}

.cadv-head-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.cadv-head h5 { color: #fff; font-weight: 800; font-size: 1rem; margin: 0 0 4px; }
.cadv-head-sub { color: rgba(255,255,255,0.68); font-size: 0.76rem; line-height: 1.4; }

.cadv-close-btn {
  margin-left: auto;
  background: rgba(255,255,255,0.12);
  border: none;
  color: rgba(255,255,255,0.7);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  font-size: 0.85rem;
  transition: all 0.2s;
}
.cadv-close-btn:hover { background: rgba(255,255,255,0.22); color: #fff; }

.cadv-body { padding: 28px 24px 24px; }

.cadv-section-lbl {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* Plan options */
.cadv-plan-opts { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }

.cadv-plan-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  text-align: left;
  width: 100%;
}
.cadv-plan-opt:hover { border-color: rgba(5,150,105,0.4); background: var(--light-bg); }
.cadv-plan-opt.selected { border-color: var(--primary); background: rgba(5,150,105,0.04); box-shadow: 0 0 0 3px rgba(5,150,105,0.1); }

.cadv-plan-opt-name { font-size: 0.86rem; font-weight: 700; color: var(--text); }
.cadv-plan-opt-dur  { font-size: 0.72rem; color: var(--text-muted); margin-top: 1px; }
.cadv-plan-opt-price { text-align: right; }
.cadv-plan-opt-offer { font-size: 0.96rem; font-weight: 900; color: var(--primary); }
.cadv-plan-opt-orig  { font-size: 0.72rem; color: var(--text-muted); text-decoration: line-through; }
.cadv-plan-opt-radio {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border);
  margin-right: 12px;
  flex-shrink: 0;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.cadv-plan-opt.selected .cadv-plan-opt-radio { border-color: var(--primary); background: var(--primary); }
.cadv-plan-opt.selected .cadv-plan-opt-radio::after { content:''; width:6px;height:6px;background:#fff;border-radius:50%; }

/* Form fields */
.cadv-fields { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.cadv-field { display: flex; flex-direction: column; gap: 5px; }
.cadv-field label { font-size: 0.82rem; font-weight: 700; color: var(--text); }
.cadv-field .req   { color: #ef4444; }

.cadv-field input, .cadv-field select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}
.cadv-field input:focus, .cadv-field select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(5,150,105,0.1); }
.cadv-field.has-err input, .cadv-field.has-err select { border-color: #ef4444; }
.cadv-err { font-size: 0.74rem; color: #ef4444; display: none; }
.cadv-field.has-err .cadv-err { display: block; }

/* Time slot buttons */
.cadv-time-opts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.cadv-time-btn {
  padding: 7px 14px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.cadv-time-btn:hover  { border-color: var(--primary); color: var(--primary); }
.cadv-time-btn.active { border-color: var(--primary); background: var(--primary); color: #fff; font-weight: 700; }

/* Status */
.cadv-status { font-size: 0.82rem; margin-bottom: 12px; min-height: 0; }
.cadv-status.error { color: #ef4444; }
.cadv-status.info  { color: var(--primary); }

/* Submit button */
.cadv-submit-btn {
  width: 100%;
  padding: 14px 20px;
  border-radius: 50px;
  background: var(--grad-primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.96rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: all 0.3s;
  box-shadow: var(--shadow-brand);
}
.cadv-submit-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(5,150,105,0.38); }
.cadv-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; }

/* Assurances */
.cadv-assurances {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 14px;
  font-size: 0.73rem;
  color: var(--text-muted);
  font-weight: 600;
}
.cadv-assurances span { display: flex; align-items: center; gap: 5px; }
.cadv-assurances i { color: var(--primary); }

/* Success state */
.cadv-success { padding: 40px 28px; text-align: center; }
.cadv-success-emoji { font-size: 3.5rem; margin-bottom: 16px; display: block; }
.cadv-success h4 { font-size: 1.3rem; font-weight: 900; color: var(--primary); margin-bottom: 10px; }
.cadv-success p  { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; margin-bottom: 18px; }
.cadv-success-note {
  display: inline-block;
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 24px;
}
.cadv-done-btn {
  background: var(--grad-primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.25s;
}
.cadv-done-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-brand); }

/* ─── INTERNSHIP RESPONSIVE ─── */
@media (max-width: 991px) {
  .step-connector   { display: none; }
  .trust-cred       { padding: 10px 16px; }
  .refund-promise-card { padding: 36px 28px; }
  .hiw-track-outer  { display: none !important; }
  .hiw-grid         { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hiw-card         { opacity: 1; transform: none; }
  .hiw-card::before { transform: scaleX(1); }
}

@media (max-width: 767px) {
  .trust-creds-inner { gap: 0; }
  .trust-cred { border-right: none; border-bottom: 1px solid var(--border); width: 50%; }
  .trust-cred:nth-child(even) { border-right: none; }
  .trust-cred:nth-last-child(-n+2) { border-bottom: none; }
  .refund-seal { width: 80px; height: 80px; }
  .refund-seal-icon { font-size: 1.5rem; }
}

@media (max-width: 575px) {
  .ireg-row { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .trust-checks-grid { grid-template-columns: 1fr 1fr; }
  .ireg-review-label { min-width: 90px; }
  .promo-bar-inner { gap: 7px; }
  .trust-cred { width: 100%; border-right: none; border-bottom: 1px solid var(--border); }
  .trust-cred:last-child { border-bottom: none; }
  .refund-promise-card { padding: 28px 20px; }
  .hiw-grid { grid-template-columns: 1fr; }
}
