:root {
--brand-blue: #3179AF;
--brand-navy: #072136;
}
body { font-family: 'Lato', sans-serif; color: var(--brand-navy); margin: 0; padding: 0; overflow-x: clip; }
html { overflow-x: clip; }
.font-heading { font-family: 'Raleway', sans-serif; }
.nav-dropdown-item {
display: block; padding: 0.75rem 1rem; color: black; background-color: var(--brand-blue);
transition: all 0.2s ease; text-decoration: none;
}
.nav-dropdown-item:hover { background-color: white; color: var(--brand-blue); }
#mobile-drawer { transition: transform 0.3s ease-in-out; }
.hero-slide {
position: absolute; inset: 0; opacity: 0; z-index: 0;
transition: opacity 0.8s ease-in-out; pointer-events: none;
}
.hero-slide.active { opacity: 1; z-index: 10; pointer-events: auto; }
.dot {
width: 12px; height: 12px; background: rgba(255, 255, 255, 0.5);
border-radius: 50%; cursor: pointer; transition: background 0.3s;
}
.dot.active { background: white; }
.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}
.didot-heading {
    font-family: "Libre Bodoni", serif;
}
/* ==========================================
   Awareness / Grow / Lead Flow Section
========================================== */

.awareness-flow {
    --flow-arrow: 28;
    --flow-gap: 14;
    --flow-overlap: calc((var(--flow-arrow) - var(--flow-gap)) * 1px);
    display: flex;
    align-items: stretch;
    width: 100%;
    isolation: isolate;
}

.flow-card {
    position: relative;
    flex: 1 1 0;
    min-height: 228px;
    color: #fff;
}

.flow-shape {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
}

.flow-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    box-sizing: border-box;
    padding: 34px 50px 34px 28px;
}

.flow-card--grow .flow-inner,
.flow-card--lead .flow-inner {
    padding-left: 48px;
}

.flow-inner h2 {
    font-size: 30px;
    font-weight: 400;
    line-height: normal;
    margin: 0 0 16px;
}

.flow-inner p {
    font-size: 14px;
    line-height: 1.8em;
    margin: 0;
}

.flow-card--awareness {
    z-index: 1;
}

.flow-card--grow,
.flow-card--lead {
    margin-left: calc(-1 * var(--flow-overlap));
    z-index: 2;
}

.flow-card--lead {
    z-index: 3;
}

@media (max-width: 768px) {
    .awareness-flow {
        flex-direction: column;
        gap: 16px;
    }

    .flow-card,
    .flow-card--grow,
    .flow-card--lead {
        margin-left: 0;
        min-height: auto;
    }

    .flow-shape {
        display: none;
    }

    .flow-card--awareness {
        background: #4EA0D4;
    }

    .flow-card--grow {
        background: #3179AF;
    }

    .flow-card--lead {
        background: #0C3C60;
    }

    .flow-inner {
        padding: 28px 24px;
    }
}

/* ==========================================
   Our Impact (Who We Are)
========================================== */

.impact-section {
    background: #fff;
    padding: 28px 32px 48px;
}

.impact-section__inner {
    max-width: 980px;
    margin: 0 auto;
}

.impact-section__header {
    text-align: center;
    margin-bottom: 0;
}

.impact-section__header h2 {
    margin: 0 0 2px;
}

.impact-section__rule {
    width: 170px;
    height: 5px;
    border: 0;
    background: #C7C7C7;
    margin: 0 auto 14px;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-items: center;
}

.impact-stat {
    text-align: center;
    width: 100%;
}

.impact-stat__value {
    display: block;
    font-size: 70px;
    font-style: italic;
    font-weight: 400;
    line-height: 1;
    color: #09133D;
}

.impact-stat__label {
    display: block;
    margin-top: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #000;
}

.impact-stat:nth-child(1) .impact-stat__label {
    max-width: 268px;
    margin-left: auto;
    margin-right: auto;
}

.impact-stat:nth-child(3) .impact-stat__label,
.impact-stat:nth-child(4) .impact-stat__label {
    max-width: 258px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .impact-stats {
        grid-template-columns: 1fr;
    }

    .impact-stat__label {
        max-width: none !important;
    }
}

/* ==========================================
   Areas of intervention (Who We Are)
========================================== */

.intervention-section__header {
    max-width: 980px;
    margin: 0 auto;
    padding: 40px 32px 32px;
    text-align: center;
}

.intervention-section__cards {
    background: #F7F7F7;
}

.intervention-section__cards-inner {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    min-height: 367px;
}

