/* =========================================================
   LEADERSHIP PAGE
   TWC LTD
========================================================= */

.leadership-page {
    --lead-blue: #0a66c2;
    --lead-dark: #062451;
    --lead-navy: #003c8f;
    --lead-light: #f5f8fc;
    --lead-card: #ffffff;
    --lead-border: rgba(10,102,194,.13);
    --lead-text: var(--text-main, #202124);
    --lead-sub: var(--text-sub, #555);
    --lead-radius: 18px;

    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}


/* =========================================================
   GENERIC SECTION
========================================================= */

.leadership-section {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 70px 0;
    box-sizing: border-box;
}

.leadership-section-heading {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 35px;
}

.leadership-section-heading h2 {
    margin: 0 0 8px;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.15;
}

.leadership-section-heading p {
    margin: 0;
    max-width: 760px;
    color: var(--lead-sub);
    font-size: 1.05rem;
    line-height: 1.65;
}

.leadership-section-marker {
    display: block;
    width: 5px;
    min-width: 5px;
    height: 42px;
    margin-top: 3px;
    background: var(--lead-blue);
    border-radius: 4px;
}


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

.leadership-hero {
    width: min(1200px, calc(100% - 32px));
    max-width: 1200px;
    margin: 35px auto 0;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(10,102,194,.14),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f5f9ff 100%
        );

    border-left: 6px solid var(--lead-blue);
    border-radius: 24px;

    box-shadow: 0 10px 30px rgba(15,35,60,.09);

    overflow: hidden;
    box-sizing: border-box;
}

.leadership-hero-content {
    min-width: 0;
    padding: 55px 45px;
    box-sizing: border-box;
}

.leadership-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--lead-blue);
    font-weight: 800;
    font-size: .85rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.leadership-kicker-icon {
    font-size: 1.1rem;
}

.leadership-hero h1 {
    max-width: 720px;
    margin: 18px 0 24px;

    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 1.05;
    letter-spacing: -.03em;
}

.leadership-hero-intro {
    max-width: 650px;
    margin: 0;

    color: var(--lead-sub);
    font-size: 1.12rem;
    line-height: 1.7;
}

.leadership-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.leadership-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
    padding: 0 20px;

    border-radius: 10px;

    text-decoration: none;
    font-weight: 750;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.leadership-btn:hover {
    transform: translateY(-2px);
}

.leadership-btn-primary {
    background: var(--lead-blue);
    color: #ffffff;
    box-shadow: 0 5px 14px rgba(10,102,194,.22);
}

.leadership-btn-primary:hover {
    background: #0757a8;
}

.leadership-btn-secondary {
    background: #ffffff;
    color: var(--lead-blue);
    border: 1px solid rgba(10,102,194,.22);
}

.leadership-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.leadership-hero-tags span {
    padding: 7px 11px;

    background: rgba(10,102,194,.07);
    border: 1px solid rgba(10,102,194,.10);

    border-radius: 999px;

    color: var(--lead-navy);
    font-size: .78rem;
    font-weight: 700;
}

.leadership-hero-visual {
    min-width: 0;
    width: 100%;
    min-height: 460px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--lead-dark);

    overflow: hidden;
}

.leadership-hero-image {
    display: block;

    width: 100%;
    max-width: 100%;
    height: auto;

    min-width: 0;

    object-fit: contain;
}


/* =========================================================
   LEADERSHIP MODEL
========================================================= */

.leadership-model-section {
    padding-top: 80px;
}

.leadership-model {
    position: relative;

    width: min(760px, 100%);
    height: 500px;

    margin: 0 auto 35px;
}

.leadership-model::before,
.leadership-model::after {
    content: "";
    position: absolute;

    left: 50%;
    top: 50%;

    width: 320px;
    height: 320px;

    transform: translate(-50%, -50%);

    border: 1px dashed rgba(10,102,194,.22);
    border-radius: 50%;

    pointer-events: none;
}

.leadership-model::after {
    width: 210px;
    height: 210px;
    border-style: solid;
    border-color: rgba(10,102,194,.10);
}

.leadership-model-centre {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 150px;
    height: 150px;

    transform: translate(-50%, -50%);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    background: var(--lead-dark);
    color: #ffffff;

    border-radius: 50%;

    box-shadow:
        0 15px 35px rgba(6,36,81,.25),
        0 0 0 9px rgba(10,102,194,.08);
}

.model-centre-ring {
    position: absolute;
    inset: 9px;

    border: 1px solid rgba(255,255,255,.28);
    border-radius: 50%;
}

.leadership-model-centre strong {
    position: relative;
    z-index: 1;

    font-size: 1.4rem;
    letter-spacing: .08em;
}

.leadership-model-centre span {
    position: relative;
    z-index: 1;

    margin-top: 7px;

    font-size: .68rem;
    line-height: 1.45;
    opacity: .8;
}

.leadership-model-node {
    position: absolute;
    z-index: 2;

    width: 180px;
    min-height: 105px;

    padding: 15px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    color: var(--lead-text);

    border: 1px solid var(--lead-border);
    border-radius: 16px;

    box-shadow: 0 5px 18px rgba(0,0,0,.07);

    font-family: inherit;
    cursor: pointer;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease,
        background .25s ease;
}

.leadership-model-node:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0,0,0,.11);
}

.leadership-model-node.active {
    background: #f0f7ff;
    border-color: var(--lead-blue);
    box-shadow: 0 10px 25px rgba(10,102,194,.15);
}

.node-trust {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.node-trust:hover {
    transform: translateX(-50%) translateY(-4px);
}

.node-clarity {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.node-clarity:hover {
    transform: translateY(calc(-50% - 4px));
}

.node-accountability {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.node-accountability:hover {
    transform: translateY(calc(-50% - 4px));
}

.node-communication {
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.node-communication:hover {
    transform: translateX(-50%) translateY(-4px);
}

.model-node-icon {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 7px;

    background: rgba(10,102,194,.09);
    color: var(--lead-blue);

    border-radius: 50%;

    font-size: 1.25rem;
    font-weight: 800;
}

.leadership-model-node strong {
    font-size: 1rem;
}

.leadership-model-node small {
    margin-top: 3px;

    color: var(--lead-sub);
    font-size: .72rem;
    line-height: 1.3;
}

.leadership-principle-panel {
    width: min(900px, 100%);

    margin: 0 auto;

    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 20px;

    padding: 25px 28px;

    background: #ffffff;
    border: 1px solid var(--lead-border);
    border-radius: 18px;

    box-shadow: 0 6px 20px rgba(0,0,0,.06);

    box-sizing: border-box;

    animation: leadershipPanelIn .3s ease;
}

@keyframes leadershipPanelIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.principle-panel-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eef6ff;
    color: var(--lead-blue);

    border-radius: 15px;

    font-size: 1.8rem;
    font-weight: 800;
}

.principle-panel-label {
    color: var(--lead-blue);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
}

.leadership-principle-panel h3 {
    margin: 4px 0 7px;
    font-size: 1.5rem;
}

.leadership-principle-panel p {
    margin: 0;

    color: var(--lead-sub);
    line-height: 1.65;
}

.principle-panel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 14px;
}

.principle-panel-tags span {
    padding: 5px 9px;

    background: #f3f6f9;
    border-radius: 999px;

    font-size: .72rem;
    font-weight: 700;
}


/* =========================================================
   PRINCIPLE CARDS
========================================================= */

.leadership-principles-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.leadership-principle-card {
    position: relative;

    min-width: 0;

    padding: 28px;

    background: #ffffff;

    border: 1px solid var(--lead-border);
    border-radius: var(--lead-radius);

    box-shadow: 0 5px 17px rgba(0,0,0,.055);

    overflow: hidden;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.leadership-principle-card::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 4px;

    background: var(--lead-blue);

    transform: scaleX(0);
    transform-origin: left;

    transition: transform .3s ease;
}

.leadership-principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0,0,0,.09);
}

