:root {
    --g1: linear-gradient(36deg, rgba(15, 120, 168, 1) 12%, rgb(3, 77, 111) 52%, rgb(15, 120, 168) 83%);
    --g2: linear-gradient(36deg, rgba(56, 175, 74, 1) 63%, rgba(15, 120, 168, 1) 63%);
    --blue: #0f78a8;
    --darkblue: #034d6f;
    --green: #38af4a;
    --white: #fff;
    --soft: #f0f8fc;
    --gsoft: #f2faf3;
    --muted: #4a7a8a;
    --border: #c8e4ef
}

/* ══ S1: TESTIMONIALS — Split diagonal card ══ */
.s1 {
    background: var(--white);
    padding: 80px 52px
}

.s1-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px
}

.s1-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px
}

.s1-eyebrow-bar {
    width: 28px;
    height: 3px;
    background: var(--g1);
    border-radius: 2px
}

.s1-h {
    font-size: 50px;
    font-weight: 900;
    color: var(--darkblue);
    line-height: 1.05
}

.s1-h em {
    background: var(--g1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: normal
}

.s1-stats {
    display: flex;
    gap: 0;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden
}

.s1-stat {
    padding: 16px 32px;
    text-align: center
}

.s1-stat:first-child {
    border-right: 1.5px solid var(--border)
}

.s1-stat-n {
    font-size: 36px;
    font-weight: 900;
    background: var(--g1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.s1-stat-l {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 2px
}

.t1-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.t1c {
    background: var(--white);
    border-radius: 20px;
    border: 1.5px solid var(--border);
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column
}

.t1c:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15, 120, 168, .15)
}

.t1c-top-band {
    height: 6px;
    background: var(--g1)
}

.t1c-top-band.green {
    background: var(--g2)
}

.t1c-body {
    padding: 26px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.t1c-stars {
    display: flex;
    gap: 4px
}

.t1c-star {
    width: 14px;
    height: 14px;
    border-radius: 2px
}

.t1c-star.fill {
    background: var(--g1)
}

.t1c-star.empty {
    background: var(--border)
}

.t1c-text {
    font-size: 16px;
    line-height: 1.8;
    color: #1a3a4a;
    flex: 1
}

.t1c-text.cl {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.t1c-btn {
    font-size: 15px;
    font-weight: 700;
    color: var(--blue);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: none;
    text-align: left
}

.t1c-sep {
    height: 1px;
    background: var(--border)
}

.t1c-foot {
    display: flex;
    align-items: center;
    gap: 12px
}

.t1c-av {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid transparent;
    background: var(--g1) border-box;
    outline: 2px solid var(--blue);
    flex-shrink: 0
}

.t1c-ini {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--g1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    flex-shrink: 0
}

.t1c-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--darkblue)
}

.t1c-role {
    font-size: 14px;
    color: var(--muted);
    margin-top: 2px
}

.t1c-pills {
    display: flex;
    gap: 6px;
    margin-top: 6px
}

.pill-b {
    font-size: 14px;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 700;
    background: var(--soft);
    color: var(--darkblue)
}

.pill-g {
    font-size: 14px;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 700;
    background: var(--green);
    color: #fff
}


.s2 {
    background: var(--g1);
    padding: 80px 52px;
    position: relative;
    overflow: hidden
}

.s2::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(56, 175, 74, .18);
    pointer-events: none
}

.s2::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    pointer-events: none
}

.s2-head {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1
}

.s2-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px
}

.s2-eyebrow-line {
    width: 28px;
    height: 2px;
    background: var(--green);
    border-radius: 2px
}

.s2-h {
    font-size: 50px;
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 8px
}

.s2-h em {
    color: var(--green);
    font-style: normal
}

.s2-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, .65)
}

.s2-stag {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 32px
}

.t2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    position: relative;
    z-index: 1
}

.t2c {
    background: rgba(255, 255, 255, .12);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .25);
    overflow: hidden;
    transition: transform .2s, background .2s;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(4px)
}

.t2c:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, .2)
}

.t2c-accent {
    height: 4px;
    background: var(--g2)
}

