    /* ===============================
   NAVBAR
================================= */

.mnav {
    background: #0e172b;
    position: sticky;
    top: 0;
    z-index: 60;
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.mnav-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 14px 24px;
    max-width: 1160px;
    margin: 0 auto;
}

.mlogo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: #fff;
    letter-spacing: .02em;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    cursor: pointer;
    background: none;
    border: none;
}

.mlogo .dots {
    display: inline-flex;
    gap: 5px;
}

.mlogo .dots i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
}

.mlogo .dots i:nth-child(1) {
    background: #ff681e;
}

.mlogo .dots i:nth-child(2) {
    background: #F5C518;
}

.mlogo .dots i:nth-child(3) {
    background: #1d9a4f;
}


.mbadge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #F5C518;
    border: 1px solid rgba(245,197,24,.4);
    padding: 3px 10px;
    border-radius: 50px;
}


.mlinks {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
}


.mlinks button {
    background: none;
    border: none;
    color: #c4cad6;
    font-weight: 500;
    font-size: 14.5px;
    padding: 8px 14px;
    border-radius: 9px;
    transition: color .15s, background .15s;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.mlinks button:hover {
    color: #fff;
    background: rgba(255,255,255,.06);
}

.mlinks button.active {
    color: #fff;
    background: rgba(255,104,30,.16);
    box-shadow: inset 0 0 0 1px rgba(255,104,30,.4);
}


.mright {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 14px;
}


.mhome {
    color: #8b93a3;
    font-size: 13.5px;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.mhome:hover {
    color: #fff;
}


.macct {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ff681e;
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    border: none;
}


/* ===============================
   COMMON WRAPPER
================================= */

.wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px 80px 24px;
}


/* ===============================
   HERO SECTION
================================= */

.sk-hero {
    background: #0e172b;
    color: #fff;
    padding: 72px 0 96px;
    position: relative;
    overflow: hidden;
}


.sk-hero::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,104,30,.28), transparent 70%);
}


.sk-hero .wrap {
    position: relative;
    z-index: 2;
}


.eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #F5C518;
    margin-bottom: 16px;
}


.sk-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 7vw, 82px) !important;
    line-height: 1.02;
    max-width: 18ch;
	text-align:start !important;
	color:#fff !important;
}


.sk-hero p.lead {
    font-size: 18px;
    color: #c4cad6;
    margin-top: 20px;
    max-width: 56ch;
}


/* HERO STATS */

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 36px;
    flex-wrap: wrap;
}


.hero-stats .stat .n {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 44px;
    color: #F5C518;
    line-height: 1;
}


.hero-stats .stat .l {
    font-size: 13px;
    color: #aeb6c6;
    letter-spacing: .04em;
}


/* ===============================
   TRY BAR
================================= */

.trybar {
    background: #fff;
    border: 1px solid #e8e8e6;
    border-radius: 18px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: -52px;
    position: relative;
    z-index: 5;
    box-shadow: 0 20px 50px rgba(14,23,43,.12);
}


.trybar .bolt {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 14px;
    background: #0e172b;
    color: #F5C518;
    display: grid;
    place-items: center;
    font-size: 26px;
}


.trybar .txt {
    flex: 1;
    min-width: 200px;
}


.trybar .txt strong {
    display: block;
    color: #0e172b;
    font-size: 17px;
}


.trybar .txt span {
    font-size: 14.5px;
    color: #777;
}


/* ===============================
   NOTE BOX
================================= */

.note {
    background: #fffaf0;
    border: 1px solid #f6e2b0;
    border-left: 4px solid #F5C518;
    border-radius: 12px;
    padding: 18px 22px;
    margin-top: 30px;
    font-size: 14.5px;
    color: #6b5a16;
}

.note strong {
    color: #4d4110;
}


/* ===============================
   KNOWLEDGE BUILDER SECTION
================================= */