.leadership-principle-card:hover::after {
    transform: scaleX(1);
}

.principle-card-number {
    position: absolute;
    right: 18px;
    top: 16px;

    color: rgba(10,102,194,.12);

    font-size: 2.2rem;
    font-weight: 900;
}

.principle-card-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    background: #eef6ff;
    color: var(--lead-blue);

    border-radius: 13px;

    font-size: 1.5rem;
    font-weight: 800;
}

.leadership-principle-card h3 {
    margin: 0 0 7px;
    font-size: 1.25rem;
}

.leadership-principle-card h4 {
    margin: 0 0 15px;

    color: var(--lead-blue);

    font-size: .86rem;
    line-height: 1.4;
}

.leadership-principle-card p {
    margin: 0;

    color: var(--lead-sub);
    line-height: 1.65;
    font-size: .93rem;
}


/* =========================================================
   LEADERSHIP BALANCE
========================================================= */

.leadership-balance-section {
    padding-top: 30px;
}

.leadership-balance-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.leadership-balance-card {
    padding: 23px;

    background: #ffffff;

    border: 1px solid var(--lead-border);
    border-radius: 16px;

    box-shadow: 0 4px 14px rgba(0,0,0,.045);
}

.balance-card-heading {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.balance-card-heading span {
    color: var(--lead-blue);

    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.balance-card-heading strong {
    font-size: .96rem;
}

.leadership-spectrum {
    display: grid;
    grid-template-columns: 75px 1fr 75px;
    align-items: center;
    gap: 10px;

    margin-top: 20px;

    color: var(--lead-sub);
    font-size: .68rem;
    font-weight: 700;
}

.leadership-spectrum span:last-child {
    text-align: right;
}

.spectrum-track {
    position: relative;
    height: 7px;

    background: #e6edf4;

    border-radius: 99px;
}

.spectrum-track::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    background: linear-gradient(
        90deg,
        rgba(10,102,194,.12),
        rgba(10,102,194,.65)
    );

    border-radius: inherit;
}

.spectrum-position {
    position: absolute;
    z-index: 2;

    top: 50%;

    width: 15px;
    height: 15px;

    background: #ffffff;

    border: 4px solid var(--lead-blue);

    border-radius: 50%;

    transform: translate(-50%, -50%);
}

.position-55 {
    left: 55%;
}

.position-60 {
    left: 60%;
}

.position-65 {
    left: 65%;
}

.position-70 {
    left: 70%;
}


/* =========================================================
   TEAM BEHAVIOURS
========================================================= */

.leadership-behaviour-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.leadership-behaviour-card {
    padding: 28px;

    background: #ffffff;

    border: 1px solid var(--lead-border);
    border-radius: 18px;

    box-shadow: 0 5px 17px rgba(0,0,0,.05);
}

.behaviour-icon {
    display: inline-flex;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    background: var(--lead-dark);
    color: #ffffff;

    border-radius: 50%;

    font-size: .72rem;
    font-weight: 800;
}

.leadership-behaviour-card h3 {
    margin: 0 0 12px;
    font-size: 1.25rem;
}

.leadership-behaviour-card p {
    margin: 0 0 18px;

    color: var(--lead-sub);
    line-height: 1.65;
}

.leadership-behaviour-card ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.leadership-behaviour-card li {
    position: relative;

    margin-bottom: 9px;
    padding-left: 20px;

    color: var(--lead-sub);
    font-size: .88rem;
}

.leadership-behaviour-card li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: var(--lead-blue);
    font-weight: 800;
}


/* =========================================================
   PRESSURE SECTION
========================================================= */

.leadership-pressure-section {
    background: var(--lead-dark);
}

.leadership-section-dark {
    color: #ffffff;
}

.leadership-section-dark .leadership-section-heading p {
    color: rgba(255,255,255,.72);
}

.leadership-scenarios {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.leadership-scenario {
    background: rgba(255,255,255,.055);

    border: 1px solid rgba(255,255,255,.11);
    border-radius: 15px;

    overflow: hidden;
}

.scenario-header {
    width: 100%;

    display: grid;
    grid-template-columns: 12px 1fr 30px;
    align-items: center;
    gap: 15px;

    padding: 19px 22px;

    background: transparent;
    color: #ffffff;

    border: none;

    text-align: left;

    font-family: inherit;

    cursor: pointer;
}

.scenario-header:hover {
    background: rgba(255,255,255,.04);
}

.scenario-header strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
}

.scenario-header small {
    display: block;

    color: rgba(255,255,255,.62);

    font-size: .75rem;
}

.scenario-status {
    width: 10px;
    height: 10px;

    border-radius: 50%;
}

.status-red {
    background: #e85d5d;
}

.status-orange {
    background: #f1a34a;
}

.status-yellow {
    background: #e6c94c;
}

.status-blue {
    background: #4d9ce8;
}

.scenario-plus {
    font-size: 1.5rem;
    color: rgba(255,255,255,.65);
}

.scenario-content {
    display: none;

    padding: 0 22px 22px 49px;

    color: rgba(255,255,255,.76);
}

.scenario-content p {
    margin: 0;

    max-width: 850px;
    line-height: 1.7;
}

.scenario-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;

    margin-top: 18px;
}

.scenario-flow span {
    padding: 6px 10px;

    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);

    border-radius: 999px;

    color: #ffffff;

    font-size: .7rem;
    font-weight: 700;
}


/* =========================================================
   METRICS
========================================================= */

.leadership-outcomes {
    padding-bottom: 55px;
}

