/* ============================================================
   DSC Digital Experts Widgets — Shared Stylesheet v3.0.0
   Covers: Marquee Ticker · Announcement Pill · Testimonial Grid
           Icon List · Logo · Menu · Button · Social Icons
   Fonts: Plus Jakarta Sans (body) · Unbounded (headings/brand)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── MARQUEE TICKER ─────────────────────────────────────────── */
.dsc-marquee-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    width: 100%;
    height: 38px;
    box-sizing: border-box;
}
.dsc-marquee-badge {
    background: #E8392A;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 4px;
    flex-shrink: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    white-space: nowrap;
    line-height: 1.6;
}
.dsc-marquee-track-outer {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}
.dsc-marquee-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation-name: dscMarqueeTick;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform;
}
@keyframes dscMarqueeTick {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.dsc-marquee-item {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.45);
    flex-shrink: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding: 0 20px;
    line-height: 1;
}
.dsc-marquee-item b {
    color: rgba(255,255,255,0.85);
    font-weight: 700;
}
.dsc-marquee-sep {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    flex-shrink: 0;
}
.dsc-marquee-sep::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    background: rgba(232,57,42,0.5);
    border-radius: 50%;
}
.dsc-marquee-wrap:hover .dsc-marquee-track {
    animation-play-state: paused;
}
@media (max-width: 767px) {
    .dsc-marquee-item { padding: 0 12px; font-size: 10px; }
    .dsc-marquee-badge { font-size: 8px; padding: 2px 7px; }
}

/* ── ANNOUNCEMENT PILL ──────────────────────────────────────── */
.dsc-ann-pill-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.dsc-ann-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFF1F0;
    border: 1.5px solid rgba(232,57,42,0.2);
    border-radius: 100px;
    padding: 8px 20px;
    text-decoration: none;
    transition: background 0.2s ease;
    cursor: default;
}
a.dsc-ann-pill { cursor: pointer; }
.dsc-ann-pill:hover { background: #FFE9E7; }
.dsc-ann-dot {
    width: 8px;
    height: 8px;
    background: #E8392A;
    border-radius: 50%;
    flex-shrink: 0;
    animation: dscDotPulse 2s ease-in-out infinite;
}
@keyframes dscDotPulse {
    0%   { box-shadow: 0 0 0 0 rgba(232,57,42,0.4); }
    70%  { box-shadow: 0 0 0 7px rgba(232,57,42,0); }
    100% { box-shadow: 0 0 0 0 rgba(232,57,42,0); }
}
.dsc-ann-text {
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    font-family: 'Plus Jakarta Sans', sans-serif;
    white-space: nowrap;
    line-height: 1;
}
.dsc-ann-text strong { color: #E8392A; font-weight: 800; }
@media (max-width: 1024px) {
    .dsc-ann-pill-wrap { justify-content: flex-start; }
    .dsc-ann-text { white-space: normal; }
}
@media (max-width: 767px) {
    .dsc-ann-pill { padding: 6px 14px; gap: 7px; }
    .dsc-ann-text { font-size: 11px; }
}

/* ── TESTIMONIAL GRID ───────────────────────────────────────── */
.dsc-testi-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}
.dsc-testi-card {
    background: #F8F9FB;
    border: 1px solid #EAECF0;
    border-radius: 16px;
    padding: 28px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dsc-testi-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.dsc-testi-card--featured {
    background: #0D0D12 !important;
    border-color: rgba(232,57,42,0.2) !important;
}
.dsc-testi-quote {
    font-size: 14px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 20px;
    font-style: italic;
}
.dsc-testi-card--featured .dsc-testi-quote { color: rgba(255,255,255,0.65); }
.dsc-testi-stars { color: #E8392A; font-size: 13px; margin-bottom: 12px; }
.dsc-testi-meta { display: flex; align-items: center; gap: 12px; }
.dsc-testi-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.dsc-testi-name { font-size: 14px; font-weight: 700; color: #0D0D12; }
.dsc-testi-card--featured .dsc-testi-name { color: #fff; }
.dsc-testi-role { font-size: 11px; color: #9CA3AF; margin-top: 2px; }
.dsc-testi-course {
    font-size: 10px; color: #E8392A; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px;
}
@media (max-width: 1024px) { .dsc-testi-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 767px)  { .dsc-testi-grid { grid-template-columns: 1fr; } }


/* ══════════════════════════════════════════════════════════════
   NEW HEADER WIDGETS
   ══════════════════════════════════════════════════════════════ */

/* ── DSC ICON LIST ──────────────────────────────────────────── */
.dsc-icon-list-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.dsc-icon-list-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    cursor: default;
    transition: opacity 0.2s;
}
a.dsc-icon-list-item { cursor: pointer; }
a.dsc-icon-list-item:hover { opacity: 0.8; }

.dsc-icon-list-item-icon {
    width: 14px;
    height: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(232,57,42,0.7);
}
.dsc-icon-list-item-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.dsc-icon-list-item-icon i {
    font-size: 13px;
    color: inherit;
}
.dsc-icon-list-item-text {
    font-size: 10.5px;
    font-weight: 600;
    color: rgba(255,255,255,0.38);
    font-family: 'Plus Jakarta Sans', sans-serif;
    white-space: nowrap;
    line-height: 1;
}
.dsc-icon-list-divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}

/* Tablet & mobile */
@media (max-width: 1024px) {
    .dsc-icon-list-item-text { font-size: 10px; }
}
@media (max-width: 767px) {
    .dsc-icon-list-wrap { gap: 8px !important; }
    .dsc-icon-list-item-text { font-size: 9px; }
    .dsc-icon-list-divider { display: none; }
}


/* ── DSC LOGO ───────────────────────────────────────────────── */
.dsc-logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    flex-shrink: 0;
    cursor: pointer;
}
.dsc-logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #0D0D12;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
/* Red corner accent (Header A style) */
.dsc-logo-mark.has-accent::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 0; height: 0;
    border-style: solid;
    border-width: 0 0 18px 18px;
    border-color: transparent transparent #E8392A transparent;
}
/* Outer rotated ring (Header B style) */
.dsc-logo-mark.has-ring::before {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px solid rgba(232,57,42,0.25);
    border-radius: 14px;
    transform: rotate(6deg);
    pointer-events: none;
}
.dsc-logo-mark-letter {
    font-family: 'Unbounded', sans-serif;
    font-size: 19px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
    line-height: 1;
}
.dsc-logo-info {
    display: flex;
    flex-direction: column;
}
.dsc-logo-name {
    display: block;
    font-family: 'Unbounded', sans-serif;
    font-size: 13.5px;
    font-weight: 900;
    color: #0D0D12;
    letter-spacing: -0.4px;
    line-height: 1.2;
}
.dsc-logo-tagline {
    display: block;
    font-size: 9.5px;
    color: #9CA3AF;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 2px;
    font-style: normal;
    font-weight: 400;
}
.dsc-logo-img {
    display: block;
    max-height: 52px;
    width: auto;
    object-fit: contain;
}

/* Tablet */
@media (max-width: 1024px) {
    .dsc-logo-tagline { display: none; }
    .dsc-logo-name { font-size: 12px; }
}
/* Mobile */
@media (max-width: 767px) {
    .dsc-logo-wrap { gap: 10px; }
    .dsc-logo-mark { width: 40px; height: 40px; }
    .dsc-logo-mark-letter { font-size: 16px; }
    .dsc-logo-name { font-size: 11px; }
    .dsc-logo-info { display: none; }
}


/* ── DSC MENU ───────────────────────────────────────────────── */
.dsc-menu-nav {
    display: flex;
    align-items: center;
    flex: 1;
    height: 48px;
    justify-content: center;
}
.dsc-menu-link {
    display: inline-flex;
    align-items: center;
    height: 100%;
    padding: 0 16px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.2s;
    position: relative;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.dsc-menu-link:hover { color: #fff; }

/* Vertical separator */
.dsc-menu-link.has-sep + .dsc-menu-link.has-sep::before,
.dsc-menu-link.has-sep::before {
    display: none;
}
.dsc-menu-link.has-sep + .dsc-menu-link::before {
    content: '';
    position: absolute;
    left: 0; top: 14px; bottom: 14px;
    width: 1px;
    background: rgba(255,255,255,0.06);
}

/* Active state + indicator — BOTTOM */
.dsc-menu-nav.ind-bottom .dsc-menu-link.is-active { color: #fff; }
.dsc-menu-nav.ind-bottom .dsc-menu-link.is-active::after {
    content: '';
    position: absolute;
    bottom: 0; left: 16px; right: 16px;
    height: 2px;
    background: #E8392A;
    border-radius: 2px 2px 0 0;
}

/* Active state + indicator — TOP */
.dsc-menu-nav.ind-top .dsc-menu-link.is-active { color: #E8392A; }
.dsc-menu-nav.ind-top .dsc-menu-link.is-active::after {
    content: '';
    position: absolute;
    top: 0; left: 12px; right: 12px;
    height: 2px;
    background: #E8392A;
    border-radius: 0 0 3px 3px;
}

/* Light-background nav variant (Header B Row 3) */
.dsc-menu-nav.ind-top .dsc-menu-link {
    color: #6B7280;
}
.dsc-menu-nav.ind-top .dsc-menu-link:hover { color: #0D0D12; }

/* Tablet: hamburger hint — hide overflow items */
@media (max-width: 1024px) {
    .dsc-menu-nav { justify-content: flex-start; overflow-x: auto; }
    .dsc-menu-link { font-size: 11px; padding: 0 12px; }
}
/* Mobile: hide the nav entirely (show hamburger via Elementor) */
@media (max-width: 767px) {
    .dsc-menu-nav { display: none; }
}


/* ── DSC BUTTON ─────────────────────────────────────────────── */
.dsc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    border: none;
    outline: none;
    line-height: 1;
    /* Preset: medium */
    padding: 11px 28px;
    border-radius: 10px;
    background: #E8392A;
    color: #fff;
}
.dsc-btn:hover {
    background: #c42d1f;
    transform: translateY(-1px);
}
.dsc-btn-icon {
    font-size: 15px;
    line-height: 1;
    transition: transform 0.2s;
}
.dsc-btn:hover .dsc-btn-icon { transform: translateX(2px); }

/* Size presets (applied as inline style via render, overridable) */
.dsc-btn.size-sm { padding: 7px 18px; font-size: 11px; }
.dsc-btn.size-lg { padding: 14px 36px; font-size: 15px; }

/* Tablet */
@media (max-width: 1024px) {
    .dsc-btn { padding: 10px 22px; font-size: 12px; }
}
/* Mobile */
@media (max-width: 767px) {
    .dsc-btn { padding: 9px 18px; font-size: 11px; }
}


/* ── DSC SOCIAL ICONS ───────────────────────────────────────── */
.dsc-social-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.dsc-soc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid #EAECF0;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    flex-shrink: 0;
}
.dsc-soc-btn:hover {
    border-color: rgba(232,57,42,0.3);
    background: #FFF1F0;
}
.dsc-soc-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
.dsc-soc-ico svg {
    width: 100%;
    height: 100%;
    stroke: #9CA3AF;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.2s;
}
.dsc-soc-btn:hover .dsc-soc-ico svg { stroke: #E8392A; }
.dsc-soc-ico i {
    font-size: 13px;
    color: #9CA3AF;
    transition: color 0.2s;
}
.dsc-soc-btn:hover .dsc-soc-ico i { color: #E8392A; }

/* Tablet */
@media (max-width: 1024px) {
    .dsc-soc-btn { width: 30px; height: 30px; }
}
/* Mobile */
@media (max-width: 767px) {
    .dsc-social-wrap { gap: 6px; }
    .dsc-soc-btn { width: 28px; height: 28px; }
}


/* ══════════════════════════════════════════════════════════════
   DSC WIDGETS v4.0 — NEW WIDGETS
   DSC Student Enroll · DSC Heading · DSC Courses List · DSC Stat
   ══════════════════════════════════════════════════════════════ */

/* ── DSC STUDENT ENROLL ─────────────────────────────────────── */
.dsc-enroll-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}
.dsc-enroll-avatars {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.dsc-enroll-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2.5px solid #0D0D12;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    font-family: 'Unbounded', sans-serif;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    transition: transform 0.2s, z-index 0s;
}
.dsc-enroll-avatar:hover {
    transform: translateY(-3px);
    z-index: 10;
}
.dsc-enroll-avatar + .dsc-enroll-avatar {
    margin-left: -10px;
}
.dsc-enroll-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.dsc-enroll-text {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
}
.dsc-enroll-count {
    color: #ffffff;
    font-weight: 700;
}
.dsc-enroll-rating {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.dsc-enroll-sep {
    color: rgba(255,255,255,0.2);
}
.dsc-enroll-stars {
    color: #F5A623;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1;
}
.dsc-enroll-rating-text {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    font-family: 'Plus Jakarta Sans', sans-serif;
}
@media (max-width: 767px) {
    .dsc-enroll-wrap { gap: 12px; }
    .dsc-enroll-text { font-size: 12px; }
    .dsc-enroll-rating-text { font-size: 11px; }
}


/* ── DSC HEADING ────────────────────────────────────────────── */
.dsc-hdg-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.dsc-hdg-subtitle-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    width: 100%;
}
.dsc-hdg-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #E8392A;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Line Left */
.dsc-hdg-sub-line-left .dsc-hdg-subtitle::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: #E8392A;
    border-radius: 2px;
    flex-shrink: 0;
}

/* Lines Both */
.dsc-hdg-sub-line-both .dsc-hdg-subtitle::before,
.dsc-hdg-sub-line-both .dsc-hdg-subtitle::after {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: #E8392A;
    border-radius: 2px;
    flex-shrink: 0;
}

/* Badge */
.dsc-hdg-sub-badge .dsc-hdg-subtitle {
    background: rgba(232,57,42,0.1);
    border: 1px solid rgba(232,57,42,0.2);
    border-radius: 100px;
    padding: 4px 14px;
}

.dsc-hdg-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin: 0 0 8px;
}
.dsc-hdg-highlight {
    color: #E8392A;
}
.dsc-hdg-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 1023px) {
    .dsc-hdg-title { font-size: 24px; }
}
@media (max-width: 767px) {
    .dsc-hdg-title { font-size: 22px; }
    .dsc-hdg-desc  { font-size: 12px; }
}


/* ── DSC COURSES LIST ───────────────────────────────────────── */
.dsc-courses-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.dsc-course-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.22s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
}
.dsc-course-row:hover {
    background: rgba(232,57,42,0.08);
    border-color: rgba(232,57,42,0.4);
    transform: translateX(4px);
    text-decoration: none;
}
.dsc-course-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 3px;
    background: #E8392A;
    border-radius: 0 3px 3px 0;
    opacity: 0;
    transition: opacity 0.22s;
}
.dsc-course-row:hover::before {
    opacity: 1;
}
.dsc-course-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.2s;
}
.dsc-course-row:hover .dsc-course-icon {
    transform: scale(1.08);
}
.dsc-course-icon i,
.dsc-course-icon svg {
    font-size: 18px;
    width: 18px;
    height: 18px;
}
.dsc-course-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    min-width: 0;
}
.dsc-course-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s;
}
.dsc-course-row:hover .dsc-course-title {
    color: #fff;
}
.dsc-course-meta {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}
.dsc-course-star  { color: #F5A623; }
.dsc-course-dot   { color: rgba(255,255,255,0.2); }
.dsc-course-rating { color: rgba(255,255,255,0.7); font-weight: 600; }
.dsc-course-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    flex-shrink: 0;
}
.dsc-course-badge {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 3px 9px;
    border-radius: 100px;
    white-space: nowrap;
    display: inline-block;
}
.dsc-course-seats {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    white-space: nowrap;
}
.dsc-course-seats strong {
    color: #E8392A;
    font-weight: 700;
}
@media (max-width: 767px) {
    .dsc-course-title  { font-size: 13px; }
    .dsc-course-meta   { font-size: 11px; }
    .dsc-course-icon   { width: 38px; height: 38px; min-width: 38px; }
    .dsc-course-icon i,
    .dsc-course-icon svg { font-size: 15px; }
}


