/* ===== KrisLMS — home.css ===== */

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 102px;
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 70% 60% at 60% 50%,
            rgba(14, 116, 144, 0.18) 0%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 40% 50% at 10% 80%,
            rgba(201, 168, 76, 0.08) 0%,
            transparent 60%
        );
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 48px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 72px;
    align-items: center;
    width: 100%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 100px;
    padding: 6px 14px;
    margin-bottom: 28px;
}
.hero-badge span {
    font-size: 11px;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: "DM Mono", monospace;
}
.hero-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}
.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: 54px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 24px;
}
.hero h1 em {
    font-style: normal;
    color: var(--gold);
}
.hero-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.75;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 500px;
}
.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.btn-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}
.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.85);
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}
.hero-trust {
    display: flex;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.trust-icon {
    width: 32px;
    height: 32px;
    background: rgba(201, 168, 76, 0.12);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.trust-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.3;
}
.trust-text strong {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
}

/* Hero right card */
.hero-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(8px);
}
.hero-card-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: "DM Mono", monospace;
    margin-bottom: 20px;
}
.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}
.stat-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    padding: 14px;
    text-align: center;
}
.stat-num {
    font-family: "Playfair Display", serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.3;
}

/* Delivery modes in hero card */
.delivery-modes {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.dm-label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: "DM Mono", monospace;
    margin-bottom: 4px;
}
.dm-pill {
    background: rgba(14, 116, 144, 0.15);
    border: 1px solid rgba(14, 116, 144, 0.25);
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    gap: 8px;
}
.dm-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal-light);
    flex-shrink: 0;
}

/* CPD note */
.cpd-note {
    margin-top: 16px;
    padding: 10px 12px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 8px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-family: "DM Mono", monospace;
}
.cpd-note span {
    color: var(--gold);
    font-weight: 600;
}

/* ── TRUST BAR ── */
.trust-bar {
    background: var(--navy-mid);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    padding: 24px 48px;
}
.trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tb-item {
    text-align: center;
}
.tb-num {
    font-family: "Playfair Display", serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--gold);
}
.tb-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 2px;
    letter-spacing: 0.03em;
}
.tb-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
}
.tb-badge {
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    font-family: "DM Mono", monospace;
    letter-spacing: 0.05em;
}
.tb-badge-sub {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 3px;
}

/* ── SECTIONS ── */
section {
    padding: 96px 48px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--teal);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-family: "DM Mono", monospace;
    margin-bottom: 10px;
}
.section-title {
    font-family: "Playfair Display", serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 14px;
}
.section-sub {
    font-size: 16px;
    color: var(--grey-500);
    line-height: 1.7;
    max-width: 540px;
    font-weight: 300;
}

/* ── CHOOSE YOUR PATH (3 cards) ── */
.path-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
}
.path-card {
    border-radius: 16px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    transition: all 0.25s;
}
.path-card-1 {
    background: var(--navy);
}
.path-card-2 {
    background: white;
    border: 1px solid var(--grey-200);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.path-card-3 {
    background: var(--cream);
    border: 1px solid var(--grey-200);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}
.path-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.path-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 22px;
}
.path-card-1 .path-card-icon {
    background: rgba(201, 168, 76, 0.12);
}
.path-card-2 .path-card-icon {
    background: rgba(14, 116, 144, 0.08);
}
.path-card-3 .path-card-icon {
    background: rgba(15, 32, 68, 0.06);
}
.path-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.25;
}
.path-card-1 h3 {
    color: var(--white);
}
.path-card-2 h3,
.path-card-3 h3 {
    color: var(--navy);
}
.path-card p {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 20px;
    font-weight: 300;
    flex-grow: 1;
}
.path-card-1 p {
    color: rgba(255, 255, 255, 0.55);
}
.path-card-2 p,
.path-card-3 p {
    color: var(--grey-500);
}
.path-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 28px;
}
.path-tag {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 4px;
    font-family: "DM Mono", monospace;
    font-weight: 500;
}
.path-card-1 .path-tag {
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.55);
}
.path-card-2 .path-tag {
    background: rgba(14, 116, 144, 0.07);
    color: var(--teal);
}
.path-card-3 .path-tag {
    background: rgba(15, 32, 68, 0.06);
    color: var(--navy-mid);
}
.btn-card-gold {
    background: var(--gold);
    color: var(--navy);
    padding: 11px 22px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}
