﻿:root {
    --purple-deep: #5E1A9E;
    --purple: #7B2CBF;
    --purple-mid: #9D4EDD;
    --purple-light: #C77DFF;
    --magenta: #D63384;
    --magenta-deep: #B0276A;
    --bg: #FFFFFF;
    --bg-tint: #FDF7FF;
    --bg-wash: #FBF4FF;
    --ink: #2D1B4E;
    --ink-soft: #5A4570;
    --mute: #8A7A9E;
    --line: #ECE0F5;
    --line-strong: #D9C4ED;
    --shadow-purple: rgba(123, 44, 191, 0.18);
    --shadow-soft: rgba(123, 44, 191, 0.08);
    --gold: #D4A017;
    --gold-light: #F0C040;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.stage {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, #FFFFFF 0%, #FDF7FF 100%);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(214, 51, 132, 0.18), transparent 70%);
    top: -150px;
    right: -100px;
    animation: float 14s ease-in-out infinite;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.15), transparent 70%);
    bottom: -100px;
    left: -80px;
    animation: float 18s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -20px) scale(1.05);
    }
}

.wave-decor {
    position: absolute;
    top: 0;
    right: 0;
    width: 380px;
    height: 100%;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

/* ============ TOP NAV ============ */
.nav {
    position: relative;
    z-index: 10;
    padding: 22px 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.02em;
    color: var(--purple-deep);
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--purple), var(--magenta));
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 6px 18px var(--shadow-purple);
    position: relative;
}

    .logo-mark::after {
        content: '';
        position: absolute;
        width: 10px;
        height: 10px;
        background: white;
        border-radius: 50%;
        bottom: -3px;
        right: -3px;
        box-shadow: 0 0 0 3px var(--bg);
        animation: pulse 1.6s ease-in-out infinite;
    }

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.85);
    }
}

.logo span:last-child {
    color: var(--ink);
}

.nav-cta {
    display: flex;
    gap: 14px;
    align-items: center;
}

.nav-link {
    color: var(--ink-soft);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

    .nav-link:hover {
        color: var(--purple);
        background: var(--bg-wash);
    }

.nav-signup {
    background: var(--ink);
    color: white;
    padding: 10px 22px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .nav-signup:hover {
        background: var(--purple);
        transform: translateY(-1px);
    }

/* ============ HERO LAYOUT ============ */
.hero {
    position: relative;
    z-index: 5;
    padding: 40px 56px 0px;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.left-col {
    position: relative;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, rgba(123, 44, 191, 0.08), rgba(214, 51, 132, 0.08));
    border: 1px solid var(--line-strong);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--purple-deep);
    margin-bottom: 22px;
    opacity: 0;
    animation: rise 0.7s ease-out 0.1s forwards;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--magenta);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(214, 51, 132, 0.2);
}

h1.headline {
    font-weight: 800;
    font-size: clamp(38px, 5.2vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--purple-deep);
    margin-bottom: 16px;
}

.headline .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

    .headline .word:nth-child(1) {
        animation-delay: 0.2s;
    }

    .headline .word:nth-child(2) {
        animation-delay: 0.32s;
    }

    .headline .word:nth-child(3) {
        animation-delay: 0.44s;
    }

    .headline .word:nth-child(4) {
        animation-delay: 0.56s;
    }

.headline .brand {
    background: linear-gradient(120deg, var(--purple) 0%, var(--magenta) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

    .headline .brand::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: -4px;
        height: 4px;
        background: linear-gradient(90deg, var(--purple), var(--magenta));
        border-radius: 4px;
        transform-origin: left;
        transform: scaleX(0);
        animation: underline 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1.1s forwards;
    }

@keyframes underline {
    to {
        transform: scaleX(1);
    }
}

@keyframes rise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subhead {
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 14px;
    opacity: 0;
    animation: rise 0.7s ease-out 0.7s forwards;
}

.lede {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 540px;
    margin-bottom: 26px;
    opacity: 0;
    animation: rise 0.7s ease-out 0.85s forwards;
}

    .lede .highlight {
        color: var(--magenta-deep);
        font-weight: 600;
    }

    .lede .arrow {
        color: var(--magenta);
        font-weight: 700;
        margin: 0 2px;
    }

/* ============ PROCESS STRIP ============ */
.process {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    opacity: 0;
    animation: rise 0.7s ease-out 0.95s forwards;
}

.process-step {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px 10px 12px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    box-shadow: 0 4px 12px var(--shadow-soft);
    transition: all 0.3s ease;
    cursor: default;
}

    .process-step:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px var(--shadow-purple);
        border-color: var(--purple-light);
    }

