@font-face {
    font-family: 'Fira Sans';
    src: url('../fonts/Fira sans/FiraSans-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Fira Sans';
    src: url('../fonts/Fira sans/FiraSans-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

:root {
    --growth-orange: #f37022;
    --growth-yellow: #FFD32B;
    --growth-text: #242b35;
    --growth-muted: #4e5862;
    --growth-soft: #f7f7f6;
}

.growth-page {
    overflow-x: hidden;
    background: #fff;
    color: var(--growth-text);
    font-family: 'Roboto', 'Fira Sans', Arial, sans-serif;
}

.growth-section-inner {
    width: min(1400px, calc(100% - 64px));
    margin: 0 auto;
}

.growth-hero {
    position: relative;
    min-height: 75vh;
    min-height: 75dvh;
    display: grid;
    place-items: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.growth-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.52);
}

.growth-hero-inner {
    position: relative;
    z-index: 1;
    width: min(900px, calc(100% - 48px));
    color: #fff;
}

.growth-hero h1 {
    margin: 0 0 24px;
    color: #fff;
    font-family: 'Fira Sans', Arial, sans-serif;
    font-size: clamp(58px, 8vw, 104px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: 0;
}

.growth-hero p {
    max-width: 760px;
    margin: 0 auto 38px;
    color: #fff;
    font-size: clamp(16px, 1.25vw, 19px);
    line-height: 1.45;
}

.growth-hero-cta {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 24px;
    border: 1px solid var(--growth-orange);
    border-radius: 999px;
    color: var(--growth-orange);
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    transition: background 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.growth-hero-cta:hover,
.growth-hero-cta:focus-visible {
    background: var(--growth-orange);
    color: #fff;
    transform: translateY(-1px);
}

.growth-programs {
    padding: 42px 0 46px;
    background: #fff;
}

.growth-programs h2,
.growth-explore h2 {
    margin: 0 0 36px;
    color: var(--growth-text);
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: 0;
}

.growth-program-grid {
    display: grid;
    gap: 10px;
}

.growth-program-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: stretch;
}

.growth-program-card > :only-child {
    grid-column: 1 / -1;
}

.growth-program-card.is-reversed .growth-program-media {
    order: 2;
}

.growth-program-card.is-reversed .growth-program-copy {
    order: 1;
}

.growth-program-media {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    min-height: 420px;
    background: #eee;
}

.growth-program-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.growth-program-card:hover .growth-program-media img {
    transform: scale(1.035);
}

.growth-program-copy {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(32px, 4vw, 52px);
    border-radius: 8px;
    background: var(--growth-soft);
}

.growth-program-badge {
    align-self: flex-start;
    margin-bottom: 42px;
    padding: 5px 13px;
    border: 1px solid #111820;
    border-radius: 999px;
    color: #111820;
    font-size: 12px;
    line-height: 1;
}

.growth-program-copy h3 {
    margin: 0 0 34px;
    color: #111820;
    font-size: clamp(26px, 2.6vw, 38px);
    font-weight: 400;
    line-height: 1.12;
}

.growth-program-copy p {
    margin: 0 0 34px;
    color: #111820;
    font-size: clamp(14px, 1.05vw, 16px);
    line-height: 1.5;
}

.growth-program-copy blockquote {
    margin: auto 0 0;
    padding: 22px 24px;
    border-radius: 8px;
    background: var(--growth-yellow);
    color: #111820;
    font-size: clamp(14px, 1.05vw, 16px);
    font-style: italic;
    line-height: 1.35;
}

.growth-explore {
    padding: 0 0 44px;
    background: #fff;
}

.growth-explore-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.growth-explore-card {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
}

.growth-explore-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.6) 100%);
}

.growth-explore-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.growth-explore-card:hover img {
    transform: scale(1.05);
}

.growth-explore-card span {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 1;
    color: #fff;
    font-size: clamp(20px, 2.5vw, 34px);
    line-height: 1;
}

.growth-slogan {
    position: relative;
    min-height: clamp(300px, 36vw, 520px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--growth-orange);
    background-size: cover;
}

.growth-slogan-overlay {
    position: absolute;
    inset: 0;
}

.growth-slogan-inner {
    position: relative;
    z-index: 1;
}

.growth-slogan h2 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-family: 'Fira Sans', Arial, sans-serif;
    font-size: clamp(72px, 13vw, 160px);
    font-weight: 700;
    line-height: 0.78;
    letter-spacing: 0;
}

@media (max-width: 1024px) {
    .growth-hero {
        min-height: 68vh;
        min-height: 68dvh;
    }

    .growth-program-media,
    .growth-program-copy {
        min-height: 360px;
    }
}

@media (max-width: 767px) {
    .growth-section-inner {
        width: calc(100% - 40px);
    }

    .growth-hero {
        box-sizing: border-box;
        height: 76.4045vw;
        min-height: 76.4045vw;
        max-height: 76.4045vw;
    }

    .growth-hero h1 {
        font-size: clamp(28px, 7.64vw, 40px);
        line-height: 0.98;
    }

    .growth-hero p {
        margin-bottom: 28px;
        font-size: clamp(12px, 3.17vw, 16px);
        line-height: 1.35;
    }

    .growth-hero-cta {
        font-size: clamp(12px, 3.17vw, 16px);
    }

    .growth-programs {
        padding: 18px 0 28px;
    }

    .growth-programs h2,
    .growth-explore h2 {
        margin-bottom: 18px;
        font-size: clamp(24px, 5.43vw, 32px);
        line-height: 1.15;
    }

    .growth-program-card {
        grid-template-columns: 1fr;
    }

    .growth-program-card.is-reversed .growth-program-media,
    .growth-program-card.is-reversed .growth-program-copy {
        order: initial;
    }

    .growth-program-media,
    .growth-program-copy {
        min-height: auto;
    }

    .growth-program-media {
        aspect-ratio: 1.25 / 1;
    }

    .growth-program-copy {
        padding: 28px 22px;
    }

    .growth-program-badge {
        margin-bottom: 28px;
        font-size: clamp(11px, 2.72vw, 14px);
    }

    .growth-program-copy h3 {
        font-size: clamp(18px, 5.43vw, 26px);
        line-height: 1.15;
    }

    .growth-program-copy p,
    .growth-program-copy blockquote {
        font-size: clamp(12px, 3.17vw, 16px);
        line-height: 1.35;
    }

    .growth-explore {
        padding: 0 0 34px;
    }

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

    .growth-explore-card {
        aspect-ratio: 1 / 1;
        border-radius: 6px;
    }

    .growth-explore-card:hover img {
        transform: none;
    }

    .growth-explore-card span {
        left: 10px;
        bottom: 10px;
        max-width: calc(100% - 20px);
        font-size: clamp(12px, 3.17vw, 16px);
        line-height: 1.05;
    }

    .growth-slogan {
        min-height: clamp(170px, 43vw, 220px);
    }

    .growth-slogan h2 {
        font-size: clamp(64px, 18.1vw, 88px);
    }
}
