/* ============================================================
   Course View v2 — dark-mode RTL landing page  [course_view]
   ============================================================ */
.cv2 {
	--cv2-bg:        #090B1A;
	--cv2-surface:   #11142b;
	--cv2-card:      #141833;
	--cv2-card-2:    #171c3a;
	--cv2-border:    rgba(255,255,255,.08);
	--cv2-border-2:  rgba(255,255,255,.14);
	--cv2-text:      #eef0ff;
	--cv2-muted:     #9aa0c8;
	--cv2-pink:      #ff2d78;
	--cv2-pink-2:    #e60d64;
	--cv2-cyan:      #22d3ee;
	--cv2-blue:      #4f7cff;
	--cv2-green:     #34d399;
	--cv2-purple:    #a78bfa;
	--cv2-radius:    20px;

	position: relative;
	direction: rtl;
	background: var(--cv2-bg);
	color: var(--cv2-text);
	font-family: inherit;
	overflow: hidden;
	padding: 0 0 64px;
	line-height: 1.6;
}
.cv2 *, .cv2 *::before, .cv2 *::after { box-sizing: border-box; }

/* Ambient background glows */
.cv2-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.cv2-bg__glow {
	position: absolute;
	width: 520px;
	height: 520px;
	border-radius: 50%;
	filter: blur(120px);
	opacity: .35;
}
.cv2-bg__glow--pink { top: -140px; inset-inline-start: -120px; background: var(--cv2-pink); }
.cv2-bg__glow--cyan { top: 380px;  inset-inline-end: -160px; background: var(--cv2-cyan); opacity: .22; }

.cv2 > *:not(.cv2-bg) { position: relative; z-index: 1; }

/* Layout container */
.cv2-hero,
.cv2-section {
	max-width: 1120px;
	margin: 0 auto;
	padding-inline: 28px;
}
.cv2-section { margin-top: 64px; }

/* Missing state */
.cv2--missing { min-height: 50vh; display: flex; align-items: center; justify-content: center; }
.cv2-missing-box { text-align: center; color: var(--cv2-muted); }