.kb-section {
    background: #fffbe6;
    border: 2px solid #F5C518;
    border-radius: 24px;
    padding: 40px;
    margin-top: 42px;
}


.kb-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}


.kb-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0e172b;
    color: #F5C518;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
}


.kb-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px,5vw,52px);
    color: #0e172b;
    line-height: 1.02;
    margin: 0 0 10px;
}


.kb-subtitle {
    font-size: 16px;
    color: #4d4110;
    max-width: 60ch;
    margin: 0;
}
/* ===============================
   KNOWLEDGE PROGRESS
================================= */

.kb-progress {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.kb-step-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 80px;
    position: relative;
}

.kb-step-dot::after {
    content: "";
    position: absolute;
    top: 16px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e8d96a;
    z-index: 0;
}

.kb-step-dot:last-child::after {
    display: none;
}


.kb-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #0e172b;
    color: #F5C518;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}


.kb-dot-label {
    font-size: 11px;
    font-weight: 600;
    color: #6b5a16;
    text-align: center;
    white-space: nowrap;
}


/* ===============================
   KNOWLEDGE GRID (MERGED)
================================= */

.kb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


.kb-card {
    background: #fff;
    border: 1px solid #e8d96a;
    border-radius: 18px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform .18s, box-shadow .18s, border-color .18s;
}


.kb-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #F5C518;
}


/* Vertical divider between cards */

.kb-card::after {
    content: "";
    position: absolute;
    top: 20px;
    right: -15px;
    width: 1px;
    height: calc(100% - 40px);
    background: #ddd;
}


.kb-card:nth-child(3n)::after {
    display: none;
}


.kb-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(245,197,24,.22);
}


.kb-step-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #8a6d00;
    background: #F5C518;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 14px;
}


.kb-card h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 26px;
    color: #0e172b;
    line-height: 1.05;
    margin: 0 0 10px;
}


.kb-desc {
    flex: 1;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 18px;
}


.kb-cta .btn {
    width: 100%;
}


/* Knowledge Footer */

.kb-footnote {
    margin-top: 28px;
    background: #fff8cc;
    border: 1px solid #e8d96a;
    border-radius: 14px;
    padding: 18px 22px;
    font-size: 14px;
    color: #4d4110;
}
.seclabel {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 46px 0 22px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
}
.seclabel::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e8e8e6;
}
/* ===============================
   CONTROLS
================================= */

.controls {
    margin: 42px 0 8px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}


/* Search */

.search {
    position: relative;
}

.search svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    pointer-events: none;
}

.search input {
    width: 100% !important;
    box-sizing: border-box;
    padding: 16px 18px 16px 50px !important;
    background: #fff !important;
    border: 1px solid #e8e8e6 !important;
    border-radius: 14px !important;
    font-family: "Poppins", sans-serif;
    font-size: 15px !important;
    transition: border .15s, box-shadow .15s;
}


.search input:focus {
    outline: none;
    border-color: #ff681e;
    box-shadow: 0 0 0 4px rgba(255,104,30,.12);
}


/* Filters */

.filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}


.chip {
    background: #fff !important;
    border: 1px solid #e8e8e6 !important;
    border-radius: 50px !important;
    padding: 9px 18px !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: #2a2a2a !important;
    cursor: pointer;
    transition: all .15s ease !important;
    font-family: "Poppins", sans-serif;
}

.chip:hover {
    border-color: #0e172b !important;
	box-shadow:none !important;
}


.chip.active {
		box-shadow:none !important;
    background: #0e172b !important;
    color: #fff !important;
    border-color: #0e172b !important;
}

.chip-kb.active {
    background: #F5C518;
    color: #0e172b;
    border-color: #F5C518;
}


.chip-icon {
    margin-right: 4px;
}

.chip-count {
    opacity: .55;
    margin-left: 4px;
    font-weight: 500;
}


/* ===============================
   FEATURED GRID
================================= */

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}


/* ===============================
   FEATURE CARDS
================================= */

