/* ============================================
   CSS Variables & Reset
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1a2744;
    --gold: #c9a84c;
    --dark-gray: #2d3748;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --privacy-bg: #fff3cd;
    --privacy-border: #ffc107;
    --privacy-text: #856404;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--light-gray);
    color: var(--dark-gray);
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 30px auto;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ============================================
   PRIVACY: Data Sensitif - Sembunyi/Tampil
   ============================================ */

/* Style untuk data yang disembunyikan di web */
.web-hidden {
    color: #999;
    font-style: italic;
    font-size: 12px;
    background-color: #f8f8f8;
    padding: 3px 10px;
    border-radius: 4px;
    border: 1px dashed #ddd;
    display: inline-block;
}

/* Style untuk data yang hanya muncul saat print */
.print-only {
    display: none;
}

/* Notifikasi privasi */
.privacy-notice {
    background-color: var(--privacy-bg);
    border: 1px solid var(--privacy-border);
    color: var(--privacy-text);
    padding: 12px 15px;
    border-radius: 6px;
    margin-top: 15px;
    font-size: 13px;
}

.privacy-notice p {
    margin: 0;
}

/* Class untuk elemen yang hanya muncul di web */
.web-only {
    display: block;
}

/* Baris data sensitif */
.sensitive-data .web-hidden {
    display: inline-block;
}

.sensitive-data .print-only {
    display: none;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background-color: var(--navy);
    color: var(--white);
    display: grid;
    grid-template-columns: 150px 1fr 200px;
    align-items: center;
    padding: 25px 30px;
    gap: 20px;
}

.header-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo-placeholder {
    width: 130px;
    height: 130px;
    background-color: var(--gold);
    border-radius: 50%;
    border: 4px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: bold;
    color: var(--navy);
    overflow: hidden;
}

.photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.header-center {
    text-align: left;
    padding-left: 10px;
}

.header-center h1 {
    font-family: 'Arial', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.header-center .subtitle {
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 0.5px;
    font-style: italic;
}

.header-right {
    text-align: right;
    font-size: 13px;
    line-height: 1.8;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 20px;
}

.header-right .label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
}

#live-clock {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
}

#live-date {
    font-size: 13px;
}

/* ============================================
   BODY CONTENT
   ============================================ */
.body-content {
    padding: 30px;
}

.section {
    margin-bottom: 30px;
    page-break-inside: avoid;
}

.section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 8px;
    margin-bottom: 15px;
}

/* Deskripsi / About */
.about-text {
    text-align: justify;
    color: var(--dark-gray);
    font-size: 14px;
    line-height: 1.8;
}

/* Tabel Data */
.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.info-table td {
    padding: 6px 10px;
    vertical-align: top;
    border-bottom: 1px solid var(--border-color);
}

.info-table td:first-child {
    font-weight: 600;
    color: var(--navy);
    width: 180px;
}

/* Pengalaman & Pendidikan */
.experience-item {
    margin-bottom: 20px;
}

.experience-item h3 {
    font-size: 15px;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 2px;
}

.experience-item .company {
    font-weight: 600;
    color: var(--dark-gray);
}

.experience-item .role {
    color: var(--gold);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 5px;
}

.experience-item .definition {
    background-color: #f8f9fa;
    border-left: 3px solid var(--gold);
    padding: 8px 12px;
    margin: 8px 0;
    font-size: 13px;
    font-style: italic;
    color: #555;
}

.experience-item ul {
    padding-left: 20px;
    font-size: 13px;
    color: var(--dark-gray);
}

.experience-item ul li {
    margin-bottom: 3px;
}

/* Keahlian */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.skill-card {
    background-color: var(--light-gray);
    border: 1px solid var(--border-color);
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    transition: 0.3s;
}

.skill-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.skill-card h4 {
    color: var(--navy);
    font-size: 14px;
    margin-bottom: 5px;
}

.skill-card p {
    font-size: 12px;
    color: #666;
}