/* ── DSC STAT ───────────────────────────────────────────────── */
.dsc-stat-wrap {
    display: flex;
    align-items: center;
    width: 100%;
}
.dsc-stat-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}
.dsc-stat-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(245,166,35,0.12);
    transition: transform 0.2s;
}
.dsc-stat-wrap:hover .dsc-stat-icon {
    transform: scale(1.06);
}
.dsc-stat-icon i {
    font-size: 26px;
    line-height: 1;
    color: inherit;
}
.dsc-stat-icon img,
.dsc-stat-icon svg {
    width: 32px;
    height: 32px;
    object-fit: contain;
    stroke: currentColor;
}
.dsc-stat-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.dsc-stat-value {
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
    line-height: 1.1;
    display: block;
    margin-bottom: 4px;
}
.dsc-stat-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    display: block;
}
@media (max-width: 767px) {
    .dsc-stat-value  { font-size: 18px; }
    .dsc-stat-icon   { width: 44px; height: 44px; min-width: 44px; }
    .dsc-stat-inner  { gap: 12px; }
}


/* ── DSC COURSE BOX ─────────────────────────────────────────── */
.dsc-cbox {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #FFFFFF;
    border: 1px solid #E4E7EF;
    border-radius: 22px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-sizing: border-box;
    text-decoration: none;
    color: inherit;
}
.dsc-cbox-linked {
    display: flex;
    cursor: pointer;
}
.dsc-cbox::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--dsc-bar-start, #E8392A), var(--dsc-bar-end, #F5A623));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.dsc-cbox:hover {
    border-color: rgba(232,57,42,0.28);
    box-shadow: 0 12px 40px rgba(232,57,42,0.09);
    transform: translateY(-4px);
    text-decoration: none;
    color: inherit;
}
.dsc-cbox:hover::after {
    transform: scaleX(1);
}

/* Top row */
.dsc-cbox-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

/* Icon image box */
.dsc-cbox-img {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EEF2FF;
    flex-shrink: 0;
    transition: transform 0.25s ease;
    overflow: hidden;
}
.dsc-cbox:hover .dsc-cbox-img {
    transform: scale(1.06);
}
.dsc-cbox-img img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
}

/* Badge */
.dsc-cbox-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 4px 10px;
    border-radius: 100px;
    white-space: nowrap;
    background: #FFF0EE;
    color: #C42E1F;
    border: 1px solid rgba(196,46,31,0.15);
    line-height: 1.4;
    flex-shrink: 0;
    transition: transform 0.2s;
}
.dsc-cbox:hover .dsc-cbox-badge {
    transform: scale(1.04);
}

/* Spacer */
.dsc-cbox-spacer {
    height: 16px;
    flex-shrink: 0;
}

/* Push spacer */
.dsc-cbox-push {
    flex: 1;
    min-height: 12px;
}