.leadership-metrics {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.leadership-metric {
    padding: 25px 17px;

    text-align: center;

    background: #ffffff;

    border: 1px solid var(--lead-border);
    border-radius: 16px;

    box-shadow: 0 4px 14px rgba(0,0,0,.045);
}

.leadership-metric strong {
    display: block;

    color: var(--lead-blue);

    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1;
}

.leadership-metric > span {
    display: block;

    margin-top: 8px;

    font-size: .83rem;
    font-weight: 800;
}

.leadership-metric small {
    display: block;

    margin-top: 9px;

    color: var(--lead-sub);

    font-size: .7rem;
    line-height: 1.4;
}


/* =========================================================
   TIMELINE
========================================================= */

.leadership-timeline {
    position: relative;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin: 35px 0 20px;

    border-top: 3px solid #dce8f3;
}

.leadership-timeline::before {
    content: "";

    position: absolute;

    left: 0;
    top: -3px;

    width: 0;
    height: 3px;

    background: var(--lead-blue);

    transition: width .4s ease;
}

.timeline-stage {
    position: relative;

    padding: 27px 15px 12px;

    background: transparent;
    border: none;

    text-align: left;

    font-family: inherit;

    cursor: pointer;
}

.timeline-stage::before {
    content: "";

    position: absolute;

    left: 18px;
    top: -9px;

    width: 13px;
    height: 13px;

    background: #ffffff;

    border: 3px solid #b9cfdf;
    border-radius: 50%;

    transition: .25s ease;
}

.timeline-stage.active::before {
    background: var(--lead-blue);
    border-color: var(--lead-blue);

    box-shadow: 0 0 0 5px rgba(10,102,194,.12);
}

.timeline-stage-title {
    display: block;

    color: var(--lead-text);

    font-size: .95rem;
    font-weight: 800;
}

.timeline-stage small {
    display: block;

    margin-top: 5px;

    color: var(--lead-sub);

    font-size: .7rem;
    line-height: 1.4;
}

.timeline-detail {
    padding: 28px 30px;

    background: #f5f9fd;

    border-left: 5px solid var(--lead-blue);
    border-radius: 14px;

    animation: leadershipPanelIn .3s ease;
}

.timeline-detail-label {
    color: var(--lead-blue);

    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .1em;
}

.timeline-detail h3 {
    margin: 6px 0 8px;

    font-size: 1.35rem;
}

.timeline-detail p {
    max-width: 850px;

    margin: 0;

    color: var(--lead-sub);
    line-height: 1.7;
}

.timeline-capabilities {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;

    margin-top: 16px;
}

.timeline-capabilities span {
    padding: 6px 10px;

    background: #ffffff;

    border: 1px solid rgba(10,102,194,.12);
    border-radius: 999px;

    color: var(--lead-blue);

    font-size: .7rem;
    font-weight: 700;
}


/* =========================================================
   LEADERSHIP IN ACTION
========================================================= */

.leadership-action {
    padding-top: 35px;
}

.leadership-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.leadership-accordion-item {
    background: #ffffff;

    border: 1px solid var(--lead-border);
    border-radius: 16px;

    box-shadow: 0 4px 14px rgba(0,0,0,.05);

    overflow: hidden;
}

.leadership-accordion-header {
    position: relative;

    width: 100%;

    display: grid;
    grid-template-columns: 1fr 35px;
    align-items: center;
    gap: 15px;

    padding: 21px 24px;

    background: #ffffff;
    color: var(--lead-text);

    border: none;

    text-align: left;

    font-family: inherit;

    cursor: pointer;
}

.leadership-accordion-header:hover {
    background: #f8fbff;
}

.leadership-accordion-header::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 5px;

    background: var(--lead-blue);
}

.leadership-accordion-header strong {
    display: block;

    font-size: 1rem;
}

.leadership-accordion-header small {
    display: block;

    margin-top: 4px;

    color: var(--lead-sub);

    font-size: .75rem;
}

.accordion-icon {
    color: var(--lead-blue);
    font-size: 1.5rem;
    text-align: center;
}

.leadership-accordion-content {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    padding: 0 24px 26px 29px;
    transition: max-height .35s ease, opacity .25s ease;
}


.action-content-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;

    padding-top: 5px;
}

.action-content-grid > div {
    padding-top: 18px;

    border-top: 1px solid #e7edf3;
}

.action-label {
    display: block;

    margin-bottom: 8px;

    color: var(--lead-blue);

    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.action-content-grid p {
    margin: 0;

    color: var(--lead-sub);

    font-size: .88rem;
    line-height: 1.65;
}


/* =========================================================
   EXPECTATIONS
========================================================= */



.leadership-heading-light {
    color: #ffffff;
}

.leadership-heading-light p {
    color: rgba(255,255,255,.72);
}

.expectations-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;

    background: rgba(255,255,255,.12);

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;

    overflow: hidden;
}



.expectation > span {
    color: rgba(255,255,255,.35);

    font-size: .72rem;
    font-weight: 800;
}

.leadership-expectations {
    background: #f7faff !important;
}

.expectation {
    background: #ffffff !important;
}

.expectation h3 {
    color: #062451 !important;
}

.expectation p {
    color: #4a6078 !important;
}



/* =========================================================
   STATEMENT
========================================================= */

.leadership-statement {
    padding: 80px 20px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(10,102,194,.12),
            transparent 55%
        ),
        #f4f8fc;
}

.leadership-statement-inner {
    width: min(900px, 100%);
    margin: 0 auto;

    text-align: center;
}

.statement-mark {
    display: block;

    color: var(--lead-blue);

    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: .7;
}

.leadership-statement blockquote {
    margin: 15px 0 20px;

    color: var(--lead-dark);

    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.025em;
}

.leadership-statement p {
    margin: 0;

    color: var(--lead-sub);
}


/* =========================================================
   NEXT STEPS
========================================================= */

.leadership-next {
    padding-bottom: 85px;
}

.leadership-next-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.leadership-next-card {
    position: relative;

    padding: 25px;

    background: #ffffff;

    border: 1px solid var(--lead-border);
    border-radius: 16px;

    text-decoration: none;

    box-shadow: 0 4px 14px rgba(0,0,0,.045);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.leadership-next-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 13px 28px rgba(0,0,0,.09);
}

.leadership-next-card > span {
    color: rgba(10,102,194,.35);

    font-size: .72rem;
    font-weight: 900;
}

.leadership-next-card h3 {
    margin: 12px 0 8px;

    color: var(--lead-text);

    font-size: 1.15rem;
}

.leadership-next-card p {
    margin: 0 0 18px;

    color: var(--lead-sub);

    font-size: .83rem;
    line-height: 1.6;
}

.leadership-next-card strong {
    color: var(--lead-blue);

    font-size: .78rem;
}


/* =========================================================
   RESPONSIVE — TABLET / IPAD
========================================================= */

