/* =============================================================
   UNCODER — Combined & Responsive Stylesheet
   Sources: style.css + style1.css + uncoder_llms/css/style.css
   ============================================================= */

/* ── 1. RESET & CUSTOM PROPERTIES ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Main site palette */
    --bg: #0b1818;
    --bg2: #111118;
    --bg3: #16161e;
    --card: #1a1a24;
    --border: rgba(255, 255, 255, 0.08);
    --border2: rgba(255, 255, 255, 0.14);
    --text: #ffffff;
    --text2: #fff;
    --text3: #fff;
    --accent: rgb(33, 166, 104);
    --accent2: #5ce27a;
    --green: #00d97e;
    --orange: #ff7a3d;
    --yellow: #ffd166;

    /* Data-science / LMS palette */

    --bg: #0b1818;
    --bg2: #111118;
    --bg3: #16161e;
    --card: #1a1a24;
    --border: rgba(255, 255, 255, 0.08);
    --border2: rgba(255, 255, 255, 0.14);
    --text: #ffffff;
    --text2: #fff;
    --text3: #fff;
    --accent: rgb(33, 166, 104);
    --accent2: #5ce27a;
    --green: #00d97e;
    --orange: #ff7a3d;
    --yellow: #ffd166;
    --ds-bg: var(--bg);
    --ds-bg-soft: var(--bg2);
    --ds-card: var(--card);
    --ds-line: var(--border);
    --ds-blue: var(--accent);
    --ds-cyan: var(--accent2);
    --ds-green: var(--green);
    --ds-ink: var(--text);
    --ds-muted: rgba(255, 255, 255, 0.72);
    --ds-light: var(--bg3);

}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ── 2. SCROLLBAR ── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border2);
    border-radius: 3px;
}

/* ── 3. TOPBAR ── */
.topbar {
    background: var(--accent);
    text-align: center;
    padding: 9px 20px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.2px;
}

.topbar a {
    color: #fff;
    text-decoration: underline;
}

/* ── 4. NAVIGATION ── */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 48px;
    height: 68px;
    gap: 32px;
}

.site-nav {
    width: 100%;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    position: absolute;
    left: 48px;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-logo img {
    display: block;
    width: auto;
    height: 125px;
    object-fit: contain;
}

.nav-logo span {
    color: var(--accent2);
}

.nav-links {
    display: flex;
    gap: 0;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links>li {
    position: relative;
}

.nav-links>li>a {
    display: block;
    padding: 22px 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text2);
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-links>li>a:hover {
    color: #fff;
}

.nav-links .has-drop:hover .dropdown,
.nav-links .has-drop.open .dropdown {
    display: block;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 180px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.dropdown a {
    display: block;
    padding: 10px 18px;
    font-size: 13px;
    color: var(--text2);
    text-decoration: none;
    transition: all 0.15s;
}

.dropdown a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

/* Mobile hamburger toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-right {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

/* ── 5. BUTTONS ── */
.btn-ghost {
    background: transparent;
    border: 1px solid var(--border2);
    color: var(--text2);
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.btn-primary {
    background: rgb(33, 166, 104);
    border: none;
    color: #fff;
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(0, 114, 255, 0.4);
    transform: translateY(-2px);
}

.pill {
    background: #5ce27a21;
    border: 1px solid rgba(108, 99, 255, 0.3);
    color: var(--accent2);
    font-size: 12px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.pill:hover {
    background: rgba(108, 99, 255, 0.25);
    border-color: var(--accent);
}

.btn-hero-primary {
    background: rgb(33, 166, 104);
    color: #fff;
    border: none;
    padding: 13px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-hero-primary:hover {
    background: #6ed19042;
    box-shadow: 0 8px 30px rgba(100, 210, 80, 0.3);
}

.btn-hero-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid var(--border2);
    padding: 13px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-hero-secondary:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

/* ── 6. HERO COMPONENTS ── */
.home-hero {
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 48px 60px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
    gap: 64px;
    align-items: center;
}

.home-hero-content {
    min-width: 0;
}

.home-hero-kicker {
    color: var(--text3);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.home-hero h1 {
    color: #fff;
    font-size: clamp(38px, 4.2vw, 58px);
    font-weight: 900;
    line-height: 1.07;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.home-hero h1 em {
    color: var(--accent2);
    font-style: italic;
}

.home-hero-copy {
    max-width: 520px;
    color: var(--text2);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 28px;
}

.home-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
    overflow: hidden;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.home-hero-proof {
    display: flex;
    align-items: center;
    gap: 14px;
}

.avatars {
    display: flex;
}

.av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    margin-left: -10px;
    flex-shrink: 0;
}

.av:first-child {
    margin-left: 0;
}

.proof-text {
    font-size: 13px;
    color: var(--text3);
}

.proof-text strong {
    color: var(--text2);
}

.hero-card {
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgb(33 166 104 / 23%) 0%, transparent 70%);
    pointer-events: none;
}

.card-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text3);
    margin-bottom: 16px;
}

.card-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.card-sub {
    font-size: 13px;
    color: var(--text3);
    margin-bottom: 28px;
    line-height: 1.6;
}

.score-ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(var(--accent) 0% 73%, rgba(255, 255, 255, 0.08) 73% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
}

.score-ring::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: var(--card);
}

.score-num {
    position: relative;
    z-index: 1;
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
}

.score-num span {
    font-size: 13px;
    color: var(--text3);
}

.mini-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.mini-stat {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 14px;
    text-align: center;
}

.mini-stat-num {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

.mini-stat-num span {
    color: var(--accent2);
}

.mini-stat-label {
    font-size: 11px;
    color: var(--text3);
    margin-top: 3px;
}

.card-cta {
    display: block;
    width: 100%;
    margin-top: 20px;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
}

.card-cta:hover {
    background: var(--accent2);
    color: #000;
}

/* ── 7. MARQUEE ── */
.marquee-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
    padding: 18px 0;
    overflow: hidden;
}

.marquee-label {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text3);
    margin-bottom: 14px;
}

.marquee-wrap {
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 25s linear infinite;
    width: max-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 28px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text3);
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.marquee-item .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    display: inline-block;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ── 8. STATS ── */
.stat-box {
    text-align: center;
    padding: 32px 20px;
    border-right: 1px solid var(--border);
}

.stat-box:last-child {
    border-right: none;
}

.stat-num {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -2px;
    color: #fff;
    line-height: 1;
}

.stat-num span {
    color: var(--accent2);
}

.stat-label {
    font-size: 13px;
    color: var(--text3);
    margin-top: 8px;
}

/* ── 9. WHY SECTION ── */
.why-section {
    background: var(--bg2);
    padding: 80px 0;
}

.why-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.section-eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent2);
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(32px, 3.2vw, 46px);
    font-weight: 900;
    letter-spacing: -1.5px;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 16px;
    color: var(--text2);
    max-width: 560px;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 56px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    border-color: var(--border2);
    transform: translateY(-3px);
}

.why-card.featured {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.15), rgba(108, 99, 255, 0.05));
    border-color: rgba(108, 99, 255, 0.3);
}

.why-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(ellipse at top right, rgba(108, 99, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.why-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 22px;
}

.why-card-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.why-card-body {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.75;
    font-weight: 400;
}

.why-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 12px;
    border-radius: 50px;
}

/* ── 10. PROGRAMS ── */
.programs-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 48px;
}

.prog-tabs-wrap {
    margin-top: 32px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.prog-tabs {
    display: flex;
    gap: 4px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 5px;
    width: fit-content;
    min-width: 100%;
}

.prog-tab {
    flex: 1;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--text3);
    transition: all 0.2s;
}