/* Title */
.dsc-cbox-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #0D0D12;
    line-height: 1.25;
    letter-spacing: -0.3px;
    margin: 0 0 12px;
    transition: color 0.2s;
    width: 100%;
}
.dsc-cbox:hover .dsc-cbox-title {
    color: #E8392A;
}

/* Description */
.dsc-cbox-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    color: #6B7080;
    line-height: 1.65;
    margin: 0 0 20px;
    width: 100%;
}

/* Footer */
.dsc-cbox-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    border-top: 1px solid #F0F2F7;
    padding-top: 16px;
    flex-wrap: wrap;
}

/* Meta */
.dsc-cbox-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.dsc-cbox-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    color: #9BA3B5;
    line-height: 1.4;
}
.dsc-cbox-meta-emoji {
    line-height: 1;
}
.dsc-cbox-meta-icon {
    font-size: 12px;
    color: #9BA3B5;
}

/* Button */
.dsc-cbox-btn {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #E8392A;
    text-decoration: none;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s, transform 0.2s;
    white-space: nowrap;
}
.dsc-cbox-btn:hover {
    color: #C42E1F;
    transform: translateX(3px);
    text-decoration: none;
}
.dsc-cbox:hover .dsc-cbox-btn {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 1023px) {
    .dsc-cbox-title { font-size: 16px; }
}
@media (max-width: 767px) {
    .dsc-cbox { border-radius: 16px; padding: 20px; }
    .dsc-cbox-title { font-size: 15px; }
    .dsc-cbox-desc { font-size: 12px; }
    .dsc-cbox-badge { font-size: 9px; padding: 3px 8px; }
}


/* ── DSC STAT — CARD MODE (bento) ───────────────────────────── */
.dsc-stat-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-radius: 22px;
    padding: 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}
.dsc-stat-card:hover {
    transform: translateY(-3px);
}

/* Text wrapper — fills remaining space in any flex direction */
.dsc-stat-card-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

