/* CivilsTap HPAS — Landing Page Styles v2.0 */
/* All rules scoped to .ct-lp — zero theme conflicts */

/* ════════════════════════════════════════════════════════════
   BRAND COLORS — update just these 2 lines to match your site
════════════════════════════════════════════════════════════ */
.ct-lp {
  --g:   #1A5C38;   /* primary green  */
  --gm:  #2E8B57;   /* green mid      */
  --gl:  #3DA66A;   /* green light    */
  --gp:  #E8F5EE;   /* green pale bg  */
  --gt:  #F2FAF5;   /* green tint bg  */
  --o:   #E8761A;   /* orange CTA     */
  --ob:  #FF9A3C;   /* orange bright  */
  --wh:  #FFFFFF;
  --ow:  #F8FAF9;
  --dk:  #162818;
  --tx:  #2D3D30;
  --mt:  #6B8C75;
  --br:  rgba(26,92,56,.14);
  --sh:  0 4px 24px rgba(26,92,56,.10);
  --shl: 0 16px 56px rgba(26,92,56,.14);

  font-family: 'DM Sans', sans-serif;
  color: var(--tx);
  overflow-x: hidden;
  box-sizing: border-box;
}
.ct-lp *, .ct-lp *::before, .ct-lp *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── HERO ────────────────────────────────────────────────── */
.ct-lp .lp-hero {
  padding: 60px 44px 64px;
  background: radial-gradient(ellipse 70% 60% at 0% 0%, rgba(26,92,56,.07) 0%, transparent 55%),
              radial-gradient(ellipse 50% 50% at 100% 100%, rgba(232,118,26,.06) 0%, transparent 55%),
              var(--gt);
  position: relative; overflow: hidden;
}
.ct-lp .lp-hero-decor {
  position: absolute; top: 0; right: 0; bottom: 0; width: 42%;
  background: linear-gradient(135deg, var(--g), var(--gm));
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: .055; pointer-events: none;
}
.ct-lp .lp-wm {
  position: absolute; right: -10px; bottom: 10px;
  font-family: 'Bebas Neue'; font-size: 200px; line-height: 1;
  color: rgba(26,92,56,.04); pointer-events: none; user-select: none;
}
.ct-lp .lp-hero-grid {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 46px; align-items: start; max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 1;
}
.ct-lp .lp-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,92,56,.1); border: 1px solid rgba(26,92,56,.22);
  padding: 6px 16px; border-radius: 50px;
  font-size: 12px; color: var(--g); font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px;
}
.ct-lp .lp-badge .dot {
  width: 7px; height: 7px; background: var(--g); border-radius: 50%;
  animation: ct-blink 1.6s infinite;
}
@keyframes ct-blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.6)} }

.ct-lp .lp-h1 {
  font-family: 'Playfair Display'; font-size: clamp(30px,4vw,52px);
  font-weight: 900; line-height: 1.12; color: var(--dk); margin-bottom: 16px;
}
.ct-lp .lp-h1 .cg { color: var(--g); }
.ct-lp .lp-h1 .ub { position: relative; display: inline-block; }
.ct-lp .lp-h1 .ub::after { content: ''; position: absolute; bottom: 3px; left: 0; right: 0; height: 4px; background: var(--o); border-radius: 2px; }
.ct-lp .lp-sub { font-size: 17px; color: var(--mt); line-height: 1.78; max-width: 560px; margin-bottom: 24px; }
.ct-lp .lp-bullets { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.ct-lp .lp-b { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--tx); }
.ct-lp .lp-b .ck {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: var(--g); display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 10px; font-weight: 800;
}

