/* ===========================
   BEIHANG.CSS
   Beihang University — BUAA
   Warna: Navy #003087 + Gold #C9A84C + Accent #00C8FF
   Tema: Aerospace / Tech / HUD Interface
   Font: Orbitron (display) + Exo 2 (body) + Share Tech Mono (code)
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Exo+2:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Share+Tech+Mono&display=swap');

html { scroll-behavior: smooth; }
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --navy:         #003087;
    --navy-mid:     #0050cc;
    --navy-deep:    #001040;
    --gold:         #C9A84C;
    --gold-light:   rgba(201, 168, 76, 0.4);
    --cyan:         #00C8FF;
    --cyan-dim:     rgba(0, 200, 255, 0.2);
    --cream:        #e8f0ff;
    --bg:           #00081a;
}

body {
    overflow-x: hidden;
    font-family: 'Exo 2', sans-serif;
    background: var(--bg);
    color: var(--cream);
}

/* ===== SCAN LINES ===== */
.scanlines {
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 200, 255, 0.013) 2px,
        rgba(0, 200, 255, 0.013) 4px
    );
    pointer-events: none;
    z-index: 9999;
}

/* ===== STAR FIELD ===== */
.starfield {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.star {
    position: absolute;
    background: var(--cyan);
    border-radius: 50%;
    animation: twinkle ease-in-out infinite alternate;
}
.star-symbol {
    position: absolute;
    color: var(--gold);
    font-family: 'Orbitron', monospace;
    animation: driftStar linear infinite;
    user-select: none;
}
@keyframes twinkle {
    0%   { opacity: 0.05; transform: scale(1); }
    100% { opacity: 0.5;  transform: scale(1.5); }
}
@keyframes driftStar {
    0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translateY(-60px) rotate(180deg); opacity: 0; }
}

/* ===== HUD CORNER DECORATIONS ===== */
.hud-corner {
    position: fixed;
    width: 40px;
    height: 40px;
    z-index: 1000;
    pointer-events: none;
    opacity: 0.4;
}
.hud-tl { top: 12px; left: 12px; border-top: 2px solid var(--cyan); border-left: 2px solid var(--cyan); }
.hud-tr { top: 12px; right: 12px; border-top: 2px solid var(--cyan); border-right: 2px solid var(--cyan); }
.hud-bl { bottom: 12px; left: 12px; border-bottom: 2px solid var(--cyan); border-left: 2px solid var(--cyan); }
.hud-br { bottom: 12px; right: 12px; border-bottom: 2px solid var(--cyan); border-right: 2px solid var(--cyan); }

/* ===== 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(0, 8, 26, 0.88) 0%,
        rgba(0, 48, 135, 0.35) 50%,
        rgba(0, 8, 26, 0.92) 100%
    );
    z-index: 0;
    pointer-events: none;
}
.slide1 > *, .slide2 > *, .slide3 > * {
    position: relative;
    z-index: 1;
}

/* ===== TOMBOL KEMBALI ===== */
.webresmi {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: var(--cyan);
    border: 1px solid var(--cyan);
    padding: 10px 26px;
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 0.75rem;
    font-family: 'Orbitron', monospace;
    box-shadow: 0 0 15px rgba(0,200,255,0.2), inset 0 1px 0 rgba(255,255,255,0.05);
    display: flex;
    margin: 16px auto;
    width: fit-content;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.webresmi:hover {
    background: var(--cyan);
    color: var(--navy-deep);
    box-shadow: 0 0 30px rgba(0,200,255,0.5);
    transform: translateY(-2px);
}

/* ===== HERO BADGE ===== */
.hero-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 10px auto 0;
    width: fit-content;
    background: rgba(0, 200, 255, 0.07);
    border: 1px solid rgba(0,200,255,0.3);
    color: var(--cyan);
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 3px;
    padding: 5px 20px;
    text-transform: uppercase;
}
.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    animation: blinkDot 1.5s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes blinkDot {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.1; }
}

