.program-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at top center, rgba(80, 140, 190, 0.14), transparent 35%),
        linear-gradient(180deg, #091522 0%, #0b1d2f 45%, #102b44 100%);
}

.program-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 25%, rgba(120, 180, 220, 0.08), transparent 25%),
        radial-gradient(circle at 82% 30%, rgba(70, 120, 190, 0.10), transparent 28%);
}

.program-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 110px 0 90px 0;
}

.program-hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1;
    margin-bottom: 22px;
    color: #ffffff;
}

.program-lead {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: #d3e1ec;
    max-width: 720px;
}

.program-intro {
    padding: 85px 0 40px 0;
    background: #0b1622;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
    align-items: start;
}

.intro-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: #ffffff;
}

.intro-text p {
    color: #d2dee8;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.program-note {
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(20, 48, 72, 0.95), rgba(10, 27, 43, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.program-note h3 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 1.3rem;
}

.program-note p {
    color: #d6e3ee;
    line-height: 1.6;
}

.program-highlights {
    padding: 50px 0 90px 0;
    background: #0b1622;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ffffff;
    margin-bottom: 30px;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.highlight-card {
    padding: 26px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(15, 35, 55, 0.96), rgba(8, 21, 34, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.highlight-card h3 {
    color: #ffffff;
    margin-bottom: 14px;
    font-size: 1.25rem;
}

.highlight-card p {
    color: #d2dee8;
    line-height: 1.65;
    font-size: 1rem;
}

.highlight-card-featured {
    background: linear-gradient(180deg, rgba(24, 70, 108, 0.96), rgba(10, 31, 49, 0.98));
    border: 1px solid rgba(120, 190, 235, 0.22);
}

.program-update {
    padding: 0 0 90px 0;
    background: #0b1622;
}

.update-box {
    padding: 36px;
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(15, 44, 69, 0.98), rgba(9, 24, 39, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.update-box h2 {
    font-size: clamp(2rem, 4vw, 2.7rem);
    color: #ffffff;
    margin-bottom: 16px;
}

.update-box p:last-child {
    color: #d4e1ec;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (max-width: 950px) {
    .intro-grid {
        grid-template-columns: 1fr;
    }

    .highlight-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .program-hero-content {
        padding: 85px 0 70px 0;
    }

    .highlight-grid {
        grid-template-columns: 1fr;
    }

    .update-box {
        padding: 26px 20px;
    }
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    padding: 120px 0 140px 0;
}

.hero-text h1 {
    font-size: clamp(3rem, 6vw, 6rem);
    margin-bottom: 10px;
}

.hero-text h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.hero-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 600px;
}

.program-note {
    background: linear-gradient(
        145deg,
        rgba(20,45,70,0.95),
        rgba(10,30,50,0.95)
    );
    padding: 35px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
}

.program-note h3 {
    margin-bottom: 15px;
}

.program-note p {
    line-height: 1.7;
}
.program-note {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.program-note:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.program-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at top center, rgba(80, 140, 190, 0.14), transparent 35%),
        linear-gradient(180deg, #091522 0%, #0b1d2f 45%, #102b44 100%);
}

.program-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 25%, rgba(120, 180, 220, 0.08), transparent 25%),
        radial-gradient(circle at 82% 30%, rgba(70, 120, 190, 0.10), transparent 28%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    padding: 120px 0 140px 0;
}

.hero-text h1 {
    font-size: clamp(3rem, 6vw, 5.8rem);
    line-height: 0.95;
    margin-bottom: 12px;
    color: #ffffff;
}

.hero-text h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
    color: #ffffff;
}

.hero-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 620px;
    color: #d2dee8;
}

.hero-waves {
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 100%;
    height: 220px;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.waves-svg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 200%;
    height: 220px;
}

.program-note {
    background: linear-gradient(
        145deg,
        rgba(20,45,70,0.95),
        rgba(10,30,50,0.95)
    );
    padding: 35px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.program-note:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.program-note h3 {
    margin-bottom: 15px;
    color: #ffffff;
}

.program-note p {
    line-height: 1.7;
    color: #d6e3ee;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 100px 0 120px 0;
    }
}

@media (max-width: 640px) {
    .hero-grid {
        padding: 85px 0 100px 0;
    }

    .hero-text h2 {
        font-size: 1.4rem;
    }
}

.hero-text h4 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 600;
    color: #ffffff;
}