.btn-card-gold:hover {
    background: var(--gold-light);
}
.btn-card-teal {
    background: rgba(14, 116, 144, 0.08);
    color: var(--teal);
    padding: 11px 22px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(14, 116, 144, 0.2);
    transition: all 0.2s;
}
.btn-card-teal:hover {
    background: rgba(14, 116, 144, 0.13);
}
.btn-card-navy {
    background: rgba(15, 32, 68, 0.07);
    color: var(--navy);
    padding: 11px 22px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(15, 32, 68, 0.15);
    transition: all 0.2s;
}
.btn-card-navy:hover {
    background: var(--navy);
    color: white;
}

/* ── PROGRAMMES ── */
.programmes-section {
    background: white;
}
.prog-filter-bar {
    display: flex;
    gap: 8px;
    margin: 32px 0 28px;
    flex-wrap: wrap;
}
.filter-btn {
    font-size: 12px;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 100px;
    border: 1px solid var(--grey-200);
    background: var(--cream);
    color: var(--grey-700);
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    transition: all 0.2s;
}
.filter-btn.active,
.filter-btn:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.programmes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.prog-card {
    border: 1px solid var(--grey-200);
    border-radius: 12px;
    padding: 24px;
    background: var(--cream);
    transition: all 0.25s;
    cursor: pointer;
}
.prog-card:hover {
    border-color: var(--teal);
    box-shadow: 0 6px 28px rgba(14, 116, 144, 0.1);
    transform: translateY(-2px);
}
.prog-tags {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.tag {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: "DM Mono", monospace;
}
.tag-domain {
    background: rgba(14, 116, 144, 0.08);
    color: var(--teal);
}
.tag-cpd {
    background: rgba(201, 168, 76, 0.12);
    color: #8a6b1a;
}
.tag-nism {
    background: rgba(15, 32, 68, 0.07);
    color: var(--navy-mid);
}
.tag-corp {
    background: rgba(107, 114, 128, 0.1);
    color: var(--grey-700);
}
.tag-live {
    background: rgba(5, 150, 105, 0.1);
    color: #047857;
}
.tag-soon {
    background: rgba(217, 119, 6, 0.1);
    color: #b45309;
}
.prog-card h4 {
    font-family: "Playfair Display", serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.3;
}
.prog-card p {
    font-size: 12px;
    color: var(--grey-500);
    line-height: 1.6;
    margin-bottom: 14px;
}
.prog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--grey-200);
}
.prog-duration {
    font-size: 11px;
    color: var(--grey-500);
    font-family: "DM Mono", monospace;
}
.prog-link {
    font-size: 12px;
    color: var(--teal);
    font-weight: 600;
    text-decoration: none;
}
.view-all-wrap {
    text-align: center;
    margin-top: 36px;
}
.btn-outline-navy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--navy);
    color: var(--navy);
    padding: 12px 26px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-outline-navy:hover {
    background: var(--navy);
    color: var(--white);
}

/* NISM notice */
.nism-notice {
    margin-top: 32px;
    background: var(--cream);
    border: 1px solid var(--grey-200);
    border-left: 3px solid var(--navy-mid);
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.nism-notice p {
    font-size: 13px;
    color: var(--grey-700);
    line-height: 1.5;
}
.nism-notice p strong {
    color: var(--navy);
}
.nism-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--navy-mid);
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid var(--navy-mid);
    padding: 7px 14px;
    border-radius: 6px;
    transition: all 0.2s;
}
.nism-link:hover {
    background: var(--navy-mid);
    color: white;
}