/* ===== JUDUL ===== */
.Judul {
    display: flex;
    margin: 12px auto 0;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: clamp(22px, 5.5vw, 60px);
    font-weight: 900;
    width: 88%;
    color: #ffffff;
    text-shadow: 0 0 40px rgba(0,200,255,0.6), 0 0 80px rgba(0,80,204,0.4);
    background: linear-gradient(135deg,
        rgba(0,48,135,0.4) 0%,
        rgba(0,200,255,0.05) 50%,
        rgba(0,48,135,0.4) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0,200,255,0.3);
    border-top: 2px solid var(--cyan);
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 25px 50px rgba(0,0,0,0.6), 0 0 60px rgba(0,48,135,0.3), inset 0 1px 0 rgba(255,255,255,0.04);
    padding: 18px 30px;
    transition: all 0.4s ease;
    letter-spacing: 5px;
    clip-path: polygon(15px 0%, 100% 0%, calc(100% - 15px) 100%, 0% 100%);
}
.Judul:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 80px rgba(0,200,255,0.3), 0 25px 50px rgba(0,0,0,0.6);
    transform: scale(1.005);
}

.Judul-sub {
    display: block;
    text-align: center;
    font-family: 'Share Tech Mono', monospace;
    font-size: clamp(9px, 1.4vw, 13px);
    color: var(--gold);
    letter-spacing: 4px;
    margin: 8px auto 0;
    opacity: 0.8;
}

/* ===== HUD BAR ===== */
.hud-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 10px auto 0;
    width: fit-content;
    padding: 4px 20px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: rgba(0,200,255,0.5);
    letter-spacing: 2px;
}
.hud-sep { color: rgba(0,200,255,0.25); }

/* ===== CONTAINER FLEX ===== */
.container {
    display: flex;
    column-gap: 40px;
    padding: 40px 50px 60px;
}
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(0, 48, 135, 0.2);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(0,200,255,0.25);
    border-top: 2px solid var(--cyan);
    box-shadow: 0 25px 50px rgba(0,0,0,0.6), 0 0 40px rgba(0,200,255,0.1);
    transition: all 0.4s ease;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.video-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--cyan);
    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.2);
    transform: translateY(-4px);
}

/* ===== PENGANTAR ===== */
.pengantar {
    margin-top: 40px;
    margin-right: 50px;
    background: rgba(0, 48, 135, 0.18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(0,200,255,0.18);
    border-left: 3px solid var(--cyan);
    padding: 24px 28px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    color: var(--cream);
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    line-height: 1.9;
    text-align: justify;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}
.pengantar-header {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--cyan);
    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: 15px;
    margin: 55px auto;
    width: fit-content;
    padding: 16px 50px;
    font-family: 'Orbitron', monospace;
    font-size: clamp(16px, 3.5vw, 40px);
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 0 0 30px rgba(0,200,255,0.5);
    background: rgba(0, 48, 135, 0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(0,200,255,0.3);
    border-top: 2px solid var(--cyan);
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4), 0 0 60px rgba(0,200,255,0.08);
    text-align: center;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
}
.doc-prefix {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7em;
    color: var(--cyan);
    opacity: 0.7;
    font-weight: 400;
    letter-spacing: 2px;
}

/* ===== PROGRAM CATEGORY ===== */
.program-category {
    margin-bottom: 40px;
}
.cat-label {
    display: flex;
    align-items: center;
    width: 90%;
    margin: 0 auto 16px;
    padding: 10px 24px;
    font-family: 'Orbitron', monospace;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--cyan);
    background: rgba(0,200,255,0.06);
    border-left: 3px solid var(--cyan);
    border-bottom: 1px solid rgba(0,200,255,0.2);
    text-transform: uppercase;
}

/* ===== BOX WRAPPER ===== */
.box {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 1.2rem;
    width: 92%;
    margin: 0 auto 20px;
}