.intervention-card {
    position: absolute;
    top: 47px;
    display: flex;
    height: 273px;
    background: #fff;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.35);
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.intervention-card:hover {
    opacity: 0.95;
}

.intervention-card--leadership {
    left: -119px;
    width: 530px;
}

.intervention-card--empowerment {
    left: 480px;
    width: 611px;
}

.intervention-card__media {
    flex-shrink: 0;
    height: 273px;
    overflow: hidden;
}

.intervention-card--leadership .intervention-card__media {
    width: 234px;
}

.intervention-card--empowerment .intervention-card__media {
    width: 297px;
}

.intervention-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intervention-card__content {
    flex: 1;
    min-width: 0;
    padding: 29px 23px 22px;
    box-sizing: border-box;
}

.intervention-card__content h3 {
    margin: 0 0 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    color: #09133D;
}

.intervention-card__content p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #000;
}

.intervention-card--leadership .intervention-card__content p {
    max-width: 261px;
}

.intervention-card--empowerment .intervention-card__content p {
    max-width: 283px;
}

@media (max-width: 1024px) {
    .intervention-section__cards-inner {
        display: flex;
        flex-direction: column;
        gap: 32px;
        min-height: 0;
        padding: 40px 32px;
    }

    .intervention-card,
    .intervention-card--leadership,
    .intervention-card--empowerment {
        position: static;
        width: 100%;
        max-width: 530px;
        margin: 0 auto;
        height: auto;
        flex-direction: column;
    }

    .intervention-card--empowerment {
        max-width: 611px;
    }

    .intervention-card__media,
    .intervention-card--leadership .intervention-card__media,
    .intervention-card--empowerment .intervention-card__media {
        width: 100%;
        height: 220px;
    }

    .intervention-card__content p {
        max-width: none;
    }
}

/* ==========================================
   What We Do — feature rows
========================================== */

.wwd-intro {
    background: #fff;
    padding: 0 clamp(24px, 5vw, 96px);
}

.wwd-intro__inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 16px 0 17px;
}

.wwd-intro p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    line-height: 2;
    color: #000;
}

.wwd-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    background: #fff;
}

.wwd-feature__media {
    position: relative;
    background: #F7F7F7;
    min-height: 660px;
}

.wwd-feature--media-right .wwd-feature__media {
    min-height: 671px;
}

.wwd-feature__media img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wwd-feature__content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 48px clamp(32px, 6vw, 96px);
    box-sizing: border-box;
}

.wwd-feature__content-inner {
    width: 100%;
    max-width: 490px;
}

.wwd-feature__content h2 {
    margin: 0 0 31px;
    font-family: 'Raleway', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    color: #09133D;
}

.wwd-feature--media-right .wwd-feature__content h2 {
    margin: 0 0 48px;
}

.wwd-feature__content p {
    margin: 0 0 46px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 2;
    color: #000;
}

.wwd-feature--media-right .wwd-feature__content p {
    margin-bottom: 48px;
}

.wwd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 201px;
    height: 50px;
    border-radius: 8px;
    background: #09133D;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.wwd-btn:hover {
    background: #072136;
}

/* ==========================================
   Leadership Development — hero + features
========================================== */

.ld-hero {
    position: relative;
    width: 100%;
    min-height: 807px;
    background: #000;
    overflow: hidden;
}

.ld-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}

.ld-hero__content {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0 auto;
    padding: 361px 32px 48px;
    text-align: center;
    color: #fff;
    box-sizing: border-box;
}

.ld-hero__content h1 {
    margin: 0 0 25px;
    font-family: 'Raleway', sans-serif;
    font-size: 75px;
    font-weight: 700;
    line-height: 1.1;
}

.ld-hero__quote {
    max-width: 569px;
    margin: 0 auto 10px;
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.5;
}

.ld-hero__quote strong {
    font-weight: 700;
}

.ld-feature h2 {
    font-size: 45px;
    line-height: 1.2;
}

.ld-feature--beyond h2 {
    margin: 0 0 45px;
}

.ld-feature--beyond .wwd-feature__content {
    padding-top: 67px;
}

.ld-feature--beyond .wwd-feature__content p {
    margin-bottom: 0;
}

.ld-feature--beyond .wwd-feature__body {
    margin-bottom: 34px;
}

.wwd-feature__body p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 2;
    color: #000;
}

.ld-feature--beyond .wwd-btn {
    margin-bottom: 53px;
}

.ld-feature--standout h2 {
    margin: 0 0 17px;
}

