@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800;900&display=swap');

:root {
	--bg: #0c111b;
	--page-bg: #0c111b;
	--page-bg-2: #10192a;
	--page-glow-1: rgba(17, 210, 143, 0.12);
	--page-glow-2: rgba(31, 123, 242, 0.22);
	--surface: #ffffff;
	--ink: #edf2ff;
	--muted: #9ea9be;
	--primary: #1f7bf2;
	--primary-strong: #135ec7;
	--accent: #11d28f;
	--line: #1c273b;
	--glass-bg: rgba(18, 30, 49, 0.56);
	--glass-bg-strong: rgba(17, 28, 46, 0.72);
	--glass-border: rgba(174, 207, 255, 0.2);
	--glass-highlight: rgba(255, 255, 255, 0.08);
	--radius: 18px;
	--shadow: 0 12px 32px rgba(6, 8, 12, 0.45);
}

body[data-theme='light'] {
	--page-bg: #eaf6ff;
	--page-bg-2: #dcefff;
	--page-glow-1: rgba(56, 162, 255, 0.16);
	--page-glow-2: rgba(120, 196, 255, 0.14);
	--ink: #0f2340;
	--muted: #52657d;
	--surface: #ffffff;
	--line: rgba(74, 128, 183, 0.14);
	--glass-bg: rgba(247, 252, 255, 0.78);
	--glass-bg-strong: rgba(240, 249, 255, 0.92);
	--glass-border: rgba(90, 154, 214, 0.18);
	--glass-highlight: rgba(255, 255, 255, 0.88);
	--shadow: 0 12px 30px rgba(31, 68, 110, 0.09);
	color: var(--ink);
}
/* ===== COURSE CARD PERFECT ALIGNMENT ===== */
.course-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	align-items: stretch;
	padding: 12px 0;
}

.course-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 22px;
	border-radius: 16px;
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.course-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 14px 36px rgba(31, 123, 242, 0.18);
}

.course-card img {
	width: 100%;
	height: 160px !important;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 16px !important;
	flex-shrink: 0;
}