@media (max-width: 1100px) {

    .leadership-principles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .leadership-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .leadership-next-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   RESPONSIVE — IPAD PORTRAIT / SMALL TABLET
========================================================= */

@media (max-width: 850px) {

    .leadership-hero {
        grid-template-columns: minmax(0, 1fr);
    }

    .leadership-hero-visual {
        min-height: 340px;
    }

    .leadership-model {
        height: 440px;
    }

    .leadership-model-node {
        width: 160px;
    }

    .leadership-balance-grid {
        grid-template-columns: 1fr;
    }

    .leadership-behaviour-grid {
        grid-template-columns: 1fr;
    }

    .action-content-grid {
        grid-template-columns: 1fr;
    }

    .expectations-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 650px) {

    .leadership-section {
        width: min(100% - 24px, 1200px);
        padding: 50px 0;
    }

    .leadership-hero {
        width: calc(100% - 24px);
        margin-top: 20px;

        border-left-width: 4px;
        border-radius: 18px;
    }

    .leadership-hero-content {
        padding: 34px 23px;
    }

    .leadership-hero h1 {
        font-size: clamp(2rem, 9vw, 2.7rem);
    }

    .leadership-hero-intro {
        font-size: .98rem;
    }

    .leadership-hero-actions {
        flex-direction: column;
    }

    .leadership-btn {
        width: 100%;
    }

    .leadership-hero-visual {
        min-height: 250px;
    }

    .leadership-section-heading {
        margin-bottom: 25px;
    }

    .leadership-model {
        width: 100%;
        height: 440px;
    }

    .leadership-model::before {
        width: 245px;
        height: 245px;
    }

    .leadership-model::after {
        width: 155px;
        height: 155px;
    }

    .leadership-model-centre {
        width: 115px;
        height: 115px;
    }

    .leadership-model-centre strong {
        font-size: 1rem;
    }

    .leadership-model-centre span {
        font-size: .57rem;
    }

    .leadership-model-node {
        width: 135px;
        min-height: 88px;
        padding: 10px;
    }

    .leadership-model-node small {
        font-size: .62rem;
    }

    .model-node-icon {
        width: 30px;
        height: 30px;
        margin-bottom: 4px;
    }

    .leadership-principle-panel {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .principle-panel-icon {
        width: 48px;
        height: 48px;
    }

    .leadership-principles-grid {
        grid-template-columns: 1fr;
    }

    .leadership-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .leadership-metric:last-child {
        grid-column: 1 / -1;
    }

    .leadership-timeline {
        grid-template-columns: 1fr;
        border-top: none;
        border-left: 3px solid #dce8f3;
        margin-left: 8px;
    }

    .timeline-stage {
        padding: 15px 15px 15px 28px;
    }

    .timeline-stage::before {
        left: -9px;
        top: 19px;
    }

    .expectations-grid {
        grid-template-columns: 1fr;
    }

    .leadership-next-grid {
        grid-template-columns: 1fr;
    }

    .leadership-statement {
        padding: 60px 18px;
    }

    .leadership-statement blockquote {
        font-size: 1.8rem;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .leadership-page *,
    .leadership-page *::before,
    .leadership-page *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

}
/* =====================================================
   LEADERSHIP UNDER PRESSURE — LIGHT THEME
   ===================================================== */

/* Leadership Under Pressure — Light Theme (Fixed) */
.leadership-section-dark {
    background: #f7faff !important; /* clean light-blue */
    color: #062451 !important;      /* deep navy text */
    border: 1px solid rgba(10,102,194,0.12);
    border-left: 5px solid #0a66c2;
    box-shadow: 0 8px 24px rgba(15,35,60,0.06);
}



/* Section heading */

.leadership-section-dark h2 {
    color: #062451 !important;
}

.leadership-section-dark .leadership-section-heading p {
    color: #4a6078 !important;
}


/* Marker */

.leadership-section-dark .leadership-section-marker {
    background: #0a66c2 !important;
}


/* =====================================================
   SCENARIO CARDS
   ===================================================== */

.leadership-section-dark .leadership-scenario {
    background: #ffffff !important;

    border: 1px solid rgba(10, 102, 194, 0.12);

    box-shadow: 0 4px 14px rgba(15, 35, 60, 0.06);

    color: #172b4d;
}


/* Scenario buttons */

.leadership-section-dark .scenario-header {
    background: #ffffff !important;
    color: #172b4d !important;
}


/* Main scenario title */

.leadership-section-dark .scenario-header strong {
    color: #062451 !important;
}


/* Supporting text */

.leadership-section-dark .scenario-header small {
    color: #5b7088 !important;
}


/* Plus / minus */

.leadership-section-dark .scenario-plus {
    color: #0a66c2 !important;
}


/* Expanded content */

.leadership-section-dark .scenario-content {
    background: #f8fbff !important;
    color: #334e68 !important;

    border-top: 1px solid rgba(10, 102, 194, 0.10);
}


/* Paragraph inside expanded content */

.leadership-section-dark .scenario-content p {
    color: #334e68 !important;
}


/* =====================================================
   PROCESS FLOW
   ===================================================== */

.leadership-section-dark .scenario-flow span {
    background: #eaf3fc !important;
    color: #075da8 !important;

    border: 1px solid rgba(10, 102, 194, 0.15);
}


/* =====================================================
   CARD HOVER
   ===================================================== */

.leadership-section-dark .leadership-scenario:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 24px rgba(10, 102, 194, 0.12);
}
/* =====================================================
   LEADERSHIP SCENARIO — SMOOTH ACCORDION
   ===================================================== */

.scenario-header {
    transition:
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.scenario-header:hover {
    background: #f7faff !important;
}

.scenario-header:focus-visible {
    outline: 3px solid rgba(10, 102, 194, 0.35);
    outline-offset: -3px;
}


/* Plus / minus animation */

.scenario-plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    font-size: 1.5rem;
    line-height: 1;

    transition:
        transform 0.3s ease,
        color 0.2s ease;
}

.scenario-header.active .scenario-plus {
    transform: rotate(180deg);
}


/* Expanded content */

.scenario-content {
    overflow: hidden;
    max-height: 0;
    opacity: 0;

    transition:
        max-height 0.35s ease,
        opacity 0.25s ease;
}
/* =====================================================
   LEADERSHIP ACCORDIONS
   LIGHT THEME + SMOOTH OPEN/CLOSE
   ===================================================== */

/* -----------------------------------------------------
   LEADERSHIP UNDER PRESSURE
----------------------------------------------------- */

.leadership-pressure-section {
    background: #eaf3fc !important;
}

.leadership-pressure-section .leadership-section-dark {
    background: #eaf3fc !important;
    color: #062451 !important;
    border: none;
    box-shadow: none;
}

.leadership-pressure-section .leadership-section-heading h2 {
    color: #062451 !important;
}

.leadership-pressure-section .leadership-section-heading p {
    color: #40566f !important;
}


/* Scenario cards */

.leadership-pressure-section .leadership-scenario {
    background: #ffffff !important;
    border: 1px solid rgba(10,102,194,.14);
    box-shadow: 0 5px 16px rgba(15,35,60,.06);
}


/* Scenario header */

.leadership-pressure-section .scenario-header {
    background: #ffffff !important;
    color: #172b4d !important;
}

.leadership-pressure-section .scenario-header:hover {
    background: #f7fbff !important;
}

.leadership-pressure-section .scenario-header strong {
    color: #062451 !important;
}

.leadership-pressure-section .scenario-header small {
    color: #5b7088 !important;
}


/* Plus */

.leadership-pressure-section .scenario-plus {
    color: #0a66c2 !important;
}


/* -----------------------------------------------------
   IMPORTANT:
   Do NOT use display:none here.
   JavaScript controls max-height.
----------------------------------------------------- */

.leadership-pressure-section .scenario-content {
    display: block !important;

    max-height: 0;
    opacity: 0;

    overflow: hidden;

    padding: 0 22px 0 49px;

    background: #f8fbff !important;
    color: #334e68 !important;

    border-top: 0 solid rgba(10,102,194,.10);

    transition:
        max-height .35s ease,
        opacity .25s ease,
        padding .35s ease,
        border-top-width .35s ease;
}

.leadership-pressure-section .scenario-content p {
    color: #334e68 !important;
}


/* Open scenario */

.leadership-pressure-section .leadership-scenario.is-open .scenario-content {
    opacity: 1;

    padding-bottom: 22px;

    border-top-width: 1px;
}


/* Flow pills */

.leadership-pressure-section .scenario-flow span {
    background: #eaf3fc !important;
    color: #075da8 !important;
    border: 1px solid rgba(10,102,194,.15);
}


/* Plus rotation */

.leadership-pressure-section .scenario-plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    line-height: 1;

    transition:
        transform .3s ease,
        color .2s ease;
}

.leadership-pressure-section
.leadership-scenario.is-open
.scenario-plus {
    transform: rotate(180deg);
}


/* -----------------------------------------------------
   IF YOU WORK WITH ME — ACCORDION
----------------------------------------------------- */

.leadership-accordion-content {
    display: block !important;

    max-height: 0;
    opacity: 0;

    overflow: hidden;

    padding: 0 24px 0 29px;

    transition:
        max-height .35s ease,
        opacity .25s ease,
        padding .35s ease;
}

.leadership-accordion-item.is-open
.leadership-accordion-content {
    opacity: 1;
    padding-bottom: 26px;
}


/* Accordion header */

.leadership-accordion-header {
    background: #ffffff !important;
    color: var(--lead-text);
}

.leadership-accordion-header:hover {
    background: #f7fbff !important;
}


/* Accordion icon */

.leadership-accordion-header .accordion-icon {
    color: #0a66c2 !important;

    transition:
        transform .3s ease,
        color .2s ease;
}

.leadership-accordion-item.is-open
.leadership-accordion-header
.accordion-icon {
    transform: rotate(180deg);
}


/* Keyboard accessibility */

.scenario-header:focus-visible,
.leadership-accordion-header:focus-visible {
    outline: 3px solid rgba(10,102,194,.30);
    outline-offset: -3px;
}
/* =====================================================
   FINAL LEADERSHIP LIGHT SECTION OVERRIDE
===================================================== */

.leadership-pressure-section {
    background: #f7faff !important;
}

.leadership-section-dark {
    background: #f7faff !important;
    color: #062451 !important;
}
/* =====================================================
   LEADERSHIP UNDER PRESSURE
   LIGHT BLUE SECTION THEME
   ===================================================== */

/*
   The whole section gets the light-blue background.
   This keeps the section visually distinct from the
   normal white sections without making the text hard
   to read.
*/

.leadership-pressure-section {
    background: #eef6ff !important;
    border-top: 1px solid rgba(10,102,194,.08);
    border-bottom: 1px solid rgba(10,102,194,.08);
}


/*
   Inner section styling
*/

.leadership-pressure-section .leadership-section-dark {
    background: #eef6ff !important;
    color: #062451 !important;
}


/*
   Section heading
*/

.leadership-pressure-section .leadership-section-heading h2 {
    color: #062451 !important;
}

.leadership-pressure-section .leadership-section-heading p {
    color: #4a6078 !important;
}


/*
   Blue heading marker
*/

.leadership-pressure-section .leadership-section-marker {
    background: #0a66c2 !important;
}


/* =====================================================
   SCENARIO ACCORDION CARDS
   ===================================================== */

.leadership-pressure-section .leadership-scenario {
    position: relative;

    background: #ffffff !important;

    border: 1px solid rgba(10,102,194,.13);
    border-radius: 16px;

    box-shadow: 0 4px 14px rgba(15,35,60,.055);

    overflow: hidden;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


/*
   BLUE LEFT BORDER
   Matches Leadership In Action styling.
*/

.leadership-pressure-section .leadership-scenario::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 5px;

    background: #0a66c2;

    z-index: 2;
}


/*
   Hover
*/

.leadership-pressure-section .leadership-scenario:hover {
    transform: translateY(-2px);

    border-color: rgba(10,102,194,.22);

    box-shadow:
        0 10px 24px rgba(10,102,194,.10);
}


/* =====================================================
   SCENARIO HEADER
   ===================================================== */

.leadership-pressure-section .scenario-header {
    position: relative;

    width: 100%;

    display: grid;
    grid-template-columns: 12px 1fr 30px;
    align-items: center;
    gap: 15px;

    padding: 19px 22px 19px 27px;

    background: #ffffff !important;
    color: #172b4d !important;

    border: none;

    text-align: left;
    font-family: inherit;

    cursor: pointer;

    transition:
        background-color .2s ease,
        box-shadow .2s ease;
}


/*
   Header hover
*/

.leadership-pressure-section .scenario-header:hover {
    background: #f7faff !important;
}


/*
   Header keyboard focus
*/

.leadership-pressure-section .scenario-header:focus-visible {
    outline: 3px solid rgba(10,102,194,.30);
    outline-offset: -3px;
}


/* =====================================================
   SCENARIO TEXT
   ===================================================== */

.leadership-pressure-section .scenario-header strong {
    color: #062451 !important;
}

.leadership-pressure-section .scenario-header small {
    color: #5b7088 !important;
}


/* =====================================================
   STATUS DOT
   ===================================================== */

.leadership-pressure-section .scenario-status {
    width: 10px;
    height: 10px;

    border-radius: 50%;
}


/* Keep existing status colours */

.leadership-pressure-section .status-red {
    background: #e85d5d;
}

.leadership-pressure-section .status-orange {
    background: #f1a34a;
}

.leadership-pressure-section .status-yellow {
    background: #e6c94c;
}

.leadership-pressure-section .status-blue {
    background: #4d9ce8;
}


/* =====================================================
   PLUS / MINUS
   ===================================================== */

.leadership-pressure-section .scenario-plus {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    color: #0a66c2 !important;

    font-size: 1.5rem;
    line-height: 1;

    transition:
        transform .3s ease,
        color .2s ease;
}


/*
   Rotate the plus when open.
*/

.leadership-pressure-section .scenario-header.active
.scenario-plus {
    transform: rotate(180deg);
}


/* =====================================================
   EXPANDED CONTENT
   ===================================================== */

.leadership-pressure-section .scenario-content {
    overflow: hidden;

    max-height: 0;
    opacity: 0;

    padding: 0 22px 22px 49px;

    background: #f8fbff !important;

    color: #334e68 !important;

    border-top: 1px solid rgba(10,102,194,.10);

    transition:
        max-height .35s ease,
        opacity .25s ease;
}


.leadership-pressure-section .scenario-content p {
    color: #334e68 !important;
}


/* =====================================================
   PROCESS FLOW TAGS
   ===================================================== */

.leadership-pressure-section .scenario-flow {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 18px;
}

.leadership-pressure-section .scenario-flow span {
    padding: 6px 10px;

    background: #eaf3fc !important;

    border: 1px solid rgba(10,102,194,.15);

    border-radius: 999px;

    color: #075da8 !important;

    font-size: .7rem;
    font-weight: 700;
}


/* =====================================================
   IF YOU WORK WITH ME / EXPECTATIONS
   ===================================================== */

/*
   Restore the section itself to the same light-blue
   visual treatment.
*/

.leadership-expectations {
    background: #eef6ff !important;

    border-top: 1px solid rgba(10,102,194,.08);
    border-bottom: 1px solid rgba(10,102,194,.08);
}


/*
   Heading
*/

.leadership-expectations
.leadership-section-heading h2 {
    color: #062451 !important;
}

.leadership-expectations
.leadership-section-heading p {
    color: #4a6078 !important;
}

.leadership-expectations
.leadership-section-marker {
    background: #0a66c2 !important;
}


/* =====================================================
   EXPECTATION GRID
   ===================================================== */

.leadership-expectations .expectations-grid {
    background: transparent;

    border: none;

    border-radius: 0;

    overflow: visible;

    gap: 16px;
}


/*
   Individual expectation cards
*/

.leadership-expectations .expectation {
    position: relative;

    background: #ffffff !important;

    border: 1px solid rgba(10,102,194,.13);

    border-radius: 16px;

    box-shadow: 0 4px 14px rgba(15,35,60,.055);

    padding: 25px;

    overflow: hidden;
}


/*
   Blue left border — matching Leadership In Action.
*/

.leadership-expectations .expectation::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 5px;

    background: #0a66c2;
}