.t2c-top {
    padding: 24px 16px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px
}

.t2c-img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, .4)
}

.t2c-fallback {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    border: 3px solid rgba(255, 255, 255, .4)
}

.t2c-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: var(--green);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px
}

.t2c-name {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    line-height: 1.3;
    padding: 0 8px
}

.t2c-divider {
    height: 1px;
    background: rgba(255, 255, 255, .15);
    margin: 0 16px
}

.t2c-body {
    padding: 14px 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.t2c-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: rgba(255, 255, 255, .75)
}

.t2c-row i {
    color: var(--green);
    width: 14px;
    font-size: 12px;
    flex-shrink: 0
}

.t2c-row:has(span:empty) {
    display: none
}

/* ══ S3: PAST SPEAKERS — Horizontal feature cards with diagonal color split ══ */
.s3 {
    background: var(--soft);
    padding: 80px 52px
}

.s3-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 56px
}

.s3-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px
}

.s3-eyebrow-bar {
    width: 28px;
    height: 3px;
    background: var(--g1);
    border-radius: 2px
}

.s3-h {
    font-size: 50px;
    font-weight: 900;
    color: var(--darkblue);
    line-height: 1.05
}

.s3-h em {
    background: var(--g1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: normal
}

.s3-desc {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75;
    max-width: 320px;
    padding-top: 6px;
    text-align: right
}

.t3-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
}

.t3c {
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    background: var(--white);
    transition: transform .2s, box-shadow .2s;
    display: flex;
    min-height: 160px
}

.t3c:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 36px rgba(15, 120, 168, .13)
}

.t3c-left {
    width: 220px;
    flex-shrink: 0;
    background: var(--g1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    gap: 12px;
    position: relative;
    overflow: hidden
}

.t3c-left::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08)
}

.t3c-left.alt {
    background: linear-gradient(36deg, rgb(3, 77, 111) 12%, rgba(15, 120, 168, 1) 83%)
}

.t3c-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, .5);
    position: relative;
    z-index: 1
}

.t3c-fallback {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    border: 3px solid rgba(255, 255, 255, .4);
    position: relative;
    z-index: 1
}

.t3c-edition {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    position: relative;
    z-index: 1
}

.t3c-chip {
    background: var(--green);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    position: relative;
    z-index: 1
}

.t3c-right {
    flex: 1;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px
}

.t3c-badge-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px
}

.t3c-icon-badge {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: var(--soft);
    display: flex;
    align-items: center;
    justify-content: center
}

.t3c-icon-badge i {
    color: var(--blue);
    font-size: 14px
}

.t3c-edition-lbl {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue)
}

.t3c-name {
    font-size: 22px;
    font-weight: 900;
    color: var(--darkblue);
    line-height: 1.2
}

.t3c-jobtitle {
    font-size: 15px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: .5px;
    margin-bottom: 6px
}

.t3c-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px
}

.t3c-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: var(--muted)
}

.t3c-info i {
    color: var(--blue);
    font-size: 12px
}

.t3c-info:has(span:empty) {
    display: none
}

.gf {
    background: var(--g1);
    color: rgba(255, 255, 255, .55);
    text-align: center;
    padding: 20px;
    font-size: 12px;
    letter-spacing: 1.5px;
    border-top: 4px solid var(--green)
}

.gf b {
    color: #fff
}

@media(max-width:900px) {
    .t1-grid {
        grid-template-columns: 1fr
    }

    .t2-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .s3-head {
        flex-direction: column;
        gap: 16px
    }

    .s3-desc {
        text-align: left
    }

    .t3c {
        flex-direction: column
    }

    .t3c-left {
        width: 100%;
        flex-direction: row;
        gap: 16px;
        justify-content: flex-start;
        padding: 20px 24px
    }

    .s1-stats {
        display: none
    }
}

@media(max-width:600px) {

    .s1,
    .s2,
    .s3 {
        padding: 48px 16px
    }

    .s1-h,
    .s2-h,
    .s3-h {
        font-size: 34px
    }

    .t2-grid {
        grid-template-columns: 1fr
    }
}