﻿/* ===============================
   LEADX – EXECUTIVE LEADERSHIP CSS
   =============================== */


.leadx-header .t {
    flex: 1;
    text-align: left;
}

.leadx-hero {
    position: relative;
    padding: 120px 0 100px;
    background: radial-gradient(900px 400px at 15% -10%, rgba(217,119,6,.18), transparent), linear-gradient(180deg, #0b0b0b, #020202);
    color: #f9fafb;
    overflow: hidden;
}

.leadx-glow {
    position: absolute;
    inset: auto -20% -40% -20%;
    height: 420px;
    background: radial-gradient(50% 50%, rgba(217,119,6,.35), transparent 70%);
    filter: blur(70px);
}

.leadx-hero-inner {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 70px;
    align-items: center;
}

/* BADGE */
.leadx-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(217,119,6,.15);
    border: 1px solid rgba(217,119,6,.45);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .4px;
}

/* LEFT TEXT */
.leadx-left h1 {
    font-size: 56px;
    line-height: 1.1;
    margin: 18px 0 6px;
    font-weight: 800;
}

.leadx-left h2 {
    font-size: 20px;
    font-weight: 500;
    color: rgba(255,255,255,.7);
    margin-bottom: 20px;
}

.leadx-subtitle {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255,255,255,.75);
    max-width: 540px;
}

/* ACTIONS */
.leadx-actions {
    display: flex;
    gap: 16px;
    margin: 28px 0 36px;
}

.btn-leadx-primary {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #020202;
    padding: 14px 24px;
    border-radius: 14px;
    font-weight: 700;
    box-shadow: 0 20px 50px rgba(217,119,6,.55);
}

.btn-leadx-outline {
    border: 1px solid rgba(255,255,255,.25);
    padding: 14px 24px;
    border-radius: 14px;
    color: #f9fafb;
}

/* METRICS */
.leadx-metrics {
    display: flex;
    gap: 28px;
}

.lx-metric .top {
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lx-metric .bottom {
    font-size: 13px;
    color: rgba(255,255,255,.55);
}

/* ===============================
   RIGHT – CREDENTIAL CARD
   =============================== */

.leadx-cred-card {
    background: linear-gradient(180deg, #111111, #050505);
    border-radius: 24px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 40px 90px rgba(0,0,0,.7);
}

    .leadx-cred-card .head {
        display: flex;
        gap: 14px;
        margin-bottom: 20px;
    }

    .leadx-cred-card .icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        display: grid;
        place-items: center;
        background: rgba(217,119,6,.2);
        color: #fbbf24;
    }

    .leadx-cred-card .title {
        font-weight: 800;
    }

    .leadx-cred-card .sub {
        font-size: 13px;
        color: rgba(255,255,255,.55);
    }

.leadx-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
}

    .leadx-grid .pill {
        background: rgba(255,255,255,.04);
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 14px;
        padding: 14px;
    }

    .leadx-grid .k {
        font-weight: 700;
    }

    .leadx-grid .v {
        font-size: 13px;
        color: rgba(255,255,255,.6);
    }

/* ===============================
   STRUCTURE / ACCORDION
   =============================== */

.leadx-section {
    padding: 100px 0;
}

.leadx-section-alt {
    background: radial-gradient(1200px 400px at 50% 0%, rgba(217,119,6,.1), transparent), linear-gradient(180deg, #020202, #020202);
}

.leadx-accordion {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.leadx-item {
    border-radius: 18px;
    background: linear-gradient(180deg, #111111, #050505);
    border: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
    transition: box-shadow .4s ease, border-color .4s ease;
}

    .leadx-item.open {
        border-color: rgba(217,119,6,.45);
        box-shadow: 0 30px 70px rgba(217,119,6,.25);
    }

.leadx-header {
    width: 100%;
    background: transparent;
    border: 0;
    color: #f9fafb;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
}

    .leadx-header .n {
        min-width: 36px;
        height: 36px;
        border-radius: 12px;
        background: rgba(217,119,6,.18);
        color: #fbbf24;
        display: grid;
        place-items: center;
        font-weight: 800;
    }

    .leadx-header i {
        transition: transform .6s cubic-bezier(.4,0,.2,1);
        opacity: .7;
    }

.leadx-item.open .leadx-header i {
    transform: rotate(180deg);
    opacity: 1;
}

.leadx-body {
    padding: 0 22px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height .7s cubic-bezier(.4,0,.2,1), opacity .3s ease;
}

.leadx-item.open .leadx-body {
    opacity: 1;
}

.leadx-body ul {
    list-style: none;
    padding: 18px 0 22px;
    margin: 0;
}

.leadx-body li {
    position: relative;
    padding-left: 22px;
    margin: 10px 0;
    color: #e5e7eb;
    font-size: 14px;
    line-height: 1.6;
}

    .leadx-body li::before {
        content: "▸";
        position: absolute;
        left: 0;
        color: #fbbf24;
        font-weight: 800;
    }

/* ===============================
   WHO IT IS FOR
   =============================== */

.leadx-card {
    max-width: 760px;
    margin: 0 auto;
    background: linear-gradient(180deg, #111111, #050505);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px;
    padding: 44px 50px;
    box-shadow: 0 40px 90px rgba(0,0,0,.6);
}

    .leadx-card h3 {
        font-size: 24px;
        font-weight: 800;
        color: #f9fafb;
        margin-bottom: 28px;
        text-align: center;
    }

.leadx-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

    .leadx-list li {
        position: relative;
        padding: 14px 18px 14px 48px;
        border-radius: 14px;
        font-size: 15px;
        line-height: 1.6;
        background: rgba(255,255,255,.04);
        border: 1px solid rgba(255,255,255,.08);
        color: #f9fafb;
    }

        .leadx-list li::before {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 18px;
            font-weight: 800;
        }

        /* ✔ POSITIVE */
        .leadx-list li:nth-child(-n+4) {
            background: linear-gradient(90deg, rgba(217,119,6,.18), transparent);
            border-color: rgba(217,119,6,.45);
        }

            .leadx-list li:nth-child(-n+4)::before {
                content: "✔";
                color: #fbbf24;
            }

        /* ✖ NEGATIVE */
        .leadx-list li:nth-child(n+5) {
            background: linear-gradient(90deg, rgba(239,68,68,.15), transparent);
            border-color: rgba(239,68,68,.45);
            color: #fecaca;
        }

            .leadx-list li:nth-child(n+5)::before {
                content: "✖";
                color: #ef4444;
            }

/* ===============================
   CTA
   =============================== */

.leadx-cta {
    background: linear-gradient(135deg, #020202, #0b0b0b);
    color: #fff;
}

    .leadx-cta .cta-box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 32px;
    }

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 992px) {
    .leadx-hero-inner {
        grid-template-columns: 1fr;
    }

    .leadx-left h1 {
        font-size: 44px;
    }
}