/* ── Buttons ─────────────────────────────────────────────── */
.cv2-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 26px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	border: 1.5px solid transparent;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.cv2-btn svg { width: 18px; height: 18px; }
.cv2-btn--lg { padding: 15px 70px; font-size: 16px; }
.cv2-btn--primary {
	background: linear-gradient(135deg, var(--cv2-pink), var(--cv2-pink-2));
	color: #fff !important;
	box-shadow: 0 10px 30px rgba(255,45,120,.35);
}
.cv2-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(255,45,120,.5); }
.cv2-btn--outline {
	background: rgba(255,255,255,.03);
	color: var(--cv2-text) !important;
	border-color: var(--cv2-border-2);
}
.cv2-btn--outline:hover { border-color: var(--cv2-pink); color: #fff !important; }

/* ── Chips / badges / pills ──────────────────────────────── */
.cv2-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.cv2-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
}
.cv2-chip svg { width: 15px; height: 15px; }
.cv2-chip--hot { background: linear-gradient(135deg, var(--cv2-pink), var(--cv2-pink-2)); color: #fff; box-shadow: 0 6px 18px rgba(255,45,120,.35); }
.cv2-chip--ghost { background: rgba(255,255,255,.06); color: var(--cv2-muted); border: 1px solid var(--cv2-border); }

.cv2-badge {
	display: inline-block;
	padding: 5px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
}
.cv2-badge--green { background: rgba(52,211,153,.14); color: var(--cv2-green); }
.cv2-badge--cyan  { background: rgba(34,211,238,.14); color: var(--cv2-cyan); }
.cv2-badge--blue  { background: rgba(79,124,255,.16); color: var(--cv2-blue); }
.cv2-badge--pink  { background: linear-gradient(135deg, var(--cv2-pink), var(--cv2-pink-2)); color: #fff; }

.cv2-pill {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
}
.cv2-pill--green { background: rgba(52,211,153,.14); color: var(--cv2-green); }
.cv2-pill--blue  { background: rgba(79,124,255,.16); color: var(--cv2-blue); }

/* ── HERO ────────────────────────────────────────────────── */
.cv2-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	padding-top: 64px;
}
.cv2-hero__title {
	margin: 18px 0 14px;
	font-size: clamp(30px, 4vw, 50px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -.02em;
	color: #fff;
}
.cv2-hero__desc {
	margin: 0 0 26px;
	font-size: 17px;
	color: var(--cv2-muted);
	max-width: 60ch;
	color: #fff;
}

.cv2-hero__stats { display: flex; flex-direction: column; gap: 14px; align-items: center; }
.cv2-stat-card {
	position: relative;
	width: 100%;
	max-width: 500px;
	background: var(--cv2-card);
	border: 1px solid var(--cv2-border);
	border-radius: 16px;
	padding: 14px;
	text-align: center;
	overflow: hidden;
	animation: cv2-float 4s ease-in-out infinite;
	will-change: transform;
}
.cv2-stat-card--pink { animation-duration: 4.2s; animation-delay: 0s; }
.cv2-stat-card--cyan { animation-duration: 5.1s; animation-delay: -1.4s; }
.cv2-stat-card::before {
	content: "";
	position: absolute;
	inset-inline-start: 0; top: 0; bottom: 0;
	width: 4px;
}
.cv2-stat-card--pink::before { background: var(--cv2-pink); }
.cv2-stat-card--cyan::before { background: var(--cv2-cyan); }
.cv2-stat-card__value {
	display: block;
	font-size: 26px;
	font-weight: 800;
	letter-spacing: -.01em;
}
.cv2-stat-card--pink .cv2-stat-card__value { color: var(--cv2-pink-2); }
.cv2-stat-card--cyan .cv2-stat-card__value { color: var(--cv2-blue); }
.cv2-stat-card__label { display: block; margin-top: 4px; font-size: 13px; color: var(--cv2-muted); }

@keyframes cv2-float {
	0%, 100% { transform: translateY(-3px); }
	50%      { transform: translateY(3px); }
}

/* ── Section headings ────────────────────────────────────── */
.cv2-section__head { text-align: center; margin-bottom: 32px; }
.cv2-section__title { margin: 0; font-size: clamp(24px, 3vw, 34px); font-weight: 800; color: #fff;}
.cv2-section__subtitle { margin: 8px 0 0; color: var(--cv2-muted); font-size: 16px; color: #fff;}
.cv2-section__cta { text-align: center; margin-top: 30px; }

/* ── Grids ───────────────────────────────────────────────── */
.cv2-grid { display: grid; gap: 12px; }
.cv2-grid--2 { grid-template-columns: repeat(2, 1fr); }
.cv2-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cv2-grid--4 { grid-template-columns: repeat(4, 1fr); }
.cv2-grid--details { grid-template-columns: repeat(4, 1fr); }

/* ── Cards ───────────────────────────────────────────────── */
.cv2-card {
	position: relative;
	background: var(--cv2-card);
	border: 1px solid var(--cv2-border);
	border-radius: var(--cv2-radius);
	padding: 14px;
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.cv2-card:hover { transform: translateY(-4px); border-color: var(--cv2-border-2); box-shadow: 0 18px 40px rgba(0,0,0,.4); }
.cv2-card--accent-pink  { border-top: 3px solid var(--cv2-pink); }
.cv2-card--accent-cyan  { border-top: 3px solid var(--cv2-cyan); }
.cv2-card--accent-green { border-top: 3px solid var(--cv2-green); }
.cv2-card--full { grid-column: 1 / -1; }
.cv2-card__head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}
.cv2-card__icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 12px;
	background: rgba(255,255,255,.05);
	color: var(--cv2-pink);
}
.cv2-card--accent-cyan  .cv2-card__icon { color: var(--cv2-cyan); }
.cv2-card--accent-green .cv2-card__icon { color: var(--cv2-green); }
.cv2-card__icon svg { width: 24px; height: 24px; }
.cv2-card__head .cv2-card__title { margin: 0; }
.cv2-card__title { margin: 0 0 12px; font-size: 19px; font-weight: 800; color: #fff; }

.cv2-richtext { color: var(--cv2-muted); font-size: 15px; }
.cv2-richtext p { margin: 0 0 10px; }
.cv2-richtext ul { margin: 0; padding-inline-start: 20px; }

.cv2-bullets, .cv2-checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.cv2-bullets li, .cv2-checklist li {
	position: relative;
	padding-inline-start: 26px;
	color: var(--cv2-muted);
	font-size: 15px;
}
.cv2-bullets li::before {
	content: "";
	position: absolute;
	inset-inline-start: 4px; top: 9px;
	width: 7px; height: 7px;
	border-radius: 50%;
	background: var(--cv2-pink);
}
.cv2-checklist li::before {
	content: "✓";
	position: absolute;
	inset-inline-start: 0; top: 0;
	color: var(--cv2-green);
	font-weight: 800;
}
.cv2-card .cv2-badge { margin-top: 14px; }

/* ── Skills ──────────────────────────────────────────────── */
.cv2-skills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cv2-skill {
	padding: 9px 18px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
	border: 1px solid transparent;
	background: rgba(255,255,255,.04);
	text-transform: capitalize;
	animation: cv2-float 4.5s ease-in-out infinite;
	will-change: transform;
}
.cv2-skill:hover { animation-play-state: paused; }
/* Stagger so every chip floats separately */
.cv2-skill:nth-child(6n+1) { animation-duration: 4.2s; animation-delay: 0s; }
.cv2-skill:nth-child(6n+2) { animation-duration: 5.0s; animation-delay: -.8s; }
.cv2-skill:nth-child(6n+3) { animation-duration: 4.6s; animation-delay: -1.6s; }
.cv2-skill:nth-child(6n+4) { animation-duration: 5.4s; animation-delay: -2.3s; }
.cv2-skill:nth-child(6n+5) { animation-duration: 4.8s; animation-delay: -3.1s; }
.cv2-skill:nth-child(6n)   { animation-duration: 5.2s; animation-delay: -3.8s; }
.cv2-skill--c1 { color: var(--cv2-pink);   border-color: rgba(255,45,120,.4);  background: rgba(255,45,120,.08); }
.cv2-skill--c2 { color: var(--cv2-cyan);   border-color: rgba(34,211,238,.4);  background: rgba(34,211,238,.08); }
.cv2-skill--c3 { color: var(--cv2-blue);   border-color: rgba(79,124,255,.4);  background: rgba(79,124,255,.08); }
.cv2-skill--c4 { color: var(--cv2-green);  border-color: rgba(52,211,153,.4);  background: rgba(52,211,153,.08); }
.cv2-skill--c5 { color: var(--cv2-purple); border-color: rgba(167,139,250,.4); background: rgba(167,139,250,.08); }
.cv2-skill--c6 { color: #fbbf24;           border-color: rgba(251,191,36,.4);  background: rgba(251,191,36,.08); }

/* ── Positions ───────────────────────────────────────────── */
.cv2-positions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 22px;
}
.cv2-position {
	flex: 0 1 240px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	text-align: center;
	background: var(--cv2-card);
	border: 1px solid var(--cv2-border);
	border-radius: var(--cv2-radius);
	padding: 24px 18px;
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.cv2-position:hover { transform: translateY(-4px); border-color: var(--cv2-pink); box-shadow: 0 16px 38px rgba(0,0,0,.45); }
.cv2-position__head { display: flex; align-items: center; gap: 10px; }
.cv2-position__icon {
	width: 36px; height: 36px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 14px;
	background: rgba(255,45,120,.1);
	color: var(--cv2-pink);
}
.cv2-position__icon svg { width: 26px; height: 26px; }
.cv2-position__name { margin: 0; font-size: 17px; font-weight: 800; color: #fff;}

/* ── Course details grid ─────────────────────────────────── */
.cv2-detail {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	text-align: start;
	background: var(--cv2-card);
	border: 1px solid var(--cv2-border);
	border-radius: 16px;
	padding: 10px;
	transition: border-color .2s ease, transform .2s ease;
}
.cv2-detail:hover { border-color: var(--cv2-border-2); transform: translateY(-3px); }
.cv2-detail__top { display: flex; align-items: center; gap: 8px; }
.cv2-detail__icon { color: var(--cv2-cyan); display: inline-flex; }
.cv2-detail__icon svg { width: 22px; height: 22px; }
.cv2-detail__value { font-size: 19px; font-weight: 800; color: #fff; }
.cv2-detail__label { font-size: 13px; color: var(--cv2-muted); }

/* ── Instructor ──────────────────────────────────────────── */
.cv2-instructor__name { font-size: 20px; font-weight: 800; margin-bottom: 6px; color: #fff;}
.cv2-instructor__bio { color: var(--cv2-muted); font-size: 15px; margin: 0 0 14px; }
.cv2-instructor__badges { display: flex; flex-wrap: wrap; gap: 10px; }

/* ── Instructor (multiple → folder tabs) ─────────────────── */
.cv2-folder { margin-top: 4px; }
.cv2-folder__tabs {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 4px;
	position: relative;
	z-index: 2;
}
.cv2-folder__tab {
	font-family: inherit;
	font-size: 15px;
	font-weight: 700;
	color: var(--cv2-muted);
	background: rgba(255,255,255,.03);
	border: 1px solid var(--cv2-border);
	border-bottom: none;
	border-radius: 12px 12px 0 0;
	padding: 9px 16px;
	margin-bottom: -1px;
	cursor: pointer;
	max-width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: color .15s ease, background .15s ease, transform .15s ease;
}
.cv2-folder__tab:hover,
.cv2-folder__tab:focus-visible {
	color: var(--cv2-text);
	background: rgba(34,211,238,.08);
	outline: none;
}
.cv2-folder__tab.is-active {
	color: var(--cv2-cyan);
	background: var(--cv2-card-2);
	border-color: var(--cv2-border-2);
	border-bottom: 1px solid var(--cv2-card-2);
	transform: translateY(1px);
}
.cv2-folder__body {
	position: relative;
	z-index: 1;
	background: var(--cv2-card-2);
	border: 1px solid var(--cv2-border-2);
	border-radius: 0 12px 12px 12px;
	padding: 18px;
}
.cv2-folder__panel[hidden] { display: none; }
.cv2-folder__panel .cv2-instructor__bio:last-child,
.cv2-folder__panel .cv2-instructor__badges:last-child { margin-bottom: 0; }

/* ── Registration form ───────────────────────────────────── */
.cv2-register {
	background: var(--cv2-card-2);
	border: 1px solid var(--cv2-border-2);
	border-radius: var(--cv2-radius);
	padding: 32px 28px;
}
.cv2-register__head { text-align: center; margin-bottom: 24px; }
.cv2-register__title {
	font-size: 26px;
	font-weight: 800;
	color: #fff;
	margin: 0 0 6px;
}
.cv2-register__course {
	font-size: 18px;
	font-weight: 700;
	color: var(--cv2-cyan);
	margin: 0 0 12px;
}
.cv2-register__note {
	font-size: 13px;
	font-weight: 700;
	color: var(--cv2-pink);
	margin: 0 0 10px;
}
.cv2-register__sub {
	font-size: 15px;
	color: var(--cv2-muted);
	max-width: 620px;
	margin: 0 auto;
}
.cv2-register__form { max-width: 620px; margin: 0 auto; }

/* ── Academy banner ──────────────────────────────────────── */
.cv2-academy {
	margin-top: 22px;
	display: flex;
	align-items: center;
	gap: 22px;
	background: linear-gradient(135deg, rgba(34,211,238,.08), rgba(79,124,255,.08));
	border: 1px solid var(--cv2-border);
	border-radius: var(--cv2-radius);
	padding: 24px 28px;
}
.cv2-academy__logo {
	flex: 0 0 auto;
	width: 84px; height: 84px;
	border-radius: 16px;
	background: #fff;
	display: flex; align-items: center; justify-content: center;
	overflow: hidden;
	padding: 8px;
}
.cv2-academy__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.cv2-academy__logo-ph { color: var(--cv2-pink); }
.cv2-academy__logo-ph svg { width: 40px; height: 40px; }
.cv2-academy__name { margin: 0 0 6px; font-size: 19px; font-weight: 800; color: #fff; }
.cv2-academy__desc { margin: 0; color: var(--cv2-muted); font-size: 15px; color: #fff;}

/* ── Salary & pricing ────────────────────────────────────── */
/* Whole section sits in a narrower ~80% column */
.cv2-section--narrow { max-width: 900px; width: 80%; }

.cv2-salary__stats {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 18px;
}
.cv2-salary__stat {
	flex: 1 1 0;
	min-width: 160px;
	max-width: 310px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	background: var(--cv2-card);
	border: 1px solid var(--cv2-border);
	border-radius: 16px;
	padding: 22px 18px;
	text-align: center;
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.cv2-salary__stat:hover { transform: translateY(-3px); border-color: var(--cv2-border-2); box-shadow: 0 14px 34px rgba(0,0,0,.4); }
.cv2-salary__value { font-size: 30px; font-weight: 800; color: var(--cv2-blue); display: inline-flex; align-items: center; justify-content: center; gap: 6px; }
.cv2-salary__value svg { width: 24px; height: 24px; }
.cv2-salary__value--up { color: var(--cv2-green); }
.cv2-salary__value--red { color: var(--cv2-pink-2); }
.cv2-salary__label { font-size: 14px; color: var(--cv2-muted); }
.cv2-salary__note { margin: 24px auto; max-width: 70ch; color: var(--cv2-muted); font-size: 15px; text-align: center; }

.cv2-pricing {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}
.cv2-price-card {
	position: relative;
	background: var(--cv2-card);
	border: 1px solid var(--cv2-border);
	border-radius: var(--cv2-radius);
	padding: 14px;
	text-align: center;
}
.cv2-price-card--featured {
	border-color: var(--cv2-pink);
	background: linear-gradient(160deg, rgba(255,45,120,.12), rgba(20,24,51,.6));
	box-shadow: 0 14px 40px rgba(255,45,120,.18);
}
.cv2-price-card__badge { position: absolute; top: -13px; inset-inline-end: 22px; }
.cv2-price-card__label { display: block; font-size: 14px; color: var(--cv2-muted); }
.cv2-price-card__value { display: block; font-size: 38px; font-weight: 800; color: #fff; }
.cv2-price-card__value--old { color: var(--cv2-muted); text-decoration: line-through; text-decoration-color: rgba(255,255,255,.35); }
.cv2-price-card__save { display: inline-block; margin-top: 10px; color: var(--cv2-green); font-weight: 700; font-size: 14px; }

/* ── Admin theme switcher ────────────────────────────────── */
.cv2-theme-switch {
	position: sticky;
	top: 12px;
	z-index: 20;
	display: flex;
	gap: 6px;
	width: max-content;
	margin: 14px auto 0;
	padding: 5px;
	border-radius: 999px;
	background: rgba(20,24,51,.7);
	border: 1px solid var(--cv2-border-2);
	backdrop-filter: blur(8px);
}
.cv2-theme-btn {
	border: 0;
	cursor: pointer;
	padding: 7px 16px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	font-family: inherit;
	color: var(--cv2-muted);
	background: transparent;
	transition: background .15s ease, color .15s ease;
}
.cv2-theme-btn:hover { color: var(--cv2-text); }
.cv2-theme-btn.is-active {
	color: #fff;
	background: linear-gradient(135deg, var(--cv2-pink), var(--cv2-pink-2));
}

/* ── Theme 2: solid black background ─────────────────────── */
.cv2--black { background: #000; }
.cv2--black .cv2-bg { display: none; }

/* ── Theme 3: light (white) ──────────────────────────────── */
.cv2--light {
	--cv2-bg:       #f4f6fb;
	--cv2-surface:  #ffffff;
	--cv2-card:     #ffffff;
	--cv2-card-2:   #f8fafc;
	--cv2-border:   rgba(15,23,42,.10);
	--cv2-border-2: rgba(15,23,42,.18);
	--cv2-text:     #0f172a;
	--cv2-muted:    #5b6178;
}
.cv2--light .cv2-bg { display: none; }
.cv2--light .cv2-theme-switch { background: rgba(255,255,255,.85); }
/* Re-map hard-coded whites so text stays visible on light surfaces */
.cv2--light .cv2-stat-card--pink .cv2-stat-card__value,
.cv2--light .cv2-detail__value,
.cv2--light .cv2-salary__value,
.cv2--light .cv2-price-card__value,
.cv2--light .cv2-hero__title,
.cv2--light .cv2-section__title,
.cv2--light .cv2-card__title,
.cv2--light .cv2-position__name,
.cv2--light .cv2-instructor__name,
.cv2--light .cv2-academy__name { color: var(--cv2-text); }
.cv2--light .cv2-section__subtitle,
.cv2--light .cv2-hero__desc,
.cv2--light .cv2-academy__desc { color: var(--cv2-muted); }
.cv2--light .cv2-card__icon { background: rgba(15,23,42,.05); }
.cv2--light .cv2-chip--ghost { background: rgba(15,23,42,.05); }
.cv2--light .cv2-skill { background: rgba(15,23,42,.03); }
.cv2--light .cv2-btn--outline { background: rgba(15,23,42,.03); }
.cv2--light .cv2-card:hover,
.cv2--light .cv2-position:hover,
.cv2--light .cv2-salary__stat:hover { box-shadow: 0 14px 34px rgba(15,23,42,.12); }
.cv2--light .cv2-academy { background: linear-gradient(135deg, rgba(34,211,238,.10), rgba(79,124,255,.10)); }
.cv2--light .cv2-price-card--featured { background: linear-gradient(160deg, rgba(255,45,120,.10), #ffffff); }
.cv2--light .cv2-price-card__value--old { text-decoration-color: rgba(15,23,42,.35); }

/* ── Floating bottom CTA bar ─────────────────────────────── */
.cv2-floatbar {
	/* Self-contained vars: the bar is moved to <body>, outside .cv2 scope. */
	--cv2-pink: #ff2d78;
	--cv2-pink-2: #e60d64;
	position: fixed;
	inset-inline: 0;
	bottom: 20px;
	z-index: 9999;
	width: min(740px, 92%);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 14px 24px;
	background: #ffffff;
	color: #0f172a;
	border-radius: 16px;
	box-shadow: 0 16px 44px rgba(0,0,0,.4);
	opacity: 0;
	visibility: hidden;
	transform: translateY(120%);
	transition: opacity .35s ease, transform .4s cubic-bezier(.2,.8,.25,1), visibility .35s;
}
.cv2-floatbar.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.cv2-floatbar__cta { flex: 0 0 auto; white-space: nowrap; }
.cv2-floatbar__info { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; min-width: 0; }
.cv2-floatbar__title { font-size: 16px; font-weight: 700; color: #0f172a; }
.cv2-floatbar__price { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.cv2-floatbar__now { font-size: 19px; font-weight: 800; color: var(--cv2-pink-2); }
.cv2-floatbar__old { font-size: 14px; color: #94a3b8; text-decoration: line-through; }
.cv2-floatbar__save {
	font-size: 12px;
	font-weight: 700;
	color: #0a8f5b;
	background: rgba(52,211,153,.18);
	padding: 3px 10px;
	border-radius: 999px;
}

.msg_form_24_tu   { color: #fff !important;}
.msg_form_24_desc { color: #fff !important;}
.gfield_label.gform-field-label { color: #fff !important;}
.gform-field-label.gform-field-label { color: #fff !important;}
.gform-body.gform_body { padding: 0px !important; }
@media (max-width: 768px) {
	body .gform_wrapper { padding-left: 0px !important; padding-right: 0px !important; }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
	.cv2-grid--4, .cv2-grid--details { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
	.cv2-section--narrow { width: auto; max-width: 1120px; }
	.cv2-hero { grid-template-columns: 1fr; gap: 28px; padding-top: 44px; }
	.cv2-grid--3 { grid-template-columns: 1fr; }
	.cv2-grid--4, .cv2-grid--details { grid-template-columns: repeat(2, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
	.cv2-stat-card,
	.cv2-skill { animation: none !important; }
}
@media (max-width: 560px) {
	.cv2-hero, .cv2-section { padding-inline: 16px; }
	.cv2-section { margin-top: 46px; }
	.cv2-grid--2, .cv2-grid--4 { grid-template-columns: 1fr; }
	.cv2-pricing { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.cv2-salary__stats { flex-direction: column; gap: 22px; }
	.cv2-salary__stat { max-width: none; width: 100%; }
	.cv2-academy { flex-direction: column; text-align: center; }
	.cv2-floatbar { gap: 12px; padding: 12px 16px; }
	.cv2-floatbar__cta { padding: 11px 18px; font-size: 14px; }
	.cv2-floatbar__title { font-size: 13px; }
	.cv2-floatbar__now { font-size: 16px; }
	.cv2-floatbar__old { display: none; }

	/* 1a. Course details: 2 per row */
	.cv2-grid--details { grid-template-columns: repeat(2, 1fr); gap: 10px; }

	/* 1b. Positions: 2 per row */
	.cv2-positions { gap: 12px; }
	.cv2-position { flex: 1 1 calc(50% - 6px); min-width: 0; padding: 18px 12px; }

	/* Hero layout: stack as a single column, with the stats block placed
	   between the intro text and the CTA. `display: contents` lets the
	   intro's children participate directly in the hero flex flow so the
	   button (last child of the intro) can be ordered after the stats. */
	.cv2-hero { display: flex; flex-direction: column; }
	.cv2-hero__intro { display: contents; }
	.cv2-hero__stats { order: 1; flex-direction: row; gap: 10px; width: 100%; }
	.cv2-hero__stats .cv2-stat-card { flex: 1 1 0; max-width: none; }

	/* 2. Hero primary CTA (לפרטי הקורס): full width, below the stats */
	.cv2-hero__intro .cv2-btn--primary.cv2-btn--lg {
		order: 2;
		display: flex;
		width: 100%;
		padding-inline: 24px;
	}

	/* 3. Registration form (Gravity Form 24): full-width fields.
	   Gravity Forms 2.5+ lays fields out on a 12-col grid, so collapse it
	   to a single column and let every field span the full row. */
	.cv2-register__form .gform_fields { grid-template-columns: 1fr !important; }
	.cv2-register__form .gfield { grid-column: 1 / -1 !important; width: 100% !important; max-width: 100% !important; }
	.cv2-register__form .ginput_container { width: 100% !important; max-width: 100% !important; }
	.cv2-register__form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]),
	.cv2-register__form select,
	.cv2-register__form textarea { width: 100% !important; max-width: 100% !important; box-sizing: border-box; }
	.cv2-register__form .cob-form { width: 100% !important; padding: 0px !important;}

	/* 4. Institute chip: keep on one line (no 2-line wrap) while staying
	   inline next to the hot chips. */
	.cv2-chip--ghost { white-space: nowrap; }
}
