/* UP Academy Homepage Design System */

:root {
    --hp-section-padding: 4rem 0;
    --hp-title-size: 2rem;
    --hp-subtitle-color: #64748b;
    --hp-card-radius: 1.25rem;
    --hp-card-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.hp-section-header { text-align: center; margin-bottom: 2rem; }
.hp-section-title { font-size: var(--hp-title-size); font-weight: 800; color: #1e293b; margin-bottom: 0.5rem; }
.hp-section-subtitle { color: var(--hp-subtitle-color); font-size: 1.05rem; }
.hp-view-all-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1.5rem; border-radius: 50px;
    background: var(--primary-color-gradient); color: #fff;
    font-weight: 600; text-decoration: none; transition: transform 0.2s ease;
}
.hp-view-all-btn:hover { transform: translateY(-2px); color: #fff; }
.hp-view-all-btn-lg { padding: 0.875rem 2rem; font-size: 1rem; }
.hp-empty-state {
    text-align: center; padding: 3rem 2rem; background: #f8fafc;
    border-radius: var(--hp-card-radius); border: 2px dashed #e2e8f0;
}
.hp-empty-state h3 { font-size: 1.25rem; font-weight: 700; color: #334155; margin-bottom: 0.5rem; }
.hp-empty-state p { color: #64748b; margin-bottom: 1.25rem; }

/* Hero */
.nlx-hero-section {
    position: relative; min-height: 85vh; display: flex; align-items: center;
    padding: 3rem 0; overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 50%, #faf5ff 100%);
}
.hero-background { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-shape { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.4; }
.hero-shape-1 { width: 400px; height: 400px; background: #c7d2fe; top: -100px; right: -100px; }
.hero-shape-2 { width: 300px; height: 300px; background: #ddd6fe; bottom: -50px; left: -50px; }
.hero-shape-3 { width: 200px; height: 200px; background: #fbcfe8; top: 50%; left: 30%; }
.hero-particles { position: absolute; inset: 0; }
.hero-particles .particle {
    position: absolute; width: 4px; height: 4px; background: #6366f1; border-radius: 50%;
    left: var(--x); top: var(--y); animation: twinkle 3s ease-in-out infinite; animation-delay: var(--delay);
}
@keyframes twinkle { 0%, 100% { opacity: 0.2; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.5); } }
.min-vh-75 { min-height: 75vh; }
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(99,102,241,0.1) 0%, rgba(139,92,246,0.1) 100%);
    border: 1px solid rgba(99,102,241,0.2); border-radius: 50px;
    font-size: 0.875rem; font-weight: 500; color: #6366f1; margin-bottom: 1.5rem;
}
.hero-main-title {
    font-size: 3.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-description { font-size: 1.25rem; color: #64748b; line-height: 1.7; margin-bottom: 1.5rem; max-width: 500px; }
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.hero-cta {
    display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem;
    border-radius: 50px; font-weight: 600; text-decoration: none; transition: all 0.3s ease;
}
.hero-cta-primary { background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%); color: white; box-shadow: 0 8px 25px rgba(99,102,241,0.35); }
.hero-cta-secondary { background: white; color: #6366f1; border: 2px solid rgba(99,102,241,0.25); }
.hero-cta-browse { background: transparent; color: #6366f1; border: 2px dashed rgba(99,102,241,0.35); }
.hero-cta:hover { transform: translateY(-2px); color: white; }
.hero-cta-secondary:hover, .hero-cta-browse:hover { background: #6366f1; border-color: #6366f1; }
.hero-search-form { margin-bottom: 1.5rem; }
.search-input-wrapper {
    display: flex; align-items: center; background: white; border-radius: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08); padding: 0.5rem; max-width: 500px;
    border: 2px solid transparent; transition: all 0.3s ease; position: relative;
}
.search-input-wrapper:focus-within { border-color: rgba(99,102,241,0.3); box-shadow: 0 10px 40px rgba(99,102,241,0.15); }
.search-input-wrapper .search-icon { position: absolute; left: 1.25rem; color: #94a3b8; font-size: 1.25rem; }
.search-input-wrapper .search-input {
    flex: 1; border: none; background: transparent; padding: 1rem 1rem 1rem 3.5rem;
    font-size: 1rem; outline: none; color: #1e293b;
}
.search-input-wrapper .search-btn {
    display: flex; align-items: center; gap: 0.5rem; padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%); color: white;
    border: none; border-radius: 50px; font-weight: 600; cursor: pointer;
}
.hero-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.tag-label { font-size: 0.875rem; color: #64748b; font-weight: 500; }
.hero-tag {
    padding: 0.375rem 1rem; background: rgba(99,102,241,0.1); color: #6366f1;
    border-radius: 50px; font-size: 0.875rem; font-weight: 500; text-decoration: none;
}
.hero-tag:hover { background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%); color: white; }
.hero-stats {
    display: flex; align-items: center; gap: 1.5rem; padding: 1.5rem 2rem;
    background: white; border-radius: 1rem; box-shadow: 0 4px 20px rgba(0,0,0,0.05); max-width: fit-content;
}
.stat-item { display: flex; align-items: center; gap: 0.75rem; }
.stat-icon {
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(99,102,241,0.1) 0%, rgba(139,92,246,0.1) 100%);
    border-radius: 12px; font-size: 1.25rem; color: #6366f1;
}
.stat-value { font-size: 1.5rem; font-weight: 700; color: #1e293b; line-height: 1.2; display: block; }
.stat-label { font-size: 0.8125rem; color: #64748b; }
.stat-divider { width: 1px; height: 40px; background: #e2e8f0; }
.hero-visual { position: relative; z-index: 1; }
.hero-illustration { position: relative; display: flex; align-items: center; justify-content: center; min-height: 500px; }
.illustration-card {
    position: absolute; display: flex; align-items: center; gap: 0.75rem; padding: 1rem 1.25rem;
    background: white; border-radius: 1rem; box-shadow: 0 10px 40px rgba(0,0,0,0.1); z-index: 3;
}
.card-1 { top: 10%; right: 10%; }
.card-2 { bottom: 25%; left: 5%; }
.card-3 { bottom: 10%; right: 15%; }
.hero-main-visual { position: relative; width: 350px; height: 350px; display: flex; align-items: center; justify-content: center; }
.visual-glow {
    position: absolute; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(99,102,241,0.2) 0%, rgba(139,92,246,0.2) 100%);
    border-radius: 50%; filter: blur(40px);
}
.visual-image { position: relative; max-width: 100%; height: auto; z-index: 2; }

/* Top Courses Rich */
.top-courses-section { padding: var(--hp-section-padding); background: linear-gradient(180deg, #fff 0%, #f8fafc 100%); }
.top-courses-grid { display: flex; flex-direction: column; gap: 1rem; }
.top-course-rich-card {
    display: grid; grid-template-columns: auto 120px 1fr auto; gap: 1.25rem; align-items: center;
    background: white; border-radius: var(--hp-card-radius); padding: 1.25rem 1.5rem;
    box-shadow: var(--hp-card-shadow); text-decoration: none; color: inherit; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.top-course-rich-card:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(99,102,241,0.12); color: inherit; }
.top-course-rank-badge {
    width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.125rem; color: white; background: var(--primary-color-gradient);
}
.top-course-rank-badge.rank-1 { background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%); }
.top-course-rank-badge.rank-2 { background: linear-gradient(135deg, #94a3b8 0%, #cbd5e1 100%); }
.top-course-rank-badge.rank-3 { background: linear-gradient(135deg, #b45309 0%, #d97706 100%); }
.top-course-cover { width: 120px; height: 68px; border-radius: 0.75rem; object-fit: cover; background: #f1f5f9; }
.top-course-rich-body h3 { font-size: 1rem; font-weight: 700; color: #1e293b; margin-bottom: 0.35rem; }
.top-course-rich-meta { display: flex; flex-wrap: wrap; gap: 0.75rem; font-size: 0.8125rem; color: #64748b; }
.top-course-rich-meta span { display: inline-flex; align-items: center; gap: 0.25rem; }
.top-course-rich-price { text-align: right; font-weight: 700; color: #6366f1; white-space: nowrap; }
.top-course-rich-price.free { color: #10b981; }

/* Brand Story — editorial */
.brand-story-section {
    padding: clamp(3.5rem, 7vw, 6rem) 0;
    background: #faf8f4;
    border-top: 1px solid #e7e2d9;
}
.brand-story-section > .container { position: relative; }
.brand-story-header { max-width: 760px; margin: 0 0 3.5rem; }
.brand-story-eyebrow {
    display: inline-block; margin-bottom: 1.1rem;
    color: #4f46e5; font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
}
.brand-story-section .brand-badge { display: none; }
.brand-story-section .hp-section-title {
    font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 800; letter-spacing: -0.02em;
    color: #1c1917; line-height: 1.15; margin: 0 0 1rem;
}
.brand-story-header .brand-intro { color: #57534e; font-size: 1.0625rem; line-height: 1.8; margin: 0; }

.brand-pillars-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
    border-top: 1px solid #e7e2d9; border-bottom: 1px solid #e7e2d9; margin-bottom: 4rem;
}
.brand-pillar-card {
    position: relative; background: none; border: none; border-radius: 0; box-shadow: none;
    padding: 2rem 1.75rem; display: flex; flex-direction: column; gap: .9rem;
    transition: background .25s ease;
}
.brand-pillar-card + .brand-pillar-card { border-left: 1px solid #e7e2d9; }
.brand-pillar-card:hover { background: #fff; }
.brand-pillar-topline { display: flex; align-items: center; justify-content: space-between; }
.brand-pillar-index { font-size: .8rem; font-weight: 700; letter-spacing: .12em; color: #4f46e5; }
.brand-pillar-icon {
    width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: #4f46e5; background: #efeafc; border: 1px solid #e2dbf3;
    box-shadow: none; transition: background .25s ease, color .25s ease;
}
.brand-pillar-icon::after { display: none; }
.brand-pillar-card:hover .brand-pillar-icon { background: #4f46e5; color: #fff; }
.brand-pillar-title { font-size: 1.125rem; font-weight: 800; color: #1c1917; margin: 0; letter-spacing: -0.01em; }
.brand-pillar-text { font-size: .9375rem; color: #57534e; line-height: 1.7; margin: 0; }
.brand-quote-row { margin-top: 0; }
.brand-programs-header {
    display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
    gap: .5rem 1rem; margin-bottom: 0; padding-bottom: 1rem; border-bottom: 1px solid #e7e2d9;
}
.brand-section-kicker {
    display: block; color: #4f46e5; font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: .5rem;
}
.brand-programs-title { font-size: 1.5rem; font-weight: 800; color: #1c1917; margin: 0; letter-spacing: -0.02em; }
.brand-programs-count {
    color: #57534e; font-size: .78rem; font-weight: 600; letter-spacing: .04em;
    padding: .3rem .6rem; background: #fff; border: 1px solid #e7e2d9; border-radius: 4px;
}
.brand-programs-subtitle { color: #57534e; font-size: .9375rem; margin: .75rem 0 0; }
.brand-programs-grid { margin-top: 0; grid-template-columns: 1fr; }

.lifecycle-grid { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 0; }
.lifecycle-card {
    position: relative; background: none; border: none; border-radius: 0; box-shadow: none;
    border-bottom: 1px solid #e7e2d9;
    display: flex; align-items: flex-start; gap: 1.1rem;
    padding: 1.4rem 0; color: inherit; transition: background .25s ease;
}
.lifecycle-card:last-child { border-bottom: none; }
.lifecycle-card-static { cursor: default; }
.lifecycle-card:hover, .lifecycle-card-static:hover { background: #fff; transform: none; border-color: #e7e2d9; box-shadow: none; }
.lifecycle-icon {
    width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; color: #4f46e5; background: #efeafc; border: 1px solid #e2dbf3;
    box-shadow: none; margin: 0; transition: background .25s ease, color .25s ease;
}
.lifecycle-icon::after { display: none; }
.lifecycle-card:hover .lifecycle-icon { background: #4f46e5; color: #fff; }
.lifecycle-card-body { flex: 1; }
.lifecycle-card h3 { font-size: 1.0625rem; font-weight: 800; color: #1c1917; margin: 0 0 .35rem; letter-spacing: -0.01em; }
.lifecycle-card p { font-size: .9rem; color: #57534e; line-height: 1.65; margin: 0; }

.brand-quote {
    margin: 0 0 1.5rem; padding: 1.75rem 1.75rem 1.75rem 2rem; position: relative;
    background: #fff; border: 1px solid #e7e2d9; border-left: 4px solid #4f46e5;
    border-radius: 0; box-shadow: none;
}
.brand-quote::after { display: none; }
.brand-quote-label { display: block; color: #4f46e5; font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: .9rem; }
.brand-quote p { color: #1c1917; font-style: normal; font-size: 1.125rem; line-height: 1.7; margin: 0 0 1.25rem; }
.brand-quote-attribution { border-top: 1px solid #e7e2d9; padding-top: 1rem; display: flex; flex-direction: column; gap: .2rem; }
.brand-quote-attribution strong { color: #1c1917; font-size: .95rem; display: block; }
.brand-quote-attribution strong::before { display: none; content: none; }
.brand-quote-attribution span { color: #57534e; font-size: .8rem; }

.brand-highlights-card {
    background: #fff; border: 1px solid #e7e2d9; border-radius: 0; box-shadow: none; padding: 1.5rem 1.75rem;
}
.brand-highlights-card::before, .brand-highlights-card::after { display: none; content: none; }
.brand-highlights-title {
    font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #4f46e5;
    margin-bottom: 1.1rem; display: block;
}
.brand-highlights-title::before, .brand-highlights-title::after { display: none; content: none; }
.brand-highlights-list { gap: 0; }
.brand-highlights-list li {
    border-bottom: 1px solid #f0ebe2; padding: .7rem 0; font-size: .9375rem; color: #1c1917;
    background: none !important; transform: none !important;
}
.brand-highlights-list li:last-child { border-bottom: none; }
.brand-highlights-list li i { color: #4f46e5; background: none; -webkit-text-fill-color: #4f46e5; }
@media (max-width: 991.98px) {
    .brand-quote-row .col-lg-5 { margin-top: 2rem; }
}
@media (max-width: 991.98px) {
    .brand-pillars-grid { grid-template-columns: 1fr; }
    .brand-pillar-card + .brand-pillar-card { border-left: none; border-top: 1px solid #e7e2d9; }
}
.value-props-section { padding: var(--hp-section-padding); background: linear-gradient(180deg, #fff 0%, #f8fafc 100%); }
.value-props-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.value-prop-card {
    display: block; text-decoration: none; color: inherit; background: white; border-radius: var(--hp-card-radius);
    padding: 1.75rem 1.5rem; text-align: center; box-shadow: var(--hp-card-shadow); transition: transform 0.2s ease;
}
.value-prop-icon {
    width: 64px; height: 64px; margin: 0 auto 1rem; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(99,102,241,0.12) 0%, rgba(139,92,246,0.12) 100%);
    color: #6366f1; font-size: 1.5rem;
}

/* News */
.news-carousel-section { padding: 3rem 0; }
.news-swiper-container { position: relative; padding: 0 3rem; }
.news-card {
    height: 100%; background: white; border-radius: 1rem; overflow: hidden;
    box-shadow: var(--hp-card-shadow); display: flex; flex-direction: column;
}
.news-card-cover { width: 100%; height: 160px; object-fit: cover; background: #f1f5f9; }
.news-card-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.news-card-date { color: #64748b; font-size: 0.875rem; display: flex; align-items: center; gap: 0.35rem; }
.news-card-title { font-size: 1.05rem; font-weight: 700; color: #1e293b; line-height: 1.5; flex: 1; }
.news-card-excerpt { font-size: 0.875rem; color: #64748b; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-card-btn { align-self: flex-start; border: none; background: rgba(99,102,241,0.1); color: #6366f1; padding: 0.5rem 1rem; border-radius: 50px; font-weight: 600; }
.news-nav-btn {
    position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px;
    border: none; border-radius: 50%; background: var(--primary-color-gradient); color: white; z-index: 2;
}
.news-nav-prev { left: 0; }
.news-nav-next { right: 0; }

/* Learning Paths */
.learning-paths-section { padding: var(--hp-section-padding); }
.learning-paths-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.25rem; }
.learning-path-card {
    background: white; border-radius: var(--hp-card-radius); overflow: hidden;
    box-shadow: var(--hp-card-shadow); display: flex; flex-direction: column;
}
.learning-path-banner {
    height: 120px; background: var(--path-theme, var(--primary-color-gradient));
    background-size: cover; background-position: center; position: relative; padding: 1.25rem;
    display: flex; flex-direction: column; justify-content: flex-end;
}
.learning-path-banner::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15,23,42,0.55) 100%);
}
.learning-path-banner > * { position: relative; z-index: 1; color: white; }
.learning-path-audience {
    display: inline-flex; align-self: flex-start; padding: 0.3rem 0.75rem; border-radius: 50px;
    background: rgba(255,255,255,0.2); font-size: 0.75rem; font-weight: 700; margin-bottom: 0.5rem;
}
.learning-path-card-content { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.learning-path-course-count { font-size: 0.8125rem; color: #64748b; }
.learning-path-courses { display: flex; flex-direction: column; gap: 0.5rem; }
.learning-path-course-item {
    display: flex; flex-direction: column; gap: 0.15rem; padding: 0.75rem; border-radius: 0.75rem;
    background: #f8fafc; text-decoration: none; color: inherit;
}
.learning-path-link { margin-top: auto; color: #6366f1; font-weight: 700; text-decoration: none; }

/* Learning Path Detail */
.learning-path-detail-hero {
    position: relative; min-height: 280px; background: linear-gradient(135deg, var(--lp-theme, #6366f1) 0%, #4f46e5 100%);
    background-size: cover; background-position: center;
}
.learning-path-detail-hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.75) 0%, rgba(99,102,241,0.55) 100%);
}
.learning-path-detail-hero .container { position: relative; z-index: 1; }
.learning-path-detail-hero-content { max-width: 720px; }
.learning-path-detail-count { color: rgba(255,255,255,0.9); font-weight: 600; }
.learning-path-detail-section .learning-path-audience {
    display: inline-flex; padding: 0.35rem 0.85rem; border-radius: 50px;
    background: rgba(255,255,255,0.15); color: white; font-size: 0.8125rem; font-weight: 700; margin-bottom: 1rem;
}

/* Workshops */
.workshops-section { padding: var(--hp-section-padding); background: #f8fafc; }
.workshop-card { background: white; border-radius: var(--hp-card-radius); padding: 1.5rem; box-shadow: var(--hp-card-shadow); }
.workshop-card-header { display: flex; justify-content: space-between; gap: 0.75rem; margin-bottom: 1rem; }
.workshop-status, .workshop-type { padding: 0.35rem 0.85rem; border-radius: 50px; font-size: 0.75rem; font-weight: 700; }
.workshop-status.open { background: #dcfce7; color: #166534; }
.workshop-status.group_only { background: #fef3c7; color: #92400e; }
.workshop-type { background: rgba(99,102,241,0.1); color: #6366f1; }

/* Feature Courses */
.feature-courses-section { padding: 2rem 0; }
.feature-program-row { margin-bottom: 3rem; }
.feature-program-row-header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.feature-program-row-title { font-size: 1.5rem; font-weight: 800; color: #1e293b; margin: 0; }
.quick-filter-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.filter-chip {
    display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.5rem 1rem;
    border-radius: 50px; background: white; border: 1px solid #e2e8f0; color: #475569;
    font-size: 0.875rem; font-weight: 500; text-decoration: none;
}
.filter-chip:hover, .filter-chip.active { background: var(--primary-color-gradient); color: white; }

/* Category Browse — editorial */
.category-browse-section {
    padding: clamp(3.5rem, 7vw, 6rem) 0;
    background: linear-gradient(180deg, #faf9ff 0%, #f3f1fb 100%);
    border-top: 1px solid #e6e3f0;
}
.category-browse-orb { display: none !important; }
.category-browse-header { max-width: 760px; margin: 0 0 2.75rem; text-align: left; }
.category-browse-kicker {
    display: inline-flex !important; align-items: center !important; gap: .6rem !important; margin-bottom: 1.1rem !important; padding: 0 !important;
    background: none !important; color: #4f46e5 !important; font-size: .72rem !important; font-weight: 700 !important; letter-spacing: .18em !important; text-transform: uppercase !important; border-radius: 0 !important;
}
.category-browse-kicker::before {
    content: "" !important; display: inline-block !important; width: 8px !important; height: 8px !important;
    background: #7c3aed !important; border-radius: 2px !important; transform: rotate(45deg) !important;
}
.category-browse-title {
    font-size: clamp(2rem, 3.6vw, 2.8rem) !important; font-weight: 850 !important; letter-spacing: -0.025em !important; margin: 0 0 1rem !important;
    color: #1c1917 !important; line-height: 1.12 !important;
    background: none !important; -webkit-text-fill-color: #1c1917 !important;
}
.category-browse-subtitle { color: #5b5366 !important; font-size: 1.0625rem !important; line-height: 1.8 !important; margin: 0 !important; }
.category-browse-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0;
    border-top: 1px solid #e6e3f0; border-left: 1px solid #e6e3f0;
}
.category-browse-card {
    position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: .65rem;
    padding: 1.6rem 1.5rem; background: #fff;
    border: 0; border-right: 1px solid #e6e3f0; border-bottom: 1px solid #e6e3f0; border-radius: 0;
    box-shadow: none; backdrop-filter: none; text-decoration: none; color: inherit;
    transition: background .25s ease;
}
.category-browse-card::before {
    display: block !important; content: "" !important; position: absolute !important; top: 0 !important; left: 0 !important; right: 0 !important; height: 3px !important;
    border-radius: 0 !important; opacity: 1 !important;
}
.category-browse-card:nth-child(4n+1)::before { background: #4f46e5 !important; }
.category-browse-card:nth-child(4n+2)::before { background: #6d28d9 !important; }
.category-browse-card:nth-child(4n+3)::before { background: #9333ea !important; }
.category-browse-card:nth-child(4n)::before { background: #7c3aed !important; }
.category-browse-card:hover { background: #faf9ff !important; transform: none !important; box-shadow: none !important; border-color: #e6e3f0 !important; }
.category-browse-card-index { position: static !important; color: #4f46e5 !important; font-size: .72rem !important; font-weight: 700 !important; letter-spacing: .12em !important; }
.category-browse-card:nth-child(4n+2) .category-browse-card-index { color: #6d28d9 !important; }
.category-browse-card:nth-child(4n+3) .category-browse-card-index { color: #9333ea !important; }
.category-browse-card:nth-child(4n) .category-browse-card-index { color: #7c3aed !important; }
.category-browse-icon {
    width: 46px !important; height: 46px !important; border-radius: 12px !important; display: flex !important; align-items: center !important; justify-content: center !important;
    font-size: 1.25rem !important; color: #fff !important; box-shadow: none !important; border: 0 !important; margin: .25rem 0 !important; transform: none !important;
}
.category-browse-icon::after { display: none !important; }
.category-browse-card:nth-child(4n+1) .category-browse-icon { background: #4f46e5 !important; }
.category-browse-card:nth-child(4n+2) .category-browse-icon { background: #6d28d9 !important; }
.category-browse-card:nth-child(4n+3) .category-browse-icon { background: #9333ea !important; }
.category-browse-card:nth-child(4n) .category-browse-icon { background: #7c3aed !important; }
.category-browse-card:hover .category-browse-icon { transform: none !important; }
.category-browse-card-title {
    font-size: 1.0625rem !important; font-weight: 800 !important; color: #1c1917 !important; margin: 0 !important; letter-spacing: -0.01em !important;
    position: static !important; display: block !important; background: none !important; -webkit-text-fill-color: #1c1917 !important;
}
.category-browse-card-title::after { display: none !important; }
.category-browse-card-count {
    font-size: .8rem !important; color: #5b5366 !important; font-weight: 600 !important; display: inline-flex !important; align-items: center !important; gap: .35rem !important;
}
.category-browse-card-count::before { display: none !important; }
.category-browse-card-arrow { display: none !important; }
@media (max-width: 576px) {
    .category-browse-card-index { display: block !important; }
}

/* Trust Bar */
.trust-bar-section { padding: 2.5rem 0; background: #f8fafc; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }
.trust-bar-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2rem; }
.trust-bar-logo img { max-height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7; transition: all 0.2s ease; }
.trust-bar-logo:hover img { filter: none; opacity: 1; }
.trust-bar-logo-placeholder { padding: 0.5rem 1rem; background: white; border-radius: 0.5rem; font-weight: 600; color: #64748b; font-size: 0.875rem; }

/* Testimonials */
.testimonials-section { padding: var(--hp-section-padding); }
.testimonial-card {
    background: white; border-radius: var(--hp-card-radius); padding: 2rem;
    box-shadow: var(--hp-card-shadow); height: 100%; display: flex; flex-direction: column; gap: 1rem;
}
.testimonial-quote { font-size: 1rem; color: #334155; line-height: 1.7; flex: 1; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
    width: 48px; height: 48px; border-radius: 50%; background: var(--primary-color-gradient);
    display: flex; align-items: center; justify-content: center; color: white; font-weight: 700;
}

/* FAQ */
.faq-section { padding: var(--hp-section-padding); background: #f8fafc; }
.faq-accordion .accordion-item { border: none; margin-bottom: 0.75rem; border-radius: 0.75rem !important; overflow: hidden; box-shadow: 0 2px 8px rgba(15,23,42,0.04); }
.faq-accordion .accordion-button { font-weight: 600; color: #1e293b; }
.faq-accordion .accordion-button:not(.collapsed) { background: rgba(99,102,241,0.08); color: #6366f1; }

/* Bottom CTA */
.bottom-cta-section {
    padding: 4rem 0; background: var(--primary-color-gradient); color: white; text-align: center;
}
.bottom-cta-title { font-size: 2rem; font-weight: 800; margin-bottom: 0.75rem; }
.bottom-cta-subtitle { font-size: 1.125rem; opacity: 0.9; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.bottom-cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.bottom-cta-btn {
    display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 1.75rem;
    border-radius: 50px; font-weight: 600; text-decoration: none; transition: transform 0.2s ease;
}
.bottom-cta-btn-primary { background: white; color: #6366f1; }
.bottom-cta-btn-secondary { background: rgba(255,255,255,0.15); color: white; border: 2px solid rgba(255,255,255,0.4); }
.bottom-cta-btn:hover { transform: translateY(-2px); color: inherit; }

/* Catalog UX */
.courses-quick-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.courses-result-summary { color: #64748b; font-size: 0.9375rem; margin-bottom: 1rem; }
.courses-active-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.courses-filter-chip {
    display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.35rem 0.75rem;
    background: rgba(99,102,241,0.1); color: #6366f1; border-radius: 50px; font-size: 0.8125rem; font-weight: 600;
}
.courses-filter-panel-sticky { position: sticky; top: 100px; }
.courses-empty-state { text-align: center; padding: 3rem 1rem; }

/* Course Detail */
.course-breadcrumb { margin-bottom: 1.5rem; font-size: 0.875rem; }
.course-breadcrumb a { color: #64748b; text-decoration: none; }
.course-breadcrumb a:hover { color: #6366f1; }
.course-key-facts { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.course-fact-badge {
    display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.5rem 0.875rem;
    background: #f8fafc; border-radius: 50px; font-size: 0.8125rem; color: #475569; font-weight: 500;
}
.course-sidebar-sticky { position: sticky; top: 100px; }
.related-courses-section { padding: 3rem 0; background: #f8fafc; margin-top: 2rem; }

/* Checkout */
.nlx-checkout-page { padding-bottom: 3rem; }

.checkout-hero {
    position: relative; padding: clamp(2.75rem, 5vw, 4rem) 0 2.5rem; overflow: hidden;
    background:
        radial-gradient(700px 240px at 88% -20%, rgba(139,92,246,.16), transparent 60%),
        radial-gradient(600px 220px at 10% 120%, rgba(99,102,241,.10), transparent 60%),
        linear-gradient(180deg, #f5f3ff 0%, #eef2ff 100%);
    border-bottom: 1px solid #e0e7ff;
}
.checkout-hero::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #a855f7);
}
.checkout-hero-glow {
    position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; z-index: 0;
}
.checkout-hero-glow--1 {
    width: 320px; height: 320px; top: -120px; right: 8%;
    background: radial-gradient(circle, rgba(168,85,247,.35), transparent 70%);
}
.checkout-hero-glow--2 {
    width: 280px; height: 280px; bottom: -140px; left: 4%;
    background: radial-gradient(circle, rgba(99,102,241,.28), transparent 70%);
}
.checkout-hero .container-xl { position: relative; z-index: 1; }
.checkout-hero-inner { max-width: 760px; }
.checkout-eyebrow {
    display: inline-flex; align-items: center; color: #4f46e5; font-size: .72rem; font-weight: 700;
    letter-spacing: .22em; text-transform: uppercase; margin-bottom: 1rem;
    padding: .4rem .85rem; background: #fff; border-radius: 999px; border: 1px solid #c7d2fe;
    box-shadow: 0 4px 12px rgba(99,102,241,.12);
}
.checkout-eyebrow i { color: #8b5cf6; }
.checkout-hero-title {
    font-size: clamp(2.1rem, 4.4vw, 3rem) !important; font-weight: 850 !important;
    color: #1c1917 !important; letter-spacing: -0.03em; line-height: 1.08; margin: 0 0 1rem;
    background: linear-gradient(135deg, #1c1917 0%, #4f46e5 60%, #7c3aed 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.checkout-hero-lead { color: #5b5366; font-size: 1.0625rem; line-height: 1.75; margin: 0; max-width: 640px; }

.checkout-body { padding-top: 2.5rem; }

/* Step indicator */
.checkout-steps {
    position: relative; display: flex; justify-content: center; align-items: center; gap: 0;
    margin-bottom: 2rem; padding: 1.5rem 2rem;
    background: #fff; border: 1px solid #e0e7ff; border-radius: 18px;
    box-shadow: 0 10px 30px rgba(99,102,241,.1);
}
.checkout-step {
    display: flex; align-items: center; gap: .75rem;
    font-size: .92rem; font-weight: 600; color: #94a3b8; position: relative; z-index: 1;
}
.checkout-step-circle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    background: #f8fafc; border: 2px solid #e2e8f0; color: #94a3b8;
    font-size: .95rem; font-weight: 700; transition: all .3s ease;
    box-shadow: 0 2px 6px rgba(15,23,42,.04);
}
.checkout-step.active .checkout-step-circle {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    border-color: transparent; color: #fff;
    box-shadow: 0 0 0 6px rgba(139,92,246,.18), 0 8px 18px rgba(99,102,241,.45);
}
.checkout-step.active .checkout-step-label { color: #4f46e5; font-weight: 700; }
.checkout-step.done .checkout-step-circle {
    background: linear-gradient(135deg, #34d399, #10b981); border-color: transparent; color: #fff;
    box-shadow: 0 6px 14px rgba(16,185,129,.35);
}
.checkout-step.done .checkout-step-label { color: #047857; }
.checkout-step-divider {
    width: 56px; height: 3px; border-radius: 3px;
    background: linear-gradient(90deg, #c7d2fe, #a5b4fc, #c7d2fe);
    align-self: center; margin: 0 .35rem;
}
.checkout-step.done + .checkout-step-divider { background: linear-gradient(90deg, #6ee7b7, #34d399); }

/* Main card */
.checkout-card {
    border: 1px solid #e0e7ff !important; border-radius: 20px !important;
    box-shadow: 0 16px 40px rgba(99,102,241,.12) !important; overflow: hidden; position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #fdfdff 100%);
}
.checkout-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; z-index: 3;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #a855f7);
}
.checkout-card > .card-body { padding: 2.25rem !important; }

/* Section heads */
.checkout-section-head { display: flex; align-items: center; gap: .85rem; margin-bottom: 1.4rem; }
.checkout-section-head h5 {
    margin: 0; font-size: 1.15rem; font-weight: 750; color: #1c1917; letter-spacing: -0.01em;
    position: relative; padding-left: .9rem;
}
.checkout-section-head h5::before {
    content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 4px; height: 22px; border-radius: 4px;
    background: linear-gradient(180deg, #6366f1, #a855f7);
}
.checkout-section-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 12px; font-size: 1.1rem;
}
.checkout-section-icon--ready {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5); color: #10b981;
    box-shadow: 0 4px 10px rgba(16,185,129,.18);
}
.checkout-section-icon--pending {
    background: linear-gradient(135deg, #fffbeb, #fef3c7); color: #f59e0b;
    box-shadow: 0 4px 10px rgba(245,158,11,.18);
}
.checkout-pending-note { margin-top: -.5rem; margin-bottom: 1.4rem; }

/* Tables */
.checkout-table { margin-bottom: 0; color: #1c1917; }
.checkout-table thead th {
    border-bottom: 2px solid #e0e7ff !important;
    background: linear-gradient(135deg, #f5f3ff, #eef2ff);
    color: #4f46e5 !important; font-weight: 700; font-size: .78rem;
    letter-spacing: .04em; text-transform: uppercase; padding: 1rem 1.1rem;
}
.checkout-table tbody td { padding: 1.1rem; vertical-align: middle; border-color: #f1f5f9; }
.checkout-table tbody tr { transition: background .2s ease, box-shadow .2s ease; position: relative; }
.checkout-table tbody tr:hover { background: #f5f3ff; box-shadow: inset 3px 0 0 #8b5cf6; }
.checkout-row-index {
    width: 48px;
}
.checkout-row-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 30px; height: 30px; border-radius: 9px; font-size: .85rem; font-weight: 700;
    background: linear-gradient(135deg, #eef2ff, #f5f3ff); color: #6366f1;
    border: 1px solid #ddd6fe;
}
.checkout-pending-row .checkout-row-num {
    background: linear-gradient(135deg, #fef3c7, #fde68a); color: #92400e; border-color: #fcd34d;
}
.checkout-table .checkout-row-name { font-weight: 650; color: #1c1917; }
.checkout-table .checkout-row-price { font-weight: 700; color: #1c1917; white-space: nowrap; }
.checkout-pending-row { background: #fffbeb; }
.checkout-pending-row:hover { background: #fef3c7; box-shadow: inset 3px 0 0 #f59e0b; }

.checkout-table tfoot th, .checkout-table tfoot td {
    padding: .9rem 1.1rem; border: 0; border-top: 1px solid #f1f5f9;
}
.checkout-subtotal-row th { color: #5b5366; font-weight: 600; font-size: .92rem; }
.checkout-discount-row th { color: #059669; font-weight: 700; }
.checkout-discount-value {
    display: inline-block; padding: .25rem .6rem; border-radius: 8px;
    background: #d1fae5; color: #047857; font-weight: 700;
}
.checkout-total-row th {
    font-size: 1.08rem; font-weight: 800; color: #1c1917;
    border-top: 2px solid #e0e7ff !important;
}
.checkout-total-pill {
    display: inline-block; padding: .55rem 1.1rem; border-radius: 12px;
    font-size: 1.15rem; font-weight: 850; color: #fff;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7);
    box-shadow: 0 8px 18px rgba(99,102,241,.35);
}
.checkout-coupon-row td { background: linear-gradient(135deg, #faf5ff, #f5f3ff); }
.checkout-coupon-input {
    border: 1px solid #ddd6fe !important; border-radius: 10px !important;
    padding: .55rem .9rem !important; font-size: .9rem; font-weight: 500;
    transition: all .2s ease;
}
.checkout-coupon-input:focus {
    border-color: #8b5cf6 !important; box-shadow: 0 0 0 4px rgba(139,92,246,.15) !important;
}

/* Buttons */
.btn-checkout-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    border: 0; color: #fff; font-weight: 700; padding: .75rem 1.7rem; border-radius: 12px;
    box-shadow: 0 10px 24px rgba(99,102,241,.4); transition: transform .2s ease, box-shadow .2s ease;
    display: inline-flex; align-items: center; gap: .5rem;
}
.btn-checkout-primary:hover {
    color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(99,102,241,.5);
}
.btn-checkout-primary:disabled { opacity: .6; transform: none; box-shadow: none; }
.btn-checkout-ghost {
    background: #fff; border: 1px solid #c7d2fe; color: #4f46e5; font-weight: 600;
    padding: .75rem 1.7rem; border-radius: 12px; transition: all .2s ease;
    display: inline-flex; align-items: center; gap: .5rem;
}
.btn-checkout-ghost:hover { background: #eef2ff; color: #4338ca; border-color: #a5b4fc; transform: translateY(-1px); }
.btn-checkout-ghost:disabled { opacity: .5; transform: none; }
.btn-checkout-danger {
    background: #fff; border: 1px solid #fecaca; color: #dc2626; font-weight: 600;
    padding: .55rem 1.05rem; border-radius: 10px; transition: all .2s ease;
    display: inline-flex; align-items: center; gap: .35rem;
}
.btn-checkout-danger:hover { background: #fef2f2; border-color: #fca5a5; transform: translateY(-1px); }
.btn-checkout-print {
    padding: 1rem 2.6rem; font-size: 1.05rem; margin-top: .5rem;
}
.btn-checkout-delete {
    background: transparent; border: 1px solid #fee2e2; color: #ef4444;
    width: 38px; height: 38px; padding: 0; border-radius: 10px; display: inline-flex;
    align-items: center; justify-content: center; transition: all .2s ease;
}
.btn-checkout-delete:hover { background: #fef2f2; border-color: #fca5a5; color: #dc2626; transform: translateY(-1px) rotate(3deg); }

.checkout-trust-note {
    font-size: .82rem; color: #64748b; text-align: center; margin-top: 1.1rem;
    display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
    padding: .4rem .85rem; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 999px;
}
.checkout-trust-note i { color: #10b981; font-size: .95rem; }

#checkout-ready-actions {
    margin-top: 1.5rem; padding: 1.75rem 1.5rem;
    background: linear-gradient(180deg, #faf5ff, #f5f3ff);
    border: 1px solid #e0e7ff; border-radius: 16px;
    display: flex; flex-direction: column; align-items: center; gap: .25rem;
}

/* Auth gate */
.checkout-auth-gate {
    text-align: center; padding: 2.5rem 1rem;
    background: linear-gradient(135deg, #f5f3ff, #eef2ff);
    border-radius: 16px; border: 1px solid #e0e7ff;
}
.checkout-auth-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 56px; height: 56px; border-radius: 50%; margin-bottom: 1rem;
    background: #fff; color: #6366f1; font-size: 1.6rem;
    box-shadow: 0 8px 20px rgba(99,102,241,.2);
}
.checkout-auth-gate h6 { font-weight: 700; color: #1c1917; }

/* Mobile item cards */
.checkout-item-card {
    position: relative; background: #fff; border: 1px solid #e0e7ff; border-radius: 16px; padding: 1.15rem 1.25rem;
    box-shadow: 0 6px 16px rgba(99,102,241,.07); margin-bottom: .85rem; transition: box-shadow .2s ease, transform .2s ease;
    overflow: hidden;
}
.checkout-item-card::before {
    content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
    background: linear-gradient(180deg, #6366f1, #a855f7);
}
.checkout-item-card:hover { box-shadow: 0 12px 24px rgba(99,102,241,.14); transform: translateY(-1px); }
.checkout-item-card--pending { background: #fffbeb; border-color: #fde68a; }
.checkout-item-card--pending::before { background: linear-gradient(180deg, #f59e0b, #fbbf24); }
.checkout-item-name { font-weight: 650; color: #1c1917; line-height: 1.4; }
.checkout-item-price { font-weight: 800; color: #1c1917; font-size: 1.05rem; }
.checkout-item-price .unit { font-size: .8rem; font-weight: 600; color: #64748b; }
.checkout-pending-badge {
    background: #fef3c7 !important; color: #92400e !important; font-weight: 600;
    padding: .35rem .65rem !important; border-radius: 8px !important;
}

/* Empty state */
.checkout-empty-state { padding: 2.5rem 1rem; text-align: center; }
.checkout-empty-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 96px; height: 96px; border-radius: 28px; margin-bottom: 1rem;
    background: linear-gradient(135deg, #eef2ff, #f5f3ff); color: #8b5cf6; font-size: 2.8rem;
    border: 1px solid #e0e7ff; box-shadow: 0 12px 30px rgba(139,92,246,.18);
    position: relative;
}
.checkout-empty-icon::after {
    content: ""; position: absolute; inset: -6px; border-radius: 32px;
    border: 2px dashed #ddd6fe; pointer-events: none;
}
.checkout-empty-state h5 { font-weight: 800; color: #1c1917; letter-spacing: -0.01em; }
.checkout-suggested { padding-top: 2rem; margin-top: 2rem; border-top: 1px dashed #e0e7ff; }

/* Pending-only notice */
.checkout-pending-notice {
    padding: 2.25rem 1.5rem; background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border: 1px solid #fde68a; border-radius: 16px; margin-top: 1.5rem; text-align: center;
    box-shadow: 0 8px 20px rgba(245,158,11,.12);
}
.checkout-pending-notice-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 56px; height: 56px; border-radius: 50%; margin-bottom: .85rem;
    background: #fff; color: #f59e0b; font-size: 1.6rem; box-shadow: 0 6px 16px rgba(245,158,11,.25);
}
.checkout-pending-notice p { margin-bottom: .25rem; color: #92400e; }

@media (max-width: 991.98px) {
    .checkout-body { padding-top: 1.5rem; }
    .checkout-card > .card-body { padding: 1.25rem !important; }
}
@media (max-width: 768px) {
    .checkout-steps { flex-direction: column; align-items: flex-start; gap: 0; padding: 1.25rem 1.5rem; }
    .checkout-step { padding: .5rem 0; }
    .checkout-step-divider {
        display: inline-block; width: 2px; height: 18px; margin: 0 0 0 19px;
        background: linear-gradient(180deg, #c7d2fe, #a5b4fc);
    }
    .checkout-empty-icon { width: 76px; height: 76px; font-size: 2.2rem; border-radius: 22px; }
}

@media (max-width: 991.98px) {
    .hero-main-title { font-size: 2.5rem; }
    .hero-visual { display: none; }
    .top-course-rich-card { grid-template-columns: auto 1fr; }
    .top-course-cover { display: none; }
    .stat-divider { display: none; }
    .hero-stats { flex-wrap: wrap; justify-content: center; width: 100%; }
}

@media (max-width: 768px) {
    .top-course-rich-card { grid-template-columns: 1fr; }
    .top-course-rank-badge { width: 36px; height: 36px; font-size: 1rem; }
    .news-swiper-container { padding: 0; }
    .news-nav-btn { display: none; }
    .hero-main-title { font-size: 1.875rem; }
}

/* Brand Story modern refresh */
.brand-story-section {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: linear-gradient(180deg, #f8faff 0%, #fff 42%, #f8fafc 100%);
}
.brand-story-section > .container { position: relative; z-index: 1; }
.brand-story-orb { position: absolute; border-radius: 999px; pointer-events: none; filter: blur(2px); }
.brand-story-orb-one {
    width: 420px; height: 420px; top: -180px; right: -150px;
    background: radial-gradient(circle, rgba(129,140,248,.16), transparent 68%);
}
.brand-story-orb-two {
    width: 360px; height: 360px; bottom: -170px; left: -170px;
    background: radial-gradient(circle, rgba(34,211,238,.1), transparent 68%);
}
.brand-story-header { max-width: 900px; margin: 0 auto 3.5rem; text-align: center; }
.brand-story-eyebrow { display: inline-flex; align-items: center; gap: .7rem; margin-bottom: 1.25rem; }
.brand-story-eyebrow-line { width: 28px; height: 1px; background: #c7d2fe; }
.brand-story-eyebrow-label, .brand-section-kicker {
    color: #818cf8; font-size: .68rem; font-weight: 800; letter-spacing: .14em;
}
.brand-story-section .brand-badge {
    margin-bottom: 0; padding: .42rem .9rem; border-radius: 999px;
    background: #eef2ff; color: #4f46e5; font-size: .75rem; font-weight: 800;
}
.brand-pillars-grid { gap: 1rem; margin-bottom: 4.5rem; }
.brand-pillar-card {
    background: rgba(255,255,255,.86); border: 1px solid rgba(148,163,184,.18);
    border-radius: 1.25rem; padding: 1.5rem;
    box-shadow: 0 12px 32px rgba(30,41,59,.06);
    backdrop-filter: blur(8px);
    transition: transform .25s ease, box-shadow .25s ease;
}
.brand-pillar-card:hover { transform: translateY(-6px); box-shadow: 0 18px 38px rgba(79,70,229,.14); }
.brand-pillar-topline { display: flex; align-items: flex-start; justify-content: space-between; }
.brand-pillar-index { color: #c7d2fe; font-size: .8rem; font-weight: 900; letter-spacing: .08em; }
.brand-pillar-title { margin-top: .15rem; }
.brand-programs-header {
    display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
    gap: .5rem 1rem; margin-bottom: 1.35rem;
}
.brand-programs-title { font-size: 1.5rem; margin: .25rem 0 .35rem; }
.brand-programs-count {
    color: #64748b; font-size: .75rem; font-weight: 700; padding: .35rem .65rem;
    background: #fff; border: 1px solid #e2e8f0; border-radius: 999px;
}
.brand-programs-subtitle { width: 100%; }
.brand-quote {
    overflow: hidden; border-radius: 1.5rem;
    background: linear-gradient(145deg, #eef2ff 0%, #f5f3ff 54%, #ecfeff 100%);
    border-color: rgba(129,140,248,.22);
    box-shadow: 0 18px 42px rgba(79,70,229,.1);
}
.brand-quote::after {
    content: ""; position: absolute; width: 150px; height: 150px; right: -55px; top: -55px;
    border-radius: 50%; border: 24px solid rgba(129,140,248,.1);
}
.brand-quote-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: .7rem; }
.brand-quote-label { color: #6366f1; font-size: .68rem; font-weight: 800; letter-spacing: .12em; }
.brand-quote-icon { margin: 0; font-size: 2.2rem; line-height: 1; }
.brand-quote p { position: relative; z-index: 1; line-height: 1.75; margin-bottom: 1.25rem; }
.brand-highlights-card { box-shadow: 0 12px 32px rgba(30,41,59,.06); }
.brand-highlights-title { display: flex; align-items: center; gap: .5rem; }
.brand-highlights-title::before { content: "✦"; color: #10b981; font-size: 1.1rem; }
.lifecycle-card {
    position: relative; overflow: hidden; border-radius: 1.15rem; padding: 1.35rem;
    box-shadow: 0 10px 26px rgba(30,41,59,.06);
    transition: transform .25s ease, box-shadow .25s ease;
}
.lifecycle-card:hover, .lifecycle-card-static:hover {
    transform: translateY(-5px); border-color: rgba(99,102,241,.2);
    box-shadow: 0 16px 32px rgba(79,70,229,.11);
}
.lifecycle-card-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: .8rem; }
.lifecycle-card-label { color: #94a3b8; font-size: .62rem; font-weight: 800; letter-spacing: .12em; margin-top: .2rem; }
.lifecycle-icon { width: 50px; height: 50px; margin-bottom: 0; }

@media (max-width: 576px) {
    .brand-story-eyebrow-line, .brand-story-eyebrow-label { display: none; }
    .brand-story-header { margin-bottom: 2.75rem; }
    .brand-programs-count { margin-bottom: .25rem; }
    .brand-quote { padding: 1.5rem; }
}

/* Brand Story finishing details */
.brand-story-header .hp-section-title {
    max-width: 760px; margin-left: auto; margin-right: auto;
    background: linear-gradient(100deg, #1e293b 15%, #4f46e5 55%, #0891b2 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    letter-spacing: -0.035em;
}
.brand-story-header .brand-intro { color: #64748b; line-height: 1.8; }
.brand-pillar-card { position: relative; }
.brand-pillar-card::before {
    content: ""; position: absolute; top: 0; left: 1.5rem; right: 1.5rem; height: 3px;
    border-radius: 0 0 8px 8px; background: linear-gradient(90deg, #6366f1, #22d3ee);
    opacity: .7; transition: left .25s ease, right .25s ease;
}
.brand-pillar-card:nth-child(2)::before { background: linear-gradient(90deg, #8b5cf6, #ec4899); }
.brand-pillar-card:nth-child(3)::before { background: linear-gradient(90deg, #f59e0b, #ef4444); }
.brand-pillar-card:hover::before { left: 0; right: 0; }
.brand-pillar-text { font-size: .9rem; }
.brand-programs-header > div:first-child { position: relative; }
.brand-programs-title::after {
    content: ""; display: block; width: 42px; height: 3px; margin-top: .7rem;
    border-radius: 999px; background: linear-gradient(90deg, #6366f1, #22d3ee);
}
.brand-programs-count { white-space: nowrap; }
.brand-programs-grid { gap: 1rem; }
.lifecycle-card { min-height: 230px; }
.lifecycle-card::after {
    content: ""; position: absolute; width: 90px; height: 90px; right: -38px; bottom: -42px;
    border-radius: 50%; background: rgba(99,102,241,.045); transition: transform .25s ease;
}
.lifecycle-card:hover::after { transform: scale(1.6); }
.lifecycle-card h3, .lifecycle-card p { position: relative; z-index: 1; }
.lifecycle-card p { font-size: .86rem; }
.brand-quote-attribution {
    position: relative; z-index: 1; padding-top: .9rem; border-top: 1px solid rgba(99,102,241,.16);
}
.brand-quote-attribution strong { display: flex; align-items: center; gap: .45rem; }
.brand-quote-attribution strong::before {
    content: ""; width: 7px; height: 7px; border-radius: 50%; background: #10b981;
    box-shadow: 0 0 0 4px rgba(16,185,129,.12);
}
.brand-highlights-card { position: relative; }
.brand-highlights-card::before {
    content: ""; position: absolute; left: 0; top: 1.35rem; bottom: 1.35rem; width: 3px;
    border-radius: 0 4px 4px 0; background: linear-gradient(180deg, #10b981, #22d3ee);
}
.brand-highlights-title, .brand-highlights-list { padding-left: .25rem; }

/* Brand Story premium polish */
.brand-story-section::before {
    content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: min(560px, 80%); height: 1px;
    background: linear-gradient(90deg, transparent, rgba(129,140,248,.45), transparent);
}
.brand-story-eyebrow { padding: .35rem .55rem .35rem .35rem; border-radius: 999px; background: rgba(238,242,255,.7); border: 1px solid rgba(199,210,254,.6); }
.brand-story-header .hp-section-title { font-weight: 850; }
.brand-story-header .brand-intro { font-size: 1.0625rem; }

.brand-pillar-card:nth-child(3n+1) { background: linear-gradient(155deg, rgba(37,99,235,.05) 0%, rgba(255,255,255,.92) 38%); }
.brand-pillar-card:nth-child(3n+2) { background: linear-gradient(155deg, rgba(124,58,237,.05) 0%, rgba(255,255,255,.92) 38%); }
.brand-pillar-card:nth-child(3n) { background: linear-gradient(155deg, rgba(245,158,11,.05) 0%, rgba(255,255,255,.92) 38%); }
.brand-pillar-card:nth-child(3n+1):hover { box-shadow: 0 22px 48px rgba(37,99,235,.18); }
.brand-pillar-card:nth-child(3n+2):hover { box-shadow: 0 22px 48px rgba(124,58,237,.18); }
.brand-pillar-card:nth-child(3n):hover { box-shadow: 0 22px 48px rgba(245,158,11,.18); }
.brand-pillar-title { position: relative; display: inline-block; }
.brand-pillar-title::after {
    content: ""; position: absolute; left: 0; bottom: -0.35rem; width: 0; height: 2px;
    border-radius: 999px; background: linear-gradient(90deg, #6366f1, #22d3ee);
    transition: width .3s ease;
}
.brand-pillar-card:nth-child(2) .brand-pillar-title::after { background: linear-gradient(90deg, #8b5cf6, #ec4899); }
.brand-pillar-card:nth-child(3) .brand-pillar-title::after { background: linear-gradient(90deg, #f59e0b, #ef4444); }
.brand-pillar-card:hover .brand-pillar-title::after { width: 38px; }

.lifecycle-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #6366f1, #22d3ee); opacity: .85;
}
.lifecycle-card:nth-child(4n+1)::before { background: linear-gradient(90deg, #2563eb, #06b6d4); }
.lifecycle-card:nth-child(4n+2)::before { background: linear-gradient(90deg, #7c3aed, #ec4899); }
.lifecycle-card:nth-child(4n+3)::before { background: linear-gradient(90deg, #059669, #14b8a6); }
.lifecycle-card:nth-child(4n)::before { background: linear-gradient(90deg, #f59e0b, #ef4444); }
.lifecycle-card h3 { letter-spacing: -0.01em; }

.brand-quote {
    background:
        radial-gradient(circle at 18% 12%, rgba(129,140,248,.18), transparent 42%),
        radial-gradient(circle at 88% 92%, rgba(34,211,238,.14), transparent 46%),
        linear-gradient(145deg, #eef2ff 0%, #f5f3ff 54%, #ecfeff 100%);
}
.brand-quote::after {
    width: 170px; height: 170px; right: -60px; top: -60px;
    border-width: 30px; border-color: rgba(129,140,248,.09);
}
.brand-quote-icon {
    background: linear-gradient(135deg, #6366f1, #22d3ee);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}

.brand-highlights-list li {
    padding: .55rem .7rem; border-radius: .65rem; transition: background .2s ease, transform .2s ease;
}
.brand-highlights-list li:hover { background: linear-gradient(90deg, rgba(16,185,129,.08), transparent); transform: translateX(3px); }
.brand-highlights-list li i {
    background: linear-gradient(135deg, #10b981, #14b8a6);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}

@media (max-width: 576px) {
    .brand-pillar-card::before { left: 1rem; right: 1rem; }
}

/* Brand Story signature polish */
.brand-story-section {
    background:
        radial-gradient(circle at 12% 8%, rgba(129,140,248,.08), transparent 38%),
        radial-gradient(circle at 88% 92%, rgba(34,211,238,.07), transparent 40%),
        linear-gradient(180deg, #f8faff 0%, #fff 42%, #f8fafc 100%);
}
.brand-story-section .container::before {
    content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
    background-image: radial-gradient(rgba(99,102,241,.16) 1px, transparent 1px);
    background-size: 26px 26px; background-position: 0 0;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
    mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
}

.brand-pillar-card { isolation: isolate; }
.brand-pillar-card .brand-pillar-icon { transition: transform .3s cubic-bezier(.2,.8,.2,1); }
.brand-pillar-card:hover .brand-pillar-icon { transform: translateY(-2px) rotate(-4deg); }
.brand-pillar-card::after {
    content: ""; position: absolute; right: 1.25rem; bottom: 1.25rem; width: 22px; height: 22px;
    border-right: 2px solid rgba(148,163,184,.3); border-bottom: 2px solid rgba(148,163,184,.3);
    border-radius: 0 0 8px 0; transition: border-color .25s ease, width .25s ease, height .25s ease;
}
.brand-pillar-card:hover::after { width: 30px; height: 30px; border-color: rgba(99,102,241,.5); }

.brand-quote {
    color: #e0e7ff;
    background:
        radial-gradient(circle at 20% 0%, rgba(129,140,248,.45), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(14,165,233,.35), transparent 55%),
        linear-gradient(155deg, #1e1b4b 0%, #4f46e5 48%, #0f172a 100%);
    border: 1px solid rgba(129,140,248,.3);
    box-shadow: 0 24px 60px rgba(99,102,241,.32), inset 0 1px 0 rgba(255,255,255,.08);
}
.brand-quote::after {
    border-color: rgba(129,140,248,.18); width: 200px; height: 200px; right: -70px; top: -70px; border-width: 34px;
}
.brand-quote-heading { padding-bottom: .9rem; margin-bottom: 1.1rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.brand-quote-label { color: #a5b4fc; }
.brand-quote-icon { background: linear-gradient(135deg, #c7d2fe, #67e8f9); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand-quote p { color: #f1f5f9; font-style: normal; font-size: 1.0625rem; line-height: 1.8; }
.brand-quote-attribution { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1rem; }
.brand-quote-attribution strong { color: #fff; font-size: 1rem; }
.brand-quote-attribution strong::before { background: #34d399; box-shadow: 0 0 0 4px rgba(52,211,153,.2); }
.brand-quote-attribution span { color: #a5b4fc; }

.brand-highlights-card { position: relative; overflow: hidden; }
.brand-highlights-card::after {
    content: ""; position: absolute; width: 140px; height: 140px; right: -50px; bottom: -50px;
    border-radius: 50%; background: radial-gradient(circle, rgba(16,185,129,.1), transparent 70%);
    pointer-events: none;
}
.brand-highlights-title { justify-content: space-between; }
.brand-highlights-title::after {
    content: attr(data-count); margin-left: auto; padding: .2rem .55rem; border-radius: 999px;
    background: rgba(16,185,129,.12); color: #047857; font-size: .68rem; font-weight: 800; letter-spacing: .04em;
}
.brand-highlights-title::before { content: "✦"; }

/* ── Warm editorial (final, wins cascade) ── */
.brand-story-section {
    background: linear-gradient(180deg, #faf9ff 0%, #f3f1fb 100%) !important;
    padding: clamp(3.5rem, 7vw, 6rem) 0 !important;
    border-top: 1px solid #e6e3f0;
}
.brand-story-section::before {
    display: block !important; content: "" !important;
    position: absolute !important; top: 0 !important; left: 0 !important; right: 0 !important; height: 3px !important;
    background: linear-gradient(90deg, #4f46e5 0%, #7c3aed 50%, #c4b5fd 100%) !important;
    filter: none !important; border-radius: 0 !important; transform: none !important; width: auto !important; margin: 0 !important;
}
.brand-story-section .container::before { display: none !important; content: none !important; }
.brand-story-orb { display: none !important; }
.brand-story-header { max-width: 760px !important; margin: 0 0 3.5rem !important; text-align: left !important; }
.brand-story-eyebrow {
    display: inline-flex !important; align-items: center !important; gap: .6rem !important;
    padding: 0 !important; margin: 0 0 1.1rem 0 !important;
    background: none !important; border: 0 !important; border-radius: 0 !important;
    color: #4f46e5 !important; font-size: .72rem !important; font-weight: 700 !important; letter-spacing: .18em !important; text-transform: uppercase !important;
}
.brand-story-eyebrow::before {
    content: "" !important; display: inline-block !important; width: 8px !important; height: 8px !important;
    background: #7c3aed !important; border-radius: 2px !important; transform: rotate(45deg) !important;
}
.brand-story-eyebrow-line, .brand-story-eyebrow-label { display: none !important; }
.brand-story-section .brand-badge { display: none !important; }
.brand-story-section .hp-section-title {
    background: none !important; -webkit-text-fill-color: #1c1917 !important; color: #1c1917 !important;
    font-weight: 850 !important; letter-spacing: -0.025em !important; line-height: 1.12 !important;
    text-align: left !important; max-width: none !important; font-size: clamp(2rem, 3.6vw, 2.8rem) !important;
}
.brand-story-header .brand-intro { color: #57534e !important; font-size: 1.0625rem !important; line-height: 1.8 !important; }

.brand-pillars-grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 0 !important; margin-bottom: 4rem !important; border-top: 1px solid #e6e3f0; border-bottom: 1px solid #e6e3f0; }
.brand-pillar-card {
    background: none !important; border: 0 !important; border-radius: 0 !important; box-shadow: none !important;
    backdrop-filter: none !important; transform: none !important; padding: 2rem 1.75rem !important;
    border-top: 3px solid transparent !important; transition: background .25s ease, border-color .25s ease !important;
}
.brand-pillar-card::before, .brand-pillar-card::after { display: none !important; content: none !important; }
.brand-pillar-card + .brand-pillar-card { border-left: 1px solid #e6e3f0 !important; }
.brand-pillar-card:nth-child(1) { border-top-color: #4f46e5 !important; }
.brand-pillar-card:nth-child(2) { border-top-color: #6d28d9 !important; }
.brand-pillar-card:nth-child(3) { border-top-color: #9333ea !important; }
.brand-pillar-card:hover { transform: none !important; box-shadow: none !important; background: #fff !important; }
.brand-pillar-icon {
    box-shadow: none !important; border: 0 !important; transform: none !important;
    width: 46px !important; height: 46px !important; border-radius: 12px !important; font-size: 1.25rem !important;
}
.brand-pillar-icon::after { display: none !important; }
.brand-pillar-card:nth-child(1) .brand-pillar-icon { background: #4f46e5 !important; color: #fff !important; }
.brand-pillar-card:nth-child(2) .brand-pillar-icon { background: #6d28d9 !important; color: #fff !important; }
.brand-pillar-card:nth-child(3) .brand-pillar-icon { background: #9333ea !important; color: #fff !important; }
.brand-pillar-card:hover .brand-pillar-icon { transform: none !important; }
.brand-pillar-index { color: #4f46e5 !important; }
.brand-pillar-card:nth-child(2) .brand-pillar-index { color: #6d28d9 !important; }
.brand-pillar-card:nth-child(3) .brand-pillar-index { color: #9333ea !important; }
.brand-pillar-title { background: none !important; -webkit-text-fill-color: #1c1917 !important; color: #1c1917 !important; font-size: 1.15rem !important; }
.brand-pillar-title::after { display: none !important; }
.brand-pillar-text { color: #57534e !important; }

.brand-programs-header { border-bottom: 1px solid #e6e3f0 !important; }
.brand-section-kicker { color: #4f46e5 !important; }
.brand-programs-title { background: none !important; -webkit-text-fill-color: #1c1917 !important; color: #1c1917 !important; font-size: 1.5rem !important; }
.brand-programs-title::after { display: none !important; }
.brand-programs-count { background: #fff !important; border: 1px solid #e6e3f0 !important; border-radius: 4px !important; color: #4f46e5 !important; }

.lifecycle-card {
    background: none !important; border: 0 !important; border-radius: 0 !important; box-shadow: none !important;
    transform: none !important; border-bottom: 1px solid #e6e3f0 !important;
    display: flex !important; align-items: flex-start !important; gap: 1.1rem !important; padding: 1.4rem 0 !important;
    position: relative !important;
}
.lifecycle-card::before, .lifecycle-card::after { display: none !important; content: none !important; }
.lifecycle-card-static { cursor: default !important; }
.lifecycle-card:hover, .lifecycle-card-static:hover { transform: none !important; box-shadow: none !important; background: #fff !important; border-color: #e6e3f0 !important; }
.lifecycle-icon {
    box-shadow: none !important; border: 0 !important; transform: none !important;
    width: 46px !important; height: 46px !important; border-radius: 12px !important; font-size: 1.2rem !important; color: #fff !important;
}
.lifecycle-icon::after { display: none !important; }
.lifecycle-card:nth-child(1) .lifecycle-icon { background: #4f46e5 !important; }
.lifecycle-card:nth-child(2) .lifecycle-icon { background: #6d28d9 !important; }
.lifecycle-card:nth-child(3) .lifecycle-icon { background: #9333ea !important; }
.lifecycle-card:nth-child(4) .lifecycle-icon { background: #7c3aed !important; }
.lifecycle-card:hover .lifecycle-icon { transform: none !important; }
.lifecycle-card-body { flex: 1 !important; }
.lifecycle-card h3 { color: #1c1917 !important; font-size: 1.0625rem !important; }
.lifecycle-card p { color: #57534e !important; }

.brand-quote {
    background: linear-gradient(155deg, #1e1b4b 0%, #4f46e5 100%) !important;
    border: 0 !important; border-left: 4px solid #a78bfa !important;
    border-radius: 6px !important;
    box-shadow: 0 18px 40px rgba(99,102,241,.28) !important;
    color: #ede9fe !important; padding: 2rem 2rem 1.75rem 2rem !important;
}
.brand-quote::after {
    display: block !important; content: "\201C" !important; position: absolute !important;
    top: .5rem !important; right: 1.4rem !important; width: auto !important; height: auto !important;
    border: 0 !important; border-radius: 0 !important; background: none !important;
    font-family: Georgia, 'Times New Roman', serif !important; font-size: 5rem !important; line-height: 1 !important;
    color: rgba(167,139,250,.4) !important; border-width: 0 !important;
}
.brand-quote-heading { border: 0 !important; }
.brand-quote-label { color: #c4b5fd !important; background: none !important; -webkit-text-fill-color: #c4b5fd !important; margin-bottom: 1rem !important; }
.brand-quote-icon { display: none !important; }
.brand-quote p { color: #ede9fe !important; font-style: normal !important; background: none !important; -webkit-text-fill-color: #ede9fe !important; font-size: 1.125rem !important; line-height: 1.75 !important; position: relative !important; z-index: 1 !important; }
.brand-quote-attribution { border-top: 1px solid rgba(196,181,253,.22) !important; padding-top: 1rem !important; position: relative !important; z-index: 1 !important; }
.brand-quote-attribution strong { color: #fff !important; background: none !important; -webkit-text-fill-color: #fff !important; }
.brand-quote-attribution strong::before { display: none !important; content: none !important; }
.brand-quote-attribution span { color: #c4b5fd !important; }

.brand-highlights-card { background: #fff !important; border: 1px solid #e6e3f0 !important; border-radius: 6px !important; box-shadow: 0 8px 24px rgba(99,102,241,.06) !important; }
.brand-highlights-card::before, .brand-highlights-card::after { display: none !important; content: none !important; }
.brand-highlights-title {
    color: #4f46e5 !important; background: none !important; display: block !important;
    font-size: .72rem !important; font-weight: 700 !important; letter-spacing: .18em !important; text-transform: uppercase !important;
}
.brand-highlights-title::before, .brand-highlights-title::after { display: none !important; content: none !important; }
.brand-highlights-list li { background: none !important; transform: none !important; border-bottom: 1px solid #f0ecf7 !important; color: #1c1917 !important; padding: .75rem 0 !important; }
.brand-highlights-list li:hover { background: none !important; transform: none !important; }
.brand-highlights-list li i { background: none !important; -webkit-text-fill-color: #7c3aed !important; color: #7c3aed !important; }

@media (max-width: 991.98px) {
    .brand-pillars-grid { grid-template-columns: 1fr !important; }
    .brand-pillar-card + .brand-pillar-card { border-left: 0 !important; border-top: 1px solid #e6e3f0 !important; }
    .brand-quote-row .col-lg-5 { margin-top: 2rem !important; }
}

/* ── Stylish refinements (purple, editorial) ── */
.brand-story-header, .category-browse-header { position: relative !important; }
.brand-story-eyebrow, .category-browse-kicker {
    padding-bottom: 1.1rem !important; margin-bottom: 1.6rem !important;
    border-bottom: 1px solid #e6e3f0 !important;
}
.brand-story-section .hp-section-title, .category-browse-title {
    position: relative !important; padding-left: 1.1rem !important;
}
.brand-story-section .hp-section-title::before, .category-browse-title::before {
    content: "" !important; position: absolute !important; left: 0 !important; top: .35em !important; bottom: .15em !important;
    width: 4px !important; border-radius: 4px !important; background: linear-gradient(180deg, #6366f1, #a855f7) !important;
}

.brand-pillar-card { overflow: hidden !important; }
.brand-pillar-card::after {
    display: block !important; content: "" !important; position: absolute !important; left: 0 !important; top: 0 !important;
    width: 3px !important; height: 0 !important; background: #7c3aed !important; transition: height .3s ease !important;
    border: 0 !important; border-radius: 0 !important; right: auto !important; bottom: auto !important;
}
.brand-pillar-card:hover::after { height: 100% !important; }
.brand-pillar-card:hover .brand-pillar-icon { box-shadow: 0 0 0 5px rgba(167,139,250,.25) !important; }
.brand-pillar-card:hover .brand-pillar-title { color: #6d28d9 !important; -webkit-text-fill-color: #6d28d9 !important; }

.lifecycle-card { padding-left: 1.1rem !important; }
.lifecycle-card::before {
    display: block !important; content: "" !important; position: absolute !important; left: 0 !important; top: 0 !important;
    width: 3px !important; height: 0 !important; background: #7c3aed !important; transition: height .3s ease !important;
    border: 0 !important; border-radius: 0 !important; right: auto !important; bottom: auto !important;
}
.lifecycle-card:hover::before { height: 100% !important; }
.lifecycle-card:hover .lifecycle-icon { box-shadow: 0 0 0 5px rgba(167,139,250,.25) !important; }
.lifecycle-card:hover h3 { color: #6d28d9 !important; }

.brand-quote {
    background:
        radial-gradient(circle at 85% 15%, rgba(167,139,250,.18), transparent 55%),
        linear-gradient(155deg, #1e1b4b 0%, #4f46e5 100%) !important;
    border: 1px solid rgba(167,139,250,.3) !important; border-left: 4px solid #a78bfa !important;
}
.brand-quote-label { display: inline-flex !important; align-items: center !important; gap: .5rem !important; }
.brand-quote-label::before {
    content: "" !important; width: 6px !important; height: 6px !important; border-radius: 50% !important;
    background: #a78bfa !important; box-shadow: 0 0 0 4px rgba(167,139,250,.2) !important;
}
.brand-quote-attribution strong { display: inline-flex !important; align-items: center !important; gap: .5rem !important; }
.brand-quote-attribution strong::after {
    content: "" !important; flex: 1 !important; height: 1px !important; background: rgba(196,181,253,.3) !important;
}

.brand-highlights-list { counter-reset: hl !important; }
.brand-highlights-list li { counter-increment: hl !important; padding-left: .25rem !important; position: relative !important; }
.brand-highlights-list li::before {
    content: counter(hl, decimal-leading-zero) !important; display: inline-block !important;
    min-width: 1.8rem !important; margin-right: .65rem !important; font-size: .72rem !important;
    font-weight: 800 !important; letter-spacing: .08em !important; color: #a78bfa !important;
    font-variant-numeric: tabular-nums !important;
}
.brand-highlights-list li i { display: none !important; }
.brand-highlights-list li:hover { color: #6d28d9 !important; }

.category-browse-card { padding-left: 1.6rem !important; transition: background .25s ease, padding-left .25s ease !important; }
.category-browse-card::before { transition: height .3s ease, background .25s ease !important; height: 3px !important; }
.category-browse-card:hover::before { height: 5px !important; }
.category-browse-card:hover .category-browse-icon { box-shadow: 0 0 0 5px rgba(167,139,250,.25) !important; }
.category-browse-card:hover .category-browse-card-title { color: #6d28d9 !important; -webkit-text-fill-color: #6d28d9 !important; }
.category-browse-card:hover .category-browse-card-count { color: #7c3aed !important; }

/* ── Editorial system: shared + Top Courses + News + Bottom CTA ── */
.hp-kicker {
    display: inline-flex !important; align-items: center !important; gap: .6rem !important;
    margin: 0 0 1.1rem 0 !important; padding: 0 0 1.1rem 0 !important;
    color: #4f46e5 !important; font-size: .72rem !important; font-weight: 700 !important;
    letter-spacing: .18em !important; text-transform: uppercase !important;
    border-bottom: 1px solid #e6e3f0 !important; background: none !important; border-radius: 0 !important;
}
.hp-kicker::before {
    content: "" !important; display: inline-block !important; width: 8px !important; height: 8px !important;
    background: #7c3aed !important; border-radius: 2px !important; transform: rotate(45deg) !important;
}
.hp-kicker-light { color: #c4b5fd !important; border-bottom-color: rgba(196,181,253,.25) !important; }
.hp-kicker-light::before { background: #a78bfa !important; }
.hp-link-arrow {
    display: inline-flex !important; align-items: center !important; gap: .5rem !important;
    color: #4f46e5 !important; font-weight: 700 !important; font-size: .95rem !important;
    text-decoration: none !important; padding: .25rem 0 !important; border: 0 !important; background: none !important; border-radius: 0 !important;
}
.hp-link-arrow i { transition: transform .25s ease !important; }
.hp-link-arrow:hover { color: #7c3aed !important; }
.hp-link-arrow:hover i { transform: translateX(4px) !important; }

/* Top Courses */
.top-courses-section {
    padding: clamp(3.5rem, 7vw, 6rem) 0 !important;
    background: #fff !important; border-top: 1px solid #e6e3f0 !important;
}
.top-courses-header { max-width: 760px; margin: 0 0 2.5rem !important; text-align: left !important; }
.top-courses-header .hp-section-title {
    position: relative !important; padding-left: 1.1rem !important; margin: 0 0 1rem 0 !important;
    color: #1c1917 !important; background: none !important; -webkit-text-fill-color: #1c1917 !important;
    font-size: clamp(2rem, 3.6vw, 2.8rem) !important; font-weight: 850 !important; letter-spacing: -0.025em !important; line-height: 1.12 !important;
}
.top-courses-header .hp-section-title::before {
    content: "" !important; position: absolute !important; left: 0 !important; top: .35em !important; bottom: .15em !important;
    width: 4px !important; border-radius: 4px !important; background: linear-gradient(180deg, #6366f1, #a855f7) !important;
}
.top-courses-header .hp-section-subtitle { color: #5b5366 !important; font-size: 1.0625rem !important; line-height: 1.8 !important; }
.top-courses-grid { display: flex !important; flex-direction: column !important; gap: 0 !important;
    border-top: 1px solid #e6e3f0 !important; }
.top-course-rich-card {
    display: grid !important; grid-template-columns: 56px 96px 1fr auto !important; gap: 1.25rem !important; align-items: center !important;
    background: none !important; border: 0 !important; border-radius: 0 !important; box-shadow: none !important;
    padding: 1.25rem 1.1rem 1.25rem 0 !important; border-bottom: 1px solid #e6e3f0 !important;
    text-decoration: none !important; color: inherit !important; position: relative !important;
    transition: background .25s ease, padding-left .25s ease !important;
}
.top-course-rich-card::before {
    content: "" !important; position: absolute !important; left: 0 !important; top: 0 !important; width: 3px !important; height: 0 !important;
    background: #7c3aed !important; transition: height .3s ease !important; border-radius: 0 !important;
}
.top-course-rich-card:hover { transform: none !important; box-shadow: none !important; background: #faf9ff !important; padding-left: 1.1rem !important; }
.top-course-rich-card:hover::before { height: 100% !important; }
.top-course-rank-badge { display: none !important; }
.top-course-rank-num {
    font-size: 1.5rem !important; font-weight: 800 !important; color: #c4b5fd !important;
    font-variant-numeric: tabular-nums !important; letter-spacing: -0.02em !important; line-height: 1 !important;
}
.top-course-rich-card.rank-1 .top-course-rank-num,
.top-course-rich-card.rank-2 .top-course-rank-num,
.top-course-rich-card.rank-3 .top-course-rank-num { color: #7c3aed !important; }
.top-course-cover-wrap { width: 96px !important; height: 64px !important; border-radius: 8px !important; overflow: hidden !important; background: #f3f1fb !important; }
.top-course-cover { width: 100% !important; height: 100% !important; object-fit: cover !important; border-radius: 0 !important; display: block !important; transition: transform .4s ease !important; }
.top-course-rich-card:hover .top-course-cover { transform: scale(1.06) !important; }
.top-course-rich-body h3 { font-size: 1.0625rem !important; font-weight: 800 !important; color: #1c1917 !important; margin: 0 0 .4rem 0 !important; letter-spacing: -0.01em !important; transition: color .2s ease !important; }
.top-course-rich-card:hover .top-course-rich-body h3 { color: #6d28d9 !important; }
.top-course-rich-meta { display: flex !important; flex-wrap: wrap !important; gap: .4rem .9rem !important; font-size: .8rem !important; color: #6b6280 !important; }
.top-course-rich-meta span { display: inline-flex !important; align-items: center !important; gap: .3rem !important; }
.top-course-rich-meta i { color: #a78bfa !important; }
.top-course-status i { font-size: .45rem !important; color: #10b981 !important; }
.top-course-rich-price { text-align: right !important; font-weight: 800 !important; color: #4f46e5 !important; white-space: nowrap !important; font-size: 1rem !important; }
.top-course-rich-price.free { color: #0f766e !important; }
.top-courses-footer { margin-top: 2rem !important; }
.top-courses-footer .hp-view-all-btn { display: none !important; }

/* News */
.news-carousel-section {
    padding: clamp(3.5rem, 7vw, 6rem) 0 !important;
    background: linear-gradient(180deg, #faf9ff 0%, #f3f1fb 100%) !important;
    border-top: 1px solid #e6e3f0 !important;
}
.news-carousel-header { max-width: 760px; margin: 0 0 2.5rem !important; text-align: left !important; }
.news-carousel-header .hp-section-title {
    position: relative !important; padding-left: 1.1rem !important; margin: 0 0 1rem 0 !important;
    color: #1c1917 !important; background: none !important; -webkit-text-fill-color: #1c1917 !important;
    font-size: clamp(2rem, 3.6vw, 2.8rem) !important; font-weight: 850 !important; letter-spacing: -0.025em !important; line-height: 1.12 !important;
}
.news-carousel-header .hp-section-title::before {
    content: "" !important; position: absolute !important; left: 0 !important; top: .35em !important; bottom: .15em !important;
    width: 4px !important; border-radius: 4px !important; background: linear-gradient(180deg, #6366f1, #a855f7) !important;
}
.news-carousel-header .hp-section-subtitle { color: #5b5366 !important; font-size: 1.0625rem !important; line-height: 1.8 !important; }
.news-swiper-container { padding: 0 2.5rem !important; }
.news-card {
    height: 100% !important; background: #fff !important; border: 1px solid #e6e3f0 !important; border-radius: 8px !important;
    overflow: hidden !important; box-shadow: none !important; display: flex !important; flex-direction: column !important;
    transition: border-color .25s ease, box-shadow .25s ease !important;
}
.news-card:hover { border-color: #c4b5fd !important; box-shadow: 0 14px 30px rgba(99,102,241,.1) !important; }
.news-card-cover-wrap { width: 100% !important; height: 160px !important; overflow: hidden !important; background: #f3f1fb !important; }
.news-card-cover { width: 100% !important; height: 100% !important; object-fit: cover !important; display: block !important; transition: transform .4s ease !important; }
.news-card-cover-placeholder { display: flex !important; align-items: center !important; justify-content: center !important; color: #c4b5fd !important; font-size: 2rem !important; }
.news-card:hover .news-card-cover { transform: scale(1.06) !important; }
.news-card-body { padding: 1.4rem !important; display: flex !important; flex-direction: column !important; gap: .65rem !important; flex: 1 !important; }
.news-card-date {
    color: #7c3aed !important; font-size: .72rem !important; font-weight: 700 !important; letter-spacing: .12em !important;
    text-transform: uppercase !important; display: inline-flex !important; align-items: center !important; gap: .45rem !important;
}
.news-card-date::before { content: "" !important; width: 5px !important; height: 5px !important; border-radius: 50% !important; background: #a78bfa !important; }
.news-card-title { font-size: 1.0625rem !important; font-weight: 800 !important; color: #1c1917 !important; line-height: 1.4 !important; flex: 1 !important; letter-spacing: -0.01em !important; transition: color .2s ease !important; }
.news-card:hover .news-card-title { color: #6d28d9 !important; }
.news-card-excerpt { font-size: .875rem !important; color: #6b6280 !important; line-height: 1.6 !important; display: -webkit-box !important; -webkit-line-clamp: 2 !important; -webkit-box-orient: vertical !important; overflow: hidden !important; }
.news-card-btn {
    align-self: flex-start !important; border: 0 !important; background: none !important; color: #4f46e5 !important;
    padding: 0 !important; border-radius: 0 !important; font-weight: 700 !important; font-size: .9rem !important;
    display: inline-flex !important; align-items: center !important; gap: .4rem !important; cursor: pointer !important;
    transition: color .2s ease !important;
}
.news-card-btn i { transition: transform .25s ease !important; }
.news-card-btn:hover { color: #7c3aed !important; }
.news-card-btn:hover i { transform: translateX(4px) !important; }
.news-nav-btn {
    position: absolute !important; top: 50% !important; transform: translateY(-50%) !important;
    width: 40px !important; height: 40px !important; border: 1px solid #e6e3f0 !important; border-radius: 50% !important;
    background: #fff !important; color: #4f46e5 !important; z-index: 2 !important; box-shadow: 0 4px 12px rgba(99,102,241,.08) !important;
    display: flex !important; align-items: center !important; justify-content: center !important; transition: all .25s ease !important;
}
.news-nav-btn:hover { background: #4f46e5 !important; color: #fff !important; border-color: #4f46e5 !important; }
.news-nav-prev { left: 0 !important; }
.news-nav-next { right: 0 !important; }
.nlx-news-swiper .swiper-pagination-bullet { background: #c4b5fd !important; opacity: 1 !important; }
.nlx-news-swiper .swiper-pagination-bullet-active { background: #7c3aed !important; }

/* Bottom CTA */
.bottom-cta-section {
    padding: clamp(3.5rem, 7vw, 6rem) 0 !important;
    background: #faf9ff !important; border-top: 1px solid #e6e3f0 !important;
}
.bottom-cta-card {
    position: relative !important; overflow: hidden !important;
    background: linear-gradient(155deg, #1e1b4b 0%, #4f46e5 60%, #4338ca 100%) !important;
    border: 1px solid rgba(167,139,250,.25) !important; border-radius: 10px !important;
    padding: 3rem 3rem !important; color: #ede9fe !important;
    box-shadow: 0 24px 60px rgba(99,102,241,.28) !important;
}
.bottom-cta-card::before {
    content: "" !important; position: absolute !important; top: 0 !important; right: 0 !important; width: 280px !important; height: 280px !important;
    border-radius: 50% !important; background: radial-gradient(circle, rgba(167,139,250,.22), transparent 65%) !important;
    pointer-events: none !important;
}
.bottom-cta-mark {
    position: absolute !important; top: 2rem !important; right: 2.5rem !important; z-index: 1 !important;
    font-size: 1rem !important; font-weight: 800 !important; letter-spacing: .14em !important; color: rgba(196,181,253,.5) !important;
    font-variant-numeric: tabular-nums !important;
}
.bottom-cta-content { position: relative !important; z-index: 1 !important; max-width: 720px !important; }
.bottom-cta-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem) !important; font-weight: 850 !important; margin: 0 0 1rem 0 !important;
    color: #fff !important; letter-spacing: -0.025em !important; line-height: 1.15 !important;
}
.bottom-cta-subtitle { font-size: 1.0625rem !important; opacity: 1 !important; color: #c4b5fd !important; margin: 0 0 2rem 0 !important; max-width: 560px !important; line-height: 1.7 !important; }
.bottom-cta-actions { display: flex !important; flex-wrap: wrap !important; gap: .75rem !important; justify-content: flex-start !important; }
.bottom-cta-btn {
    display: inline-flex !important; align-items: center !important; gap: .5rem !important;
    padding: .85rem 1.6rem !important; border-radius: 6px !important; font-weight: 700 !important; font-size: .95rem !important;
    text-decoration: none !important; transition: all .25s ease !important; border: 1px solid transparent !important;
}
.bottom-cta-btn-primary { background: #fff !important; color: #4f46e5 !important; }
.bottom-cta-btn-primary:hover { background: #a78bfa !important; color: #1e1b4b !important; transform: none !important; }
.bottom-cta-btn-secondary { background: rgba(255,255,255,.1) !important; color: #fff !important; border-color: rgba(255,255,255,.3) !important; }
.bottom-cta-btn-secondary:hover { background: rgba(255,255,255,.18) !important; color: #fff !important; transform: none !important; }
.bottom-cta-btn-outline { background: transparent !important; color: #c4b5fd !important; border-color: rgba(196,181,253,.4) !important; }
.bottom-cta-btn-outline:hover { color: #fff !important; border-color: #a78bfa !important; transform: none !important; }
.bottom-cta-btn i { transition: transform .25s ease !important; }
.bottom-cta-btn-primary:hover i { transform: translateX(4px) !important; }

/* ── Stylish refinements (no kickers) ── */
.brand-story-header, .category-browse-header, .top-courses-header, .news-carousel-header { position: relative !important; }
.brand-story-section .hp-section-title,
.category-browse-title,
.top-courses-header .hp-section-title,
.news-carousel-header .hp-section-title {
    padding-left: 1.2rem !important;
}
.brand-story-section .hp-section-title::before,
.category-browse-title::before,
.top-courses-header .hp-section-title::before,
.news-carousel-header .hp-section-title::before {
    content: "" !important; position: absolute !important; left: 0 !important; top: .3em !important; bottom: .12em !important;
    width: 5px !important; border-radius: 6px !important; background: linear-gradient(180deg, #4f46e5, #7c3aed 60%, #c4b5fd) !important;
}
.brand-story-header .brand-intro,
.category-browse-subtitle,
.top-courses-header .hp-section-subtitle,
.news-carousel-header .hp-section-subtitle { margin-top: 1.1rem !important; }

/* Top Courses — featured #1 */
.top-course-rich-card.rank-1 {
    background: linear-gradient(90deg, #f5f3ff 0%, #fff 60%) !important;
    padding: 1.6rem 1.1rem 1.6rem 0 !important;
    grid-template-columns: 56px 128px 1fr auto !important;
}
.top-course-rich-card.rank-1:hover { background: linear-gradient(90deg, #ede9fe 0%, #fff 60%) !important; }
.top-course-rich-card.rank-1 .top-course-rank-num { font-size: 2.1rem !important; color: #4f46e5 !important; }
.top-course-rich-card.rank-1 .top-course-cover-wrap { width: 128px !important; height: 84px !important; border-radius: 10px !important; }
.top-course-rich-card.rank-1 .top-course-rich-body h3 { font-size: 1.2rem !important; }
.top-course-rich-card.rank-1 .top-course-rich-price { font-size: 1.1rem !important; }

/* News — top accent on hover */
.news-card { border-top: 3px solid transparent !important; }
.news-card:hover { border-top-color: #7c3aed !important; }

/* Bottom CTA — refined */
.bottom-cta-card::after {
    content: "" !important; position: absolute !important; left: 3rem !important; right: 3rem !important;
    top: calc(3rem + 1em) !important; height: 1px !important; background: rgba(196,181,253,.18) !important; display: none !important;
}
.bottom-cta-title { position: relative !important; padding-bottom: 1.1rem !important; }
.bottom-cta-title::after {
    content: "" !important; position: absolute !important; left: 0 !important; bottom: 0 !important;
    width: 48px !important; height: 3px !important; border-radius: 4px !important;
    background: linear-gradient(90deg, #a78bfa, #c4b5fd) !important;
}
.bottom-cta-mark { display: none !important; }

@media (max-width: 768px) {
    .top-course-rich-card.rank-1 .top-course-cover-wrap { width: 96px !important; height: 64px !important; }
    .top-course-rich-card.rank-1 .top-course-rank-num { font-size: 1.7rem !important; }
    .top-course-rich-card.rank-1 { grid-template-columns: 44px 96px 1fr !important; }
}

/* ── Hero — editorial violet ── */
.nlx-hero-section {
    background: linear-gradient(180deg, #faf9ff 0%, #f3f1fb 100%) !important;
    min-height: auto !important; padding: clamp(4rem, 8vw, 7rem) 0 !important;
    border-bottom: 1px solid #e6e3f0 !important;
}
.hero-shape, .hero-particles { }
.hero-badge {
    background: #ede9fe !important; border: 1px solid #ddd6fe !important; border-radius: 999px !important;
    color: #4f46e5 !important; font-weight: 700 !important; padding: .4rem 1rem !important; margin-bottom: 1.75rem !important;
}
.hero-badge i { color: #7c3aed !important; }
.hero-main-title {
    background: none !important; -webkit-text-fill-color: #1c1917 !important; color: #1c1917 !important;
    font-weight: 850 !important; letter-spacing: -0.03em !important; line-height: 1.1 !important;
    font-size: clamp(2.5rem, 5vw, 4rem) !important; margin-bottom: 1.25rem !important;
}
.hero-description { color: #5b5366 !important; font-size: 1.125rem !important; line-height: 1.7 !important; max-width: 520px !important; }
.hero-cta { border-radius: 8px !important; padding: .85rem 1.6rem !important; font-weight: 700 !important; }
.hero-cta-primary { background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%) !important; box-shadow: 0 8px 22px rgba(99,102,241,.3) !important; }
.hero-cta-primary:hover { filter: brightness(1.05); transform: none !important; }
.search-input-wrapper {
    border-radius: 12px !important; box-shadow: 0 4px 16px rgba(99,102,241,.06) !important;
    border: 1px solid #e6e3f0 !important; padding: .4rem !important;
}
.search-input-wrapper:focus-within { border-color: #7c3aed !important; box-shadow: 0 4px 16px rgba(124,58,237,.12) !important; }
.search-input-wrapper .search-btn {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%) !important; border-radius: 8px !important; padding: .75rem 1.4rem !important;
}
.search-input-wrapper .search-btn:hover { filter: brightness(1.05); }
.hero-tag {
    background: #ede9fe !important; color: #4f46e5 !important; border: 1px solid #ddd6fe !important;
    border-radius: 999px !important; font-weight: 600 !important; padding: .35rem .9rem !important;
}
.hero-tag:hover { background: #4f46e5 !important; color: #fff !important; border-color: #4f46e5 !important; }
.hero-stats {
    background: #fff !important; border: 1px solid #e6e3f0 !important; border-radius: 12px !important;
    box-shadow: 0 6px 18px rgba(99,102,241,.05) !important; padding: 1.25rem 1.5rem !important;
}
.stat-icon { background: #ede9fe !important; color: #4f46e5 !important; border-radius: 10px !important; }
.stat-value { color: #1c1917 !important; font-weight: 850 !important; letter-spacing: -0.02em !important; }
.stat-divider { background: #e6e3f0 !important; }
.illustration-card {
    border: 1px solid #e6e3f0 !important; border-radius: 12px !important;
    box-shadow: 0 10px 24px rgba(99,102,241,.08) !important; padding: .85rem 1.1rem !important;
}
.illustration-card .card-icon {
    width: 38px !important; height: 38px !important; border-radius: 10px !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    background: #4f46e5 !important; color: #fff !important; font-size: 1.05rem !important; flex-shrink: 0 !important;
}
.visual-glow { background: radial-gradient(circle, rgba(167,139,250,.28), transparent 65%) !important; filter: blur(30px) !important; }

/* ── Counters — editorial violet ── */
.nlx-counters-section {
    background: #fff !important; padding: clamp(3.5rem, 7vw, 5.5rem) 0 !important;
    border-top: 1px solid #e6e3f0 !important;
}
.nlx-counters-grid {
    display: grid !important; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 0 !important; max-width: 1200px !important; margin: 0 auto !important;
    border-top: 1px solid #e6e3f0 !important; border-left: 1px solid #e6e3f0 !important;
}
.nlx-counter-card {
    text-align: left !important; padding: 2.25rem 1.5rem !important;
    background: #fff !important; border: 0 !important; border-radius: 0 !important; box-shadow: none !important;
    border-right: 1px solid #e6e3f0 !important; border-bottom: 1px solid #e6e3f0 !important;
    transition: background .25s ease !important; transform: none !important;
}
.nlx-counter-card::before { background: #4f46e5 !important; height: 3px !important; }
.nlx-counter-card:hover { transform: none !important; box-shadow: none !important; background: #faf9ff !important; }
.nlx-counter-icon {
    width: 48px !important; height: 48px !important; margin: 0 0 1rem !important;
    background: #ede9fe !important; color: #4f46e5 !important; border-radius: 12px !important; font-size: 1.4rem !important;
}
.nlx-counter-value {
    background: none !important; -webkit-text-fill-color: #1c1917 !important; color: #1c1917 !important;
    font-size: 2.5rem !important; font-weight: 850 !important; letter-spacing: -0.03em !important; line-height: 1.1 !important;
    margin-bottom: .3rem !important;
}
.nlx-counter-title {
    color: #6b6280 !important; font-size: .82rem !important; font-weight: 700 !important;
    text-transform: uppercase !important; letter-spacing: .1em !important;
}
@media (max-width: 768px) {
    .nlx-counters-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .nlx-counter-card { padding: 1.5rem 1.25rem !important; }
    .nlx-counter-value { font-size: 2rem !important; }
}
@media (max-width: 576px) {
    .nlx-counters-grid { grid-template-columns: 1fr !important; }
    .nlx-counter-card { display: flex !important; align-items: center !important; gap: 1.25rem !important; padding: 1.25rem 1.5rem !important; }
    .nlx-counter-icon { margin: 0 !important; flex-shrink: 0 !important; }
    .nlx-counter-content { flex: 1 !important; }
}

@media (max-width: 768px) {
    .top-course-rich-card { grid-template-columns: 44px 80px 1fr !important; gap: .9rem !important; }
    .top-course-rich-price { grid-column: 2 / -1 !important; text-align: left !important; padding-top: .25rem !important; }
    .bottom-cta-card { padding: 2.25rem 1.75rem !important; }
    .bottom-cta-mark { right: 1.75rem !important; top: 1.5rem !important; }
}

/* ── Brand Story · Luminous Network + Isometric 3D (final, wins cascade) ── */
.brand-story-section {
    position: relative !important; overflow: hidden !important;
    padding: clamp(4rem, 8vw, 7rem) 0 !important;
    background:
        radial-gradient(circle at 15% 10%, rgba(124,58,237,.10), transparent 42%),
        radial-gradient(circle at 88% 88%, rgba(34,211,238,.08), transparent 44%),
        linear-gradient(180deg, #f6f7fb 0%, #eef0f8 100%) !important;
    border-top: 0 !important;
}
.brand-story-section::before {
    content: "" !important; position: absolute !important; top: 0 !important; left: 0 !important; right: 0 !important;
    height: 2px !important; background: linear-gradient(90deg, transparent, #7c3aed, #22d3ee, transparent) !important;
    filter: none !important; transform: none !important; width: auto !important; margin: 0 !important; border-radius: 0 !important;
}
.brand-story-section .container { position: relative !important; z-index: 2 !important; }
.brand-story-section .container::before { display: none !important; content: none !important; }

.brand-story-network { position: absolute !important; inset: 0 !important; pointer-events: none !important; z-index: 1 !important; overflow: hidden !important; }
.brand-story-network-grid {
    position: absolute !important; left: -10% !important; right: -10% !important; bottom: -20% !important; height: 80% !important;
    background-image:
        linear-gradient(rgba(124,58,237,.22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124,58,237,.22) 1px, transparent 1px) !important;
    background-size: 64px 64px !important;
    transform: perspective(620px) rotateX(62deg) !important;
    transform-origin: bottom center !important;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 35%, #000 78%, transparent 100%) !important;
    mask-image: linear-gradient(180deg, transparent 0%, #000 35%, #000 78%, transparent 100%) !important;
    opacity: .55 !important;
    animation: brand-net-pan 18s linear infinite !important;
}
.brand-story-network-grid--alt {
    background-size: 128px 128px !important; opacity: .22 !important; animation-duration: 26s !important;
}
@keyframes brand-net-pan { from { background-position: 0 0; } to { background-position: 0 64px; } }

.brand-story-node {
    position: absolute !important; width: 8px !important; height: 8px !important; border-radius: 50% !important;
    background: #c4b5fd !important; box-shadow: 0 0 12px 3px rgba(167,139,250,.7), 0 0 24px 6px rgba(124,58,237,.35) !important;
    animation: brand-node-pulse 3.4s ease-in-out infinite !important;
}
.brand-story-node--1 { top: 18%; left: 22%; animation-delay: 0s !important; }
.brand-story-node--2 { top: 30%; left: 68%; animation-delay: .6s !important; background: #67e8f9 !important; box-shadow: 0 0 12px 3px rgba(103,232,249,.7), 0 0 24px 6px rgba(34,211,238,.35) !important; }
.brand-story-node--3 { top: 58%; left: 12%; animation-delay: 1.2s !important; }
.brand-story-node--4 { top: 66%; left: 78%; animation-delay: 1.8s !important; background: #67e8f9 !important; box-shadow: 0 0 12px 3px rgba(103,232,249,.7), 0 0 24px 6px rgba(34,211,238,.35) !important; }
.brand-story-node--5 { top: 44%; left: 46%; animation-delay: 2.4s !important; }
@keyframes brand-node-pulse { 0%,100% { opacity: .35; transform: scale(.8); } 50% { opacity: 1; transform: scale(1.4); } }

.brand-story-orb { position: absolute !important; border-radius: 50% !important; filter: blur(70px) !important; pointer-events: none !important; }
.brand-story-orb--a { width: 460px !important; height: 460px !important; top: -180px !important; right: -160px !important; background: radial-gradient(circle, rgba(124,58,237,.22), transparent 70%) !important; }
.brand-story-orb--b { width: 380px !important; height: 380px !important; bottom: -170px !important; left: -150px !important; background: radial-gradient(circle, rgba(34,211,238,.16), transparent 70%) !important; }

/* Brand Story · header + pillars */
.brand-story-header { max-width: 820px !important; margin: 0 auto 3.5rem !important; text-align: center !important; }
.brand-story-eyebrow {
    display: inline-flex !important; align-items: center !important; gap: .55rem !important;
    margin: 0 0 1.2rem 0 !important; padding: .42rem 1rem !important;
    background: rgba(255,255,255,.7) !important; border: 1px solid rgba(124,58,237,.22) !important;
    border-radius: 999px !important; backdrop-filter: blur(8px) !important;
    color: #6d28d9 !important; font-size: .72rem !important; font-weight: 800 !important;
    letter-spacing: .14em !important; text-transform: uppercase !important;
}
.brand-story-eyebrow::before { display: none !important; content: none !important; }
.brand-story-eyebrow-dot { width: 8px !important; height: 8px !important; border-radius: 50% !important; background: #7c3aed !important; box-shadow: 0 0 10px 2px rgba(124,58,237,.6) !important; }
.brand-story-section .hp-section-title {
    background: linear-gradient(100deg, #1e1b4b 0%, #7c3aed 50%, #0891b2 100%) !important;
    -webkit-background-clip: text !important; background-clip: text !important;
    -webkit-text-fill-color: transparent !important; color: transparent !important;
    font-weight: 850 !important; letter-spacing: -0.03em !important; line-height: 1.15 !important;
    text-align: center !important; max-width: none !important; padding: 0 !important; font-size: clamp(2rem, 3.8vw, 2.9rem) !important;
}
.brand-story-section .hp-section-title::before { display: none !important; content: none !important; }
.brand-story-header .brand-intro { color: #5b5366 !important; font-size: 1.0625rem !important; line-height: 1.8 !important; }

.brand-pillars-grid {
    display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 1.5rem !important;
    margin-bottom: 4rem !important; border: 0 !important; border-top: 0 !important; border-bottom: 0 !important;
}
.brand-pillar-card {
    position: relative !important; isolation: isolate !important; overflow: hidden !important;
    background: rgba(255,255,255,.62) !important; border: 1px solid rgba(255,255,255,.7) !important;
    border-radius: 1.5rem !important; padding: 0 !important; box-shadow: 0 18px 42px rgba(99,102,241,.1) !important;
    backdrop-filter: blur(16px) !important; -webkit-backdrop-filter: blur(16px) !important;
    transform: none !important; border-top: 0 !important; border-left: 0 !important;
    transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease !important;
}
.brand-pillar-card + .brand-pillar-card { border-left: 0 !important; }
.brand-pillar-card::before, .brand-pillar-card::after { display: none !important; content: none !important; }
.brand-pillar-card:hover { transform: translateY(-8px) !important; box-shadow: 0 28px 60px rgba(124,58,237,.22) !important; }

.brand-pillar-scene { position: relative !important; height: 190px !important; overflow: hidden !important; }
.brand-pillar-card--1 .brand-pillar-scene { background: linear-gradient(160deg, #ede9fe 0%, #ddd6fe 55%, #c4b5fd 100%) !important; }
.brand-pillar-card--2 .brand-pillar-scene { background: linear-gradient(160deg, #f5f3ff 0%, #ede9fe 50%, #f0abfc 100%) !important; }
.brand-pillar-card--3 .brand-pillar-scene { background: linear-gradient(160deg, #e0f2fe 0%, #c7d2fe 55%, #a5b4fc 100%) !important; }
.brand-pillar-scene::after {
    content: "" !important; position: absolute !important; inset: 0 !important; pointer-events: none !important;
    background: radial-gradient(circle at 50% 78%, rgba(255,255,255,.55), transparent 60%) !important;
}
.brand-pillar-icon {
    position: absolute !important; top: 1rem !important; right: 1rem !important;
    width: 44px !important; height: 44px !important; border-radius: 13px !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    font-size: 1.2rem !important; color: #fff !important; z-index: 5 !important;
    box-shadow: 0 8px 20px rgba(99,102,241,.25), 0 0 18px rgba(124,58,237,.4) !important;
    border: 1px solid rgba(255,255,255,.35) !important;
}
.brand-pillar-card--1 .brand-pillar-icon { background: linear-gradient(135deg, #6d28d9, #4f46e5) !important; }
.brand-pillar-card--2 .brand-pillar-icon { background: linear-gradient(135deg, #7c3aed, #c026d3) !important; }
.brand-pillar-card--3 .brand-pillar-icon { background: linear-gradient(135deg, #0891b2, #6366f1) !important; }

/* Brand Story · pillar illustration image */
.brand-pillar-card--1 .brand-pillar-scene,
.brand-pillar-card--2 .brand-pillar-scene,
.brand-pillar-card--3 .brand-pillar-scene { background: none !important; }
.brand-pillar-scene { height: 200px !important; }
.brand-pillar-scene::after { display: none !important; content: none !important; }
.brand-pillar-scene-glow { display: none !important; }
.brand-pillar-scene-img {
    position: absolute !important; z-index: 1 !important; inset: 0 !important;
    width: 100% !important; height: 100% !important; max-width: none !important; max-height: none !important;
    object-fit: cover !important; display: block !important; margin: 0 !important;
    filter: none !important; clip-path: none !important;
    transition: transform .5s cubic-bezier(.2,.8,.2,1) !important;
}
.brand-pillar-card:hover .brand-pillar-scene-img { transform: scale(1.04) !important; }
.brand-pillar-icon { box-shadow: 0 8px 20px rgba(30,27,75,.35) !important; }
.brand-pillar-scene.is-img-fallback .brand-pillar-icon {
    top: 50% !important; right: auto !important; left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 64px !important; height: 64px !important; font-size: 1.6rem !important;
}
.brand-pillar-scene.is-img-fallback { background: linear-gradient(160deg, #ede9fe 0%, #ddd6fe 55%, #c4b5fd 100%) !important; }

.brand-pillar-body { padding: 1.4rem 1.5rem 1.75rem !important; position: relative !important; z-index: 2 !important; }
.brand-pillar-index {
    display: inline-block !important; font-size: .72rem !important; font-weight: 800 !important;
    letter-spacing: .12em !important; color: #a78bfa !important; margin-bottom: .5rem !important;
}
.brand-pillar-card--2 .brand-pillar-index { color: #d946ef !important; }
.brand-pillar-card--3 .brand-pillar-index { color: #22d3ee !important; }
.brand-pillar-title {
    color: #1e1b4b !important; -webkit-text-fill-color: #1e1b4b !important;
    font-size: 1.2rem !important; font-weight: 850 !important; letter-spacing: -0.01em !important; margin: 0 0 .55rem !important;
}
.brand-pillar-title::after { display: none !important; content: none !important; }
.brand-pillar-text { color: #57534e !important; font-size: .9375rem !important; line-height: 1.7 !important; }

/* Brand Story · isometric 3D scenes */
.iso-stage {
    position: absolute !important; inset: 0 !important; display: flex !important; align-items: center !important; justify-content: center !important;
    transform-style: preserve-3d !important;
}
.iso-floor {
    position: absolute !important; bottom: 26px !important; left: 50% !important; width: 150px !important; height: 150px !important;
    transform: translateX(-50%) rotateX(62deg) rotateZ(-45deg) !important;
    background:
        linear-gradient(rgba(124,58,237,.18) 1px, transparent 1px) 0 0 / 24px 24px,
        linear-gradient(90deg, rgba(124,58,237,.18) 1px, transparent 1px) 0 0 / 24px 24px,
        radial-gradient(circle, rgba(255,255,255,.55), transparent 72%) !important;
    border: 1px solid rgba(124,58,237,.25) !important; border-radius: 8px !important;
    box-shadow: 0 0 30px rgba(124,58,237,.18) !important;
}

/* Scene 1 · upskilling staircase + trophy + gold arrow */
.iso-steps {
    position: relative !important; z-index: 3 !important; display: flex !important; align-items: flex-end !important; gap: 6px !important;
    transform: rotateX(26deg) rotateZ(-44deg) !important; margin-bottom: 22px !important;
}
.iso-step {
    width: 30px !important; border-radius: 5px 5px 2px 2px !important;
    background: linear-gradient(180deg, #c4b5fd 0%, #7c3aed 100%) !important;
    box-shadow: 5px -5px 0 rgba(124,58,237,.22), inset 0 2px 0 rgba(255,255,255,.45) !important;
    border: 1px solid rgba(109,40,217,.4) !important;
}
.iso-step--1 { height: 26px !important; background: linear-gradient(180deg, #ddd6fe, #8b5cf6) !important; }
.iso-step--2 { height: 42px !important; background: linear-gradient(180deg, #c4b5fd, #7c3aed) !important; }
.iso-step--3 { height: 60px !important; background: linear-gradient(180deg, #a78bfa, #6d28d9) !important; }
.iso-step--4 { height: 80px !important; background: linear-gradient(180deg, #fde68a, #f59e0b) !important; box-shadow: 5px -5px 0 rgba(245,158,11,.3), 0 0 20px rgba(245,158,11,.4), inset 0 2px 0 rgba(255,255,255,.5) !important; border-color: rgba(217,119,6,.5) !important; }
.iso-trophy {
    position: absolute !important; top: 6px !important; right: 20px !important; z-index: 5 !important;
    width: 42px !important; height: 42px !important; border-radius: 12px !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    background: linear-gradient(135deg, #fbbf24, #f59e0b) !important; color: #fff !important;
    font-size: 1.25rem !important; box-shadow: 0 0 22px rgba(245,158,11,.6), inset 0 1px 0 rgba(255,255,255,.5) !important;
    animation: iso-float 4s ease-in-out infinite !important;
}
.iso-arrow {
    position: absolute !important; top: 14px !important; left: 18px !important; z-index: 4 !important;
    width: 30px !important; height: 30px !important; border-radius: 50% !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    background: rgba(255,255,255,.85) !important; color: #7c3aed !important;
    font-size: .95rem !important; box-shadow: 0 6px 16px rgba(124,58,237,.3) !important;
    border: 1px solid rgba(167,139,250,.5) !important;
}

/* Scene 2 · ecosystem orbit */
.iso-orbit { position: relative !important; z-index: 3 !important; width: 130px !important; height: 130px !important; transform: rotateX(58deg) !important; margin-bottom: 10px !important; }
.iso-orbit-ring {
    position: absolute !important; inset: 0 !important; border-radius: 50% !important;
    border: 1.5px dashed rgba(167,139,250,.55) !important;
    box-shadow: 0 0 18px rgba(124,58,237,.18) inset !important;
    animation: iso-spin-flat 16s linear infinite !important;
}
.iso-orbit-core {
    position: absolute !important; inset: 42px !important; border-radius: 50% !important;
    background: radial-gradient(circle, #ede9fe, #7c3aed 70%) !important;
    box-shadow: 0 0 24px rgba(124,58,237,.7), 0 0 48px rgba(124,58,237,.4) !important;
    animation: iso-pulse 3s ease-in-out infinite !important;
}
.iso-orbit-item {
    position: absolute !important; width: 32px !important; height: 32px !important; border-radius: 10px !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    background: rgba(255,255,255,.95) !important; color: #7c3aed !important; font-size: .9rem !important;
    box-shadow: 0 6px 16px rgba(124,58,237,.3), 0 0 14px rgba(167,139,250,.5) !important;
    border: 1px solid rgba(167,139,250,.45) !important;
    transform: rotateX(-58deg) !important;
}
.iso-orbit-item--1 { top: -8px !important; left: 50% !important; margin-left: -16px !important; }
.iso-orbit-item--2 { bottom: -8px !important; left: 6px !important; }
.iso-orbit-item--3 { bottom: -8px !important; right: 6px !important; }

/* Scene 3 · digital cube + data nodes */
.iso-cube {
    position: relative !important; z-index: 3 !important; width: 78px !important; height: 78px !important;
    transform-style: preserve-3d !important; transform: rotateX(-22deg) rotateY(-35deg) !important;
    margin-bottom: 24px !important; animation: iso-spin 16s linear infinite !important;
}
.iso-cube-face { position: absolute !important; width: 78px !important; height: 78px !important; border: 1.5px solid rgba(103,232,249,.7) !important; background: linear-gradient(135deg, rgba(99,102,241,.22), rgba(34,211,238,.12)) !important; box-shadow: inset 0 0 18px rgba(103,232,249,.3) !important; }
.iso-cube-face--front { transform: translateZ(39px) !important; }
.iso-cube-face--back { transform: rotateY(180deg) translateZ(39px) !important; }
.iso-cube-face--right { transform: rotateY(90deg) translateZ(39px) !important; }
.iso-cube-face--left { transform: rotateY(-90deg) translateZ(39px) !important; }
.iso-cube-face--top { transform: rotateX(90deg) translateZ(39px) !important; background: linear-gradient(135deg, rgba(167,139,250,.3), rgba(34,211,238,.18)) !important; }
.iso-cube-face--bottom { transform: rotateX(-90deg) translateZ(39px) !important; }
.iso-cube-glow { position: absolute !important; inset: -20px !important; border-radius: 16px !important; background: radial-gradient(circle, rgba(124,58,237,.35), transparent 70%) !important; filter: blur(14px) !important; z-index: -1 !important; }
.iso-node {
    position: absolute !important; z-index: 4 !important; width: 10px !important; height: 10px !important; border-radius: 50% !important;
    background: #67e8f9 !important; box-shadow: 0 0 12px 3px rgba(103,232,249,.7) !important;
    animation: iso-float 5s ease-in-out infinite !important;
}
.iso-node--1 { top: 30px !important; left: 22px !important; }
.iso-node--2 { top: 40px !important; right: 26px !important; background: #c4b5fd !important; box-shadow: 0 0 12px 3px rgba(167,139,250,.7) !important; animation-delay: .8s !important; }
.iso-node--3 { bottom: 40px !important; left: 50% !important; animation-delay: 1.6s !important; }

@keyframes iso-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes iso-pulse { 0%,100% { box-shadow: 0 0 24px rgba(124,58,237,.7), 0 0 48px rgba(124,58,237,.4); } 50% { box-shadow: 0 0 34px rgba(124,58,237,.9), 0 0 64px rgba(124,58,237,.5); } }
@keyframes iso-spin { from { transform: rotateX(-22deg) rotateY(0); } to { transform: rotateX(-22deg) rotateY(360deg); } }
@keyframes iso-spin-flat { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* Brand Story · programs list + quote + highlights */
.brand-quote-row { margin-top: 0 !important; position: relative !important; z-index: 2 !important; }
.brand-programs-header {
    display: flex !important; flex-wrap: wrap !important; align-items: flex-end !important; justify-content: space-between !important;
    gap: .5rem 1rem !important; margin-bottom: 1.5rem !important; padding-bottom: 1rem !important; border-bottom: 1px solid rgba(124,58,237,.18) !important;
}
.brand-section-kicker {
    display: block !important; color: #7c3aed !important; font-size: .68rem !important; font-weight: 800 !important;
    letter-spacing: .16em !important; text-transform: uppercase !important; margin-bottom: .4rem !important;
}
.brand-programs-title {
    color: #1e1b4b !important; -webkit-text-fill-color: #1e1b4b !important; background: none !important;
    font-size: 1.6rem !important; font-weight: 850 !important; letter-spacing: -0.02em !important; margin: 0 !important;
}
.brand-programs-title::after { display: none !important; content: none !important; }
.brand-programs-count {
    color: #6d28d9 !important; background: rgba(124,58,237,.1) !important; border: 1px solid rgba(124,58,237,.25) !important;
    border-radius: 999px !important; font-size: .75rem !important; font-weight: 700 !important; padding: .35rem .8rem !important; white-space: nowrap !important;
}
.brand-programs-subtitle { color: #57534e !important; font-size: .9375rem !important; margin: 0 0 1.25rem !important; width: 100% !important; }

.lifecycle-grid { display: grid !important; grid-template-columns: 1fr !important; gap: .85rem !important; margin-top: 0 !important; }
.lifecycle-card {
    position: relative !important; display: flex !important; align-items: center !important; gap: 1rem !important;
    background: rgba(255,255,255,.72) !important; border: 1px solid rgba(255,255,255,.8) !important;
    border-radius: 1rem !important; padding: 1.1rem 1.2rem !important; box-shadow: 0 10px 26px rgba(99,102,241,.07) !important;
    backdrop-filter: blur(10px) !important; -webkit-backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(255,255,255,.8) !important; border-left: 0 !important; padding-left: 1.2rem !important;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease !important; overflow: hidden !important;
}
.lifecycle-card::before {
    content: "" !important; position: absolute !important; left: 0 !important; top: 0 !important; width: 4px !important; height: 0 !important;
    background: linear-gradient(180deg, #7c3aed, #22d3ee) !important; transition: height .3s ease !important; border-radius: 0 !important; right: auto !important; bottom: auto !important;
}
.lifecycle-card:hover::before { height: 100% !important; }
.lifecycle-card:hover { transform: translateX(4px) !important; box-shadow: 0 16px 34px rgba(124,58,237,.16) !important; background: rgba(255,255,255,.92) !important; }
.lifecycle-card::after { display: none !important; content: none !important; }
.lifecycle-card-static { cursor: default !important; }
.lifecycle-icon {
    flex: 0 0 auto !important; width: 48px !important; height: 48px !important; border-radius: 14px !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    font-size: 1.25rem !important; color: #fff !important; box-shadow: 0 0 18px rgba(124,58,237,.35) !important;
}
.lifecycle-card--1 .lifecycle-icon { background: linear-gradient(135deg, #4f46e5, #6d28d9) !important; }
.lifecycle-card--2 .lifecycle-icon { background: linear-gradient(135deg, #7c3aed, #c026d3) !important; }
.lifecycle-card--3 .lifecycle-icon { background: linear-gradient(135deg, #0891b2, #6366f1) !important; }
.lifecycle-card--4 .lifecycle-icon { background: linear-gradient(135deg, #6d28d9, #0891b2) !important; }
.lifecycle-card-body { flex: 1 !important; }
.lifecycle-card-label { display: block !important; color: #a78bfa !important; font-size: .62rem !important; font-weight: 800 !important; letter-spacing: .14em !important; margin-bottom: .2rem !important; }
.lifecycle-card h3 { color: #1e1b4b !important; -webkit-text-fill-color: #1e1b4b !important; font-size: 1.0625rem !important; font-weight: 800 !important; margin: 0 0 .3rem !important; letter-spacing: -0.01em !important; }
.lifecycle-card p { color: #57534e !important; font-size: .86rem !important; line-height: 1.6 !important; margin: 0 !important; }
.lifecycle-card-arrow {
    flex: 0 0 auto !important; width: 34px !important; height: 34px !important; border-radius: 50% !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    background: rgba(124,58,237,.1) !important; color: #7c3aed !important; font-size: .9rem !important;
    transition: transform .25s ease, background .25s ease !important;
}
.lifecycle-card:hover .lifecycle-card-arrow { background: #7c3aed !important; color: #fff !important; transform: rotate(-20deg) !important; }

/* Brand Story · vision quote */
.brand-quote {
    position: relative !important; overflow: hidden !important; border-radius: 1.5rem !important;
    padding: 2rem 2rem 1.75rem !important; margin-bottom: 1.25rem !important;
    background:
        radial-gradient(circle at 18% 8%, rgba(167,139,250,.4), transparent 55%),
        radial-gradient(circle at 92% 96%, rgba(34,211,238,.28), transparent 55%),
        linear-gradient(155deg, #1e1b4b 0%, #4f46e5 50%, #0f172a 100%) !important;
    border: 1px solid rgba(167,139,250,.3) !important; border-left: 0 !important;
    box-shadow: 0 24px 60px rgba(99,102,241,.32), inset 0 1px 0 rgba(255,255,255,.08) !important;
}
.brand-quote::after {
    content: "\201C" !important; position: absolute !important; top: .3rem !important; right: 1.4rem !important;
    width: auto !important; height: auto !important; border: 0 !important; border-radius: 0 !important; background: none !important;
    font-family: Georgia, 'Times New Roman', serif !important; font-size: 5.5rem !important; line-height: 1 !important;
    color: rgba(167,139,250,.35) !important; border-width: 0 !important;
}
.brand-quote-heading { display: flex !important; align-items: center !important; justify-content: space-between !important; padding-bottom: 1rem !important; margin-bottom: 1.1rem !important; border-bottom: 1px solid rgba(255,255,255,.1) !important; }
.brand-quote-label {
    display: inline-flex !important; align-items: center !important; gap: .5rem !important;
    color: #c4b5fd !important; background: none !important; -webkit-text-fill-color: #c4b5fd !important;
    font-size: .68rem !important; font-weight: 800 !important; letter-spacing: .14em !important; text-transform: uppercase !important; margin: 0 !important;
}
.brand-quote-label::before { content: "" !important; width: 6px !important; height: 6px !important; border-radius: 50% !important; background: #a78bfa !important; box-shadow: 0 0 0 4px rgba(167,139,250,.2) !important; }
.brand-quote-icon {
    margin: 0 !important; font-size: 2rem !important; line-height: 1 !important;
    background: linear-gradient(135deg, #c7d2fe, #67e8f9) !important; -webkit-background-clip: text !important; background-clip: text !important; -webkit-text-fill-color: transparent !important; color: transparent !important;
}
.brand-quote p { position: relative !important; z-index: 1 !important; color: #ede9fe !important; -webkit-text-fill-color: #ede9fe !important; background: none !important; font-style: normal !important; font-size: 1.0625rem !important; line-height: 1.8 !important; margin: 0 0 1.25rem !important; }
.brand-quote-attribution { position: relative !important; z-index: 1 !important; border-top: 1px solid rgba(196,181,253,.22) !important; padding-top: 1rem !important; display: flex !important; flex-direction: column !important; gap: .25rem !important; }
.brand-quote-attribution strong { display: inline-flex !important; align-items: center !important; gap: .5rem !important; color: #fff !important; -webkit-text-fill-color: #fff !important; background: none !important; font-size: 1rem !important; }
.brand-quote-attribution strong::before { display: none !important; content: none !important; }
.brand-quote-attribution strong::after { content: "" !important; flex: 1 !important; height: 1px !important; background: rgba(196,181,253,.3) !important; }
.brand-quote-attribution span { color: #c4b5fd !important; font-size: .8rem !important; }

/* Brand Story · highlights card */
.brand-highlights-card {
    position: relative !important; overflow: hidden !important; border-radius: 1.5rem !important;
    background: rgba(255,255,255,.72) !important; border: 1px solid rgba(255,255,255,.8) !important;
    padding: 1.6rem 1.75rem !important; box-shadow: 0 14px 34px rgba(99,102,241,.08) !important;
    backdrop-filter: blur(12px) !important; -webkit-backdrop-filter: blur(12px) !important;
}
.brand-highlights-card::before, .brand-highlights-card::after { display: none !important; content: none !important; }
.brand-highlights-title {
    display: flex !important; align-items: center !important; justify-content: space-between !important;
    color: #1e1b4b !important; background: none !important; -webkit-text-fill-color: #1e1b4b !important;
    font-size: .95rem !important; font-weight: 800 !important; letter-spacing: .02em !important; text-transform: none !important;
    margin: 0 0 1rem !important; padding: 0 !important;
}
.brand-highlights-title::before { content: "\2726" !important; color: #7c3aed !important; font-size: 1.05rem !important; margin-right: .5rem !important; background: none !important; -webkit-text-fill-color: #7c3aed !important; }
.brand-highlights-title::after { content: attr(data-count) !important; margin-left: auto !important; padding: .22rem .6rem !important; border-radius: 999px !important; background: rgba(124,58,237,.12) !important; color: #6d28d9 !important; -webkit-text-fill-color: #6d28d9 !important; font-size: .68rem !important; font-weight: 800 !important; letter-spacing: .04em !important; }

.brand-highlights-list { list-style: none !important; margin: 0 !important; padding: 0 !important; counter-reset: hl !important; display: flex !important; flex-direction: column !important; gap: 0 !important; }
.brand-highlights-item {
    display: flex !important; align-items: center !important; gap: .85rem !important;
    padding: .8rem 0 !important; border-bottom: 1px solid rgba(124,58,237,.1) !important;
    counter-increment: hl !important; transition: transform .2s ease !important;
}
.brand-highlights-item:last-child { border-bottom: 0 !important; }
.brand-highlights-item::before { display: none !important; content: none !important; }
.brand-highlights-num {
    flex: 0 0 auto !important; min-width: 2rem !important; font-size: .78rem !important; font-weight: 800 !important;
    letter-spacing: .04em !important; color: #a78bfa !important; font-variant-numeric: tabular-nums !important;
}
.brand-highlights-item--2 .brand-highlights-num { color: #d946ef !important; }
.brand-highlights-item--3 .brand-highlights-num { color: #22d3ee !important; }
.brand-highlights-item--4 .brand-highlights-num { color: #818cf8 !important; }
.brand-highlights-item--5 .brand-highlights-num { color: #c026d3 !important; }
.brand-highlights-text { flex: 1 !important; color: #44403c !important; font-size: .9rem !important; line-height: 1.55 !important; }
.brand-highlights-mark {
    flex: 0 0 auto !important; width: 28px !important; height: 28px !important; border-radius: 50% !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    background: linear-gradient(135deg, #7c3aed, #22d3ee) !important; color: #fff !important; font-size: .8rem !important;
    box-shadow: 0 0 14px rgba(124,58,237,.35) !important;
}
.brand-highlights-item:hover { transform: translateX(4px) !important; }
.brand-highlights-item:hover .brand-highlights-mark { transform: scale(1.1) !important; }

/* Brand Story · decorative student image (bottom-right) */
.brand-quote-row > .col-lg-5 { position: relative !important; }
/* Transparent / decorative images must not get the lazy-load gray placeholder from nlx.css (img[loading="lazy"]) */
.brand-story-decor-img,
.lifecycle-icon-img,
.category-browse-img,
.brand-pillar-scene-img,
.bottom-cta-teacher {
    background: none !important;
}

/* ── Bottom CTA · teacher illustration (overlapping, protruding) ── */
.bottom-cta-section .container { position: relative !important; }
.bottom-cta-content { z-index: 3 !important; }
.bottom-cta-teacher {
    position: absolute !important;
    right: 2% !important;
    top: -18px !important;
    bottom: 0 !important;
    width: 30% !important;
    max-width: 280px !important;
    object-fit: contain !important;
    object-position: right bottom !important;
    z-index: 2 !important;
    pointer-events: none !important;
    filter: drop-shadow(0 22px 26px rgba(13,8,40,.35)) !important;
    animation: cta-teacher-float 7s ease-in-out infinite !important;
}
@keyframes cta-teacher-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (max-width: 991.98px) {
    .bottom-cta-teacher { display: none !important; }
}
.brand-story-decor-img {
    position: absolute !important;
    right: -6% !important;
    bottom: -24px !important;
    z-index: 0 !important;
    width: 88% !important;
    max-width: 520px !important;
    max-height: 460px !important;
    object-fit: contain !important;
    object-position: right bottom !important;
    pointer-events: none !important;
    filter: drop-shadow(0 22px 30px rgba(30,27,75,.25)) !important;
    animation: brand-decor-float 7s ease-in-out infinite !important;
}
@keyframes brand-decor-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (max-width: 991.98px) {
    .brand-pillars-grid { grid-template-columns: 1fr !important; }
    .brand-quote-row .col-lg-5 { margin-top: 2rem !important; }
    .brand-story-decor-img { display: none !important; }
}
@media (max-width: 576px) {
    .brand-story-header { margin-bottom: 2.5rem !important; }
    .brand-pillar-scene { height: 150px !important; }
    .brand-quote { padding: 1.5rem !important; }
}

/* Brand Story · column spacing + index/label/num removal */
.brand-quote-row { gap: 0 !important; }
.brand-quote-row > .col-lg-7 { padding-right: 1.75rem !important; }
.brand-quote-row > .col-lg-5 { padding-left: 1.75rem !important; }
.brand-pillar-body { padding-top: 1.5rem !important; }
.brand-pillar-title { margin-top: 0 !important; }
.lifecycle-card-body { padding-top: 0 !important; }
.lifecycle-card h3 { margin-top: 0 !important; }
.brand-highlights-item { padding: .9rem 0 !important; }
@media (max-width: 991.98px) {
    .brand-quote-row > .col-lg-7 { padding-right: 0 !important; }
    .brand-quote-row > .col-lg-5 { padding-left: 0 !important; }
}

/* Brand Story · signature polish (final layer) */
.brand-pillar-card { border-top: 3px solid transparent !important; }
.brand-pillar-card--1 { border-top-color: #6d28d9 !important; }
.brand-pillar-card--2 { border-top-color: #c026d3 !important; }
.brand-pillar-card--3 { border-top-color: #0891b2 !important; }
.brand-pillar-card:hover .brand-pillar-icon { transform: translateY(-3px) rotate(-6deg) !important; }
.brand-pillar-icon { transition: transform .3s cubic-bezier(.2,.8,.2,1) !important; }

.brand-pillar-title { position: relative !important; padding-bottom: .6rem !important; }
.brand-pillar-title::after {
    content: "" !important; position: absolute !important; left: 0 !important; bottom: 0 !important;
    width: 38px !important; height: 3px !important; border-radius: 999px !important;
    background: linear-gradient(90deg, #7c3aed, #22d3ee) !important;
}
.brand-pillar-card--2 .brand-pillar-title::after { background: linear-gradient(90deg, #c026d3, #f472b6) !important; }
.brand-pillar-card--3 .brand-pillar-title::after { background: linear-gradient(90deg, #0891b2, #6366f1) !important; }

.brand-pillar-text { margin-top: .85rem !important; }

.lifecycle-card { background: linear-gradient(100deg, rgba(255,255,255,.82), rgba(255,255,255,.66)) !important; }
.lifecycle-card--1 { background: linear-gradient(100deg, rgba(237,233,254,.7), rgba(255,255,255,.7)) !important; }
.lifecycle-card--2 { background: linear-gradient(100deg, rgba(243,232,255,.7), rgba(255,255,255,.7)) !important; }
.lifecycle-card--3 { background: linear-gradient(100deg, rgba(224,242,254,.7), rgba(255,255,255,.7)) !important; }
.lifecycle-card--4 { background: linear-gradient(100deg, rgba(238,242,255,.7), rgba(255,255,255,.7)) !important; }
.lifecycle-icon { border: 1px solid rgba(255,255,255,.4) !important; transition: transform .3s cubic-bezier(.2,.8,.2,1) !important; }
.lifecycle-card:hover .lifecycle-icon { transform: scale(1.08) !important; }

.brand-highlights-card { border-top: 3px solid transparent !important; border-image: linear-gradient(90deg, #7c3aed, #22d3ee) 1 !important; }
.brand-highlights-item { border-radius: .6rem !important; padding-left: .65rem !important; padding-right: .65rem !important; margin: 0 -.35rem !important; transition: background .2s ease, transform .2s ease !important; }
.brand-highlights-item:hover { background: linear-gradient(90deg, rgba(124,58,237,.08), transparent) !important; }
.brand-highlights-mark { transition: transform .25s ease, box-shadow .25s ease !important; }
.brand-highlights-item:hover .brand-highlights-mark { box-shadow: 0 0 18px rgba(124,58,237,.5) !important; }

@media (max-width: 576px) {
    .brand-pillar-scene { height: 160px !important; }
    .iso-steps { transform: rotateX(26deg) rotateZ(-44deg) scale(.82) !important; }
    .iso-orbit { transform: rotateX(58deg) scale(.82) !important; }
    .iso-cube { transform: rotateX(-22deg) rotateY(-35deg) scale(.82) !important; }
}

/* ── Category Browse · image cards (modern, wins cascade) ── */
.category-browse-section {
    position: relative !important; overflow: hidden !important;
    padding: clamp(4rem, 7vw, 6rem) 0 !important;
    background:
        radial-gradient(circle at 12% 8%, rgba(124,58,237,.08), transparent 40%),
        radial-gradient(circle at 90% 92%, rgba(34,211,238,.07), transparent 42%),
        linear-gradient(180deg, #faf9ff 0%, #f3f1fb 100%) !important;
    border-top: 1px solid #ece8f5 !important;
}
.category-browse-header { max-width: 760px !important; margin: 0 0 3rem !important; text-align: left !important; }
.category-browse-title {
    position: relative !important; padding-left: 1.1rem !important;
    font-size: clamp(2rem, 3.6vw, 2.6rem) !important; font-weight: 850 !important; letter-spacing: -0.025em !important;
    color: #1e1b4b !important; -webkit-text-fill-color: #1e1b4b !important; background: none !important;
    line-height: 1.15 !important; margin: 0 0 .85rem !important;
}
.category-browse-title::before {
    content: "" !important; position: absolute !important; left: 0 !important; top: .35em !important; bottom: .15em !important;
    width: 4px !important; border-radius: 4px !important; background: linear-gradient(180deg, #7c3aed, #22d3ee) !important;
}
.category-browse-subtitle { color: #5b5366 !important; font-size: 1.0625rem !important; line-height: 1.8 !important; margin: 0 !important; }

.category-browse-grid {
    display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 1.5rem !important;
    border: 0 !important; border-top: 0 !important; border-left: 0 !important;
}
.category-browse-card {
    position: relative !important; display: flex !important; flex-direction: column !important; align-items: stretch !important; gap: 0 !important;
    padding: 0 !important; background: rgba(255,255,255,.72) !important;
    border: 1px solid rgba(255,255,255,.8) !important; border-right: 1px solid rgba(255,255,255,.8) !important; border-bottom: 1px solid rgba(255,255,255,.8) !important;
    border-radius: 1.5rem !important; overflow: hidden !important;
    box-shadow: 0 16px 38px rgba(99,102,241,.1) !important;
    backdrop-filter: blur(14px) !important; -webkit-backdrop-filter: blur(14px) !important;
    text-decoration: none !important; color: inherit !important;
    transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease !important;
}
.category-browse-card::before {
    content: "" !important; position: absolute !important; top: 0 !important; left: 0 !important; right: 0 !important; height: 4px !important;
    border-radius: 0 !important; opacity: 1 !important; z-index: 3 !important;
}
.category-browse-card:nth-child(4n+1)::before { background: linear-gradient(90deg, #4f46e5, #6d28d9) !important; }
.category-browse-card:nth-child(4n+2)::before { background: linear-gradient(90deg, #7c3aed, #c026d3) !important; }
.category-browse-card:nth-child(4n+3)::before { background: linear-gradient(90deg, #0891b2, #6366f1) !important; }
.category-browse-card:nth-child(4n)::before { background: linear-gradient(90deg, #6d28d9, #22d3ee) !important; }
.category-browse-card:hover { transform: translateY(-8px) !important; box-shadow: 0 26px 56px rgba(124,58,237,.22) !important; background: rgba(255,255,255,.9) !important; border-color: rgba(167,139,250,.5) !important; }

.category-browse-media {
    position: relative !important; display: flex !important; align-items: center !important; justify-content: center !important;
    height: 168px !important; overflow: hidden !important;
}
.category-browse-card:nth-child(4n+1) .category-browse-media { background: linear-gradient(160deg, #ede9fe 0%, #ddd6fe 60%, #c7d2fe 100%) !important; }
.category-browse-card:nth-child(4n+2) .category-browse-media { background: linear-gradient(160deg, #f5f3ff 0%, #ede9fe 55%, #f0abfc 100%) !important; }
.category-browse-card:nth-child(4n+3) .category-browse-media { background: linear-gradient(160deg, #e0f2fe 0%, #c7d2fe 55%, #a5b4fc 100%) !important; }
.category-browse-card:nth-child(4n) .category-browse-media { background: linear-gradient(160deg, #ede9fe 0%, #c7d2fe 55%, #a5f3fc 100%) !important; }
.category-browse-media::after {
    content: "" !important; position: absolute !important; inset: 0 !important; pointer-events: none !important;
    background: radial-gradient(circle at 50% 80%, rgba(255,255,255,.5), transparent 62%) !important;
}
.category-browse-media-glow {
    position: absolute !important; width: 110px !important; height: 110px !important; border-radius: 50% !important;
    background: radial-gradient(circle, rgba(124,58,237,.28), transparent 70%) !important; filter: blur(18px) !important;
    top: 30% !important; left: 50% !important; transform: translateX(-50%) !important; z-index: 0 !important;
}
.category-browse-img {
    position: relative !important; z-index: 2 !important; max-width: 78% !important; max-height: 150px !important;
    object-fit: contain !important;
    clip-path: inset(4% round 24%) !important;
    transition: transform .35s cubic-bezier(.2,.8,.2,1) !important;
}
.category-browse-card:hover .category-browse-img { transform: translateY(-4px) scale(1.05) !important; }

.category-browse-fallback-icon {
    display: none !important; width: 56px !important; height: 56px !important; border-radius: 16px !important;
    align-items: center !important; justify-content: center !important; font-size: 1.5rem !important; color: #fff !important;
    position: relative !important; z-index: 2 !important; box-shadow: 0 0 18px rgba(124,58,237,.4) !important;
}
.category-browse-media.is-fallback .category-browse-fallback-icon { display: inline-flex !important; }
.category-browse-card:nth-child(4n+1) .category-browse-fallback-icon { background: linear-gradient(135deg, #4f46e5, #6d28d9) !important; }
.category-browse-card:nth-child(4n+2) .category-browse-fallback-icon { background: linear-gradient(135deg, #7c3aed, #c026d3) !important; }
.category-browse-card:nth-child(4n+3) .category-browse-fallback-icon { background: linear-gradient(135deg, #0891b2, #6366f1) !important; }
.category-browse-card:nth-child(4n) .category-browse-fallback-icon { background: linear-gradient(135deg, #6d28d9, #0891b2) !important; }

.category-browse-card-body { padding: 1.25rem 1.4rem 1.5rem !important; position: relative !important; z-index: 2 !important; }
.category-browse-card-title {
    font-size: 1.125rem !important; font-weight: 850 !important; letter-spacing: -0.01em !important;
    color: #1e1b4b !important; -webkit-text-fill-color: #1e1b4b !important; background: none !important;
    margin: 0 0 .35rem !important; position: static !important; display: block !important;
    transition: color .25s ease !important;
}
.category-browse-card-title::after { display: none !important; }
.category-browse-card-count {
    font-size: .8rem !important; color: #6d28d9 !important; font-weight: 700 !important;
    display: inline-flex !important; align-items: center !important; gap: .35rem !important;
    background: none !important;
}
.category-browse-card-count::before { display: none !important; content: none !important; }

.category-browse-card-arrow {
    position: absolute !important; right: 1.2rem !important; top: 1.2rem !important; z-index: 4 !important;
    width: 34px !important; height: 34px !important; border-radius: 50% !important;
    display: inline-flex !important; align-items: center !important; justify-content: center !important;
    background: rgba(255,255,255,.85) !important; color: #7c3aed !important; font-size: .9rem !important;
    border: 1px solid rgba(167,139,250,.4) !important; box-shadow: 0 6px 16px rgba(124,58,237,.18) !important;
    opacity: 0 !important; transform: translateX(-6px) !important; transition: opacity .25s ease, transform .25s ease, background .25s ease, color .25s ease !important;
}
.category-browse-card:hover .category-browse-card-arrow { opacity: 1 !important; transform: translateX(0) !important; background: #7c3aed !important; color: #fff !important; }
.category-browse-card:hover .category-browse-card-title { color: #6d28d9 !important; -webkit-text-fill-color: #6d28d9 !important; }

@media (max-width: 991.98px) {
    .category-browse-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 576px) {
    .category-browse-grid { grid-template-columns: 1fr !important; }
    .category-browse-media { height: 150px !important; }
}

/* ── Top Courses · striking covers (modern, wins cascade) ── */
.top-course-rich-card { grid-template-columns: 56px 124px 1fr auto !important; }
.top-course-rich-card.rank-1 { grid-template-columns: 56px 144px 1fr auto !important; }
.top-course-cover-wrap {
    width: 120px !important; height: 82px !important; border-radius: 14px !important;
    overflow: hidden !important; position: relative !important;
    background: linear-gradient(135deg, #ede9fe 0%, #e0f2fe 100%) !important;
    box-shadow: 0 12px 24px rgba(99,102,241,.18), 0 0 0 1px rgba(167,139,250,.35) !important;
    transition: box-shadow .3s ease, transform .3s cubic-bezier(.2,.8,.2,1) !important;
}
.top-course-cover-wrap::after {
    content: "" !important; position: absolute !important; inset: 0 !important; pointer-events: none !important;
    background: linear-gradient(160deg, rgba(255,255,255,.32) 0%, transparent 38%, rgba(30,27,75,.22) 100%) !important;
    border-radius: 14px !important;
}
.top-course-cover-wrap::before {
    content: "" !important; position: absolute !important; inset: 0 !important; pointer-events: none !important;
    border-radius: 14px !important; z-index: 2 !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.25), inset 0 1px 0 rgba(255,255,255,.4) !important;
}
.top-course-cover {
    width: 100% !important; height: 100% !important; object-fit: cover !important; border-radius: 0 !important;
    display: block !important; transition: transform .45s cubic-bezier(.2,.8,.2,1), filter .3s ease !important;
}
.top-course-rich-card:hover .top-course-cover { transform: scale(1.09) !important; }
.top-course-rich-card:hover .top-course-cover-wrap {
    transform: translateY(-3px) !important;
    box-shadow: 0 18px 34px rgba(124,58,237,.28), 0 0 0 1px rgba(124,58,237,.55), 0 0 24px rgba(124,58,237,.32) !important;
}

/* Rank-based neon accent on the cover frame */
.top-course-rich-card.rank-1 .top-course-cover-wrap { box-shadow: 0 14px 28px rgba(245,158,11,.22), 0 0 0 1px rgba(251,191,36,.5), 0 0 22px rgba(245,158,11,.22) !important; }
.top-course-rich-card.rank-1:hover .top-course-cover-wrap { box-shadow: 0 20px 38px rgba(245,158,11,.32), 0 0 0 1px rgba(245,158,11,.7), 0 0 30px rgba(245,158,11,.4) !important; }
.top-course-rich-card.rank-2 .top-course-cover-wrap { box-shadow: 0 12px 24px rgba(99,102,241,.2), 0 0 0 1px rgba(129,140,248,.5) !important; }
.top-course-rich-card.rank-3 .top-course-cover-wrap { box-shadow: 0 12px 24px rgba(124,58,237,.2), 0 0 0 1px rgba(167,139,250,.5) !important; }

/* Rank #1 hero cover */
.top-course-rich-card.rank-1 .top-course-cover-wrap { width: 140px !important; height: 96px !important; border-radius: 16px !important; }
.top-course-rich-card.rank-1 .top-course-cover-wrap::after { border-radius: 16px !important; }
.top-course-rich-card.rank-1 .top-course-cover-wrap::before { border-radius: 16px !important; }

/* Rank number styling */
.top-course-rank-num {
    font-size: 1.7rem !important; font-weight: 850 !important;
    background: linear-gradient(135deg, #c4b5fd, #a78bfa) !important;
    -webkit-background-clip: text !important; background-clip: text !important;
    -webkit-text-fill-color: transparent !important; color: transparent !important;
}
.top-course-rich-card.rank-1 .top-course-rank-num { background: linear-gradient(135deg, #f59e0b, #fbbf24) !important; -webkit-background-clip: text !important; background-clip: text !important; -webkit-text-fill-color: transparent !important; }
.top-course-rich-card.rank-2 .top-course-rank-num { background: linear-gradient(135deg, #6366f1, #818cf8) !important; -webkit-background-clip: text !important; background-clip: text !important; -webkit-text-fill-color: transparent !important; }
.top-course-rich-card.rank-3 .top-course-rank-num { background: linear-gradient(135deg, #7c3aed, #c4b5fd) !important; -webkit-background-clip: text !important; background-clip: text !important; -webkit-text-fill-color: transparent !important; }

@media (max-width: 768px) {
    .top-course-rich-card { grid-template-columns: 44px 100px 1fr auto !important; gap: .9rem !important; }
    .top-course-rich-card.rank-1 { grid-template-columns: 44px 114px 1fr auto !important; }
    .top-course-rich-price { grid-column: auto !important; text-align: right !important; padding-top: 0 !important; }
    .top-course-cover-wrap { width: 96px !important; height: 66px !important; border-radius: 11px !important; }
    .top-course-rich-card.rank-1 .top-course-cover-wrap { width: 110px !important; height: 76px !important; }
}
@media (max-width: 576px) {
    .top-course-rich-card { grid-template-columns: 40px 92px 1fr !important; gap: .75rem !important; }
    .top-course-rich-card.rank-1 { grid-template-columns: 40px 92px 1fr !important; }
    .top-course-rich-price { grid-column: 2 / -1 !important; text-align: left !important; padding-top: .25rem !important; font-size: .95rem !important; }
    .top-course-cover-wrap { width: 92px !important; height: 62px !important; }
    .top-course-rich-card.rank-1 .top-course-cover-wrap { width: 92px !important; height: 62px !important; }
}

/* ── Lifecycle cards · webp icon images (wins cascade) ── */
.lifecycle-icon {
    width: 56px !important; height: 56px !important; border-radius: 15px !important;
    background: none !important; box-shadow: none !important; border: 0 !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    overflow: visible !important; position: relative !important;
}
.lifecycle-icon-img {
    width: 100% !important; height: 100% !important; object-fit: contain !important; display: block !important;
    clip-path: inset(4% round 24%) !important;
    filter: drop-shadow(0 8px 12px rgba(99,102,241,.32)) !important;
    transition: transform .3s cubic-bezier(.2,.8,.2,1) !important;
}
.lifecycle-card:hover .lifecycle-icon-img { transform: scale(1.08) !important; }
.lifecycle-icon-fallback { display: none !important; }

/* Fallback: restore gradient tile + bootstrap icon when image missing */
.lifecycle-icon.is-icon-fallback {
    border-radius: 15px !important; overflow: hidden !important;
    box-shadow: 0 0 18px rgba(124,58,237,.35) !important; border: 1px solid rgba(255,255,255,.4) !important;
}
.lifecycle-card--1 .lifecycle-icon.is-icon-fallback { background: linear-gradient(135deg, #4f46e5, #6d28d9) !important; }
.lifecycle-card--2 .lifecycle-icon.is-icon-fallback { background: linear-gradient(135deg, #7c3aed, #c026d3) !important; }
.lifecycle-card--3 .lifecycle-icon.is-icon-fallback { background: linear-gradient(135deg, #0891b2, #6366f1) !important; }
.lifecycle-card--4 .lifecycle-icon.is-icon-fallback { background: linear-gradient(135deg, #6d28d9, #0891b2) !important; }
.lifecycle-icon.is-icon-fallback .lifecycle-icon-fallback {
    display: inline-flex !important; align-items: center !important; justify-content: center !important;
    font-size: 1.3rem !important; color: #fff !important;
}

/* ── Courses page — editorial violet (refined) ── */
#nlx-courses-page { padding-top: 0 !important; padding-bottom: 3rem; }

/* Page hero */
.courses-page-hero {
    position: relative; padding: clamp(2.5rem, 5vw, 3.5rem) 0 2.25rem;
    background:
        radial-gradient(700px 240px at 88% -20%, rgba(139,92,246,.16), transparent 60%),
        radial-gradient(600px 220px at 10% 120%, rgba(99,102,241,.10), transparent 60%),
        linear-gradient(180deg, #f5f3ff 0%, #eef2ff 100%);
    border-bottom: 1px solid #e0e7ff;
}
.courses-page-hero-inner { max-width: 760px; }
.courses-page-eyebrow {
    display: inline-block; color: #4f46e5; font-size: .72rem; font-weight: 700;
    letter-spacing: .22em; text-transform: uppercase; margin-bottom: .9rem;
    padding: .3rem .7rem; background: #eef2ff; border-radius: 999px; border: 1px solid #c7d2fe;
}
.courses-page-title {
    font-size: clamp(2rem, 4.2vw, 2.9rem) !important; font-weight: 850 !important;
    color: #1c1917 !important; letter-spacing: -0.03em; line-height: 1.1; margin: 0 0 .85rem;
}
.courses-page-lead { color: #5b5366; font-size: 1.0625rem; line-height: 1.75; margin: 0; max-width: 640px; }
#nlx-courses-page > .row { padding-top: 2.5rem; }

/* Filter panel */
#nlx-courses-page .courses-filter-panel {
    border: 1px solid #e0e7ff !important; border-radius: 16px !important;
    box-shadow: 0 8px 24px rgba(99,102,241,.06) !important; overflow: hidden; background: #fff;
}
#nlx-courses-page .courses-filter-panel .list-group-item {
    border-color: #eef2ff !important; padding: 1.1rem 1.35rem;
}
#nlx-courses-page .courses-filter-panel .list-group-item:first-child {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%) !important;
    color: #fff !important; padding: 1.35rem 1.35rem !important; position: relative;
}
#nlx-courses-page .courses-filter-panel .list-group-item:first-child::after {
    content: ""; position: absolute; left: 1.35rem; right: 1.35rem; bottom: .85rem; height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,.5), transparent);
}
#nlx-courses-page .courses-filter-panel .list-group-item:first-child h4 {
    color: #fff !important; font-weight: 800 !important; letter-spacing: -0.01em; margin: 0; font-size: 1.15rem;
}
#nlx-courses-page .courses-filter-panel h5,
#nlx-courses-page .offcanvas .courses-filter-panel h6 {
    font-size: .68rem !important; font-weight: 700 !important; letter-spacing: .16em !important;
    text-transform: uppercase !important; color: #4f46e5 !important; margin-bottom: .9rem;
    padding-left: .65rem; position: relative;
}
#nlx-courses-page .courses-filter-panel h5::before,
#nlx-courses-page .offcanvas .courses-filter-panel h6::before {
    content: ""; position: absolute; left: 0; top: .15em; bottom: .15em; width: 3px; border-radius: 3px;
    background: linear-gradient(180deg, #6366f1, #a855f7);
}
#nlx-courses-page .courses-filter-panel .input-group,
#nlx-courses-page .offcanvas .input-group {
    border: 1px solid #e0e7ff !important; border-radius: 10px; overflow: hidden; background: #fff;
}
#nlx-courses-page .courses-filter-panel .input-group-text,
#nlx-courses-page .offcanvas .input-group-text {
    background: #fff !important; color: #6366f1 !important; border: 0 !important;
}
#nlx-courses-page .courses-filter-panel .form-control,
#nlx-courses-page .offcanvas .form-control {
    border: 0 !important; box-shadow: none !important; font-size: .9rem;
}
#nlx-courses-page .courses-filter-panel .form-check,
#nlx-courses-page .offcanvas .form-check { margin-bottom: .35rem; }
#nlx-courses-page .courses-filter-panel .form-check-label,
#nlx-courses-page .offcanvas .form-check-label { font-size: .9rem; color: #3b3550; }
#nlx-courses-page .form-check-input:checked { background-color: #6366f1 !important; border-color: #6366f1 !important; }
#nlx-courses-page .form-check-input:focus { box-shadow: 0 0 0 .2rem rgba(99,102,241,.18) !important; border-color: #6366f1 !important; }
#nlx-courses-page .btn-outline-success { color: #4f46e5 !important; border-color: #c7d2fe !important; }
#nlx-courses-page .btn-outline-success:hover,
#nlx-courses-page .btn-check:checked + .btn-outline-success {
    background: #6366f1 !important; color: #fff !important; border-color: #6366f1 !important;
}
#nlx-courses-page .btn-primary,
#nlx-courses-page .btn-outline-primary {
    background: #6366f1 !important; border-color: #6366f1 !important; color: #fff !important;
    border-radius: 10px !important; font-weight: 700 !important; padding: .75rem 1.25rem;
}
#nlx-courses-page .btn-outline-primary { background: #fff !important; color: #4f46e5 !important; }
#nlx-courses-page .btn-outline-primary:hover { background: #6366f1 !important; color: #fff !important; }
#nlx-courses-page .filter-toggle-btn {
    background: #6366f1 !important; border-color: #6366f1 !important; border-radius: 10px !important;
}

/* Quick filter chips */
#nlx-courses-page .courses-quick-filters { gap: .5rem !important; margin-bottom: 1.25rem !important; }
#nlx-courses-page .filter-chip {
    background: #fff !important; color: #4f46e5 !important; border: 1px solid #e0e7ff !important;
    border-radius: 999px !important; padding: .5rem 1.15rem !important; font-size: .85rem !important;
    font-weight: 600 !important; text-decoration: none !important; transition: all .2s ease;
    box-shadow: 0 1px 2px rgba(99,102,241,.04);
}
#nlx-courses-page .filter-chip:hover {
    background: #eef2ff !important; color: #4338ca !important; border-color: #c7d2fe !important;
    transform: translateY(-1px);
}
#nlx-courses-page .filter-chip.active {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%) !important;
    color: #fff !important; border-color: transparent !important;
    box-shadow: 0 4px 12px rgba(99,102,241,.3);
}

/* Active filters */
#nlx-courses-page .courses-active-filters { gap: .5rem !important; margin-bottom: 1.25rem !important; }
#nlx-courses-page .courses-filter-chip {
    background: #eef2ff !important; color: #4f46e5 !important; border: 1px solid #c7d2fe !important;
    border-radius: 999px !important; padding: .35rem .85rem !important; font-size: .8rem !important;
}
#nlx-courses-page .courses-filter-chip:hover { background: #6366f1 !important; color: #fff !important; border-color: #6366f1 !important; }

/* Result summary */
#nlx-courses-page .courses-result-summary {
    color: #6b6280 !important; font-size: .9rem !important; font-weight: 600;
    letter-spacing: .02em; margin-bottom: 1.5rem !important;
    padding-bottom: 1rem; border-bottom: 1px solid #eef2ff;
}
#nlx-courses-page .courses-result-summary::before {
    content: ""; display: inline-block; width: 6px; height: 14px; border-radius: 3px;
    background: linear-gradient(180deg, #6366f1, #a855f7); margin-right: .55rem; vertical-align: -2px;
}

/* Empty state */
#nlx-courses-page .courses-empty-state {
    text-align: center; padding: 4rem 1rem !important;
    background: #f5f3ff; border: 1px dashed #c7d2fe; border-radius: 16px;
}
#nlx-courses-page .courses-empty-state h5 { color: #1c1917 !important; font-weight: 800 !important; }

/* Pagination */
#nlx-courses-page .pagination { gap: .35rem; }
#nlx-courses-page .page-link {
    border: 1px solid #e0e7ff !important; color: #4f46e5 !important; border-radius: 8px !important;
    min-width: 38px; text-align: center; font-weight: 600; padding: .5rem .8rem;
}
#nlx-courses-page .page-link:hover { background: #eef2ff !important; border-color: #c7d2fe !important; color: #4338ca !important; }
#nlx-courses-page .page-item.active .page-link {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%) !important;
    border-color: transparent !important; color: #fff !important;
}
#nlx-courses-page .page-item.disabled .page-link { color: #c7d2fe !important; background: #fff !important; }

/* Course card refinements */
#nlx-courses-page .course-card {
    border: 1px solid #e0e7ff !important; border-radius: 14px !important;
    box-shadow: 0 4px 14px rgba(99,102,241,.05) !important; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
#nlx-courses-page .course-card:hover {
    transform: translateY(-5px); box-shadow: 0 16px 32px rgba(99,102,241,.13) !important;
    border-color: #c7d2fe !important;
}
#nlx-courses-page .course-card .card-title { color: #1c1917 !important; font-weight: 700 !important; }
#nlx-courses-page .course-card .btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%) !important;
    border-color: transparent !important; border-radius: 10px !important;
}
#nlx-courses-page .course-card .btn-primary:hover { filter: brightness(1.05); }
#nlx-courses-page .course-card .course-type-badge {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%) !important;
    box-shadow: 0 4px 12px rgba(99,102,241,.3) !important;
}
#nlx-courses-page .course-card .course-price .price-amount {
    background: none !important; -webkit-text-fill-color: #1c1917 !important; color: #1c1917 !important;
    font-weight: 850 !important;
}
#nlx-courses-page .course-card-image-wrapper::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(180deg, transparent 55%, rgba(79,70,229,.18));
    opacity: 0; transition: opacity .3s ease;
}
#nlx-courses-page .course-card:hover .course-card-image-wrapper::after { opacity: 1; }

/* ── Course Detail — editorial violet ── */
.course-detail-page { padding: 1.5rem 0 3rem !important; }

/* Hero header */
.course-detail-hero {
    position: relative; z-index: 1; margin-bottom: 2rem; padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem);
    border-radius: 20px; overflow: hidden;
    background:
        radial-gradient(620px 240px at 88% -30%, rgba(168,85,247,.22), transparent 60%),
        radial-gradient(520px 220px at 0% 120%, rgba(99,102,241,.18), transparent 60%),
        linear-gradient(135deg, #1e1b4b 0%, #312e81 55%, #4c1d95 100%);
    box-shadow: 0 18px 40px rgba(99,102,241,.18);
}
.course-detail-hero::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; z-index: 1;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #a855f7);
}
.course-detail-hero-inner { position: relative; max-width: 820px; }
.course-detail-hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.course-detail-hero-eyebrow {
    display: inline-block; padding: .35rem .8rem; border-radius: 999px;
    background: rgba(255,255,255,.14); border: 1px solid rgba(196,181,253,.4);
    color: #f5f3ff; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}
.course-detail-hero-code {
    color: #c4b5fd; font-size: .82rem; font-weight: 600;
}
.course-detail-hero-title {
    color: #fff !important; font-size: clamp(1.75rem, 3.6vw, 2.6rem) !important;
    font-weight: 850 !important; letter-spacing: -0.03em; line-height: 1.15; margin: 0 0 .75rem;
}
.course-detail-hero-program {
    color: #ddd6fe; font-size: 1rem; font-weight: 500; margin: 0 0 1.5rem;
}
.course-detail-hero-program i { color: #c4b5fd; }
.course-detail-hero .course-key-facts { margin-bottom: 0 !important; gap: .5rem !important; }
.course-detail-hero .course-fact-badge {
    background: rgba(255,255,255,.12) !important; border: 1px solid rgba(196,181,253,.3) !important;
    color: #f5f3ff !important; backdrop-filter: blur(6px); box-shadow: none !important;
}
.course-detail-hero .course-fact-badge i { color: #c4b5fd; }

/* Breadcrumb */
.course-detail-page .course-breadcrumb {
    margin-bottom: 1.25rem !important; font-size: .82rem !important;
    padding: .65rem 1rem; background: #f5f3ff; border: 1px solid #e0e7ff; border-radius: 10px;
}
.course-detail-page .course-breadcrumb a { color: #4f46e5 !important; font-weight: 600; }
.course-detail-page .course-breadcrumb a:hover { color: #4338ca !important; }
.course-detail-page .course-breadcrumb > span { color: #94a3b8; }
.course-detail-page .course-breadcrumb .mx-2 { color: #c4b5fd; }

/* Key facts (standalone fallback) */
.course-detail-page .course-key-facts { gap: .6rem !important; margin-bottom: 1.75rem !important; }
.course-detail-page .course-fact-badge {
    display: inline-flex; align-items: center; gap: .4rem; padding: .5rem 1rem !important;
    background: #fff !important; border: 1px solid #e0e7ff !important; border-radius: 999px !important;
    font-size: .82rem !important; font-weight: 600 !important; color: #4f46e5 !important;
    box-shadow: 0 2px 8px rgba(99,102,241,.06);
}
.course-detail-page .course-fact-badge i { color: #6366f1; }

/* Video hero */
.course-detail-page .course-video-hero { margin-bottom: 2rem !important; }
.course-detail-page .course-video-hero .video-wrapper {
    border-radius: 16px !important; box-shadow: 0 16px 40px rgba(99,102,241,.15) !important;
}

/* Content card + tabs */
.course-detail-page .course-content-card {
    border: 1px solid #e0e7ff !important; border-radius: 16px !important;
    box-shadow: 0 8px 24px rgba(99,102,241,.06) !important;
}
.course-detail-page .course-tabs { background: #f5f3ff !important; padding: 1rem 1.5rem 0 !important; }
.course-detail-page .course-nav-tabs { gap: .25rem !important; }
.course-detail-page .course-nav-tabs .nav-link {
    padding: .9rem 1.4rem !important; border-radius: 10px 10px 0 0 !important;
    font-weight: 600 !important; color: #6b6280 !important;
}
.course-detail-page .course-nav-tabs .nav-link:hover {
    color: #4f46e5 !important; background: rgba(99,102,241,.08) !important;
}
.course-detail-page .course-nav-tabs .nav-link.active {
    color: #4f46e5 !important; background: #fff !important; font-weight: 700 !important;
    position: relative;
}
.course-detail-page .course-nav-tabs .nav-link.active::after {
    content: ""; position: absolute; left: 1.4rem; right: 1.4rem; bottom: -1px; height: 3px;
    background: linear-gradient(90deg, #6366f1, #a855f7); border-radius: 3px 3px 0 0;
}
.course-detail-page .course-tab-content { padding: 2rem 1.75rem !important; }
.course-detail-page .course-description { color: #3b3550 !important; line-height: 1.85; }
.course-detail-page .course-description h1,
.course-detail-page .course-description h2,
.course-detail-page .course-description h3 { color: #1c1917 !important; font-weight: 800 !important; letter-spacing: -0.02em; }

/* Accordion */
.course-detail-page .course-accordion .accordion-item {
    border: 1px solid #e0e7ff !important; border-radius: 12px !important; margin-bottom: .85rem !important;
    overflow: hidden;
}
.course-detail-page .course-accordion .accordion-button {
    font-weight: 700 !important; color: #1c1917 !important; background: #f5f3ff !important;
    padding: 1.1rem 1.5rem !important; position: relative;
}
.course-detail-page .course-accordion .accordion-button::before {
    content: ""; display: inline-block; width: 4px; height: 1.1rem; border-radius: 3px;
    background: linear-gradient(180deg, #6366f1, #a855f7); margin-right: .85rem; flex-shrink: 0;
}
.course-detail-page .course-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(99,102,241,.12), rgba(168,85,247,.12)) !important;
    color: #4f46e5 !important; box-shadow: none !important;
}
.course-detail-page .course-accordion .list-group-item {
    padding: 1rem 1.5rem !important; display: flex; align-items: center; justify-content: space-between;
}
.course-detail-page .course-accordion .list-group-item:hover { background: #f5f3ff !important; }
.course-detail-page .course-accordion .list-group-item a { color: #4f46e5 !important; font-weight: 600; }
.course-detail-page .course-accordion .list-group-item .bi-play-btn { color: #6366f1 !important; }
.course-detail-page .course-accordion .list-group-item > span:last-child {
    font-size: .78rem; color: #94a3b8; font-weight: 600; white-space: nowrap;
}

/* Teachers */
.course-detail-page .teacher-card {
    border: 1px solid #e0e7ff; border-radius: 14px; background: #fff;
    box-shadow: 0 4px 14px rgba(99,102,241,.05); position: relative; overflow: hidden;
}
.course-detail-page .teacher-card::before {
    content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
    background: linear-gradient(180deg, #6366f1, #a855f7);
}
.course-detail-page .teacher-card:hover { box-shadow: 0 12px 28px rgba(99,102,241,.12) !important; }
.course-detail-page .teacher-avatar img {
    border: 4px solid #fff; box-shadow: 0 6px 18px rgba(99,102,241,.18);
}
.course-detail-page .teacher-name { color: #1c1917 !important; font-weight: 800 !important; }
.course-detail-page .teacher-detail i { color: #6366f1 !important; }

/* Sidebar */
.course-detail-page .course-sidebar {
    border: 1px solid #e0e7ff !important; border-radius: 16px !important;
    box-shadow: 0 12px 30px rgba(99,102,241,.1) !important; overflow: hidden; position: sticky; top: 100px;
}
.course-detail-page .course-sidebar::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; z-index: 3;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #a855f7);
}
.course-detail-page .course-sidebar-image img { aspect-ratio: 16/9; }
.course-detail-page .course-sidebar-image .course-badge .badge {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%) !important;
    box-shadow: 0 4px 12px rgba(99,102,241,.35) !important; font-weight: 700;
}
.course-detail-page .course-sidebar-body { padding: 1.5rem !important; }
.course-detail-page .course-sidebar-title {
    color: #1c1917 !important; font-weight: 850 !important; letter-spacing: -0.02em;
}
.course-detail-page .course-code { font-size: .85rem; }
.course-detail-page .course-code .text-muted { color: #6b6280 !important; }
.course-detail-page .course-price-section {
    border-color: #e0e7ff !important; padding: 1.25rem; margin: -.5rem -1rem 1.5rem;
    background: linear-gradient(135deg, #f5f3ff, #eef2ff); border-radius: 12px; border: 1px solid #e0e7ff;
}
.course-detail-page .price-tag .price-value {
    background: none !important; -webkit-text-fill-color: #1c1917 !important; color: #1c1917 !important;
    font-weight: 850 !important; font-size: 2.25rem !important;
}
.course-detail-page .price-tag .price-unit { color: #6b6280 !important; }

/* Action buttons */
.course-detail-page .btn-start-learning {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%) !important;
    box-shadow: 0 6px 18px rgba(99,102,241,.3) !important; border-radius: 12px !important;
}
.course-detail-page .btn-start-learning:hover { box-shadow: 0 10px 24px rgba(99,102,241,.4) !important; }
.course-detail-page .btn-checkout {
    border-radius: 12px !important; box-shadow: 0 6px 18px rgba(99,102,241,.3) !important;
}
.course-detail-page .btn-enroll { border-radius: 10px !important; font-weight: 700 !important; }
.course-detail-page .enrollment-item {
    border: 1px solid #e0e7ff; background: #f5f3ff; border-radius: 12px;
}
.course-detail-page .enrollment-name { font-weight: 700 !important; color: #1c1917 !important; }
.course-detail-page .no-enrollment-notice {
    background: #fef3c7; border-radius: 12px; border: 1px solid #fde68a;
}
.course-detail-page .success-message { border-radius: 12px; }

/* Related courses */
.course-detail-page .related-courses-section {
    padding: 3rem 0 !important; background: #f5f3ff !important; margin-top: 3rem !important;
    border-top: 1px solid #e0e7ff;
    position: relative;
    z-index: 2;
}
.course-detail-page .related-courses-section .hp-section-title {
    color: #1c1917 !important; font-weight: 850 !important; letter-spacing: -0.02em;
}