.process-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    font-size: 11px;
    font-weight: 800;
}

.process-step:nth-child(1) .process-num {
    background: linear-gradient(135deg, #B47AFF, #9D4EDD);
}

.process-step:nth-child(3) .process-num {
    background: linear-gradient(135deg, #9D4EDD, #7B2CBF);
}

.process-step:nth-child(5) .process-num {
    background: linear-gradient(135deg, #7B2CBF, #5E1A9E);
}

.process-arrow {
    color: var(--purple-light);
    font-size: 18px;
    font-weight: 700;
}

/* ============ CTA ROW ============ */
.cta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    opacity: 0;
    animation: rise 0.7s ease-out 1.05s forwards;
}

.btn-primary {
    position: relative;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--magenta) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 12px 30px -8px var(--shadow-purple);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

    .btn-primary::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.5s ease, height 0.5s ease;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 40px -10px var(--shadow-purple);
    }

        .btn-primary:hover::before {
            width: 400px;
            height: 400px;
        }

    .btn-primary span, .btn-primary svg {
        position: relative;
        z-index: 1;
    }

    .btn-primary svg {
        transition: transform 0.3s ease;
    }

    .btn-primary:hover svg {
        transform: translateX(4px);
    }

.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

    .btn-play:hover {
        color: var(--purple);
    }

.play-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--line-strong);
    display: grid;
    place-items: center;
    color: var(--purple);
    transition: all 0.3s ease;
}

.btn-play:hover .play-icon {
    border-color: var(--purple);
    background: var(--bg-wash);
    transform: scale(1.05);
}

/* ============ STATS STRIP ============ */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 22px 0 0;
    border-top: 1px solid var(--line);
    opacity: 0;
    animation: rise 0.7s ease-out 1.15s forwards;
}

.stat {
    text-align: left;
    padding-right: 16px;
    border-right: 1px solid var(--line);
}

    .stat:last-child {
        border-right: none;
    }

.stat-num {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple), var(--magenta));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 11px;
    color: var(--ink-soft);
    font-weight: 500;
    line-height: 1.3;
}

/* ============ RIGHT COLUMN: CERTIFICATE SHOWCASE ============ */
.showcase {
    position: relative;
    height: 580px;
    opacity: 0;
    animation: showcaseIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
    perspective: 1500px;
}

@keyframes showcaseIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main certificate card */
.certificate {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 440px;
    height: 320px;
    transform: translate(-50%, -50%) rotate(-3deg);
    background: linear-gradient(135deg, #FFFFFF 0%, #FBF4FF 100%);
    border-radius: 18px;
    box-shadow: 0 30px 60px -20px var(--shadow-purple), 0 0 0 1px rgba(123, 44, 191, 0.08);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 3;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

    .certificate:hover {
        transform: translate(-50%, -50%) rotate(0deg) scale(1.02);
    }

    /* Decorative gold corner */
    .certificate::before {
        content: '';
        position: absolute;
        top: -40px;
        right: -40px;
        width: 140px;
        height: 140px;
        background: radial-gradient(circle, var(--gold-light), transparent 70%);
        opacity: 0.15;
        border-radius: 50%;
    }

    /* Decorative pattern */
    .certificate::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 6px;
        background: linear-gradient(90deg, var(--purple) 0%, var(--magenta) 50%, var(--purple) 100%);
    }

.cert-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cert-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 14px;
    color: var(--purple-deep);
}

.cert-brand-mark {
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--purple), var(--magenta));
    border-radius: 7px;
    display: grid;
    place-items: center;
    color: white;
    font-size: 12px;
}

.cert-id {
    font-family: 'Plus Jakarta Sans', monospace;
    font-size: 10px;
    color: var(--mute);
    letter-spacing: 0.1em;
    font-weight: 600;
}

