/* ═══════════════ SECTION WRAPPER ═══════════════ */
section {
    scroll-margin-top: 68px;
}

.container {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

.section-pad {
    padding: 90px 0;
}

.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--gray);
    border: 1px solid rgba(17, 17, 17, .08);
    border-radius: 999px;
    padding: 5px 13px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
}

.sec-h2 {
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 10px;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.sec-p {
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.65;
    max-width: 560px;
}

.sec-head {
    margin-bottom: 44px;
}

/* ═══════════════ STATS STRIP ═══════════════ */
.stats-strip {
    background: linear-gradient(135deg, var(--blue), #0a3560, var(--black));
    padding: 0;
    overflow: hidden;
    position: relative;
}

.stats-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 36px 24px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .08);
    transition: background .2s;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: rgba(255, 255, 255, .04);
}

.stat-num {
    font-size: clamp(30px, 3.5vw, 44px);
    font-weight: 800;
    letter-spacing: -1.5px;
    color: #fff;
    line-height: 1;
}

.stat-num span {
    color: var(--cyan);
}

.stat-lbl {
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    margin-top: 6px;
    font-weight: 500;
}

/* ═══════════════ PROGRAMS ═══════════════ */
#program {
    background:
        linear-gradient(180deg,
            #ffffff 0%,
            rgba(15, 76, 129, 0.12) 15%,
            rgba(15, 76, 129, 0.18) 50%,
            rgba(15, 76, 129, 0.12) 85%,
            #ffffff 100%),
        radial-gradient(ellipse at 15% 50%, rgba(15, 76, 129, 0.15) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 50%, rgba(31, 162, 201, 0.1) 0%, transparent 55%);
    position: relative;
    overflow: hidden;
}

#program::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(31, 162, 201, 0.1), transparent 70%);
    top: -100px;
    right: -100px;
    animation: pulse-glow 8s infinite ease-in-out;
}

.prog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.prog-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--r);
    padding: 32px;
    box-shadow: var(--sh);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.prog-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--sh2);
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.85);
}

.prog-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 6px;
    background: var(--muted);
    opacity: 0.8;
}

.prog-card.red::before { background: var(--grad-red); }
.prog-card.blue::before { background: var(--grad-blue); }
.prog-card.dark::before { background: var(--black); }
.prog-card.mix::before { background: var(--grad-mix); }

.prog-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    right: -100px;
    top: -100px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.prog-card:hover .prog-glow {
    opacity: 0.6;
    transform: scale(1.2);
}

.red .prog-glow { background: var(--red); }
.blue .prog-glow { background: var(--cyan); }
.dark .prog-glow { background: var(--muted); }
.mix .prog-glow { background: linear-gradient(var(--red), var(--cyan)); }

.prog-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    border: 1px solid rgba(0,0,0,0.03);
}


.bdot {
    width: 7px;
    height: 7px;
    border-radius: 99px;
}

.red .bdot {
    background: var(--red);
    box-shadow: 0 0 0 3px rgba(225, 6, 0, .16);
}

.blue .bdot {
    background: var(--blue);
    box-shadow: 0 0 0 3px rgba(15, 76, 129, .16);
}

.dark .bdot {
    background: #111;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, .10);
}

.mix .bdot {
    background: linear-gradient(135deg, var(--red), var(--cyan));
    box-shadow: 0 0 0 3px rgba(31, 162, 201, .16);
}

.prog-card h3 {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.3px;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.prog-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.feat-list {
    list-style: none;
    display: grid;
    gap: 7px;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.feat-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    color: #1F2937;
    line-height: 1.45;
}

.feat-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 99px;
    flex-shrink: 0;
    margin-top: 5px;
}

.red .feat-list li::before {
    background: var(--red);
}

.blue .feat-list li::before {
    background: var(--cyan);
}

.dark .feat-list li::before {
    background: #111;
}

.mix .feat-list li::before {
    background: linear-gradient(135deg, var(--red), var(--cyan));
}

.prog-footer {
    display: flex;
    gap: 9px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.prog-footer .btn {
    white-space: normal;
    text-align: center;
    word-break: break-word;
    font-size: 12px;
    line-height: 1.4;
    padding: 10px 16px;
    display: inline-flex;
    max-width: 100%;
}

.prog-note {
    font-size: 11.5px;
    color: var(--muted);
    font-style: italic;
}

/* ═══════════════ KEUNGGULAN ═══════════════ */
#keunggulan {
    background: #fff;
}

