.services-bento {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bento-row {
    display: flex;
    gap: 16px;
}

/* ── Shared card base ── */
.bento-card {
    background: radial-gradient(circle at 6% 8%, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0) 36%), radial-gradient(circle at 90% 78%, rgba(80, 236, 255, 0.08) 0, rgba(80, 236, 255, 0) 32%), linear-gradient(135deg, #0b1f43 0%, #0f5a78 48%, #0c6a79 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    padding: 32px 28px;
    color: #fff;
    transition: border-color 0.25s, transform 0.25s;
}

.bento-card:hover {
    border-color: rgba(99, 210, 219, 0.35);
    transform: translateY(-3px);
}

/* ── Hero card (tall left) ── */
.bento-hero {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bento-hero h3 {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.bento-hero p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin: 0;
}

.bento-bullets {
    list-style: none;
    padding: 0;
    margin: auto 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bento-bullets li {
    font-size: 0.82rem;
    color: #63d2db;
    padding-left: 16px;
    position: relative;
}

.bento-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #63d2db;
}

/* ── Cluster (right group) ── */
.bento-cluster {
    flex: 1;
    background: radial-gradient(circle at 6% 8%, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0) 36%), radial-gradient(circle at 90% 78%, rgba(80, 236, 255, 0.08) 0, rgba(80, 236, 255, 0) 32%), linear-gradient(135deg, #0b1f43 0%, #0f5a78 48%, #0c6a79 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    padding: 24px 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.bento-cluster-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bento-cluster-header h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.bento-cluster-header small {
    display: block;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 2px;
}

.bento-cluster-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

/* ── Mini cards inside cluster ── */
.bento-mini {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 16px 14px;
    transition: background 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bento-mini:hover {
    background: rgba(99, 210, 219, 0.07);
    border-color: rgba(99, 210, 219, 0.25);
}

.bento-mini-icon {
    font-size: 1rem;
    color: #63d2db;
}

.bento-mini h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.bento-mini p {
    margin: 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* ── Bottom equal cards ── */
.bento-row--bottom {
    align-items: stretch;
}

.bento-equal {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bento-equal h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.bento-equal p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
    margin: 0;
}

/* ── Icons ── */
.bento-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(99, 210, 219, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #63d2db;
    flex-shrink: 0;
}

.bento-icon--sm {
    width: 38px;
    height: 38px;
    font-size: 1rem;
    border-radius: 10px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .bento-row--top {
        flex-direction: column;
    }

    .bento-hero {
        flex: unset;
    }

    .bento-row--bottom {
        flex-direction: column;
    }
}

@media (max-width: 540px) {
    .bento-cluster-grid {
        grid-template-columns: 1fr;
    }
}

.founder-section {
    background: #f4f8fb;
    padding: 88px 20px;
    position: relative;
    overflow: hidden;
}

/* subtle background circle decoration */
.founder-section::before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(8, 186, 213, .07) 0%, transparent 70%);
    top: -120px;
    right: -160px;
    pointer-events: none;
}

/* ── Section heading block ── */
.founder-heading {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.founder-heading-badge {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 8px 16px;
    border-radius: 999px;
    background: #eaf8ff;
    border: 1px solid rgba(1, 150, 210, .35);
    color: #0063ba;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.founder-heading h2 {
    color: #07254a;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.1;
    font-weight: 800;
    margin: 0 0 14px;
}

.founder-heading h2 .accent {
    color: #08bad5;
}

.founder-heading p {
    color: #6b7b8f;
    font-size: 16px;
    line-height: 1.75;
    margin: 0;
}

/* ── Main card wrapper ── */
.founder-card-wrap {
    max-width: 1020px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    border: 1px solid #e4edf5;
    box-shadow: 0 20px 60px rgba(11, 45, 80, .07);
    display: grid;
    grid-template-columns: 300px 1fr;
    overflow: hidden;
    transition: box-shadow .35s ease, transform .35s ease;
}

.founder-card-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 72px rgba(11, 45, 80, .11);
}

/* ── LEFT COLUMN ── */
.founder-left {
    background: linear-gradient(160deg, #07254a 0%, #0a3460 55%, #082e55 100%);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    position: relative;
    overflow: hidden;
}

/* decorative ring behind photo */
.founder-left::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1px solid rgba(8, 186, 213, .18);
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
}

.founder-left::after {
    content: "";
    position: absolute;
    width: 310px;
    height: 310px;
    border-radius: 50%;
    border: 1px solid rgba(8, 186, 213, .08);
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
}

.founder-img-ring {
    position: relative;
    z-index: 1;
    width: 190px;
    height: 210px;
    border-radius: 18px;
    overflow: hidden;
    border: 3px solid rgba(8, 186, 213, .38);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .28);
}

.founder-img-ring img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* name + role inside left col */
.founder-identity {
    text-align: center;
    position: relative;
    z-index: 1;
}

.founder-identity h3 {
    color: #fff;
    font-size: 1.45rem;
    font-weight: 800;
    margin: 0 0 5px;
    line-height: 1.2;
}

.founder-identity span {
    display: inline-block;
    color: #08bad5;
    font-size: 13px;
    font-weight: 600;
}

/* credential chips */
.founder-chips {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.founder-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    padding: 9px 12px;
    color: rgba(230, 242, 255, .82);
    font-size: 13px;
    font-weight: 600;
    transition: background .25s ease, border-color .25s ease;
}

.founder-chip:hover {
    background: rgba(8, 186, 213, .14);
    border-color: rgba(8, 186, 213, .3);
}

.founder-chip i {
    color: #08bad5;
    font-size: 13px;
    flex-shrink: 0;
}

/* social + cta */
.founder-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.founder-socials {
    display: flex;
    gap: 10px;
}

.founder-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    transition: opacity .2s, transform .2s;
}