.prog-tab.active {
    background: var(--accent);
    color: #fff;
    font-weight: 600;
}

.prog-tab:hover:not(.active) {
    color: var(--text2);
}

.prog-panel {
    display: none;
}

.prog-panel.active {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    margin-top: 28px;
    align-items: start;
}

.prog-detail {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px;
}

.prog-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.prog-name {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.8px;
    margin-bottom: 6px;
    line-height: 1.2;
}

.prog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.prog-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
}

.star-gold {
    color: #ffd166;
}

.prog-duration {
    font-size: 13px;
    color: var(--text3);
}

.prog-duration strong {
    color: var(--text2);
}

.prog-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 24px 0;
}

.prog-build-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text3);
    margin-bottom: 16px;
}

.prog-build-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.prog-num {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(108, 99, 255, 0.15);
    border: 1px solid rgba(108, 99, 255, 0.25);
    color: var(--accent2);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.prog-build-text {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.65;
}

.prog-ctas {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.prog-cta-primary {
    flex: 1;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.prog-cta-primary:hover {
    background: var(--accent2);
    color: #000;
}

.prog-cta-outline {
    flex: 1;
    background: transparent;
    color: var(--text2);
    border: 1px solid var(--border2);
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.prog-cta-outline:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.prog-role-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
}

.prog-role-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text3);
    margin-bottom: 16px;
}

.role-name {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.role-desc {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.7;
}

.role-badge {
    display: inline-block;
    margin-top: 16px;
    background: rgba(0, 217, 126, 0.1);
    border: 1px solid rgba(0, 217, 126, 0.2);
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ── 11. STORIES ── */
.stories-section {
    background: var(--bg2);
    padding: 80px 0;
}

.stories-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.story-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.25s;
    cursor: pointer;
}

.story-card:hover {
    border-color: var(--border2);
    transform: translateY(-3px);
}

.story-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.story-av {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.hike-badge {
    background: rgba(0, 217, 126, 0.1);
    border: 1px solid rgba(0, 217, 126, 0.25);
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
}

.story-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.story-company {
    font-size: 13px;
    color: var(--text3);
}

.story-journey {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 12px;
    margin: 16px 0;
}

.journey-before {
    font-size: 12px;
    color: var(--text3);
}

.journey-before strong {
    color: var(--text2);
    display: block;
    font-size: 13px;
}

.journey-arrow {
    color: var(--accent2);
    font-size: 16px;
    flex-shrink: 0;
}

.journey-after {
    font-size: 12px;
    color: var(--text3);
}

.journey-after strong {
    color: var(--green);
    display: block;
    font-size: 13px;
}

.story-quote {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.7;
    font-style: italic;
    font-weight: 300;
}

.story-offers {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent2);
    margin-top: 16px;
}

/* ── 12. INSTRUCTORS ── */
.instructors-section {
    padding: 80px 0;
    overflow: hidden;
}

.instructors-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px 40px;
}

.instructor-rows {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 40px;
}

.inst-row {
    overflow: hidden;
}

.inst-track {
    display: flex;
    gap: 14px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.inst-row:nth-child(2) .inst-track {
    animation-direction: reverse;
    animation-duration: 35s;
}

.inst-track:hover {
    animation-play-state: paused;
}

.inst-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    flex-shrink: 0;
    min-width: 220px;
    transition: border-color 0.2s;
}

.inst-card:hover {
    border-color: var(--border2);
}

.inst-av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.inst-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.inst-role {
    font-size: 12px;
    color: var(--text3);
}

/* ── 13. AI RELEVANCE / BANNER ── */
.ai-relevance-section {
    max-width: 1280px;
    margin: 80px auto;
    padding: 0 48px;
}

.ai-banner {
    position: relative;
    height: 270px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 40px;
    background-image: url("https://www.scaler.com/storyblok-assets/f/290352327034910/1160x270/88d4edca29/relevance-bg-desktop.png");
    background-size: cover;
    background-position: center;
}

.ai-banner::after {
    content: "";
    position: absolute;
    inset: 0;
}

.ai-banner-content {
    position: relative;
    z-index: 2;
    max-width: 520px;
    color: #000;
}

.ai-eyebrow {
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ai-banner h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 12px;
}

.ai-banner p {
    font-size: 15px;
    line-height: 1.6;
}

.ai-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.ai-card {
    background-color: color-mix(in oklab, rgb(42 150 132 / 53%) 50%, transparent);
    border-radius: 12px;
    padding: 24px;
    color: #fff;
    border: 1px solid #e5e7eb;
}

.ai-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ai-card p {
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
}

/* ── 14. AI VOICES / SLIDER ── */
.ai-voices-section {
    background: var(--bg2);
    padding: 80px 0;
}

.ai-voices-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.slider-outer {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.slider-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}

.voice-card-h {
    min-width: 100%;
    display: flex;
    align-items: stretch;
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
}

.voice-img-h {
    width: 240px;
    min-height: 300px;
    flex-shrink: 0;
    background: #1a1a2e;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.voice-img-h img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.voice-img-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    font-weight: 800;
    color: var(--text3);
}

.voice-body-h {
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    gap: 12px;
}

.voice-role-h {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent2);
    font-weight: 700;
}

.voice-name-h {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.voice-quote-h {
    font-size: 15px;
    color: var(--text2);
    line-height: 1.8;
    font-style: italic;
    border-left: 2px solid var(--border2);
    padding-left: 1.2rem;
}

.carousel-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 1.5rem;
}

.ctrl-btn {
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    transition: all 0.2s;
    line-height: 1;
}

.ctrl-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.carousel-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.cdot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border2);
    transition: all 0.25s;
    cursor: pointer;
}

.cdot.active {
    width: 22px;
    border-radius: 3px;
    background: var(--accent2);
}

.carousel-counter {
    font-size: 13px;
    color: var(--text3);
    margin-left: 4px;
}

/* ── 15. FAQ ── */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 48px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    cursor: pointer;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.faq-icon {
    font-size: 20px;
    color: var(--text3);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.75;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding-top: 14px;
}

/* ── 16. FINAL CTA ── */
.final-cta {
    background: #177548;
    border-top: 1px solid rgba(108, 99, 255, 0.2);
    text-align: center;
    padding: 80px 48px;
}

.final-cta h2 {
    font-size: clamp(28px, 3vw, 46px);
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 16px;
    color: var(--text2);
    margin-bottom: 32px;
    font-weight: 400;
}

.final-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── 17. FOOTER ── */
footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 60px 48px 32px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(150px, 1fr));
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo img {
    display: block;
    width: auto;
    height: clamp(82px, 9vw, 134px);
    max-width: 100%;
    object-fit: contain;
}

.footer-brand p {
    max-width: 280px;
    color: var(--text3);
    font-size: 13px;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text3);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.footer-column h3 {
    color: var(--text3);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
}

.footer-column a {
    color: var(--text3);
    font-size: 13px;
    text-decoration: none;
}

.footer-column a:hover,
.footer-socials a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: var(--text3);
    font-size: 12px;
}

/* =============================================================
   18. DATA SCIENCE / LMS STYLES  (uncoder_llms pages)
   ============================================================= */

.dsml-page {
    overflow: hidden;
}

.dsml-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.dsml-hero {
    position: relative;
    background: #012726;
    color: #ffffff;
    padding: 86px 0 34px;
}

.dsml-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 74px 74px;
    opacity: 0.55;
}

.dsml-hero .dsml-shell {
    position: relative;
    z-index: 1;
}

.dsml-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: 42px;
    align-items: center;
}