.cert-body {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cert-eyebrow {
    font-size: 10px;
    font-weight: 700;
    color: var(--magenta);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.cert-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.cert-recipient {
    font-size: 13px;
    color: var(--ink-soft);
    margin-bottom: 4px;
}

.cert-name {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(120deg, var(--purple), var(--magenta));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.01em;
}

/* Gold seal */
.cert-seal {
    position: absolute;
    right: 28px;
    bottom: 50px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    display: grid;
    place-items: center;
    color: white;
    box-shadow: 0 8px 20px rgba(212, 160, 23, 0.4);
    z-index: 2;
    border: 3px solid white;
}

    .cert-seal::before {
        content: '';
        position: absolute;
        inset: -8px;
        border: 1px dashed var(--gold);
        border-radius: 50%;
        opacity: 0.6;
        animation: spin 25s linear infinite;
    }

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.cert-seal svg {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 1;
}

.cert-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 2;
}

.cert-sig {
    border-top: 2px solid var(--ink);
    padding-top: 4px;
    font-size: 10px;
    color: var(--ink-soft);
    width: 100px;
    font-weight: 600;
}

.cert-date {
    font-size: 10px;
    color: var(--mute);
    text-align: right;
    font-weight: 600;
}

/* ============ FLOATING RECOGNITION BADGES ============ */
.recog {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 16px 40px var(--shadow-purple);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
    transition: transform 0.4s ease;
}

    .recog:hover {
        transform: translateY(-4px) scale(1.03);
    }

.recog-1 {
    top: 6%;
    left: 4%;
    animation: recogFloat1 4s ease-in-out infinite;
}

.recog-2 {
    top: 11%;
    right: 2%;
    animation: recogFloat2 5s ease-in-out infinite;
}

.recog-3 {
    bottom: 4%;
    left: 8%;
    animation: recogFloat3 4.5s ease-in-out infinite;
}

.recog-4 {
    bottom: 10%;
    right: 0%;
    animation: recogFloat1 4.2s ease-in-out infinite;
}

@keyframes recogFloat1 {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-12px) rotate(-2deg);
    }
}

@keyframes recogFloat2 {
    0%, 100% {
        transform: translateY(0) rotate(3deg);
    }

    50% {
        transform: translateY(-10px) rotate(3deg);
    }
}

@keyframes recogFloat3 {
    0%, 100% {
        transform: translateY(0) rotate(2deg);
    }

    50% {
        transform: translateY(-8px) rotate(2deg);
    }
}

.recog-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: white;
    font-weight: 800;
    font-size: 12px;
    flex-shrink: 0;
    letter-spacing: -0.02em;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

    .recog-badge.nsdc {
        background: linear-gradient(135deg, #FF6B35, #F77F00);
    }

    .recog-badge.dpiit {
        background: linear-gradient(135deg, #06A77D, #038C5A);
    }

    .recog-badge.startup {
        background: linear-gradient(135deg, var(--purple), var(--magenta));
        font-size: 20px;
    }

    .recog-badge.verified {
        background: linear-gradient(135deg, #2563EB, #1D4ED8);
    }

.recog-text {
    line-height: 1.25;
}

    .recog-text .name {
        display: block;
        font-size: 13px;
        font-weight: 800;
        color: var(--ink);
        letter-spacing: -0.01em;
    }

    .recog-text .tag {
        display: block;
        font-size: 10px;
        color: var(--mute);
        font-weight: 600;
        letter-spacing: 0.02em;
    }

/* Decorative sparkles */
.sparkle {
    position: absolute;
    color: var(--magenta);
    z-index: 4;
    animation: sparkle 3s ease-in-out infinite;
}

.sparkle-1 {
    top: 30%;
    left: 18%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 65%;
    right: 18%;
    animation-delay: -1s;
}

.sparkle-3 {
    top: 8%;
    left: 48%;
    animation-delay: -2s;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1.1) rotate(180deg);
    }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
    .nav {
        padding: 18px 24px;
    }

    .nav-link {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px 24px;
    }

    .showcase {
        height: 500px;
    }

    .certificate {
        width: 90%;
        max-width: 400px;
        height: 290px;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 8px;
    }

    .stat {
        border-right: none;
    }
}

@media (max-width: 600px) {
    h1.headline {
        font-size: 36px;
    }

    .subhead {
        font-size: 18px;
    }

    .cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary {
        justify-content: center;
    }

    .process {
        gap: 4px;
    }

    .process-step {
        font-size: 11px;
        padding: 8px 12px 8px 8px;
    }

    .process-num {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .process-arrow {
        font-size: 14px;
    }

    .certificate {
        width: 95%;
        height: 260px;
        padding: 20px;
    }

    .cert-title {
        font-size: 18px;
    }

    .cert-name {
        font-size: 16px;
    }

    .cert-seal {
        width: 56px;
        height: 56px;
        right: 20px;
        bottom: 40px;
    }

        .cert-seal svg {
            width: 24px;
            height: 24px;
        }

    .recog {
        padding: 10px 14px;
    }

    .recog-badge {
        width: 36px;
        height: 36px;
        font-size: 10px;
    }

        .recog-badge.startup {
            font-size: 16px;
        }

    .recog-text .name {
        font-size: 11px;
    }

    .recog-text .tag {
        font-size: 9px;
    }

    .recog-1 {
        top: 2%;
        left: 2%;
    }

    .recog-2 {
        top: 12%;
        right: 2%;
    }

    .recog-3 {
        bottom: 4%;
        left: 4%;
    }

    .recog-4 {
        bottom: 8%;
        right: 2%;
    }
}

.certificate-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 440px;
    transform: translate(-50%, -50%) rotate(-3deg);
    border-radius: 18px;
    box-shadow: 0 30px 60px -20px rgba(123,44,191,0.18);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 3;
}

    .certificate-img:hover {
        transform: translate(-50%, -50%) rotate(0deg) scale(1.02);
    }


/* ============== POPULAR COURSES ============== */
.popular {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-tint) 100%);
    max-width: none;
    padding: 90px 56px;
}