/*
   Expectation card text
*/

.leadership-expectations .expectation > span {
    color: rgba(10,102,194,.55) !important;
}

.leadership-expectations .expectation h3 {
    color: #062451 !important;
}

.leadership-expectations .expectation p {
    color: #4a6078 !important;
}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 650px) {

    .leadership-pressure-section .scenario-header {
        padding-left: 24px;
    }

    .leadership-pressure-section .scenario-content {
        padding-left: 43px;
    }

    .leadership-expectations .expectation {
        padding: 22px;
    }

}
/* =========================================================
   LEADERSHIP PAGE
   REDESIGNED SECTIONS
   1. HOW I WORK WITH TEAMS
   2. IF YOU WORK WITH ME
   3. EXPLORE MY EXPERIENCE
========================================================= */


/* =========================================================
   SHARED SECTION STYLING
========================================================= */

.leadership-behaviour-grid,
.expectations-grid,
.leadership-next-grid {
    position: relative;
}


/* =========================================================
   1. HOW I WORK WITH TEAMS
========================================================= */

.leadership-behaviour-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}


/* Individual cards */

.leadership-behaviour-card {
    position: relative;

    min-width: 0;
    padding: 30px 28px 28px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f8fbff 100%
        );

    border: 1px solid rgba(10,102,194,.13);
    border-radius: 18px;

    box-shadow:
        0 6px 20px rgba(15,35,60,.055);

    overflow: hidden;

    transition:
        transform .28s ease,
        box-shadow .28s ease,
        border-color .28s ease;
}