.dsml-kicker,
.dsml-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: #d9f4ff;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.dsml-kicker i,
.dsml-eyebrow i {
    color: var(--ds-cyan);
}

.dsml-hero h1 {
    max-width: 760px;
    margin: 22px 0 18px;
    font-family: "Poppins", sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.02;
    font-weight: 700;
}

.dsml-hero h1 span {
    color: var(--ds-cyan);
}

.dsml-hero-copy {
    max-width: 690px;
    color: #c8d7ef;
    font-size: 18px;
    line-height: 1.75;
    margin: 0 0 26px;
}

.dsml-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-bottom: 28px;
}

.dsml-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    border-radius: 8px;
    padding: 13px 20px;
    border: 1px solid transparent;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.dsml-btn:hover {
    transform: translateY(-2px);
}

.dsml-btn-primary {
    background: #ffffff;
    color: #0a1e44;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.26);
}

.dsml-btn-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
}

.dsml-meta-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 690px;
}

.dsml-meta {
    padding: 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.dsml-meta strong {
    display: block;
    font-size: 24px;
    line-height: 1.1;
}

.dsml-meta span {
    display: block;
    margin-top: 6px;
    color: #b8c7df;
    font-size: 13px;
    line-height: 1.4;
}

.dsml-visual {
    position: relative;
}

.dsml-visual-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

.dsml-visual-card img {
    width: 100%;
    display: block;
    min-height: 420px;
    object-fit: cover;
}

.dsml-dashboard {
    position: absolute;
    left: -28px;
    bottom: 28px;
    width: min(350px, 78%);
    padding: 18px;
    border-radius: 14px;
    background: rgba(3, 12, 30, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
}

.dsml-dashboard-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #c8d7ef;
    font-size: 12px;
    margin-bottom: 12px;
}

.dsml-bars {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    align-items: end;
    gap: 8px;
    height: 102px;
}

.dsml-bars span {
    display: block;
    border-radius: 7px 7px 2px 2px;
    background: linear-gradient(180deg, var(--ds-cyan), var(--ds-blue));
}

.dsml-program-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e5edf7;
}

.dsml-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 66px;
}

.dsml-nav-links {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
}

.dsml-nav-links a {
    color: #20304c;
    text-decoration: none;
    white-space: nowrap;
    padding: 10px 12px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 800;
}

.dsml-nav-links a:hover {
    background: #eef6ff;
    color: #14663f;
}

.dsml-section {
    padding: 82px 0;
}

.dsml-section-dark {
    background: var(--ds-bg);
    color: #ffffff;
}

.dsml-section-soft {
    background: #f5f8fd;
}

.dsml-section-head {
    max-width: 760px;
    margin-bottom: 34px;
}

.dsml-section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.dsml-label {
    display: block;
    margin-bottom: 10px;
    color: #14663f;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.dsml-section-dark .dsml-label {
    color: var(--ds-cyan);
}

.dsml-section h2 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    margin: 0;
    font-weight: 700;
}

.dsml-section-head p {
    margin: 14px 0 0;
    color: var(--ds-muted);
    font-size: 17px;
    line-height: 1.75;
}

.dsml-section-dark .dsml-section-head p {
    color: #bdcbe1;
}

.dsml-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.dsml-card {
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #e3ebf6;
    padding: 24px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
}

.dsml-section-dark .dsml-card {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.dsml-card-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    margin-bottom: 18px;
    color: #14663f;
    background: #eaf5ff;
    font-size: 20px;
}

.dsml-section-dark .dsml-card-icon {
    color: #ffffff;
    background: rgba(69, 212, 255, 0.18);
}

.dsml-card h3 {
    margin: 0 0 9px;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
}

.dsml-card p,
.dsml-card li {
    color: var(--ds-muted);
    font-size: 15px;
    line-height: 1.65;
}

.dsml-section-dark .dsml-card p,
.dsml-section-dark .dsml-card li {
    color: #c6d2e4;
}

.dsml-role-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
    align-items: stretch;
}

.dsml-role-list {
    display: grid;
    gap: 12px;
}

.dsml-role-tab {
    width: 100%;
    border: 1px solid #dce7f5;
    background: #ffffff;
    border-radius: 8px;
    padding: 18px;
    text-align: left;
    color: #22314c;
    font-weight: 800;
}

.dsml-role-tab span {
    display: block;
    margin-bottom: 5px;
    color: #14663f;
    font-size: 13px;
}

.dsml-role-tab.active {
    color: #ffffff;
    background-color: #2a4a35;
    border-color: transparent;
}

.dsml-role-tab.active span {
    color: #bdeeff;
}

.dsml-role-detail {
    border-radius: 8px;
    padding: 30px;
    color: #ffffff;
    background: linear-gradient(rgba(6, 16, 38, 0.55), rgba(6, 16, 38, 0.94)), url("https://www.scaler.com/storyblok-assets/f/290352327034910/92878x92878/e17a18f080/pexels-ketut-subiyanto-4584055.webp") center/cover;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.dsml-role-detail h3 {
    font-size: 30px;
    line-height: 1.2;
    margin: 0 0 13px;
    font-weight: 800;
}

.dsml-role-detail ul,
.dsml-module ul,
.dsml-faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dsml-role-detail li {
    display: flex;
    gap: 10px;
    color: #dce7f5;
    margin-top: 12px;
    line-height: 1.55;
}

.dsml-role-detail li i {
    color: var(--ds-green);
    margin-top: 4px;
}

.dsml-ai-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 32px;
    align-items: center;
}

.dsml-ai-panel {
    border-radius: 8px;
    padding: 28px;
    background: #ffffff;
    color: var(--ds-ink);
}

.dsml-workflow {
    display: grid;
    gap: 14px;
}

.dsml-workflow-step {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
}

.dsml-step-number {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: rgba(69, 212, 255, 0.16);
    color: var(--ds-cyan);
    font-weight: 900;
}

.dsml-workflow-step h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 800;
}

.dsml-workflow-step p {
    margin: 0;
    color: #c6d2e4;
    line-height: 1.6;
}

.dsml-module-wrap {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
    align-items: start;
}

.dsml-module-tabs {
    display: grid;
    gap: 10px;
    position: sticky;
    top: 86px;
}

.dsml-module-tab {
    border: 1px solid #dfe8f4;
    border-radius: 8px;
    background: #ffffff;
    padding: 16px;
    color: #22314c;
    text-align: left;
    font-weight: 800;
}

.dsml-module-tab span {
    display: block;
    margin-bottom: 4px;
    color: #14663f;
    font-size: 12px;
    text-transform: uppercase;
}

.dsml-module-tab.active {
    color: #ffffff;
    background: #14663f;
    border-color: #0a1e44;
}

.dsml-module-tab.active span {
    color: var(--ds-cyan);
}