/* Hero video — click triggers lead gate */
.ct-lp .lp-vid-wrap {
  position: relative; border-radius: 14px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,92,56,.18), 0 0 0 3px rgba(26,92,56,.09);
  cursor: pointer;
}
.ct-lp .lp-vid-thumb { width: 100%; aspect-ratio: 16/9; display: block; background: var(--gp); }
.ct-lp .lp-vid-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ct-lp .lp-vid-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, rgba(26,92,56,.55), rgba(22,40,24,.7));
  transition: background .25s;
}
.ct-lp .lp-vid-wrap:hover .lp-vid-overlay { background: linear-gradient(135deg, rgba(26,92,56,.7), rgba(22,40,24,.85)); }
.ct-lp .lp-play-btn {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--o); display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: #fff; box-shadow: 0 8px 32px rgba(232,118,26,.5);
  transition: transform .2s, box-shadow .2s;
}
.ct-lp .lp-vid-wrap:hover .lp-play-btn { transform: scale(1.1); box-shadow: 0 12px 40px rgba(232,118,26,.65); }
.ct-lp .lp-vid-caption { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.9); letter-spacing: .05em; text-transform: uppercase; }
.ct-lp .lp-vid-lbl {
  position: absolute; top: 12px; left: 12px;
  background: var(--g); border-radius: 6px;
  padding: 5px 12px; font-size: 11px; color: #fff; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; z-index: 2;
}