/* Blue accent bar */

.leadership-behaviour-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 5px;

    background:
        linear-gradient(
            180deg,
            #0a66c2,
            #4d9ce8
        );

    transform: scaleY(.25);
    transform-origin: top;

    transition:
        transform .3s ease;
}


/* Subtle bottom glow */

.leadership-behaviour-card::after {
    content: "";

    position: absolute;

    right: -45px;
    bottom: -55px;

    width: 150px;
    height: 150px;

    background: rgba(10,102,194,.055);

    border-radius: 50%;

    pointer-events: none;

    transition:
        transform .35s ease,
        opacity .35s ease;
}


/* Hover */

.leadership-behaviour-card:hover {
    transform: translateY(-7px);

    border-color: rgba(10,102,194,.28);

    box-shadow:
        0 16px 35px rgba(10,102,194,.11);
}

.leadership-behaviour-card:hover::before {
    transform: scaleY(1);
}

.leadership-behaviour-card:hover::after {
    transform: scale(1.25);
}


/* Number / icon */

.leadership-behaviour-card .behaviour-icon {
    position: relative;
    z-index: 2;

    display: inline-flex;

    width: 48px;
    height: 48px;

    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    background:
        linear-gradient(
            135deg,
            #eaf3fc,
            #f5f9ff
        );

    border: 1px solid rgba(10,102,194,.12);
    border-radius: 14px;

    color: #0a66c2;

    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .04em;

    box-shadow:
        0 5px 14px rgba(10,102,194,.08);

    transition:
        transform .28s ease,
        background .28s ease,
        color .28s ease;
}

.leadership-behaviour-card:hover .behaviour-icon {
    transform: translateY(-2px) scale(1.05);

    background: #0a66c2;
    color: #ffffff;
}


/* Card heading */

.leadership-behaviour-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 10px;

    color: #062451;

    font-size: 1.3rem;
    line-height: 1.25;
}


/* Card paragraph */

.leadership-behaviour-card p {
    position: relative;
    z-index: 2;

    margin: 0 0 20px;

    color: #4a6078;

    font-size: .92rem;
    line-height: 1.7;
}


/* Behaviour list */

.leadership-behaviour-card ul {
    position: relative;
    z-index: 2;

    margin: 0;
    padding: 17px 0 0;

    list-style: none;

    border-top: 1px solid rgba(10,102,194,.10);
}

.leadership-behaviour-card li {
    position: relative;

    margin: 0 0 10px;
    padding-left: 24px;

    color: #334e68;

    font-size: .82rem;
    line-height: 1.45;
}

.leadership-behaviour-card li:last-child {
    margin-bottom: 0;
}


/* Tick */

.leadership-behaviour-card li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 0;

    display: flex;

    width: 16px;
    height: 16px;

    align-items: center;
    justify-content: center;

    background: #eaf3fc;
    border-radius: 50%;

    color: #0a66c2;

    font-size: .62rem;
    font-weight: 900;
}


/* =========================================================
   2. IF YOU WORK WITH ME
========================================================= */

.leadership-expectations {
    position: relative;

    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(10,102,194,.13),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 85%,
            rgba(10,102,194,.08),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #eef6ff 0%,
            #f7faff 55%,
            #edf5fd 100%
        );

    border-top: 1px solid rgba(10,102,194,.10);
    border-bottom: 1px solid rgba(10,102,194,.10);

    overflow: hidden;
}


/* Decorative background element */

.leadership-expectations::before {
    content: "";

    position: absolute;

    top: -150px;
    right: -120px;

    width: 360px;
    height: 360px;

    border: 1px solid rgba(10,102,194,.10);
    border-radius: 50%;

    box-shadow:
        0 0 0 45px rgba(10,102,194,.025),
        0 0 0 90px rgba(10,102,194,.018);

    pointer-events: none;
}


/* Keep content above decoration */

.leadership-expectations .leadership-section {
    position: relative;
    z-index: 1;
}


/* Heading */

.leadership-expectations .leadership-section-heading {
    margin-bottom: 35px;
}


/* Override previous light-heading treatment */

.leadership-expectations .leadership-heading-light {
    color: #062451;
}

.leadership-expectations .leadership-heading-light h2 {
    color: #062451;
}

.leadership-expectations .leadership-heading-light p {
    color: #4a6078;
}


/* Marker */