.dsml-module {
    display: none;
    border-radius: 8px;
    border: 1px solid #dfe8f4;
    background: #ffffff;
    padding: 30px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.dsml-module.active {
    display: block;
}

.dsml-module h3 {
    font-size: 28px;
    margin: 0 0 10px;
    font-weight: 800;
}

.dsml-module-summary {
    color: var(--ds-muted);
    line-height: 1.7;
    margin-bottom: 22px;
}

.dsml-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.dsml-pill {
    border-radius: 999px;
    padding: 8px 12px;
    color: #2a4a35;
    background: #edf7ff;
    font-size: 13px;
    font-weight: 800;
}

.dsml-learn-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.dsml-module li {
    display: flex;
    gap: 10px;
    border: 1px solid #e7eef7;
    border-radius: 8px;
    padding: 13px;
}

.dsml-module li i {
    color: #14663f;
    margin-top: 4px;
}

.dsml-project-grid,
.dsml-mentor-grid,
.dsml-outcome-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.dsml-project {
    overflow: hidden;
    padding: 0;
}

.dsml-project-media {
    min-height: 170px;
    background: linear-gradient(135deg, rgba(29, 140, 255, 0.82), rgba(69, 212, 255, 0.24)), #0a1e44;
}

.dsml-project-media img {
    width: 100%;
    height: 210px;
    display: block;
    object-fit: cover;
}

.dsml-project-body {
    padding: 22px;
}

.dsml-project-body small {
    display: block;
    color: #14663f;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.dsml-tool-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.dsml-tool-row span {
    border-radius: 6px;
    background: #f0f6ff;
    color: #275071;
    padding: 6px 8px;
    font-size: 12px;
    font-weight: 800;
}

.dsml-mentor {
    overflow: hidden;
    padding: 0;
}

.dsml-mentor img {
    width: 100%;
    min-height: 230px;
    display: block;
    object-fit: cover;
}

.dsml-mentor div {
    padding: 20px;
}

.dsml-mentor small {
    color: #14663f;
    font-weight: 800;
}

.dsml-certificate {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 36px;
    align-items: center;
}

.dsml-certificate-frame {
    border-radius: 10px;
    background: #ffffff;
    padding: 14px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.15);
    transform: rotate(-1.5deg);
}

.dsml-certificate-frame img {
    width: 100%;
    display: block;
    border-radius: 8px;
}

.dsml-tools-strip {
    grid-column: 1/-1;
    margin-top: 34px;
    padding: 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.dsml-tools-strip span {
    display: block;
    margin-bottom: 10px;
    color: #c8d7ef;
    font-size: 13px;
    font-weight: 800;
}

.dsml-tools-strip img {
    width: 100%;
    max-height: 54px;
    object-fit: contain;
    display: block;
}

.dsml-module-visual {
    margin-bottom: 22px;
    overflow: hidden;
    border-radius: 8px;
    background: #0a1e44;
}

.dsml-module-visual img {
    width: 100%;
    display: block;
    max-height: 280px;
    object-fit: cover;
}

.dsml-outcome {
    border-left: 4px solid #14663f;
}

.dsml-outcome strong {
    display: block;
    color: #14663f;
    font-size: 34px;
    line-height: 1;
    margin-bottom: 10px;
}

.dsml-skills-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.dsml-skill-card {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 76px;
    border-radius: 8px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #dfe8f4;
    color: #13223a;
    font-weight: 900;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
}

.dsml-skill-card i {
    display: grid;
    place-items: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    color: #14663f;
    background: #edf7ff;
}

.dsml-role-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 30px 0 36px;
}

.dsml-role-cloud span {
    border-radius: 999px;
    padding: 11px 15px;
    background: #ffffff;
    color: #183153;
    border: 1px solid #dfe8f4;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.dsml-callback {
    background: radial-gradient(circle at 20% 10%, rgba(69, 212, 255, 0.20), transparent 24%), linear-gradient(135deg, #061026, #0a1e44);
    color: #ffffff;
    border-radius: 14px;
    padding: 34px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: center;
}

.dsml-callback h2 {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 12px;
}

.dsml-callback p {
    color: #c8d7ef;
    line-height: 1.7;
    margin: 0;
}

.dsml-form {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.dsml-form input,
.dsml-form select {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.94);
    color: #12213a;
    padding: 10px 12px;
    font-size: 14px;
}

.dsml-form button {
    border: 0;
    min-height: 46px;
    border-radius: 7px;
    background: var(--ds-cyan);
    color: #061026;
    font-weight: 900;
}

.dsml-faq-list {
    display: grid;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.dsml-faq-list details {
    border: 1px solid #dfe8f4;
    border-radius: 8px;
    background: #ffffff;
    padding: 18px 20px;
}

.dsml-faq-list summary {
    cursor: pointer;
    font-weight: 900;
    color: #17223a;
}

.dsml-faq-list p {
    margin: 12px 0 0;
    color: var(--ds-muted);
    line-height: 1.7;
}

/* =============================================================
   19. LMS APP SHELL  (uncoder_llms inner pages)
   ============================================================= */
.lms-shell,
.app {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr) 250px;
    gap: 18px;
    min-height: 100vh;
    padding: 18px;
}

.sidebar,
.main-wrap,
.profile {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.sidebar {
    height: calc(100vh - 36px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #012726;
    color: #d7eee1;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 22px 20px;
    color: #fff;
    border-bottom: 1px solid rgba(92, 226, 122, 0.18);
}

.brand-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #5ce27a;
    color: #012726;
    font-weight: 800;
}

.brand-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.8px;
    line-height: 1.25;
}

.nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 12px;
}

.nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 42px;
    padding: 0 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #d7eee1;
}

.nav a:hover,
.nav a.active {
    background: #5ce27a;
    color: #012726;
}

.nav-icon {
    width: 24px;
    text-align: center;
    font-size: 14px;
}

.more {
    margin-top: auto;
    height: 44px;
    display: grid;
    place-items: center;
    background: #031f1e;
    color: #5ce27a;
    font-size: 14px;
    font-weight: 600;
}

.main-wrap {
    height: calc(100vh - 36px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
}

.lms-topbar {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 22px;
    background: #fbfbfc;
    border-bottom: 1px solid #eef0f3;
}

.search {
    width: 360px;
    max-width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    border: 1px solid #d7dce3;
    border-radius: 9px;
    background: #fff;
    color: #6b7280;
    font-size: 14px;
}

.top-actions {
    display: flex;
    gap: 8px;
}

.top-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #edf0f4;
    border-radius: 9px;
    background: #fff;
    color: #012726;
    cursor: pointer;
}

.main {
    flex: 1;
    overflow-y: auto;
    padding: 22px;
}

.profile {
    height: calc(100vh - 36px);
    position: relative;
    overflow: hidden;
    background: #fff;
}

.profile-head {
    height: 120px;
    display: grid;
    place-items: center;
    text-align: center;
    border-bottom: 1px solid #eef0f3;
}

.profile-head h2 {
    margin-bottom: 10px;
    color: #012726;
    font-size: 22px;
    font-weight: 700;
}

.batch {
    width: 205px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid #dfe4eb;
    border-radius: 9px;
    color: #666;
    font-size: 14px;
}

.profile-body {
    display: grid;
    justify-items: center;
    gap: 34px;
    padding: 28px 16px;
}

.coin-box {
    width: 180px;
    min-height: 88px;
    display: grid;
    place-items: center;
    border: 2px solid #5ce27a;
    border-radius: 10px;
    box-shadow: 7px 7px 0 #012726;
    color: #012726;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.stats-box {
    width: 185px;
    display: grid;
    gap: 22px;
    padding: 26px 18px;
    border-radius: 14px;
    background: #eafbf0;
}

.stat {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 9px;
    color: #012726;
}

.dot {
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border-radius: 4px;
    background: #012726;
    color: #5ce27a;
    font-size: 8px;
}

.stat-value {
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
}

.stat-label {
    margin-top: 5px;
    font-size: 12px;
}

.help {
    position: absolute;
    right: 10px;
    bottom: 10px;
    height: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border-radius: 9px;
    background: #012726;
    color: #5ce27a;
    font-size: 14px;
    font-weight: 700;
}

.timeline-wrap {
    padding: 16px;
    border-radius: 14px;
    background: #012726;
    margin-bottom: 22px;
}

.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    padding: 18px;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 32px;
    right: 32px;
    border-top: 2px dashed #d5d9df;
}