.course-card h4 {
	font-size: 17px;
	font-weight: 700;
	margin: 0 0 9px 0;
	line-height: 1.35;
	min-height: 48px;
	line-clamp: 2;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.course-card > p:not(.price) {
	font-size: 13px;
	color: var(--muted);
	line-height: 1.55;
	margin: 0 0 10px 0;
	padding: 0;
	min-height: 60px;
	line-clamp: 3;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.course-meta {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	margin: 0 0 11px 0;
	min-height: 56px;
	align-content: flex-start;
}

.course-points {
	list-style: none;
	padding: 11px 0;
	margin: 0 0 11px 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.course-points li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 13px;
	color: var(--muted);
	line-height: 1.4;
	padding: 0;
}

.price {
	font-size: 20px;
	font-weight: 800;
	color: #1f7bf2;
	margin: 11px 0 15px 0;
	padding: 0;
}

/* Buttons always at bottom */
.course-card > p:last-child {
	margin-top: auto;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 11px;
}

.course-card > p:last-child a.btn {
	width: 100%;
	text-align: center;
	padding: 12px 9px;
	font-size: 13px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
}

body[data-theme='light'] .course-card h4 {
	color: #0f2340;
}

body[data-theme='light'] .course-points li {
	color: #3a5068;
}

body[data-theme='light'] .course-points {
	border-color: rgba(31, 123, 242, 0.12);
}

/* ===== COURSE DETAIL PAGE ===== */
.course-hero {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 32px;
	align-items: start;
	padding: 36px 0 28px;
	margin-bottom: 32px;
	border-bottom: 1px solid var(--line);
}

.course-hero-left {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.course-hero-left h1 {
	font-size: clamp(26px, 4vw, 42px);
	font-weight: 800;
	margin: 0;
	line-height: 1.15;
	background: linear-gradient(90deg, #1f7bf2, #11d28f);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.course-hero-left p {
	font-size: 16px;
	color: var(--muted);
	line-height: 1.6;
	margin: 0;
	max-width: 60ch;
}

.course-hero-tags {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.course-hero-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	align-items: center;
	margin-top: 8px;
}

.course-hero-actions .btn {
	padding: 12px 24px;
	font-size: 15px;
	border-radius: 12px;
	min-width: 130px;
	text-align: center;
}

.course-snapshot {
	background: var(--glass-bg-strong);
	border: 1px solid var(--glass-border);
	border-radius: 18px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	position: sticky;
	top: 90px;
}

.course-snapshot h4 {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	color: var(--ink);
}

.course-snapshot .price {
	font-size: 26px;
	font-weight: 800;
	color: #1f7bf2;
	margin: 0;
}

.course-snapshot p {
	font-size: 13px;
	color: var(--muted);
	line-height: 1.55;
	margin: 0;
}

.snapshot-tags {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

@media (max-width: 860px) {
	.course-hero {
		grid-template-columns: 1fr;
	}

	.course-snapshot {
		position: static;
	}
}

.header-row {
	min-height: 68px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 0 20px;
}

.brand-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	flex-shrink: 0;
}

.brand-logo-icon {
	flex-shrink: 0;
	filter: drop-shadow(0 4px 12px rgba(31,123,242,0.4));
	transition: transform 0.25s ease;
}

.brand-link:hover .brand-logo-icon {
	transform: rotate(-6deg) scale(1.08);
}

.brand-name {
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.3px;
	background: linear-gradient(90deg, #ffffff 0%, #a8cfff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	white-space: nowrap;
}

body[data-theme='light'] .brand-name {
	background: linear-gradient(90deg, #0d2a52 0%, #1f7bf2 100%);
	-webkit-background-clip: text;
	background-clip: text;
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-left: auto;
}

.nav-item-link {
	text-decoration: none;
	color: rgba(200, 220, 255, 0.82);
	padding: 8px 14px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.2px;
	transition: background 0.2s ease, color 0.2s ease;
	white-space: nowrap;
}

.nav-item-link:hover {
	background: rgba(31, 123, 242, 0.14);
	color: #e8f3ff;
}

body[data-theme='light'] .nav-item-link {
	color: #1a3a5c;
}

body[data-theme='light'] .nav-item-link:hover {
	background: rgba(31, 123, 242, 0.1);
	color: #1f7bf2;
}

.nav-signup {
	padding: 9px 20px !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	border-radius: 10px !important;
	background: linear-gradient(135deg, #1f7bf2, #11d28f) !important;
	box-shadow: 0 6px 20px rgba(31,123,242,0.35) !important;
	margin-left: 4px;
	letter-spacing: 0.3px;
	transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.nav-signup:hover {
	transform: translateY(-2px) !important;
	box-shadow: 0 10px 28px rgba(31,123,242,0.45) !important;
}

.theme-toggle {
	margin-left: 8px;
	padding: 8px 14px;
	border-radius: 10px;
	border: 1px solid rgba(255,255,255,0.12);
	background: rgba(255,255,255,0.06);
	color: rgba(200,220,255,0.85);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
	transition: all 0.2s ease;
	letter-spacing: 0.2px;
}

.theme-toggle:hover {
	background: rgba(255,255,255,0.12);
	border-color: rgba(255,255,255,0.22);
	transform: translateY(-1px);
}

body[data-theme='light'] .theme-toggle {
	background: #f0f7ff;
	border-color: rgba(31,123,242,0.25);
	color: #1a3a5c;
	box-shadow: 0 2px 8px rgba(31,123,242,0.1);
}

body[data-theme='light'] .theme-toggle:hover {
	background: #ddeeff;
	border-color: rgba(31,123,242,0.4);
}

@media (max-width: 768px) {
	.brand-name { font-size: 17px; }
	.nav-item-link {
		padding: 7px 10px;
		font-size: 13px;
	}
	.theme-toggle {
		padding: 7px 10px;
		font-size: 12px;
	}
	.nav-signup {
		padding: 8px 14px !important;
		font-size: 13px !important;
	}
}

@media (max-width: 560px) {
	.header-row { padding: 0 14px; min-height: 60px; }
	.main-nav { gap: 2px; }
	.nav-item-link { padding: 6px 8px; font-size: 12px; }
	.theme-toggle { display: none; }
}

.brand-badge {
	width: 12px;
	height: 12px;
	border-radius: 99px;
	background: linear-gradient(135deg, var(--accent), #f0c638);
	box-shadow: 0 0 0 4px rgba(233, 149, 47, 0.22);
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	margin-left: auto;
}

.theme-toggle {
	border: 1px solid var(--glass-border);
	background: var(--glass-bg);
	color: var(--ink);
	backdrop-filter: blur(10px) saturate(140%);
	-webkit-backdrop-filter: blur(10px) saturate(140%);
	box-shadow: none;
}

body[data-theme='light'] .theme-toggle {
	background: rgba(244, 251, 255, 0.92);
	border-color: rgba(90, 154, 214, 0.16);
}

.theme-toggle:hover {
	transform: translateY(-1px);
}

.main-nav a {
	text-decoration: none;
	color: #b7c2d9;
	padding: 8px 14px;
	border-radius: 8px;
	transition: background 0.2s ease, color 0.2s ease;
	font-size: 14px;
}

body[data-theme='light'] .main-nav a {
	color: #1d446c;
	background: rgba(255, 255, 255, 0.54);
	border: 1px solid rgba(72, 132, 189, 0.16);
	box-shadow: 0 6px 16px rgba(73, 122, 171, 0.08);
}

body[data-theme='light'] .main-nav a:hover,
body[data-theme='light'] .main-nav a.active {
	background: linear-gradient(180deg, rgba(80, 166, 243, 0.26), rgba(39, 118, 194, 0.22));
	color: #08396f;
	border-color: rgba(39, 118, 194, 0.26);
	box-shadow: 0 10px 20px rgba(39, 118, 194, 0.12);
}

.main-nav a:hover,
.main-nav a.active {
	background: rgba(26, 38, 61, 0.72);
	color: #f4f8ff;
}

.main-nav a:not(.btn):hover,
.main-nav a:not(.btn).active {
	background: rgba(31, 123, 242, 0.12);
	color: #e6f0ff;
}

body[data-theme='light'] .main-nav a:hover,
body[data-theme='light'] .main-nav a.active {
	background: linear-gradient(180deg, rgba(80, 166, 243, 0.26), rgba(39, 118, 194, 0.22));
	color: #08396f;
	border-color: rgba(39, 118, 194, 0.26);
	box-shadow: 0 10px 20px rgba(39, 118, 194, 0.12);
}

body[data-theme='light'] .brand,
body[data-theme='light'] .section-head h3,
body[data-theme='light'] .videos-heading h2,
body[data-theme='light'] .course-card h3,
body[data-theme='light'] .course-card h4,
body[data-theme='light'] .feature-card h4,
body[data-theme='light'] .quote-card h5,
body[data-theme='light'] .metric-value,
body[data-theme='light'] .price,
body[data-theme='light'] .hero h2 {
	color: #12355f;
}

.btn,
button.btn {
	border: 0;
	border-radius: 12px;
	padding: 11px 16px;
	background: linear-gradient(135deg, var(--primary), var(--primary-strong));
	color: #fff;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 8px 20px rgba(9, 83, 57, 0.2);
}

.btn:hover,
button.btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 24px rgba(9, 83, 57, 0.25);
}

.btn-secondary {
	background: var(--glass-bg);
	color: var(--ink);
	border: 1px solid var(--glass-border);
	box-shadow: none;
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary), var(--primary-strong));
	color: #fff;
	border: 0;
	padding: 10px 18px;
	font-size: 14px;
	font-weight: 600;
	box-shadow: 0 6px 16px rgba(31, 123, 242, 0.24);
}

.btn-primary:hover {
	box-shadow: 0 8px 20px rgba(31, 123, 242, 0.32);
}

body[data-theme='light'] .btn,
body[data-theme='light'] button.btn {
	box-shadow: 0 10px 22px rgba(56, 162, 255, 0.16);
}

body[data-theme='light'] .btn-secondary {
	background: rgba(244, 251, 255, 0.92);
	border-color: rgba(90, 154, 214, 0.16);
}

.btn-danger {
	background: linear-gradient(135deg, #b33b2f, #91281f);
	box-shadow: 0 8px 20px rgba(145, 40, 31, 0.22);
}

/* Main content wrapper with side spacing */
.wrap {
	padding: 0 44px;
	max-width: 1400px;
	margin: 0 auto;
}

.hero {
	margin-top: 26px;
	border: 1px solid var(--glass-border);
	border-radius: calc(var(--radius) + 6px);
	background:
		linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 45%),
		var(--glass-bg-strong);
	-webkit-backdrop-filter: blur(16px) saturate(150%);
	backdrop-filter: blur(16px) saturate(150%);
	box-shadow: var(--shadow);
	padding: 48px 42px 44px 58px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.98fr);
	gap: 44px;
	align-items: center;
}

.hero-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 620px;
	padding-top: 10px;
	padding-left: 18px;
}

.hero h2 {
	margin: 0 0 12px;
	font-family: 'Archivo', sans-serif;
	font-size: clamp(34px, 4.5vw, 58px);
	line-height: 1.03;
}

.hero p {
	margin: 0;
	color: var(--muted);
	max-width: 54ch;
	font-size: 18px;
	line-height: 1.56;
}

body[data-theme='light'] .hero p,
body[data-theme='light'] .section-lead,
body[data-theme='light'] .muted,
body[data-theme='light'] .metric-label,
body[data-theme='light'] .code-foot,
body[data-theme='light'] .quote-card p,
body[data-theme='light'] .course-points li {
	color: #55708a;
}

body[data-theme='light'] .hero,
body[data-theme='light'] .code-panel,
body[data-theme='light'] .metric-box,
body[data-theme='light'] .stat-card,
body[data-theme='light'] .feature-card,
body[data-theme='light'] .quote-card,
body[data-theme='light'] .course-card,
body[data-theme='light'] .panel,
body[data-theme='light'] .video-feature-card,
body[data-theme='light'] .instructor-side,
body[data-theme='light'] .playground-art,
body[data-theme='light'] .form-inline,
body[data-theme='light'] .stack,
body[data-theme='light'] .checkout-card,
body[data-theme='light'] .table-wrap {
	background:
		linear-gradient(160deg, rgba(255, 255, 255, 0.7), transparent 46%),
		var(--glass-bg-strong);
	border-color: rgba(90, 154, 214, 0.14);
}

body[data-theme='light'] .pill,
body[data-theme='light'] .tag {
	background: rgba(244, 251, 255, 0.92);
	border-color: rgba(90, 154, 214, 0.16);
	color: #18456d;
}

.section-lead {
	margin: 0 0 14px;
	color: #b8c4da;
	max-width: 82ch;
}

/* Courses hero: large heading block for 'Hands-on Hardware Design and Verification courses' */
/* Use centered section-head for courses; no framed hero */

@media (max-width: 900px) {
	.courses-head .btn { margin-top: 18px; }
}


.pill-row {
	display: flex;
	gap: 11px;
	flex-wrap: wrap;
	margin-top: 22px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
	margin-top: 20px;
}

.hero-actions .btn {
	min-width: 190px;
}

/* ---------- Navbar / SaaS header styles (ThinkSiliconAcademy) ---------- */
.site-header {
	transition: transform 300ms ease, opacity 350ms ease, box-shadow 250ms ease;
	will-change: transform, opacity;
}

.site-header.fade-in {
	animation: navbarEntrance 520ms cubic-bezier(.2,.9,.2,1) forwards;
}

@keyframes navbarEntrance {
	from { transform: translateY(-8px); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}

.brand-link { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo { flex: 0 0 40px; width: 40px; height: 40px; filter: drop-shadow(0 6px 18px rgba(31,123,242,0.12)); }
.brand-text { font-weight: 700; font-family: 'Poppins', 'Inter', sans-serif; font-size: 16px; letter-spacing: 0.6px; color: var(--ink); }

.nav-list { list-style: none; margin: 0; padding: 0; display:flex; gap: 8px; align-items:center; }
.nav-item { position: relative; }
.nav-link { color: #b8c8e6; padding: 8px 12px; border-radius: 8px; display:inline-flex; align-items:center; gap:8px; font-weight:600; }
.nav-link .caret { opacity:0.7; font-size:12px }
.nav-link:hover { color: #e6f3ff; text-decoration: none; box-shadow: 0 6px 20px rgba(31,123,242,0.12); }

.nav-dropdown .dropdown {
	position: absolute; left: 0; top: 100%; min-width: 220px; margin-top: 10px; padding: 12px; border-radius: 12px;
	background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
	border: 1px solid rgba(127,169,255,0.06); box-shadow: 0 18px 40px rgba(8,20,40,0.6);
	opacity: 0; transform: translateY(-6px); pointer-events: none; transition: opacity 220ms ease, transform 220ms ease;
}
.nav-dropdown:hover .dropdown { opacity: 1; transform: translateY(0); pointer-events: auto; }
.nav-dropdown .dropdown ul { list-style:none; margin:0; padding:0; }
.nav-dropdown .dropdown a { display:block; padding:10px 12px; color: var(--ink); text-decoration:none; border-radius:8px; font-size:14px; }
.nav-dropdown .dropdown a:hover { background: rgba(31,123,242,0.08); color: #eaf6ff; }

.header-actions { display: flex; gap:10px; align-items:center; margin-left: 18px; }
.icon-btn { display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:8px; border-radius:10px; background: transparent; border:1px solid transparent; color:var(--ink); cursor:pointer; }
.icon-btn svg { display:block; }
.cart-btn { position: relative; }
.cart-badge { position:absolute; right:-6px; top:-6px; background: linear-gradient(135deg,#2ea0ff,#1f7bf2); color:#fff; font-size:11px; padding:2px 6px; border-radius:999px; box-shadow: 0 6px 14px rgba(31,123,242,0.26); }

.btn-primary { border-radius: 10px; padding: 9px 14px; }
.btn-secondary { border-radius: 10px; padding: 8px 12px; }

.hamburger { display:none; width:44px; height:36px; background:transparent; border:0; position:relative; }
.hamburger span { display:block; height:2px; background:rgba(255,255,255,0.12); margin:6px 8px; border-radius:2px; transition: transform 180ms ease, opacity 180ms ease; }

/* Mobile drawer */
.mobile-drawer { position: fixed; inset: 0; z-index: 80; pointer-events: none; opacity: 0; transition: opacity 300ms ease; }
.mobile-drawer.open { pointer-events: auto; opacity: 1; }
.mobile-inner { position: absolute; right: 0; top: 0; width: 78%; max-width: 360px; height: 100%; background: linear-gradient(180deg, rgba(8,12,20,0.96), rgba(12,18,30,0.98)); box-shadow: -20px 0 40px rgba(2,8,20,0.6); transform: translateX(18%); transition: transform 320ms cubic-bezier(.2,.9,.2,1); }
.mobile-drawer.open .mobile-inner { transform: translateX(0); }
.mobile-top { display:flex; align-items:center; justify-content:space-between; padding:18px; border-bottom:1px solid rgba(255,255,255,0.03); }
.mobile-list { list-style:none; padding:18px; margin:0; display:flex; flex-direction:column; gap:12px; }
.mobile-list a { padding:12px 14px; border-radius:10px; color:var(--ink); text-decoration:none; }

/* Hover glow */
.nav-link:hover, .btn-primary:hover { box-shadow: 0 8px 28px rgba(31,123,242,0.18); transform: translateY(-2px); }

@media (max-width: 860px) {
	.main-nav { display:none; }
	.hamburger { display:inline-flex; }
	.header-actions .btn { display:none; }
	.brand-text { display:none; }
}


.pill {
	padding: 7px 11px;
	border-radius: 999px;
	border: 1px solid var(--glass-border);
	background: var(--glass-bg);
	color: var(--ink);
	font-size: 13px;
	font-weight: 600;
}

.code-panel {
	align-self: stretch;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	min-height: 432px;
	border-radius: 22px;
	border: 1px solid var(--glass-border);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 52%),
		rgba(10, 18, 32, 0.62);
	-webkit-backdrop-filter: blur(14px) saturate(140%);
	backdrop-filter: blur(14px) saturate(140%);
	padding: 0;
	overflow: hidden;
	position: relative;
}

.code-panel-chip {
	position: absolute;
	top: 30px;
	right: 30px;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.16);
	color: #cbd6ea;
	font-size: 12px;
	z-index: 2;
}

.code-panel-top {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 24px 24px 14px;
	height: 58px;
	background: rgba(30, 52, 88, 0.48);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.code-dot {
	width: 12px;
	height: 12px;
	border-radius: 999px;
	display: inline-block;
}

.dot-red { background: #f75d57; }
.dot-yellow { background: #f6c04f; }
.dot-green { background: #34c759; }

.code-panel-body {
	padding: 18px 22px 10px;
	flex: 1;
}

.code-panel pre {
	margin: 0;
	padding: 0;
	font-family: 'Consolas', 'Courier New', monospace;
	font-size: 14px;
	line-height: 1.82;
	color: #eef4ff;
	overflow-x: auto;
	white-space: pre;
}

.code-panel-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 14px 18px 18px;
}

.code-foot {
	margin: 0;
	font-size: 12px;
	color: #86f1c5;
	text-align: left;
	white-space: nowrap;
}

.code-foot-alt {
	color: #92a7cd;
	text-align: right;
}

.quick-metrics {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	margin-top: 14px;
}

.metric-box {
	border: 1px solid var(--glass-border);
	background:
		linear-gradient(160deg, rgba(255, 255, 255, 0.07), transparent 45%),
		var(--glass-bg);
	-webkit-backdrop-filter: blur(12px) saturate(140%);
	backdrop-filter: blur(12px) saturate(140%);
	border-radius: 14px;
	padding: 14px;
}

.metric-value {
	margin: 0;
	font-size: 24px;
	font-family: 'Archivo', sans-serif;
}

.metric-label {
	margin: 5px 0 0;
	font-size: 12px;
	color: var(--muted);
}

.stat-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.stat-card {
	border-radius: 14px;
	border: 1px solid var(--glass-border);
	background: var(--glass-bg);
	-webkit-backdrop-filter: blur(12px) saturate(140%);
	backdrop-filter: blur(12px) saturate(140%);
	padding: 14px;
}

.stat-value {
	margin: 0;
	font-family: 'Archivo', sans-serif;
	font-size: 30px;
}

.stat-label {
	margin: 4px 0 0;
	color: var(--muted);
	font-size: 13px;
}

.section-head {
	margin-top: 40px;
	margin-bottom: 14px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 14px;
}

.section-head-center {
	justify-content: center;
	flex-direction: column;
	gap: 20px;
	text-align: center;
	margin-top: 64px;
	margin-bottom: 27px;
}

.why-choose-head h3 {
	font-size: clamp(34px, 4.2vw, 58px);
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.accent-text {
	background: linear-gradient(90deg, #1f7bf2 0%, #3a8fff 45%, #11d28f 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.section-lead-center {
	max-width: 980px;
	margin: 0 auto;
	font-size: 22px;
	line-height: 1.45;
}

.section-head h3 {
	margin: 0;
	font-family: 'Archivo', sans-serif;
	font-size: 28px;
	color: var(--ink);
}

.feature-grid,
.testimonials {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 13px;
}

.video-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

/* Courses list grid and cards */
.course-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin-top: 18px;
}

.course-card {
	background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent 40%), var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: 12px;
	padding: 18px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 300px;
	box-shadow: 0 8px 20px rgba(3,8,18,0.35);
}

.course-card h3 {
	margin: 0 0 8px;
	font-family: 'Archivo', sans-serif;
	font-size: 20px;
}

.course-desc {
	margin: 0 0 12px;
	color: var(--muted);
	line-height: 1.45;
}

.course-meta {
	display: flex;
	gap: 8px;
	margin-bottom: 12px;
}

.course-card-foot {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 12px;
	margin-top: auto;
}

.price {
	margin: 0;
	font-family: 'Archivo', sans-serif;
	font-size: 18px;
	color: var(--ink);
}

.course-actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	width: 100%;
}

.course-actions .btn {
	padding: 10px 14px;
	width: 100%;
	text-align: center;
}

@media (max-width: 1100px) {
	.course-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
	.course-grid { grid-template-columns: 1fr; }
	.section-head { flex-direction: column; gap: 12px; }
	.course-actions { grid-template-columns: 1fr; }
}

.feature-card,
.quote-card {
	border: 1px solid var(--glass-border);
	border-radius: 14px;
	padding: 16px;
	background:
		linear-gradient(160deg, rgba(255, 255, 255, 0.06), transparent 48%),
		var(--glass-bg);
	-webkit-backdrop-filter: blur(12px) saturate(140%);
	backdrop-filter: blur(12px) saturate(140%);
	box-shadow: var(--shadow);
}

.feature-card h4,
.quote-card h5 {
	margin: 0 0 8px;
	font-family: 'Archivo', sans-serif;
	font-size: 18px;
}

.quote-card p {
	font-style: italic;
	color: var(--muted);
}

.instructor {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 16px;
}

.instructor-side {
	border: 1px solid var(--glass-border);
	border-radius: 12px;
	padding: 14px;
	background:
		linear-gradient(160deg, rgba(255, 255, 255, 0.05), transparent 45%),
		var(--glass-bg);
	-webkit-backdrop-filter: blur(12px) saturate(140%);
	backdrop-filter: blur(12px) saturate(140%);
}

.playground {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 16px;
	align-items: center;
}

.playground-art {
	min-height: 180px;
	border-radius: 14px;
	border: 1px solid var(--glass-border);
	background:
		radial-gradient(circle at 22% 30%, rgba(17, 210, 143, 0.3), transparent 40%),
		radial-gradient(circle at 78% 70%, rgba(31, 123, 242, 0.38), transparent 45%),
		linear-gradient(135deg, rgba(11, 20, 37, 0.75), rgba(20, 36, 63, 0.68));
	-webkit-backdrop-filter: blur(10px) saturate(140%);
	backdrop-filter: blur(10px) saturate(140%);
	position: relative;
	overflow: hidden;
}

.playground-art::before,
.playground-art::after {
	content: '';
	position: absolute;
	inset: auto;
	border-radius: 999px;
	border: 1px solid rgba(166, 199, 255, 0.32);
}

.playground-art::before {
	width: 140px;
	height: 140px;
	top: 18px;
	right: 18px;
}

.playground-art::after {
	width: 96px;
	height: 96px;
	bottom: 22px;
	left: 24px;
}

.cart-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
	text-align: center;
}

.cart-section-head {
	margin-top: 50px;
	margin-bottom: 28px;
}

.cart-heading {
	background: linear-gradient(90deg, #0d8fb8 0%, #1a9dcc 50%, #2abadb 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	font-size: 32px;
	font-weight: 700;
	margin: 0;
	letter-spacing: -0.02em;
}

.cart-block p {
	margin: 0;
}

.cart-block p strong {
	color: #2abadb;
	font-weight: 700;
}

.cart-block .muted {
	color: rgba(184, 210, 235, 0.8);
}

.cart-block .btn {
	margin-top: 8px;
	background: linear-gradient(135deg, #0d8fb8, #1a9dcc);
	box-shadow: 0 8px 20px rgba(13, 143, 184, 0.3);
}

.course-list,
.course-grid,
.admin-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 14px;
}

.course-card,
.panel {
	border: 1px solid var(--glass-border);
	padding: 18px;
	border-radius: var(--radius);
	background:
		linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 44%),
		var(--glass-bg);
	-webkit-backdrop-filter: blur(14px) saturate(145%);
	backdrop-filter: blur(14px) saturate(145%);
	box-shadow: var(--shadow);
}

.course-card h4,
.course-card h3 {
	margin: 0 0 8px;
	font-size: 22px;
	font-family: 'Archivo', sans-serif;
	color: var(--ink);
}

.course-meta {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin: 11px 0 16px;
}

.course-points {
	list-style: none;
	padding: 0;
	margin: 12px 0 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.course-point-item {
	display: flex;
 	align-items: center;
	gap: 10px;
	color: #d0dbef;
	font-size: 14px;
	line-height: 1.5;
	min-height: 24px;
}

.course-point-icon {
 	flex: 0 0 18px;
 	width: 18px;
 	height: 18px;
 	display: inline-flex;
 	align-items: center;
 	justify-content: center;
 	color: #22c55e;
 	margin-top: 0;
}

.course-point-icon svg {
	width: 18px;
	height: 18px;
	display: block;
	stroke: currentColor;
}

.course-point-text {
	flex: 1;
	min-width: 0;
}

.tag {
	border: 1px solid #2b3f63;
	border-radius: 999px;
	padding: 5px 10px;
	font-size: 12px;
	background: var(--glass-bg);
	color: var(--ink);
}

.price {
	margin: 10px 0;
	font-weight: 800;
	font-size: 24px;
	color: var(--primary-strong);
}

.muted,
.help {
	color: var(--muted);
}

.form-inline,
.stack,
.checkout-card,
.table-wrap {
	border: 1px solid var(--glass-border);
	border-radius: var(--radius);
	background:
		linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 44%),
		var(--glass-bg-strong);
	-webkit-backdrop-filter: blur(16px) saturate(150%);
	backdrop-filter: blur(16px) saturate(150%);
	box-shadow: var(--shadow);
	padding: 18px;
}

.stack {
	display: grid;
	gap: 12px;
}

.row {
	display: grid;
	gap: 6px;
}

label {
	font-weight: 700;
	font-size: 14px;
}

input,
textarea,
select {
	border: 1px solid rgba(174, 207, 255, 0.24);
	border-radius: 10px;
	padding: 11px 12px;
	font: inherit;
	background: var(--glass-bg);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	color: var(--ink);
}

textarea {
	min-height: 118px;
	resize: vertical;
}

.actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.alert,
.success {
	padding: 11px 13px;
	border-radius: 12px;
	font-weight: 600;
}

.alert {
	background: #fff2f0;
	color: #7d241d;
	border: 1px solid #efc9c5;
}

.success {
	background: #edf8f2;
	color: #165337;
	border: 1px solid #cce4d6;
}

table {
	width: 100%;
	border-collapse: collapse;
}

th,
td {
	padding: 10px 9px;
	border-bottom: 1px solid #213251;
	text-align: left;
}

th {
	color: #445161;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.site-footer {
	margin-top: 44px;
	border-top: 1px solid var(--glass-border);
	color: #a3afc6;
	padding: 18px 0;
	background: rgba(12, 18, 30, 0.48);
	-webkit-backdrop-filter: blur(10px) saturate(140%);
	backdrop-filter: blur(10px) saturate(140%);
}

body[data-theme='light'] .site-footer {
	background: #e8f4ff;
	color: #1a3a5c;
}

body[data-theme='light'] .site-footer.footer-premium {
	background: #ddeeff;
}

body[data-theme='light'] .site-footer.footer-premium .footer-col h3 {
	color: #1a5fa8;
}

body[data-theme='light'] .site-footer.footer-premium .footer-col h2 {
	color: #0d2e52;
}

body[data-theme='light'] .site-footer.footer-premium .footer-col a,
body[data-theme='light'] .site-footer.footer-premium .footer-col li,
body[data-theme='light'] .site-footer.footer-premium .footer-social-item {
	color: #1a3a5c;
}

body[data-theme='light'] .site-footer.footer-premium .footer-col a:hover {
	color: #1f7bf2;
}

body[data-theme='light'] .site-footer.footer-premium .footer-tagline {
	color: #2a4a6e;
}

body[data-theme='light'] .site-footer.footer-premium .office-card {
	background: rgba(31, 123, 242, 0.08);
	border-color: rgba(31, 123, 242, 0.25);
}

body[data-theme='light'] .site-footer.footer-premium .office-head {
	color: #1a5fa8;
}

body[data-theme='light'] .site-footer.footer-premium .office-info li {
	color: #1a3a5c;
}

body[data-theme='light'] .site-footer.footer-premium .office-card .wa-hours,
body[data-theme='light'] .site-footer.footer-premium .office-info .hours-label,
body[data-theme='light'] .site-footer.footer-premium .office-info li {
	color: #1a3a5c !important;
}

body[data-theme='light'] .site-footer.footer-premium .office-info li,
body[data-theme='light'] .site-footer.footer-premium .office-info li span,
body[data-theme='light'] .site-footer.footer-premium .office-info li strong {
	color: #1a3a5c !important;
}

.office-card a:hover .office-head,
.office-card a:hover li {
	color: #1f7bf2 !important;
}

body[data-theme='light'] .site-footer.footer-premium .office-card a {
	color: #1a3a5c;
}

.office-card {
	cursor: pointer;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.office-card:hover {
	border-color: rgba(31, 123, 242, 0.5) !important;
	box-shadow: 0 4px 16px rgba(31, 123, 242, 0.15);
}

body[data-theme='light'] .site-footer.footer-premium .footer-bottom-bar p {
	color: #2a4a6e;
}

body[data-theme='light'] .site-footer.footer-premium .footer-bottom-bar {
	border-top-color: rgba(31, 123, 242, 0.2);
}

/* ===== LIGHT MODE - AUTH PAGE FIX ===== */
body[data-theme='light'] .form-inline,
body[data-theme='light'] .stack,
body[data-theme='light'] .checkout-card,
body[data-theme='light'] .auth-card,
body[data-theme='light'] .panel {
	background: #ffffff !important;
	border-color: rgba(31, 123, 242, 0.18) !important;
	color: #0f2340 !important;
}

body[data-theme='light'] .form-inline h2,
body[data-theme='light'] .form-inline h3,
body[data-theme='light'] .form-inline p,
body[data-theme='light'] .form-inline label,
body[data-theme='light'] .stack h2,
body[data-theme='light'] .stack h3,
body[data-theme='light'] .stack p,
body[data-theme='light'] .stack label {
	color: #0f2340 !important;
}

body[data-theme='light'] input,
body[data-theme='light'] textarea,
body[data-theme='light'] select {
	background: #f0f7ff !important;
	border-color: rgba(31, 123, 242, 0.25) !important;
	color: #0f2340 !important;
}

body[data-theme='light'] input::placeholder,
body[data-theme='light'] textarea::placeholder {
	color: #7a95b0 !important;
}

body[data-theme='light'] .muted {
	color: #4a6080 !important;
}

/* ===== LIGHT MODE - THEME TOGGLE BUTTON FIX ===== */
body[data-theme='light'] .theme-toggle {
	background: #ffffff !important;
	border: 1.5px solid rgba(31, 123, 242, 0.3) !important;
	color: #0f2340 !important;
	box-shadow: 0 2px 8px rgba(31, 123, 242, 0.15) !important;
	font-size: 16px !important;
	padding: 8px 12px !important;
	border-radius: 10px !important;
	cursor: pointer !important;
	opacity: 1 !important;
	visibility: visible !important;
}

body[data-theme='light'] .theme-toggle:hover {
	background: #e8f0ff !important;
	border-color: rgba(31, 123, 242, 0.5) !important;
	box-shadow: 0 4px 14px rgba(31, 123, 242, 0.22) !important;
}

/* Dark card inside light page (the inner white form box) */
body[data-theme='light'] .form-inline > div,
body[data-theme='light'] .auth-inner,
body[data-theme='light'] .auth-form-box {
	background: #f4f9ff !important;
	border-color: rgba(31, 123, 242, 0.15) !important;
}

/* Sign in / Sign up tab buttons */
body[data-theme='light'] .auth-tabs .btn,
body[data-theme='light'] .tab-btn {
	color: #0f2340 !important;
}

/* Continue with Google button */
body[data-theme='light'] .google-btn,
body[data-theme='light'] [class*="google"] {
	background: #ffffff !important;
	border-color: rgba(31, 123, 242, 0.2) !important;
	color: #0f2340 !important;
}

/* Demo admin text at bottom */
body[data-theme='light'] .demo-hint,
body[data-theme='light'] .auth-card > p:last-child {
	color: #4a6080 !important;
}

.site-footer .wrap {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

@keyframes rise {
	from {
		opacity: 0;
		transform: translateY(14px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero,
.course-card,
.panel {
	animation: rise 0.45s ease both;
}

@media (max-width: 880px) {
	.quick-metrics {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.instructor {
		grid-template-columns: 1fr;
	}

	.playground {
		grid-template-columns: 1fr;
	}

	.video-grid {
		grid-template-columns: 1fr;
	}

	.hero {
		grid-template-columns: 1fr;
		padding: 24px;
	}

	.header-row {
		padding: 8px 0;
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 520px) {
	.wrap {
		padding: 0 16px;
	}

	.section-head h3 {
		font-size: 24px;
	}

	.course-card h3,
	.course-card h4 {
		font-size: 19px;
	}

	.price {
		font-size: 22px;
	}
}

/* ===== HERO PREMIUM - MODERN EDTECH LANDING ===== */
.hero.hero-premium {
	position: relative;
	margin-top: 28px;
	padding: 60px 56px 48px;
	border: 1px solid rgba(132, 176, 255, 0.15);
	border-radius: 32px;
	background:
		radial-gradient(ellipse at 12% 20%, rgba(17, 210, 143, 0.08), transparent 35%),
		radial-gradient(ellipse at 85% 15%, rgba(31, 123, 242, 0.12), transparent 38%),
		linear-gradient(155deg, rgba(6, 10, 20, 0.95), rgba(8, 14, 28, 0.92));
	box-shadow:
		0 28px 72px rgba(0, 0, 0, 0.5),
		inset 0 1px 0 rgba(255, 255, 255, 0.05),
		0 0 60px rgba(31, 123, 242, 0.08);
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 48px;
	align-items: center;
	overflow: hidden;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.hero.hero-premium::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent 30%, transparent 70%, rgba(31, 123, 242, 0.03));
	pointer-events: none;
	border-radius: 32px;
}

/* === LEFT SECTION === */
.hero-copy {
	display: flex;
	flex-direction: column;
	gap: 2px;
	z-index: 1;
	position: relative;
	max-width: 620px;
}

.main-title {
	margin: 0 0 4px 0;
	font-family: 'Poppins', 'Inter', sans-serif;
	font-weight: 800;
	font-size: clamp(36px, 4.8vw, 62px);
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: #ffffff;
}

.main-title .accent-text {
	background: linear-gradient(110deg, #1f7bf2, #11d28f);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.hero.hero-premium h2 {
	margin: 0;
	font-family: 'Poppins', sans-serif;
	font-size: clamp(20px, 2.4vw, 32px);
	line-height: 1.28;
	letter-spacing: -0.01em;
	color: #e8f0ff;
	font-weight: 700;
	display: none; /* Hidden for this layout */
}

.hero.hero-premium > p:first-of-type {
	margin: 18px 0 0 0;
	max-width: 58ch;
	font-size: clamp(15px, 1.8vw, 18px);
	line-height: 1.72;
	color: #b3c5e0;
	font-weight: 400;
}

/* Pills/Tags Row */
.pill-row {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin: 24px 0 0 0;
}

.pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border-radius: 8px;
	border: 1px solid rgba(31, 123, 242, 0.25);
	background: rgba(31, 123, 242, 0.08);
	color: #96c4ff;
	font-size: clamp(12px, 1.2vw, 14px);
	font-weight: 600;
	letter-spacing: 0.3px;
	backdrop-filter: blur(8px);
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pill:hover {
	background: rgba(31, 123, 242, 0.14);
	border-color: rgba(31, 123, 242, 0.4);
	transform: translateY(-2px);
}

/* CTA Buttons */
.hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin: 32px 0 0 0;
}

.hero-actions .btn {
	padding: 14px 28px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 12px;
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	border: none;
}

.hero-cta-primary {
	background: linear-gradient(135deg, #1f7bf2, #1563d4);
	color: #fff;
	box-shadow: 
		0 12px 32px rgba(31, 123, 242, 0.32),
		inset 0 1px 0 rgba(255, 255, 255, 0.15);
	position: relative;
	overflow: hidden;
}

.hero-cta-primary::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 60%);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.hero-cta-primary:hover {
	transform: translateY(-3px);
	box-shadow: 
		0 18px 48px rgba(31, 123, 242, 0.42),
		inset 0 1px 0 rgba(255, 255, 255, 0.25),
		0 0 30px rgba(31, 123, 242, 0.4);
}

.hero-cta-primary:hover::before {
	opacity: 1;
}

.btn-outline {
	background: transparent;
	color: #d7e8ff;
	border: 1.5px solid rgba(121, 164, 255, 0.32);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-outline:hover {
	background: rgba(121, 164, 255, 0.08);
	border-color: rgba(121, 164, 255, 0.5);
	transform: translateY(-3px);
	box-shadow: 
		inset 0 1px 0 rgba(255, 255, 255, 0.12),
		0 12px 28px rgba(31, 123, 242, 0.18);
	color: #ffffff;
}

/* Stats Section */
.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 40px;
	width: 100%;
	max-width: 540px;
}

.hero-stat {
	padding: 20px;
	border-radius: 14px;
	border: 1px solid rgba(147, 183, 255, 0.12);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(10, 20, 40, 0.4));
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
	transition: all 0.3s ease;
}

.hero-stat:hover {
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(31, 123, 242, 0.08));
	border-color: rgba(31, 123, 242, 0.25);
	transform: translateY(-4px);
}

.hero-stat strong {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-size: clamp(24px, 2.8vw, 32px);
	line-height: 1.1;
	font-weight: 800;
	background: linear-gradient(120deg, #ffffff, #a8d4ff);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	margin-bottom: 6px;
}

.hero-stat span {
	display: block;
	color: #8fa4c1;
	font-size: clamp(12px, 1.4vw, 14px);
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.3px;
}

/* === RIGHT SECTION === */
.hero-editor {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 14px;
	z-index: 1;
	position: relative;
}

.hero-editor-shell {
	width: 100%;
	border-radius: 24px;
	background: linear-gradient(145deg, rgba(8, 16, 32, 0.88), rgba(10, 18, 36, 0.92));
	border: 1px solid rgba(147, 183, 255, 0.2);
	box-shadow: 
		0 24px 64px rgba(0, 0, 0, 0.52),
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 0 40px rgba(31, 123, 242, 0.1);
	overflow: hidden;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.hero-editor-topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 18px;
	background: linear-gradient(180deg, rgba(21, 34, 56, 0.8), rgba(14, 22, 37, 0.5));
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	gap: 12px;
}

.hero-editor-dots {
	display: flex;
	align-items: center;
	gap: 8px;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.25s ease;
}

.dot.red {
	background: #ff5f56;
	box-shadow: 0 0 8px rgba(255, 95, 86, 0.5);
}

.dot.yellow {
	background: #ffbd2e;
	box-shadow: 0 0 8px rgba(255, 189, 46, 0.5);
}

.dot.green {
	background: #27c93f;
	box-shadow: 0 0 8px rgba(39, 201, 63, 0.5);
}

.code-panel-chip {
	font-size: 12px;
	padding: 6px 12px;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #c0d4ee;
	font-weight: 600;
	margin-left: auto;
	letter-spacing: 0.5px;
}

.hero-editor-window {
	position: relative;
	padding: 22px;
	min-height: 340px;
	background: linear-gradient(180deg, rgba(12, 19, 36, 0.98), rgba(10, 16, 32, 0.95));
	overflow: hidden;
}

.syntax-badge {
	position: absolute;
	top: 16px;
	right: 16px;
	padding: 8px 14px;
	border-radius: 10px;
	background: linear-gradient(135deg, rgba(17, 210, 143, 0.15), rgba(17, 210, 143, 0.08));
	border: 1px solid rgba(17, 210, 143, 0.35);
	color: #11d28f;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.4px;
	display: flex;
	align-items: center;
	gap: 6px;
	box-shadow: 0 8px 24px rgba(17, 210, 143, 0.15);
	animation: badgePulse 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
	z-index: 10;
}

.syntax-badge::before {
	content: '✓';
	font-weight: 900;
	font-size: 13px;
}

@keyframes badgePulse {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.8;
		transform: scale(1.02);
	}
}

.hero-editor-scroll {
	height: 260px;
	overflow: hidden;
	mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
	-webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
	position: relative;
}

.hero-code-track {
	display: flex;
	flex-direction: column;
	gap: 18px;
	animation: codeScroll 20s linear infinite;
	will-change: transform;
}

@keyframes codeScroll {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-100%);
	}
}

.code-line {
	font-family: 'SFMono-Regular', 'Consolas', 'Monaco', 'Courier New', monospace;
	font-size: 13px;
	line-height: 1.8;
	color: #dde5f5;
	white-space: pre;
	letter-spacing: 0.5px;
}

.code-keyword {
	color: #5ea2ff;
	font-weight: 600;
}

.code-string {
	color: #7ee0b8;
}

.code-number {
	color: #ffa366;
}

.code-comment {
	color: #6f87b1;
	font-style: italic;
}

.editor-cursor {
	position: absolute;
	left: 100px;
	top: 80px;
	width: 2px;
	height: 20px;
	background: linear-gradient(180deg, #eaf2ff, transparent);
	box-shadow: 0 0 10px rgba(140, 180, 255, 0.8);
	animation: cursorBlink 1.2s steps(2) infinite;
	pointer-events: none;
	z-index: 5;
}

@keyframes cursorBlink {
	0%, 49% {
		opacity: 1;
	}
	50%, 100% {
		opacity: 0;
	}
}

.hero-editor-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.04);
	background: rgba(10, 16, 28, 0.5);
	gap: 12px;
}

.feedback-pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 10px 16px;
	border-radius: 999px;
	border: 1px solid rgba(17, 210, 143, 0.3);
	background: linear-gradient(135deg, rgba(17, 210, 143, 0.12), rgba(31, 123, 242, 0.08));
	color: #11d28f;
	text-decoration: none;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.4px;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	box-shadow: 0 8px 20px rgba(17, 210, 143, 0.15);
	animation: floatPill 3.5s ease-in-out infinite;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.feedback-pill:hover {
	transform: translateY(-3px);
	border-color: rgba(17, 210, 143, 0.5);
	background: linear-gradient(135deg, rgba(17, 210, 143, 0.18), rgba(31, 123, 242, 0.12));
	box-shadow: 0 12px 32px rgba(17, 210, 143, 0.25);
}

@keyframes floatPill {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-6px);
	}
}

.feedback-pill::before {
	content: '⚡';
	font-size: 13px;
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
	.hero.hero-premium {
		grid-template-columns: 1fr;
		padding: 48px 40px;
		gap: 40px;
	}

	.hero-editor-shell {
		max-width: 600px;
		margin: 0 auto;
	}

	.hero-stats {
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	.hero.hero-premium {
		padding: 36px 24px;
		gap: 32px;
	}

	.main-title {
		font-size: clamp(28px, 5vw, 42px);
	}

	.hero.hero-premium > p:first-of-type {
		font-size: 15px;
	}

	.pill-row {
		margin-top: 18px;
	}

	.hero-actions {
		margin-top: 24px;
		gap: 10px;
	}

	.hero-actions .btn {
		padding: 12px 24px;
		font-size: 14px;
	}

	.hero-stats {
		grid-template-columns: repeat(3, 1fr);
		gap: 12px;
		margin-top: 32px;
	}

	.hero-editor-window {
		min-height: 280px;
	}

	.hero-editor-scroll {
		height: 200px;
	}
}

@media (max-width: 560px) {
	.hero.hero-premium {
		padding: 28px 16px;
		gap: 24px;
	}

	.main-title {
		font-size: clamp(24px, 6vw, 36px);
	}

	.hero.hero-premium > p:first-of-type {
		font-size: 14px;
		line-height: 1.6;
	}

	.pill-row {
		margin-top: 16px;
		gap: 8px;
	}

	.pill {
		padding: 6px 10px;
		font-size: 11px;
	}

	.hero-actions {
		flex-direction: column;
		margin-top: 20px;
		gap: 10px;
	}

	.hero-actions .btn {
		width: 100%;
		padding: 12px 20px;
		font-size: 14px;
	}

	.hero-stats {
		grid-template-columns: 1fr;
		gap: 10px;
		margin-top: 24px;
	}

	.hero-stat strong {
		font-size: 22px;
	}

	.hero-editor-window {
		min-height: 240px;
		padding: 16px;
	}

	.hero-editor-scroll {
		height: 160px;
	}

	.code-line {
		font-size: 11px;
	}
}

body[data-theme='light'] .hero.hero-premium {
	background:
		radial-gradient(circle at 16% 18%, rgba(17, 210, 143, 0.14), transparent 32%),
		radial-gradient(circle at 80% 18%, rgba(31, 123, 242, 0.14), transparent 34%),
		linear-gradient(145deg, rgba(247, 252, 255, 0.98), rgba(228, 241, 255, 0.92));
	border-color: rgba(86, 140, 197, 0.16);
	box-shadow: 0 24px 60px rgba(31, 68, 110, 0.08);
}

body[data-theme='light'] .hero.hero-premium h2 {
	color: #0f2d54;
}

body[data-theme='light'] .hero.hero-premium .hero p,
body[data-theme='light'] .hero-stat span,
body[data-theme='light'] .code-foot {
	color: #5a708b;
}

body[data-theme='light'] .hero-editor-shell,
body[data-theme='light'] .hero-editor-window {
	background:
		radial-gradient(circle at 80% 18%, rgba(31, 123, 242, 0.08), transparent 28%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 248, 255, 0.92));
	border-color: rgba(86, 140, 197, 0.16);
}

body[data-theme='light'] .hero-kicker,
body[data-theme='light'] .pill,
body[data-theme='light'] .feedback-pill {
	background: rgba(255, 255, 255, 0.84);
	color: #265b96;
	border-color: rgba(86, 140, 197, 0.16);
}

body[data-theme='light'] .hero-stat {
	background: rgba(255, 255, 255, 0.88);
	border-color: rgba(86, 140, 197, 0.14);
}

body[data-theme='light'] .hero-stat strong {
	color: #1c76e7;
}

body[data-theme='light'] .token-keyword {
	color: #1f7bf2;
}

body[data-theme='light'] .token-number {
	color: #0f9968;
}

@media (max-width: 980px) {
	.videos-container {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.videos-heading h2 {
		font-size: clamp(28px, 5vw, 42px);
	}

	.video-preview-card {
		max-width: 100%;
		aspect-ratio: 16/10;
	}

	.testimonial-container {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.testimonial-stack {
		grid-template-columns: repeat(2, 1fr);
	}

	.testimonial-card-featured {
		padding: 32px;
	}
}

@media (max-width: 720px) {
	.videos-container {
		gap: 24px;
	}

	.videos-heading h2 {
		font-size: clamp(24px, 5vw, 36px);
	}

	.videos-description {
		font-size: 15px;
	}

	.video-feature-card {
		padding: 16px;
	}

	.video-feature-icon {
		width: 40px;
		height: 40px;
	}

	.video-feature-info h5 {
		font-size: 14px;
	}

	.video-feature-info p {
		font-size: 12px;
	}

	.video-play-button {
		width: 64px;
		height: 64px;
	}

	.testimonial-card-featured {
		padding: 24px;
	}

	.testimonial-text {
		font-size: 16px;
	}

	.testimonial-stack {
		grid-template-columns: 1fr;
	}

	.testimonial-card-side {
		padding: 16px;
	}

	.testimonial-text-small {
		font-size: 12px;
	}
}

@media (max-width: 480px) {
	.testimonials-premium {
		gap: 24px;
		margin-bottom: 48px;
	}

	.testimonial-container {
		gap: 20px;
	}

	.testimonial-card-featured {
		padding: 16px;
	}

	.testimonial-quote-icon {
		width: 32px;
		height: 32px;
	}

	.testimonial-tag {
		font-size: 11px;
		padding: 6px 10px;
	}

	.testimonial-stars {
		margin-bottom: 16px;
	}

	.star {
		font-size: 16px;
	}

	.testimonial-text {
		font-size: 14px;
		line-height: 1.6;
		margin-bottom: 20px;
	}

	.testimonial-author {
		gap: 12px;
	}

	.testimonial-avatar {
		width: 44px;
		height: 44px;
	}

	.testimonial-author-info h5 {
		font-size: 14px;
	}

	.testimonial-role {
		font-size: 12px;
	}

	.testimonial-meta {
		font-size: 11px;
	}

	.testimonial-controls {
		gap: 16px;
	}

	.carousel-arrow {
		width: 36px;
		height: 36px;
		font-size: 14px;
	}

	.carousel-dots {
		gap: 6px;
	}

	.carousel-dot {
		width: 6px;
		height: 6px;
	}

	.carousel-dot.active {
		width: 20px;
	}
}

@media (max-width: 980px) {
	.hero.hero-premium {
		padding: 30px 20px;
		gap: 24px;
	}

	.hero-stats {
		max-width: none;
	}

	.hero-editor {
		align-items: stretch;
	}

	.hero-editor-window {
		min-height: 280px;
	}

	.editor-cursor {
		left: 170px;
		top: 120px;
	}
}


@media (max-width: 720px) {
	.hero.hero-premium h2 {
		font-size: clamp(28px, 8vw, 40px);
	}

	.hero-stats {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 8px;
		margin-top: 20px;
	}

	.hero-stat {
		padding: 14px 12px;
		border-radius: 14px;
	}

	.hero-stat strong {
		font-size: 20px;
		margin-bottom: 6px;
	}

	.hero-stat span {
		font-size: 11px;
		line-height: 1.2;
	}

	.hero-actions {
		flex-direction: column;
		gap: 10px;
	}

	.hero-actions .btn {
		width: 100%;
	}

	.hero.hero-premium .hero p {
		font-size: 15px;
		line-height: 1.55;
	}

	.hero.hero-premium .pill-row {
		gap: 8px;
	}

	.hero.hero-premium .pill {
		padding: 6px 10px;
		font-size: 12px;
	}

	.hero-editor-window {
		min-height: 240px;
	}

	.hero-editor-scroll {
		height: 190px;
	}

	.hero-code-track pre {
		font-size: 12px;
		line-height: 1.7;
	}

	.editor-cursor {
		left: 140px;
		top: 112px;
	}
}

@media (max-width: 480px) {
	.hero-stats,
	.hero-premium + .quick-metrics {
		grid-template-columns: 1fr;
	}

	.hero.hero-premium {
		padding: 24px 16px;
	}

	.hero-editor-window {
		min-height: 220px;
	}

	.hero-editor-scroll {
		height: 170px;
	}

	.editor-cursor {
		left: 120px;
		top: 104px;
	}
}

@keyframes codeScroll {
	0% { transform: translateY(0); }
	100% { transform: translateY(-50%); }
}

@keyframes cursorBlink {
	0%, 49% { opacity: 1; }
	50%, 100% { opacity: 0; }
}

@keyframes badgePulse {
	0%, 100% { transform: translateY(0); box-shadow: 0 12px 24px rgba(7, 11, 20, 0.24); }
	50% { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(31, 123, 242, 0.18); }
}

@keyframes floatSoft {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-3px); }
}

.hero-premium + .quick-metrics {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 16px;
}

@media (max-width: 720px) {
	.hero-premium + .quick-metrics {
		grid-template-columns: 1fr;
	}
}
/* QuickSilicon-inspired Professional Theme */

/* Hero Section */
.hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	padding: 60px 0;
	border-bottom: 1px solid var(--line);
	margin-bottom: 48px;
}

.hero h2 {
	font-size: 42px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 16px;
	background: linear-gradient(135deg, #1f7bf2, #11d28f);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero p {
	font-size: 18px;
	line-height: 1.6;
	color: var(--muted);
	margin-bottom: 24px;
}

.pill-row {
	display: flex;
	gap: 12px;
	margin-bottom: 24px;
	flex-wrap: wrap;
}

.pill {
	display: inline-block;
	padding: 8px 14px;
	background: rgba(31, 123, 242, 0.1);
	border: 1px solid rgba(31, 123, 242, 0.3);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	color: #1f7bf2;
}

.code-panel {
	position: relative;
	background: var(--glass-bg);
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 16px;
	overflow: hidden;
}

.code-panel::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 30px;
	background: rgba(31, 123, 242, 0.1);
	border-bottom: 1px solid var(--line);
	display: flex;
	align-items: center;
	padding: 0 12px;
}

.code-panel pre {
	margin: 30px 0 0 0;
	padding: 0;
	font-size: 12px;
	line-height: 1.5;
}

.code-foot {
	font-size: 12px;
	color: var(--muted);
	margin-top: 12px;
	text-align: right;
}

/* Metrics */
.quick-metrics {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 24px;
	padding: 40px 0;
	margin-bottom: 48px;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.metric-box {
	text-align: center;
	padding: 20px;
	border-radius: 12px;
	background: var(--glass-bg);
	border: 1px solid var(--line);
	transition: all 0.3s ease;
}

.metric-box:hover {
	transform: translateY(-4px);
	border-color: #1f7bf2;
}

.metric-value {
	font-size: 32px;
	font-weight: 700;
	color: #1f7bf2;
	margin: 0 0 8px 0;
}

.metric-label {
	font-size: 13px;
	color: var(--muted);
	margin: 0;
}

/* Section Headers */
.section-head {
	margin-top: 48px;
	margin-bottom: 12px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.section-head h3 {
	font-size: 32px;
	font-weight: 700;
	margin: 0;
}

.section-lead {
	font-size: 16px;
	color: var(--muted);
	margin-bottom: 32px;
	max-width: 600px;
}

/* Feature Grid */
.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
	margin-bottom: 48px;
}

.feature-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 24px;
	background: var(--glass-bg);
	border: 1px solid var(--line);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-8px);
	border-color: #1f7bf2;
	box-shadow: 0 8px 24px rgba(31, 123, 242, 0.15);
}

.feature-card h4 {
	font-size: 18px;
	font-weight: 600;
	margin: 12px 0 8px 0;
}

.feature-card p {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.5;
	flex: 1;
}

/* ===== COURSE CARDS - PERFECT ALIGNMENT FIX ===== */
.course-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
	margin-bottom: 48px;
}

.course-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	padding: 0;
	border-radius: 16px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	background: var(--glass-bg);
	border: 1px solid var(--line);
}

.course-card:hover {
	transform: translateY(-6px);
	border-color: rgba(31, 123, 242, 0.5);
	box-shadow: 0 16px 40px rgba(31, 123, 242, 0.2);
}

/* Image consistent height */
.course-card img {
	width: 100%;
	height: 180px !important;
	object-fit: cover;
	border-radius: 0;
	margin-bottom: 0 !important;
	flex-shrink: 0;
}

/* Card body wrapper - grows to fill space */
.course-card-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	height: 100%;
	padding: 18px;
}

.course-card h4 {
	font-size: 17px;
	font-weight: 700;
	margin: 0 0 10px 0;
	color: var(--ink);
	line-height: 1.35;
	min-height: 46px; /* keeps 2-line titles aligned */
}

.course-card > p:not(.price) {
	font-size: 13px;
	color: var(--muted);
	line-height: 1.55;
	margin: 0 0 10px 0;
	padding: 0;
	min-height: 52px; /* keeps descriptions aligned */
}

/* Course points flush */
.course-points {
	list-style: none;
	padding: 10px 0;
	margin: 0 0 10px 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex-grow: 1;
}

.course-points li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 13px;
	color: var(--muted);
	line-height: 1.4;
	padding: 0;
}

/* Tags row */
.course-meta {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin: 10px 0;
}

.tag {
	font-size: 11px;
	padding: 4px 10px;
	border-radius: 999px;
}

/* ===== THINK SILICON HERO OVERRIDES ===== */
.hero.hero-premium {
	padding: 40px 44px 36px;
	gap: 34px;
	align-items: center;
}

.hero-copy {
	max-width: 560px;
}

.main-title {
	margin: 0 0 10px 0;
	font-family: 'Poppins', sans-serif;
	font-weight: 800;
	font-size: clamp(40px, 5vw, 64px);
	line-height: 0.98;
	letter-spacing: -0.04em;
	background: linear-gradient(90deg, #4aaeff 0%, #60c8ff 40%, #11d28f 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero.hero-premium h2 {
	display: block;
	margin: 0 0 18px 0;
	font-family: 'Poppins', sans-serif;
	font-size: clamp(18px, 2vw, 26px);
	line-height: 1.15;
	font-weight: 800;
	color: #ffffff;
	letter-spacing: -0.02em;
}

.hero.hero-premium h2 .accent-text {
	background: linear-gradient(90deg, #1f7bf2 0%, #4aaeff 50%, #11d28f 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 800;
}

.hero.hero-premium p {
	font-size: clamp(14px, 1.4vw, 17px);
	line-height: 1.6;
	color: #a0b4cc;
	margin: 0 0 24px 0;
	max-width: 52ch;
	font-weight: 400;
}

.hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin: 0 0 30px 0;
}

.hero-cta-primary,
.hero-cta-secondary {
	padding: 14px 28px !important;
	font-size: 16px !important;
	border-radius: 14px !important;
}

.hero-cta-primary {
	font-weight: 700 !important;
	background: linear-gradient(135deg, #1f7bf2, #135ec7) !important;
	box-shadow: 0 10px 30px rgba(31, 123, 242, 0.42) !important;
	letter-spacing: 0.2px;
}

.hero-cta-secondary {
	font-weight: 600 !important;
	background: rgba(20, 30, 50, 0.6) !important;
	border: 1px solid rgba(150, 180, 255, 0.2) !important;
	color: #d0e0ff !important;
	letter-spacing: 0.2px;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	border-top: 1px solid rgba(150, 180, 255, 0.12);
	padding-top: 24px;
	margin: 0;
	max-width: 560px;
}

.hero-stat {
	padding: 0 20px 0 0;
	text-align: left;
	border: none;
	background: none;
	border-radius: 0;
}

.hero-stat:not(:last-child) {
	border-right: 1px solid rgba(150, 180, 255, 0.12);
	margin-right: 20px;
}

.hero-stat strong {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-size: clamp(22px, 2.6vw, 34px);
	font-weight: 800;
	line-height: 1;
	margin-bottom: 6px;
	background: linear-gradient(135deg, #2f8cff, #5aaeff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-stat:nth-child(2) strong {
	background: linear-gradient(135deg, #11d28f, #0fb87e);
	-webkit-background-clip: text;
	background-clip: text;
}

.hero-stat span {
	display: block;
	color: #7a90ae;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.2px;
}

@media (max-width: 980px) {
	.hero.hero-premium {
		padding: 30px 20px;
		gap: 24px;
	}

	.hero-editor-window {
		min-height: 280px;
	}
}

@media (max-width: 720px) {
	.hero.hero-premium h2 {
		font-size: clamp(24px, 7vw, 34px);
	}

	.hero-actions {
		flex-direction: column;
		gap: 10px;
	}

	.hero-cta-primary,
	.hero-cta-secondary {
		width: 100%;
		text-align: center;
	}

	.hero-stats {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.hero-stat {
		padding: 0;
		border-right: none !important;
		margin-right: 0 !important;
	}

	.hero-stat:not(:last-child) {
		padding-bottom: 16px;
		border-bottom: 1px solid rgba(150, 180, 255, 0.12);
	}

	.hero-stat strong {
		font-size: 26px;
	}
}

/* ===== FEATURE GRID - PERFECT ALIGNMENT ===== */
.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin-bottom: 60px;
	margin-top: 16px;
}

.feature-card {
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	padding: 0;
	background:
		linear-gradient(160deg, rgba(255, 255, 255, 0.06), transparent 48%),
		var(--glass-bg);
	backdrop-filter: blur(12px) saturate(140%);
	-webkit-backdrop-filter: blur(12px) saturate(140%);
	box-shadow: 0 8px 32px rgba(3, 8, 18, 0.35);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	display: flex;
	flex-direction: column;
}

.feature-card:hover {
	transform: translateY(-8px);
	border-color: rgba(31, 123, 242, 0.45);
	box-shadow:
		0 20px 48px rgba(31, 123, 242, 0.18),
		0 4px 12px rgba(0,0,0,0.3);
}

.feature-card img {
	width: 100% !important;
	height: 220px !important;
	object-fit: cover !important;
	border-radius: 0 !important;
	margin: 0 !important;
	display: block;
	flex-shrink: 0;
	transition: transform 0.4s ease;
}

.feature-card:hover img {
	transform: scale(1.04);
}

.feature-card-body {
	padding: 22px 22px 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.feature-card h4 {
	margin: 0;
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: var(--ink);
	line-height: 1.3;
}

.feature-card p {
	margin: 0;
	font-size: 14px;
	line-height: 1.65;
	color: var(--muted);
}

body[data-theme='light'] .feature-card {
	background: #ffffff;
	border-color: rgba(31, 123, 242, 0.12);
	box-shadow: 0 4px 20px rgba(31, 123, 242, 0.08);
}

body[data-theme='light'] .feature-card:hover {
	border-color: rgba(31, 123, 242, 0.35);
	box-shadow: 0 16px 40px rgba(31, 123, 242, 0.14);
}

body[data-theme='light'] .feature-card h4 {
	color: #0f2340;
}

body[data-theme='light'] .feature-card p {
	color: #4a6080;
}

@media (max-width: 900px) {
	.feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px;
	}
}

@media (max-width: 560px) {
	.feature-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.feature-card img {
		height: 180px !important;
	}
}

/* Price always same position */
.price {
	font-size: 20px;
	font-weight: 800;
	color: #1f7bf2;
	margin: 10px 0 14px 0;
	padding: 0;
}

/* Button row - always pinned to bottom */
.course-card-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: auto;
}

.course-card-actions .btn {
	width: 100%;
	text-align: center;
	padding: 11px 10px;
	font-size: 14px;
	border-radius: 10px;
}

/* Light mode fix */
body[data-theme='light'] .course-card h4 {
	color: #0f2340;
}

body[data-theme='light'] .course-points li {
	color: #3a5068;
}

body[data-theme='light'] .course-points {
	border-color: rgba(31, 123, 242, 0.12);
}

/* Testimonials Premium Carousel */
.testimonials-premium {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 36px;
	margin-bottom: 64px;
	margin-top: 48px;
}

.testimonial-container {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 28px;
	width: 100%;
	max-width: 1100px;
	align-items: start;
}

.testimonial-featured {
	display: flex;
	align-items: center;
	justify-content: center;
}

.testimonial-card-featured {
	position: relative;
	padding: 40px;
	background: var(--glass-bg-strong);
	border: 1px solid var(--glass-border);
	border-radius: 24px;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	box-shadow: 0 20px 60px rgba(31, 123, 242, 0.15), inset 0 1px 0 var(--glass-highlight);
	overflow: hidden;
	animation: cardEnter 0.6s ease-out;
}

.testimonial-card-featured::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(17, 210, 143, 0.1), transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.testimonial-card-featured::after {
	content: '';
	position: absolute;
	bottom: -40%;
	left: -40%;
	width: 250px;
	height: 250px;
	background: radial-gradient(circle, rgba(31, 123, 242, 0.08), transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.testimonial-quote-icon {
	position: absolute;
	top: 20px;
	left: 20px;
	font-size: 40px;
	animation: floatIcon 3s ease-in-out infinite;
	z-index: 1;
}

.testimonial-quote-icon svg {
	filter: drop-shadow(0 0 20px rgba(17, 210, 143, 0.3));
}

.testimonial-tag {
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	background: linear-gradient(135deg, rgba(17, 210, 143, 0.15), rgba(31, 123, 242, 0.1));
	border: 1px solid rgba(17, 210, 143, 0.3);
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	color: #11d28f;
	margin-bottom: 20px;
	position: relative;
	z-index: 2;
}

.testimonial-stars {
	display: flex;
	gap: 4px;
	margin-bottom: 24px;
	position: relative;
	z-index: 2;
}

.star {
	font-size: 18px;
	color: #fbbf24;
	animation: starPop 0.5s ease-out backwards;
}

.star:nth-child(1) { animation-delay: 0.1s; }
.star:nth-child(2) { animation-delay: 0.2s; }
.star:nth-child(3) { animation-delay: 0.3s; }
.star:nth-child(4) { animation-delay: 0.4s; }
.star:nth-child(5) { animation-delay: 0.5s; }

.testimonial-text {
	font-size: 18px;
	line-height: 1.7;
	color: var(--ink);
	font-style: italic;
	margin-bottom: 32px;
	position: relative;
	z-index: 2;
	animation: textFade 0.6s ease-out;
}

.testimonial-author {
	display: flex;
	gap: 16px;
	position: relative;
	z-index: 2;
}

.testimonial-avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--glass-border);
	box-shadow: 0 0 20px rgba(17, 210, 143, 0.2);
}

.testimonial-author-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.testimonial-author-info h5 {
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	color: var(--ink);
}

.testimonial-role {
	margin: 4px 0 0 0;
	font-size: 13px;
	color: #11d28f;
	font-weight: 500;
}

.testimonial-meta {
	margin: 4px 0 0 0;
	font-size: 12px;
	color: var(--muted);
}

.testimonial-stack {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.testimonial-card-side {
	padding: 24px;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: 16px;
	backdrop-filter: blur(12px);
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	opacity: 0.6;
	transform: scale(0.98);
}

.testimonial-card-side-active,
.testimonial-card-side:hover {
	opacity: 1;
	transform: scale(1);
	background: var(--glass-bg-strong);
	border-color: rgba(17, 210, 143, 0.3);
	box-shadow: 0 8px 32px rgba(17, 210, 143, 0.1);
}

.testimonial-card-header {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	margin-bottom: 12px;
}

.testimonial-avatar-small {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	border: 1px solid var(--glass-border);
	flex-shrink: 0;
}

.testimonial-card-header h6 {
	margin: 0;
	font-size: 14px;
	font-weight: 700;
	color: var(--ink);
}

.testimonial-role-small {
	margin: 2px 0 0 0;
	font-size: 12px;
	color: var(--muted);
}

.testimonial-stars-small {
	display: flex;
	gap: 2px;
	margin-bottom: 10px;
}

.star-small {
	font-size: 14px;
	color: #fbbf24;
}

.testimonial-text-small {
	font-size: 13px;
	line-height: 1.6;
	color: var(--muted);
	margin-bottom: 12px;
	font-style: italic;
}

.testimonial-skills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.skill-tag {
	display: inline-block;
	padding: 4px 10px;
	background: rgba(17, 210, 143, 0.1);
	border: 1px solid rgba(17, 210, 143, 0.2);
	border-radius: 12px;
	font-size: 11px;
	color: #11d28f;
	font-weight: 600;
}

.testimonial-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	margin-top: 20px;
}

.carousel-arrow {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	color: var(--ink);
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	flex-shrink: 0;
}

.carousel-arrow:hover {
	background: var(--glass-bg-strong);
	transform: scale(1.1);
	border-color: rgba(17, 210, 143, 0.4);
	color: #11d28f;
	box-shadow: 0 0 20px rgba(17, 210, 143, 0.2);
}

.carousel-dots {
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: center;
}

.carousel-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--glass-border);
	cursor: pointer;
	transition: all 0.3s ease;
}

.carousel-dot.active {
	width: 24px;
	border-radius: 4px;
	background: linear-gradient(135deg, #11d28f, #1f7bf2);
	box-shadow: 0 0 12px rgba(17, 210, 143, 0.4);
}

@keyframes cardEnter {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes textFade {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes starPop {
	from {
		opacity: 0;
		transform: scale(0.5) rotate(-45deg);
	}
	to {
		opacity: 1;
		transform: scale(1) rotate(0deg);
	}
}

@keyframes floatIcon {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-8px);
	}
}

/* Testimonials */
.testimonials {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
	margin-bottom: 48px;
}

.quote-card {
	padding: 24px;
	background: var(--glass-bg);
	border: 1px solid var(--line);
	border-radius: 12px;
	border-left: 4px solid #1f7bf2;
	transition: all 0.3s ease;
}

.quote-card:hover {
	transform: translateY(-4px);
}

.quote-card p {
	font-size: 14px;
	line-height: 1.6;
	color: var(--muted);
	margin: 12px 0;
	font-style: italic;
}

.quote-card h5 {
	font-size: 14px;
	font-weight: 600;
	margin: 12px 0 0 0;
	color: var(--ink);
}

/* Videos Premium Section */
.videos-premium {
	margin-bottom: 80px;
	margin-top: 64px;
}

.videos-container {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 52px;
	align-items: stretch;
	max-width: 1200px;
	margin: 0 auto;
}

.videos-content {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 24px;
}

.videos-heading h2 {
	font-family: 'Poppins', sans-serif;
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
	color: var(--ink);
	letter-spacing: -0.02em;
}

.videos-description {
	font-size: 16px;
	line-height: 1.7;
	color: var(--muted);
	margin: 8px 0 0 0;
	max-width: 520px;
}

.videos-features {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 8px;
}

.video-feature-card {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	padding: 20px;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: 16px;
	backdrop-filter: blur(12px);
	transition: all 0.3s ease;
	cursor: pointer;
}

.video-feature-card:hover {
	transform: translateY(-6px) scale(1.02);
	background: var(--glass-bg-strong);
	border-color: rgba(17, 210, 143, 0.3);
	box-shadow: 0 12px 32px rgba(17, 210, 143, 0.1);
}

.video-feature-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(17, 210, 143, 0.1), rgba(31, 123, 242, 0.1));
	border: 1px solid rgba(17, 210, 143, 0.2);
	border-radius: 12px;
	color: #11d28f;
}

.video-feature-info {
	flex: 1;
}

.video-feature-info h5 {
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	color: var(--ink);
	font-family: 'Poppins', sans-serif;
}

.video-feature-info p {
	margin: 4px 0 0 0;
	font-size: 13px;
	color: var(--muted);
}

.videos-preview {
	display: flex;
	align-items: center;
	justify-content: center;
}

.video-preview-card {
	position: relative;
	width: 100%;
	max-width: 480px;
	aspect-ratio: 16/10;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 24px 64px rgba(31, 123, 242, 0.25), 0 8px 32px rgba(17, 210, 143, 0.12);
	animation: cardFloat 3.5s ease-in-out infinite;
}

.video-thumbnail {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.video-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(31, 123, 242, 0.2), rgba(17, 210, 143, 0.1));
	pointer-events: none;
}

.video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	border: none;
	background: none;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s ease;
	animation: playPulse 2.4s ease-in-out infinite;
}

.video-play-button:hover {
	transform: translate(-50%, -50%) scale(1.15);
	filter: drop-shadow(0 0 24px rgba(17, 210, 143, 0.5));
}

.video-play-button svg {
	width: 100%;
	height: 100%;
	filter: drop-shadow(0 4px 16px rgba(12, 17, 27, 0.4));
}

@keyframes cardFloat {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-16px);
	}
}