/* Galeri */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    background: var(--light-gray);
    transition: 0.3s;
}

.gallery-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.gallery-img {
    width: 100%;
    height: 150px;
    background-color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 12px;
    overflow: hidden;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-img img {
    transform: scale(1.05);
}

.gallery-caption {
    padding: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
    background: white;
}

/* Footer */
.footer {
    text-align: center;
    padding: 15px;
    background-color: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

/* Print Button */
.print-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--navy);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    z-index: 1000;
}

.print-btn:hover {
    background-color: #0f1b30;
    transform: translateY(-2px);
}

/* ============================================
   PRINT STYLES (Data Sensitif MUNCUL)
   ============================================ */
/* ============================================
   STYLE DATA SENSITIF
   ============================================ */

/* Placeholder yang muncul di web */
.web-placeholder {
    color: #999;
    font-style: italic;
    font-size: 12px;
    background-color: #f8f8f8;
    padding: 3px 10px;
    border-radius: 4px;
    border: 1px dashed #ddd;
    display: inline-block;
}

/* Data asli yang hanya muncul saat print */
.print-data {
    display: none;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .web-placeholder {
        display: none !important;
    }
    
    .print-data {
        display: inline !important;
        color: var(--dark-gray) !important;
        font-style: normal !important;
        font-size: inherit !important;
        background: none !important;
        padding: 0 !important;
        border: none !important;
    }
    
    .privacy-notice,
    .web-only {
        display: none !important;
    }
    
    /* ... sisa print styles yang lain ... */
}

    .sensitive-data .print-only {
        display: inline !important;
        color: var(--dark-gray) !important;
        font-style: normal !important;
        font-size: inherit !important;
        background: none !important;
        padding: 0 !important;
        border: none !important;
    }

    /* Pastikan warna background header tetap muncul */
    .header {
        background-color: var(--navy) !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .section-title {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    /* Atur margin halaman */
    @page {
        margin: 1.5cm;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }

    .header-left,
    .header-center,
    .header-right {
        text-align: center;
    }

    .header-right {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        padding-top: 10px;
    }

    .skills-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .skills-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .body-content {
        padding: 15px;
    }

    .header {
        padding: 15px;
    }

    .header-center h1 {
        font-size: 22px;
    }
}


/* ============================================
   STYLE UNTUK LOGO PENDIDIKAN & PERUSAHAAN
   ============================================ */

/* Container Pendidikan dengan Logo */
.education-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    gap: 15px;
    transition: background-color 0.3s;
}

.education-item:hover {
    background-color: #fafafa;
}

.education-item:last-child {
    border-bottom: none;
}

.edu-info {
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 1;
    font-size: 14px;
}

.edu-label {
    font-weight: 600;
    color: var(--navy);
    min-width: 60px;
}

.edu-detail {
    color: var(--dark-gray);
}

/* Link Logo Pendidikan */
.edu-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    background-color: var(--white);
    text-decoration: none;
}

.edu-logo-link:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
    transform: scale(1.1);
}

.edu-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

/* ============================================
   STYLE UNTUK LOGO PERUSAHAAN
   ============================================ */

/* Header Pengalaman dengan Logo */
.experience-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 5px;
}

.experience-title {
    flex: 1;
}

.experience-title h3 {
    font-size: 15px;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 2px;
}

/* Link Logo Perusahaan */
.company-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    background-color: var(--white);
    text-decoration: none;
    margin-top: 2px;
}

.company-logo-link:hover {
    border-color: var(--gold);
    box-shadow: 0 6px 16px rgba(201, 168, 76, 0.35);
    transform: translateY(-3px);
}

.company-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

/* Fallback jika logo gagal dimuat */
.logo-fallback {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* ============================================
   TOOLTIP CUSTOM (Opsional)
   ============================================ */
.edu-logo-link[title]:hover::after,
.company-logo-link[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--navy);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    white-space: nowrap;
    z-index: 100;
    pointer-events: none;
}