.popular-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.popular-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    gap: 30px;
    flex-wrap: wrap;
}

    .popular-head .heading-block {
        flex: 1;
        min-width: 300px;
    }

    .popular-head .section-lede {
        margin-bottom: 0;
    }

.popular-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pop-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px var(--shadow-soft);
}

    .pop-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 28px 60px var(--shadow-purple);
        border-color: var(--purple-light);
    }

.pop-thumb {
    height: 160px;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.pop-cta:hover{
    color:#fff;
}

.pop-card:nth-child(1) .pop-thumb {
    background: linear-gradient(135deg, #FFE5F0, #F8D7E8);
}

.pop-card:nth-child(2) .pop-thumb {
    background: linear-gradient(135deg, #E8DCFE, #D4C2F8);
}

.pop-card:nth-child(3) .pop-thumb {
    background: linear-gradient(135deg, #DCFCE7, #BBF7D0);
}

.pop-card:nth-child(4) .pop-thumb {
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
}

.pop-illustration {
    width: 100px;
    height: 100px;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.pop-card:hover .pop-illustration {
    transform: scale(1.15) rotate(-5deg);
}

.pop-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: white;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: var(--purple-deep);
    letter-spacing: 0.02em;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.pop-fav {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    display: grid;
    place-items: center;
    color: var(--mute);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

    .pop-fav:hover, .pop-fav.faved {
        color: var(--magenta);
        transform: scale(1.15);
    }

.pop-body {
    padding: 22px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pop-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    font-size: 11px;
    color: var(--mute);
    font-weight: 600;
}

    .pop-meta span {
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }

    .pop-meta svg {
        color: var(--purple);
    }

.pop-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.pop-desc {
    font-size: 13px;
    line-height: 1.5;
    color: var(--ink-soft);
    margin-bottom: 18px;
    flex: 1;
}

.pop-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.pop-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--ink);
}

    .pop-rating svg {
        color: var(--gold);
    }

    .pop-rating .reviews {
        color: var(--mute);
        font-weight: 500;
    }

.pop-cta {
    background: linear-gradient(135deg, var(--purple), var(--magenta));
    color: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px var(--shadow-purple);
    transition: all 0.3s ease;
}

    .pop-cta:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 20px var(--shadow-purple);
    }

/* ============== ALL COURSES ============== */
.all-courses {
    background: var(--bg);
    max-width: none;
    padding: 90px 56px;
}

.all-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.all-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    gap: 30px;
    flex-wrap: wrap;
}

    .all-head .heading-block {
        flex: 1;
        min-width: 300px;
    }

.course-count {
    font-size: 14px;
    color: var(--ink-soft);
    font-weight: 500;
    padding: 10px 18px;
    background: var(--bg-tint);
    border: 1px solid var(--line);
    border-radius: 100px;
}

    .course-count strong {
        color: var(--purple-deep);
        font-weight: 800;
    }

.filter-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

.chip {
    padding: 10px 20px;
    background: white;
    border: 1.5px solid var(--line);
    border-radius: 100px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-soft);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

    .chip:hover:not(.active) {
        border-color: var(--purple-light);
        color: var(--purple);
        transform: translateY(-1px);
    }

    .chip.active {
        background: linear-gradient(135deg, var(--purple), var(--magenta));
        color: white;
        border-color: transparent;
        box-shadow: 0 8px 20px var(--shadow-purple);
    }

    .chip .chip-count {
        margin-left: 6px;
        opacity: 0.7;
        font-weight: 500;
    }

.all-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mini-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

    .mini-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(180deg, var(--cat-color-1, var(--purple)), var(--cat-color-2, var(--magenta)));
        transform: scaleY(0.4);
        transform-origin: center;
        transition: transform 0.4s ease;
    }

    .mini-card:hover {
        border-color: var(--purple-light);
        transform: translateY(-4px);
        box-shadow: 0 20px 40px var(--shadow-purple);
    }

        .mini-card:hover::before {
            transform: scaleY(1);
        }

    .mini-card.hidden {
        opacity: 0;
        transform: scale(0.95);
        pointer-events: none;
        position: absolute;
        visibility: hidden;
    }

    .mini-card[data-cat="compliance"] {
        --cat-color-1: #FF6B35;
        --cat-color-2: #F77F00;
    }

    .mini-card[data-cat="wellbeing"] {
        --cat-color-1: #D63384;
        --cat-color-2: #B0276A;
    }

    .mini-card[data-cat="sustainability"] {
        --cat-color-1: #06A77D;
        --cat-color-2: #038C5A;
    }

    .mini-card[data-cat="technology"] {
        --cat-color-1: #2563EB;
        --cat-color-2: #1D4ED8;
    }

    .mini-card[data-cat="engineering"] {
        --cat-color-1: #7B2CBF;
        --cat-color-2: #5E1A9E;
    }

    .mini-card[data-cat="career"] {
        --cat-color-1: #D4A017;
        --cat-color-2: #B8860B;
    }

.mini-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 12px;
}

