/* ── Alumni Network page ── */
.al-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 88px 0 72px;
}
.al-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.al-hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(22, 18, 38, .94) 0%, rgba(31, 31, 31, .82) 42%, rgba(42, 31, 40, .9) 100%);
}
.al-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.al-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: center;
}
.al-hero__copy { max-width: 640px; }
.al-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--rsbt-gold);
}
.al-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--rsbt-gold);
}
.al-eyebrow--on-dark { color: #f0dca0; }
.al-eyebrow--on-dark::before { background: #f0dca0; }
.al-hero__title {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -.02em;
}
.al-hero__subtitle {
    margin: 14px 0 0;
    font-size: 15px;
    color: #d6b565;
    font-weight: 600;
}
.al-hero__tagline {
    margin: 18px 0 0;
    font-size: clamp(20px, 2.6vw, 28px);
    line-height: 1.4;
    color: #f9fafb;
    font-weight: 600;
    font-style: italic;
}
.al-breadcrumb {
    margin-top: 28px;
    font-size: 13px;
    color: #9ca3af;
}
.al-breadcrumb a { color: #d6b565; }
.al-breadcrumb a:hover { text-decoration: underline; }
.al-hero__visual {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .12);
}
.al-hero__visual img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}
.al-hero__visual:hover img { transform: scale(1.03); }

.al-intro p {
    margin: 0;
    font-size: 18px;
    line-height: 1.85;
    color: #374151;
    text-align: center;
}

.al-stats {
    background: linear-gradient(135deg, #1f1f1f 0%, #2a1f28 50%, #1a1a1a 100%);
    padding: 48px 0;
}
.al-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.al-stat-card {
    text-align: center;
    padding: 28px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(214, 181, 101, .25);
    backdrop-filter: blur(8px);
    transition: transform .3s ease, border-color .3s ease;
}
.al-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(214, 181, 101, .55);
}
.al-stat-card__value {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 700;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 20%, var(--rsbt-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.al-stat-card__label {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #d1d5db;
}

.al-sec-head { margin-bottom: 36px; }
.al-sec-head--center { text-align: center; }
.al-sec-head--center .al-eyebrow { justify-content: center; }
.al-sec-head h2 {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: clamp(28px, 4vw, 38px);
    color: #1f2937;
    line-height: 1.2;
}
.al-sec-head__lead {
    margin: 12px auto 0;
    max-width: 620px;
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
}

.al-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.al-split--reverse .al-split__content { order: 2; }
.al-split--reverse .al-split__media { order: 1; }
.al-split__content h2 {
    margin: 0 0 16px;
    font-family: "Poppins", sans-serif;
    font-size: clamp(26px, 3.5vw, 34px);
    color: var(--rsbt-accent);
    line-height: 1.25;
}
.al-split__content p {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.75;
    color: #4b5563;
}
.al-split__content p:last-child { margin-bottom: 0; }
.al-split__media {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .1);
}
.al-split__media img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.al-split__media:hover img { transform: scale(1.04); }

.al-objectives {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.al-objective-card {
    padding: 28px 24px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
    transition: transform .3s ease, box-shadow .3s ease;
}
.al-objective-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .08);
}
.al-objective-card__icon {
    display: block;
    font-size: 32px;
    margin-bottom: 14px;
}
.al-objective-card h3 {
    margin: 0 0 10px;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}
.al-objective-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: #6b7280;
}

.al-offers {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.al-offer-card {
    padding: 28px 24px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-top: 3px solid var(--rsbt-gold);
    transition: transform .3s ease, box-shadow .3s ease;
}
.al-offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .08);
}
.al-offer-card__icon {
    display: block;
    font-size: 30px;
    margin-bottom: 12px;
}
.al-offer-card h3 {
    margin: 0 0 8px;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #1f2937;
}
.al-offer-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #6b7280;
}

.al-testimonials {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}
.al-testimonial-card {
    margin: 0;
    padding: 32px 28px;
    border-radius: 18px;
    background: linear-gradient(145deg, #fdf9f4 0%, #fff 100%);
    border: 1px solid #e8dcc8;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    position: relative;
}
.al-testimonial-card__mark {
    position: absolute;
    top: 12px;
    right: 24px;
    font-family: Georgia, serif;
    font-size: 72px;
    line-height: 1;
    color: rgba(214, 181, 101, .35);
}
.al-testimonial-card__text {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.75;
    color: #374151;
    font-style: italic;
    position: relative;
    z-index: 1;
}
.al-testimonial-card footer {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
    z-index: 1;
}
.al-testimonial-card footer strong {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    color: var(--rsbt-accent);
}
.al-testimonial-card footer span {
    font-size: 13px;
    color: #6b7280;
}

.al-checklist {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}
.al-checklist li {
    position: relative;
    padding: 12px 0 12px 32px;
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}
.al-checklist li:last-child { border-bottom: 0; }
.al-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 12px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--rsbt-gold);
    color: #1f1f1f;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.al-cta {
    background: linear-gradient(135deg, #1a1628 0%, var(--rsbt-accent) 55%, #8c2d42 100%);
    color: #fff;
    padding: 72px 0;
    text-align: center;
}
.al-cta__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.al-cta h2 {
    margin: 0 0 20px;
    font-family: "Poppins", sans-serif;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 600;
    color: #fff;
}
.al-contact-list {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .92);
}
.al-contact-list a {
    color: #f0dca0;
    text-decoration: none;
}
.al-contact-list a:hover { text-decoration: underline; }
.al-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.al-cta .btn-main { background: #fff; color: #1f1f1f; }
.al-cta .btn-main:hover { background: #fdf9f4; }
.al-cta .btn-alt {
    border-color: rgba(255, 255, 255, .5);
    color: #fff;
}
.al-cta .btn-alt:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .1);
}

@media (max-width: 1100px) {
    .al-objectives,
    .al-offers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
    .al-hero__inner,
    .al-split,
    .al-testimonials,
    .al-stats__grid {
        grid-template-columns: 1fr;
    }
    .al-split--reverse .al-split__content,
    .al-split--reverse .al-split__media { order: unset; }
    .al-hero__visual { max-width: 520px; }
}
@media (max-width: 600px) {
    .al-hero { padding: 64px 0 52px; }
    .al-objectives,
    .al-offers,
    .al-testimonials { grid-template-columns: 1fr; }
    .al-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .al-cta__actions .btn-main,
    .al-cta__actions .btn-alt { text-align: center; }
}