/* ── DOMAINS ── */
.domains-section {
    background: var(--navy);
}
.domains-section .section-title {
    color: var(--white);
}
.domains-section .section-sub {
    color: rgba(255, 255, 255, 0.45);
}
.domains-section .section-label {
    color: var(--gold);
}
.domains-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 44px;
}
.domain-tile {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 22px;
    transition: all 0.2s;
    cursor: pointer;
}
.domain-tile:hover {
    background: rgba(201, 168, 76, 0.07);
    border-color: rgba(201, 168, 76, 0.25);
    transform: translateY(-2px);
}
.domain-icon {
    font-size: 22px;
    margin-bottom: 10px;
    display: block;
    color: #fff;
}
.domain-name {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.4;
    margin-bottom: 6px;
}
.domain-count {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    font-family: "DM Mono", monospace;
}

/* ── INSTRUCTOR ── */
.instructor-inner {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 64px;
    align-items: start;
}
.instructor-photo-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(145deg, var(--navy-mid), var(--navy));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.instructor-photo-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}
.photo-initials {
    font-family: "Playfair Display", serif;
    font-size: 56px;
    font-weight: 700;
    color: rgba(201, 168, 76, 0.35);
    position: relative;
    z-index: 1;
}
.photo-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-top: 10px;
    font-family: "DM Mono", monospace;
}
.cert-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 12px;
}
.cert-tag {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    font-family: "DM Mono", monospace;
}
.instructor-info .name {
    font-family: "Playfair Display", serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.instructor-info .role {
    font-size: 13px;
    color: var(--teal);
    font-weight: 500;
    letter-spacing: 0.03em;
    margin-bottom: 24px;
}
.instructor-info p {
    font-size: 15px;
    color: var(--grey-700);
    line-height: 1.8;
    margin-bottom: 18px;
    font-weight: 300;
}
.exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 28px 0;
}
.exp-item {
    background: white;
    border: 1px solid var(--grey-200);
    border-radius: 10px;
    padding: 14px;
}
.ei-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--grey-500);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: "DM Mono", monospace;
    margin-bottom: 5px;
}
.ei-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
}

/* ── CORPORATE ── */
.corporate-section {
    background: white;
}
.corp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 44px;
}
.corp-feature {
    display: flex;
    gap: 18px;
    padding: 26px;
    border: 1px solid var(--grey-200);
    border-radius: 12px;
    background: var(--cream);
    transition: all 0.2s;
}
.corp-feature:hover {
    border-color: var(--teal-light);
    box-shadow: 0 4px 16px rgba(14, 116, 144, 0.07);
}
.cf-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(14, 116, 144, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.cf-text h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 5px;
}
.cf-text p {
    font-size: 13px;
    color: var(--grey-500);
    line-height: 1.6;
}