.ld-feature--standout .wwd-feature__content {
    padding-top: 45px;
}

.ld-feature--standout .wwd-feature__content p {
    margin-bottom: 37px;
}

.ld-feature--standout .wwd-btn {
    margin-bottom: 10px;
}

.ld-feature--standout .wwd-feature__media {
    min-height: 729px;
}

.ld-feature--wegrow h2 {
    max-width: 360px;
    margin: 0 0 54px;
}

.ld-feature--wegrow .wwd-feature__content {
    padding-top: 25px;
}

.ld-feature--wegrow .wwd-feature__content p {
    margin-bottom: 59px;
}

.ld-feature--wegrow .wwd-btn {
    width: 196px;
    margin-bottom: 70px;
}

.ld-feature--wegrow .wwd-feature__media {
    min-height: 692px;
}

.wwd-feature--cream {
    background: #F7F7F7;
}

.wwd-feature--cream .wwd-feature__content {
    background: #F7F7F7;
}

.wwd-feature--cream .wwd-feature__media {
    background: #000;
}

.ld-feature--beyond .wwd-feature__media {
    min-height: 673px;
}

@media (max-width: 900px) {
    .ld-hero__content {
        padding: 200px 32px 48px;
    }

    .ld-hero__content h1 {
        font-size: 48px;
    }

    .ld-hero__quote {
        font-size: 22px;
    }

    .ld-feature--beyond .wwd-feature__content,
    .ld-feature--standout .wwd-feature__content,
    .ld-feature--wegrow .wwd-feature__content {
        padding-top: 40px;
    }

    .ld-feature--standout .wwd-feature__media,
    .ld-feature--wegrow .wwd-feature__media,
    .ld-feature--beyond .wwd-feature__media {
        min-height: 320px;
    }
}

@media (max-width: 900px) {
    .wwd-feature {
        grid-template-columns: 1fr;
    }

    .wwd-feature--media-right .wwd-feature__media {
        order: 2;
    }

    .wwd-feature--media-right .wwd-feature__content {
        order: 1;
    }

    .wwd-feature__media {
        min-height: 320px;
    }

    .wwd-feature--media-right .wwd-feature__media {
        min-height: 320px;
    }

    .wwd-feature__content {
        padding: 40px 32px 48px;
    }

    .wwd-feature__content-inner {
        max-width: none;
        margin: 0;
    }
}

/* ==========================================
   Economic Empowerment
========================================== */

.ee-hero {
    position: relative;
    width: 100%;
    min-height: 519px;
    background: #000;
    overflow: hidden;
}

.ee-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.44;
}

.ee-hero__content {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0 auto;
    padding: 200px 0 10px;
    box-sizing: border-box;
}

.ee-hero__content h1 {
    max-width: 630px;
    margin: 0;
    font-family: 'Raleway', sans-serif;
    font-size: 75px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    text-align: left;
}

.ee-intro {
    background: #fff;
}

.ee-intro__inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 16px 0 17px;
    box-sizing: border-box;
}

.ee-intro p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    line-height: 2;
    color: #000;
}

.ee-samuel {
    background: #fff;
}

.ee-samuel__strip {
    max-width: 980px;
    margin: 0 auto;
    background: #F7F7F7;
}

.ee-samuel__grid {
    display: grid;
    grid-template-columns: 490px 490px;
}

.ee-samuel__text {
    box-sizing: border-box;
}

.ee-samuel__text h2 {
    margin: 38px 0 43px;
    font-family: 'Raleway', sans-serif;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.2;
    color: #09133D;
}

.ee-samuel__body {
    max-width: 530px;
    margin-bottom: 35px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 2;
    color: #000;
}

.ee-samuel__body p {
    margin: 0;
}

.ee-samuel__media {
    position: relative;
    min-height: 1232px;
    background: #F7F7F7;
}

.ee-samuel__media img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ee-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #09133D;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.ee-btn:hover {
    background: #273468;
}

.ee-btn--sm {
    width: 150px;
    height: 40px;
    margin-bottom: 58px;
}

.ee-btn--donate {
    width: 190px;
    height: 51px;
}

.ee-ishimwe {
    background: #fff;
}

.ee-ishimwe__inner {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    min-height: 1290px;
    padding-bottom: 24px;
}

.ee-ishimwe__images {
    position: relative;
    left: -90px;
    width: 514px;
    padding-top: 64px;
}

.ee-ishimwe__images img {
    display: block;
    width: 514px;
    object-fit: cover;
}