/* ===== BOX ITEMS ===== */
.box1, .box2, .box3, .box4, .box5,
.box6, .box7, .box8, .box9, .box10 {
    background: rgba(0, 48, 135, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0,200,255,0.15);
    border-left: 3px solid var(--navy-mid);
    padding: 18px 22px;
    width: 100%;
    max-width: 860px;
    color: var(--cream);
    font-family: 'Exo 2', sans-serif;
    font-size: 0.95rem;
    line-height: 1.75;
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}
.box1:hover, .box2:hover, .box3:hover, .box4:hover, .box5:hover,
.box6:hover, .box7:hover, .box8:hover, .box9:hover, .box10:hover {
    background: rgba(0, 48, 135, 0.42);
    border-left: 3px solid var(--cyan);
    box-shadow: 0 0 30px rgba(0,200,255,0.15), 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: 4px;
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 0.97rem;
}
.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.7);
    font-style: italic;
    font-size: 0.88rem;
}

/* ===== STATS SECTION ===== */
.stats-container {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 22px;
    padding: 0 20px 40px;
}
.stats-card {
    background: rgba(0, 48, 135, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,200,255,0.2);
    border-top: 2px solid var(--cyan);
    border-bottom: 2px solid var(--gold);
    padding: 40px 25px;
    width: 280px;
    min-height: 270px;
    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);
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}
.stats-card:hover {
    transform: translateY(-12px);
    background: rgba(0, 48, 135, 0.45);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4), 0 0 40px rgba(0,200,255,0.2);
}
.stats-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 12px;
    text-shadow: 0 0 25px rgba(201,168,76,0.6);
    letter-spacing: 3px;
}
.stats-label {
    color: rgba(232, 240, 255, 0.8);
    font-family: 'Exo 2', sans-serif;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ===== 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(0, 48, 135, 0.16);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,200,255,0.18);
    border-top: 2px solid rgba(0,200,255,0.5);
    padding: 24px;
    flex: 1;
    min-width: 260px;
    max-width: 380px;
    color: var(--cream);
    font-family: 'Exo 2', sans-serif;
    font-size: 0.88rem;
    line-height: 1.9;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.fees-card p { margin-bottom: 4px; }