@keyframes playPulse {
	0%, 100% {
		box-shadow: 0 0 0 0 rgba(17, 210, 143, 0.6);
	}
	50% {
		box-shadow: 0 0 0 20px rgba(17, 210, 143, 0);
	}
}

/* Video Grid */
.video-grid {
}

/* Instructor Section */
.instructor {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	margin-bottom: 48px;
}

.instructor h4 {
	font-size: 24px;
	margin-bottom: 12px;
}

.instructor-side {
	padding: 24px;
	background: var(--glass-bg);
	border: 1px solid var(--line);
	border-radius: 12px;
	font-size: 14px;
	line-height: 1.8;
}

.instructor-side p {
	margin: 12px 0;
}

.instructor-side a {
	color: #1f7bf2;
	text-decoration: none;
	transition: color 0.2s ease;
}

.instructor-side a:hover {
	color: #11d28f;
	text-decoration: underline;
}

/* Instructor Premium Section */
.instructor-premium {
	margin-bottom: 100px;
	margin-top: 64px;
}

.instructor-container {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 60px;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

.instructor-image-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
}

.profile-img {
	width: 300px;
	height: 300px;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	flex: 0 0 300px;
	max-width: 300px;
	max-height: 300px;
}

.instructor-image-frame {
	position: relative;
	width: 300px;
	height: 300px;
	border-radius: 20px;
	overflow: hidden;
	animation: floatInstructor 3.2s ease-in-out infinite;
}