.ee-ishimwe__images img:nth-child(1) {
    height: 364px;
}

.ee-ishimwe__images img:nth-child(2) {
    height: 383px;
}

.ee-ishimwe__images img:nth-child(3) {
    height: 405px;
}

.ee-ishimwe__images img + img {
    margin-top: 25px;
}

.ee-ishimwe__images img:last-child {
    margin-bottom: 24px;
}

.ee-ishimwe__panel {
    position: absolute;
    top: 64px;
    left: 490px;
    width: 650px;
    min-height: calc(364px + 25px + 383px + 25px + 405px);
    margin-bottom: -403px;
    background: rgba(7, 33, 54, 0.9);
    color: #fff;
    padding: 22px 24px 34px;
    box-sizing: border-box;
}

.ee-ishimwe__panel h2 {
    margin: 0 0 16px;
    font-family: 'Raleway', sans-serif;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.2;
    color: #fff;
}

.ee-ishimwe__panel p,
.ee-ishimwe__panel li {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 2;
    color: #fff;
}

.ee-ishimwe__panel p {
    margin: 0 0 20px;
}

.ee-ishimwe__panel .ee-ishimwe__subhead {
    margin: 0 0 16px;
    font-weight: 700;
}

.ee-ishimwe__panel ul {
    margin: 0 0 20px;
    padding-left: 1.25em;
    list-style: disc;
}

.ee-ishimwe__panel .ee-ishimwe__dash-list p {
    margin: 0;
}

.ee-donate {
    background: #fff;
    padding: 21px 0 41px;
}

.ee-donate__wrap {
    width: min(980px, calc(100% - 80px));
    margin: 0 auto;
}

.ee-donate__bar {
    position: relative;
    background: #F7F7F7;
    min-height: 167px;
}

.ee-donate__bar p {
    margin: 43px 0 54px;
    max-width: 600px;
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    line-height: 1.3;
    font-weight: 400;
    color: #000;
}

.ee-donate__bar .ee-btn--donate {
    position: absolute;
    top: 58px;
    right: 0;
    width: 190px;
}

.ee-language {
    background: #90ADC6;
    overflow: hidden;
}

.ee-language__inner {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    min-height: 700px;
}

.ee-language__card {
    position: relative;
    z-index: 2;
    left: -135px;
    width: 695px;
    margin-top: 118px;
    margin-bottom: 10px;
    padding: 49px 45px;
    background: #F7F7F7;
    box-sizing: border-box;
}

.ee-language__card h2 {
    margin: 0 0 46px;
    font-family: 'Raleway', sans-serif;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.2;
    color: #09133D;
}

.ee-language__card p {
    margin: 0 0 36px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 2;
    color: #000;
}

.ee-language__card .ee-btn--sm {
    margin-bottom: 0;
}

.ee-language__media {
    position: absolute;
    z-index: 1;
    top: 61px;
    left: 500px;
    width: 570px;
    height: 580px;
}

.ee-language__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1100px) {
    .ee-samuel__strip,
    .ee-ishimwe__inner,
    .ee-language__inner,
    .ee-intro__inner,
    .ee-hero__content {
        max-width: 100%;
        padding-left: 32px;
        padding-right: 32px;
    }

    .ee-samuel__grid {
        display: flex;
        flex-direction: column;
    }

    .ee-samuel__media {
        min-height: 480px;
        order: 2;
    }

    .ee-samuel__text {
        order: 1;
    }

    .ee-ishimwe__images {
        left: 0;
        width: 100%;
        padding-top: 32px;
    }

    .ee-ishimwe__images img {
        width: 100%;
        height: auto;
    }

    .ee-ishimwe__panel {
        position: static;
        width: 100%;
        min-height: auto;
        margin-top: 24px;
        margin-bottom: 0;
    }

    .ee-ishimwe__inner {
        min-height: auto;
    }

    .ee-donate__bar .ee-btn--donate {
        position: static;
        margin: 0 32px 32px;
    }

    .ee-donate__bar {
        min-height: auto;
        padding-bottom: 32px;
    }

    .ee-donate__bar p {
        margin: 32px 32px 24px;
    }

    .ee-language__card {
        left: 0;
        width: auto;
        margin: 32px;
    }

    .ee-language__media {
        position: static;
        width: calc(100% - 64px);
        height: auto;
        margin: 0 32px 59px;
        aspect-ratio: 570 / 580;
    }

    .ee-language__inner {
        min-height: auto;
        padding-bottom: 32px;
    }
}