/* ── TESTIMONIALS ── */
.testimonial-section {
    background: var(--cream);
}
.testimonial-intro {
    font-size: 14px;
    color: var(--grey-500);
    margin-top: 8px;
    font-style: italic;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 44px;
}
.t-card {
    background: white;
    border: 1px solid var(--grey-200);
    border-radius: 14px;
    padding: 32px;
    position: relative;
    transition: all 0.2s;
}
.t-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
}
.t-quote-mark {
    font-family: "Playfair Display", serif;
    font-size: 60px;
    color: var(--gold);
    line-height: 0.6;
    opacity: 0.25;
    position: absolute;
    top: 24px;
    left: 24px;
}
.t-text {
    font-size: 14px;
    color: var(--grey-700);
    line-height: 1.75;
    margin-bottom: 24px;
    padding-top: 20px;
    font-style: italic;
}
.t-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--grey-100);
}
.t-avatar {
    width: 36px;
    height: 36px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    font-family: "Playfair Display", serif;
    flex-shrink: 0;
}
.t-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
}
.t-role {
    font-size: 11px;
    color: var(--grey-500);
    margin-top: 1px;
}
.t-context {
    font-size: 10px;
    color: var(--teal);
    font-family: "DM Mono", monospace;
    margin-top: 3px;
}
.testimonial-placeholder {
    background: white;
    border: 1.5px dashed var(--grey-200);
    border-radius: 14px;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.testimonial-placeholder p {
    font-size: 13px;
    color: var(--grey-500);
    font-style: italic;
}
.testimonial-placeholder small {
    font-size: 11px;
    color: var(--grey-200);
    font-family: "DM Mono", monospace;
}

/* ── ACCREDITATIONS ── */
.accred-section {
    background: white;
    padding: 72px 48px;
}
.accred-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.accred-grid {
    display: flex;
    gap: 28px;
    margin-top: 44px;
}
.accred-card {
    background: var(--cream);
    border: 1px solid var(--grey-200);
    border-radius: 14px;
    padding: 36px;
    flex: 1;
}
.accred-logo-placeholder {
    width: 56px;
    height: 56px;
    background: var(--navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 18px;
}
.accred-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.accred-ref {
    font-size: 11px;
    color: var(--teal);
    font-family: "DM Mono", monospace;
    margin-bottom: 10px;
}
.accred-card p {
    font-size: 13px;
    color: var(--grey-500);
    line-height: 1.65;
}
.nism-accred-card {
    background: var(--cream);
    border: 1px solid var(--grey-200);
    border-radius: 14px;
    padding: 36px;
    flex: 1;
}
.nism-accred-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.nism-accred-card .accred-ref {
    font-size: 11px;
    color: var(--teal);
    font-family: "DM Mono", monospace;
    margin-bottom: 10px;
}
.nism-accred-card p {
    font-size: 13px;
    color: var(--grey-500);
    line-height: 1.65;
    margin-bottom: 16px;
}
.nism-courses-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.nism-course-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: white;
    border: 1px solid var(--grey-200);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}
.nism-course-link:hover {
    border-color: var(--navy-mid);
}
.nism-course-link span {
    font-size: 12px;
    font-weight: 500;
    color: var(--navy);
}
.nism-course-link small {
    font-size: 10px;
    color: var(--teal);
    font-family: "DM Mono", monospace;
}

/* ── SITE-WIDE TICKER ── */
.ticker-bar {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    z-index: 290;
    background: rgba(8, 15, 34, 0.96);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    backdrop-filter: blur(8px);
    height: 34px;
    overflow: hidden;
}
.ticker-bar::before,
.ticker-bar::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.ticker-bar::before {
    left: 0;
    background: linear-gradient(90deg, rgba(8, 15, 34, 0.98), transparent);
}
.ticker-bar::after {
    right: 0;
    background: linear-gradient(270deg, rgba(8, 15, 34, 0.98), transparent);
}
.ticker-track {
    display: flex;
    align-items: center;
    height: 34px;
    animation: tickerSlide 40s linear infinite;
    width: max-content;
}
.ticker-track:hover {
    animation-play-state: paused;
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 48px 0 0;
    white-space: nowrap;
}
.ticker-tag {
    font-size: 8px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 3px;
    font-family: "DM Mono", monospace;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    flex-shrink: 0;
}
.ticker-tag.new {
    background: rgba(201, 168, 76, 0.15);
    color: #c9a84c;
    border: 1px solid rgba(201, 168, 76, 0.25);
}
.ticker-tag.live {
    background: rgba(22, 163, 74, 0.12);
    color: #4ade80;
    border: 1px solid rgba(22, 163, 74, 0.25);
}
.ticker-tag.cpd {
    background: rgba(139, 92, 246, 0.12);
    color: #a78bfa;
    border: 1px solid rgba(139, 92, 246, 0.25);
}
.ticker-tag.info {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.ticker-tag.soon {
    background: rgba(14, 116, 144, 0.15);
    color: #0ea5c9;
    border: 1px solid rgba(14, 116, 144, 0.25);
}
.ticker-text {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.42);
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
}
.ticker-sep {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 20px 0 -32px;
    flex-shrink: 0;
}
@keyframes tickerSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* Push page content down to account for ticker */
body.has-ticker nav ~ *:not(.ticker-bar) {
    margin-top: 0;
}