.fcard {
    position: relative;
    background: #fff;
    border: 1px solid #e8e8e6;
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform .18s, 
                box-shadow .18s,
                border-color .18s;
}
/* ===============================
   FEATURE CARD DETAILS
================================= */

.fcard::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: #ff681e;
}

.fcard:last-child::before {
    background: #f5a623;
}

.fcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(14, 23, 43, .12);
    border-color: transparent;
}


.fcard .top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
}


.ficon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 26px;
    background: #fff2ea;
}


.fcard:last-child .ficon {
    background: #fef3e0;
}


.popular-badge {
    background: #F5C518;
    color: #8a6d00;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 50px;
}


.fcard h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 30px;
    line-height: 1.02;
    color: #0e172b;
    margin-bottom: 8px;
}


.fcard .desc {
    font-size: 15px;
    color: #2a2a2a;
    margin-bottom: 18px;
    flex: 1;
}


.meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}


.cat-label {
    color: #ff681e;
    font-size: 12px;
    font-weight: 600;
}


.gpt-badge {
    background: #0e172b;
    color: #F5C518;
    padding: 4px 11px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .04em;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.smeta .gpt-badge {
    margin-left: 8px;
}


/* ===============================
   BUTTONS
================================= */

.cta-row {
    display: flex;
    align-items: center;
    gap: 10px;
}


.cta-row .btn-primary {
    flex: 1;
    justify-content: center;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    transition: .15s;
}


.btn-primary {
    background: #ff681e;
    color: #fff !important;
}

.btn-primary:hover {
    background: #e0540e !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 22px rgba(255,104,30,.32) !important;
}


.btn-dark {
    background: #F5C518;
    color: #0e172b;
}

.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(245,197,24,.35);
}


.kb-cta .btn{
    background: #0e172b !important;
    color: #fff !important;
}

.btn-ink:hover {
    background: #1e2d4a;
    transform: translateY(-2px);
}


.btn-sm {
    padding: 10px 18px;
    font-size: 13.5px;
}


.ziplink {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 14px;
    border-radius: 50px;
    border: 1px solid #e8e8e6;
    background: transparent;
    color: #777;
    text-decoration: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    transition: .15s;
}

.ziplink:hover {
    color: #0e172b;
    border-color: #0e172b;
}


/* ===============================
   SKILL GRID
================================= */

.sk-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}


.scard {
    background: #fff;
    border: 1px solid #e8e8e6;
    border-radius: 16px;
    padding: 22px 24px;
    display: flex;
    gap: 18px;
    align-items: center;
    transition: .18s;
}


.scard:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(14,23,43,.10);
}


.sicon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 22px;
    flex-shrink: 0;
}

.scard:nth-child(1) .sicon {
    background: #fff2ea;
}

.scard:nth-child(2) .sicon {
    background: #e6f5ec;
}

.scard:nth-child(3) .sicon {
    background: #eceef2;
}


.sbody {
    flex: 1;
    min-width: 0;
}


.scard h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 23px;
    line-height: 1.02;
    margin-bottom: 3px;
    color: #0e172b;
}


.sdesc {
    font-size: 14px;
    color: #777;
}


.smeta {
    margin-top: 8px;
}


.acts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


/* ===============================
   RESPONSIVE (MERGED)
================================= */

@media (max-width: 980px) {

    .featured-grid,
    .kb-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 860px) {

    .mlinks,
    .mhome {
        display: none;
    }
}


@media (max-width: 768px) {

    .featured-grid,
    .kb-grid,
    .sk-grid {
        grid-template-columns: 1fr;
    }

    .kb-card::after {
        display: none;
    }

    .trybar {
        flex-direction: column;
        align-items: flex-start;
    }

    .kb-section {
        padding: 24px;
    }

    .scard {
        flex-wrap: wrap;
    }

    .acts {
        width: 100%;
        flex-direction: row;
    }

    .acts .btn,
    .acts .ziplink {
        flex: 1;
        justify-content: center;
    }
}