.instructor-image-frame::before {
	content: '';
	position: absolute;
	inset: -2px;
	border-radius: 28px;
	padding: 2px;
	background: linear-gradient(135deg, #11d28f, #1f7bf2);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0.6;
	animation: glowPulse 3s ease-in-out infinite;
}

.instructor-image-frame::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 28px;
	background: radial-gradient(circle at 30% 30%, rgba(17, 210, 143, 0.15), transparent 60%);
	pointer-events: none;
}

.instructor-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 24%;
	display: block;
}

.profile-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 24%;
	display: block;
}

.profile-img-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.03em;
	color: rgba(180, 200, 220, 0.7);
	background:
		radial-gradient(circle at 30% 30%, rgba(17, 210, 143, 0.25), transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(31, 123, 242, 0.2), transparent 45%),
		linear-gradient(135deg, rgba(15, 45, 84, 0.6), rgba(7, 17, 31, 0.8));
	border: 1px solid rgba(17, 210, 143, 0.15);
	border-radius: 16px;
	box-shadow: 
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 8px 24px rgba(0, 0, 0, 0.4);
}

.instructor-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.instructor-head h2 {
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 700;
	margin: 0;
	text-align: center;
}

.instructor-name {
	font-family: 'Poppins', sans-serif;
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 700;
	margin: 0;
	color: var(--ink);
	line-height: 1.2;
}

