@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

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

body {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    color: #1A1A2E;
    background: #F8F9FA;
}

/* ============ HEADER PREMIUM ============ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 20, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 0 40px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

header h1 a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white !important;
}

header nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

header nav a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

header nav a:hover {
    color: white;
    background: rgba(255,255,255,0.08);
}

header nav a.btn-nav-primary {
    background: #FF6B35;
    color: white !important;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(255,107,53,0.3);
}

header nav a.btn-nav-primary:hover {
    background: #E55A25;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255,107,53,0.4);
}

header.scrolled {
    background: rgba(10, 10, 20, 0.99);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
    font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
}

/* ============ BUTTONS GLOBAL ============ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: #FF6B35;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 4px 12px rgba(255,107,53,0.3);
}

.btn-primary:hover {
    background: #E55A25;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,107,53,0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: white;
    color: #1A1A2E;
    border: 2px solid #E8E8E8;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
}

.btn-secondary:hover {
    border-color: #FF6B35;
    color: #FF6B35;
    transform: translateY(-2px);
}

/* ============ CARDS GLOBAL ============ */
.card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

/* ============ FORM INPUTS GLOBAL ============ */
input, select, textarea {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

input::placeholder, textarea::placeholder {
    color: #ADB5BD;
}

/* ============ BADGES ============ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.badge-success { background: rgba(0,212,170,0.1); color: #00A884; }
.badge-warning { background: rgba(255,193,7,0.1); color: #D4A017; }
.badge-info { background: rgba(0,123,255,0.1); color: #0066CC; }
.badge-danger { background: rgba(255,59,48,0.1); color: #CC2E26; }

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #F8F9FA; }
::-webkit-scrollbar-thumb { background: #DEE2E6; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #ADB5BD; }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    header {
        padding: 0 20px;
        height: 64px;
    }

    header h1 {
        font-size: 18px;
    }

    header nav a:not(:last-child):not(:nth-last-child(2)) {
        display: none;
    }
}