.leadership-expectations .leadership-section-marker {
    background: #0a66c2;
}


/* Expectations grid */

.expectations-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 14px;

    background: transparent;

    border: none;
    border-radius: 0;

    overflow: visible;
}


/* Expectation cards */

.expectation {
    position: relative;

    min-height: 185px;

    padding: 25px 24px 23px;

    display: flex;
    flex-direction: column;

    background:
        rgba(255,255,255,.88) !important;

    border: 1px solid rgba(10,102,194,.12);

    border-radius: 16px;

    box-shadow:
        0 5px 18px rgba(15,35,60,.055);

    overflow: hidden;

    transition:
        transform .28s ease,
        box-shadow .28s ease,
        border-color .28s ease;
}


/* Left blue line */

.expectation::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 4px;

    background: #0a66c2;

    transform: scaleY(.2);
    transform-origin: top;

    transition:
        transform .3s ease;
}


/* Number */

.expectation > span {
    position: relative;
    z-index: 2;

    display: flex;

    width: 32px;
    height: 32px;

    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    background: #eaf3fc;

    border-radius: 9px;

    color: #0a66c2 !important;

    font-size: .68rem;
    font-weight: 900;
}


/* Heading */

.expectation h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 8px;

    color: #062451 !important;

    font-size: 1.08rem;
    line-height: 1.25;
}


/* Description */

.expectation p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: #4a6078 !important;

    font-size: .84rem;
    line-height: 1.6;
}


/* Hover */

.expectation:hover {
    transform: translateY(-5px);

    border-color: rgba(10,102,194,.25);

    box-shadow:
        0 14px 30px rgba(10,102,194,.10);
}

.expectation:hover::before {
    transform: scaleY(1);
}

.expectation:hover > span {
    background: #0a66c2;
    color: #ffffff !important;
}


/* =========================================================
   3. EXPLORE MY EXPERIENCE
========================================================= */

.leadership-next {
    position: relative;

    padding-top: 75px;
    padding-bottom: 90px;
}


/* Heading */

.leadership-next .leadership-section-heading {
    margin-bottom: 35px;
}


/* Grid */

.leadership-next-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 16px;
}


/* Cards */

.leadership-next-card {
    position: relative;

    min-width: 0;
    min-height: 260px;

    padding: 27px 25px 25px;

    display: flex;
    flex-direction: column;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f7faff 100%
        );

    border: 1px solid rgba(10,102,194,.13);
    border-radius: 18px;

    text-decoration: none;

    box-shadow:
        0 5px 18px rgba(15,35,60,.055);

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


/* Top blue line */

.leadership-next-card::before {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    top: 0;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            #0a66c2,
            #4d9ce8
        );

    transform: scaleX(.25);
    transform-origin: left;

    transition:
        transform .35s ease;
}


/* Decorative circle */

.leadership-next-card::after {
    content: "";

    position: absolute;

    right: -55px;
    bottom: -65px;

    width: 165px;
    height: 165px;

    border: 1px solid rgba(10,102,194,.09);

    border-radius: 50%;

    pointer-events: none;

    transition:
        transform .35s ease;
}


/* Card number */

.leadership-next-card > span {
    position: relative;
    z-index: 2;

    display: flex;

    width: 36px;
    height: 36px;

    align-items: center;
    justify-content: center;

    background: #eaf3fc;

    border-radius: 10px;

    color: #0a66c2;

    font-size: .7rem;
    font-weight: 900;
}


/* Card title */

.leadership-next-card h3 {
    position: relative;
    z-index: 2;

    margin: 20px 0 8px;

    color: #062451;

    font-size: 1.18rem;
    line-height: 1.25;
}


/* Card description */

.leadership-next-card p {
    position: relative;
    z-index: 2;

    flex: 1;

    margin: 0 0 20px;

    color: #4a6078;

    font-size: .83rem;
    line-height: 1.65;
}


/* Link */

.leadership-next-card strong {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;

    color: #0a66c2;

    font-size: .78rem;
    font-weight: 800;

    transition:
        transform .25s ease;
}


/* Hover */

.leadership-next-card:hover {
    transform: translateY(-7px);

    border-color: rgba(10,102,194,.28);

    box-shadow:
        0 16px 34px rgba(10,102,194,.11);
}

.leadership-next-card:hover::before {
    transform: scaleX(1);
}

.leadership-next-card:hover::after {
    transform: scale(1.25);
}

.leadership-next-card:hover strong {
    transform: translateX(4px);
}


/* =========================================================
   TABLET / IPAD
========================================================= */

@media (max-width: 1100px) {

    .leadership-behaviour-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 15px;
    }

    .expectations-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .leadership-next-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   IPAD PORTRAIT / SMALL TABLET
========================================================= */

@media (max-width: 850px) {

    .leadership-behaviour-grid {
        grid-template-columns: 1fr;
    }

    .leadership-behaviour-card {
        padding: 26px 25px;
    }

    .expectations-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .expectation {
        min-height: 170px;
    }

    .leadership-next-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    /* ---------------------------------------------
       HOW I WORK WITH TEAMS
    --------------------------------------------- */

    .leadership-behaviour-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .leadership-behaviour-card {
        padding: 24px 21px 22px;

        border-radius: 16px;
    }

    .leadership-behaviour-card .behaviour-icon {
        width: 44px;
        height: 44px;

        margin-bottom: 17px;
    }

    .leadership-behaviour-card h3 {
        font-size: 1.18rem;
    }

    .leadership-behaviour-card p {
        font-size: .88rem;
    }


    /* ---------------------------------------------
       IF YOU WORK WITH ME
    --------------------------------------------- */

    .leadership-expectations::before {
        width: 250px;
        height: 250px;

        top: -100px;
        right: -100px;
    }

    .expectations-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .expectation {
        min-height: auto;

        padding: 22px 20px;

        border-radius: 15px;
    }

    .expectation > span {
        width: 30px;
        height: 30px;

        margin-bottom: 14px;
    }


    /* ---------------------------------------------
       EXPLORE MY EXPERIENCE
    --------------------------------------------- */

    .leadership-next {
        padding-top: 55px;
        padding-bottom: 70px;
    }

    .leadership-next-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .leadership-next-card {
        min-height: 220px;

        padding: 23px 21px;

        border-radius: 16px;
    }

    .leadership-next-card h3 {
        margin-top: 17px;

        font-size: 1.12rem;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .leadership-behaviour-card,
    .leadership-behaviour-card::before,
    .leadership-behaviour-card::after,
    .leadership-behaviour-card .behaviour-icon,
    .expectation,
    .expectation::before,
    .leadership-next-card,
    .leadership-next-card::before,
    .leadership-next-card::after,
    .leadership-next-card strong {
        transition: none !important;
    }

}
/* =========================================================
   LEADERSHIP PAGE
   TEAM + EXPECTATIONS REFINEMENT
   Scoped locally to prevent global page impact
========================================================= */


/* =========================================================
   HOW I WORK WITH TEAMS
========================================================= */

.page-leadership .leadership-teams-section {
    position: relative;
}


/* ---------------------------------------------------------
   TEAM FLOW
--------------------------------------------------------- */

.page-leadership .leadership-team-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;

    width: 100%;
    margin: 34px auto 32px;

    padding: 14px 24px;

    border-top: 1px solid rgba(10, 102, 194, 0.12);
    border-bottom: 1px solid rgba(10, 102, 194, 0.12);

    color: #0a66c2;

    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;

    text-align: center;
}


