* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ── Hero ── */
.profile-hero {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.profile-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-hero .background-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(5, 59, 80, 0.65) 0%, rgba(10, 77, 104, 0.5) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-title-overlay {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    z-index: 2;
    padding: 30px 5%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background-color: #FFE600;
    color: #000;
    border: 2.5px solid #000;
    border-radius: 8px;
    padding: 5px 14px;
    font-family: var(--font-heading, 'Space Grotesk', sans-serif);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    box-shadow: 3px 3px 0 #000;
    width: fit-content;
}

.hero-heading {
    font-family: var(--font-heading, 'Space Grotesk', sans-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-sub {
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
    font-size: 1rem;
    color: rgba(255,255,255,0.88);
    font-weight: 600;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

/* ── Main Container ── */
.exc-main {
    width: 92%;
    max-width: 1100px;
    margin: 0 auto 80px;
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
}

/* ── Shared Section Styles ── */
.exc-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background-color: #FFE600;
    color: #000;
    border: 2.5px solid #000;
    border-radius: 10px;
    padding: 6px 16px;
    font-family: var(--font-heading, 'Space Grotesk', sans-serif);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    box-shadow: 3px 3px 0 #000;
    margin-bottom: 16px;
}

.exc-title {
    font-family: var(--font-heading, 'Space Grotesk', sans-serif);
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 14px;
    line-height: 1.25;
}

.exc-sub {
    font-size: 1rem;
    color: #475569;
    max-width: 600px;
    line-height: 1.65;
    margin-bottom: 36px;
}

.exc-desc {
    font-size: 0.97rem;
    color: #334155;
    line-height: 1.75;
    margin-bottom: 14px;
}

/* ── INTRO SECTION ── */
.exc-intro-section {
    padding: 60px 0 50px;
}

.exc-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* Foto */
.exc-photo-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
}

.exc-photo {
    width: 100%;
    flex: 1;
    min-height: 360px;
    object-fit: cover;
    border: 3.5px solid #000;
    border-radius: 16px;
    box-shadow: 8px 8px 0 #000;
    display: block;
}

.exc-photo-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background-color: #FFE600;
    color: #000;
    border: 2.5px solid #000;
    border-radius: 10px;
    padding: 8px 16px;
    font-family: var(--font-heading, 'Space Grotesk', sans-serif);
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 4px 4px 0 #000;
    display: flex;
    align-items: center;
    gap: 7px;
}

/* Stats row */
.exc-highlight-row {
    display: flex;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.exc-highlight-item {
    flex: 1;
    min-width: 90px;
    background-color: #0F172A;
    color: #fff;
    border: 2.5px solid #000;
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
    box-shadow: 4px 4px 0 #000;
}

.exc-highlight-num {
    display: block;
    font-family: var(--font-heading, 'Space Grotesk', sans-serif);
    font-size: 1.7rem;
    font-weight: 800;
    color: #FFE600;
    line-height: 1.1;
}

.exc-highlight-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #CBD5E1;
    margin-top: 4px;
    line-height: 1.3;
}

/* ── FEATURES SECTION ── */
.exc-features-section {
    padding: 60px 0;
    border-top: 3px dashed #CBD5E1;
    text-align: center;
}

.exc-features-section .exc-section-badge {
    margin-left: auto;
    margin-right: auto;
}

.exc-features-section .exc-sub {
    margin: 0 auto 36px;
}

.exc-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: left;
}

.exc-feature-card {
    border: 3px solid #000;
    border-radius: 14px;
    padding: 24px 22px;
    box-shadow: 5px 5px 0 #000;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.exc-feature-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 #000;
}

