:root {
    --bg: #ffffff;
    --text: #000000;
    --muted: rgba(0, 0, 0, 0.7);
    --brand: #0090ff;
    --brand-2: #0d61f3;
    --gold: #d4af37;
    --pill-bg: #d5edff;
    --pill-text: #0065b3;
    --footer-bg: #121420;
    --footer-sub: #141824;
    --card: #ffffff;
    --shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    --radius-lg: 25px;
    --radius-md: 12px;
    --radius-sm: 10px;
    --container: 1277px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font-family: Jaldi, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero */
.hero {
    padding: 36px 0 10px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 554px 1fr;
    align-items: center;
    gap: 136px;
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 10px 39px;
    border-radius: var(--radius-lg);
    background: var(--pill-bg);
    color: var(--pill-text);
    font-size: 18px;
    line-height: 1.69;
    text-align: center;
    margin-bottom: 18px;
    border: 1px solid transparent;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: default;
}

.pill:hover {
    background-color: var(--brand);
    color: white;
    border-color: var(--pill-text);
}

.hero-title {
    margin: 0 0 16px;
    font-size: 50px;
    line-height: 1.02;
    font-weight: bold;
}

.hero-subtitle {
    margin: 0;
    font-size: 24px;
    line-height: 1.3065;
    color: var(--text);
}

.hero-image {
    width: 100%;
    height: 465px;
    border-radius: 50px;
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-media:hover .hero-image {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Story + Stats */
.story {
    padding: 48px 0 70px;
}

.story-inner {
    display: grid;
    gap: 44px;
}

.story-text {
    margin: 8px 0px 15px;
    text-align: center;
    font-size: 24px;
    line-height: 1.3065;
    max-width: 987px;
    margin-inline: auto;
}

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

.stat {
    width: 100%;
    max-width: 190px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.stat-value {
    font-size: 60px;
    line-height: 1.1198;
    font-weight: bold;
    color: var(--brand);
}

.stat-label {
    font-size: 22px;
    line-height: 1.1198;
    font-weight: bold;
}

/* Split sections */
.split {
    padding: 62px 87px;
}

.split-inner {
    display: grid;
    grid-template-columns: 521px 1fr;
    gap: 60px;
    align-items: start;
}

.split-reverse .split-inner {
    grid-template-columns: 1fr 521px;
}

.split-reverse .split-media {
    order: 2;
}

.split-image {
    width: 100%;
    height: 465px;
    border-radius: 50px;
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.split-media:hover .split-image {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.section-title {
    margin: 0 0 16px;
    font-size: 50px;
    line-height: 1.02;
    font-weight: bold;
}

.section-text {
    margin: 0 0 18px;
    font-size: 24px;
    line-height: 1.3065;
}

.center {
    text-align: center;
}

.narrow {
    max-width: 700px;
    margin-inline: auto;
}

.bullets {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    gap: 14px;
}

.bullet {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 16px;
    align-items: center;
    font-size: 24px;
    line-height: 1.3065;
    transition: transform 0.2s ease;
}

.bullet:hover {
    transform: translateX(5px);
}

.bullet-icon {
    width: 28px;
    height: 28px;
}

/* Values */
.values {
    padding: 70px 0 46px;
}

.values-grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 44px;
    align-items: start;
    padding: 0 94px;
}

.value-card {
    text-align: center;
    padding: 24px;
    border-radius: var(--radius-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    border: 1px solid transparent;
}

.value-card:hover {
    transform: scale(1.03);
    box-shadow: 0px 8px 24px rgba(0, 144, 255, 0.15);
    background: var(--card);
    border-color: var(--brand);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
}

.value-card:hover .value-icon {
    animation: wiggle 0.6s ease-in-out;
}

@keyframes wiggle {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(15deg);
    }

    50% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.value-title {
    margin: 0 0 6px;
    font-size: 22px;
    line-height: 1.12;
    font-weight: 400;
}

.value-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.12;
}

/* Leadership */
.leadership {
    padding: 70px 0;
}

.leaders-grid {
    margin-top: 49px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 44px;
}

.leader-card {
    width: 100%;
    max-width: 344px;
    justify-self: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 50px;
}

.leader-card:hover {
    transform: scale(1.01);
    /* box-shadow: 0px 10px 25px rgba(0, 144, 255, 0.15); */
}

.leader-media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50px;
    overflow: hidden;
    background: #f2f2f2;
}

.leader-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.leader-card:hover .leader-photo {
    transform: scale(1.05);
}

.leader-badge {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #0D61F3;
    padding: 12px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.leader-badge:hover {
    background-color: #003fac;
}

.leader-badge img {
    width: 25px;
    height: 25px;
    object-fit: cover;
}

.leader-info {
    padding-top: 10px;
}

.leader-name {
    font-size: 34px;
    line-height: 1.69;
    font-weight: bold;
    transition: color 0.3s ease;
}

.leader-card:hover .leader-name {
    color: var(--brand);
}

.leader-role {
    font-family: "Source Sans 3", "Source Sans Pro", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.257;
    color: var(--brand);
}

/* Choose */
.choose {
    padding: 40px 0 78px;
}

.choose-grid {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px;
    padding: 0 127px;
}

.choose-card {
    background: var(--card);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    padding: 31px 24px;
    min-height: 169px;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    align-items: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid transparent;
}

.choose-card:hover {
    transform: scale(1.03);
    box-shadow: 0px 10px 25px rgba(0, 144, 255, 0.15);
    border-color: var(--brand);
}

.choose-icon {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    background: var(--pill-bg);
    display: grid;
    place-items: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.choose-card:hover .choose-icon {
    background: var(--brand);
    transform: rotate(5deg);
}

.choose-card:hover .choose-icon img {
    filter: brightness(0) invert(1);
}

.choose-icon img {
    width: 24px;
    height: 24px;
    transition: filter 0.3s ease;
}

.choose-title {
    margin: 0;
    font-size: 24px;
    line-height: 1.69;
    font-weight: bold;
    transition: color 0.3s ease;
}

.choose-card:hover .choose-title {
    color: var(--brand);
}

.choose-text {
    margin: 8px 0 0;
    font-size: 18px;
    line-height: 1.69;
}

/* Responsive */
@media (max-width: 1200px) {
    .split {
        padding: 50px 40px;
    }

    .hero-inner {
        gap: 60px;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1100px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-copy {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-image {
        height: auto;
        max-height: 500px;
        border-radius: 30px;
    }

    .split {
        padding: 40px 20px;
    }

    .split-inner,
    .split-reverse .split-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-reverse .split-media {
        order: 0;
    }

    .split-image {
        height: auto;
        max-height: 420px;
        border-radius: 30px;
    }

    .split-copy {
        text-align: center;
    }

    .bullets {
        justify-content: center;
        text-align: left;
        max-width: max-content;
        margin-inline: auto;
    }

    .values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 0 40px;
    }

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

    .choose-grid {
        padding: 0 40px;
        gap: 30px;
    }
}

@media (max-width: 860px) {

    .hero-title,
    .section-title {
        font-size: 42px;
    }

    .hero-subtitle,
    .section-text,
    .story-text {
        font-size: 20px;
    }

    .stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
    }

    .choose-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 24px;
    }

    .values-grid {
        padding: 0 20px;
        gap: 30px;
    }
}

@media (max-width: 520px) {
    .hero {
        padding-top: 18px;
    }

    .hero-title,
    .section-title {
        font-size: 34px;
        line-height: 1.2;
    }

    .story {
        padding: 30px 0 37px;
    }

    .hero-subtitle,
    .section-text,
    .story-text {
        font-size: 17px;
    }

    .stat-value {
        font-size: 38px;
    }

    .pill {
        margin-bottom: 14px;
        font-size: 17px;
        height: 44px;
    }

    .bullet-icon {
        width: 25px;
        height: 25px;
    }

    .split-image {
        max-height: 354px;
    }

    .values {
        padding: 28px 0 15px;
    }

    .values-grid {
        margin-top: 0px;
    }

    .leadership {
        padding: 30px 0;
    }

    .leader-name {
        font-size: 26px;
    }

    .leader-role {
        font-size: 16px;
    }

    .choose {
        padding: 40px 0 5px;
    }

    .stat-label {
        font-size: 16px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 16px;
    }

    .leaders-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .bullet {
        font-size: 17px;
    }

    .split {
        padding: 30px 20px;
    }

    .choose-grid {
        padding: 20px;
        gap: 16px;
    }
}