.mini-cat {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    color: var(--cat-color-1);
    background: color-mix(in srgb, var(--cat-color-1) 12%, transparent);
}

.mini-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--cat-color-1), var(--cat-color-2));
    display: grid;
    place-items: center;
    color: white;
    flex-shrink: 0;
}

.mini-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.mini-desc {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.5;
    margin-bottom: 16px;
    flex: 1;
}

.mini-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    color: var(--mute);
    font-weight: 600;
    margin-bottom: 16px;
}

    .mini-meta span {
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }

    .mini-meta svg {
        color: var(--cat-color-1);
    }

.mini-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.mini-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--ink);
}

    .mini-price.free {
        color: #06A77D;
        text-transform: uppercase;
        font-size: 13px;
        letter-spacing: 0.05em;
    }

    .mini-price del {
        font-size: 12px;
        color: var(--mute);
        font-weight: 500;
        margin-right: 6px;
    }

.mini-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-tint);
    color: var(--purple);
    display: grid;
    place-items: center;
    transition: all 0.3s ease;
}

.mini-card:hover .mini-arrow {
    background: linear-gradient(135deg, var(--purple), var(--magenta));
    color: white;
    transform: translateX(4px);
}

.empty-state {
    grid-column: 1 / -1;
    padding: 60px;
    text-align: center;
    color: var(--ink-soft);
    background: var(--bg-tint);
    border-radius: 16px;
    border: 1px dashed var(--line-strong);
    display: none;
}

    .empty-state.show {
        display: block;
    }

    .empty-state svg {
        color: var(--purple-light);
        margin-bottom: 16px;
    }

/* ============== WHY (DIFFERENTIATORS) ============== */
.why {
    background: linear-gradient(180deg, var(--bg-tint) 0%, var(--bg) 100%);
    max-width: none;
    padding: 90px 56px;
}

.why-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.why-head {
    text-align: center;
    margin-bottom: 56px;
}

    .why-head .section-title,
    .why-head .section-lede {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.why-card {
    position: relative;
    padding: 32px 28px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 8px 30px var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
    cursor: default;
}

    .why-card:hover {
        transform: translateY(-8px);
        border-color: var(--purple-light);
        box-shadow: 0 24px 50px var(--shadow-purple);
    }

.why-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--purple), var(--magenta));
    display: grid;
    place-items: center;
    color: white;
    margin-bottom: 22px;
    box-shadow: 0 10px 24px var(--shadow-purple);
    transition: transform 0.4s ease;
}