/* Variant: light */
.dsc-stat-card--light {
    background: #F8F9FB;
    border: 1px solid #EAECF0;
}
.dsc-stat-card--light:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.dsc-stat-card--light .dsc-stat-value  { color: #0D0D12; }
.dsc-stat-card--light .dsc-stat-sup    { color: #E8392A; }
.dsc-stat-card--light .dsc-stat-label  { color: #374151; }
.dsc-stat-card--light .dsc-stat-sub    { color: #9CA3AF; }
.dsc-stat-card--light .dsc-stat-icon   { background: #FFF0EF; }
.dsc-stat-card--light .dsc-stat-icon svg { stroke: #E8392A; fill: none; }
.dsc-stat-card--light .dsc-stat-icon i  { color: #E8392A; }

/* Variant: dark */
.dsc-stat-card--dark {
    background: #0D0D12;
    border: 1px solid rgba(255,255,255,0.06);
}
.dsc-stat-card--dark:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.dsc-stat-card--dark .dsc-stat-value  { color: #ffffff; }
.dsc-stat-card--dark .dsc-stat-sup    { color: #E8392A; }
.dsc-stat-card--dark .dsc-stat-label  { color: rgba(255,255,255,0.7); }
.dsc-stat-card--dark .dsc-stat-sub    { color: rgba(255,255,255,0.3); }
.dsc-stat-card--dark .dsc-stat-icon   { background: rgba(255,255,255,0.07); }
.dsc-stat-card--dark .dsc-stat-icon svg { stroke: #E8392A; fill: none; }
.dsc-stat-card--dark .dsc-stat-icon i  { color: #E8392A; }

/* Variant: accent */
.dsc-stat-card--accent {
    background: #E8392A;
    border: none;
}
.dsc-stat-card--accent:hover {
    box-shadow: 0 8px 32px rgba(232,57,42,0.35);
}
.dsc-stat-card--accent .dsc-stat-value  { color: #ffffff; }
.dsc-stat-card--accent .dsc-stat-sup    { color: rgba(255,255,255,0.65); font-size: 16px; }
.dsc-stat-card--accent .dsc-stat-label  { color: #ffffff; }
.dsc-stat-card--accent .dsc-stat-sub    { color: rgba(255,255,255,0.65); }
.dsc-stat-card--accent .dsc-stat-icon   { background: rgba(0,0,0,0.15); }
.dsc-stat-card--accent .dsc-stat-icon svg { stroke: #ffffff; fill: none; }
.dsc-stat-card--accent .dsc-stat-icon i  { color: #ffffff; }

/* Shared card value size */
.dsc-stat-card .dsc-stat-value {
    font-family: 'Unbounded', sans-serif;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1;
    margin-bottom: 6px;
    display: block;
}
.dsc-stat-card .dsc-stat-sup {
    font-size: 20px;
    vertical-align: super;
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
}
.dsc-stat-card .dsc-stat-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
    display: block;
}
.dsc-stat-card .dsc-stat-sub {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    line-height: 1.55;
    display: block;
}
.dsc-stat-card .dsc-stat-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dsc-stat-card .dsc-stat-icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.8;
    flex-shrink: 0;
}
.dsc-stat-card .dsc-stat-icon i { font-size: 18px; }

/* Row 2 small stat cards (nr2 style) */
.dsc-stat-card--light.dsc-stat-card--small {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 14px;
}
.dsc-stat-card--light.dsc-stat-card--small .dsc-stat-value {
    font-size: 13px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    letter-spacing: -0.2px;
    margin: 0 0 2px;
}
.dsc-stat-card--light.dsc-stat-card--small .dsc-stat-sup { display: none; }
.dsc-stat-card--light.dsc-stat-card--small .dsc-stat-icon { margin-bottom: 0; }

/* Inline mode existing styles preserved */
.dsc-stat-value {
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    display: block;
}
.dsc-stat-sup {
    font-family: inherit;
    font-weight: 900;
}

@media (max-width: 1023px) {
    .dsc-stat-card .dsc-stat-value { font-size: 26px; }
}
@media (max-width: 767px) {
    .dsc-stat-card { border-radius: 16px; padding: 20px; }
    .dsc-stat-card .dsc-stat-value { font-size: 24px; }
    .dsc-stat-card .dsc-stat-sup { font-size: 16px; }
}


/* ── DSC PROCESS STEPS ──────────────────────────────────────── */
.dsc-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

/* Card base */
.dsc-step-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.dsc-step-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(232,57,42,0.05);
    pointer-events: none;
}
.dsc-step-card:hover {
    border-color: rgba(232,57,42,0.2);
    transform: translateY(-4px);
    background: rgba(255,255,255,0.06);
}

/* Featured */
.dsc-step-featured {
    background: rgba(232,57,42,0.06);
    border-color: rgba(232,57,42,0.18);
}
.dsc-step-featured:hover {
    background: rgba(232,57,42,0.09);
}

/* Watermark */
.dsc-step-watermark {
    position: absolute;
    top: -10px;
    right: 20px;
    font-family: 'Unbounded', sans-serif;
    font-size: 80px;
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    pointer-events: none;
    letter-spacing: -4px;
    user-select: none;
}
.dsc-step-featured .dsc-step-watermark {
    color: rgba(232,57,42,0.08);
}

/* Step number badge */
.dsc-step-num-wrap {
    margin-bottom: 20px;
}
.dsc-step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(232,57,42,0.3);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-family: 'Unbounded', sans-serif;
    font-size: 16px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -1px;
}
.dsc-step-featured .dsc-step-num {
    border-color: rgba(232,57,42,0.55);
    background: rgba(232,57,42,0.08);
}

/* Dot */
.dsc-step-dot {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 14px;
    height: 14px;
    background: #E8392A;
    border-radius: 50%;
    border: 2px solid #0D0D12;
    font-size: 7px;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1;
}

/* Icon box */
.dsc-step-icon {
    width: 46px;
    height: 46px;
    background: rgba(232,57,42,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.dsc-step-card:hover .dsc-step-icon {
    transform: scale(1.08);
}
.dsc-step-icon i {
    font-size: 22px;
    color: #E8392A;
    line-height: 1;
}
.dsc-step-icon svg {
    width: 22px;
    height: 22px;
    stroke: #E8392A;
    fill: none;
    stroke-width: 1.7;
}

/* Title */
.dsc-step-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.3px;
    margin: 0 0 10px;
    line-height: 1.3;
}

/* Description */
.dsc-step-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12.5px;
    color: rgba(255,255,255,0.38);
    line-height: 1.75;
    margin: 0 0 16px;
    flex: 1;
}

/* Link */
.dsc-step-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #E8392A;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
    margin-top: auto;
}
.dsc-step-link:hover {
    color: #FF5B4A;
    transform: translateX(3px);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 1023px) {
    .dsc-steps-grid { grid-template-columns: repeat(2, 1fr); }
    .dsc-step-watermark { font-size: 64px; }
}
@media (max-width: 767px) {
    .dsc-steps-grid { grid-template-columns: 1fr; }
    .dsc-step-card { padding: 24px; border-radius: 16px; }
    .dsc-step-watermark { font-size: 56px; }
}

/* ═══════════════════════════════════════════════════════════════════
   DSC Process Step — Single Card Widget  (v4.4)
   Use one widget per step; drop 3 side-by-side with Elementor columns.
   ═══════════════════════════════════════════════════════════════════ */

/* Card wrapper fills the Elementor column */
.dsc-pstep-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
    height: 100%;
    box-sizing: border-box;
}
.dsc-pstep-card:hover {
    border-color: rgba(232,57,42,0.22);
    transform: translateY(-4px);
    background: rgba(255,255,255,0.06);
}

/* Featured variant */
.dsc-pstep-featured {
    background: rgba(232,57,42,0.06);
    border-color: rgba(232,57,42,0.18);
}
.dsc-pstep-featured:hover {
    background: rgba(232,57,42,0.09);
}

/* ── Watermark ─────────────────────────────────────────────────── */
.dsc-pstep-watermark {
    position: absolute;
    top: -12px;
    right: 16px;
    font-family: 'Unbounded', sans-serif;
    font-size: 110px;
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    letter-spacing: -6px;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}
.dsc-pstep-featured .dsc-pstep-watermark {
    color: rgba(232,57,42,0.08);
}

/* ── Step number badge ─────────────────────────────────────────── */
.dsc-pstep-badge-wrap {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.dsc-pstep-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(232,57,42,0.35);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -1px;
}
.dsc-pstep-featured .dsc-pstep-badge {
    border-color: rgba(232,57,42,0.55);
    background: rgba(232,57,42,0.08);
}

/* Red accent dot — top-right of badge circle, purely decorative */
.dsc-pstep-dot {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 12px;
    height: 12px;
    background: #E8392A;
    border-radius: 50%;
    border: 2px solid #0D0D12;
    pointer-events: none;
}

/* ── Icon box ──────────────────────────────────────────────────── */
.dsc-pstep-icon {
    width: 46px;
    height: 46px;
    background: rgba(232,57,42,0.10);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: transform 0.25s ease;
}
.dsc-pstep-card:hover .dsc-pstep-icon {
    transform: scale(1.08);
}
.dsc-pstep-icon i {
    font-size: 20px;
    color: #E8392A;
    line-height: 1;
}
.dsc-pstep-icon svg {
    width: 20px;
    height: 20px;
    stroke: #E8392A;
    fill: none;
    stroke-width: 1.7;
}

/* ── Title ─────────────────────────────────────────────────────── */
.dsc-pstep-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.3px;
    margin: 0 0 10px;
    line-height: 1.35;
    position: relative;
    z-index: 1;
}

/* ── Description ───────────────────────────────────────────────── */
.dsc-pstep-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12.5px;
    color: rgba(255,255,255,0.38);
    line-height: 1.75;
    margin: 0 0 20px;
    flex: 1;
    position: relative;
    z-index: 1;
}

/* ── Link ──────────────────────────────────────────────────────── */
.dsc-pstep-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #E8392A;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    margin-top: auto;
    position: relative;
    z-index: 1;
}
.dsc-pstep-link:hover {
    color: #FF5B4A;
    transform: translateX(3px);
    text-decoration: none;
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 767px) {
    .dsc-pstep-card      { padding: 24px; border-radius: 16px; }
    .dsc-pstep-watermark { font-size: 80px; }
}

/* ═══════════════════════════════════════════════════════════════════
   DSC Feature Cell  (v4.5)
   ═══════════════════════════════════════════════════════════════════ */
.dsc-fc-card {
    background: #16161F;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    cursor: default;
    height: 100%;
    box-sizing: border-box;
}
.dsc-fc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
    pointer-events: none;
}
.dsc-fc-card::after {
    content: '';
    position: absolute;
    bottom: -30px; right: -30px;
    width: 100px; height: 100px;
    border-radius: 50%;
    background: rgba(232,57,42,0.07);
    transition: all .3s;
    pointer-events: none;
}
.dsc-fc-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232,57,42,0.28);
    box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(232,57,42,0.08);
}
.dsc-fc-card:hover::after { background: rgba(232,57,42,0.13); width: 140px; height: 140px; }

/* Accent variant */
.dsc-fc-accent {
    background: #1E1018;
    border-color: rgba(232,57,42,0.28);
}
.dsc-fc-accent::before {
    background: linear-gradient(90deg, transparent, rgba(232,57,42,0.40), transparent);
}
.dsc-fc-accent::after { background: rgba(232,57,42,0.10); }
.dsc-fc-accent:hover { border-color: rgba(232,57,42,0.55); box-shadow: 0 16px 40px rgba(232,57,42,0.20); }

/* Wide variant — horizontal layout by default */
.dsc-fc-wide {
    flex-direction: row;
    align-items: center;
    gap: 28px;
    background: linear-gradient(120deg, #1E1018 0%, #18111A 40%, #16161F 100%);
    border-color: rgba(232,57,42,0.22);
}
.dsc-fc-wide::before {
    background: linear-gradient(90deg, rgba(232,57,42,0.50), rgba(255,255,255,0.06), transparent);
}
.dsc-fc-wide .dsc-fc-icon {
    width: 58px !important;
    height: 58px !important;
    flex-shrink: 0;
    border-radius: 17px !important;
}
.dsc-fc-wide .dsc-fc-title { font-size: 15px; }
.dsc-fc-wide:hover { border-color: rgba(232,57,42,0.45); box-shadow: 0 16px 40px rgba(232,57,42,0.18); }

/* Icon box — no margin-bottom; gap on card handles spacing */
.dsc-fc-icon {
    width: 48px; height: 48px;
    background: rgba(232,57,42,0.12);
    border: 1px solid rgba(232,57,42,0.22);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 1;
    flex-shrink: 0;
    transition: background .25s, border-color .25s;
}
.dsc-fc-card:hover .dsc-fc-icon { background: rgba(232,57,42,0.22); border-color: rgba(232,57,42,0.45); }
.dsc-fc-icon i   { font-size: 20px; color: #E8392A; line-height: 1; }
.dsc-fc-icon svg { width: 20px; height: 20px; stroke: #E8392A; fill: none; stroke-width: 1.8; }

/* Badge on icon */
.dsc-fc-badge {
    position: absolute; top: -7px; right: -7px;
    width: 18px; height: 18px;
    background: #E8392A;
    border-radius: 50%;
    font-family: 'Unbounded', sans-serif;
    font-size: 8px; font-weight: 900; color: #fff;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #16161F;
    box-shadow: 0 2px 8px rgba(232,57,42,0.5);
}

/* Text wrapper — fills remaining space in any flex direction */
.dsc-fc-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    position: relative; z-index: 1;
}

/* Title & desc */
.dsc-fc-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 12.5px; font-weight: 800;
    color: #fff; letter-spacing: -.25px;
    margin-bottom: 8px; line-height: 1.35;
}
.dsc-fc-desc {
    font-size: 11.5px;
    color: rgba(255,255,255,0.42);
    line-height: 1.72;
}


/* ═══════════════════════════════════════════════════════════════════
   DSC Trust Ribbon  (v4.5)
   ═══════════════════════════════════════════════════════════════════ */
.dsc-ribbon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F4F5F7;
    border: 1px solid #EAECF0;
    border-radius: 14px;
    overflow: hidden;
    flex-wrap: wrap;
}
.dsc-ribbon-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 14px 28px;
    font-size: 12px; font-weight: 600;
    color: #374151;
    flex: 1;
    justify-content: center;
}
.dsc-ribbon-item:not(:last-child) { border-right: 1px solid #EAECF0; }
.dsc-ribbon-item b { color: #0D0D12; }
.dsc-ribbon-dot {
    width: 7px; height: 7px;
    background: #22C55E;
    border-radius: 50%;
    flex-shrink: 0;
    animation: ribbon-pulse 2s ease-in-out infinite;
}
@keyframes ribbon-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.8)} }
@media (max-width: 768px) {
    .dsc-ribbon { flex-direction: column; }
    .dsc-ribbon-item { border-right: none !important; border-bottom: 1px solid #EAECF0; width: 100%; justify-content: flex-start; }
    .dsc-ribbon-item:last-child { border-bottom: none; }
}


/* ═══════════════════════════════════════════════════════════════════
   DSC Video Review Card  (v4.5)
   ═══════════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════════
   DSC Video / Image Review Card  (v4.13 — clean redesign)
   ═══════════════════════════════════════════════════════════════════ */

/* ── Card shell ────────────────────────────────────────────────── */
.dsc-vrc {
    background: #ffffff;
    border: 1px solid #EAECF0;
    border-radius: 18px;
    overflow: hidden;
    transition: border-color .25s, transform .25s, box-shadow .25s;
    display: flex;
    flex-direction: column;
}
.dsc-vrc:hover {
    border-color: rgba(232,57,42,0.30);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}

/* ── Thumbnail (video) ─────────────────────────────────────────── */
.dsc-vrc-thumb {
    position: relative;
    aspect-ratio: 16/9;
    background: #111118;
    background-size: cover;
    background-position: center;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
/* Subtle dark vignette over thumbnail */
.dsc-vrc-thumb::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.30) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Badge (top-left pill) */
.dsc-vrc-badge {
    position: absolute; top: 12px; left: 12px;
    background: #E8392A;
    border-radius: 6px;
    padding: 4px 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 9px; font-weight: 800; color: #fff;
    letter-spacing: .6px; text-transform: uppercase;
    z-index: 3;
}

/* Play button */
.dsc-vrc-play-wrap {
    position: relative; z-index: 3;
    background: none; border: none;
    cursor: pointer; padding: 0;
    text-decoration: none;
    display: flex; align-items: center; justify-content: center;
}
.dsc-vrc-play {
    width: 64px; height: 64px;
    background: #E8392A;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: transform .22s, box-shadow .22s;
    box-shadow: 0 0 0 12px rgba(232,57,42,0.25);
}
.dsc-vrc-play svg { width: 22px; height: 22px; }
.dsc-vrc-thumb:hover .dsc-vrc-play {
    transform: scale(1.10);
    box-shadow: 0 0 0 18px rgba(232,57,42,0.18);
}

/* ── Image testimonial ─────────────────────────────────────────── */
.dsc-vrc--image .dsc-vrc-testi-wrap {
    position: relative;
    overflow: hidden;
    background: #F4F5F7;
    line-height: 0;
}
.dsc-vrc-testi-img {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    display: block;
}

/* Earning badge strip */
.dsc-vrc-earning-strip {
    background: #0D0D12;
    border-left: 4px solid #E8392A;
    padding: 12px 16px;
    display: flex; align-items: center;
}
.dsc-vrc-earning-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px; font-weight: 700;
    color: #E8392A; line-height: 1.4;
}

/* ── Info area ─────────────────────────────────────────────────── */
.dsc-vrc-info {
    padding: 14px 16px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

/* Person row */
.dsc-vrc-person {
    display: flex; align-items: center; gap: 10px;
}
.dsc-vrc-av {
    width: 36px; height: 36px; min-width: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Unbounded', sans-serif;
    font-size: 11px; font-weight: 900; color: #fff;
    flex-shrink: 0;
}
.dsc-vrc-av--img {
    width: 36px; height: 36px; min-width: 36px;
    border-radius: 50%; object-fit: cover;
}
.dsc-vrc-person-text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.dsc-vrc-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12.5px; font-weight: 800;
    color: #0D0D12; line-height: 1.2;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.dsc-vrc-handle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px; font-weight: 400;
    color: #9CA3AF; line-height: 1.2;
}

/* Review title */
.dsc-vrc-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px; font-weight: 700;
    color: #0D0D12; line-height: 1.4;
}

