/* ===========================
   RUC.CSS — Renmin University of China
   中国人民大学
   Warna: Deep Crimson #9B1B30 + Gold #C9A84C + Ivory #FAF3E0
   Tema: Humanistik, Akademis, Bersejarah — "The People's University"
   Font: Playfair Display (display) + Lora (body) + Courier Prime (mono/label)
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Courier+Prime:ital,wght@0,400;0,700;1,400&display=swap');

html { scroll-behavior: smooth; }
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --crimson:       #9B1B30;
    --crimson-deep:  #6B0F20;
    --crimson-mid:   #B52238;
    --gold:          #C9A84C;
    --gold-light:    rgba(201, 168, 76, 0.35);
    --gold-dim:      rgba(201, 168, 76, 0.15);
    --ivory:         #FAF3E0;
    --ivory-dim:     #F0E6CC;
    --ink:           #1A0A0E;
    --ink-mid:       #2D1218;
    --bg:            #0D0508;
}

body {
    overflow-x: hidden;
    font-family: 'Lora', Georgia, serif;
    background: var(--bg);
    color: var(--ivory);
}

/* ===== CLASSICAL PAPER TEXTURE OVERLAY ===== */
.paper-overlay {
    position: fixed;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 28px,
            rgba(201, 168, 76, 0.022) 28px,
            rgba(201, 168, 76, 0.022) 29px
        );
    pointer-events: none;
    z-index: 9999;
}

/* ===== FLOATING PARTICLES ===== */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.particle {
    position: absolute;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    animation: floatRUC linear infinite;
    user-select: none;
}
@keyframes floatRUC {
    0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
    8%   { opacity: 1; }
    92%  { opacity: 1; }
    100% { transform: translateY(-80px) rotate(180deg); opacity: 0; }
}

/* ===== DECORATIVE CORNER RULES ===== */
.corner-rule {
    position: fixed;
    width: 50px;
    height: 50px;
    z-index: 1000;
    pointer-events: none;
    opacity: 0.35;
}
.corner-rule-tl { top: 14px; left: 14px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.corner-rule-tr { top: 14px; right: 14px; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.corner-rule-bl { bottom: 14px; left: 14px; border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.corner-rule-br { bottom: 14px; right: 14px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }

/* ===== SLIDES BACKGROUND ===== */
.slide1, .slide2, .slide3 {
    position: relative;
    display: block;
    background-image: url("peking.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    z-index: 1;
}
.slide1::before, .slide2::before, .slide3::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(13, 5, 8, 0.92) 0%,
        rgba(107, 15, 32, 0.3) 50%,
        rgba(13, 5, 8, 0.94) 100%
    );
    z-index: 0;
    pointer-events: none;
}
.slide1 > *, .slide2 > *, .slide3 > * {
    position: relative;
    z-index: 1;
}

/* ===== TOMBOL KEMBALI ===== */
.webresmi {
    background: linear-gradient(135deg, var(--crimson-deep) 0%, var(--ink-mid) 100%);
    color: var(--ivory);
    border: 1.5px solid var(--gold);
    padding: 11px 28px;
    border-radius: 1px;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.78rem;
    font-family: 'Courier Prime', monospace;
    box-shadow: 3px 3px 0 rgba(201,168,76,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
    display: flex;
    margin: 18px auto;
    width: fit-content;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.webresmi:hover {
    background: linear-gradient(135deg, var(--gold) 0%, #a8852a 100%);
    color: var(--ink);
    box-shadow: 0 0 22px var(--gold-light);
    transform: translateY(-2px);
}

/* ===== HERO BADGE ===== */
.hero-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 10px auto 0;
    width: fit-content;
    background: rgba(155, 27, 48, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.35);
    color: var(--gold);
    font-family: 'Courier Prime', monospace;
    font-size: 0.68rem;
    letter-spacing: 3.5px;
    padding: 5px 22px;
    text-transform: uppercase;
}
.badge-dot {
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    animation: blinkBadge 2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes blinkBadge {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.1; }
}

/* ===== JUDUL ===== */
.Judul {
    display: flex;
    margin: 14px auto 0;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 5.5vw, 62px);
    font-weight: 900;
    font-style: italic;
    width: 86%;
    color: #ffffff;
    text-shadow:
        0 0 50px rgba(155, 27, 48, 0.7),
        0 0 80px rgba(201, 168, 76, 0.3),
        2px 2px 15px rgba(0,0,0,0.7);
    background: linear-gradient(135deg,
        rgba(107, 15, 32, 0.4) 0%,
        rgba(201, 168, 76, 0.06) 50%,
        rgba(107, 15, 32, 0.4) 100%
    );
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--crimson-mid);
    box-shadow: 0 25px 55px rgba(0,0,0,0.65), 0 0 60px rgba(107,15,32,0.25), inset 0 1px 0 rgba(255,255,255,0.04);
    padding: 20px 36px;
    transition: all 0.4s ease;
    letter-spacing: 2px;
}
.Judul:hover {
    box-shadow: 0 0 80px rgba(155,27,48,0.35), 0 25px 55px rgba(0,0,0,0.65);
    transform: scale(1.003);
}
.Judul-sub {
    display: block;
    text-align: center;
    font-family: 'Courier Prime', monospace;
    font-size: clamp(9px, 1.3vw, 13px);
    color: var(--gold);
    letter-spacing: 4px;
    margin: 8px auto 0;
    opacity: 0.75;
}

/* ===== ORNAMENTAL DIVIDER ===== */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 12px auto 0;
    width: fit-content;
    color: rgba(201,168,76,0.5);
    font-size: 0.7rem;
    letter-spacing: 6px;
    font-family: 'Courier Prime', monospace;
}
.ornament-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5));
}
.ornament-line-r {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, rgba(201,168,76,0.5), transparent);
}