.fees-card strong { color: var(--gold); }
.fees-title {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: var(--cyan);
    letter-spacing: 3px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(0,200,255,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(--navy) 0%, var(--navy-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-buaa 2.5s infinite;
    box-shadow: 0 5px 20px rgba(0,48,135,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(--navy-deep);
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    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: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 14px;
}
@keyframes pulse-buaa {
    0%   { box-shadow: 0 0 0 0 rgba(201,168,76,0.6), 0 5px 20px rgba(0,48,135,0.5); transform: scale(1); }
    70%  { box-shadow: 0 0 0 14px rgba(201,168,76,0), 0 5px 20px rgba(0,48,135,0.5); transform: scale(1.04); }
    100% { box-shadow: 0 0 0 0 rgba(201,168,76,0), 0 5px 20px rgba(0,48,135,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);
}
.ai-popup:hover .ai-circle { background: #fff; color: var(--gold); }
.ai-popup:hover .ai-label  { color: var(--navy-deep); }

/* ===== 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(0,8,26,0.88) 0%, rgba(0,48,135,0.35) 50%, rgba(0,8,26,0.92) 100%);
    z-index: 0;
}
.final-container {
    position: relative;
    z-index: 1;
    background: rgba(0, 8, 26, 0.7);
    backdrop-filter: blur(22px);
    border: 1px solid rgba(0,200,255,0.25);
    border-top: 2px solid var(--cyan);
    border-bottom: 2px solid var(--gold);
    width: 90%;
    max-width: 1200px;
    padding: 48px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.7), 0 0 80px rgba(0,48,135,0.2);
    text-align: center;
    clip-path: polygon(15px 0%, 100% 0%, calc(100% - 15px) 100%, 0% 100%);
}
.final-title {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    color: #ffffff;
    font-size: clamp(18px, 3.5vw, 38px);
    margin-bottom: 6px;
    text-shadow: 0 0 30px rgba(0,200,255,0.5);
    letter-spacing: 4px;
    text-transform: uppercase;
}
.final-sub {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.78rem;
    color: var(--gold);
    letter-spacing: 3px;
    opacity: 0.7;
    margin-bottom: 0;
}
.final-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--gold));
    margin: 14px auto 35px;
}
.final-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 35px;
}
.final-card {
    background: rgba(0, 48, 135, 0.22);
    border: 1px solid rgba(0,200,255,0.2);
    border-top: 2px solid var(--cyan);
    padding: 26px 20px;
    color: var(--cream);
    text-align: left;
    transition: 0.35s ease;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.final-card:hover {
    background: rgba(0, 48, 135, 0.48);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 30px rgba(0,200,255,0.12);
}
.final-card h3 {
    color: var(--gold);
    margin-bottom: 14px;
    font-family: 'Orbitron', monospace;
    font-size: 0.72rem;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(0,200,255,0.2);
    padding-bottom: 8px;
    text-transform: uppercase;
}
.final-card p {
    font-size: 0.84rem;
    line-height: 1.75;
    margin-bottom: 3px;
    color: rgba(232,240,255,0.88);
}
.final-card strong { color: var(--gold); }
.timeline-list {
    list-style: none;
    font-size: 0.84rem;
    line-height: 1.95;
    color: rgba(232,240,255,0.88);
}
.timeline-list li::before { content: '▸ '; color: var(--cyan); }
.link-group { display: flex; flex-direction: column; gap: 12px; }
.btn-final {
    text-decoration: none;
    background: transparent;
    color: var(--cyan);
    padding: 10px 14px;
    text-align: center;
    font-weight: 600;
    border: 1px solid var(--cyan);
    transition: 0.3s;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: block;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.btn-final:hover {
    background: var(--cyan);
    color: var(--navy-deep);
    box-shadow: 0 0 20px rgba(0,200,255,0.4);
}
.mini-footer {
    margin-top: 20px;
    color: rgba(232,240,255,0.3);
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-family: 'Share Tech Mono', monospace;
    line-height: 1.8;
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 900px) {
    .Judul {
        font-size: 18px !important;
        width: 94% !important;
        letter-spacing: 2px;
        padding: 14px 16px;
        clip-path: none;
    }
    .hero-badge { font-size: 0.6rem; letter-spacing: 1.5px; padding: 5px 12px; }
    .Judul-sub { font-size: 9px; letter-spacing: 2px; }
    .hud-bar { display: none; }
    .container {
        flex-direction: column !important;
        align-items: center !important;
        gap: 18px !important;
        padding: 12px;
    }
    .video-container {
        width: 100% !important;
        margin-left: 0 !important;
        margin-top: 10px;
        clip-path: none;
    }
    .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;
        clip-path: none;
    }
    .dokumen, .stats-title {
        width: 92%;
        padding: 12px 18px;
        font-size: 14px;
        letter-spacing: 2px;
        clip-path: none;
    }
    .stats-card { width: 90%; min-height: auto; padding: 28px 20px; clip-path: none; }
    .fees-grid { flex-direction: column; width: 95%; }
    .fees-card { max-width: 100%; clip-path: none; }
    .final-grid { grid-template-columns: 1fr; }
    .final-container { padding: 22px; width: 96%; clip-path: none; }
    .final-card { clip-path: none; }
    .cat-label { font-size: 0.65rem; letter-spacing: 2px; }
    .box1, .box2, .box3, .box4, .box5,
    .box6, .box7, .box8, .box9, .box10 { clip-path: none; }
    .hud-corner { display: none; }
    .webresmi { clip-path: none; font-size: 0.7rem; letter-spacing: 2px; }
}