.timeline-item {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.check {
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    margin-bottom: 10px;
    border-radius: 5px;
    background: #5ce27a;
    color: #012726;
    font-size: 12px;
    font-weight: 700;
}

.check.pending {
    background: #fff;
    border: 1px solid #c7cbd1;
    color: transparent;
}

.timeline-title {
    color: #111827;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 600;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.assignment-card {
    min-height: 118px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 22px;
    border: 1px solid #dde2ea;
    border-radius: 14px;
    background: linear-gradient(135deg, transparent 0 35%, rgba(92, 226, 122, 0.18) 35% 48%, transparent 48%), #fff;
    box-shadow: 0 5px 16px rgba(15, 23, 42, 0.06);
    margin-bottom: 28px;
}

.assignment-card h3 {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
}

.assignment-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.45;
}

.primary-btn {
    min-width: 104px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: #012726;
    color: #5ce27a;
    font-size: 14px;
    font-weight: 700;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.step-card {
    min-height: 170px;
    display: flex;
    flex-direction: column;
    padding: 14px;
    border: 1px solid #dde2ea;
    border-radius: 12px;
    background: #fff;
}

.step-no {
    color: #012726;
    font-size: 12px;
    font-weight: 700;
}

.step-card h3 {
    margin: 9px 0 8px;
    font-size: 15px;
    line-height: 1.25;
    color: #111827;
}

.step-card p {
    margin-bottom: 14px;
    color: #5f6875;
    font-size: 13px;
    line-height: 1.35;
}

.outline-btn {
    margin-top: auto;
    height: 32px;
    display: grid;
    place-items: center;
    border: 1px solid #d7dce3;
    border-radius: 8px;
    color: #374151;
    font-size: 13px;
    font-weight: 600;
}

.outline-btn:hover {
    border-color: #5ce27a;
    background: #effff2;
    color: #012726;
}

/* =============================================================
   20. RESPONSIVE BREAKPOINTS
   ============================================================= */

/* ── 1280px ── */
@media (max-width: 1280px) {
    .programs-section {
        padding: 80px 32px;
    }

    .why-inner,
    .stories-inner,
    .instructors-inner,
    .ai-voices-inner {
        padding: 0 32px;
    }

    .ai-relevance-section {
        padding: 0 32px;
    }

    .faq-section {
        padding: 80px 32px;
    }

    footer {
        padding: 60px 32px 32px;
    }

    .footer-grid {
        grid-template-columns: 1.4fr repeat(3, minmax(130px, 1fr));
        gap: 32px;
    }
}

/* ── 1100px ── */
@media (max-width: 1100px) {
    .home-hero {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
        gap: 40px;
        padding: 64px 32px 54px;
    }

    .dsml-skills-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .dsml-callback {
        grid-template-columns: 1fr;
    }
}

/* ── 991px (DS main) ── */
@media (max-width: 991px) {
    .home-hero {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .home-hero-content {
        max-width: 720px;
    }

    .home-hero .hero-card {
        width: min(100%, 520px);
    }

    .dsml-hero-grid,
    .dsml-role-grid,
    .dsml-ai-grid,
    .dsml-module-wrap,
    .dsml-certificate {
        grid-template-columns: 1fr;
    }

    .dsml-feature-grid,
    .dsml-project-grid,
    .dsml-mentor-grid,
    .dsml-outcome-grid,
    .dsml-skills-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dsml-module-tabs {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dsml-nav-row {
        align-items: flex-start;
        flex-direction: column;
        padding: 12px 0;
    }

    .voice-card-h {
        height: auto;
        min-height: 300px;
    }

    .voice-img-h {
        width: 220px;
        min-height: 300px;
    }

    .voice-img-h img {
        width: 100%;
        height: 100%;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* ── 991px (main nav) ── */
@media (max-width: 991px) {
    nav {
        justify-content: space-between;
        padding: 0 24px;
        flex-wrap: wrap;
        height: auto;
        min-height: 68px;
    }

    .nav-logo {
        position: static;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        background: rgba(10, 10, 15, 0.97);
        padding: 12px 0 20px;
        border-top: 1px solid var(--border);
        gap: 0;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links>li>a {
        padding: 14px 20px;
    }

    .nav-links .has-drop:hover .dropdown {
        display: none;
    }

    .nav-links .has-drop.open .dropdown {
        display: block;
    }

    .nav-toggle {
        display: flex;
    }

    .dropdown {
        position: static;
        border: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 0;
        padding: 0 0 0 20px;
        min-width: 0;
        width: 100%;
    }

    .btn-ghost {
        display: none;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ai-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .prog-panel.active {
        grid-template-columns: 1fr;
    }
}

/* ── 768px (tablet) ── */
@media (max-width: 768px) {
    nav {
        padding: 0 16px;
    }

    .home-hero {
        padding: 54px 20px 46px;
    }

    .home-hero h1 {
        font-size: clamp(34px, 9vw, 46px);
        letter-spacing: -1px;
    }

    .home-hero-copy {
        max-width: none;
    }

    .home-hero-proof {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .why-inner,
    .stories-inner,
    .instructors-inner,
    .ai-voices-inner {
        padding: 0 20px;
    }

    .programs-section {
        padding: 60px 20px;
    }

    .ai-relevance-section {
        padding: 0 20px;
        margin: 60px auto;
    }

    .faq-section {
        padding: 60px 20px;
    }

    footer {
        padding: 48px 20px 24px;
    }

    .stat-box {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .stat-box:last-child {
        border-bottom: none;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .ai-cards {
        grid-template-columns: 1fr;
    }

    .voice-card-h {
        flex-direction: column;
        height: auto;
    }

    .voice-img-h {
        width: 100%;
        height: clamp(220px, 56vw, 320px);
        min-height: 220px;
    }

    .voice-img-h img {
        width: 45%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
    }

    .voice-body-h {
        padding: 1.5rem 2rem;
    }

    .ai-banner {
        height: auto;
        min-height: 200px;
        padding: 28px 24px;
    }

    .ai-banner h2 {
        font-size: 24px;
    }

    .final-cta {
        padding: 60px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 36px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .final-cta-btns {
        flex-direction: column;
        align-items: center;
    }

    /* LMS shell */
    .lms-shell,
    .app {
        grid-template-columns: 1fr;
        padding: 12px;
    }

    .sidebar,
    .main-wrap {
        height: auto;
    }

    .profile {
        display: none;
    }

    .timeline {
        grid-template-columns: repeat(3, 1fr);
    }

    .timeline::before {
        display: none;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .assignment-card {
        grid-template-columns: 1fr;
    }
}

/* ── 640px (DS small) ── */
@media (max-width: 640px) {
    .dsml-hero {
        padding-top: 54px;
    }

    .dsml-hero-copy {
        font-size: 16px;
    }

    .dsml-meta-row,
    .dsml-feature-grid,
    .dsml-project-grid,
    .dsml-mentor-grid,
    .dsml-outcome-grid,
    .dsml-skills-grid,
    .dsml-learn-grid,
    .dsml-module-tabs {
        grid-template-columns: 1fr;
    }

    .dsml-dashboard {
        left: 14px;
        right: 14px;
        width: auto;
    }

    .dsml-visual-card img {
        min-height: 320px;
    }

    .dsml-section {
        padding: 58px 0;
    }

    .dsml-card,
    .dsml-module,
    .dsml-callback {
        padding: 20px;
    }
}

/* ── 480px (mobile) ── */
@media (max-width: 480px) {
    .home-hero {
        padding: 42px 16px 38px;
    }

    .home-hero-kicker {
        font-size: 10px;
        letter-spacing: 1.4px;
    }

    .home-hero h1 {
        font-size: 34px;
    }

    .home-hero-actions {
        margin-bottom: 28px;
    }

    .home-hero .hero-card {
        width: 100%;
    }

    .mini-stats {
        grid-template-columns: 1fr;
    }

    .voice-body-h {
        padding: 1.25rem;
    }

    .voice-name-h {
        font-size: 22px;
    }

    .voice-quote-h {
        font-size: 14px;
    }

    .footer-logo img {
        height: 86px;
    }

    .footer-socials {
        flex-wrap: wrap;
    }

    .hero-card {
        padding: 20px;
    }

    .why-section,
    .stories-section,
    .instructors-section,
    .ai-voices-section {
        padding: 56px 0;
    }

    .why-card {
        padding: 24px;
    }

    .story-card {
        padding: 20px;
    }

    .prog-detail {
        padding: 24px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
    }

    .dsml-shell {
        width: calc(100% - 20px);
    }

    .lms-topbar {
        height: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 12px 16px;
    }

    .search {
        width: 100%;
    }

    .timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .dsml-feature-grid,
    .dsml-project-grid,
    .dsml-mentor-grid {
        grid-template-columns: 1fr;
    }
}

/* ── 375px (small phones) ── */
@media (max-width: 375px) {
    nav {
        padding: 0 12px;
    }

    .nav-logo {
        font-size: 18px;
    }

    .pill {
        display: none;
    }

    .final-cta {
        padding: 48px 16px;
    }

    footer {
        padding: 40px 16px 20px;
    }
}

.dsml-page {
    overflow: hidden;
}

.dsml-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.dsml-hero {
    position: relative;
    background:
        radial-gradient(circle at 80% 10%, rgba(92, 226, 122, 0.24), transparent 28%),
        radial-gradient(circle at 8% 30%, rgba(33, 166, 104, 0.30), transparent 30%),
        linear-gradient(135deg, var(--bg) 0%, var(--bg2) 52%, var(--bg3) 100%);
    color: #ffffff;
    padding: 86px 0 34px;
}

.dsml-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 74px 74px;
    opacity: 0.55;
}

.dsml-hero .dsml-shell {
    position: relative;
    z-index: 1;
}

.dsml-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: 42px;
    align-items: center;
}

.dsml-kicker,
.dsml-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: #d9f4ff;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
}

.dsml-kicker i,
.dsml-eyebrow i {
    color: var(--ds-cyan);
}

.dsml-hero h1 {
    max-width: 760px;
    margin: 22px 0 18px;
    font-family: "Poppins", sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: 0;
    font-weight: 700;
}

.dsml-hero h1 span {
    color: var(--ds-cyan);
}

.dsml-hero-copy {
    max-width: 690px;
    color: #c8d7ef;
    font-size: 18px;
    line-height: 1.75;
    margin: 0 0 26px;
}

.dsml-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-bottom: 28px;
}

.dsml-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    border-radius: 8px;
    padding: 13px 20px;
    border: 1px solid transparent;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.dsml-btn:hover {
    transform: translateY(-2px);
}

.dsml-btn-primary {
    background: var(--accent2);
    color: var(--bg);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.26);
}

.dsml-btn-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
}

.dsml-meta-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 690px;
}

.dsml-meta {
    padding: 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.dsml-meta strong {
    display: block;
    font-size: 24px;
    line-height: 1.1;
}

.dsml-meta span {
    display: block;
    margin-top: 6px;
    color: #b8c7df;
    font-size: 13px;
    line-height: 1.4;
}

.dsml-visual {
    position: relative;
}

.dsml-visual-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

.dsml-visual-card img {
    width: 100%;
    display: block;
    min-height: 420px;
    object-fit: cover;
}

.dsml-dashboard {
    position: absolute;
    left: -28px;
    bottom: 28px;
    width: min(350px, 78%);
    padding: 18px;
    border-radius: 14px;
    background: rgba(3, 12, 30, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
}

.dsml-dashboard-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #c8d7ef;
    font-size: 12px;
    margin-bottom: 12px;
}

.dsml-bars {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    align-items: end;
    gap: 8px;
    height: 102px;
}

.dsml-bars span {
    display: block;
    border-radius: 7px 7px 2px 2px;
    background: linear-gradient(180deg, var(--accent2), var(--accent));
}

.dsml-program-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(17, 17, 24, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border2);
}

.dsml-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 66px;
}

.dsml-nav-links {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
}

.dsml-nav-links a {
    color: var(--text);
    text-decoration: none;
    white-space: nowrap;
    padding: 10px 12px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 800;
}

.dsml-nav-links a:hover {
    background: rgba(92, 226, 122, 0.12);
    color: var(--accent2);
}

.dsml-section {
    padding: 82px 0;
}

.dsml-section-dark {
    background: var(--ds-bg);
    color: #ffffff;
}

.dsml-section-soft {
    background: var(--bg2);
}

.dsml-section-head {
    max-width: 760px;
    margin-bottom: 34px;
}

.dsml-section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.dsml-label {
    display: block;
    margin-bottom: 10px;
    color: var(--accent2);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.dsml-section-dark .dsml-label {
    color: var(--ds-cyan);
}

.dsml-section h2 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0;
    
}

.dsml-section-head p {
    margin: 14px 0 0;
    color: var(--ds-muted);
    font-size: 17px;
    line-height: 1.75;
}

.dsml-section-dark .dsml-section-head p {
    color: #bdcbe1;
}

.dsml-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.dsml-card {
    border-radius: 8px;
    background: var(--card);
    border: 1px solid var(--border2);
    padding: 24px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.dsml-section-dark .dsml-card {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.dsml-card-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    margin-bottom: 18px;
    color: var(--accent2);
    background: rgba(92, 226, 122, 0.12);
    font-size: 20px;
}

.dsml-section-dark .dsml-card-icon {
    color: #ffffff;
    background: rgba(69, 212, 255, 0.18);
}

.dsml-card h3 {
    margin: 0 0 9px;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
}

.dsml-card p,
.dsml-card li {
    color: var(--ds-muted);
    font-size: 15px;
    line-height: 1.65;
}

.dsml-section-dark .dsml-card p,
.dsml-section-dark .dsml-card li {
    color: #c6d2e4;
}

.dsml-role-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
    align-items: stretch;
}

.dsml-role-list {
    display: grid;
    gap: 12px;
}

.dsml-role-tab {
    width: 100%;
    border: 1px solid var(--border2);
    background: var(--card);
    border-radius: 8px;
    padding: 18px;
    text-align: left;
    color: var(--text);
    font-weight: 800;
}

.dsml-role-tab span {
    display: block;
    margin-bottom: 5px;
    color: var(--accent2);
    font-size: 13px;
}

.dsml-role-tab.active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent), var(--bg3));
    border-color: transparent;
}

.dsml-role-tab.active span {
    color: #bdeeff;
}

.dsml-role-detail {
    border-radius: 8px;
    padding: 30px;
    color: #ffffff;
    background:
        linear-gradient(rgba(6, 16, 38, 0.55), rgba(6, 16, 38, 0.94)),
        url("https://www.scaler.com/storyblok-assets/f/290352327034910/92878x92878/e17a18f080/pexels-ketut-subiyanto-4584055.webp") center/cover;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.dsml-role-detail h3 {
    font-size: 30px;
    line-height: 1.2;
    margin: 0 0 13px;
    font-weight: 800;
}

.dsml-role-detail ul,
.dsml-module ul,
.dsml-faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dsml-role-detail li {
    display: flex;
    gap: 10px;
    color: #dce7f5;
    margin-top: 12px;
    line-height: 1.55;
}

.dsml-role-detail li i {
    color: var(--ds-green);
    margin-top: 4px;
}

.dsml-ai-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 32px;
    align-items: center;
}

.dsml-ai-panel {
    border-radius: 8px;
    padding: 28px;
    background: var(--card);
    color: var(--ds-ink);
}

.dsml-workflow {
    display: grid;
    gap: 14px;
}

.dsml-workflow-step {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
}

.dsml-step-number {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: rgba(69, 212, 255, 0.16);
    color: var(--ds-cyan);
    font-weight: 900;
}

.dsml-workflow-step h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 800;
}