/* ===== CONTAINER FLEX ===== */
.container {
    display: flex;
    column-gap: 40px;
    padding: 40px 50px 55px;
}
section { display: block; border: none; margin: 0; padding: 0; }

/* ===== VIDEO CONTAINER ===== */
.video-container {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-top: 40px;
    margin-left: 50px;
    width: fit-content;
    padding: 12px;
    background: rgba(107, 15, 32, 0.2);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(201, 168, 76, 0.22);
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--crimson-mid);
    box-shadow: 0 25px 50px rgba(0,0,0,0.6), 0 0 35px rgba(107,15,32,0.2);
    transition: all 0.4s ease;
}
.vid-label {
    font-family: 'Courier Prime', monospace;
    font-size: 0.68rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 8px;
    opacity: 0.7;
}
.video-container iframe { display: block; }
.video-container:hover {
    border-color: var(--gold);
    box-shadow: 0 25px 50px rgba(0,0,0,0.6), 0 0 50px rgba(201,168,76,0.18);
    transform: translateY(-4px);
}

/* ===== PENGANTAR ===== */
.pengantar {
    margin-top: 40px;
    margin-right: 50px;
    background: rgba(107, 15, 32, 0.15);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-left: 3px solid var(--gold);
    padding: 26px 28px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    color: var(--ivory);
    font-family: 'Lora', serif;
    font-size: 1rem;
    line-height: 1.95;
    text-align: justify;
}
.pengantar-tag {
    font-family: 'Courier Prime', monospace;
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 12px;
    opacity: 0.7;
}
.pengantar strong { color: var(--gold); }

/* ===== SECTION HEADING ===== */
.dokumen, .stats-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 55px auto;
    width: fit-content;
    padding: 18px 52px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 3.8vw, 44px);
    font-weight: 700;
    font-style: italic;
    color: #ffffff;
    text-transform: none;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(155,27,48,0.5);
    background: rgba(107, 15, 32, 0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(201, 168, 76, 0.28);
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--crimson-mid);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4), 0 0 60px rgba(107,15,32,0.15);
    text-align: center;
}
.sec-num {
    font-family: 'Courier Prime', monospace;
    font-size: 0.65em;
    color: var(--gold);
    opacity: 0.65;
    font-weight: 400;
    letter-spacing: 2px;
    font-style: normal;
}