.page-leadership .team-flow-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    white-space: nowrap;

    color: #526170;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


.page-leadership .team-flow-item strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 25px;
    height: 25px;

    border-radius: 50%;

    background: #eef6ff;
    color: #0a66c2;

    font-size: 0.7rem;
    letter-spacing: 0;
}


.page-leadership .team-flow-item.active {
    color: #111;
}


.page-leadership .team-flow-item.active strong {
    background: #0a66c2;
    color: #fff;
}


.page-leadership .leadership-team-flow i {
    display: block;

    width: 42px;
    height: 1px;

    background: rgba(10, 102, 194, 0.25);

    position: relative;
}


.page-leadership .leadership-team-flow i::after {
    content: "›";

    position: absolute;
    right: -2px;
    top: 50%;

    transform: translateY(-56%);

    color: #0a66c2;

    font-size: 1rem;
    font-style: normal;
    line-height: 1;
}


/* ---------------------------------------------------------
   TEAM CARDS
--------------------------------------------------------- */

.page-leadership .leadership-team-model {
    margin-top: 0;
}


.page-leadership .leadership-team-model
.leadership-behaviour-card {
    display: flex;
    flex-direction: column;

    min-height: 470px;
}


.page-leadership .leadership-team-model
.behaviour-card-content {
    flex: 1;
}


/* Top category */

.page-leadership .leadership-team-model
.behaviour-label {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #536273;
}


/* Main heading */

.page-leadership .leadership-team-model
.behaviour-card-content h3 {
    margin-bottom: 12px;

    font-size: clamp(1.35rem, 1.7vw, 1.65rem);
    line-height: 1.2;
}


/* Description */

.page-leadership .leadership-team-model
.behaviour-card-content p {
    max-width: 95%;
    line-height: 1.65;
}


/* Behaviour list */

.page-leadership .leadership-team-model
.behaviour-card-content ul {
    margin-top: 24px;
}


/* Footer */

.page-leadership .leadership-team-model
.behaviour-card-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 4px;

    margin-top: auto;
    padding-top: 18px;
}


.page-leadership .behaviour-outcome-label {
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #0a66c2;
}


.page-leadership .leadership-team-model
.behaviour-card-footer strong {
    font-size: 1.05rem;
    line-height: 1.25;
}


/* =========================================================
   IF YOU WORK WITH ME
========================================================= */

.page-leadership .leadership-expectations {
    position: relative;
}


/* ---------------------------------------------------------
   EXPECTATION GRID
--------------------------------------------------------- */

.page-leadership .expectations-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 20px;

    margin-top: 38px;
}


/* ---------------------------------------------------------
   EXPECTATION CARD
--------------------------------------------------------- */

.page-leadership .expectation {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 390px;

    padding: 30px 30px 28px;

    border: 1px solid rgba(10, 102, 194, 0.14);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.42);

    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.page-leadership .expectation:hover {
    transform: translateY(-4px);

    border-color: rgba(10, 102, 194, 0.28);

    box-shadow:
        0 14px 30px rgba(10, 61, 110, 0.09);
}


/* ---------------------------------------------------------
   NUMBER
--------------------------------------------------------- */

.page-leadership .expectation-number {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border: 1px solid rgba(10, 102, 194, 0.15);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.6);

    box-shadow:
        0 6px 14px rgba(10, 61, 110, 0.05);
}


.page-leadership .expectation-number span {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;

    color: #1d2a36;
}


/* ---------------------------------------------------------
   CONTENT
--------------------------------------------------------- */

.page-leadership .expectation-content {
    display: flex;
    flex-direction: column;

    flex: 1;
}


.page-leadership .expectation-kicker {
    display: block;

    margin-bottom: 7px;

    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.13em;

    color: #0a66c2;
}


.page-leadership .expectation-content h3 {
    margin: 0 0 10px;

    font-size: 1.25rem;
    line-height: 1.2;

    color: #111;
}


.page-leadership .expectation-content > p {
    margin: 0;

    max-width: 95%;

    font-size: 0.96rem;
    line-height: 1.55;

    color: #26323d;
}


/* ---------------------------------------------------------
   WHAT THIS MEANS
--------------------------------------------------------- */

.page-leadership .expectation-detail {
    margin-top: 22px;
    padding-top: 18px;

    border-top: 1px solid rgba(10, 102, 194, 0.13);
}


.page-leadership .expectation-detail > span {
    display: block;

    margin-bottom: 11px;

    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.14em;

    color: #657383;
}


.page-leadership .expectation-detail ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.page-leadership .expectation-detail li {
    position: relative;

    padding-left: 18px;
    margin-bottom: 8px;

    font-size: 0.82rem;
    line-height: 1.45;

    color: #394652;
}


.page-leadership .expectation-detail li:last-child {
    margin-bottom: 0;
}


.page-leadership .expectation-detail li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 0;

    color: #0a66c2;

    font-size: 0.75rem;
    font-weight: 800;
}


/* ---------------------------------------------------------
   ARROW
--------------------------------------------------------- */

.page-leadership .expectation-arrow {
    position: absolute;

    right: 24px;
    bottom: 23px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    background: #eef6ff;
    color: #0a66c2;

    font-size: 1rem;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}


.page-leadership .expectation:hover
.expectation-arrow {
    transform: translateX(3px);

    background: #0a66c2;
    color: #fff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .page-leadership .expectations-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-leadership .leadership-team-model {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    /* Team flow */

    .page-leadership .leadership-team-flow {
        justify-content: flex-start;

        gap: 12px;

        margin: 28px 0 24px;
        padding: 12px 14px;

        overflow-x: auto;

        font-size: 0.68rem;
        letter-spacing: 0.08em;

        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .page-leadership .leadership-team-flow::-webkit-scrollbar {
        display: none;
    }


    .page-leadership .team-flow-item {
        flex: 0 0 auto;
    }


    .page-leadership .leadership-team-flow i {
        flex: 0 0 24px;
        width: 24px;
    }


    /* Team cards */

    .page-leadership .leadership-team-model {
        grid-template-columns: 1fr;
    }


    .page-leadership .leadership-team-model
    .leadership-behaviour-card {
        min-height: 0;
    }


    /* Expectations */

    .page-leadership .expectations-grid {
        grid-template-columns: 1fr;

        gap: 16px;

        margin-top: 28px;
    }


    .page-leadership .expectation {
        min-height: 0;

        padding: 24px 24px 58px;
    }


    .page-leadership .expectation-detail {
        margin-top: 20px;
    }


    .page-leadership .expectation-arrow {
        right: 20px;
        bottom: 18px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .page-leadership .leadership-team-flow {
        margin-left: -4px;
        margin-right: -4px;
    }


    .page-leadership .expectation {
        padding-left: 21px;
        padding-right: 21px;
    }

}