/* ============================================
   RESPONSIVE: Logo di Mobile
   ============================================ */
@media (max-width: 768px) {
    .education-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .edu-logo-link {
        align-self: flex-end;
        width: 40px;
        height: 40px;
    }
    
    .experience-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .company-logo-link {
        align-self: flex-end;
        width: 45px;
        height: 45px;
    }
}

/* ============================================
   PRINT: Sembunyikan logo saat print
   (Opsional - hapus jika ingin logo tetap muncul)
   ============================================ */
@media print {
    .edu-logo-link,
    .company-logo-link {
        display: none;
    }
}


/* ============================================
   FOOTER SOSIAL MEDIA
   ============================================ */
.social-footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 20px 30px;
    margin-top: 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-left {
    font-size: 12px;
    opacity: 0.8;
}

.footer-right {
    text-align: right;
}

.footer-tagline {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 10px;
}

/* Container Link Sosial Media */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

/* Link Sosial Media */
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-icon {
    font-size: 14px;
}

.social-text {
    font-size: 10px;
}

/* Warna Khusus per Platform */
.social-link.linkedin:hover {
    background-color: #0077b5;
    border-color: #0077b5;
}

.social-link.github:hover {
    background-color: #333;
    border-color: #333;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
}

.social-link.whatsapp:hover {
    background-color: #25D366;
    border-color: #25D366;
}

.social-link.telegram:hover {
    background-color: #0088cc;
    border-color: #0088cc;
}

.social-link.twitter:hover {
    background-color: #000;
    border-color: #000;
}

.social-link.facebook:hover {
    background-color: #1877f2;
    border-color: #1877f2;
}

}

.social-link.tiktok:hover {
    background-color: #1877f2;
    border-color: #1877f2;
}

/* ============================================
   RESPONSIVE FOOTER
   ============================================ */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-right {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* ============================================
   PRINT: Sembunyikan footer
   ============================================ */
@media print {
    .social-footer {
        display: none;
    }
}



/* ============================================
   LOGO DEEPSEEK MELAYANG (FLOATING)
   ============================================ */
.deepseek-float {
    position: fixed;
    bottom: 90px;  /* Di atas tombol Print */
    right: 30px;
    z-index: 999;
    animation: floatAnimation 3s ease-in-out infinite;
}

/* Animasi melayang halus */
@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.deepseek-link {
    text-decoration: none;
    display: block;
}

.deepseek-logo-container {
    position: relative;
    width: 55px;
    height: 55px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    overflow: visible;
}

.deepseek-logo-container:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 25px rgba(201, 168, 76, 0.5);
    border-color: var(--navy);
}

.deepseek-logo-img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    border-radius: 50%;
}

.deepseek-fallback {
    font-size: 28px;
}

/* Tooltip "Tanya DeepSeek?" */
.deepseek-tooltip {
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--navy);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    font-family: 'Arial', sans-serif;
}

/* Panah kecil di tooltip */
.deepseek-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid var(--navy);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* Munculkan tooltip saat hover */
.deepseek-logo-container:hover .deepseek-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Efek glow saat hover */
.deepseek-logo-container:hover {
    animation: glowPulse 1.5s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(201, 168, 76, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(201, 168, 76, 0.6);
    }
}

/* ============================================
   RESPONSIVE: Logo DeepSeek di Mobile
   ============================================ */
@media (max-width: 768px) {
    .deepseek-float {
        bottom: 80px;
        right: 20px;
    }
    
    .deepseek-logo-container {
        width: 45px;
        height: 45px;
    }
    
    .deepseek-tooltip {
        font-size: 10px;
        right: 55px;
        padding: 6px 12px;
    }
}

/* ============================================
   PRINT: Sembunyikan logo melayang
   ============================================ */
@media print {
    .deepseek-float {
        display: none !important;
    }
}