/* ===== PROGRAM TABS ===== */
.program-tab {
    display: flex;
    align-items: center;
    width: 90%;
    margin: 0 auto 16px;
    padding: 10px 24px;
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 1px;
    color: var(--ivory);
    background: rgba(155, 27, 48, 0.14);
    border-left: 3px solid var(--crimson-mid);
    border-bottom: 1px solid rgba(201, 168, 76, 0.18);
}
.program-tab-gold {
    border-left: 3px solid var(--gold);
    background: rgba(201, 168, 76, 0.06);
    color: var(--gold);
}

/* ===== BOX WRAPPER ===== */
.box {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 1.1rem;
    width: 92%;
    margin: 0 auto 20px;
}

/* ===== BOX ITEMS ===== */
.box1, .box2, .box3, .box4, .box5,
.box6, .box7, .box8, .box9, .box10 {
    background: rgba(107, 15, 32, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 168, 76, 0.13);
    border-left: 3px solid var(--crimson-mid);
    padding: 18px 22px;
    width: 100%;
    max-width: 860px;
    color: var(--ivory);
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    line-height: 1.8;
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.box2, .box4, .box6, .box8, .box10 {
    border-left: 3px solid var(--gold);
}
.box1:hover, .box2:hover, .box3:hover, .box4:hover, .box5:hover,
.box6:hover, .box7:hover, .box8:hover, .box9:hover, .box10:hover {
    background: rgba(107, 15, 32, 0.42);
    border-left-color: var(--gold);
    box-shadow: 0 0 25px rgba(155,27,48,0.2), 0 8px 30px rgba(0,0,0,0.3);
    transform: translateX(8px) scale(1.005);
}
.box1 strong, .box2 strong, .box3 strong,
.box4 strong, .box5 strong, .box6 strong,
.box7 strong, .box8 strong, .box9 strong,
.box10 strong {
    color: var(--gold);
    display: block;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 0.98rem;
    font-style: italic;
}
.box1 em, .box2 em, .box3 em,
.box4 em, .box5 em, .box6 em,
.box7 em, .box8 em, .box9 em,
.box10 em {
    color: rgba(201,168,76,0.72);
    font-size: 0.88rem;
}

/* ===== TUITION TABLE ===== */
.tuition-table {
    width: 92%;
    margin: 0 auto 30px;
    border-collapse: collapse;
    font-family: 'Lora', serif;
    font-size: 0.88rem;
}
.tuition-table thead tr {
    background: rgba(155, 27, 48, 0.4);
    border-bottom: 2px solid var(--gold);
}
.tuition-table thead th {
    padding: 12px 18px;
    text-align: left;
    color: var(--gold);
    font-family: 'Courier Prime', monospace;
    font-size: 0.7rem;
    letter-spacing: 2px;
    font-weight: 700;
}
.tuition-table tbody tr {
    border-bottom: 1px solid rgba(201,168,76,0.1);
    background: rgba(107, 15, 32, 0.1);
    transition: background 0.2s ease;
}
.tuition-table tbody tr:nth-child(even) {
    background: rgba(107, 15, 32, 0.18);
}
.tuition-table tbody tr:hover {
    background: rgba(107, 15, 32, 0.4);
}
.tuition-table td {
    padding: 11px 18px;
    color: var(--ivory);
    vertical-align: middle;
}
.tuition-table td:last-child {
    color: var(--gold);
    font-family: 'Courier Prime', monospace;
    font-weight: 700;
    font-size: 0.85rem;
}
.tuition-table .csca-col {
    font-family: 'Courier Prime', monospace;
    font-size: 0.8rem;
    color: rgba(250, 243, 224, 0.65);
}
.tuition-table .faculty-col {
    font-style: italic;
    color: rgba(250,243,224,0.8);
}

/* ===== STATS SECTION ===== */
.stats-container {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 22px;
    padding: 0 20px 30px;
}
.stats-card {
    background: rgba(107, 15, 32, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--crimson-mid);
    padding: 38px 25px;
    width: 270px;
    min-height: 255px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.stats-card:hover {
    transform: translateY(-12px);
    background: rgba(107, 15, 32, 0.45);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4), 0 0 40px rgba(155,27,48,0.2);
}
.stats-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 12px;
    text-shadow: 0 0 25px rgba(201,168,76,0.55);
    letter-spacing: 2px;
}
.stats-label {
    color: rgba(250, 243, 224, 0.82);
    font-family: 'Lora', serif;
    font-size: 0.84rem;
    line-height: 1.55;
    font-style: italic;
}