.keung-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.keung-card {
    border-radius: var(--r);
    padding: 26px;
    border: 1px solid rgba(17, 17, 17, .08);
    background: var(--gray);
    transition: transform .22s cubic-bezier(.22, 1, .36, 1), box-shadow .22s, border-color .22s;
}

.keung-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh2);
    border-color: rgba(17, 17, 17, .12);
}

.keung-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.keung-icon.c-blue {
    background: rgba(15, 76, 129, .10);
}

.keung-icon.c-red {
    background: rgba(225, 6, 0, .10);
}

.keung-icon.c-cyan {
    background: rgba(31, 162, 201, .10);
}

.keung-icon.c-dark {
    background: rgba(17, 17, 17, .07);
}

.keung-icon.c-green {
    background: rgba(16, 185, 129, .10);
}

.keung-icon.c-orange {
    background: rgba(245, 158, 11, .10);
}

.keung-card h4 {
    font-size: 15.5px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -.2px;
}

.keung-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.6;
}

/* ═══════════════ TESTIMONI ═══════════════ */
#testimoni {
    background:
        linear-gradient(180deg,
            #ffffff 0%,
            rgba(225, 6, 0, 0.10) 15%,
            rgba(225, 6, 0, 0.15) 50%,
            rgba(225, 6, 0, 0.10) 85%,
            #ffffff 100%),
        radial-gradient(ellipse at 85% 50%, rgba(225, 6, 0, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 15% 50%, rgba(255, 80, 60, 0.08) 0%, transparent 55%);
    position: relative;
    overflow: hidden;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 15px;
}

.testi-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: var(--r);
    padding: 35px 25px 25px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testi-card::before {
    content: "“";
    position: absolute;
    top: 5px;
    right: 20px;
    font-size: 80px;
    font-family: serif;
    font-weight: 800;
    color: rgba(15, 76, 129, 0.05);
    line-height: 1;
    transition: color 0.4s ease;
}

.testi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    background: rgba(255, 255, 255, 0.9);
}

.testi-card:hover::before {
    color: rgba(15, 76, 129, 0.15);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.stars span {
    color: #F59E0B;
    font-size: 16px;
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
}

.testi-text {
    font-size: 14.5px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    font-weight: 300;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.testi-person {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.04);
}

.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid white;
}

.testi-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 3px;
    letter-spacing: -0.2px;
}

.testi-role {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}

/* ═══════════════ KAMPUS PARTNER ═══════════════ */
#kampus-partner {
    background:
        linear-gradient(180deg,
            #ffffff 0%,
            rgba(15, 76, 129, 0.12) 15%,
            rgba(15, 76, 129, 0.18) 50%,
            rgba(15, 76, 129, 0.12) 85%,
            #ffffff 100%),
        radial-gradient(ellipse at 15% 50%, rgba(15, 76, 129, 0.15) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 50%, rgba(31, 162, 201, 0.1) 0%, transparent 55%);
    position: relative;
    overflow: hidden;
}

.kampus-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 35px;
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .kampus-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        padding: 0;
        gap: 40px;
    }
}

.kampus-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.kampus-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(15, 76, 129, 0.2);
}

.kampus-banner {
    width: 100%;
    position: relative;
    aspect-ratio: 16 / 9;
    background: #f8fafc;
    flex-shrink: 0;
    overflow: hidden;
}

.kampus-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.4));
}

.kampus-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.kampus-card:hover .kampus-banner img {
    transform: scale(1.1);
}

.kampus-logo-wrapper {
    position: relative;
    margin: -50px auto 0;
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    z-index: 10;
    flex-shrink: 0;
    border: 3px solid white;
    transition: all 0.4s ease;
}

.kampus-card:hover .kampus-logo-wrapper {
    transform: translateY(-5px) rotate(3deg);
    box-shadow: 0 12px 30px rgba(15, 76, 129, 0.2);
}

.kampus-logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.kampus-content {
    padding: 35px 28px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    background: linear-gradient(to bottom, rgba(255,255,255,0.95), white);
    position: relative;
}

.kampus-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.kampus-divider {
    width: 45px;
    height: 4px;
    background: var(--grad-blue);
    border-radius: 10px;
    margin: 5px auto 20px;
    flex-shrink: 0;
    transition: width 0.4s ease;
}

.kampus-card:hover .kampus-divider {
    width: 70px;
    background: var(--grad-mix);
}

.kampus-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 5px;
}