.program-hero {
    color: #fff;
    min-height: 520px;
    display: grid;
    align-items: center;
    text-align: center;
    padding: 110px 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.44)),
        var(--program-hero-image) center/cover no-repeat;
}

.program-hero-inner {
    max-width: 1040px;
}

.program-hero h1 {
    margin: 0;
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    line-height: 1.2;
}

.program-hero p {
    margin: 30px auto 0;
    max-width: 980px;
    font-size: clamp(1.1rem, 1.7vw, 1.5rem);
    line-height: 1.5;
}

.program-packs {
    background: #fff;
}

.program-packs h2 {
    margin: 0 0 30px;
    text-align: center;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

.program-pack-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.program-pack-card {
    display: block;
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 22px;
    padding: 26px;
    text-align: center;
    color: inherit;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.program-pack-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.program-pack-card img {
    width: 92px;
    height: 92px;
    display: block;
    margin: 0 auto 12px;
}

.program-pack-card h3 {
    margin: 8px 0 14px;
    font-size: clamp(1.25rem, 1.8vw, 1.7rem);
    line-height: 1.22;
}

.program-pack-card p {
    margin: 0 0 12px;
    font-size: clamp(1rem, 1.15vw, 1.15rem);
    line-height: 1.5;
}

.program-pack-highlight {
    font-size: 1.08rem;
}

.program-pack-audience {
    margin-bottom: 0;
    font-weight: 600;
}

.program-workshops {
    background: var(--red);
    color: #fff;
}

.program-workshops h2 {
    margin: 0 0 34px;
    text-align: center;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

.program-workshops h2 a {
    text-decoration: underline;
}

.program-workshop-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.program-workshop-card {
    color: #fff;
    text-decoration: none;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    padding: 22px 18px;
    text-align: center;
    transition: transform 0.18s ease, background-color 0.18s ease;
}

.program-workshop-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
}

.program-workshop-card img {
    width: 76px;
    height: 76px;
    display: block;
    margin: 0 auto 12px;
}

.program-workshop-card h3 {
    margin: 0 0 8px;
    font-size: 1.28rem;
    line-height: 1.25;
}

.program-workshop-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
}

.program-cumulative {
    background: #ececec;
    padding-top: 96px;
    padding-bottom: 96px;
}

.program-cumulative h2 {
    margin: 0 0 20px;
    text-align: center;
    font-size: clamp(2.3rem, 4.2vw, 3.9rem);
    line-height: 1.12;
}

.program-cumulative-intro {
    margin: 0 auto 54px;
    max-width: 980px;
    text-align: center;
    font-size: clamp(1.2rem, 1.9vw, 2rem);
    line-height: 1.35;
}

.program-pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 940px;
    margin: 0 auto;
}

.program-pillar-card {
    min-height: 0;
    aspect-ratio: 1 / 1;
    border-radius: 0;
    overflow: hidden;
    background: var(--program-pillar-image) center/cover no-repeat;
}

.program-pillar-overlay {
    width: 100%;
    height: 100%;
    color: #fff;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.program-pillar-card:first-child .program-pillar-overlay {
    background: linear-gradient(180deg, rgba(226, 15, 8, 0.48), rgba(226, 15, 8, 0.48));
}

.program-pillar-card:last-child .program-pillar-overlay {
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.44), rgba(8, 8, 8, 0.54));
}

.program-pillar-overlay h3 {
    margin: 0 0 6px;
    font-size: clamp(1.95rem, 1.7vw, 2.8rem);
    line-height: 1.2;
    font-weight: 400;
}

.program-pillar-subtitle {
    margin: 0 0 16px;
    font-size: clamp(1.28rem, 1.15vw, 1.65rem);
}

.program-pillar-overlay p {
    margin: 0 0 14px;
    max-width: 92%;
    font-size: clamp(1.18rem, 1.3vw, 1.9rem);
    line-height: 1.3;
}

.program-pillar-overlay .btn {
    margin-top: 0;
}

.program-offer {
    background: var(--red);
    color: #fff;
}

.program-offer-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 24px;
}

.program-offer-inner img {
    width: 138px;
    height: 138px;
}

.program-offer-inner h2 {
    margin: 0 0 14px;
    font-size: clamp(1.8rem, 3vw, 2.3rem);
}

.program-offer-inner p {
    margin: 0 0 12px;
    font-size: clamp(1.05rem, 1.3vw, 1.2rem);
    line-height: 1.5;
}

.program-venue {
    background: #0d0d0d;
    color: #fff;
}

.program-venue-grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 34px;
    align-items: start;
}

.program-venue-copy h2 {
    margin: 0 0 18px;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    color: var(--yellow);
}

.program-venue-copy p {
    margin: 0 0 14px;
    font-size: clamp(1.02rem, 1.25vw, 1.15rem);
    line-height: 1.55;
}

.program-venue-media {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.program-venue-media img {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.program-quote {
    background: var(--red);
    color: #fff;
    text-align: center;
}

.program-quote blockquote {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.35;
}

.program-quote p {
    margin: 16px 0 0;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 700;
}

.program-btn-black,
.program-btn-red {
    min-width: 0;
    text-align: center;
    padding: 13px 24px;
}

.program-btn-black {
    background: #000;
    color: #fff;
}

.program-btn-red {
    background: var(--red);
    color: #fff;
}

.program-cumulative .btn {
    min-width: 170px;
    padding: 12px 24px;
    font-size: clamp(0.95rem, 0.95vw, 1.05rem);
    border-radius: 999px;
}

@media (max-width: 1100px) {
    .program-pack-grid,
    .program-workshop-grid,
    .program-pillars-grid,
    .program-venue-grid {
        grid-template-columns: 1fr;
    }

    .program-offer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .program-offer-inner img {
        margin: 0 auto;
    }

    .program-pillars-grid {
        max-width: 460px;
        gap: 16px;
    }

    .program-pillar-overlay {
        padding: 26px 20px;
    }
}

@media (max-width: 640px) {
    .program-hero {
        min-height: 420px;
        padding: 74px 0;
    }

    .program-pack-card,
    .program-workshop-card {
        padding: 20px 16px;
    }

    .program-workshop-card img {
        width: 68px;
        height: 68px;
    }

    .program-cumulative {
        padding-top: 74px;
        padding-bottom: 74px;
    }

    .program-cumulative-intro {
        margin-bottom: 34px;
    }

    .program-pillar-overlay p {
        margin-bottom: 16px;
    }
}