/* ===== FEES GRID ===== */
.fees-grid {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
    width: 92%;
    margin: 0 auto 50px;
}
.fees-card {
    background: rgba(107, 15, 32, 0.14);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-top: 2px solid rgba(201, 168, 76, 0.45);
    padding: 24px;
    flex: 1;
    min-width: 250px;
    max-width: 380px;
    color: var(--ivory);
    font-family: 'Lora', serif;
    font-size: 0.88rem;
    line-height: 1.9;
}
.fees-card p { margin-bottom: 4px; }
.fees-card strong { color: var(--gold); }
.fees-label {
    font-family: 'Courier Prime', monospace;
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    padding-bottom: 8px;
}

/* ===== AI POPUP ===== */
.ai-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-deep) 100%);
    border: 1.5px solid var(--gold);
    padding: 10px 20px;
    border-radius: 0;
    text-decoration: none;
    z-index: 10000;
    transition: all 0.3s ease;
    animation: pulse-ruc 2.5s infinite;
    box-shadow: 0 5px 20px rgba(107,15,32,0.5);
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.ai-circle {
    width: 34px;
    height: 34px;
    background: var(--gold);
    color: var(--crimson-deep);
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 12px;
    margin-right: 10px;
    clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}
.ai-label {
    color: #ffffff;
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 14px;
    font-style: italic;
}
@keyframes pulse-ruc {
    0%   { box-shadow: 0 0 0 0 rgba(201,168,76,0.55), 0 5px 20px rgba(107,15,32,0.5); transform: scale(1); }
    70%  { box-shadow: 0 0 0 14px rgba(201,168,76,0), 0 5px 20px rgba(107,15,32,0.5); transform: scale(1.04); }
    100% { box-shadow: 0 0 0 0 rgba(201,168,76,0), 0 5px 20px rgba(107,15,32,0.5); transform: scale(1); }
}
.ai-popup:hover {
    animation: none;
    background: linear-gradient(135deg, var(--gold) 0%, #a8852a 100%);
    transform: translateY(-5px) scale(1.06);
    box-shadow: 0 12px 25px rgba(0,0,0,0.4);
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.ai-popup:hover .ai-circle { background: #fff; color: var(--gold); }
.ai-popup:hover .ai-label { color: var(--crimson-deep); font-style: normal; }

/* ===== SLIDE 4: FINAL ===== */
.slide4 {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("peking.jpg");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    padding: 60px 20px;
    position: relative;
}
.slide4::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(13,5,8,0.92) 0%, rgba(107,15,32,0.32) 50%, rgba(13,5,8,0.94) 100%);
    z-index: 0;
}
.final-container {
    position: relative;
    z-index: 1;
    background: rgba(13, 5, 8, 0.72);
    backdrop-filter: blur(22px);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--crimson-mid);
    width: 90%;
    max-width: 1200px;
    padding: 48px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.7), 0 0 80px rgba(107,15,32,0.18);
    text-align: center;
}
.final-seal {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--crimson-mid);
    opacity: 0.1;
    letter-spacing: 8px;
    margin-bottom: -14px;
}
.final-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-style: italic;
    color: #ffffff;
    font-size: clamp(20px, 3.5vw, 38px);
    margin-bottom: 6px;
    text-shadow: 0 0 30px rgba(155,27,48,0.5);
    letter-spacing: 1px;
}
.final-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--crimson-mid), var(--gold));
    margin: 14px auto 35px;
}
.final-sub {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 0.88rem;
    color: var(--gold);
    opacity: 0.7;
    margin-bottom: 0;
    letter-spacing: 1px;
}
.final-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 30px;
}
.final-card {
    background: rgba(107, 15, 32, 0.22);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-top: 2px solid var(--gold);
    padding: 26px 20px;
    color: var(--ivory);
    text-align: left;
    transition: 0.35s ease;
}
.final-card:hover {
    background: rgba(107, 15, 32, 0.48);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 30px rgba(155,27,48,0.15);
}
.final-card h3 {
    color: var(--gold);
    margin-bottom: 14px;
    font-family: 'Playfair Display', serif;
    font-size: 0.88rem;
    font-style: italic;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    padding-bottom: 8px;
}
.final-card p {
    font-size: 0.84rem;
    line-height: 1.78;
    margin-bottom: 3px;
    color: rgba(250,243,224,0.88);
    font-family: 'Lora', serif;
}
.final-card strong { color: var(--gold); }
.timeline-list {
    list-style: none;
    font-size: 0.84rem;
    line-height: 2;
    color: rgba(250,243,224,0.88);
    font-family: 'Lora', serif;
}
.timeline-list li::before { content: '▸ '; color: var(--gold); }
.link-group { display: flex; flex-direction: column; gap: 11px; }
.btn-final {
    text-decoration: none;
    background: transparent;
    color: var(--gold);
    padding: 9px 14px;
    text-align: center;
    font-weight: 600;
    border: 1px solid var(--gold);
    transition: 0.3s;
    font-family: 'Lora', serif;
    font-size: 0.84rem;
    letter-spacing: 0.5px;
    display: block;
    font-style: italic;
}
.btn-final:hover {
    background: var(--gold);
    color: var(--ink);
    box-shadow: 0 0 20px rgba(201,168,76,0.4);
    font-style: normal;
}
.mini-footer {
    margin-top: 22px;
    color: rgba(250,243,224,0.3);
    font-size: 0.74rem;
    letter-spacing: 0.5px;
    font-family: 'Courier Prime', monospace;
    line-height: 1.8;
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 900px) {
    .Judul { font-size: 22px !important; width: 94% !important; letter-spacing: 1px; padding: 14px 16px; }
    .Judul-sub { font-size: 9px; letter-spacing: 2px; }
    .hero-badge { font-size: 0.58rem; letter-spacing: 1.5px; padding: 5px 12px; }
    .container { flex-direction: column !important; align-items: center !important; gap: 18px !important; padding: 10px 12px; }
    .video-container { width: 100% !important; margin-left: 0 !important; margin-top: 10px; }
    .video-container iframe { height: 230px !important; width: 100% !important; }
    .pengantar { width: 100% !important; margin: 0 !important; padding: 18px !important; font-size: 0.95rem !important; text-align: left; }
    .dokumen, .stats-title { width: 92%; padding: 12px 18px; font-size: 16px; letter-spacing: 1px; }
    .stats-card { width: 90%; min-height: auto; padding: 28px 20px; }
    .fees-grid { flex-direction: column; width: 95%; }
    .fees-card { max-width: 100%; }
    .final-grid { grid-template-columns: 1fr; }
    .final-container { padding: 22px; width: 96%; }
    .corner-rule { display: none; }
    .webresmi { font-size: 0.68rem; letter-spacing: 1.5px; }
    .tuition-table { font-size: 0.78rem; }
    .tuition-table th, .tuition-table td { padding: 8px 10px; }
    .ai-popup { clip-path: none; border-radius: 50px; }
    .ai-circle { clip-path: none; border-radius: 50%; }
}