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

body {
    font-family: 'Inter', sans-serif;
    background: #fdfdfd; /* Putih bersih modern */
    color: #1a1a2e;
    line-height: 1.6;
    overflow-x: hidden;
    /* Efek Smooth Entrance */
    animation: entrance 1s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes entrance {
    from { 
        opacity: 0; 
        filter: blur(10px); 
        transform: scale(0.98); 
    }
    to { 
        opacity: 1; 
        filter: blur(0); 
        transform: scale(1); 
    }
}


/* Background Grid Halus */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: -1;
}

/* Navbar Minimalis */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo { font-weight: 700; font-size: 1.2rem; }
.logo span { color: #888; }
.nav-links a { text-decoration: none; color: #333; margin-left: 20px; font-size: 0.9rem; font-weight: 500; }

/* Header */
header {
    padding: 160px 5% 80px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: #f1f5f9;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

h1 { font-size: 3rem; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1.5px; }
.subtitle { font-size: 1.2rem; color: #64748b; font-weight: 300; }

.section { padding: 100px 5% 60px; max-width: 1100px; margin: 0 auto; }
.section-title { font-size: 1.4rem; margin-bottom: 40px; text-align: center; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #64748b; }

/* WHO I AM STYLE - ELEGAN & KURUS */
/* Update Card agar Smooth saat Scroll */
.about-card, .contact-card, .card {
    background: #ffffff; /* Ganti dari rgba ke solid white biar enteng */
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(0,0,0,0.05);
    /* HAPUS backdrop-filter: blur() karena ini penyebab utama lag di Android */
    
    /* Tambahkan ini untuk maksa GPU render lebih mulus */
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Biar teks bio gak berat pas di-scroll */
.bio-text, .exp-list li {
    will-change: auto;
    transform: translateZ(0); /* Trigger hardware acceleration */
}

/* Di Mobile, kecilkan padding biar gak berat nge-render area luas */
@media (max-width: 768px) {
    .about-card {
        padding: 30px 20px;
        margin: 0 10px;
    }
}

.bio-text {
    font-size: 1.3rem;
    line-height: 2;
    color: #444;
    font-weight: 300; /* INI YANG BIKIN EFEK KURUS */
    letter-spacing: 0.3px;
    margin-bottom: 30px;
}

.bio-text b { font-weight: 600; color: #1a1a2e; }

/* Highlight Poin Penting */
.highlight {
    font-weight: 800 !important; /* TEBAL BANGET */
    font-style: italic;
    color: #000;
    display: inline;
}

/* Grid Sertifikat */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    transition: 0.3s ease;
}

.card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.04); }

.cert-img-container {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #f1f5f9;
}

.cert-img-container img { width: 100%; display: block; object-fit: cover; }

.tag {
    display: inline-block;
    padding: 4px 10px;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #64748b;
}

/* Bagian Kontak */
.contact-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 8px; color: #64748b; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: #1a1a2e;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover { background: #000; transform: scale(1.01); }

footer { padding: 60px; text-align: center; color: #94a3b8; font-size: 0.8rem; }

/* Responsive Mobile */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    .about-card { padding: 30px; }
    .bio-text { font-size: 1.1rem; }
}

/* MODERN SOCIAL LINKS */
.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
    padding: 20px;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-box {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05); /* Glass effect */
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 1.5rem;
    color: #444;
    transition: all 0.3s ease;
}

.social-icon span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
    letter-spacing: 0.5px;
}

/* Hover Effects */
.social-icon:hover .icon-box {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.social-icon:hover span {
    color: #000;
}

/* Brand Colors on Hover */
.social-icon.wa:hover .icon-box {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

.social-icon.ig:hover .icon-box {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    border-color: transparent;
}

.social-icon.tt:hover .icon-box {
    background: #000;
    color: #fff;
    border-color: #000;
    box-shadow: 3px 3px 0 #ff0050, -3px -3px 0 #00f2ea; /* TikTok Glitch effect */
}


/* SPOTIFY STYLE UI */
.spotify-card {
    background: #121212;
    color: #fff;
    max-width: 450px;
    margin: 0 auto;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    font-family: 'Inter', sans-serif;
}

.spotify-header { display: flex; gap: 20px; align-items: center; margin-bottom: 25px; }

.album-art {
    width: 140px; height: 140px;
    background: #282828;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    position: relative; box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.art-content { font-weight: 800; font-size: 1.5rem; color: #fff; letter-spacing: -1px; }

.spotify-logo-small {
    position: absolute; top: 10px; right: 10px;
    color: #1DB954; font-size: 1.2rem;
}

.spotify-info .playlist-label { font-size: 0.7rem; text-transform: uppercase; font-weight: 700; color: #b3b3b3; }
.spotify-info h3 { font-size: 1.4rem; margin: 5px 0; font-weight: 800; }
.spotify-info p { font-size: 0.8rem; color: #b3b3b3; }

.spotify-controls { display: flex; align-items: center; gap: 15px; margin-top: 15px; }
.s-btn { background: none; border: none; color: #b3b3b3; font-size: 1rem; cursor: pointer; }

/* CONTAINER TOMBOL UTAMA */
.s-btn-main {
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    padding: 0; /* Pastiin gak ada padding bawaan yang bikin geser */
}

/* UKURAN ICON BIAR PAS */
.s-btn-main i {
    font-size: 1.2rem;
    display: block; /* Mencegah inline alignment yang aneh */
}

/* FIX POSISI PLAY (SEGITIGA) */
.s-btn-main i.fa-play {
    transform: translateX(2px); /* Geser dikit ke kanan khusus icon segitiga */
}

/* FIX POSISI PAUSE (GARIS DUA) */
.s-btn-main i.fa-pause {
    transform: translateX(0); /* Netral untuk icon pause */
}


.s-btn:hover { color: #fff; }
.s-btn.heart:hover { color: #1DB954; }

.spotify-list { list-style: none; margin-top: 20px; }
.s-track {
    display: flex; align-items: center; padding: 10px;
    border-radius: 5px; cursor: pointer; transition: 0.2s;
}
.s-track:hover { background: rgba(255,255,255,0.1); }
.s-track.active .s-name { color: #1DB954; }

.s-num { width: 30px; color: #b3b3b3; font-size: 0.9rem; }
.s-detail { display: flex; flex-direction: column; }
.s-name { font-size: 0.9rem; font-weight: 500; }
.s-artist { font-size: 0.8rem; color: #b3b3b3; }

.spotify-footer {
    margin-top: 20px; padding-top: 15px; border-top: 1px solid #282828;
    font-size: 0.75rem; color: #1DB954; font-weight: 700;
}


/* STYLE KHUSUS EXPERIENCE */
.exp-item {
    text-align: left;
}

.exp-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.exp-header p {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
    margin-bottom: 25px;
}

.exp-list {
    list-style: none;
}

.exp-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    font-weight: 300;
}

.exp-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a1a2e;
    font-weight: bold;
}

.exp-list li b {
    font-weight: 600;
    color: #1a1a2e;
}

/* Feedback saat tombol dipencet */
.s-btn-main:active { transform: scale(0.9); }
.s-btn:active { opacity: 0.5; }
.s-track.active .s-num { color: #1DB954; font-weight: bold; }

/* SKELETON UI - PRECISION MATCH */
#skeleton-loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: #ffffff;
    z-index: 10000;
    padding: 80px 25px; /* Sesuaikan padding atas biar sejajar header */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center biar pas sama teks lu yang di tengah */
    gap: 20px;
    transition: opacity 0.4s ease;
}

/* Warna Abu-abu Flat */
.s-header-group, .s-circle, .s-title, .s-subtitle, .s-hero, .s-line {
    background: #f1f5f9 !important;
    border-radius: 8px;
}

/* Kotak untuk Badge (Ethical Hacker...) */
.s-badge { width: 220px; height: 24px; background: #f1f5f9; border-radius: 20px; margin-bottom: 10px; }

/* Kotak untuk H1 (Nama Lu) - Dibuat tebal & lebar */
.s-title { width: 85%; height: 45px; margin-bottom: 5px; }

/* Kotak untuk H2 (Offensive Security...) - Lebih tipis dari H1 */
.s-subtitle { width: 90%; height: 65px; }

/* Kotak Hero/Card Bawah */
.s-hero { width: 100%; height: 200px; margin-top: 40px; }

/* Baris Teks Bio */
.s-line { width: 100%; height: 14px; margin-top: 5px; }

.fade-out { opacity: 0; pointer-events: none; }

/* --- FLOATING NAVBAR FIX --- */
.floating-nav-container {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: 90%;
    max-width: 380px; /* Biar pas di HP */
}



/* Biar gak tabrakan sama konten paling bawah */
body {
    padding-bottom: 100px;
}

/* PAKSA SEMUA ELEMEN PAKE VARIABEL */
body {
    background-color: var(--bg-color) !important;
    color: var(--text-color) !important;
}

/* Perbaiki Teks Deskripsi (WHO I AM & CAREER) */
p, .about-card p, .career-detail p {
    color: var(--text-secondary) !important;
}

/* Perbaiki Heading agar Tetap Putih Terang di Dark Mode */
h1, h2, h3, .logo, .s-name {
    color: var(--text-color) !important;
}


/* Terapkan variabel ke Body */
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.4s ease, color 0.4s ease; /* Transisi smooth */
}

/* STYLE TOMBOL LOGO */
.theme-btn {
    position: fixed; /* Tetap di posisi meski scroll */
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.theme-btn:hover {
    transform: scale(1.1);
}

/* Pastikan card lu pake variabel warna juga biar ikut berubah */
/* Update semua card biar gerakannya halus pas disentuh */
/* Update di bagian transisi card */
.about-card, .spotify-card, .contact-card, .career-item {
    /* Jangan pake 'all', pake spesifik property-nya */
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), 
                opacity 0.6s ease, 
                background-color 0.4s ease !important;
}

/* Biar gak distorsi pas dipencet/scroll, tambahin ini */
.spotify-card {
    backface-visibility: hidden;
    transform-style: preserve-3d;
    will-change: transform;
}

.about-card:hover, .spotify-card:hover, .contact-card:hover {
    transform: translateY(-12px) scale(1.02) !important;
}

/* --- FIX FINAL SPOTIFY & NAV --- */

/* Maksa Teks di Kartu Spotify Putih Terang */
#track-title, .s-name {
    color: #ffffff !important;
    font-weight: 700 !important;
}

#track-artist, .s-artist {
    color: rgba(255, 255, 255, 0.8) !important;
}

.playlist-label, .s-subtitle {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* --- NEW FLOATING PILL NAV --- */
.floating-nav {
    position: fixed;
    bottom: 20px; /* Jarak dari bawah */
    left: 50%;
    transform: translateX(-50%);
    
    /* Ukuran lebih compact, gak menuhin layar */
    width: auto;
    min-width: 280px; 
    padding: 8px 20px !important;
    
    /* Efek Glassmorphism Mewah */
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    
    /* Border melengkung sempurna (Pill) */
    border-radius: 50px !important; 
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
    
    display: flex !important;
    flex-direction: row !important;
    gap: 15px; /* Jarak antar menu */
    z-index: 10000;
}

/* --- EFEK NAVIGASI KENYAL & EMPUK --- */
.nav-item {
    text-decoration: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px 12px;
    border-radius: 25px;
    
    /* Transition pake kurva Elastic (Back Out) biar kenyal */
    transition: all 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6) !important;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

/* Pas jempol lu neken (Holding) */
.nav-item:active {
    transform: scale(0.85); /* Efek mendem/empuk */
    transition: all 0.1s ease !important; /* Pas diteken harus cepet */
}

.nav-item i {
    font-size: 1.2rem !important;
    color: #888;
    transition: transform 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.nav-item span {
    font-size: 9px !important;
    font-weight: 700;
    color: #888;
    margin-top: 2px;
    transition: color 0.3s ease;
}

/* --- STATE AKTIF (KENYAL) --- */
.nav-item.active {
    background: rgba(0, 0, 0, 0.04);
}

.nav-item.active i {
    color: #000 !important;
    /* Ikon loncat dikit pas aktif */
    transform: translateY(-5px) scale(1.1);
}

.nav-item.active span {
    color: #000 !important;
}

/* Tambahin dikit animasi floating halus di container biar idup */
.floating-nav {
    animation: floatingGently 4s ease-in-out infinite;
}

@keyframes floatingGently {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}


html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar Minimalis (Buat Laptop) */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

/* --- SISTEM REVEAL BARU --- */
.reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
    filter: blur(5px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Animasi Floating buat Spotify biar lebih "hidup" */
.spotify-card {
    animation: floatingCard 5s ease-in-out infinite;
}

@keyframes floatingCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.cert-img-container {
    width: 100%;
    border-radius: 20px;
    overflow: visible; /* PENTING */
    margin-bottom: 25px;
    padding: 12px; /* kasih ruang buat shadow */
}

.cert-img-container img {
    width: 100%;
    display: block;
    border-radius: 18px;

    transform: translateZ(0);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.12),
        0 5px 15px rgba(0,0,0,0.08);

    transition:
        transform 0.4s cubic-bezier(0.22,1,0.36,1),
        box-shadow 0.4s ease;
}

/* Efek melayang */
.cert-img-container img:hover {
    transform: translateY(-10px);

    box-shadow:
        0 30px 60px rgba(0,0,0,0.18),
        0 10px 25px rgba(0,0,0,0.12);
}

.card {
    overflow: visible !important;
}

/* --- APPLE PREMIUM CERAMIC KEYBOARD --- */
.kb-wrapper {
    padding: 100px 0;
    perspective: 2500px;
    display: flex;
    justify-content: center;
}

.kb-container {
    /* Angle Isometric Apple Style */
    transform: rotateX(28deg) rotateY(-10deg) rotateZ(2deg);
    transform-style: preserve-3d;
    /* TAMBAHKAN INI: Memastikan container tidak menutupi area klik */
    pointer-events: none; 
}

.kb-base {
    background: #f5f5f7; /* Apple Off-White */
    padding: 30px;
    border-radius: 40px;
    /* Shadow Casing yang "Mahal" & Tersebar Luas */
    box-shadow: 
        -1px 1px 0px #ffffff,
        -12px 12px 2px #d2d2d7,
        -20px 40px 80px rgba(0,0,0,0.06);
    border: 1px solid rgba(255,255,255,0.8);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kb-row {
    display: flex;
    gap: 18px;
}

.key {
    position: relative;
    width: 72px;
    height: 72px;
    /* Gradasi putih keramik yang soft */
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    /* --- FIX DIMENSI TINGGI & SHADOW --- */
    box-shadow: 
        0 1px 1px rgba(255,255,255,0.9), /* Edge highlight atas */
        0 6px 0 #d2d2d7,                /* Ketebalan material samping */
        0 12px 0 #bcbcbc,               /* Kedalaman bayangan material */
        0 15px 25px rgba(0,0,0,0.08),   /* Bayangan lembut ke casing */
        inset 0 -3px 4px rgba(0,0,0,0.02); /* Lekukan permukaan atas */
        
    /* --- ANTI BIRU-BIRU --- */
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none;
    user-select: none;
    outline: none;
    
  pointer-events: auto !important;
    z-index: 10;
    
    /* Pastikan transisi tidak mengganggu registrasi klik */
    transition: transform 0.1s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.1s ease;
}

/* LOGO TOOLS: Unified & Muted (Gak Norak) */
.key i { 
    font-size: 1.6rem; 
    color: #424245; /* Apple Graphite */
    transition: all 0.3s ease;
    opacity: 0.8;
}

/* Warna Logo tipis-tipis aja biar tetep elegan */
.tool-nmap i { color: #0071e3; }     /* Apple Blue */
.tool-hydra i { color: #ff3b30; }    /* Apple Red */
.tool-msf i { color: #5e5e66; }
.tool-burp i { color: #ff9500; }     /* Apple Orange */

/* Tombol Utama (Stealth Premium) */
.hunt-key {
    width: 252px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.02);
}
.hunt-key span {
    color: #1d1d1f;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 10px;
}

/* --- EFEK KLIK: "THE MAGIC BOUNCE" --- */
.key:active {
    transform: translateY(8px) scale(0.96) !important;
    box-shadow: 
        0 2px 0 #bcbcbc, 
        0 4px 10px rgba(0,0,0,0.05),
        inset 0 3px 6px rgba(0,0,0,0.03) !important;
}

.key:active i {
    opacity: 1;
    transform: scale(0.9);
}

.kb-header {
    text-align: center;
    margin-bottom: 40px;
    transform: translateZ(20px); /* Biar efek 3D-nya nyambung sama keyboard */
}

.kb-badge {
    background: #0071e3;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 10px;
}

.kb-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1d1d1f;
    margin: 0;
}

.kb-title span {
    background: linear-gradient(135deg, #0071e3, #42a5f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.kb-subtitle {
    font-size: 0.9rem;
    color: #86868b;
    margin-top: 5px;
    font-weight: 400;
}