.why-card:hover .why-icon-wrap {
    transform: rotate(-8deg) scale(1.1);
}

.why-icon-wrap svg {
    width: 28px;
    height: 28px;
}

.why-stat {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple), var(--magenta));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
    line-height: 1;
}

.why-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.why-desc {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--ink-soft);
}

/* ============== FOR BUSINESS ============== */
.business {
    background: var(--bg);
    max-width: none;
    padding: 90px 56px;
}

.business-inner {
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple) 50%, var(--magenta) 100%);
    border-radius: 32px;
    padding: 70px 60px;
    position: relative;
    overflow: hidden;
    color: white;
}

    .business-inner::before {
        content: '';
        position: absolute;
        top: -150px;
        right: -150px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .business-inner::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 350px;
        height: 350px;
        background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

.business-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.business-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

    .business-eyebrow::before {
        content: '';
        width: 24px;
        height: 2px;
        background: white;
        border-radius: 2px;
    }

.business-title {
    font-size: clamp(30px, 3.6vw, 40px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}

.business-desc {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    max-width: 540px;
}

.business-list {
    list-style: none;
    margin-bottom: 36px;
}

    .business-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 8px 0;
        font-size: 14px;
        color: white;
        font-weight: 500;
    }

.business-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.business-cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--purple-deep);
    padding: 16px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

    .btn-white:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.2);
    }

.btn-outline-white {
    background: transparent;
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

    .btn-outline-white:hover {
        background: rgba(255,255,255,0.1);
        border-color: white;
        transform: translateY(-2px);
    }

.business-visual {
    position: relative;
    height: 380px;
}

.biz-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    transition: transform 0.5s ease;
}

.biz-card-1 {
    top: 0;
    left: 0;
    width: 240px;
    transform: rotate(-3deg);
    animation: bizFloat1 5s ease-in-out infinite;
}

.biz-card-2 {
    top: 80px;
    right: 0;
    width: 220px;
    transform: rotate(4deg);
    z-index: 2;
    animation: bizFloat2 6s ease-in-out infinite;
}

.biz-card-3 {
    bottom: 0;
    left: 30px;
    width: 280px;
    transform: rotate(-1deg);
    animation: bizFloat3 7s ease-in-out infinite;
}

@keyframes bizFloat1 {
    0%, 100% {
        transform: translateY(0) rotate(-3deg);
    }

    50% {
        transform: translateY(-10px) rotate(-3deg);
    }
}

@keyframes bizFloat2 {
    0%, 100% {
        transform: translateY(0) rotate(4deg);
    }

    50% {
        transform: translateY(-10px) rotate(4deg);
    }
}

@keyframes bizFloat3 {
    0%, 100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-10px) rotate(-1deg);
    }
}

.biz-card-label {
    font-size: 10px;
    color: var(--mute);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.biz-card-value {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple), var(--magenta));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.biz-card-trend {
    font-size: 11px;
    color: #06A77D;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.biz-card-bar {
    margin-top: 10px;
    height: 50px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
}

    .biz-card-bar div {
        flex: 1;
        background: linear-gradient(180deg, var(--magenta), var(--purple));
        border-radius: 3px;
        opacity: 0.8;
    }

.biz-card-3 .biz-card-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
}

    .biz-card-3 .biz-card-row:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

.biz-card-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--magenta));
    color: white;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 11px;
    flex-shrink: 0;
}

.biz-card-name {
    flex: 1;
    color: var(--ink);
    font-weight: 600;
    font-size: 12px;
}

.biz-card-status {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 100px;
    font-weight: 700;
    background: #DCFCE7;
    color: #06A77D;
}

/* ============== TESTIMONIALS ============== */
.testimonials {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-tint) 100%);
    max-width: none;
    padding: 90px 56px;
}

.testimonials-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-head {
    text-align: center;
    margin-bottom: 48px;
}

    .testimonials-head .section-title,
    .testimonials-head .section-lede {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

.testimonial-track {
    position: relative;
    overflow: hidden;
}

.testimonial-cards {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.testi-card {
    flex: 0 0 calc(33.333% - 16px);
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 30px var(--shadow-soft);
    position: relative;
    transition: all 0.4s ease;
}

    .testi-card:hover {
        transform: translateY(-6px);
        border-color: var(--purple-light);
        box-shadow: 0 20px 40px var(--shadow-purple);
    }

.testi-quote-mark {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 56px;
    line-height: 1;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple), var(--magenta));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0.2;
    font-family: serif;
}