.card-yellow  { background-color: #FFFDE7; }
.card-blue    { background-color: #DBEAFE; }
.card-green   { background-color: #DCFCE7; }
.card-pink    { background-color: #FCE7F3; }
.card-purple  { background-color: #EDE9FE; }
.card-orange  { background-color: #FEF3C7; }

.exc-feature-icon {
    width: 46px;
    height: 46px;
    background-color: #000;
    color: #FFE600;
    border: 2px solid #000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.exc-feature-card h3 {
    font-family: var(--font-heading, 'Space Grotesk', sans-serif);
    font-size: 1rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 8px;
}

.exc-feature-card p {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.65;
}

/* ── SYARAT SECTION ── */
.exc-syarat-section {
    padding: 60px 0;
    border-top: 3px dashed #CBD5E1;
}

.exc-syarat-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.exc-syarat-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.exc-syarat-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: #1E293B;
    font-weight: 600;
    line-height: 1.5;
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 10px;
    padding: 12px 16px;
    box-shadow: 3px 3px 0 #000;
}

.exc-syarat-list li i {
    color: #16A34A;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* CTA Card */
.exc-cta-card {
    background-color: #0F172A;
    border: 3px solid #000;
    border-radius: 16px;
    box-shadow: 7px 7px 0 #000;
    padding: 32px 28px;
    text-align: center;
    color: #fff;
    position: sticky;
    top: 90px;
}

.exc-cta-icon {
    font-size: 2.5rem;
    color: #FFE600;
    margin-bottom: 16px;
    display: block;
}

.exc-cta-card h3 {
    font-family: var(--font-heading, 'Space Grotesk', sans-serif);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #FFE600;
}

.exc-cta-card p {
    font-size: 0.88rem;
    color: #CBD5E1;
    line-height: 1.65;
    margin-bottom: 24px;
}

.exc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #FFE600;
    color: #000;
    border: 2.5px solid #000;
    border-radius: 10px;
    padding: 12px 24px;
    font-family: var(--font-heading, 'Space Grotesk', sans-serif);
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 4px 4px 0 #000;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.exc-cta-btn:hover {
    transform: translate(-3px, -3px);
    box-shadow: 7px 7px 0 #000;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .exc-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .exc-photo-wrap {
        order: -1;
    }

    .exc-photo {
        min-height: 260px;
    }

    .exc-photo-badge {
        bottom: -12px;
        right: 12px;
    }

    .exc-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .exc-syarat-inner {
        grid-template-columns: 1fr;
    }

    .exc-cta-card {
        position: static;
    }
}

@media (max-width: 600px) {
    .exc-main {
        width: 95%;
        margin-bottom: 50px;
    }

    .exc-features-grid {
        grid-template-columns: 1fr;
    }

    .exc-highlight-row {
        gap: 10px;
    }

    .exc-highlight-item {
        padding: 12px 8px;
    }

    .hero-title-overlay {
        padding: 20px 4%;
    }

    .exc-photo {
        min-height: 220px;
    }
}

/* ── Atlet Class — Aksen Warna Berbeda ── */
.atlet-overlay {
    background: linear-gradient(135deg, rgba(5, 80, 30, 0.6) 0%, rgba(20, 120, 50, 0.45) 100%) !important;
}

.atlet-badge {
    background-color: #4ADE80 !important;
    color: #052e16 !important;
}

.atlet-cta-card {
    background: linear-gradient(135deg, #052e16, #14532d) !important;
}

.atlet-cta-btn {
    background-color: #4ADE80 !important;
    color: #052e16 !important;
}

.atlet-cta-btn:hover {
    background-color: #22c55e !important;
}

/* ── Industri Class — Aksen Warna Orange/Amber ── */
.industri-overlay {
    background: linear-gradient(135deg, rgba(120, 53, 15, 0.65) 0%, rgba(194, 65, 12, 0.5) 100%) !important;
}

.industri-badge {
    background-color: #FB923C !important;
    color: #431407 !important;
}

.industri-photo-badge {
    background-color: #FB923C !important;
    color: #431407 !important;
}

.industri-cta-card {
    background: linear-gradient(135deg, #431407, #7c2d12) !important;
}

.industri-cta-btn {
    background-color: #FB923C !important;
    color: #431407 !important;
}

.industri-cta-btn:hover {
    background-color: #f97316 !important;
}

/* ── Mitra Industri Section ── */
.exc-mitra-section {
    padding: 60px 0;
    border-top: 3px dashed #CBD5E1;
    text-align: center;
}

.exc-mitra-section .exc-section-badge {
    margin-left: auto;
    margin-right: auto;
}

.exc-mitra-section .exc-sub {
    margin: 0 auto 36px;
}

.exc-mitra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}

.exc-mitra-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 20px;
    background: #fff;
    border: 3px solid #000;
    border-radius: 14px;
    box-shadow: 5px 5px 0 #000;
    font-family: var(--font-heading, 'Space Grotesk', sans-serif);
    font-weight: 700;
    font-size: 0.92rem;
    color: #1E293B;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.exc-mitra-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 #000;
}

.exc-mitra-icon {
    font-size: 2rem;
    color: #FB923C;
    background: #FFF7ED;
    border: 2px solid #000;
    border-radius: 10px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

@media (max-width: 900px) {
    .exc-mitra-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .exc-mitra-grid {
        grid-template-columns: 1fr;
    }
}