@media (max-width: 768px) {
    .ee-hero__content {
        padding-top: 140px;
    }

    .ee-hero__content h1 {
        font-size: 48px;
    }

    .ee-donate__bar p {
        font-size: 28px;
    }
}

/* ==========================================
   Local MP4 video panels
========================================== */

.local-video-panel {
    background: #000;
}

.local-video-panel__video {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.local-video-panel__video.is-ready {
    opacity: 1;
}

.local-video-panel__play {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 4rem;
    height: 4rem;
    border: 2px solid #fff;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0 0 0 / 0.2);
    opacity: 0.8;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.local-video-panel__play:hover {
    opacity: 1;
}

.local-video-panel__play.hidden {
    display: none;
}

/* ==========================================
   Site-wide responsive helpers
========================================== */

.wwa-hero-video-wrap {
    aspect-ratio: 980 / 563;
    width: 100%;
    max-height: 563px;
    overflow: hidden;
    background: #000;
}

.wwa-hero-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

@media (max-width: 768px) {
    nav.fixed.h-32 {
        height: 5rem;
    }

    body.pt-32 {
        padding-top: 5rem;
    }

    nav.fixed.h-32 img[alt="INA Hub Logo"] {
        height: 3.5rem;
    }

    .local-video-panel__play {
        width: 3rem;
        height: 3rem;
    }
}

/* ==========================================
   Beyond Success — social follow band
========================================== */

.bs-social-band {
    background: linear-gradient(135deg, #072136 0%, #0a2d4a 55%, #072136 100%);
}

.bs-social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 13.5rem;
    padding: 1.75rem 1.25rem;
    border: 2px solid rgb(227 182 89 / 0.35);
    border-radius: 0.75rem;
    background: rgb(255 255 255 / 0.05);
    color: #fff;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    overflow: hidden;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.bs-social-card:hover {
    border-color: #e3b659;
    background: rgb(255 255 255 / 0.1);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgb(0 0 0 / 0.25);
}

.bs-social-card__icon {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: #e3b659;
    color: #072136;
    font-size: 1.4rem;
    margin-bottom: 0.35rem;
}

.bs-social-card__label {
    display: block;
    width: 100%;
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgb(227 182 89 / 0.95);
}

.bs-social-card__handle {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0 0.25rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.35;
    word-break: break-word;
}

.bs-social-card__follow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.65rem;
    padding: 0.45rem 1.1rem;
    border-radius: 9999px;
    border: 1px solid rgb(227 182 89 / 0.55);
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #e3b659;
    background: rgb(227 182 89 / 0.08);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.bs-social-card:hover .bs-social-card__follow {
    background: #e3b659;
    border-color: #e3b659;
    color: #072136;
}

/* ==========================================
   Interactive Experience Hero
========================================== */

.ie-hero {
    position: relative;
    min-height: 820px;
    overflow: hidden;
    background: #000;
}

.ie-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ie-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(7,33,54,.60);
}

.ie-hero__content {
    position: relative;
    z-index: 2;

    max-width: 980px;
    margin: 0 auto;

    padding: 270px 32px 120px;

    text-align: center;

    color: white;
}

.ie-hero__eyebrow {

    margin-bottom: 24px;

    font-family: 'Montserrat', sans-serif;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: .24em;

    color: #E3B659;

    text-transform: uppercase;
}

.ie-hero h1 {

    margin: 0;

    font-family: 'Raleway', sans-serif;

    font-size: 75px;

    font-weight: 700;

    line-height: 1.1;
}

.ie-hero__subtitle {

    max-width: 720px;

    margin: 32px auto 48px;

    font-family: 'Montserrat', sans-serif;

    font-size: 22px;

    line-height: 1.9;
}

.ie-hero__actions {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;
}

.ie-btn-outline {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 190px;

    height: 50px;

    border-radius: 8px;

    border: 2px solid white;

    color: white;

    text-decoration: none;

    transition: .25s;
}

.ie-btn-outline:hover {

    background: white;

    color: #072136;
}

@media(max-width:900px){

.ie-hero{

min-height:700px;

}

.ie-hero__content{

padding:180px 32px 80px;

}

.ie-hero h1{

font-size:48px;

}

.ie-hero__subtitle{

font-size:18px;

}

}
/* ==========================================
   Interactive Experience Overview
========================================== */

.ie-overview{

padding:90px 32px;

background:#fff;

}

.ie-overview__inner{

max-width:1170px;

margin:auto;

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.ie-section-label{

font-family:Montserrat,sans-serif;

font-size:14px;

font-weight:700;

letter-spacing:.22em;

color:#3179AF;

margin-bottom:18px;

text-transform:uppercase;

}

.ie-overview h2{

margin:0 0 30px;

font-family:Raleway,sans-serif;

font-size:45px;

font-weight:700;

line-height:1.2;

color:#09133D;

}

.ie-overview__body p{

font-family:Montserrat,sans-serif;

font-size:18px;

line-height:2;

margin-bottom:28px;

}

.ie-overview__image{

overflow:hidden;

border-radius:12px;

box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.ie-overview__image img{

display:block;

width:100%;

height:100%;

object-fit:cover;

transition:.4s;

}

.ie-overview__image:hover img{

transform:scale(1.04);

}

/* ==========================================
Leadership Pillars
========================================== */

.ie-pillars{

padding:90px 32px;

background:#F7F7F7;

}

.ie-pillars__inner{

max-width:1170px;

margin:auto;

}

.ie-pillars__grid{

display:grid;

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

gap:28px;

margin-top:60px;

}

.ie-pillar{

background:#fff;

padding:40px 30px;

border-radius:10px;

box-shadow:0 8px 24px rgba(0,0,0,.08);

transition:.3s;

}

.ie-pillar:hover{

transform:translateY(-8px);

}

.ie-pillar__number{

font-family:Raleway;

font-size:18px;

font-weight:700;

color:#3179AF;

margin-bottom:22px;

}

.ie-pillar h3{

font-family:Raleway;

font-size:28px;

color:#09133D;

margin-bottom:18px;

}

.ie-pillar p{

font-family:Montserrat;

font-size:17px;

line-height:1.9;

}

@media(max-width:900px){

.ie-overview__inner{

grid-template-columns:1fr;

}

.ie-pillars__grid{

grid-template-columns:1fr;

}

}

/* ==========================================
Featured Speakers
========================================== */

.ie-speakers{

padding:100px 32px;

background:#fff;

}

.ie-speakers__inner{

max-width:1170px;

margin:auto;

}

.ie-speakers__grid{

display:grid;

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

gap:32px;

margin-top:60px;

}

.ie-speaker{

background:#fff;

text-align:center;

transition:.3s;

}

.ie-speaker img{

width:100%;

aspect-ratio:1;

object-fit:cover;

border-radius:12px;

margin-bottom:24px;

box-shadow:0 12px 30px rgba(0,0,0,.12);

}

.ie-speaker h3{

font-family:Raleway;

font-size:22px;

color:#09133D;

margin-bottom:10px;

}

.ie-speaker p{

font-family:Montserrat;

font-size:16px;

color:#666;

}

.ie-speaker:hover{

transform:translateY(-8px);

}

@media(max-width:1000px){

.ie-speakers__grid{

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

}

}

@media(max-width:600px){

.ie-speakers__grid{

grid-template-columns:1fr;

}

}



/* ==========================================
Tickets
========================================== */

.ie-ticket{

padding:100px 32px;

background:#fff;

}

.ie-ticket__inner{

max-width:1100px;

margin:auto;

}

.ie-ticket__grid{

display:grid;

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

gap:40px;

margin-top:60px;

}

.ie-price-card{

position:relative;

padding:50px;

border-radius:12px;

background:#fff;

box-shadow:0 10px 35px rgba(0,0,0,.08);

text-align:center;

}

.ie-price-card--featured{

border:3px solid #3179AF;

}

.ie-badge{

position:absolute;

top:-15px;

left:50%;

transform:translateX(-50%);

background:#3179AF;

color:#fff;

padding:8px 20px;

border-radius:30px;

font-family:Montserrat;

font-size:13px;

font-weight:700;

letter-spacing:.08em;

text-transform:uppercase;

}

.ie-price-card h3{

font-family:Raleway;

font-size:32px;

margin-bottom:25px;

color:#09133D;

}

.ie-price{

font-family:Raleway;

font-size:60px;

font-weight:700;

color:#072136;

margin-bottom:35px;

}

.ie-price span{

display:block;

font-size:18px;

font-family:Montserrat;

margin-top:8px;

}

.ie-price-card ul{

list-style:none;

padding:0;

margin:0 0 40px;

}

.ie-price-card li{

padding:14px 0;

font-family:Montserrat;

font-size:18px;

border-bottom:1px solid #eee;

}

@media(max-width:900px){

.ie-ticket__grid{

grid-template-columns:1fr;

}

}