/* ============================================================
   SPEAKDEUTSCH ACADEMY — Courses & Exams Page Styles v2
   ============================================================ */

/* ── Scroll Progress ── */
.cr-scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--green), var(--gold), var(--green));
    background-size: 200% 100%;
    animation: progressShimmer 2s linear infinite;
    z-index: 9999;
    transition: width 0.1s linear;
}
@keyframes progressShimmer {
    0%   { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.cr-hero {
    position: relative;
    background: linear-gradient(135deg, #0f2a1a 0%, var(--green) 50%, #1f5c38 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: calc(var(--nav-height) + 56px) 24px 52px;
}

.cr-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(196,154,10,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cr-hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cr-hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.cr-hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(196,154,10,0.9);
    margin-bottom: 18px;
}

.cr-hero-heading {
    font-family: var(--font-serif);
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 22px;
}

.cr-hero-sub {
    font-size: clamp(0.9rem, 1.6vw, 1.05rem);
    color: rgba(244,237,216,0.7);
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto 32px;
}

/* Floating level chips in hero */
.cr-hero-chips {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.cr-hero-wm {
    position: absolute;
    bottom: 12px;
    right: 16px;
    font-family: var(--font-serif);
    font-size: clamp(5rem, 14vw, 12rem);
    font-weight: 700;
    color: rgba(244,237,216,0.03);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

/* ─────────────────────────────────────────────
   LEVEL NAVIGATOR
───────────────────────────────────────────── */
.cr-level-nav {
    position: sticky;
    top: var(--nav-height);
    z-index: 90;
    background: var(--white);
    border-bottom: 2px solid rgba(26,77,46,0.08);
    box-shadow: 0 4px 20px rgba(26,77,46,0.07);
}

.cr-level-nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.cr-level-nav-inner::-webkit-scrollbar { display: none; }

.cr-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1.5px solid rgba(26,77,46,0.2);
    color: var(--green);
    background: transparent;
    transition: all 0.22s ease;
    white-space: nowrap;
    text-decoration: none;
}
.cr-pill:hover, .cr-pill.active {
    background: var(--green);
    color: var(--cream);
    border-color: var(--green);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26,77,46,0.2);
}
.cr-pill-special {
    border-color: rgba(196,154,10,0.4);
    color: #8a6c00;
}
.cr-pill-special:hover, .cr-pill-special.active {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    box-shadow: 0 4px 12px rgba(196,154,10,0.3);
}
.cr-pill-divider {
    width: 1px;
    height: 20px;
    background: rgba(26,77,46,0.12);
    margin: 0 4px;
    flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   COURSES SECTION
───────────────────────────────────────────── */
.cr-courses {
    background: var(--cream);
    padding: 0;
}
.cr-courses .section-container {
    padding-top: 44px;
    padding-bottom: 48px;
}

.cr-section-intro {
    text-align: center;
    margin-bottom: 32px;
}
.cr-section-intro .section-subtext {
    max-width: 560px;
    margin: 0 auto;
}

/* ── CEFR Journey Path ── */
.cr-journey-path {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 32px;
    padding: 20px 32px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(26,77,46,0.1);
    box-shadow: 0 4px 24px rgba(26,77,46,0.06);
    overflow-x: auto;
}

.cr-jp-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cr-jp-node {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}
.cr-jp-node:hover {
    transform: scale(1.14) translateY(-3px);
}

.cr-jp-node-a {
    background: linear-gradient(135deg, #1A4D2E, #2d7346);
    color: #fff;
    box-shadow: 0 6px 18px rgba(26,77,46,0.35);
}
.cr-jp-node-b {
    background: linear-gradient(135deg, #7a5c00, #b88d00);
    color: #fff;
    box-shadow: 0 6px 18px rgba(122,92,0,0.35);
}
.cr-jp-node-c {
    background: linear-gradient(135deg, #6B1414, #9a1e1e);
    color: #fff;
    box-shadow: 0 6px 18px rgba(107,20,20,0.35);
}

.cr-jp-step span {
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
}

.cr-jp-line {
    height: 4px;
    width: 72px;
    flex-shrink: 0;
    border-radius: 2px;
    background: rgba(26,77,46,0.1);
    position: relative;
    align-self: center;
    margin-bottom: 26px;
    overflow: hidden;
}
.cr-jp-line::after {
    content: '';
    position: absolute;
    left: 0; top: 0;
    height: 100%;
    width: 0%;
    border-radius: 2px;
    transition: width 1s ease;
}
.cr-jp-line-a::after { background: linear-gradient(90deg, #1A4D2E, #2d7346); }
.cr-jp-line-b::after { background: linear-gradient(90deg, #2d7346, #7a5c00); }
.cr-jp-line-c::after { background: linear-gradient(90deg, #7a5c00, #6B1414); }

.cr-journey-path.cr-path-animated .cr-jp-line::after { width: 100%; }

/* ── Level Cards — Horizontal Split ── */
.cr-levels-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.cr-level-card {
    scroll-margin-top: calc(var(--nav-height) + 68px);
    display: grid;
    grid-template-columns: 200px 1fr;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(26,77,46,0.07);
    border: 1px solid rgba(26,77,46,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.cr-level-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(26,77,46,0.14);
}

/* Left colored panel */
.cr-card-accent {
    padding: 36px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
}
.cr-card-accent::after {
    content: '';
    position: absolute;
    bottom: -30px; right: -30px;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
}

.cr-accent-a { background: linear-gradient(150deg, #1A4D2E 0%, #2d7346 100%); }
.cr-accent-b { background: linear-gradient(150deg, #7a5c00 0%, #b08800 100%); }
.cr-accent-c { background: linear-gradient(150deg, #6B1414 0%, #9a1e1e 100%); }

.cr-big-level {
    font-family: var(--font-serif);
    font-size: 3.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.95);
    line-height: 1;
    letter-spacing: -0.02em;
}
.cr-accent-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 4px;
}
.cr-accent-cefr {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.cr-accent-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gold);
    background: rgba(196,154,10,0.18);
    border: 1px solid rgba(196,154,10,0.35);
    border-radius: 20px;
    padding: 5px 12px;
    margin-top: 10px;
    white-space: nowrap;
}
.cr-accent-meta svg { width: 12px; height: 12px; flex-shrink: 0; }

/* Right content panel */
.cr-card-body {
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    border-left: 1px solid rgba(26,77,46,0.07);
}

.cr-card-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.cr-card-points li {
    font-size: 0.9rem;
    color: var(--text-body);
    padding-left: 22px;
    position: relative;
    line-height: 1.55;
    font-weight: 500;
}
.cr-card-points li::before {
    content: '';
    position: absolute;
    left: 0; top: 9px;
    width: 7px; height: 7px;
    border-radius: 50%;
}
.cr-points-a li::before { background: #1A4D2E; opacity: 0.55; }
.cr-points-b li::before { background: #8a6c00; opacity: 0.55; }
.cr-points-c li::before { background: #6B1414; opacity: 0.55; }

.cr-card-enrol {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    width: fit-content;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.cr-card-enrol:hover { transform: translateX(5px); }
.cr-card-enrol svg { transition: transform 0.22s ease; }
.cr-card-enrol:hover svg { transform: translateX(4px); }

.cr-enrol-a {
    background: linear-gradient(135deg, #1A4D2E, #2d7346);
    color: #fff;
    box-shadow: 0 4px 14px rgba(26,77,46,0.25);
}
.cr-enrol-a:hover { box-shadow: 0 8px 22px rgba(26,77,46,0.35); }

.cr-enrol-b {
    background: linear-gradient(135deg, #7a5c00, #b08800);
    color: #fff;
    box-shadow: 0 4px 14px rgba(122,92,0,0.25);
}
.cr-enrol-b:hover { box-shadow: 0 8px 22px rgba(122,92,0,0.35); }

.cr-enrol-c {
    background: linear-gradient(135deg, #6B1414, #9a1e1e);
    color: #fff;
    box-shadow: 0 4px 14px rgba(107,20,20,0.25);
}
.cr-enrol-c:hover { box-shadow: 0 8px 22px rgba(107,20,20,0.35); }

/* ── Bundle Card ── */
.cr-bundle-card {
    scroll-margin-top: calc(var(--nav-height) + 68px);
    position: relative;
    background: linear-gradient(135deg, #0f2a1a 0%, #1A4D2E 60%, #1f5c38 100%);
    border-radius: var(--radius);
    padding: 60px 40px 32px;
    margin-bottom: 24px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(26,77,46,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cr-bundle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(26,77,46,0.32);
}
.cr-bundle-card::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: rgba(196,154,10,0.06);
    pointer-events: none;
}
.cr-bundle-card::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -40px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(196,154,10,0.04);
    pointer-events: none;
}

.cr-bundle-badge {
    position: absolute;
    top: 24px; right: 28px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0f2a1a;
    background: var(--gold);
    border-radius: 20px;
    padding: 7px 16px;
    box-shadow: 0 4px 14px rgba(196,154,10,0.4);
}
.cr-bundle-badge svg { width: 12px; height: 12px; fill: #0f2a1a; }

.cr-bundle-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.cr-bundle-eyebrow {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(196,154,10,0.8);
    margin-bottom: 12px;
}
.cr-bundle-title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 16px;
}
.cr-bundle-desc {
    font-size: 0.88rem;
    color: rgba(244,237,216,0.68);
    line-height: 1.7;
    margin-bottom: 28px;
}
.cr-bundle-levels {
    display: flex;
    align-items: center;
    gap: 12px;
}
.cr-bl {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    width: 48px; height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244,237,216,0.1);
    color: var(--cream);
    border: 1.5px solid rgba(244,237,216,0.2);
    transition: background 0.2s ease;
}
.cr-bundle-card:hover .cr-bl { background: rgba(244,237,216,0.16); }
.cr-bl-arrow { color: rgba(196,154,10,0.8); font-size: 1.2rem; }

.cr-bundle-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}
.cr-bundle-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: rgba(244,237,216,0.82);
    line-height: 1.55;
}
.cr-bundle-points li svg {
    width: 16px; height: 16px;
    stroke: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}
.cr-bundle-duration {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    background: rgba(196,154,10,0.12);
    border: 1px solid rgba(196,154,10,0.28);
    border-radius: 20px;
    padding: 8px 18px;
}
.cr-bundle-duration svg { width: 14px; height: 14px; }

/* ── Special Programs ── */
.cr-special-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.cr-special-card {
    scroll-margin-top: calc(var(--nav-height) + 68px);
    background: var(--white);
    border: 1px solid rgba(26,77,46,0.1);
    border-radius: var(--radius);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}
.cr-special-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), rgba(196,154,10,0.3));
    border-radius: var(--radius) var(--radius) 0 0;
}
.cr-special-card:hover {
    box-shadow: 0 16px 48px rgba(26,77,46,0.12);
    transform: translateY(-4px);
}

.cr-special-icon {
    width: 56px; height: 56px;
    background: rgba(26,77,46,0.06);
    border: 1.5px solid rgba(26,77,46,0.14);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, transform 0.25s ease;
}
.cr-special-card:hover .cr-special-icon {
    background: rgba(26,77,46,0.1);
    transform: rotate(-5deg) scale(1.08);
}
.cr-special-icon svg { width: 28px; height: 28px; stroke: var(--green); }

.cr-special-body { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.cr-special-eyebrow {
    font-size: 0.62rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 2px;
}
.cr-special-title {
    font-family: var(--font-serif);
    font-size: 1.25rem; font-weight: 600;
    color: var(--text-dark); margin-bottom: 6px;
}
.cr-special-points {
    list-style: none; display: flex;
    flex-direction: column; gap: 8px; margin-bottom: 6px;
}
.cr-special-points li {
    font-size: 0.85rem; color: var(--text-body);
    padding-left: 16px; position: relative; line-height: 1.5;
}
.cr-special-points li::before {
    content: '';
    position: absolute; left: 0; top: 8px;
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--gold); opacity: 0.7;
}
.cr-special-note {
    font-size: 0.75rem; color: var(--text-light);
    font-style: italic; line-height: 1.5;
}
.cr-special-duration {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.73rem; font-weight: 600;
    color: var(--green);
    background: rgba(26,77,46,0.06);
    border: 1px solid rgba(26,77,46,0.12);
    border-radius: 20px; padding: 6px 14px;
    width: fit-content; margin-top: auto;
}
.cr-special-duration svg { width: 13px; height: 13px; stroke: var(--green); }

/* ─────────────────────────────────────────────
   EXAMS SECTION
───────────────────────────────────────────── */
.cr-exams {
    background: linear-gradient(160deg, #0f2a1a 0%, #1A4D2E 55%, #163d24 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}
.cr-exams .section-container {
    padding-top: 44px;
    padding-bottom: 48px;
}
.cr-exams::before {
    content: '';
    position: absolute;
    top: -100px; left: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,154,10,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cr-exams-intro { text-align: center; margin-bottom: 28px; }
.cr-exams-lead {
    font-size: clamp(0.88rem, 1.4vw, 0.98rem);
    color: rgba(244,237,216,0.68);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}
.cr-sub-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 6px;
}
.cr-boards-header { margin-bottom: 32px; }

/* ── Exam Boards ── */
.cr-boards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.cr-board-card {
    background: rgba(244,237,216,0.05);
    border: 1px solid rgba(196,154,10,0.18);
    border-radius: var(--radius);
    padding: 36px 30px;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.cr-board-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), rgba(196,154,10,0.3));
}
.cr-board-card:hover {
    background: rgba(244,237,216,0.09);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.cr-board-icon {
    width: 56px; height: 56px;
    background: rgba(196,154,10,0.1);
    border: 1px solid rgba(196,154,10,0.25);
    border-radius: 14px;
    display: flex; align-items: center;
    justify-content: center; margin-bottom: 20px;
    transition: transform 0.25s ease;
}
.cr-board-card:hover .cr-board-icon { transform: rotate(-8deg) scale(1.1); }
.cr-board-icon svg { width: 28px; height: 28px; stroke: var(--gold); }

.cr-board-name {
    font-family: var(--font-serif);
    font-size: 1.25rem; font-weight: 700;
    color: var(--cream); margin-bottom: 4px;
}
.cr-board-type {
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(196,154,10,0.75); margin-bottom: 14px;
}
.cr-board-desc {
    font-size: 0.84rem;
    color: rgba(244,237,216,0.62);
    line-height: 1.7; margin-bottom: 18px;
}
.cr-board-levels {
    display: flex; flex-wrap: wrap; gap: 6px;
}
.cr-board-levels span {
    font-size: 0.65rem; font-weight: 700;
    color: var(--gold);
    border: 1px solid rgba(196,154,10,0.32);
    border-radius: 5px; padding: 3px 9px;
    letter-spacing: 0.08em;
    background: rgba(196,154,10,0.07);
    transition: background 0.2s ease;
}
.cr-board-card:hover .cr-board-levels span {
    background: rgba(196,154,10,0.14);
}

/* ── Exam Structure ── */
.cr-structure-wrap {
    border-top: 1px solid rgba(196,154,10,0.14);
    padding-top: 36px;
}
.cr-structure-header { margin-bottom: 24px; }
.cr-structure-sub {
    font-size: 0.88rem;
    color: rgba(244,237,216,0.58);
    line-height: 1.7; max-width: 580px; margin-top: 10px;
}

.cr-modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.cr-module-card {
    background: rgba(244,237,216,0.04);
    border: 1px solid rgba(196,154,10,0.14);
    border-radius: var(--radius);
    padding: 32px 20px;
    text-align: center;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cr-module-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(196,154,10,0.5), transparent);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}
.cr-module-card:hover {
    background: rgba(244,237,216,0.09);
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.18);
}
.cr-module-card:hover::before { transform: scaleX(1); }

.cr-module-icon {
    width: 56px; height: 56px;
    background: rgba(196,154,10,0.1);
    border-radius: 50%;
    display: flex; align-items: center;
    justify-content: center; margin: 0 auto 16px;
    transition: transform 0.3s ease;
}
.cr-module-card:hover .cr-module-icon {
    transform: scale(1.12) rotate(-8deg);
}
.cr-module-icon svg { width: 26px; height: 26px; stroke: var(--gold); }

.cr-module-de {
    font-family: var(--font-serif);
    font-size: 1.2rem; font-weight: 600;
    color: var(--gold); margin-bottom: 2px; font-style: italic;
}
.cr-module-en {
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--cream); margin-bottom: 12px;
}
.cr-module-desc {
    font-size: 0.78rem;
    color: rgba(244,237,216,0.58);
    line-height: 1.65; margin-bottom: 16px;
    flex: 1;
}
.cr-module-time {
    display: inline-block;
    margin-top: auto;
    font-size: 0.68rem; font-weight: 700;
    color: rgba(196,154,10,0.9);
    border: 1px solid rgba(196,154,10,0.25);
    border-radius: 20px; padding: 4px 12px;
    background: rgba(196,154,10,0.07);
}

.cr-passing-note {
    display: flex; align-items: flex-start; gap: 14px;
    background: rgba(196,154,10,0.08);
    border: 1px solid rgba(196,154,10,0.22);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    font-size: 0.87rem;
    color: rgba(244,237,216,0.8);
    line-height: 1.65;
}
.cr-passing-note svg { width: 20px; height: 20px; stroke: var(--gold); flex-shrink: 0; margin-top: 1px; }
.cr-passing-note strong { color: var(--gold); }

/* ─────────────────────────────────────────────
   CTA
───────────────────────────────────────────── */
.cr-cta { padding: 56px 24px; }

/* ─────────────────────────────────────────────
   FADE-IN ANIMATION
   Elements are visible by default (no CSS opacity:0).
   GSAP controls initial hidden state via inline autoAlpha.
   .cr-visible is used only by the no-GSAP fallback observer.
───────────────────────────────────────────── */
.cr-fade {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.cr-fade.cr-visible {
    opacity: 1;
    transform: translateY(0);
}
/* No-JS safety */
.no-js .cr-fade {
    opacity: 1;
    transform: none;
}

/* ─────────────────────────────────────────────
   RESPONSIVE — TABLET 1024px
───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .cr-level-card { grid-template-columns: 170px 1fr; }
    .cr-card-body { padding: 28px 28px; }
    .cr-big-level { font-size: 3rem; }
    .cr-modules-grid { grid-template-columns: repeat(2, 1fr); }
    .cr-bundle-content { grid-template-columns: 1fr; gap: 32px; }
    .cr-journey-path { gap: 0; }
    .cr-jp-line { width: 48px; }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — MOBILE 768px
───────────────────────────────────────────── */
@media (max-width: 768px) {
    .cr-hero { min-height: 380px; padding: calc(var(--nav-height) + 44px) 20px 56px; }
    .cr-hero-heading { font-size: 2.2rem; }
    .cr-hero-sub { font-size: 0.88rem; }
    .cr-br { display: none; }
    .cr-hero-wm { font-size: 5rem; }

    .cr-level-nav-inner { padding: 8px 16px; gap: 6px; }
    .cr-pill { font-size: 0.66rem; padding: 5px 12px; }

    .cr-courses .section-container { padding-top: 40px; padding-bottom: 44px; }

    .cr-journey-path { padding: 24px 16px; gap: 0; }
    .cr-jp-node { width: 46px; height: 46px; font-size: 0.88rem; }
    .cr-jp-line { width: 32px; }
    .cr-jp-step span { font-size: 0.56rem; }

    .cr-level-card { grid-template-columns: 1fr; }
    .cr-card-accent {
        padding: 28px 28px 24px;
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }
    .cr-card-accent::after { display: none; }
    .cr-big-level { font-size: 2.8rem; }
    .cr-accent-meta { margin-top: 0; }
    .cr-card-body { padding: 24px 24px 28px; }

    .cr-bundle-card { padding: 52px 24px 32px; }
    .cr-bundle-content { grid-template-columns: 1fr; gap: 28px; }
    .cr-bundle-badge { font-size: 0.62rem; padding: 6px 12px; top: 18px; right: 18px; }
    .cr-bundle-title { font-size: 1.4rem; }

    .cr-special-grid { grid-template-columns: 1fr; gap: 16px; }

    .cr-exams .section-container { padding-top: 40px; padding-bottom: 44px; }
    .cr-boards-grid { grid-template-columns: 1fr; gap: 16px; }
    .cr-modules-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .cr-module-card { padding: 24px 16px; }
}

@media (max-width: 480px) {
    .cr-hero-heading { font-size: 1.85rem; }
    .cr-jp-line { width: 20px; }
    .cr-jp-node { width: 40px; height: 40px; font-size: 0.8rem; }
    .cr-modules-grid { grid-template-columns: 1fr 1fr; }
    .cr-module-card { padding: 18px 12px; }
}

/* ═══════════════════════════════════════════════════════
   PREMIUM ANIMATION LAYER  v3
   Ambient + interactive + scroll-driven animations
═══════════════════════════════════════════════════════ */

/* ── Hero animated gradient background ── */
.cr-hero {
    background: linear-gradient(125deg, #071a0d 0%, #1a4d2e 40%, #0f3320 65%, #163d24 100%);
    background-size: 300% 300%;
    animation: heroBreath 22s ease-in-out infinite;
}
@keyframes heroBreath {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}

/* Roaming gold orb overlay */
.cr-hero::after {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,154,10,0.07) 0%, transparent 65%);
    animation: orbFloat 24s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
    top: -150px; left: -150px;
}
@keyframes orbFloat {
    0%   { transform: translate(0vw, 0px)   scale(1);   }
    33%  { transform: translate(55vw, 30px)  scale(1.3); }
    66%  { transform: translate(25vw, -50px) scale(0.8); }
    100% { transform: translate(65vw, 20px)  scale(1.2); }
}

/* ── Word-wrap containers for hero heading JS split ── */
.cr-hw  { display: inline-block; overflow: hidden; vertical-align: bottom; }
.cr-hwi { display: inline-block; }

/* ── Card accent shimmer sweep on hover ── */
.cr-card-accent { overflow: hidden; }
.cr-card-accent::before {
    content: '';
    position: absolute;
    top: 0; left: -90%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: skewX(-18deg);
    pointer-events: none;
    z-index: 2;
}
.cr-level-card:hover .cr-card-accent::before {
    animation: accentSweep 0.72s ease forwards;
}
@keyframes accentSweep {
    from { left: -90%; }
    to   { left: 145%; }
}

/* ── Level number ambient glow ── */
.cr-big-level { animation: levelGlow 5s ease-in-out infinite; }
@keyframes levelGlow {
    0%, 100% { text-shadow: 0 2px 12px rgba(255,255,255,0.06); }
    50%       { text-shadow: 0 2px 36px rgba(255,255,255,0.26), 0 0 70px rgba(255,255,255,0.06); }
}

/* ── Journey node ping rings ── */
.cr-jp-node { position: relative; }
.cr-jp-node::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0;
    animation: nodePing 4s ease-out infinite;
    pointer-events: none;
}
.cr-jp-step:nth-child(1)  .cr-jp-node::after { animation-delay: 0s;    }
.cr-jp-step:nth-child(3)  .cr-jp-node::after { animation-delay: 0.8s;  }
.cr-jp-step:nth-child(5)  .cr-jp-node::after { animation-delay: 1.6s;  }
.cr-jp-step:nth-child(7)  .cr-jp-node::after { animation-delay: 2.4s;  }
.cr-jp-step:nth-child(9)  .cr-jp-node::after { animation-delay: 3.2s;  }
@keyframes nodePing {
    0%   { transform: scale(1);   opacity: 0.55; }
    100% { transform: scale(2.2); opacity: 0;    }
}

/* ── Level card clean hover ── */
.cr-level-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 52px rgba(26,77,46,0.16);
}

/* ── Bundle card animated gradient ── */
.cr-bundle-card {
    background: linear-gradient(125deg, #071a0d 0%, #1A4D2E 45%, #0f3320 70%, #163d24 100%);
    background-size: 250% 250%;
    animation: bundleShift 18s ease-in-out infinite;
}
@keyframes bundleShift {
    0%, 100% { background-position: 0%   0%;   }
    50%       { background-position: 100% 100%; }
}

/* Badge heartbeat */
.cr-bundle-badge { animation: badgeHeart 4s ease-in-out infinite; }
@keyframes badgeHeart {
    0%, 100% { box-shadow: 0 4px 14px rgba(196,154,10,0.4); transform: scale(1);    }
    50%       { box-shadow: 0 4px 30px rgba(196,154,10,0.75), 0 0 0 6px rgba(196,154,10,0.12); transform: scale(1.04); }
}

/* ── Enrol button shimmer on hover ── */
.cr-card-enrol { position: relative; overflow: hidden; }
.cr-card-enrol::before {
    content: '';
    position: absolute;
    top: 0; left: -95%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.24), transparent);
    transform: skewX(-18deg);
    pointer-events: none;
}
.cr-card-enrol:hover::before { animation: btnSweep 0.55s ease forwards; }
@keyframes btnSweep {
    from { left: -95%; }
    to   { left: 145%; }
}
.cr-card-enrol:hover     { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.22); }
.cr-card-enrol:hover svg { transform: translateX(4px); }

/* ── Section heading gold underline draw ── */
.section-heading { position: relative; display: inline-block; }
.section-heading::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), rgba(196,154,10,0.3));
    transition: width 1.1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
    border-radius: 2px;
}
.cr-anim-done .section-heading::after { width: 100%; }

/* ── Exam board hover sweep ── */
.cr-board-card { overflow: hidden; }
.cr-board-card::before {
    content: '';
    position: absolute;
    top: 0; left: -85%;
    width: 48%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(196,154,10,0.07), transparent);
    transform: skewX(-18deg);
    pointer-events: none;
}
.cr-board-card:hover::before { animation: boardSweep 0.65s ease forwards; }
@keyframes boardSweep {
    from { left: -85%; }
    to   { left: 135%; }
}

/* ── CTA background orb ── */
.cr-cta { position: relative; overflow: hidden; }
.cr-cta::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,77,46,0.06) 0%, transparent 65%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: ctaOrb 14s ease-in-out infinite alternate;
    pointer-events: none;
}
@keyframes ctaOrb {
    from { transform: translate(-50%, -50%) scale(0.75); opacity: 0.5; }
    to   { transform: translate(-50%, -50%) scale(1.4);  opacity: 1;   }
}

/* ── Scroll progress glow ── */
.cr-scroll-progress {
    box-shadow: 0 0 10px rgba(196,154,10,0.5), 0 0 20px rgba(196,154,10,0.2);
}

/* ═══════════════════════════════════════════════════════
   ENTERPRISE 3D LAYER
   Floating chips · cursor spotlight · glassmorphism ·
   3D scroll entrances · deep shadows
═══════════════════════════════════════════════════════ */

/* ── Floating hero level chips ── */
.cr-hero-floats {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}
.cr-fc {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-weight: 700;
    border-radius: 16px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.14);
    color: #fff;
    animation: chipDrift var(--cd,8s) ease-in-out infinite alternate;
    animation-delay: var(--co,0s);
    will-change: transform;
}
@keyframes chipDrift {
    0%   { transform: translateY(0px)   rotate(var(--r1,-4deg)) scale(1);    }
    100% { transform: translateY(-22px) rotate(var(--r2, 4deg)) scale(1.04); }
}

.cr-fc-a1 { top:18%; left:6%;   width:64px; height:64px; font-size:1.15rem; background:rgba(26,77,46,0.45);  box-shadow:0 8px 32px rgba(26,77,46,0.4);  --cd:7s;  --co:0s;   --r1:-7deg;  --r2:4deg;  }
.cr-fc-a2 { top:62%; left:4%;   width:50px; height:50px; font-size:0.95rem; background:rgba(26,77,46,0.28);  box-shadow:0 6px 24px rgba(26,77,46,0.28); --cd:10s; --co:-3s;  --r1:5deg;   --r2:-6deg; opacity:0.8; }
.cr-fc-b1 { top:14%; right:10%; width:70px; height:70px; font-size:1.2rem;  background:rgba(122,92,0,0.45);  box-shadow:0 8px 32px rgba(122,92,0,0.4);  --cd:8s;  --co:-1s;  --r1:-8deg;  --r2:6deg;  }
.cr-fc-b2 { top:58%; right:6%;  width:54px; height:54px; font-size:1rem;    background:rgba(122,92,0,0.28);  box-shadow:0 6px 24px rgba(122,92,0,0.28); --cd:9s;  --co:-2.5s; --r1:6deg;   --r2:-5deg; opacity:0.8; }
.cr-fc-c1 { top:36%; right:20%; width:78px; height:78px; font-size:1.3rem;  background:rgba(107,20,20,0.45); box-shadow:0 10px 36px rgba(107,20,20,0.4);--cd:6s;  --co:-1.5s; --r1:-10deg; --r2:5deg;  }

/* ── Cursor spotlight overlay (added via JS) ── */
.cr-card-highlight {
    position: absolute;
    inset: 0;
    z-index: 6;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.cr-level-card:hover .cr-card-highlight { opacity: 1; }

/* Override CSS hover — GSAP handles 3D transform, CSS handles glow only */
.cr-level-card:hover {
    transform: none !important;
    box-shadow: 0 28px 64px rgba(26,77,46,0.22), 0 8px 24px rgba(26,77,46,0.12);
}

/* ── Diagonal stripe texture merged into gradient (blend-mode removed) ── */
.cr-accent-a {
    background:
        repeating-linear-gradient(-52deg, transparent, transparent 14px, rgba(255,255,255,0.03) 14px, rgba(255,255,255,0.03) 15px),
        linear-gradient(150deg, #1A4D2E 0%, #2d7346 100%);
}
.cr-accent-b {
    background:
        repeating-linear-gradient(-52deg, transparent, transparent 14px, rgba(255,255,255,0.03) 14px, rgba(255,255,255,0.03) 15px),
        linear-gradient(150deg, #7a5c00 0%, #b08800 100%);
}
.cr-accent-c {
    background:
        repeating-linear-gradient(-52deg, transparent, transparent 14px, rgba(255,255,255,0.03) 14px, rgba(255,255,255,0.03) 15px),
        linear-gradient(150deg, #6B1414 0%, #9a1e1e 100%);
}

/* ── Glassmorphism on exam board cards ── */
.cr-board-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 4px 24px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.06);
}
.cr-board-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(196,154,10,0.28);
    box-shadow: 0 16px 48px rgba(0,0,0,0.35), 0 0 0 1px rgba(196,154,10,0.15), inset 0 1px 0 rgba(255,255,255,0.1);
}

/* ── Glassmorphism on module cards ── */
.cr-module-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(196,154,10,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.04);
}
.cr-module-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(196,154,10,0.22);
    box-shadow: 0 14px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
}

/* ── Enhanced level card shadow depth ── */
.cr-level-card {
    box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 4px 12px rgba(26,77,46,0.06),
        0 12px 32px rgba(26,77,46,0.05);
    transition: box-shadow 0.4s ease;
}

/* ── Journey path enterprise depth ── */
.cr-journey-path {
    box-shadow: 0 8px 40px rgba(26,77,46,0.1), 0 1px 0 rgba(255,255,255,0.8) inset;
    background: linear-gradient(180deg, #fff 0%, #fafdf8 100%);
}
.cr-jp-node {
    box-shadow: 0 8px 24px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.25);
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.cr-jp-node:hover {
    transform: scale(1.18) translateY(-5px) !important;
    box-shadow: 0 16px 40px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.3);
}

/* ── Big level number 3D text shadow depth ── */
.cr-accent-a .cr-big-level { text-shadow: 0 4px 12px rgba(0,0,0,0.25), 0 8px 32px rgba(0,0,0,0.15); }
.cr-accent-b .cr-big-level { text-shadow: 0 4px 12px rgba(0,0,0,0.3),  0 8px 32px rgba(0,0,0,0.18); }
.cr-accent-c .cr-big-level { text-shadow: 0 4px 12px rgba(0,0,0,0.3),  0 8px 32px rgba(0,0,0,0.18); }

/* ── Special cards enterprise ── */
.cr-special-card {
    box-shadow: 0 4px 20px rgba(26,77,46,0.07), 0 1px 3px rgba(0,0,0,0.04);
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
}
.cr-special-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 24px 56px rgba(26,77,46,0.15), 0 8px 16px rgba(26,77,46,0.08);
}

/* ── Bundle card enterprise glow ── */
.cr-bundle-card {
    box-shadow:
        0 8px 32px rgba(26,77,46,0.3),
        0 2px 8px rgba(26,77,46,0.2),
        inset 0 1px 0 rgba(255,255,255,0.08);
}
.cr-bundle-card:hover {
    box-shadow:
        0 24px 72px rgba(26,77,46,0.4),
        0 8px 24px rgba(26,77,46,0.25),
        0 0 0 1px rgba(196,154,10,0.2),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

/* ══════════════════════════════════════════════════
   CARD REDESIGN v5 — FULL-WIDTH FEATURE CARDS
   No grid · each level = full-width showcase row ·
   cream body · gold accents · watermark depth
══════════════════════════════════════════════════ */

/* ── Full-width stacked rows, no grid ── */
.cr-levels-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

/* ── Card: wide horizontal split, much taller ── */
.cr-level-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 210px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(196,154,10,0.15);
    background: var(--cream);
    box-shadow: 0 2px 20px rgba(26,77,46,0.07), 0 1px 4px rgba(0,0,0,0.04);
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

/* ── Accent panel: left column, full height ── */
.cr-card-accent {
    min-height: unset;
    width: unset;
    padding: 40px 28px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

/* ── Card body: cream with gold left border + watermark ── */
.cr-card-body {
    border-top: none;
    border-left: 3px solid rgba(196,154,10,0.22);
    background: var(--cream);
    padding: 36px 48px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

/* ── Duration badge: white on all accent panels ── */
.cr-accent-a .cr-accent-meta,
.cr-accent-b .cr-accent-meta,
.cr-accent-c .cr-accent-meta {
    color: rgba(255,255,255,0.92);
    background: rgba(0,0,0,0.22);
    border-color: rgba(255,255,255,0.2);
}
.cr-accent-a .cr-accent-meta svg,
.cr-accent-b .cr-accent-meta svg,
.cr-accent-c .cr-accent-meta svg { stroke: rgba(255,255,255,0.92); }

/* Faint watermark letter behind body content (like home page why-cards) */
.cr-accent-a + .cr-card-body::after { content: 'A'; }
.cr-accent-b + .cr-card-body::after { content: 'B'; }
.cr-accent-c + .cr-card-body::after { content: 'C'; }
.cr-card-body::after {
    position: absolute;
    right: 8px;
    bottom: -24px;
    font-family: var(--font-serif);
    font-size: 11rem;
    font-weight: 700;
    color: var(--green);
    opacity: 0.04;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* ── Body text: dark, matching home page ── */
.cr-level-card .cr-card-points li {
    color: var(--text-body);
    font-size: 0.9rem;
}

/* Gold diamond bullet (matches home page gold accent dots) */
.cr-level-card .cr-card-points li::before {
    background: var(--gold);
    opacity: 0.75;
    border-radius: 2px;
    transform: rotate(45deg);
    width: 7px;
    height: 7px;
    top: 8px;
}

/* ── Enrol buttons: level-specific solid colors ── */
.cr-accent-a + .cr-card-body .cr-card-enrol {
    background: linear-gradient(135deg, #1A4D2E, #2d7346);
    color: #fff; border: none;
    box-shadow: 0 4px 14px rgba(26,77,46,0.25);
}
.cr-accent-a + .cr-card-body .cr-card-enrol:hover { box-shadow: 0 8px 22px rgba(26,77,46,0.4); }
.cr-accent-b + .cr-card-body .cr-card-enrol {
    background: linear-gradient(135deg, #7a5c00, #b08800);
    color: #fff; border: none;
    box-shadow: 0 4px 14px rgba(122,92,0,0.25);
}
.cr-accent-b + .cr-card-body .cr-card-enrol:hover { box-shadow: 0 8px 22px rgba(122,92,0,0.4); }
.cr-accent-c + .cr-card-body .cr-card-enrol {
    background: linear-gradient(135deg, #6B1414, #9a1e1e);
    color: #fff; border: none;
    box-shadow: 0 4px 14px rgba(107,20,20,0.25);
}
.cr-accent-c + .cr-card-body .cr-card-enrol:hover { box-shadow: 0 8px 22px rgba(107,20,20,0.4); }

/* ── Hover: lift + deepen (matches home page card hover) ── */
.cr-level-card:hover {
    border-color: rgba(196,154,10,0.3) !important;
    box-shadow: 0 20px 52px rgba(26,77,46,0.16), 0 4px 12px rgba(0,0,0,0.06) !important;
}

/* ═══════════════════════════════════════════════════════
   COURSES PAGE — FULL MOBILE RESPONSIVE
   Matches home & about page responsive approach
═══════════════════════════════════════════════════════ */

/* ── Tablet ≤ 1024px ── */
@media (max-width: 1024px) {
    /* Hero */
    .cr-hero { padding: calc(var(--nav-height) + 52px) 20px 72px; }
    .cr-hero-heading { font-size: clamp(2.2rem, 5vw, 3.4rem); }

    /* Level cards: narrower accent */
    .cr-level-card { grid-template-columns: 220px 1fr; }
    .cr-card-accent { padding: 32px 22px; }
    .cr-card-body { padding: 28px 32px; }
    .cr-big-level { font-size: 3rem; }

    /* Boards + modules */
    .cr-boards-grid { grid-template-columns: repeat(2, 1fr); }
    .cr-modules-grid { grid-template-columns: repeat(2, 1fr); }

    /* Bundle */
    .cr-bundle-card { padding: 60px 36px 32px; }
    .cr-bundle-content { grid-template-columns: 1fr; gap: 32px; }

    /* Journey */
    .cr-journey-path { gap: 0; }
    .cr-jp-line { width: 44px; }

    /* Special programs */
    .cr-special-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Mobile ≤ 768px ── */
@media (max-width: 768px) {
    /* Hero */
    .cr-hero { min-height: 340px; padding: calc(var(--nav-height) + 36px) 20px 52px; }
    .cr-hero-heading { font-size: 2rem; }
    .cr-hero-sub { font-size: 0.875rem; max-width: 100%; }
    .cr-br { display: none; }
    .cr-hero-wm { font-size: 4.5rem; }

    /* Level navigator */
    .cr-level-nav-inner { padding: 8px 16px; gap: 6px; }
    .cr-pill { font-size: 0.64rem; padding: 5px 11px; }

    /* Courses section */
    .cr-courses .section-container { padding-top: 36px; padding-bottom: 40px; }
    .cr-section-intro { margin-bottom: 28px; }

    /* Journey path */
    .cr-journey-path { padding: 18px 12px; overflow-x: auto; }
    .cr-jp-node { width: 44px; height: 44px; font-size: 0.84rem; }
    .cr-jp-line { width: 28px; }
    .cr-jp-step span { font-size: 0.54rem; }

    /* Level cards: vertical stack */
    .cr-level-card { grid-template-columns: 1fr; min-height: unset; }
    .cr-card-accent {
        padding: 26px 22px 20px;
        flex-direction: row;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
    }
    .cr-card-accent::after { display: none; }
    .cr-big-level { font-size: 2.6rem; }
    .cr-accent-meta { margin-top: 0; }
    .cr-card-body {
        border-left: none;
        border-top: 3px solid rgba(196,154,10,0.2);
        padding: 20px 20px 24px;
    }
    .cr-card-body::after { display: none; }

    /* Bundle card */
    .cr-bundle-card { padding: 48px 20px 28px; }
    .cr-bundle-content { grid-template-columns: 1fr; gap: 24px; }
    .cr-bundle-badge { font-size: 0.6rem; padding: 6px 10px; top: 16px; right: 16px; }
    .cr-bundle-title { font-size: 1.3rem; }

    /* Special programs */
    .cr-special-grid { grid-template-columns: 1fr; gap: 14px; }

    /* Exams section */
    .cr-exams .section-container { padding-top: 36px; padding-bottom: 40px; }
    .cr-exams-intro { margin-bottom: 32px; }
    .cr-boards-grid { grid-template-columns: 1fr; gap: 14px; margin-bottom: 48px; }
    .cr-modules-grid { grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
    .cr-module-card { padding: 20px 14px; }

    /* Passing note */
    .cr-passing-note { font-size: 0.82rem; padding: 16px 18px; gap: 10px; }

    /* CTA */
    .cr-cta { padding: 56px 20px; }
}

/* ── Small mobile ≤ 480px ── */
@media (max-width: 480px) {
    .cr-hero-heading { font-size: 1.75rem; }
    .cr-hero-eyebrow { font-size: 0.58rem; letter-spacing: 0.16em; }

    .cr-jp-line { width: 16px; }
    .cr-jp-node { width: 38px; height: 38px; font-size: 0.74rem; }
    .cr-jp-step span { font-size: 0.5rem; }

    .cr-big-level { font-size: 2.2rem; }
    .cr-accent-label { font-size: 0.7rem; }
    .cr-accent-cefr { font-size: 0.58rem; }
    .cr-card-points li { font-size: 0.84rem; }

    .cr-modules-grid { grid-template-columns: 1fr 1fr; }
    .cr-module-card { padding: 16px 10px; }
    .cr-module-de { font-size: 1rem; }
    .cr-module-en { font-size: 0.64rem; }
    .cr-module-desc { font-size: 0.72rem; }

    .cr-bundle-title { font-size: 1.15rem; }
    .cr-bundle-desc { font-size: 0.82rem; }

    .section-container { padding: 44px 16px; }
    .cr-courses .section-container { padding-top: 32px; padding-bottom: 36px; }
    .cr-exams .section-container { padding-top: 32px; padding-bottom: 36px; }
    .cr-cta { padding: 44px 16px; }
}
