    :var {
        --primary-soft: rgba(210, 137, 39, 0.10);
        --primary-border: rgba(210, 137, 39, 0.22);
        --text-dark: #302921;
        --text-light: #a89d91;
        --card-bg: #fffefa;
    }





    /* --- HEADER --- */
    .header {
        text-align: center;
        margin-bottom: 52px;
        animation: fadeIn 0.7s ease both;
    }

    .header .tag {
        display: inline-block;
        font-size: 11px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--primary-color);
        font-weight: 500;
        margin-bottom: 14px;
        padding: 6px 16px;
        border: 1px solid rgba(210, 137, 39, 0.22);
        border-radius: 100px;
    }

    .header h2 {

        font-size: 30px;
        font-weight: 400;
        color: #302921;
        line-height: 1.15;
    }

    .header h2 span {
        color: var(--primary-color);
    }

    .header .sub {
        margin-top: 12px;
        font-size: 14px;
        color: #a89d91;
        font-weight: 300;
    }

    .divider {
        width: 40px;
        height: 1px;
        background: rgba(210, 137, 39, 0.22);
        margin: 24px auto 0;
    }

    /* --- GRID 4x2 --- */
    .grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }

    /* --- CARD --- */
    .card {
        background: #fffefa;
        border: 1px solid rgba(0, 0, 0, 0.04);
        border-radius: 14px;
        overflow: hidden;
        transition: all 0.35s ease;
        animation: fadeUp 0.6s ease both;
        cursor: default;
    }

    .card:nth-child(1) {
        animation-delay: 0.08s;
    }

    .card:nth-child(2) {
        animation-delay: 0.12s;
    }

    .card:nth-child(3) {
        animation-delay: 0.16s;
    }

    .card:nth-child(4) {
        animation-delay: 0.20s;
    }

    .card:nth-child(5) {
        animation-delay: 0.24s;
    }

    .card:nth-child(6) {
        animation-delay: 0.28s;
    }

    .card:nth-child(7) {
        animation-delay: 0.32s;
    }

    .card:nth-child(8) {
        animation-delay: 0.36s;
    }

    .card:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 28px rgba(210, 137, 39, 0.07);
        border-color: rgba(210, 137, 39, 0.22);
    }

    /* --- IMAGE --- */
    .card-img {
        width: 100%;
        height: 180px;
        position: relative;
        overflow: hidden;
    }

    .card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .card-img .placeholder {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(145deg, rgba(210, 137, 39, 0.10), rgba(210, 137, 39, 0.03));
    }

    .card-img .placeholder svg {
        width: 34px;
        height: 34px;
        opacity: 0.22;
        color: var(--primary-color);
    }

    /* --- CARD INFO --- */
    .card-info {
        padding: 14px 16px 16px;
    }

    .card-info h3 {
        font-size: 17px;
        font-weight: 400;
        color: #302921;
        line-height: 1.25;
        margin-bottom: 0.5rem !important;
    }

    .card-info .role {
        margin-top: 4px;
        font-size: 12px;
        color: #a89d91;
        font-weight: 300;
        line-height: 1.4;
    }


    /* --- ANIMATIONS --- */
    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(14px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 900px) {
        .grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 480px) {
        .page {
            padding: 36px 14px 56px;
        }

        .header h1 {
            font-size: 32px;
        }

        .grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .card-img {
            height: 150px;
        }
    }



    /* --- HEADER --- */
    .certs-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .certs-header h2 {
        font-size: 30px;
        font-weight: 400;
        color: #302921;
        line-height: 1.15;
    }

    .certs-header h2 span {
        color: #d28927;
    }

    .certs-header .divider {
        width: 40px;
        height: 1px;
        background: rgba(210, 137, 39, 0.22);
        margin: 20px auto 0;
    }

    /* --- SWIPER --- */
    .swiper-container {
        max-width: 1140px;
        margin: 0 auto;
        padding: 0 60px 48px;
        position: relative;
    }

    .swiper-slide {
        width: 320px;
    }

    .cert-card {
        display: block;
        border-radius: 12px;
        overflow: hidden;
        background: #f6f4ef;
        border: 1px solid rgba(0, 0, 0, 0.04);
        transition: all 0.35s ease;
        cursor: pointer;
        text-decoration: none;
    }

    .cert-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
        border-color: rgba(210, 137, 39, 0.18);
    }

    .cert-img {
        width: 100%;
        aspect-ratio: 4 / 3;
        position: relative;
        overflow: hidden;
    }

    .cert-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .cert-img .cert-placeholder {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: linear-gradient(145deg, rgba(210, 137, 39, 0.06), rgba(210, 137, 39, 0.02));
    }

    .cert-img .cert-placeholder svg {
        width: 32px;
        height: 32px;
        opacity: 0.18;
        color: #d28927;
    }

    .cert-img .cert-placeholder span {
        font-size: 11px;
        color: #a89d91;
        font-weight: 300;
    }

    /* Swiper navigation */
    .swiper-button-prev,
    .swiper-button-next {
        width: 40px !important;
        height: 40px !important;
        border-radius: 50% !important;
        border: 1px solid rgba(210, 137, 39, 0.22) !important;
        background: #ffffff !important;
        transition: all 0.3s ease !important;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 14px !important;
        color: #d28927 !important;
        font-weight: 700 !important;
    }

    .swiper-button-prev:hover,
    .swiper-button-next:hover {
        background: #d28927 !important;
        border-color: #d28927 !important;
    }

    .swiper-button-prev:hover::after,
    .swiper-button-next:hover::after {
        color: #ffffff !important;
    }

    /* Swiper pagination */
    .swiper-pagination-bullet {
        background: #d28927 !important;
        opacity: 0.25 !important;
        width: 8px !important;
        height: 8px !important;
        transition: all 0.3s ease !important;
    }

    .swiper-pagination-bullet-active {
        opacity: 1 !important;
        width: 24px !important;
        border-radius: 4px !important;
    }

    /* GLightbox overrides */
    .glightbox-clean .gclose,
    .glightbox-clean .gnext,
    .glightbox-clean .gprev {
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        border-radius: 50% !important;
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 600px) {
        .certs-section {
            padding: 48px 0;
        }

        .certs-header h2 {
            font-size: 28px;
        }

        .swiper-container {
            padding: 0 20px 48px;
        }

        .swiper-slide {
            width: 260px;
        }

        .swiper-button-prev,
        .swiper-button-next {
            display: none;
        }
    }