/* --- STYLING SAMPUL HERO --- */
.hero-cover {
    background: linear-gradient(135deg, #111827 0%, #064e3b 100%); /* Perpaduan warna hitam tech & hijau excel */
    color: #ffffff;
    padding: 80px 24px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-bottom: 5px solid #107c41;
}

.hero-grid {
    max-width: 1100px !important;
    margin: 0 auto !important;
    display: flex !important; /* Kita ubah dari grid menjadi flex agar lebih stabil mendatar */
    flex-direction: row !important;
    gap: 40px !important;
    align-items: center !important;
    box-sizing: border-box !important;
}

/* Memastikan teks kiri mengambil porsi 55% lebar layar */
.hero-content {
    flex: 1.2 !important;
    text-align: left !important;
}

/* Memastikan visual Excel kanan mengambil porsi 45% lebar layar */
.hero-visual {
    flex: 0.8 !important;
    width: 100% !important;
    display: block !important;
}

/* Responsif otomatis jika dibuka lewat layar HP */
@media (max-width: 768px) {
    .hero-grid { 
        flex-direction: column !important; /* Di HP otomatis menumpuk atas-bawah */
        text-align: center !important; 
    }
    .hero-content { text-align: center !important; }
    .hero-visual { display: none !important; } /* Di HP kita sembunyikan kotak excelnya agar hemat layar */
}


/* Sisi Kiri */
.badge-dev {
    color: #34d399;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 3rem;
    margin: 0 0 10px 0;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #a7f3d0;
    margin: 0 0 20px 0;
    font-weight: 500;
}

.identity-tags {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.identity-tags span {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.tag-excel { background-color: #107c41; color: white; }
.tag-admin { background-color: #1f2937; color: #e5e7eb; border: 1px solid #4b5563; }

.hero-desc {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background-color: #107c41;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}
.btn-primary:hover { background-color: #0b512a; }

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}
.btn-secondary:hover { background-color: white; color: #111827; }

/* Sisi Kanan (Visualisasi Data & Code) */
.window-box {
    background-color: #1e293b;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.5);
    border: 1px solid #334155;
    overflow: hidden;
}

.window-header {
    background-color: #0f172a;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.red { background-color: #ef4444; }
.yellow { background-color: #f59e0b; }
.green { background-color: #10b981; }

.window-title {
    color: #94a3b8;
    font-size: 0.85rem;
    font-family: monospace;
    margin-left: auto;
}

.window-body {
    padding: 24px;
    font-family: 'Courier New', Courier, monospace;
}

.code-preview {
    background-color: #0f172a;
    padding: 15px;
    border-radius: 6px;
    color: #f8fafc;
    margin: 0 0 20px 0;
    font-size: 0.95rem;
    border-left: 4px solid #107c41;
}

.c-green { color: #34d399; font-weight: bold; }
.c-blue { color: #60a5fa; }
.c-orange { color: #fb923c; }

/* Simulasi Grafik Excel Bergerak */
.excel-chart-sim {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 100px;
    padding-left: 10px;
}

.bar {
    width: 35px;
    background: linear-gradient(to top, #0b512a, #34d399);
    border-radius: 4px 4px 0 0;
    transition: 1s ease-in-out;
}

.animate-1 { height: 40px; animation: pulse 2s infinite alternate; }
.animate-2 { height: 85px; animation: pulse 2.5s infinite alternate; }
.animate-3 { height: 60px; animation: pulse 1.8s infinite alternate; }

@keyframes pulse {
    0% { transform: scaleY(1); }
    100% { transform: scaleY(1.1); filter: brightness(1.2); }
}

/* Responsif untuk HP */
@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .identity-tags { justify-content: center; }
    .hero-buttons { justify-content: center; }
    .hero-title { font-size: 2.2rem; }
}

/* Sembunyikan Sampul ini saat Dicetak ke PDF agar hemat kertas HRD */
@media print {
    .hero-cover { display: none !important; }
}

