﻿/* ===============================
   MANAGEMENT ACADEMY – GLOBAL
================================ */

.manag-section {
    padding: 90px 0;
    /*background: #0b1220;
    color: #e5e7eb;*/
}

    /*.manag-section .section-head {
        max-width: 780px;
        margin-bottom: 48px;
    }

        .manag-section .section-head h3 {
            font-size: 34px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
        }

        .manag-section .section-head p {
            font-size: 16px;
            opacity: .75;
        }*/

/* ===============================
   HERO
================================ */

.manag-hero {
    position: relative;
    padding: 110px 0 120px;
    background: radial-gradient(900px 420px at 12% -10%, rgba(16,185,129,.18), transparent), linear-gradient(180deg, #0b1220, #070c16);
    overflow: hidden;
}

.manag-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
}

.manag-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(16,185,129,.15);
    color: #6ee7b7;
    font-size: 13px;
    margin-bottom: 18px;
    color: #fff;
}

.manag-left h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
    color: #fff;
}

.manag-left h2 {
    font-size: 20px;
    font-weight: 500;
    opacity: .85;
    margin-bottom: 18px;
    color: #fff;
}

.manag-subtitle {
    font-size: 16px;
    max-width: 560px;
    line-height: 1.65;
    opacity: .9;
    color: #fff;
}

.manag-actions {
    display: flex;
    gap: 14px;
    margin: 28px 0;
}

/* Buttons */
.btn-manag-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #04120c;
    border-radius: 14px;
    padding: 14px 22px;
    font-weight: 600;
}

.btn-manag-outline {
    border: 1px solid rgba(16,185,129,.4);
    color: #6ee7b7;
    border-radius: 14px;
    padding: 14px 22px;
}

.manag-metrics {
    display: flex;
    gap: 22px;
    margin-top: 20px;
}

    .manag-metrics .mx-metric .top {
        font-weight: 600;
        color: #d1fae5;
    }

    .manag-metrics .mx-metric .bottom {
        font-size: 13px;
        opacity: .65;
    }

/* ===============================
   RIGHT CARD + PRICE
================================ */

.manag-cred-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 28px;
    backdrop-filter: blur(8px);
}

    .manag-cred-card .head {
        display: flex;
        gap: 14px;
        margin-bottom: 18px;
        color: #fff;
    }

    .manag-cred-card .icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: rgba(16,185,129,.18);
        display: grid;
        place-items: center;
        color: #6ee7b7;
    }

.manag-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
}

    .manag-grid .pill {
        background: rgba(255,255,255,.05);
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 14px;
        padding: 14px;
    }

    .manag-grid .k {
        font-weight: 700;
        color: #fff;
        padding: 4px;
    }

    .manag-grid .v {
        font-size: 13px;
        font-weight: 500;
        color: rgba(255,255,255,.6);
    }

/* PRICE */
.manag-price-card {
    margin-top: 18px;
    padding: 20px;
    border-radius: 18px;
    background: radial-gradient(500px 260px at 10% -10%, rgba(16,185,129,.2), transparent), linear-gradient(180deg, #0b1220, #070c16);
    border: 1px solid rgba(16,185,129,.35);
}

    .manag-price-card .tag {
        font-size: 12px;
        color: #6ee7b7;
    }

    .manag-price-card h4 {
        margin: 6px 0 12px;
        font-size: 18px;
        color: #fff;
    }

    .manag-price-card .price-value {
        display: flex;
        align-items: baseline;
        gap: 6px;
        margin-bottom: 14px;
    }

    .manag-price-card strong {
        font-size: 36px;
        color: #6ee7b7;
    }

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
}

    .price-features li {
        display: flex;
        gap: 8px;
        font-size: 14px;
        padding: 4px 0;
        opacity: .85;
        color: #fff;
    }

.price-note {
    font-size: 12px;
    text-align: center;
    opacity: .6;
    margin-top: 8px;
}

/* ===============================
   ACCORDION
================================ */
/* ===============================
   MANAG – STRUCTURE / ACCORDION
   =============================== */

/* ===============================
   ACCORDION CONTAINER
   =============================== */

.manag-accordion {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ===============================
   ITEM
   =============================== */

.manag-item {
    border-radius: 18px;
    background: linear-gradient(180deg, #0f172a, #020617);
    border: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
    transition: box-shadow .4s ease, border-color .4s ease;
}

    .manag-item.open {
        border-color: rgba(16,185,129,.45);
        box-shadow: 0 30px 70px rgba(16,185,129,.22);
        transform: translateY(-1px);
    }

/* ===============================
   HEADER
   =============================== */

.manag-header {
    width: 100%;
    background: transparent;
    border: 0;
    color: #f9fafb;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
}

    .manag-header .n {
        min-width: 38px;
        height: 38px;
        border-radius: 12px;
        background: rgba(16,185,129,.18);
        color: #6ee7b7;
        display: grid;
        place-items: center;
        font-weight: 800;
        font-size: 14px;
    }

    .manag-header .t {
        line-height: 1.4;
    }

    .manag-header i {
        margin-left: auto;
        transition: transform .6s cubic-bezier(.4,0,.2,1), opacity .3s ease;
        opacity: .6;
    }

.manag-item.open .manag-header i {
    transform: rotate(180deg);
    opacity: 1;
}

/* ===============================
   BODY
   =============================== */

.manag-body {
    padding: 0 22px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height .7s cubic-bezier(.4,0,.2,1), opacity .3s ease;
}

.manag-item.open .manag-body {
    opacity: 1;
}

.manag-body ul {
    list-style: none;
    padding: 18px 0 22px;
    margin: 0;
}

.manag-body li {
    position: relative;
    padding-left: 22px;
    margin: 10px 0;
    color: #e5e7eb;
    font-size: 14px;
    line-height: 1.6;
}

    .manag-body li::before {
        content: "▸";
        position: absolute;
        left: 0;
        color: #6ee7b7;
        font-weight: 800;
    }

/* ===============================
   HOVER POLISH
   =============================== */

.manag-header:hover {
    background: rgba(255,255,255,.03);
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 768px) {
    .manag-section {
        padding: 70px 0;
    }

        .manag-section .section-head h3 {
            font-size: 30px;
        }

    .manag-header {
        font-size: 14px;
    }
}


/* ===============================
   CTA
================================ */

.manag-cta {
    background: radial-gradient(800px 300px at 10% -20%, rgba(16,185,129,.2), transparent), linear-gradient(180deg, #070c16, #05080f);
}

    .manag-cta .cta-box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 28px;
        background: rgba(255,255,255,.04);
        border-radius: 22px;
        padding: 36px;
        border: 1px solid rgba(255,255,255,.08);
    }

    .manag-cta h2 {
        font-size: 28px;
        color: #fff;
    }

    .manag-cta p {
        max-width: 520px;
        opacity: .8;
    }

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
    .manag-hero-inner {
        grid-template-columns: 1fr;
    }

    .manag-metrics {
        flex-wrap: wrap;
    }

    .manag-cta .cta-box {
        flex-direction: column;
        text-align: center;
    }
}

.manage-currency{
    color:#fff
}