.dsml-workflow-step p {
    margin: 0;
    color: #c6d2e4;
    line-height: 1.6;
}

.dsml-module-wrap {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
    align-items: start;
}

.dsml-module-tabs {
    display: grid;
    gap: 10px;
    position: sticky;
    top: 86px;
}

.dsml-module-tab {
    border: 1px solid var(--border2);
    border-radius: 8px;
    background: var(--card);
    padding: 16px;
    color: var(--text);
    text-align: left;
    font-weight: 800;
}

.dsml-module-tab span {
    display: block;
    margin-bottom: 4px;
    color: var(--accent2);
    font-size: 12px;
    text-transform: uppercase;
}

.dsml-module-tab.active {
    color: #ffffff;
    background: var(--accent);
    border-color: var(--accent);
}

.dsml-module-tab.active span {
    color: var(--ds-cyan);
}

.dsml-module {
    display: none;
    border-radius: 8px;
    border: 1px solid var(--border2);
    background: var(--card);
    padding: 30px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.dsml-module.active {
    display: block;
}

.dsml-module h3 {
    font-size: 28px;
    margin: 0 0 10px;
    font-weight: 800;
}

.dsml-module-summary {
    color: var(--ds-muted);
    line-height: 1.7;
    margin-bottom: 22px;
}

.dsml-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.dsml-pill {
    border-radius: 999px;
    padding: 8px 12px;
    color: var(--accent2);
    background: rgba(92, 226, 122, 0.12);
    font-size: 13px;
    font-weight: 800;
}

.dsml-learn-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.dsml-module li {
    display: flex;
    gap: 10px;
    border: 1px solid var(--border2);
    border-radius: 8px;
    padding: 13px;
}

.dsml-module li i {
    color: var(--accent2);
    margin-top: 4px;
}

.dsml-week-list {
    display: grid;
    gap: 12px;
}

.dsml-week-item {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 14px;
    border: 1px solid var(--border2);
    border-radius: 8px;
    padding: 14px;
    background: var(--bg3);
}

.dsml-week-number {
    display: grid;
    place-items: center;
    min-height: 48px;
    border-radius: 8px;
    color: var(--accent2);
    background: rgba(92, 226, 122, 0.12);
    font-weight: 900;
    font-size: 13px;
}

.dsml-week-item h4 {
    margin: 0 0 5px;
    font-size: 17px;
    font-weight: 900;
    color: var(--text);
}

.dsml-week-item p {
    margin: 0;
    color: var(--ds-muted);
    line-height: 1.65;
}

.dsml-roadmap {
    position: relative;
    display: grid;
    gap: 14px;
}

.dsml-roadmap::before {
    display: none;
}

.dsml-roadmap-phase {
    position: relative;
    border-radius: 8px;
    border: 1px solid var(--border2);
    background: var(--card);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
    overflow: hidden;
}

.dsml-roadmap-phase[open] {
    border-color: rgba(92, 226, 122, 0.36);
}

.dsml-roadmap-top {
    display: grid;
    grid-template-columns: 56px 1fr auto 34px;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    cursor: pointer;
    list-style: none;
}

.dsml-roadmap-top::-webkit-details-marker {
    display: none;
}

.dsml-roadmap-marker {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent), var(--bg3));
    box-shadow: 0 12px 32px rgba(33, 166, 104, 0.26);
    font-weight: 900;
}