.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
    color: var(--gold);
}

.testi-text {
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink);
    margin-bottom: 24px;
    font-weight: 500;
}

.testi-person {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 6px 16px var(--shadow-purple);
}

.testi-card:nth-child(1) .testi-avatar {
    background: linear-gradient(135deg, #B47AFF, #9D4EDD);
}

.testi-card:nth-child(2) .testi-avatar {
    background: linear-gradient(135deg, #D63384, #B0276A);
}

.testi-card:nth-child(3) .testi-avatar {
    background: linear-gradient(135deg, #7B2CBF, #5E1A9E);
}

.testi-card:nth-child(4) .testi-avatar {
    background: linear-gradient(135deg, #FF6B35, #F77F00);
}

.testi-name {
    font-size: 14px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.testi-role {
    font-size: 12px;
    color: var(--ink-soft);
    font-weight: 500;
}

.testi-controls {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 36px;
}

.testi-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--line);
    color: var(--purple);
    cursor: pointer;
    transition: all 0.3s ease;
    display: grid;
    place-items: center;
}

    .testi-arrow:hover {
        background: var(--purple);
        color: white;
        border-color: var(--purple);
        transform: scale(1.05);
        box-shadow: 0 10px 24px var(--shadow-purple);
    }

.testi-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--line-strong);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .testi-dot.active {
        width: 28px;
        border-radius: 4px;
        background: linear-gradient(90deg, var(--purple), var(--magenta));
    }

/* ============== FAQ ============== */
.faq {
    background: var(--bg);
    max-width: none;
    padding: 90px 56px;
}

.faq-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-head {
    text-align: center;
    margin-bottom: 40px;
}

    .faq-head .section-title {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }


.section-title {
    font-size: clamp(30px, 3.6vw, 42px);
    font-weight: 800;
    color: var(--purple-deep);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    max-width: 760px;/*
    text-align:left!important;*/
}

    .section-title .accent {
        background: linear-gradient(120deg, var(--purple), var(--magenta));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }



.why-head .section-title,
.why-head .section-lede {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.faq-item {
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .faq-item.open {
        border-color: var(--purple-light);
        box-shadow: 0 16px 40px var(--shadow-soft);
    }

.faq-question {
    padding: 22px 26px;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    text-align: left;
    font-family: inherit;
    transition: background 0.3s ease;
}

    .faq-question:hover {
        background: var(--bg-tint);
    }

.faq-q-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    flex: 1;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-deep);
    color: var(--purple);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.faq-item.open .faq-toggle {
    background: linear-gradient(135deg, var(--purple), var(--magenta));
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer-content {
    padding: 0 26px 24px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--ink-soft);
}

    .faq-answer-content a {
        color: var(--purple);
        font-weight: 600;
        text-decoration: none;
    }

/* ============== FINAL CTA ============== */
.final-cta {
    background: var(--bg);
    max-width: none;
    padding: 50px 56px 90px;
}

.final-cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--bg-tint), var(--bg-deep));
    border: 1px solid var(--line);
    border-radius: 32px;
    padding: 70px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .final-cta-inner::before, .final-cta-inner::after {
        content: '';
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
        z-index: 0;
    }

    .final-cta-inner::before {
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(214, 51, 132, 0.2), transparent 70%);
    }

    .final-cta-inner::after {
        bottom: -100px;
        left: -100px;
        width: 280px;
        height: 280px;
        background: radial-gradient(circle, rgba(123, 44, 191, 0.18), transparent 70%);
    }

.final-cta-content {
    position: relative;
    z-index: 1;
}