/* Footer — stars + verified */
.dsc-vrc-footer {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    margin-top: auto;
}
.dsc-vrc-stars { display: flex; gap: 2px; }
.dsc-vrc-star  { font-size: 13px; color: #F5A623; line-height: 1; }
.dsc-vrc-verified {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10px; font-weight: 600;
    color: #9CA3AF;
}


/* ═══════════════════════════════════════════════════════════════════
   DSC Founder Quote  (v4.5)
   ═══════════════════════════════════════════════════════════════════ */
.dsc-fq { display: flex; flex-direction: column; }
.dsc-fq-eyebrow-wrap {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 24px;
}
.dsc-fq-eyebrow-line {
    width: 40px; height: 2px;
    background: #E8392A;
    flex-shrink: 0;
}
.dsc-fq-eyebrow-text {
    font-size: 10px; font-weight: 700;
    color: #E8392A;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}
.dsc-fq-mark {
    font-family: 'Unbounded', sans-serif;
    font-size: 96px; font-weight: 900;
    color: #E8392A;
    opacity: .15;
    line-height: .7;
    display: block;
    margin-bottom: -8px;
    user-select: none;
}
.dsc-fq-blockquote {
    font-size: 18px;
    color: #374151;
    line-height: 1.9;
    border-left: 3px solid #E8392A;
    padding-left: 24px;
    margin-bottom: 30px;
    font-style: italic;
    letter-spacing: -.1px;
}
.dsc-fq-blockquote strong { color: #0D0D12; font-style: normal; }
.dsc-fq-identity {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 24px;
}
.dsc-fq-avatar {
    width: 60px; height: 60px;
    background: #E8392A;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Unbounded', sans-serif;
    font-size: 22px; font-weight: 900; color: #fff;
    flex-shrink: 0;
    border: 3px solid rgba(232,57,42,0.3);
}
.dsc-fq-name {
    font-family: 'Unbounded', sans-serif;
    font-size: 14px; font-weight: 800;
    color: #0D0D12; letter-spacing: -.2px;
}
.dsc-fq-role { font-size: 11px; color: #9CA3AF; margin-top: 3px; }
.dsc-fq-vision {
    background: #0D0D12;
    border-radius: 14px;
    padding: 20px 24px;
    display: flex; align-items: flex-start; gap: 14px;
}
.dsc-fq-vision-icon {
    width: 34px; height: 34px;
    background: rgba(232,57,42,0.14);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.dsc-fq-vision-icon i   { font-size: 15px; color: #E8392A; }
.dsc-fq-vision-icon svg { width: 17px; height: 17px; stroke: #E8392A; fill: none; stroke-width: 1.8; }
.dsc-fq-vision-text {
    font-size: 12.5px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
}
.dsc-fq-vision-text strong { color: #E8392A; }


/* ═══════════════════════════════════════════════════════════════════
   DSC Franchise Card  (v4.5)
   ═══════════════════════════════════════════════════════════════════ */
.dsc-earn-card {
    border-radius: 32px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 30px 100px rgba(0,0,0,0.12);
}
.dsc-earn-left {
    background: #0D0D12;
    padding: 52px;
    position: relative;
    overflow: hidden;
}
.dsc-earn-left::before {
    content: '';
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(232,57,42,0.03) 1px,transparent 1px),
                      linear-gradient(90deg,rgba(232,57,42,0.03) 1px,transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}
.dsc-earn-left::after {
    content: '';
    position: absolute; top: -80px; left: -80px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,57,42,0.1) 0%, transparent 65%);
    pointer-events: none;
}
.dsc-earn-left-content { position: relative; z-index: 1; }
.dsc-earn-eyebrow {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(232,57,42,0.12);
    border: 1px solid rgba(232,57,42,0.2);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 9px; font-weight: 800;
    color: #E8392A;
    text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 20px;
}
.dsc-earn-h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 30px; font-weight: 900;
    color: #fff;
    line-height: 1.2; letter-spacing: -1.2px;
    margin-bottom: 14px;
}
.dsc-earn-h2 span { color: #E8392A; }
.dsc-earn-desc {
    font-size: 13.5px; color: rgba(255,255,255,0.4);
    line-height: 1.8; margin-bottom: 28px;
}
.dsc-earn-list {
    list-style: none;
    display: flex; flex-direction: column;
    gap: 11px; margin-bottom: 32px;
}
.dsc-earn-li {
    display: flex; align-items: center; gap: 11px;
    font-size: 12.5px; color: rgba(255,255,255,0.65);
}
.dsc-earn-li-check {
    width: 22px; height: 22px;
    background: rgba(232,57,42,0.14);
    border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.dsc-earn-btn-main {
    display: inline-flex; align-items: center;
    background: #E8392A; color: #fff;
    border: none; padding: 14px 28px;
    border-radius: 10px; font-size: 13px; font-weight: 700;
    cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif;
    text-decoration: none;
    transition: background .2s, transform .2s;
}
.dsc-earn-btn-main:hover { background: #c42d1f; transform: translateY(-1px); }

.dsc-earn-right {
    background: #E8392A;
    padding: 52px;
    display: flex; flex-direction: column; justify-content: space-between;
    position: relative; overflow: hidden;
}
.dsc-earn-right::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 250px; height: 250px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    pointer-events: none;
}
.dsc-earn-right::after {
    content: '';
    position: absolute; bottom: -40px; left: 40px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: rgba(0,0,0,0.06);
    pointer-events: none;
}
.dsc-earn-right-content { position: relative; z-index: 1; }
.dsc-earn-right-tag {
    display: inline-block;
    background: rgba(0,0,0,0.15);
    border-radius: 6px; padding: 4px 12px;
    font-size: 9px; font-weight: 800;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 18px;
}
.dsc-earn-right-h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 28px; font-weight: 900; color: #fff;
    line-height: 1.2; letter-spacing: -1px; margin-bottom: 12px;
}
.dsc-earn-right-desc {
    font-size: 13.5px; color: rgba(255,255,255,0.75);
    line-height: 1.75; margin-bottom: 28px;
}
.dsc-earn-stats-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 10px; margin-bottom: 32px;
    position: relative; z-index: 1;
}
.dsc-earn-stat-item {
    background: rgba(0,0,0,0.15);
    border-radius: 12px; padding: 16px;
}
.dsc-earn-stat-num {
    font-family: 'Unbounded', sans-serif;
    font-size: 24px; font-weight: 900;
    color: #fff; letter-spacing: -1px; line-height: 1;
}
.dsc-earn-stat-label {
    font-size: 10px; color: rgba(255,255,255,0.6);
    margin-top: 4px; line-height: 1.4;
}
.dsc-earn-btn-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: #E8392A;
    border: none; padding: 14px 28px;
    border-radius: 10px; font-size: 13px; font-weight: 800;
    cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif;
    text-decoration: none;
    transition: background .2s, transform .2s;
    position: relative; z-index: 1;
}
.dsc-earn-btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-1px); }
@media (max-width: 768px) {
    .dsc-earn-card { grid-template-columns: 1fr; border-radius: 20px; }
    .dsc-earn-left, .dsc-earn-right { padding: 32px 24px; }
    .dsc-earn-h2 { font-size: 24px; }
    .dsc-earn-right-h3 { font-size: 22px; }
}


/* ═══════════════════════════════════════════════════════════════════
   DSC Final CTA  (v4.5)
   ═══════════════════════════════════════════════════════════════════ */
.dsc-cta-card {
    background: #0D0D12;
    border-radius: 32px;
    padding: 80px 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.dsc-cta-card::before {
    content: '';
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.015) 1px,transparent 1px),
                      linear-gradient(90deg,rgba(255,255,255,0.015) 1px,transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
}
.dsc-cta-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.dsc-cta-orb1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(232,57,42,0.12) 0%, transparent 60%);
    top: -250px; left: 50%; transform: translateX(-50%);
}
.dsc-cta-orb2 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, transparent 65%);
    bottom: -120px; right: 5%;
}
.dsc-cta-orb3 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(232,57,42,0.07) 0%, transparent 65%);
    bottom: -60px; left: 8%;
}
.dsc-cta-inner { position: relative; z-index: 2; }
.dsc-cta-pill {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(232,57,42,0.1);
    border: 1px solid rgba(232,57,42,0.2);
    border-radius: 100px; padding: 6px 18px;
    font-size: 10px; font-weight: 700;
    color: #FF5B4A;
    text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 24px;
}
.dsc-cta-pulse-dot {
    width: 7px; height: 7px;
    background: #E8392A;
    border-radius: 50%;
    animation: cta-pulse 2s ease-in-out infinite;
}
@keyframes cta-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.35;transform:scale(.85)} }
.dsc-cta-h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 50px; font-weight: 900;
    color: #fff; letter-spacing: -2.5px;
    line-height: 1.05; margin-bottom: 18px;
}
.dsc-cta-h2 em { font-style: normal; color: #E8392A; }
.dsc-cta-subtitle {
    font-size: 14px; color: rgba(255,255,255,0.38);
    max-width: 500px; margin: 0 auto 36px;
    line-height: 1.85;
}
.dsc-cta-buttons {
    display: flex; gap: 14px;
    justify-content: center; flex-wrap: wrap;
    margin-bottom: 24px;
}
.dsc-cta-btn-primary {
    background: #E8392A; color: #fff;
    border: none; padding: 15px 36px;
    border-radius: 11px; font-size: 14px; font-weight: 700;
    cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif;
    text-decoration: none; display: inline-flex; align-items: center;
    transition: background .2s, transform .2s;
}
.dsc-cta-btn-primary:hover { background: #c42d1f; transform: translateY(-1px); }
.dsc-cta-btn-ghost {
    background: transparent; color: rgba(255,255,255,0.65);
    border: 1.5px solid rgba(255,255,255,0.2);
    padding: 15px 28px;
    border-radius: 11px; font-size: 14px; font-weight: 600;
    cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif;
    text-decoration: none; display: inline-flex; align-items: center;
    transition: border-color .2s, color .2s;
}
.dsc-cta-btn-ghost:hover { border-color: rgba(255,255,255,0.4); color: #fff; }
.dsc-cta-proof {
    font-size: 11px; color: rgba(255,255,255,0.2);
    margin-bottom: 20px;
}
.dsc-cta-trust-row {
    display: flex; justify-content: center;
    gap: 24px; flex-wrap: wrap;
}
.dsc-cta-trust-item {
    display: flex; align-items: center; gap: 6px;
    font-size: 11px; color: rgba(255,255,255,0.25);
}
.dsc-cta-trust-dot {
    width: 4px; height: 4px;
    background: rgba(232,57,42,0.5);
    border-radius: 50%;
}
@media (max-width: 768px) {
    .dsc-cta-card { padding: 48px 24px; }
    .dsc-cta-h2   { font-size: 32px; letter-spacing: -1.5px; }
}

/* ═══════════════════════════════════════════════════════════════════
   DSC Admission Step  (v4.9)
   ═══════════════════════════════════════════════════════════════════ */
.dsc-astep {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 0;
    position: relative;
}

/* Left column — fixed width, column direction to stack num + circle + line */
.dsc-astep-num-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 44px;
    gap: 0;
}

/* Muted step number above the circle */
.dsc-astep-num {
    font-family: 'Unbounded', sans-serif;
    font-size: 10px;
    font-weight: 900;
    color: rgba(0,0,0,0.18);
    letter-spacing: 1px;
    margin-bottom: 8px;
    line-height: 1;
}

/* Icon circle */
.dsc-astep-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0D0D12;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px #fff, 0 0 0 5px #EAECF0;
    transition: box-shadow 0.2s;
}
.dsc-astep-circle i   { font-size: 18px; color: #E8392A; line-height: 1; }
.dsc-astep-circle svg { width: 18px; height: 18px; stroke: #E8392A; fill: none; stroke-width: 1.8; }

/* Featured circle */
.dsc-astep-circle--featured {
    background: #E8392A;
    box-shadow: 0 0 0 4px #fff, 0 0 0 5px rgba(232,57,42,0.25), 0 8px 24px rgba(232,57,42,0.3);
}
.dsc-astep-circle--featured i   { color: #ffffff; }
.dsc-astep-circle--featured svg { stroke: #ffffff; }

/* Vertical connector line below the circle */
.dsc-astep-line {
    width: 2px;
    flex: 1;
    min-height: 40px;
    background: #EAECF0;
    margin-top: 8px;
    border-radius: 2px;
}

/* Right content column */
.dsc-astep-content {
    flex: 1;
    min-width: 0;
    padding-bottom: 8px;
}

/* Step badge pill */
.dsc-astep-badge {
    display: inline-block;
    background: #F4F5F7;
    border: 1px solid #EAECF0;
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 9px;
    font-weight: 800;
    color: #E8392A;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* Title */
.dsc-astep-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #0D0D12;
    letter-spacing: -0.2px;
    margin-bottom: 8px;
    line-height: 1.3;
}

/* Description */
.dsc-astep-desc {
    font-size: 13px;
    color: #9CA3AF;
    line-height: 1.75;
    margin-bottom: 14px;
}

/* Note callout */
.dsc-astep-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 11.5px;
    font-weight: 500;
    line-height: 1.4;
}
.dsc-astep-note i,
.dsc-astep-note svg {
    width: 13px; height: 13px;
    font-size: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

/* Note style variants */
.dsc-astep-note--neutral {
    background: #F4F5F7;
    border: 1px solid #EAECF0;
    color: #374151;
}
.dsc-astep-note--success {
    background: rgba(34,197,94,0.06);
    border: 1px solid rgba(34,197,94,0.18);
    color: #166534;
}
.dsc-astep-note--warning {
    background: rgba(245,158,11,0.07);
    border: 1px solid rgba(245,158,11,0.20);
    color: #92400e;
}
.dsc-astep-note--info {
    background: rgba(232,57,42,0.06);
    border: 1px solid rgba(232,57,42,0.18);
    color: #E8392A;
}

/* Responsive */
@media (max-width: 767px) {
    .dsc-astep { gap: 16px; padding: 24px 0; }
    .dsc-astep-title { font-size: 15px; }
}


/* ═══════════════════════════════════════════════════════════════════
   DSC Vertical Divider  (v4.9)
   ═══════════════════════════════════════════════════════════════════ */
.dsc-vdiv {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    height: 100%;
}
.dsc-vdiv-line {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.08);
    border-radius: 1px;
    flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════════
   DSC Trust Ribbon — scroll mode additions  (v4.9)
   ═══════════════════════════════════════════════════════════════════ */
.dsc-ribbon--scroll {
    display: block;
    overflow: hidden;
}
.dsc-ribbon--scroll .dsc-ribbon-track {
    display: flex;
    width: max-content;
    align-items: center;
}
.dsc-ribbon--scroll .dsc-ribbon-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}
/* Checkmark icon in scroll mode */
.dsc-ribbon-check {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
/* Dark scheme overrides */
.dsc-ribbon--dark.dsc-ribbon-wrap,
.dsc-ribbon--dark {
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* ═══════════════════════════════════════════════════════════════════
   DSC Course Sidebar  (v4.9)
   ═══════════════════════════════════════════════════════════════════ */
.dsc-csb {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 28px;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}

/* Batch banner */
.dsc-csb-banner {
    background: rgba(232,57,42,0.08);
    border-bottom: 1px solid rgba(232,57,42,0.15);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.dsc-csb-batch-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 9px;
    font-weight: 800;
    color: #FF5B4A;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}
.dsc-csb-batch-date {
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: #E8392A;
    letter-spacing: -0.5px;
    line-height: 1;
}

/* Countdown */
.dsc-csb-countdown {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}
.dsc-csb-cd-box {
    background: rgba(232,57,42,0.12);
    border: 1px solid rgba(232,57,42,0.20);
    border-radius: 8px;
    padding: 6px 10px;
    text-align: center;
    min-width: 46px;
}
.dsc-csb-cd-num {
    font-family: 'Unbounded', sans-serif;
    font-size: 16px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    display: block;
    margin-bottom: 2px;
}
.dsc-csb-cd-unit {
    font-size: 8px;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Detail rows */
.dsc-csb-details {}
.dsc-csb-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.2s;
    gap: 12px;
}
.dsc-csb-row--last { border-bottom: none; }
.dsc-csb-row:hover { background: rgba(255,255,255,0.03); }
.dsc-csb-key {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.40);
    flex-shrink: 0;
}
.dsc-csb-key i,
.dsc-csb-key svg {
    font-size: 13px;
    width: 13px; height: 13px;
    stroke: rgba(255,255,255,0.28);
    fill: none; stroke-width: 1.6;
    flex-shrink: 0;
}
.dsc-csb-val {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.1px;
    text-align: right;
}
.dsc-csb-val--accent { color: #E8392A; }

/* Buttons */
.dsc-csb-btns {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.dsc-csb-btn-enroll {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: #E8392A;
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 24px rgba(232,57,42,0.35);
}
.dsc-csb-btn-enroll svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; flex-shrink: 0; }
.dsc-csb-btn-enroll:hover { background: #c42d1f; transform: translateY(-1px); box-shadow: 0 12px 32px rgba(232,57,42,0.45); }

.dsc-csb-btn-schol {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.70);
    padding: 13px;
    border-radius: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.dsc-csb-btn-schol svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.8; flex-shrink: 0; }
.dsc-csb-btn-schol:hover { border-color: rgba(232,57,42,0.30); background: rgba(232,57,42,0.06); color: #fff; }

/* Note */
.dsc-csb-note {
    padding: 0 24px 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    text-align: center;
    line-height: 1.6;
}

/* Responsive — stack on small screens */
@media (max-width: 767px) {
    .dsc-csb-banner { flex-direction: column; align-items: flex-start; }
    .dsc-csb-countdown { align-self: stretch; justify-content: flex-start; }
}


/* ═══════════════════════════════════════════════════════════════════
   DSC Course Modules  (v4.9)
   ═══════════════════════════════════════════════════════════════════ */
.dsc-cmod-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.dsc-cmod {
    background: #F4F5F7;
    border: 1px solid #EAECF0;
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.dsc-cmod:hover { border-color: rgba(232,57,42,0.20); }
.dsc-cmod--active {
    background: #ffffff;
    border-color: rgba(232,57,42,0.25);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* Header row */
.dsc-cmod-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    user-select: none;
}

/* Number badge */
.dsc-cmod-num {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: #0D0D12;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Unbounded', sans-serif;
    font-size: 11px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.5px;
    transition: background 0.2s;
}
.dsc-cmod--active .dsc-cmod-num { background: #E8392A; }
.dsc-cmod--bonus .dsc-cmod-num  { background: rgba(232,57,42,0.12); color: #E8392A; }

/* Title */
.dsc-cmod-title {
    flex: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #0D0D12;
    letter-spacing: -0.1px;
    line-height: 1.3;
    transition: color 0.2s;
}
.dsc-cmod--active .dsc-cmod-title { color: #E8392A; }
.dsc-cmod--bonus .dsc-cmod-title  { color: #E8392A; }

/* Toggle button */
.dsc-cmod-toggle {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    background: rgba(0,0,0,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    transition: background 0.2s, transform 0.2s, color 0.2s;
}
.dsc-cmod--active .dsc-cmod-toggle {
    background: rgba(232,57,42,0.10);
    transform: rotate(45deg);
    color: #E8392A;
}

/* Body — hidden by default, shown when active */
.dsc-cmod-body {
    display: none;
    padding: 0 22px 20px 74px;
}
.dsc-cmod--active .dsc-cmod-body { display: block; }

/* Topics list */
.dsc-cmod-topics {
    display: flex;
    flex-direction: column;
}
.dsc-cmod-topic {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    padding: 7px 0;
    border-bottom: 1px solid #F1F5F9;
    line-height: 1.4;
}
.dsc-cmod-topic:last-child { border-bottom: none; }
.dsc-cmod-topic::before {
    content: '';
    width: 5px;
    height: 5px;
    flex-shrink: 0;
    background: #E8392A;
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 767px) {
    .dsc-cmod-body { padding-left: 22px; }
    .dsc-cmod-title { font-size: 14px; }
}


/* ═══════════════════════════════════════════════════════════════════
   DSC Skills Grid  (v4.9)
   ═══════════════════════════════════════════════════════════════════ */
.dsc-sg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.dsc-sg-pill {
    background: #ffffff;
    border: 1px solid #EAECF0;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    cursor: default;
}
.dsc-sg-pill:hover {
    border-color: rgba(232,57,42,0.30);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Check circle */
.dsc-sg-check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background: rgba(34,197,94,0.10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dsc-sg-check svg { stroke: #16a34a; }

/* Bare check (no circle) */
.dsc-sg-check--bare {
    background: transparent;
    width: auto;
    height: auto;
    border-radius: 0;
}
.dsc-sg-check--bare svg { stroke: #E8392A; }

/* Text */
.dsc-sg-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    line-height: 1.3;
    transition: color 0.2s;
}
.dsc-sg-pill:hover .dsc-sg-text { color: #0D0D12; }

/* Responsive */
@media (max-width: 1023px) {
    .dsc-sg-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 479px) {
    .dsc-sg-grid { grid-template-columns: 1fr 1fr; }
}

/* ── DSC Process Step — image icon support (v4.9.1) ──────────────── */
.dsc-pstep-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

/* ── DSC Feature Cell — image icon support (v4.10) ───────────────── */
.dsc-fc-icon img {
    display: block;
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* ── DSC Stat Card — Level Badge row (v4.10) ─────────────────────── */
/* Replaces the custom CSS ::before/::after hack completely */
.dsc-stat-level-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    width: 100%;
}
.dsc-stat-level-num {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    background: rgba(232,57,42,0.12);
    border: 1px solid rgba(232,57,42,0.22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Unbounded', sans-serif;
    font-size: 10px;
    font-weight: 900;
    color: #E8392A;
    line-height: 1;
    text-align: center;
}
.dsc-stat-level-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 9px;
    font-weight: 800;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1;
}

/* ── DSC Admission Step — image icon (v4.11) ─────────────────────── */
.dsc-astep-circle img {
    display: block;
    width: 20px;
    height: 20px;
    object-fit: contain;
}
/* Fix: ensure FA icons inside circle are visible */
.dsc-astep-circle i {
    font-size: 18px !important;
    color: #E8392A;
    line-height: 1;
    display: block;
}
.dsc-astep-circle svg {
    width: 18px !important;
    height: 18px !important;
    stroke: #E8392A;
    fill: none;
    stroke-width: 1.8;
    display: block;
}
.dsc-astep-circle--featured i   { color: #ffffff !important; }
.dsc-astep-circle--featured svg { stroke: #ffffff !important; }


/* ── DSC Video Review Card lightbox modal (v4.13 — appended to body) ── */
.dsc-vrc-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
}
.dsc-vrc-modal--open {
    display: flex;
}
.dsc-vrc-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    cursor: pointer;
}
.dsc-vrc-modal-box {
    position: relative;
    z-index: 1;
    width: 90vw;
    max-width: 900px;
    background: #0D0D12;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.dsc-vrc-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.12);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.2s;
}
.dsc-vrc-modal-close:hover { background: rgba(255,255,255,0.22); }
.dsc-vrc-modal-frame {
    position: relative;
    aspect-ratio: 16/9;
    width: 100%;
    background: #000;
}
.dsc-vrc-modal-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}


/* ════════════════════════════════════════════════════════════════════
   DSC Contact Method  (v4.12)
   ════════════════════════════════════════════════════════════════════ */
.dsc-cm {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: background .22s, border-color .22s, transform .22s, box-shadow .22s;
    width: 100%;
}
.dsc-cm:hover { background: rgba(232,57,42,0.07); border-color: rgba(232,57,42,0.20); }
.dsc-cm--hover-right:hover { transform: translateX(4px); }
.dsc-cm--hover-up:hover    { transform: translateY(-3px); }

/* Icon box */
.dsc-cm-icon {
    width: 38px; height: 38px; flex-shrink: 0;
    background: rgba(232,57,42,0.12);
    border: 1px solid rgba(232,57,42,0.18);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    transition: background .22s, border-color .22s;
}
.dsc-cm:hover .dsc-cm-icon { background: rgba(232,57,42,0.22); border-color: rgba(232,57,42,0.35); }
.dsc-cm-icon i   { font-size: 16px; color: #E8392A; line-height: 1; }
.dsc-cm-icon svg { width: 16px; height: 16px; stroke: #E8392A; fill: none; stroke-width: 1.8; }

/* Text */
.dsc-cm-body { flex: 1; min-width: 0; }
.dsc-cm-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 9px; font-weight: 800;
    color: #FF5B4A; text-transform: uppercase;
    letter-spacing: 1.5px; line-height: 1;
    margin-bottom: 3px; display: block;
}
.dsc-cm-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px; font-weight: 700;
    color: #ffffff; letter-spacing: -0.1px;
    margin-bottom: 2px; display: block;
}
.dsc-cm-sub {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11.5px; font-weight: 400;
    color: rgba(255,255,255,0.35); line-height: 1.5;
    display: block;
}

/* Arrow */
.dsc-cm-arrow {
    flex-shrink: 0; margin-left: auto;
    display: flex; align-items: center;
    transition: transform .22s;
}
.dsc-cm:hover .dsc-cm-arrow { transform: translateX(3px); }
.dsc-cm-arrow svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.20); fill: none; stroke-width: 2; }
.dsc-cm:hover .dsc-cm-arrow svg { stroke: #E8392A; }


/* ════════════════════════════════════════════════════════════════════
   DSC Support Tabs  (v4.12)
   ════════════════════════════════════════════════════════════════════ */
.dsc-stabs {}

/* Nav bar */
.dsc-stabs-nav {
    display: flex; gap: 10px; margin-bottom: 16px;
    flex-wrap: wrap;
}

/* Tab button */
.dsc-stabs-btn {
    flex: 1; min-width: 0;
    padding: 12px;
    border-radius: 14px;
    border: 1.5px solid #EAECF0;
    background: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer;
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    transition: background .2s, border-color .2s, color .2s, transform .18s;
    position: relative;
}
.dsc-stabs-btn:hover { transform: translateY(-2px); border-color: rgba(232,57,42,0.25); }
.dsc-stabs-btn.active { background: #0D0D12; border-color: #0D0D12; }

/* Button icon */
.dsc-stabs-btn-icon { line-height: 0; }
.dsc-stabs-btn-icon i   { font-size: 18px; color: #9CA3AF; }
.dsc-stabs-btn-icon svg { width: 18px; height: 18px; stroke: #9CA3AF; fill: none; stroke-width: 1.8; }
.dsc-stabs-btn.active .dsc-stabs-btn-icon i   { color: #E8392A; }
.dsc-stabs-btn.active .dsc-stabs-btn-icon svg { stroke: #E8392A; }

/* Button text */
.dsc-stabs-btn-label {
    font-size: 12px; font-weight: 700; color: #9CA3AF; line-height: 1.2;
}
.dsc-stabs-btn.active .dsc-stabs-btn-label { color: #ffffff; }
.dsc-stabs-btn-sub {
    font-size: 9px; font-weight: 600; color: rgba(0,0,0,0.35);
    text-transform: uppercase; letter-spacing: 1px; line-height: 1;
}
.dsc-stabs-btn.active .dsc-stabs-btn-sub { color: rgba(255,255,255,0.45); }

/* Panel */
.dsc-stabs-panel { display: none; }
.dsc-stabs-panel.active { display: block; }

/* Unified wrap */
.dsc-stabs-wrap {
    border: 1.5px solid #EAECF0;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

/* Panel header */
.dsc-stabs-panel-hdr {
    background: #0D0D12;
    padding: 22px 24px;
    position: relative; overflow: hidden;
}
.dsc-stabs-panel-hdr--dots::before {
    content: '';
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(232,57,42,.04) 1px,transparent 1px),
                      linear-gradient(90deg,rgba(232,57,42,.04) 1px,transparent 1px);
    background-size: 42px 42px; pointer-events: none;
}
.dsc-stabs-panel-hdr-inner {
    position: relative; z-index: 1;
    display: flex; gap: 14px; align-items: center;
}

/* Panel icon box */
.dsc-stabs-panel-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: rgba(232,57,42,0.12);
    border: 1px solid rgba(232,57,42,0.22);
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
}
.dsc-stabs-panel-icon i   { font-size: 18px; color: #E8392A; }
.dsc-stabs-panel-icon svg { width: 18px; height: 18px; stroke: #E8392A; fill: none; stroke-width: 1.8; }

/* Panel text */
.dsc-stabs-panel-eyebrow {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 9px; font-weight: 800;
    color: #FF5B4A; text-transform: uppercase;
    letter-spacing: 1.5px; margin-bottom: 2px; display: block;
}
.dsc-stabs-panel-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 16px; font-weight: 900;
    color: #ffffff; letter-spacing: -0.4px; line-height: 1.2;
    margin-bottom: 3px; display: block;
}
.dsc-stabs-panel-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11.5px; font-weight: 400;
    color: rgba(255,255,255,0.40); line-height: 1.65;
    display: block;
}

/* Feature grid (2-col by default) */
.dsc-stabs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #ffffff;
}
.dsc-stabs-grid--1col { grid-template-columns: 1fr; }

/* Feature item */
.dsc-stabs-feat {
    padding: 20px;
    background: #ffffff;
    border-top: 1.5px solid #EAECF0;
    border-left: none;
    transition: background .2s;
}
.dsc-stabs-feat:nth-child(even) { border-left: 1.5px solid #EAECF0; }
.dsc-stabs-feat:hover { background: #FAFAFA; }

.dsc-stabs-feat-top {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 8px;
}

/* Feature icon box */
.dsc-stabs-feat-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    background: rgba(232,57,42,0.07);
    border: 1px solid rgba(232,57,42,0.14);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, border-color .2s;
}
.dsc-stabs-feat:hover .dsc-stabs-feat-icon { background: rgba(232,57,42,0.13); border-color: rgba(232,57,42,0.25); }
.dsc-stabs-feat-icon i   { font-size: 15px; color: #E8392A; }
.dsc-stabs-feat-icon svg { width: 15px; height: 15px; stroke: #E8392A; fill: none; stroke-width: 1.8; }

.dsc-stabs-feat-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px; font-weight: 800;
    color: #0D0D12; letter-spacing: -0.15px; line-height: 1.25;
}
.dsc-stabs-feat-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px; font-weight: 400;
    color: #9CA3AF; line-height: 1.7;
}
.dsc-stabs-feat-tag {
    display: inline-flex; align-items: center; gap: 4px;
    background: #F4F5F7; border: 1px solid #EAECF0;
    border-radius: 7px; padding: 4px 11px;
    margin-top: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10px; font-weight: 700; color: #E8392A;
    text-decoration: none; cursor: pointer;
    transition: background .2s, border-color .2s;
}
.dsc-stabs-feat-tag:hover { background: rgba(232,57,42,0.07); border-color: rgba(232,57,42,0.20); }

/* Responsive */
@media (max-width: 767px) {
    .dsc-stabs-nav { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
    .dsc-stabs-btn { min-width: 110px; }
    .dsc-stabs-grid { grid-template-columns: 1fr; }
    .dsc-stabs-feat:nth-child(even) { border-left: none; }
}


/* ════════════════════════════════════════════════════════════════════
   DSC Course Modules — FAQ mode additions  (v4.12)
   ════════════════════════════════════════════════════════════════════ */
.dsc-cmod-list--faq .dsc-cmod-body { padding-left: 22px; }

.dsc-cmod-answer-wrap {
    padding: 0 22px 18px;
}
.dsc-cmod-answer-wrap[style*="border-top"] { padding-top: 14px; }

.dsc-cmod-answer {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px; font-weight: 400;
    color: #374151; line-height: 1.8;
    margin: 0;
}

/* FAQ toggle rotates to × */
.dsc-cmod-list--faq .dsc-cmod--active .dsc-cmod-toggle { transform: rotate(45deg); }


/* ── DSC Video Review Card — Shorts / Vertical mode (v4.14) ─────── */

/* Vertical card wrapper — narrower by nature, but let grid handle width */
.dsc-vrc--shorts {
    border-radius: 20px;
}

/* Phone frame around the vertical thumbnail */
.dsc-vrc-thumb--framed {
    border: 6px solid #0D0D12;
    border-radius: 20px;
    box-shadow:
        0 0 0 2px rgba(255,255,255,0.12),
        inset 0 0 0 1px rgba(255,255,255,0.06);
    overflow: hidden;
}

/* Reviewer name bar at bottom of Shorts video */
.dsc-vrc-name-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(0,0,0,0.55);
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px; font-weight: 700;
    text-align: center;
    padding: 10px 14px;
    z-index: 3;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* In Shorts mode the info area gets tighter padding */
.dsc-vrc--shorts .dsc-vrc-info {
    padding: 12px 14px;
    gap: 7px;
}

/* Shorts badge — pill with dot icon */
.dsc-vrc--shorts .dsc-vrc-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 100px;
    padding: 4px 10px;
}
.dsc-vrc--shorts .dsc-vrc-badge::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.8;
    flex-shrink: 0;
}

/* Shorts play button — slightly smaller default */
.dsc-vrc--shorts .dsc-vrc-play {
    width: 56px; height: 56px;
    box-shadow: 0 0 0 14px rgba(232,57,42,0.22);
}

/* Responsive — on mobile Shorts cards go full width */
@media (max-width: 767px) {
    .dsc-vrc--shorts {
        max-width: 280px;
        margin: 0 auto;
    }
}


/* ════════════════════════════════════════════════════════════════════
   DSC Platform Card  (v4.15)
   Full-bleed coloured card: bubble · icon · label · count · desc · btn
   ════════════════════════════════════════════════════════════════════ */
.dsc-pc {
    position: relative;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 22px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
    height: 100%;
}

/* Hover overlay (darkening tint) */
.dsc-pc::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.08);
    opacity: 0;
    transition: opacity .25s;
    pointer-events: none;
    border-radius: inherit;
    z-index: 0;
}
.dsc-pc:hover::after { opacity: 1; }

/* Decorative bubble */
.dsc-pc-bubble {
    position: absolute;
    top: -40px; right: -40px;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    pointer-events: none;
    z-index: 0;
}

/* All inner content above the overlay */
.dsc-pc-icon,
.dsc-pc-label,
.dsc-pc-count,
.dsc-pc-desc,
.dsc-pc-btn { position: relative; z-index: 1; }

/* Icon box */
.dsc-pc-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
    transition: background .22s, border-color .22s;
}
.dsc-pc:hover .dsc-pc-icon {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.28);
}
/* Icon library — fill white, no stroke */
.dsc-pc-icon i   { font-size: 22px; color: #fff; line-height: 1; }
.dsc-pc-icon svg { width: 22px; height: 22px; fill: #fff; stroke: none; }
/* Icon image */
.dsc-pc-icon img { display: block; object-fit: contain; }
/* Letter / text */
.dsc-pc-icon-letter {
    font-family: 'Unbounded', sans-serif;
    font-size: 22px; font-weight: 900; color: #fff; line-height: 1;
}

/* Platform label */
.dsc-pc-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px; font-weight: 700;
    color: rgba(255,255,255,0.65);
    line-height: 1.3;
    margin-bottom: 6px;
    display: block;
    transition: color .22s;
}

/* Count / number — primary large stat */
.dsc-pc-count {
    font-family: 'Unbounded', sans-serif;
    font-size: 32px; font-weight: 900;
    color: #fff; letter-spacing: -1.5px; line-height: 1;
    margin-bottom: 10px;
    display: block;
    transition: color .22s;
}

/* Description */
.dsc-pc-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12.5px; font-weight: 400;
    color: rgba(255,255,255,0.55); line-height: 1.65;
    margin-bottom: 20px;
    flex: 1; /* pushes button to bottom */
    display: block;
    transition: color .22s;
}

/* CTA button */
.dsc-pc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff; border-radius: 10px;
    padding: 11px 18px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px; font-weight: 700;
    text-decoration: none; cursor: pointer;
    transition: background .22s, border-color .22s, color .22s, box-shadow .22s;
    width: 100%; /* full-width inside card */
}
.dsc-pc-btn:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.35);
}
.dsc-pc-btn svg {
    width: 13px; height: 13px;
    stroke: currentColor; fill: none; stroke-width: 2.5;
    flex-shrink: 0;
}

/* Responsive — on very small screens cap count font size */
@media (max-width: 480px) {
    .dsc-pc-count { font-size: 26px; }
}