.instructor-description {
	font-size: 15px;
	line-height: 1.75;
	color: var(--muted);
	margin: 0;
}

.instructor-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-top: 8px;
}

.instructor-stat-card {
	padding: 24px;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: 16px;
	backdrop-filter: blur(12px);
	transition: all 0.3s ease;
	text-align: center;
}

.instructor-stat-card:hover {
	transform: translateY(-8px);
	background: var(--glass-bg-strong);
	border-color: rgba(17, 210, 143, 0.4);
	box-shadow: 0 16px 40px rgba(17, 210, 143, 0.15);
}

.stat-value {
	font-family: 'Poppins', sans-serif;
	font-size: 28px;
	font-weight: 700;
	background: linear-gradient(135deg, #11d28f, #1f7bf2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 4px;
}

.stat-label {
	font-size: 14px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 4px;
}

.stat-subtitle {
	font-size: 12px;
	color: var(--muted);
}

.instructor-social {
	display: flex;
	gap: 12px;
	margin-top: 12px;
}

.social-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(17, 210, 143, 0.15), rgba(31, 123, 242, 0.15));
	border: 1px solid rgba(17, 210, 143, 0.3);
	color: #11d28f;
	transition: all 0.3s ease;
	text-decoration: none;
}

.social-icon:hover {
	transform: scale(1.15) translateY(-4px);
	background: linear-gradient(135deg, #11d28f, #1f7bf2);
	color: white;
	box-shadow: 0 8px 24px rgba(17, 210, 143, 0.3);
}

.social-icon svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

@keyframes floatInstructor {
	0%, 100% {
		 transform: translateY(0px);
	}
	50% {
		 transform: translateY(-12px);
	}
}

@keyframes glowPulse {
	0%, 100% {
		 opacity: 0.5;
	}
	50% {
		 opacity: 0.9;
	}
}

/* Cart Block */

/* Cart Block */
.cart-block {
	text-align: center;
	padding: 40px;
	background: linear-gradient(135deg, rgba(31, 123, 242, 0.05), rgba(17, 210, 143, 0.05));
	border: 1px dashed rgba(31, 123, 242, 0.3);
	border-radius: 12px;
	margin-bottom: 48px;
}

/* Cart Page Styles */
.cart-section {
	display: grid;
	grid-template-columns: 1fr 350px;
	gap: 24px;
	padding: 20px 0;
	margin-bottom: 48px;
}

.cart-items {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.cart-items .panel {
	display: grid;
	grid-template-columns: 1fr auto auto;
	gap: 16px;
	align-items: center;
	padding: 16px;
}

.cart-items .panel h4 {
	margin: 0;
	font-size: 16px;
	grid-column: 1;
}

.cart-items .panel input[type="number"] {
	width: 60px;
	padding: 8px;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: var(--glass-bg);
	color: var(--ink);
	font-family: 'Manrope', sans-serif;
}

/* Responsive */
@media (max-width: 1024px) {
	.hero {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.instructor {
		grid-template-columns: 1fr;
	}

	.cart-section {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.header-row {
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px;

	.profile-img,
	.instructor-image-frame {
		width: 300px;
		height: 300px;
	}
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.brand {
		font-size: 20px;
	}

	.main-nav {
		justify-content: center;
		width: 100%;
		gap: 6px;
	}

	.main-nav a,
	.main-nav .btn,
	.main-nav .theme-toggle {
		padding: 6px 10px;
		font-size: 12px;
	}

	.hero h2 {
		font-size: 32px;
	}

	.section-head h3 {
		font-size: 24px;
	}

	.quick-metrics {
		grid-template-columns: repeat(2, 1fr);
	}

	.feature-grid {
		grid-template-columns: 1fr;
	}

	.course-list {
		grid-template-columns: 1fr;
	}

	.testimonials {
		grid-template-columns: 1fr;
	}

	.code-panel {
		display: none;
	}
}

/* About Instructor Section - Premium */
.about-instructor {
	padding: 160px 20px 64px 20px;
	background: linear-gradient(180deg, #041021 0%, #07121a 38%, #03060a 100%);
	overflow: visible;
	position: relative;
	opacity: 0;
	transform: translateY(12px);
	transition: opacity .7s ease, transform .7s ease;
}
.about-instructor.in-view { opacity: 1; transform: translateY(0); }
.about-inner { max-width: 1180px; margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: 520px 1fr; gap: 56px; align-items: start; }

.photo-stack { position: relative; width: 520px; height: 520px; margin: 0 auto; perspective: 1200px; cursor: default; transform: translateX(-36px); }
.stack-layer { position: absolute; inset: 0; border-radius: 26px; transition: transform .52s cubic-bezier(.2,.9,.2,1), box-shadow .4s ease; }
.layer-bottom { transform: rotate(-8deg) translate(-26px, 26px); background: linear-gradient(135deg,#06223a,#0b3b58); box-shadow: 0 36px 86px rgba(2,12,30,0.66); border-radius:30px; }
.layer-mid { transform: rotate(6deg) translate(12px, 18px); background: linear-gradient(135deg,#063b44,#0fb5a8); box-shadow: 0 26px 62px rgba(11,77,93,0.48); border-radius:22px; }
.layer-top { display:flex; align-items:center; justify-content:center; overflow:hidden; padding:18px; box-sizing:border-box; background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); border-radius:18px; border:1px solid rgba(255,255,255,0.04); backdrop-filter: blur(8px); }
.instructor-photo { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; display:block; box-shadow: 0 22px 68px rgba(2,10,26,0.7); transform-origin: center; }

.photo-stack:focus .stack-layer,
.photo-stack:hover .stack-layer { transform: translateY(-8px); }
.photo-stack:hover .layer-top { transform: translateZ(22px) rotate(1.2deg); }
.photo-stack { animation: floatSlow 5.6s ease-in-out infinite; }

@keyframes floatSlow { 0%{transform:translateY(0)}50%{transform:translateY(-10px)}100%{transform:translateY(0)} }

.about-right { color: rgba(230,240,255,0.96); padding-top: 28px; }
.instructor-name-primary { font-family: 'Poppins', sans-serif; font-size: 44px; font-weight: 800; margin: 0 0 12px 0; color: #fff; letter-spacing: -0.01em; }
.name-highlight { background: linear-gradient(90deg,#1f7bf2,#47d3c1); -webkit-background-clip:text; -webkit-text-fill-color:transparent; display:inline-block; }
.about-desc { color: rgba(200,220,255,0.82); line-height:1.7; margin: 10px 0 12px 0; max-width: 760px; }

.about-stats { display:flex; gap:28px; margin-top:28px; justify-content:flex-start; }
.stat-card { flex:1; min-width: 320px; background: rgba(255,255,255,0.02); border-radius:16px; padding:22px 20px; border:1px solid rgba(255,255,255,0.045); backdrop-filter: blur(8px); transition: transform .28s ease, box-shadow .28s ease; }
.stat-card:hover { transform: translateY(-10px); box-shadow: 0 26px 72px rgba(31,123,242,0.14); }
.stat-num { font-size:30px; font-weight:900; background: linear-gradient(90deg,#11d28f,#1f7bf2); -webkit-background-clip:text; -webkit-text-fill-color:transparent; margin-bottom:8px; }
.stat-title { font-weight:700; color:#e8f7ff; margin-bottom:8px; font-size:15px; }
.stat-sub { font-size:13px; color: rgba(200,220,255,0.62); }

.about-social { display:flex; gap:12px; margin-top:28px; justify-content:center; }
.soc-btn { width:48px; height:48px; display:inline-flex; align-items:center; justify-content:center; border-radius:999px; background: linear-gradient(135deg,#1f7bf2,#11d28f); box-shadow: 0 12px 36px rgba(31,123,242,0.14); transition: transform .18s ease, box-shadow .2s ease; }
.soc-btn:hover { transform: scale(1.08); box-shadow: 0 20px 46px rgba(31,123,242,0.22); }

/* Heading glow */
.about-head { font-size: clamp(28px, 4.8vw, 44px); color: #fff; text-align:center; margin-bottom: 26px; position: relative; }
.about-head::after { content: ''; position: absolute; inset: auto 40% -18px 40%; height: 80px; background: radial-gradient(ellipse at center, rgba(31,123,242,0.08), transparent 40%); filter: blur(32px); z-index:-1; }

/* Responsive */
@media (max-width: 980px) {
	.about-grid { grid-template-columns: 1fr; gap: 28px; }
	.photo-stack { width: 320px; height: 320px; margin: 0 auto 10px; }
	.instructor-name-primary { text-align:center; }
	.about-right { text-align:center; }
	.about-stats { flex-direction: column; }
	.stat-card { width: 100%; }
	.about-social { justify-content:center; }
}

@media (max-width: 480px) {
	.profile-img,
	.instructor-image-frame {
		width: 300px;
		height: 300px;
	}
	.photo-stack { width: 260px; height: 260px; }
	.about-inner { padding: 0 12px; }
	.about-desc { font-size: 14px; }
}

/* Universal List Styles Reset */
ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* Footer Styles */
.site-footer.footer-premium {
	background: #0c111b;
	border-top: 1px solid rgba(100, 150, 200, 0.15);
	padding: 60px 20px;
	margin-top: 80px;
	font-family: 'Inter', sans-serif;
	color: rgba(237, 242, 255, 0.8);
	width: 100%;
	box-sizing: border-box;
}

.site-footer.footer-premium .footer-container {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 2fr) !important;
	gap: 60px;
	max-width: 1200px;
	margin: 0 auto 50px;
	width: 100%;
	box-sizing: border-box;
	align-items: start;
}

.site-footer.footer-premium .footer-col {
	display: block;
	width: auto;
	min-width: 0;
}

.site-footer.footer-premium .footer-col h3 {
	font-size: 16px;
	font-weight: 600;
	color: #90c2ff;
	margin: 0 0 20px 0;
	letter-spacing: 0.3px;
}

.site-footer.footer-premium .footer-col h2 {
	font-size: 24px;
	font-weight: 700;
	color: #edf2ff;
	margin: 0 0 12px 0;
}

.site-footer.footer-premium .footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer.footer-premium .footer-col li {
	margin: 12px 0;
}

.site-footer.footer-premium .footer-col a {
	color: rgba(237, 242, 255, 0.75);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
	display: inline-block;
}

.site-footer.footer-premium .footer-col a:hover {
	color: #1f7bf2;
	text-decoration: underline;
}

.site-footer.footer-premium .footer-socials {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.site-footer.footer-premium .footer-social-item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(237, 242, 255, 0.75);
	font-size: 14px;
}

.site-footer.footer-premium .footer-social-item i {
	color: #1f7bf2;
	width: 20px;
	text-align: center;
}

.site-footer.footer-premium .footer-social-item a {
	color: rgba(237, 242, 255, 0.75);
}

.site-footer.footer-premium .footer-social-item a:hover {
	color: #1f7bf2;
}

.site-footer.footer-premium .footer-tagline {
	color: rgba(237, 242, 255, 0.7);
	font-size: 14px;
	line-height: 1.6;
	margin: 12px 0 24px 0;
}

.site-footer.footer-premium .office-card {
	background: rgba(17, 210, 143, 0.08);
	border: 1px solid rgba(100, 150, 200, 0.2);
	border-radius: 8px;
	padding: 16px;
	margin-top: 16px;
	transition: all 0.3s ease;
}

.site-footer.footer-premium .office-card:hover {
	border-color: rgba(31, 123, 242, 0.3);
	background: rgba(31, 123, 242, 0.05);
}

.site-footer.footer-premium .office-head {
	color: #90c2ff;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.site-footer.footer-premium .office-head i {
	color: #11d28f;
}

.site-footer.footer-premium .office-info {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer.footer-premium .office-info li {
	color: rgba(237, 242, 255, 0.7);
	font-size: 13px;
	line-height: 1.6;
	margin: 10px 0;
	padding-left: 0;
}

.site-footer.footer-premium .footer-bottom-bar {
	border-top: 1px solid rgba(100, 150, 200, 0.15);
	padding-top: 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.site-footer.footer-premium .footer-bottom-bar p {
	color: rgba(190, 210, 235, 0.7);
	font-size: 13px;
	margin: 0;
}

.site-footer.footer-premium .heart {
	color: #ff6b9d;
	font-size: 14px;
	margin: 0 4px;
}

@media (max-width: 768px) {
	.site-footer.footer-premium .footer-container {
		grid-template-columns: 1fr;
		gap: 40px;
		margin-bottom: 40px;
	}

	.site-footer.footer-premium .footer-bottom-bar {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
}

@media (min-width: 769px) {
	.site-footer.footer-premium .footer-container {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 2fr) !important;
	}
}

/* ===== DARK MODE FORCE FIX - courses.php & course.php ===== */
body[data-theme='dark'],
body:not([data-theme='light']) {
	background-color: #0c111b !important;
	color: #edf2ff !important;
}

/* Dark mode navbar brand */
body[data-theme='dark'] .brand-name,
body:not([data-theme='light']) .brand-name {
	background: linear-gradient(90deg, #ffffff, #a8cfff) !important;
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
	background-clip: text !important;
}

body[data-theme='dark'] .site-header,
body:not([data-theme='light']) .site-header {
	background: rgba(8, 13, 24, 0.92) !important;
	border-bottom-color: rgba(255,255,255,0.06) !important;
}

/* Dark mode nav links */
body[data-theme='dark'] .nav-item-link,
body[data-theme='dark'] .main-nav a,
body:not([data-theme='light']) .nav-item-link,
body:not([data-theme='light']) .main-nav a {
	color: rgba(200, 220, 255, 0.82) !important;
}

/* Dark mode theme toggle */
body[data-theme='dark'] .theme-toggle,
body:not([data-theme='light']) .theme-toggle {
	background: rgba(255,255,255,0.06) !important;
	border-color: rgba(255,255,255,0.12) !important;
	color: rgba(200,220,255,0.85) !important;
}

/* Dark mode page background */
body[data-theme='dark'] main,
body:not([data-theme='light']) main {
	background: transparent !important;
	color: #edf2ff !important;
}

/* Dark mode section headings */
body[data-theme='dark'] h1,
body[data-theme='dark'] h2,
body[data-theme='dark'] h3,
body[data-theme='dark'] h4,
body:not([data-theme='light']) h1,
body:not([data-theme='light']) h2,
body:not([data-theme='light']) h3,
body:not([data-theme='light']) h4 {
	color: #edf2ff !important;
}

/* Dark mode course cards */
body[data-theme='dark'] .course-card,
body:not([data-theme='light']) .course-card {
	background: linear-gradient(160deg, rgba(255,255,255,0.06), transparent 44%),
	            rgba(18, 28, 46, 0.72) !important;
	border-color: rgba(174, 207, 255, 0.12) !important;
	color: #edf2ff !important;
}

body[data-theme='dark'] .course-card h4,
body:not([data-theme='light']) .course-card h4 {
	color: #edf2ff !important;
}

body[data-theme='dark'] .course-card p,
body[data-theme='dark'] .course-card .course-points li,
body:not([data-theme='light']) .course-card p,
body:not([data-theme='light']) .course-card .course-points li {
	color: #9ea9be !important;
}

body[data-theme='dark'] .course-points,
body:not([data-theme='light']) .course-points {
	border-color: rgba(174, 207, 255, 0.1) !important;
}

body[data-theme='dark'] .tag,
body:not([data-theme='light']) .tag {
	background: rgba(18, 28, 46, 0.72) !important;
	border-color: rgba(174, 207, 255, 0.15) !important;
	color: #edf2ff !important;
}

/* Dark mode search bar */
body[data-theme='dark'] input[type="text"],
body[data-theme='dark'] input[type="search"],
body:not([data-theme='light']) input[type="text"],
body:not([data-theme='light']) input[type="search"] {
	background: rgba(10, 18, 32, 0.8) !important;
	border-color: rgba(174, 207, 255, 0.18) !important;
	color: #edf2ff !important;
}

body[data-theme='dark'] input::placeholder,
body:not([data-theme='light']) input::placeholder {
	color: #6b7a96 !important;
}

/* Dark mode course hero (course detail page) */
body[data-theme='dark'] .course-hero,
body:not([data-theme='light']) .course-hero {
	border-bottom-color: rgba(174, 207, 255, 0.1) !important;
}

body[data-theme='dark'] .course-hero-left h1,
body:not([data-theme='light']) .course-hero-left h1 {
	background: linear-gradient(90deg, #1f7bf2, #11d28f) !important;
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
	background-clip: text !important;
}

body[data-theme='dark'] .course-hero-left p,
body:not([data-theme='light']) .course-hero-left p {
	color: #9ea9be !important;
}

/* Dark mode snapshot card */
body[data-theme='dark'] .course-snapshot,
body:not([data-theme='light']) .course-snapshot {
	background: rgba(17, 28, 46, 0.82) !important;
	border-color: rgba(174, 207, 255, 0.14) !important;
}

body[data-theme='dark'] .course-snapshot h4,
body:not([data-theme='light']) .course-snapshot h4 {
	color: #edf2ff !important;
}

body[data-theme='dark'] .course-snapshot p,
body:not([data-theme='light']) .course-snapshot p {
	color: #9ea9be !important;
}

body[data-theme='dark'] .course-snapshot .tag,
body:not([data-theme='light']) .course-snapshot .tag {
	background: rgba(31, 123, 242, 0.12) !important;
	border-color: rgba(31, 123, 242, 0.25) !important;
	color: #a8c8ff !important;
}

/* Dark mode buttons secondary/outline */
body[data-theme='dark'] .btn-secondary,
body[data-theme='dark'] .btn-outline,
body:not([data-theme='light']) .btn-secondary,
body:not([data-theme='light']) .btn-outline {
	background: rgba(18, 28, 46, 0.8) !important;
	border-color: rgba(174, 207, 255, 0.2) !important;
	color: #d0dcf0 !important;
}

body[data-theme='dark'] .btn-secondary:hover,
body[data-theme='dark'] .btn-outline:hover,
body:not([data-theme='light']) .btn-secondary:hover,
body:not([data-theme='light']) .btn-outline:hover {
	background: rgba(31, 123, 242, 0.15) !important;
	border-color: rgba(31, 123, 242, 0.35) !important;
	color: #e8f3ff !important;
}

/* Dark mode footer */
body[data-theme='dark'] .site-footer,
body:not([data-theme='light']) .site-footer {
	background: rgba(8, 13, 24, 0.9) !important;
	color: #a3afc6 !important;
}

body[data-theme='dark'] .footer-bottom-bar p,
body:not([data-theme='light']) .footer-bottom-bar p {
	color: #6b7a96 !important;
}

/* Office Hours Styling */
.office-hours {
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid rgba(100, 150, 200, 0.15);
}

.hours-head {
	color: #90c2ff;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 8px;
	letter-spacing: 0.3px;
}

.hours-info {
	color: rgba(237, 242, 255, 0.7);
	font-size: 13px;
	line-height: 1.6;
}

/* WhatsApp Widget */
.whatsapp-widget {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 999;
	display: flex;
	gap: 12px;
	align-items: center;
}

.whatsapp-toggle {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, #25d366, #1da851);
	border: none;
	color: white;
	font-size: 28px;
	cursor: pointer;
	box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-toggle:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
	animation: none;
}

.whatsapp-close {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, #0f2340, #1a3a52);
	border: 1px solid rgba(31, 123, 242, 0.3);
	color: rgba(237, 242, 255, 0.8);
	font-size: 24px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease, background 0.3s ease;
}

.whatsapp-close:hover {
	transform: rotate(90deg);
	background: linear-gradient(135deg, #1a4a6a, #2a5a7a);
}

@keyframes whatsappPulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

/* ===== HOMEPAGE REFERENCE LAYOUT ===== */
.home-page .site-header {
	position: sticky;
	top: 0;
	z-index: 60;
	backdrop-filter: blur(16px) saturate(150%);
	-webkit-backdrop-filter: blur(16px) saturate(150%);
	background: rgba(9, 14, 26, 0.92) !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-page .header-row {
	min-height: 70px;
	padding: 0 28px;
	gap: 22px;
}

.home-page .brand-link {
	gap: 12px;
}

.home-page .brand-name {
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -0.04em;
}

.home-page .main-nav {
	gap: 18px;
	flex-wrap: nowrap;
}

.home-page .nav-item-link {
	padding: 10px 0;
	font-size: 15px;
	font-weight: 600;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

.home-page .nav-item-link:hover {
	background: transparent;
	color: #ffffff;
}

.home-page .nav-icon-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border-radius: 50%;
	font-size: 17px;
	color: rgba(237, 242, 255, 0.76);
}

.home-page .nav-icon-link:hover {
	background: rgba(255, 255, 255, 0.06);
	color: #ffffff;
}

.home-page .theme-toggle {
	margin-left: 0;
	width: 42px;
	height: 42px;
	padding: 0;
	border-radius: 50%;
	font-size: 0;
	position: relative;
	color: transparent;
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.12);
}

.home-page .theme-toggle::before {
	content: '☾';
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: rgba(237, 242, 255, 0.82);
}

body[data-theme='light'].home-page .theme-toggle::before {
	content: '☀';
	color: #0f2340;
}

.home-page .hero.hero-premium {
	margin-top: 0;
	padding-top: 74px;
	padding-bottom: 68px;
}

.home-page .section-head-center {
	margin-top: 78px;
	margin-bottom: 34px;
}

.home-page .why-choose-head h3,
.home-page .courses-head h3,
.home-page .testimonial-head h3,
.home-page .videos-heading h2,
.home-page .about-head {
	font-family: 'Poppins', sans-serif;
	font-weight: 800;
	letter-spacing: -0.05em;
}

.home-page .why-choose-head h3 {
	font-size: clamp(52px, 4.8vw, 84px);
	line-height: 1.02;
}

.home-page .section-lead-center {
	max-width: 1020px;
	font-size: 26px;
	line-height: 1.45;
}

.home-page .feature-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
	margin-top: 58px;
	margin-bottom: 120px;
}

.home-page .feature-card {
	position: relative;
	min-height: 370px;
	padding: 118px 30px 30px;
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(45, 48, 58, 0.98), rgba(31, 34, 41, 0.98));
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.03);
	overflow: hidden;
}

.home-page .feature-card img {
	display: none !important;
}

.home-page .feature-card::before {
	content: '';
	position: absolute;
	top: 42px;
	left: 34px;
	width: 74px;
	height: 74px;
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(52, 92, 156, 0.98), rgba(37, 68, 124, 0.98));
	box-shadow: 0 14px 28px rgba(9, 20, 43, 0.26);
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 32px;
	color: #5da6ff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.home-page .feature-card:nth-child(1)::before { content: '\f0eb'; }
.home-page .feature-card:nth-child(2)::before { content: '\f05b'; }
.home-page .feature-card:nth-child(3)::before { content: '\f135'; }
.home-page .feature-card:nth-child(4)::before { content: '\f0c0'; }
.home-page .feature-card:nth-child(5)::before { content: '\f02e'; }
.home-page .feature-card:nth-child(6)::before { content: '\f108'; }

.home-page .feature-card h4 {
	margin: 0 0 14px;
	font-family: 'Poppins', sans-serif;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.15;
	color: #ffffff;
}

.home-page .feature-card p {
	font-size: 19px;
	line-height: 1.75;
	color: rgba(226, 230, 237, 0.82);
}

.home-page .courses-head {
	margin-top: 26px;
	margin-bottom: 42px;
}

.home-page .courses-head h3 {
	font-size: clamp(52px, 4.6vw, 76px);
	line-height: 1.04;
}

.home-page .course-list {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 38px;
	margin-bottom: 132px;
}

.home-page .course-card {
	padding: 0;
	border-radius: 26px;
	background: #ffffff;
	border: 1px solid rgba(222, 226, 235, 0.98);
	box-shadow: 0 20px 46px rgba(0, 0, 0, 0.18);
	overflow: hidden;
	color: #0f2340;
}

.home-page .course-card img {
	display: none !important;
}

.home-page .course-card-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 27px 25px 0;
}

.home-page .course-card h4 {
	width: 100%;
	margin: 0 0 33px;
	padding: 25px 18px;
	border-radius: 18px;
	background: linear-gradient(135deg, #ff6b6b, #ff6f8f);
	color: #ffffff;
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.2;
	min-height: 92px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 18px rgba(255, 107, 107, 0.18);
}

.home-page .course-card:nth-child(3n + 2) h4 { background: linear-gradient(135deg, #57d2cd, #48c9bf); box-shadow: 0 10px 18px rgba(72, 201, 191, 0.18); }
.home-page .course-card:nth-child(3n + 3) h4 { background: linear-gradient(135deg, #57b9e2, #4fa7db); box-shadow: 0 10px 18px rgba(79, 167, 219, 0.18); }
.home-page .course-card:nth-child(3n + 4) h4 { background: linear-gradient(135deg, #9ccbb5, #94d3b3); box-shadow: 0 10px 18px rgba(148, 211, 179, 0.18); }
.home-page .course-card:nth-child(3n + 5) h4 { background: linear-gradient(135deg, #a6c8ff, #9abdf2); box-shadow: 0 10px 18px rgba(154, 189, 242, 0.18); }
.home-page .course-card:nth-child(3n + 6) h4 { background: linear-gradient(135deg, #d996e1, #cf90dd); box-shadow: 0 10px 18px rgba(207, 144, 221, 0.18); }

.home-page .course-card > p:not(.price) {
	display: none;
}

.home-page .course-meta {
	display: none;
}

.home-page .course-points {
	padding: 0;
	margin: 8px 0 0;
	border: 0;
	gap: 18px;
	flex-grow: 0;
}

.home-page .course-points li {
	font-size: 19px;
	line-height: 1.55;
	color: #24344a;
	gap: 12px;
}

.home-page .course-points li::before {
	content: '\f00c' !important;
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	width: 26px;
	height: 26px;
	min-width: 26px;
	border-radius: 999px;
	background: #19bf9d;
	color: #ffffff;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 0;
}

.home-page .price {
	margin: 26px 0 18px;
	font-family: 'Poppins', sans-serif;
	font-size: 57px;
	font-weight: 800;
}

/* ===== 6 COURSE CARDS - ATTRACTIVE GRID ===== */
.course-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.course-card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: linear-gradient(160deg, rgba(255,255,255,0.06), transparent 44%),
                var(--glass-bg);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 28px rgba(3,8,18,0.32);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    padding: 0;
}

.course-card:hover {
    transform: translateY(-10px);
    border-color: rgba(31, 123, 242, 0.45);
    box-shadow: 
        0 24px 52px rgba(31, 123, 242, 0.2),
        0 4px 16px rgba(0,0,0,0.28);
}

.course-card img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    margin: 0 !important;
    display: block;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.course-card:hover img {
    transform: scale(1.05);
}

.course-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px;
    gap: 12px;
}

.course-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    color: var(--ink);
    line-height: 1.3;
    min-height: 44px;
}

.course-card-body > p:not(.price) {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
    min-height: 58px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Checklist points */
.course-points {
    list-style: none;
    padding: 14px 0;
    margin: 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.course-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.4;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.course-points li svg {
    flex-shrink: 0;
}

/* Tags */
.course-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    font-size: 11px;
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid rgba(31,123,242,0.2);
    background: rgba(31,123,242,0.08);
    color: #6aa8ff;
    font-weight: 600;
}

/* Price */
.price {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #1f7bf2;
    margin: 0;
    padding: 0;
}

/* Buttons */
.course-card-actions {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: auto;
    width: 100%;
}

.course-card-actions .btn {
    flex: 1;
    padding: 12px 10px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

/* View Details - outlined style */
.course-card-actions .btn-secondary {
    background: transparent !important;
    border: 1.5px solid rgba(174, 207, 255, 0.25) !important;
    color: #c0d0f0 !important;
    box-shadow: none !important;
}

.course-card-actions .btn-secondary:hover {
    background: rgba(31, 123, 242, 0.1) !important;
    border-color: rgba(31, 123, 242, 0.45) !important;
    color: #e8f3ff !important;
}

/* Add to Cart - solid blue */
.course-card-actions .btn-primary {
    background: linear-gradient(135deg, #1f7bf2, #135ec7) !important;
    border: none !important;
    color: #ffffff !important;
    box-shadow: 0 6px 18px rgba(31, 123, 242, 0.35) !important;
}

.course-card-actions .btn-primary:hover {
    background: linear-gradient(135deg, #2a88ff, #1a6fd4) !important;
    box-shadow: 0 10px 24px rgba(31, 123, 242, 0.48) !important;
    transform: translateY(-1px);
}

/* Light mode */
body[data-theme='light'] .course-card-actions .btn-secondary {
    border-color: rgba(31, 123, 242, 0.25) !important;
    color: #1a3a5c !important;
}

body[data-theme='light'] .course-card-actions .btn-secondary:hover {
    background: rgba(31, 123, 242, 0.08) !important;
    color: #1f7bf2 !important;
}

/* Light mode */
body[data-theme='light'] .course-card {
    background: #ffffff;
    border-color: rgba(31,123,242,0.1);
    box-shadow: 0 4px 20px rgba(31,123,242,0.07);
}

body[data-theme='light'] .course-card:hover {
    border-color: rgba(31,123,242,0.35);
    box-shadow: 0 20px 48px rgba(31,123,242,0.14);
}

body[data-theme='light'] .course-card h4 { color: #0f2340; }
body[data-theme='light'] .course-card-body > p { color: #4a6080; }
body[data-theme='light'] .course-points li { color: #3a5068; }
body[data-theme='light'] .course-points {
    border-color: rgba(31,123,242,0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .course-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .course-list {
        grid-template-columns: 1fr;
    }
}
	line-height: 1;
	text-align: center;
	color: #08172b;
}

.home-page .course-card-actions {
	grid-template-columns: 1fr;
	padding: 0 29px 33px;
	margin-top: auto;
}

.home-page .course-card-actions .btn {
	padding: 15px 20px;
	border-radius: 12px;
	border: 3px solid #2f63f8;
	background: transparent;
	color: #2f63f8;
	font-size: 21px;
	font-weight: 700;
	box-shadow: none;
}

.home-page .course-card-actions .btn:hover {
	background: rgba(47, 99, 248, 0.06);
	transform: translateY(-1px);
}

.home-page .course-card-actions .btn-primary {
	display: none;
}

.home-page .testimonial-head {
	margin-top: 0;
	margin-bottom: 42px;
}

.home-page .testimonial-head h3,
.home-page .videos-heading h2,
.home-page .about-head {
	font-size: clamp(52px, 4.6vw, 72px);
	line-height: 1.04;
}

.home-page .videos-premium {
	margin-top: 90px;
	margin-bottom: 100px;
}

.home-page .videos-container {
	grid-template-columns: 1.05fr 0.95fr;
	gap: 56px;
}

.home-page .video-feature-card {
	padding: 18px 22px;
	border-radius: 18px;
	background: rgba(35, 38, 46, 0.96);
	border-color: rgba(255, 255, 255, 0.12);
}

.home-page .video-feature-icon {
	width: 76px;
	height: 76px;
	border-radius: 18px;
}

.home-page .video-feature-info h5 {
	font-size: 21px;
}

.home-page .video-feature-info p {
	font-size: 17px;
}

.home-page .video-preview-card {
	max-width: 780px;
	border-radius: 26px;
	box-shadow: 0 24px 64px rgba(31, 123, 242, 0.22), 0 8px 32px rgba(17, 210, 143, 0.14);
}

.home-page .instructor-premium {
	margin-top: 100px;
	margin-bottom: 120px;
}

.home-page .about-instructor {
	padding-top: 150px;
	padding-bottom: 70px;
}

.home-page .site-footer.footer-premium {
	margin-top: 90px;
}

@media (max-width: 1200px) {
	.home-page .feature-grid,
	.home-page .course-list {
		gap: 27px;
	}

	.home-page .feature-card {
		min-height: 340px;
		padding-top: 104px;
	}

	.home-page .course-card h4 {
		font-size: 24px;
	}

	.home-page .price {
		font-size: 50px;
	}
}

@media (max-width: 980px) {
	.home-page .feature-grid,
	.home-page .course-list,
	.home-page .videos-container {
		grid-template-columns: 1fr;
	}

	.home-page .feature-card,
	.home-page .course-card {
		max-width: 720px;
		margin: 0 auto;
	}

	.home-page .feature-card {
		min-height: 300px;
	}

	.home-page .main-nav {
		gap: 12px;
		flex-wrap: wrap;
	}

	.home-page .nav-item-link {
		padding: 8px 0;
	}

	.home-page .nav-icon-link,
	.home-page .theme-toggle {
		width: 40px;
		height: 40px;
	}

	.home-page .courses-head h3,
	.home-page .why-choose-head h3,
	.home-page .testimonial-head h3,
	.home-page .videos-heading h2,
	.home-page .about-head {
		font-size: clamp(34px, 6vw, 52px);
	}

	.home-page .section-lead-center {
		font-size: 21px;
	}
}

@media (max-width: 720px) {
	.home-page .feature-grid,
	.home-page .course-list {
		gap: 20px;
	}

	.home-page .feature-card {
		padding: 106px 25px 27px;
		min-height: 297px;
	}

	.home-page .feature-card::before {
		top: 33px;
		left: 27px;
		width: 68px;
		height: 68px;
		font-size: 29px;
	}

	.home-page .feature-card h4 {
		font-size: 24px;
	}

	.home-page .feature-card p,
	.home-page .course-points li {
		font-size: 18px;
	}

	.home-page .course-card-body {
		padding: 22px 20px 0;
	}

	.home-page .course-card h4 {
		padding: 20px 15px;
		font-size: 24px;
		min-height: 79px;
	}

	.home-page .price {
		font-size: 48px;
	}

	.home-page .course-card-actions {
		padding: 0 20px 25px;
	}

	.home-page .course-card-actions .btn {
		font-size: 20px;
	}
}

/* ===== GLOBAL FONT STYLE - Clean & Modern ===== */
html, body {
	font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
	font-weight: 400;
	font-size: 17px;
	line-height: 1.7;
	letter-spacing: 0.01em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* All paragraphs */
p {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 400;
	font-size: 17px;
	line-height: 1.72;
	letter-spacing: 0.01em;
	color: var(--muted);
}

/* Hero description - matches image exactly */
.hero.hero-premium p,
.hero p {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 400;
	font-size: clamp(17px, 2vw, 21px);
	line-height: 1.72;
	letter-spacing: 0.015em;
	color: #b3bed0;
}

/* All headings */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Poppins', 'Plus Jakarta Sans', sans-serif;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

/* Nav links */
.nav-item-link,
.main-nav a {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 500;
	letter-spacing: 0.01em;
}

/* Buttons */
.btn, button {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 700;
	letter-spacing: 0.02em;
}

/* Course cards text */
.course-card p,
.feature-card p,
.testimonial-text,
.testimonial-text-small,
.about-desc,
.section-lead,
.videos-description {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 400;
	line-height: 1.72;
	letter-spacing: 0.01em;
}

/* Tags and pills */
.tag, .pill, .skill-tag {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 600;
	letter-spacing: 0.03em;
}

/* Stats numbers stay Poppins */
.hero-stat strong,
.stat-num,
.metric-value,
.stat-value {
	font-family: 'Poppins', sans-serif;
	font-weight: 800;
}

/* Price */
.price {
	font-family: 'Poppins', sans-serif;
	font-weight: 800;
}

/* Footer text */
.site-footer,
.footer-col a,
.footer-col li,
.office-info li,
.footer-tagline {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 400;
	letter-spacing: 0.01em;
}

/* Form inputs */
input, textarea, select, label {
	font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Testimonials */
.testimonial-author-info h5,
.testimonial-card-header h6 {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 700;
}