.founder-social-btn:hover {
    opacity: .85;
    transform: translateY(-2px);
    color: #fff;
}

.founder-social-btn.linkedin {
    background: #0077b5;
}

.founder-social-btn.email {
    background: #08bad5;
}

.founder-demo-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    background: #08bad5;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
    box-shadow: 0 10px 24px rgba(8, 186, 213, .28);
}

.founder-demo-btn:hover {
    background: #11c8e4;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(8, 186, 213, .36);
    color: #fff;
}

/* ── RIGHT COLUMN ── */
.founder-right {
    padding: 44px 44px 44px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Quote accent */
.founder-quote-mark {
    display: block;
    font-size: 72px;
    line-height: .6;
    color: #08bad5;
    opacity: .22;
    font-family: Georgia, serif;
    margin-bottom: 14px;
    user-select: none;
}

.founder-bio-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #07254a;
    font-weight: 700;
    margin-bottom: 20px;
}

.founder-bio-intro .accent {
    color: #08bad5;
}

/* divider */
.founder-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #08bad5, #2b7fff);
    border-radius: 999px;
    margin-bottom: 20px;
}

.hero-accent {
    color: #0c9b9b;
}

.founder-bio p {
    font-size: 15px;
    color: #5d6e83;
    line-height: 1.8;
    margin-bottom: 14px;
}

.founder-bio p:last-child {
    margin-bottom: 0;
}

/* stat strip */
.founder-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 30px;
    padding-top: 28px;
    border-top: 1px solid #e8eef5;
}

.founder-stat {
    text-align: center;
    padding: 16px 10px;
    border-radius: 12px;
    background: #f4f8fb;
    border: 1px solid #eaf0f7;
    transition: all .25s ease;
}

.founder-stat:hover {
    background: #eaf8ff;
    border-color: rgba(8, 186, 213, .25);
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(8, 186, 213, .08);
}

.founder-stat strong {
    display: block;
    color: #08bad5;
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 7px;
}

.founder-stat span {
    color: #6b7b8f;
    font-size: 12px;
    line-height: 1.45;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .founder-card-wrap {
        grid-template-columns: 260px 1fr;
    }

    .founder-right {
        padding: 36px 32px;
    }
}

@media (max-width: 767px) {
    .founder-section {
        padding: 60px 16px;
    }

    .founder-heading {
        margin-bottom: 36px;
    }

    .founder-heading h2 {
        font-size: clamp(1.85rem, 7vw, 2.4rem) !important;
    }

    .founder-heading p {
        font-size: 15px;
    }

    .founder-card-wrap {
        grid-template-columns: 1fr;
    }

    .founder-left {
        padding: 36px 24px;
        border-radius: 0;
    }

    .founder-img-ring {
        width: 160px;
        height: 180px;
    }

    .founder-identity h3 {
        font-size: 1.3rem;
    }

    .founder-right {
        padding: 32px 24px;
    }

    .founder-bio-intro {
        font-size: 16px;
    }

    .founder-bio p {
        font-size: 15px;
    }

    .founder-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .founder-stat strong {
        font-size: 22px;
    }

    .founder-stat span {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .founder-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .founder-stat {
        display: flex;
        align-items: center;
        gap: 14px;
        text-align: left;
        padding: 14px 16px;
    }

    .founder-stat strong {
        font-size: 24px;
        min-width: 54px;
        margin-bottom: 0;
    }
}