.dsml-roadmap-top h3 {
    margin: 0 0 8px;
    font-size: 25px;
    font-weight: 900;
    color: var(--text);
}

.dsml-roadmap-top p {
    margin: 0;
    color: var(--ds-muted);
    line-height: 1.7;
}

.dsml-roadmap-meta {
    flex: 0 0 auto;
    border-radius: 999px;
    padding: 8px 12px;
    color: var(--accent2);
    background: rgba(92, 226, 122, 0.12);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.dsml-roadmap-arrow {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    color: var(--accent2);
    background: rgba(92, 226, 122, 0.12);
    transition: transform 0.2s ease;
}

.dsml-roadmap-phase[open] .dsml-roadmap-arrow {
    transform: rotate(180deg);
}

.dsml-roadmap-weeks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0 22px 22px 96px;
}

.dsml-roadmap-week {
    border: 1px solid var(--border2);
    border-radius: 8px;
    background: var(--bg3);
    padding: 14px;
}

.dsml-roadmap-week span {
    display: inline-flex;
    margin-bottom: 8px;
    border-radius: 999px;
    padding: 4px 9px;
    color: var(--accent2);
    background: rgba(92, 226, 122, 0.12);
    font-size: 12px;
    font-weight: 900;
}

.dsml-roadmap-week h4 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 900;
    color: var(--text);
}

.dsml-roadmap-week p {
    margin: 0;
    color: var(--ds-muted);
    line-height: 1.62;
    font-size: 14px;
}

.dsml-project-grid,
.dsml-mentor-grid,
.dsml-outcome-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.dsml-project {
    overflow: hidden;
    padding: 0;
}

.dsml-project-media {
    min-height: 170px;
    background:
        linear-gradient(135deg, rgba(33, 166, 104, 0.82), rgba(92, 226, 122, 0.24)),
        var(--bg3);
}

.dsml-project-media img {
    width: 100%;
    height: 210px;
    display: block;
    object-fit: cover;
}

.dsml-project-body {
    padding: 22px;
}

.dsml-project-body small {
    display: block;
    color: var(--accent2);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.dsml-tool-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.dsml-tool-row span {
    border-radius: 6px;
    background: rgba(92, 226, 122, 0.12);
    color: var(--accent2);
    padding: 6px 8px;
    font-size: 12px;
    font-weight: 800;
}

.dsml-mentor {
    overflow: hidden;
    padding: 0;
}

.dsml-mentor img {
    width: 100%;
    min-height: 230px;
    display: block;
    object-fit: cover;
}

.dsml-mentor div {
    padding: 20px;
}

.dsml-mentor small {
    color: var(--accent2);
    font-weight: 800;
}

.dsml-certificate {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 36px;
    align-items: center;
}

.dsml-certificate-frame {
    border-radius: 10px;
    background: var(--card);
    padding: 14px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    transform: rotate(-1.5deg);
}

.dsml-certificate-frame img {
    width: 100%;
    display: block;
    border-radius: 8px;
}

.dsml-tools-strip {
    grid-column: 1 / -1;
    margin-top: 34px;
    padding: 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.dsml-tools-strip span {
    display: block;
    margin-bottom: 10px;
    color: #c8d7ef;
    font-size: 13px;
    font-weight: 800;
}

.dsml-tools-strip img {
    width: 100%;
    max-height: 54px;
    object-fit: contain;
    display: block;
}

.dsml-module-visual {
    margin-bottom: 22px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--bg3);
}

.dsml-module-visual img {
    width: 100%;
    display: block;
    max-height: 280px;
    object-fit: cover;
}

.dsml-outcome {
    border-left: 4px solid var(--accent2);
}

.dsml-outcome strong {
    display: block;
    color: var(--accent2);
    font-size: 34px;
    line-height: 1;
    margin-bottom: 10px;
}

.dsml-skills-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.dsml-skill-card {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 76px;
    border-radius: 8px;
    padding: 16px;
    background: var(--card);
    border: 1px solid var(--border2);
    color: var(--text);
    font-weight: 900;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
}

.dsml-skill-card i {
    display: grid;
    place-items: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    color: var(--accent2);
    background: rgba(92, 226, 122, 0.12);
}

.dsml-role-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 30px 0 36px;
}