.final-cta-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--purple-deep);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

    .final-cta-title .accent {
        background: linear-gradient(120deg, var(--purple), var(--magenta));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.final-cta-desc {
    font-size: 16px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    color: var(--purple);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    padding: 14px 26px;
    border: 2px solid var(--purple-light);
    border-radius: 12px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-outline:hover {
        background: var(--purple);
        color: white;
        border-color: var(--purple);
        transform: translateY(-2px);
        box-shadow: 0 10px 25px var(--shadow-purple);
    }

/* ============== FOOTER ============== */
footer {
    background: var(--ink);
    color: rgba(255,255,255,0.8);
    padding: 70px 56px 30px;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 18px;
}

    .footer-brand .logo span:last-child {
        color: white;
    }

.footer-tag {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

    .footer-contact-item svg {
        color: var(--purple-light);
    }

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

    .footer-social a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
        color: white;
        display: grid;
        place-items: center;
        transition: all 0.3s ease;
        text-decoration: none;
    }

        .footer-social a:hover {
            background: linear-gradient(135deg, var(--purple), var(--magenta));
            transform: translateY(-3px);
        }

.footer-col h4 {
    color: white;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

    .footer-col a:hover {
        color: var(--purple-light);
    }

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1100px) {
    .popular-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .all-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testi-card {
        flex: 0 0 calc(50% - 12px);
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

        .footer-grid > div:nth-child(4) {
            grid-column: 2 / span 2;
        }
}

@media (max-width: 980px) {
    .nav {
        padding: 16px 24px;
    }

        .nav.scrolled {
            padding: 12px 24px;
        }

    .nav-link {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px 24px;
    }

    .showcase {
        height: 500px;
    }

    .certificate {
        width: 90%;
        max-width: 400px;
        height: 290px;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 8px;
    }

    .stat {
        border-right: none;
    }

    section, .popular, .all-courses, .why, .business, .testimonials, .faq, .final-cta {
        padding: 70px 24px;
    }

    .business-inner {
        padding: 50px 36px;
    }

    .business-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .business-visual {
        height: 320px;
    }

    .filter-chips {
        padding-bottom: 18px;
    }

    footer {
        padding: 50px 24px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-grid > div:nth-child(4) {
        grid-column: auto;
    }
}

@media (max-width: 600px) {
    h1.headline {
        font-size: 36px;
    }

    .subhead {
        font-size: 18px;
    }

    .cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary {
        justify-content: center;
    }

    .process {
        gap: 4px;
    }

    .process-step {
        font-size: 11px;
        padding: 8px 12px 8px 8px;
    }

    .process-num {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .process-arrow {
        font-size: 14px;
    }

    .certificate {
        width: 95%;
        height: 260px;
        padding: 20px;
    }

    .cert-title {
        font-size: 18px;
    }

    .cert-name {
        font-size: 16px;
    }

    .cert-seal {
        width: 56px;
        height: 56px;
        right: 20px;
        bottom: 40px;
    }

        .cert-seal svg {
            width: 24px;
            height: 24px;
        }

    .recog {
        padding: 10px 14px;
    }

    .recog-badge {
        width: 36px;
        height: 36px;
        font-size: 10px;
    }

        .recog-badge.startup {
            font-size: 16px;
        }

    .recog-text .name {
        font-size: 11px;
    }

    .recog-text .tag {
        font-size: 9px;
    }

    .recog-1 {
        top: 2%;
        left: 2%;
    }

    .recog-2 {
        top: 12%;
        right: 2%;
    }

    .recog-3 {
        bottom: 4%;
        left: 4%;
    }

    .recog-4 {
        bottom: 8%;
        right: 2%;
    }

    .popular-grid {
        grid-template-columns: 1fr;
    }

    .all-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .testi-card {
        flex: 0 0 100%;
        padding: 26px;
    }

    .business-inner {
        padding: 40px 24px;
        border-radius: 24px;
    }

    .biz-card {
        transform: scale(0.85);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--magenta);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

    .section-eyebrow::before {
        content: '';
        width: 24px;
        height: 2px;
        background: linear-gradient(90deg, var(--purple), var(--magenta));
        border-radius: 2px;
    }

.mini-card {
    transition: all 0.3s ease;
}
/*
    .mini-card.hidden {
        display: none !important;
    }*/

.testimonial-track {
    overflow: hidden;
}

.testimonial-cards {
    display: flex;
    transition: transform 0.5s ease;
}

.testi-card {
    min-width: 300px;
    margin-right: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    display: inline-block;
    border-radius: 50%;
    margin: 5px;
    cursor: pointer;
}

    .dot.active {
        background: #5e1a9e;
    }

.testimonial-cards {
    display: flex;
    transition: transform 0.5s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px; 
}

@media only screen and (max-width: 768px) {
    .showcase {
        display:none!important;
    }

    .business-visual{
        display:none!important;
    }
}