/* ── FORM CARD ───────────────────────────────────────────── */
.ct-lp .lp-form-card {
  background: #fff; border: 1.5px solid var(--br); border-radius: 18px;
  padding: 28px 24px; position: sticky; top: 20px;
  box-shadow: 0 20px 64px rgba(26,92,56,.11);
}
.ct-lp .lp-fc-head { text-align: center; margin-bottom: 20px; padding-bottom: 18px; border-bottom: 2px solid var(--gp); }
.ct-lp .lp-fc-tag { display: inline-block; background: var(--o); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 4px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.ct-lp .lp-fc-head h3 { font-family: 'Playfair Display'; font-size: 21px; font-weight: 700; color: var(--dk); line-height: 1.3; margin-bottom: 5px; }
.ct-lp .lp-fc-head p { font-size: 13px; color: var(--mt); }
.ct-lp .lp-offer { display: flex; align-items: flex-start; gap: 9px; background: var(--gp); border: 1px solid rgba(26,92,56,.18); border-radius: 8px; padding: 10px 13px; margin-bottom: 16px; font-size: 13px; color: var(--g); line-height: 1.5; }
.ct-lp .lp-offer span { flex-shrink: 0; font-size: 18px; }
.ct-lp .lp-fg { margin-bottom: 12px; }
.ct-lp .lp-fg label { display: block; font-size: 11px; color: var(--mt); margin-bottom: 4px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.ct-lp .lp-fg input, .ct-lp .lp-fg select {
  width: 100%; padding: 11px 13px; background: var(--ow); border: 1.5px solid var(--br);
  border-radius: 8px; color: var(--dk); font-family: 'DM Sans'; font-size: 14px;
  outline: none; transition: border-color .2s, box-shadow .2s; -webkit-appearance: none; appearance: none;
}
.ct-lp .lp-fg input:focus, .ct-lp .lp-fg select:focus { border-color: var(--g); box-shadow: 0 0 0 3px rgba(26,92,56,.09); background: #fff; }
.ct-lp .lp-fg input::placeholder { color: rgba(107,140,117,.65); }
.ct-lp .lp-submit { width: 100%; padding: 14px; background: linear-gradient(135deg, var(--o), var(--ob)); color: #fff; border: none; border-radius: 10px; font-family: 'DM Sans'; font-size: 16px; font-weight: 700; cursor: pointer; margin-top: 4px; transition: all .2s; }
.ct-lp .lp-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(232,118,26,.4); }
.ct-lp .lp-privacy { text-align: center; font-size: 11px; color: var(--mt); margin-top: 9px; }
.ct-lp .lp-privacy a { color: var(--g); text-decoration: none; }
.ct-lp .lp-trust { display: flex; justify-content: space-around; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--gp); }
.ct-lp .lp-ti .n { font-family: 'Bebas Neue'; font-size: 22px; color: var(--g); line-height: 1; text-align: center; }
.ct-lp .lp-ti .l { font-size: 10px; color: var(--mt); margin-top: 2px; text-align: center; }

/* ── STATS BAR ───────────────────────────────────────────── */
.ct-lp .lp-stats { background: var(--g); padding: 22px 44px; }
.ct-lp .lp-stats-in { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 14px; }
.ct-lp .lp-si { text-align: center; }
.ct-lp .lp-si .n { font-family: 'Bebas Neue'; font-size: 36px; color: #fff; line-height: 1; }
.ct-lp .lp-si .n .a { color: var(--ob); }
.ct-lp .lp-si .l { font-size: 12px; color: rgba(255,255,255,.7); margin-top: 2px; }

/* ── SECTION SHELL ───────────────────────────────────────── */
.ct-lp .lp-sec { padding: 80px 44px; }
.ct-lp .lp-sec-in { max-width: 1200px; margin: 0 auto; }
.ct-lp .lp-label { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--o); font-weight: 700; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.ct-lp .lp-label::before { content: ''; width: 22px; height: 2px; background: var(--o); border-radius: 2px; flex-shrink: 0; }
.ct-lp .lp-h2 { font-family: 'Playfair Display'; font-size: clamp(24px,3.5vw,40px); font-weight: 700; line-height: 1.2; color: var(--dk); margin-bottom: 12px; }
.ct-lp .lp-h2 .cg { color: var(--g); }
.ct-lp .lp-desc { font-size: 16px; color: var(--mt); line-height: 1.78; max-width: 600px; }

/* ── DEMO LECTURES ───────────────────────────────────────── */
.ct-lp .lp-lec-sec { background: var(--ow); }
.ct-lp .lp-lec-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 40px; }
.ct-lp .lp-lec-card { background: #fff; border: 1.5px solid var(--br); border-radius: 14px; overflow: hidden; transition: transform .22s, box-shadow .22s; }
.ct-lp .lp-lec-card:hover { transform: translateY(-5px); box-shadow: var(--shl); }
/* Gated thumbnail — click triggers lead gate popup */
.ct-lp .lp-lec-thumb {
  position: relative; aspect-ratio: 16/9; background: var(--gp);
  overflow: hidden; cursor: pointer;
}
.ct-lp .lp-lec-thumb-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ct-lp .lp-lec-ov {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  background: rgba(22,40,24,.52); transition: background .22s;
}
.ct-lp .lp-lec-thumb:hover .lp-lec-ov { background: rgba(22,40,24,.68); }
.ct-lp .lp-lec-play { width: 52px; height: 52px; border-radius: 50%; background: var(--o); display: flex; align-items: center; justify-content: center; font-size: 20px; color: #fff; box-shadow: 0 6px 24px rgba(232,118,26,.45); transition: transform .2s; }
.ct-lp .lp-lec-thumb:hover .lp-lec-play { transform: scale(1.12); }
.ct-lp .lp-lec-ov-txt { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.85); letter-spacing: .05em; text-transform: uppercase; }
.ct-lp .lp-lec-tag { position: absolute; top: 10px; left: 10px; z-index: 2; background: var(--g); color: #fff; font-size: 10px; font-weight: 700; padding: 4px 9px; border-radius: 4px; text-transform: uppercase; letter-spacing: .06em; }
.ct-lp .lp-lec-body { padding: 16px; }
.ct-lp .lp-lec-body h4 { font-size: 14px; font-weight: 600; color: var(--dk); line-height: 1.45; margin-bottom: 10px; }
.ct-lp .lp-lec-meta { display: flex; justify-content: space-between; align-items: center; }
.ct-lp .lp-lec-dur { font-size: 12px; color: var(--mt); }
.ct-lp .lp-free { background: var(--gp); color: var(--g); border: 1px solid rgba(26,92,56,.2); font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 4px; }
.ct-lp .lp-yt-card { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 36px 24px; background: var(--gp); border: 2px dashed rgba(26,92,56,.3); border-radius: 14px; }
.ct-lp .lp-yt-card .ico { font-size: 42px; margin-bottom: 12px; }
.ct-lp .lp-yt-card h4 { font-size: 15px; font-weight: 700; color: var(--dk); margin-bottom: 8px; }
.ct-lp .lp-yt-card p { font-size: 13px; color: var(--mt); margin-bottom: 16px; line-height: 1.55; }

/* ── FREE NOTES ──────────────────────────────────────────── */
.ct-lp .lp-notes-sec { background: #fff; }
.ct-lp .lp-notes-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 40px; }
.ct-lp .lp-note { background: #fff; border: 1.5px solid var(--br); border-radius: 14px; padding: 20px; transition: all .22s; position: relative; overflow: hidden; cursor: pointer; }
.ct-lp .lp-note::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--g), var(--gl)); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.ct-lp .lp-note:hover::after { transform: scaleX(1); }
.ct-lp .lp-note:hover { transform: translateY(-3px); box-shadow: var(--shl); border-color: var(--g); }
.ct-lp .lp-note-icon { width: 44px; height: 44px; background: var(--gp); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 12px; }
.ct-lp .lp-note h4 { font-size: 14px; font-weight: 600; color: var(--dk); line-height: 1.4; margin-bottom: 6px; }
.ct-lp .lp-note p { font-size: 12px; color: var(--mt); margin-bottom: 14px; line-height: 1.55; }
.ct-lp .lp-dl { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--g); font-weight: 700; background: var(--gp); border: 1px solid rgba(26,92,56,.22); padding: 7px 13px; border-radius: 6px; cursor: pointer; transition: all .2s; text-decoration: none; }
.ct-lp .lp-dl:hover { background: var(--g); color: #fff; }
.ct-lp .lp-notes-banner { margin-top: 36px; background: linear-gradient(135deg, var(--g), var(--gm)); border-radius: 18px; padding: 32px 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.ct-lp .lp-notes-banner h3 { font-family: 'Playfair Display'; font-size: 24px; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 6px; }
.ct-lp .lp-notes-banner p { font-size: 14px; color: rgba(255,255,255,.75); }

/* ── WHY ─────────────────────────────────────────────────── */
.ct-lp .lp-why-sec { background: var(--ow); }
.ct-lp .lp-feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.ct-lp .lp-feat { background: #fff; border: 1.5px solid var(--br); border-radius: 14px; padding: 26px 22px; transition: all .22s; }
.ct-lp .lp-feat:hover { border-color: var(--g); box-shadow: var(--sh); transform: translateY(-2px); }
.ct-lp .lp-feat .fi { font-size: 28px; margin-bottom: 12px; }
.ct-lp .lp-feat h4 { font-size: 16px; font-weight: 600; color: var(--dk); margin-bottom: 8px; }
.ct-lp .lp-feat p { font-size: 14px; color: var(--mt); line-height: 1.65; }
.ct-lp .lp-feat .fp { display: inline-block; margin-top: 12px; background: var(--gp); color: var(--g); font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 4px; }

/* ── MENTOR ──────────────────────────────────────────────── */
.ct-lp .lp-mentor-sec { background: var(--g); }
.ct-lp .lp-mentor-sec .lp-label { color: var(--ob); }
.ct-lp .lp-mentor-sec .lp-label::before { background: var(--ob); }
.ct-lp .lp-mentor-sec .lp-h2 { color: #fff; }
.ct-lp .lp-mentor-card { display: grid; grid-template-columns: 260px 1fr; gap: 50px; align-items: center; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: 20px; padding: 40px; margin-top: 40px; position: relative; overflow: hidden; }
.ct-lp .lp-mentor-card::after { content: '"'; position: absolute; right: 40px; top: 10px; font-family: 'Playfair Display'; font-size: 200px; color: rgba(255,255,255,.05); line-height: 1; pointer-events: none; }
.ct-lp .lp-mentor-img-wrap { position: relative; }
.ct-lp .lp-mentor-img { width: 100%; aspect-ratio: 3/4; border-radius: 14px; background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; font-size: 80px; }
.ct-lp .lp-mentor-badge { position: absolute; bottom: -14px; left: 50%; transform: translateX(-50%); background: var(--o); color: #fff; font-size: 11px; font-weight: 700; padding: 6px 16px; border-radius: 20px; white-space: nowrap; }
.ct-lp .lp-mentor-role { font-size: 11px; letter-spacing: .1em; color: rgba(255,255,255,.65); font-weight: 600; text-transform: uppercase; margin-bottom: 8px; }
.ct-lp .lp-mentor-name { font-family: 'Playfair Display'; font-size: 36px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.ct-lp .lp-mentor-bio { font-size: 15px; color: rgba(255,255,255,.82); line-height: 1.82; margin-bottom: 26px; }
.ct-lp .lp-mentor-q { font-style: italic; color: rgba(255,255,255,.92); font-weight: 500; }
.ct-lp .lp-mentor-stats { display: flex; gap: 30px; }
.ct-lp .lp-ms .n { font-family: 'Bebas Neue'; font-size: 32px; color: var(--ob); }
.ct-lp .lp-ms .l { font-size: 12px; color: rgba(255,255,255,.62); margin-top: 2px; }

/* ── TEXT TESTIMONIALS ───────────────────────────────────── */
.ct-lp .lp-testi-sec { background: #fff; }
.ct-lp .lp-testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.ct-lp .lp-testi { background: var(--gt); border: 1.5px solid var(--br); border-radius: 14px; padding: 24px; transition: all .22s; }
.ct-lp .lp-testi:hover { border-color: var(--g); box-shadow: var(--sh); }
.ct-lp .lp-stars { color: var(--o); font-size: 13px; letter-spacing: 2px; margin-bottom: 10px; }
.ct-lp .lp-tq { font-family: 'Playfair Display'; font-size: 38px; color: var(--g); opacity: .35; line-height: 1; margin-bottom: 8px; }
.ct-lp .lp-tt { font-size: 14px; color: var(--tx); line-height: 1.75; margin-bottom: 18px; }
.ct-lp .lp-ta { display: flex; align-items: center; gap: 12px; }
.ct-lp .lp-tav { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, var(--g), var(--gm)); display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 700; color: #fff; }
.ct-lp .lp-tan { font-size: 14px; font-weight: 700; color: var(--dk); }
.ct-lp .lp-tar { font-size: 12px; color: var(--g); font-weight: 500; }

/* ── VIDEO TESTIMONIALS ──────────────────────────────────── */
.ct-lp .lp-vtesti-sec { background: var(--g); }
.ct-lp .lp-vtesti-sec .lp-label { color: var(--ob); }
.ct-lp .lp-vtesti-sec .lp-label::before { background: var(--ob); }
.ct-lp .lp-vtesti-sec .lp-h2 { color: #fff; }
.ct-lp .lp-vtesti-sec .lp-desc { color: rgba(255,255,255,.72); }
/* Horizontal row layout */
.ct-lp .lp-vtesti-grid { display: flex; flex-direction: column; gap: 22px; margin-top: 40px; }
.ct-lp .lp-vtesti-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px; overflow: hidden; transition: transform .22s, box-shadow .22s;
  display: grid; grid-template-columns: 340px 1fr;
}
.ct-lp .lp-vtesti-card:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(0,0,0,.35); }
/* Video embed container — no gate */
.ct-lp .lp-vt-thumb {
  position: relative; aspect-ratio: 16/9; background: rgba(255,255,255,.06);
  overflow: hidden; width: 340px;
}
.ct-lp .lp-vt-thumb iframe { width: 100%; height: 100%; border: none; display: block; }
.ct-lp .lp-vt-thumb-placeholder {
  width: 100%; height: 100%; cursor: pointer; position: relative;
}
.ct-lp .lp-vt-thumb-placeholder img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ct-lp .lp-vt-ov {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  background: rgba(22,40,24,.45); transition: background .22s;
}
.ct-lp .lp-vt-thumb-placeholder:hover .lp-vt-ov { background: rgba(22,40,24,.62); }
.ct-lp .lp-vt-play { width: 56px; height: 56px; border-radius: 50%; background: var(--o); display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff; box-shadow: 0 6px 24px rgba(232,118,26,.5); transition: transform .2s; }
.ct-lp .lp-vt-thumb-placeholder:hover .lp-vt-play { transform: scale(1.1); }
.ct-lp .lp-vt-ov-txt { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.85); letter-spacing: .05em; text-transform: uppercase; }
/* Info panel — right side */
.ct-lp .lp-vt-info { padding: 28px 32px; display: flex; flex-direction: column; justify-content: center; }
.ct-lp .lp-vt-stars { color: var(--ob); font-size: 14px; letter-spacing: 3px; margin-bottom: 12px; }
.ct-lp .lp-vt-name { font-family: 'Playfair Display'; font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.ct-lp .lp-vt-rank { font-size: 13px; color: var(--ob); font-weight: 600; margin-bottom: 14px; letter-spacing: .04em; }
.ct-lp .lp-vt-quote { font-size: 15px; color: rgba(255,255,255,.82); line-height: 1.75; font-style: italic; border-left: 3px solid var(--ob); padding-left: 16px; margin-top: 4px; }

/* ── EXAM TABLE ──────────────────────────────────────────── */
.ct-lp .lp-exam-sec { background: var(--ow); }
.ct-lp .lp-table-wrap { background: #fff; border: 1.5px solid var(--br); border-radius: 16px; overflow: hidden; margin-top: 40px; box-shadow: var(--sh); }
.ct-lp .lp-table-wrap table { width: 100%; border-collapse: collapse; }
.ct-lp .lp-table-wrap th { background: var(--g); color: #fff; padding: 14px 20px; text-align: left; font-size: 13px; font-weight: 700; letter-spacing: .04em; }
.ct-lp .lp-table-wrap td { padding: 14px 20px; font-size: 14px; border-bottom: 1px solid var(--br); color: var(--tx); }
.ct-lp .lp-table-wrap tr:last-child td { border-bottom: none; }
.ct-lp .lp-table-wrap tr:nth-child(even) td { background: var(--gt); }
.ct-lp .lp-pill { display: inline-block; background: var(--gp); color: var(--g); font-size: 11px; padding: 3px 10px; border-radius: 50px; border: 1px solid rgba(26,92,56,.2); font-weight: 600; }

/* ── FAQ ─────────────────────────────────────────────────── */
.ct-lp .lp-faq-sec { background: #fff; }
.ct-lp .lp-faq-wrap { display: grid; grid-template-columns: 1fr 340px; gap: 60px; margin-top: 48px; align-items: start; }
.ct-lp .lp-faq-list { display: flex; flex-direction: column; }
.ct-lp .lp-faq-item { border-bottom: 1px solid var(--br); }
.ct-lp .lp-faq-item:first-child { border-top: 1px solid var(--br); }
.ct-lp .lp-faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; cursor: pointer; user-select: none; }
.ct-lp .lp-faq-qt { font-size: 15px; font-weight: 600; color: var(--dk); line-height: 1.45; flex: 1; transition: color .2s; }
.ct-lp .lp-faq-q:hover .lp-faq-qt { color: var(--g); }
.ct-lp .lp-faq-icon { width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%; background: var(--gp); border: 1.5px solid rgba(26,92,56,.2); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--g); font-weight: 700; transition: all .3s; line-height: 1; }
.ct-lp .lp-faq-item.open .lp-faq-icon { background: var(--g); color: #fff; transform: rotate(45deg); }
.ct-lp .lp-faq-ans { font-size: 14px; color: var(--mt); line-height: 1.78; max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; }
.ct-lp .lp-faq-item.open .lp-faq-ans { max-height: 400px; padding-bottom: 18px; }
.ct-lp .lp-faq-ans strong { color: var(--g); font-weight: 600; }
.ct-lp .lp-faq-ans a { color: var(--g); font-weight: 600; text-decoration: none; }
.ct-lp .lp-faq-side { position: sticky; top: 90px; }
.ct-lp .lp-faq-cta { background: linear-gradient(160deg, var(--g), var(--gm)); border-radius: 18px; padding: 30px 26px; color: #fff; margin-bottom: 20px; }
.ct-lp .lp-faq-cta h4 { font-family: 'Playfair Display'; font-size: 21px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.ct-lp .lp-faq-cta p { font-size: 14px; color: rgba(255,255,255,.8); margin-bottom: 20px; line-height: 1.65; }
.ct-lp .lp-faq-cta a { display: block; background: var(--o); color: #fff; padding: 12px 24px; border-radius: 8px; font-weight: 700; font-size: 14px; text-decoration: none; text-align: center; transition: all .2s; }
.ct-lp .lp-faq-cta a:hover { background: var(--ob); }
.ct-lp .lp-faq-tags { background: var(--ow); border: 1.5px solid var(--br); border-radius: 14px; padding: 22px 20px; }
.ct-lp .lp-faq-tags h5 { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--mt); margin-bottom: 14px; }
.ct-lp .lp-tag { display: inline-block; background: var(--gp); color: var(--g); border: 1px solid rgba(26,92,56,.2); font-size: 12px; font-weight: 600; padding: 5px 11px; border-radius: 20px; margin: 3px 3px 3px 0; text-decoration: none; transition: all .2s; }
.ct-lp .lp-tag:hover { background: var(--g); color: #fff; }

/* ── FINAL CTA ───────────────────────────────────────────── */
.ct-lp .lp-final { background: linear-gradient(135deg, var(--g), var(--gm)); padding: 84px 44px; text-align: center; position: relative; overflow: hidden; }
.ct-lp .lp-final::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% -10%, rgba(255,255,255,.08), transparent 60%); pointer-events: none; }
.ct-lp .lp-final h2 { font-family: 'Playfair Display'; font-size: clamp(28px,4.5vw,50px); color: #fff; font-weight: 900; line-height: 1.18; margin-bottom: 16px; position: relative; }
.ct-lp .lp-final > p { font-size: 17px; color: rgba(255,255,255,.78); margin: 0 auto 34px; max-width: 560px; line-height: 1.7; position: relative; }
.ct-lp .lp-final-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.ct-lp .btn-o { flex-shrink: 0; background: var(--o); color: #fff; border: none; padding: 14px 28px; border-radius: 8px; font-family: 'DM Sans'; font-size: 15px; font-weight: 700; cursor: pointer; text-decoration: none; display: inline-block; transition: all .2s; white-space: nowrap; }
.ct-lp .btn-o:hover { background: var(--ob); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(232,118,26,.4); color: #fff; }
.ct-lp .btn-o-lg { font-size: 17px !important; padding: 16px 38px !important; }
.ct-lp .btn-wo { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.55); padding: 13px 32px; border-radius: 10px; font-family: 'DM Sans'; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-block; transition: all .2s; }
.ct-lp .btn-wo:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }

/* ── WHATSAPP FLOAT ──────────────────────────────────────── */
.ct-lp-wa { position: fixed; bottom: 28px; right: 28px; z-index: 9998; width: 58px; height: 58px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; font-size: 26px; text-decoration: none; box-shadow: 0 6px 26px rgba(37,211,102,.5); transition: all .22s; }
.ct-lp-wa:hover { transform: scale(1.12); box-shadow: 0 10px 34px rgba(37,211,102,.6); }
.ct-lp-wa-lbl { position: absolute; right: 66px; top: 50%; transform: translateY(-50%); background: #162818; color: #fff; font-family: 'DM Sans'; font-size: 12px; font-weight: 600; white-space: nowrap; padding: 6px 12px; border-radius: 6px; pointer-events: none; opacity: 0; transition: opacity .2s; }
.ct-lp-wa:hover .ct-lp-wa-lbl { opacity: 1; }

/* ══════════════════════════════════════════════════════════
   LEAD GATE POPUP — redesigned, rich visuals
══════════════════════════════════════════════════════════ */