.dsml-role-cloud span {
    border-radius: 999px;
    padding: 11px 15px;
    background: var(--card);
    color: var(--text);
    border: 1px solid var(--border2);
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.dsml-callback {
    background:
        radial-gradient(circle at 20% 10%, rgba(92, 226, 122, 0.20), transparent 24%),
        linear-gradient(135deg, var(--bg), var(--bg3));
    color: #ffffff;
    border-radius: 14px;
    padding: 34px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: center;
}

.dsml-callback h2 {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 12px;
}

.dsml-callback p {
    color: #c8d7ef;
    line-height: 1.7;
    margin: 0;
}

.dsml-form {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.dsml-form input,
.dsml-form select {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.94);
    color: #12213a;
    padding: 10px 12px;
    font-size: 14px;
}

.dsml-form button {
    border: 0;
    min-height: 46px;
    border-radius: 7px;
    background: var(--ds-cyan);
    color: var(--bg);
    font-weight: 900;
}

.dsml-faq-list {
    display: grid;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.dsml-faq-list details {
    border: 1px solid var(--border2);
    border-radius: 8px;
    background: var(--card);
    padding: 18px 20px;
}

.dsml-faq-list summary {
    cursor: pointer;
    font-weight: 900;
    color: var(--text);
}

.dsml-faq-list p {
    margin: 12px 0 0;
    color: var(--ds-muted);
    line-height: 1.7;
}

@media (max-width: 991px) {

    .dsml-hero-grid,
    .dsml-role-grid,
    .dsml-ai-grid,
    .dsml-module-wrap,
    .dsml-certificate,
    .dsml-callback {
        grid-template-columns: 1fr;
    }

    .dsml-feature-grid,
    .dsml-project-grid,
    .dsml-mentor-grid,
    .dsml-outcome-grid,
    .dsml-skills-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dsml-module-tabs {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dsml-roadmap-weeks {
        grid-template-columns: 1fr;
    }

    .dsml-nav-row {
        align-items: flex-start;
        flex-direction: column;
        padding: 12px 0;
    }
}

@media (max-width: 640px) {
    .dsml-hero {
        padding-top: 54px;
    }

    .dsml-hero-grid {
        gap: 28px;
    }

    .dsml-hero-copy {
        font-size: 16px;
    }

    .dsml-meta-row,
    .dsml-feature-grid,
    .dsml-project-grid,
    .dsml-mentor-grid,
    .dsml-outcome-grid,
    .dsml-skills-grid,
    .dsml-learn-grid,
    .dsml-module-tabs {
        grid-template-columns: 1fr;
    }

    .dsml-dashboard {
        left: 14px;
        right: 14px;
        width: auto;
    }

    .dsml-visual-card img {
        min-height: 320px;
    }

    .dsml-section {
        padding: 58px 0;
    }

    .dsml-card,
    .dsml-module,
    .dsml-callback {
        padding: 20px;
    }

    .dsml-project {
        padding: 0;
    }

    .dsml-week-item {
        grid-template-columns: 1fr;
    }

    .dsml-roadmap::before {
        display: none;
    }

    .dsml-roadmap-phase {
        display: block;
    }

    .dsml-roadmap-marker {
        width: 42px;
        height: 42px;
        font-size: 13px;
    }

    .dsml-roadmap-top {
        grid-template-columns: 42px 1fr;
        gap: 12px;
        padding: 16px;
    }

    .dsml-roadmap-meta {
        width: fit-content;
        grid-column: 2;
    }

    .dsml-roadmap-arrow {
        position: absolute;
        top: 16px;
        right: 16px;
    }

    .dsml-roadmap-weeks {
        padding: 0 16px 16px;
    }
}


.project-slider {
            padding-top: 10px;
            padding-bottom: 60px;
            overflow: hidden;
        }

        .project-slider .swiper-slide {
            height: auto;
            display: flex;
        }

        .project-slider .highlight-card {
            width: 100%;
        }

        .project-slider .swiper-pagination {
            bottom: 0 !important;
        }

        .project-slider .swiper-pagination-bullet {
            background: #5ce27a;
            opacity: 0.5;
        }

        .project-slider .swiper-pagination-bullet-active {
            opacity: 1;
        }

        .project-slider .swiper-button-next,
        .project-slider .swiper-button-prev {
            color: #5ce27a;
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            backdrop-filter: blur(8px);
        }

        .project-slider .swiper-button-next:after,
        .project-slider .swiper-button-prev:after {
            font-size: 18px;
            font-weight: bold;
        }

        @media(max-width:768px) {

            .project-slider {
                padding-bottom: 50px;
            }

            .project-slider .swiper-button-next,
            .project-slider .swiper-button-prev {
                display: none;
            }
        }

        .highlight-card {
            position: relative;
            overflow: hidden;
            padding: 34px;
            border-radius: 28px;

            background: linear-gradient(135deg, #21a668, #16161e);
            box-shadow: 0 12px 32px rgba(33, 166, 104, 0.26);

            transition: all 0.35s ease;

            height: 100%;
        }

        .highlight-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 60px rgba(17, 71, 180, 0.45);
        }

        /* top glass effect */
        .highlight-card::before {
            content: "";
            position: absolute;
            top: -40px;
            right: -40px;
            width: 180px;
            height: 180px;

            background: rgba(255, 255, 255, 0.12);

            clip-path: polygon(100% 0, 0 0, 100% 100%);
        }

        /* second shape */
        .highlight-card::after {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 120px;
            height: 120px;

            background: rgba(255, 255, 255, 0.08);

            clip-path: polygon(100% 0, 0 0, 100% 100%);
        }

        .highlight-card small {
            display: inline-flex;
            align-items: center;
            gap: 8px;

            padding: 8px 18px;
            border-radius: 999px;

            background: rgba(255, 255, 255, 0.16);

            color: #ffffff;
            font-weight: 600;
            font-size: 13px;
            letter-spacing: 0.5px;
            text-transform: uppercase;

            backdrop-filter: blur(10px);
        }

        .highlight-card h3 {
            color: #fff;
            margin: 28px 0 20px;
            font-size: 30px;
            line-height: 1.1;
            font-weight: 700;
        }

        .highlight-card p {
            color: rgba(255, 255, 255, 0.78);
            line-height: 1.7;
            font-size: 17px;
            margin-top: 24px;
        }

        .project-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 30px;
        }

        .project-highlights span {
            background: rgba(255, 255, 255, 0.12);

            color: #fff;

            border: 1px solid rgba(255, 255, 255, 0.08);

            padding: 10px 18px;

            border-radius: 14px;

            font-size: 12px;
            font-weight: 600;

            backdrop-filter: blur(8px);
        }

        .dsml-project-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        @media(max-width: 991px) {
            .dsml-project-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media(max-width: 768px) {
            .dsml-project-grid {
                grid-template-columns: 1fr;
            }

            .highlight-card h3 {
                font-size: 32px;
            }

            .highlight-card p {
                font-size: 17px;
            }
        }
        
        