/* ========================================
   Trust Verification Platform - Main Stylesheet
   ======================================== */

:root {
    --primary: #4F46E5;
    --primary-dark: #4338CA;
    --secondary: #8B5CF6;
    --accent: #06B6D4;
    --success: #22C55E;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #3B82F6;
    --dark: #0F172A;
    --dark-2: #1E293B;
    --dark-3: #334155;
    --gray: #64748B;
    --gray-light: #94A3B8;
    --gray-lighter: #CBD5E1;
    --light: #F1F5F9;
    --bg: #F8FAFC;
    --white: #FFFFFF;
    --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: #1E293B;
    line-height: 1.6;
    min-height: 100vh;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #E2E8F0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
}
.brand-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.brand-text { background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-menu { display: flex; align-items: center; gap: 20px; }
.nav-links { display: flex; gap: 5px; }
.nav-link {
    color: var(--gray);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}
.nav-link:hover, .nav-link.active { background: var(--light); color: var(--dark); }
.nav-link.active { color: var(--primary); font-weight: 600; }
.admin-link { color: var(--danger) !important; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 5px; }
.nav-toggle span { width: 24px; height: 2px; background: #333; transition: 0.3s; border-radius: 2px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
    font-family: inherit;
    line-height: 1.2;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--dark); border-color: #D1D5DB; }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-danger { background: var(--danger); color: #fff; border-color: var(--danger); }
.btn-danger:hover { background: #DC2626; }
.btn-success { background: var(--success); color: #fff; border-color: var(--success); }
.btn-success:hover { background: #16A34A; }
.btn-block { width: 100%; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-sm { padding: 6px 12px; font-size: 12px; }
.btn-icon { position: relative; background: none; border: none; cursor: pointer; font-size: 22px; padding: 5px; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 500; font-size: 14px; color: var(--dark-2); }
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="date"],
.form-group input[type="number"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #D1D5DB;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
    background: #fff;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group .error { color: var(--danger); font-size: 12px; margin-top: 4px; display: block; }
.flex-row { display: flex; justify-content: space-between; align-items: center; }
.checkbox-label { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 14px; color: var(--gray); }
.checkbox-label input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--primary); }
.info-box { background: #F0FDF4; border: 1px solid #86EFAC; border-radius: var(--radius-sm); padding: 12px 16px; margin-bottom: 16px; font-size: 14px; color: #15803D; }

/* ===== AUTH ===== */
.auth-page { display: flex; align-items: center; justify-content: center; min-height: calc(100vh - 200px); padding: 40px 0; }
.auth-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 40px; width: 100%; max-width: 450px; }
.auth-header { text-align: center; margin-bottom: 30px; }
.auth-header h1 { font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.auth-header p { color: var(--gray); font-size: 15px; }
.auth-footer { text-align: center; margin-top: 20px; padding-top: 20px; border-top: 1px solid #E2E8F0; }
.auth-footer a { color: var(--primary); text-decoration: none; font-weight: 500; }
.forgot-link { font-size: 13px; color: var(--primary); text-decoration: none; }

/* ===== FLASH MESSAGES ===== */
.flash-message {
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}
.flash-success { background: #F0FDF4; color: #15803D; border-bottom: 1px solid #86EFAC; }
.flash-error { background: #FEF2F2; color: #991B1B; border-bottom: 1px solid #FCA5A5; }
.flash-info { background: #EFF6FF; color: #1D4ED8; border-bottom: 1px solid #93C5FD; }
.flash-close { background: none; border: none; font-size: 18px; cursor: pointer; opacity: 0.6; padding: 0 5px; }
.flash-close:hover { opacity: 1; }

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}
.hero-content { max-width: 700px; margin: 0 auto; }
.hero h1 { font-size: 48px; font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.hero-subtitle { font-size: 20px; color: #94A3B8; margin-bottom: 30px; line-height: 1.6; }
.gradient-text { background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-actions { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.hero-actions .btn-outline { border-color: #475569; color: #E2E8F0; }
.hero-actions .btn-outline:hover { border-color: var(--primary); color: #fff; }

/* ===== STATS ===== */
.stats-section { padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.stat-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}
.stat-card:hover { transform: translateY(-2px); }
.stat-number { font-size: 32px; font-weight: 800; color: var(--primary); }
.stat-label { color: var(--gray); font-size: 14px; margin-top: 4px; }
.stat-icon { font-size: 28px; margin-bottom: 8px; }

/* ===== FEATURES ===== */
.features-section { padding: 60px 0; }
.section-title { text-align: center; font-size: 36px; font-weight: 700; margin-bottom: 40px; color: var(--dark); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.feature-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon { font-size: 40px; margin-bottom: 16px; }
.feature-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.feature-card p { color: var(--gray); font-size: 14px; line-height: 1.7; }

/* ===== CARDS ===== */
.card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 20px; }
.card-header { padding: 20px 24px; border-bottom: 1px solid #E2E8F0; }
.card-header h2, .card-header h3 { margin: 0; font-size: 18px; }
.card-body { padding: 20px 24px; }
.mt-2 { margin-top: 10px; }
.mt-3 { margin-top: 15px; }
.mt-4 { margin-top: 30px; }

/* ===== DASHBOARD ===== */
.dashboard-page { padding: 30px 0; }
.dashboard-header { margin-bottom: 30px; }
.dashboard-header h1 { font-size: 28px; font-weight: 700; }
.trust-status { color: var(--gray); font-size: 16px; margin-top: 4px; }
.dashboard-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ===== PROGRESS BAR ===== */
.usage-bar { margin-bottom: 16px; }
.usage-label { font-size: 13px; color: var(--gray); margin-bottom: 6px; }
.progress-bar { height: 8px; background: #E2E8F0; border-radius: 99px; overflow: hidden; }
.progress { height: 100%; background: linear-gradient(90deg, var(--primary), var(--secondary)); border-radius: 99px; transition: width 0.3s; }

/* ===== BADGES ===== */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.badge-free { background: #F1F5F9; color: #475569; }
.badge-monthly { background: #FEF3C7; color: #92400E; }
.badge-yearly { background: #DBEAFE; color: #1E40AF; }
.badge-lifetime { background: #F0FDF4; color: #166534; }
.badge-active { background: #DCFCE7; color: #166534; }
.badge-pending { background: #FEF9C3; color: #854D0E; }
.badge-banned { background: #FEE2E2; color: #991B1B; }
.badge-used { background: #F1F5F9; color: #64748B; }
.badge-expired { background: #FEE2E2; color: #991B1B; }
.badge-dot { position: absolute; top: -5px; right: -5px; background: var(--danger); color: #fff; font-size: 10px; padding: 2px 5px; border-radius: 99px; min-width: 16px; text-align: center; }

/* ===== MODAL ===== */
.modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; z-index: 2000; }
.modal-content { background: #fff; border-radius: var(--radius); padding: 30px; max-width: 500px; width: 90%; position: relative; }
.modal-close { position: absolute; top: 15px; right: 20px; font-size: 24px; cursor: pointer; color: var(--gray); background: none; border: none; }

/* ===== PROFILE PAGE ===== */
.profile-header-section { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%); color: #fff; padding: 40px 0; }
.profile-header { display: flex; gap: 24px; align-items: flex-start; }
.profile-avatar-lg, .user-avatar-lg {
    width: 80px; height: 80px; border-radius: 20px; background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.profile-logo { width: 80px; height: 80px; border-radius: 20px; object-fit: cover; }
.profile-name { font-size: 28px; font-weight: 700; }
.profile-username { color: var(--gray-light); font-size: 16px; margin-bottom: 8px; }
.profile-meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: 14px; color: var(--gray-light); }
.verified-badge { background: var(--success); color: #fff; padding: 2px 8px; border-radius: 99px; font-size: 12px; }
.profile-bio { margin-top: 16px; padding: 16px; background: rgba(255,255,255,0.08); border-radius: var(--radius-sm); font-size: 15px; line-height: 1.7; }
.profile-actions { margin-left: auto; display: flex; gap: 10px; flex-shrink: 0; }
.profile-actions .btn-outline { border-color: #475569; color: #E2E8F0; }
.social-links { display: flex; gap: 10px; padding: 20px 0; flex-wrap: wrap; }
.social-link { padding: 8px 16px; border-radius: var(--radius-sm); text-decoration: none; font-size: 14px; font-weight: 500; transition: all 0.2s; }
.social-link.telegram { background: #E8F5E9; color: #2E7D32; }
.social-link.messenger { background: #E3F2FD; color: #1565C0; }
.social-link.whatsapp { background: #E8F5E9; color: #2E7D32; }
.social-link.custom { background: var(--light); color: var(--dark); }
.section { padding: 30px 0; }
.section h2 { font-size: 22px; font-weight: 600; margin-bottom: 20px; }

/* ===== VOUCHES ===== */
.vouches-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.vouch-card { background: #fff; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.vouch-author { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.vouch-avatar { width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg, #e2e8f0, #cbd5e1); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }
.vouch-name { font-weight: 600; font-size: 15px; }
.vouch-comment { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 8px; font-style: italic; }
.vouch-time { font-size: 12px; color: var(--gray-light); }

/* ===== POSTS ===== */
.posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 20px; }
.post-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.post-photo { width: 100%; max-height: 300px; object-fit: cover; }
.post-content { padding: 16px; font-size: 14px; line-height: 1.7; }
.post-footer { padding: 12px 16px; border-top: 1px solid #E2E8F0; display: flex; justify-content: space-between; align-items: center; }
.post-time { font-size: 12px; color: var(--gray-light); }
.post-reactions { display: flex; gap: 8px; }
.reaction-btn { background: none; border: 1px solid #E2E8F0; border-radius: 99px; padding: 4px 12px; font-size: 13px; cursor: pointer; transition: all 0.2s; }
.reaction-btn:hover { background: var(--light); border-color: var(--primary); }

/* ===== PRICING ===== */
.pricing-page { padding: 60px 0; }
.pricing-header { text-align: center; margin-bottom: 50px; }
.pricing-header h1 { font-size: 36px; font-weight: 700; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1000px; margin: 0 auto; }
.pricing-card { background: #fff; border-radius: var(--radius); padding: 40px 30px; text-align: center; box-shadow: var(--shadow); position: relative; transition: all 0.3s; border: 2px solid transparent; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.active { border-color: var(--primary); }
.pricing-badge { font-size: 40px; margin-bottom: 16px; }
.plan-name { font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.plan-price { margin-bottom: 24px; }
.plan-price .currency { font-size: 20px; vertical-align: top; }
.plan-price .amount { font-size: 48px; font-weight: 800; color: var(--dark); }
.plan-price .period { font-size: 14px; color: var(--gray); }
.plan-features { list-style: none; text-align: left; margin-bottom: 24px; }
.plan-features li { padding: 10px 0; border-bottom: 1px solid #E2E8F0; font-size: 14px; }
.plan-features li.included { color: var(--dark); }
.plan-features li.excluded { color: var(--gray-light); }
.current-badge { background: var(--primary); color: #fff; padding: 8px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; }
.plan-desc { margin-top: 16px; font-size: 13px; color: var(--gray); line-height: 1.6; }
.pricing-note { text-align: center; margin-top: 40px; color: var(--gray); font-size: 14px; line-height: 2; }

/* ===== REFERRAL ===== */
.referral-link { display: flex; gap: 8px; margin: 10px 0; }
.referral-link input { flex: 1; padding: 8px 12px; border: 1px solid #D1D5DB; border-radius: var(--radius-sm); font-size: 13px; background: var(--light); }
.ref-stats { display: flex; gap: 20px; font-size: 13px; color: var(--gray); }
.quick-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* ===== ACTIVITY ===== */
.activity-item { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid #E2E8F0; font-size: 14px; }
.activity-item:last-child { border-bottom: none; }
.activity-icon { font-size: 18px; }
.time { margin-left: auto; font-size: 12px; color: var(--gray-light); }

/* ===== LEADERBOARD ===== */
.leaderboard-section { padding: 60px 0; }
.leaderboard-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.leaderboard-card { display: flex; align-items: center; gap: 16px; background: #fff; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); text-decoration: none; color: inherit; transition: all 0.2s; }
.leaderboard-card:hover { transform: translateX(4px); box-shadow: var(--shadow-lg); }
.rank { font-size: 20px; font-weight: 800; color: var(--primary); width: 30px; }
.user-avatar { width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(135deg, #e2e8f0, #cbd5e1); display: flex; align-items: center; justify-content: center; font-weight: 700; }
.user-info { flex: 1; }
.user-name { font-weight: 600; font-size: 15px; }
.user-username { font-size: 12px; color: var(--gray); }
.user-meta { font-size: 12px; color: var(--gray-light); }
.trust-badge { font-size: 13px; font-weight: 600; }
.vouch-count { font-size: 13px; color: var(--gray); }

/* ===== SEARCH ===== */
.search-page { padding: 40px 0; }
.search-form { margin: 30px 0; }
.search-input-group { display: flex; gap: 10px; margin-bottom: 16px; }
.search-input-group input { flex: 1; padding: 14px 20px; border: 2px solid #D1D5DB; border-radius: var(--radius); font-size: 16px; }
.search-input-group input:focus { border-color: var(--primary); outline: none; }
.search-filters { display: flex; gap: 20px; }
.radio-label { cursor: pointer; font-size: 14px; display: flex; align-items: center; gap: 6px; }
.users-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.user-card { display: flex; align-items: center; gap: 16px; background: #fff; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); text-decoration: none; color: inherit; }
.user-card:hover { box-shadow: var(--shadow-lg); }
.no-results { text-align: center; color: var(--gray); padding: 40px; font-size: 16px; }

/* ===== NOTIFICATIONS ===== */
.notifications-list { max-width: 700px; margin: 0 auto; }
.notification-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px; background: #fff; border-radius: var(--radius); margin-bottom: 8px; text-decoration: none; color: inherit; box-shadow: var(--shadow); transition: all 0.2s; }
.notification-item:hover { box-shadow: var(--shadow-lg); }
.notification-item.unread { border-left: 3px solid var(--primary); }
.notification-icon { font-size: 24px; }
.notification-content { flex: 1; }
.notification-title { font-weight: 600; font-size: 14px; }
.notification-message { font-size: 13px; color: var(--gray); margin-top: 4px; }
.notification-time { font-size: 12px; color: var(--gray-light); margin-top: 4px; }
.unread-dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; }

/* ===== USER DROPDOWN ===== */
.user-dropdown { position: relative; }
.user-dropdown-btn { display: flex; align-items: center; gap: 8px; background: none; border: 1px solid #E2E8F0; border-radius: 99px; padding: 6px 12px 6px 6px; cursor: pointer; font-size: 14px; font-family: inherit; transition: all 0.2s; }
.user-dropdown-btn:hover { border-color: var(--primary); }
.user-avatar { width: 30px; height: 30px; border-radius: 8px; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: #fff; }
.user-name { font-weight: 500; }
.dropdown-arrow { font-size: 10px; color: var(--gray); }
.dropdown-menu { position: absolute; top: 100%; right: 0; margin-top: 8px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); min-width: 220px; display: none; z-index: 100; overflow: hidden; }
.dropdown-menu.show { display: block; }
.dropdown-item { display: block; padding: 10px 16px; text-decoration: none; color: var(--dark); font-size: 14px; transition: background 0.2s; }
.dropdown-item:hover { background: var(--light); }
.logout-item { color: var(--danger); }
.dropdown-divider { border: none; border-top: 1px solid #E2E8F0; margin: 4px 0; }

/* ===== CTA ===== */
.cta-section { padding: 60px 0; }
.cta-card { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%); border-radius: var(--radius); padding: 60px; text-align: center; color: #fff; }
.cta-card h2 { font-size: 32px; margin-bottom: 12px; }
.cta-card p { font-size: 18px; color: var(--gray-light); margin-bottom: 24px; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: #94A3B8; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .brand-text { font-size: 20px; }
.footer-desc { margin-top: 12px; font-size: 14px; line-height: 1.7; }
.footer-links h4 { color: #E2E8F0; font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.footer-links a { display: block; color: #94A3B8; text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: color 0.2s; }
.footer-links a:hover { color: #E2E8F0; }
.footer-bottom { border-top: 1px solid #1E293B; padding-top: 20px; text-align: center; font-size: 13px; }

/* ===== PAGINATION ===== */
.pagination { display: flex; justify-content: center; gap: 4px; padding: 20px 0; }
.pagination a, .pagination span { padding: 8px 14px; border-radius: var(--radius-sm); text-decoration: none; font-size: 14px; transition: all 0.2s; }
.pagination a { background: #fff; border: 1px solid #D1D5DB; color: var(--dark); }
.pagination a:hover { border-color: var(--primary); color: var(--primary); }
.pagination .active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid #E2E8F0; padding: 16px; flex-direction: column; gap: 10px; }
    .nav-menu.show { display: flex; }
    .nav-links { flex-direction: column; }
    .nav-actions { flex-direction: column; width: 100%; }
    .hero h1 { font-size: 32px; }
    .dashboard-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .profile-header { flex-direction: column; align-items: center; text-align: center; }
    .profile-actions { margin: 20px 0 0; }
    .admin-sidebar { width: 200px; }
    .admin-main { margin-left: 200px; }
}

@media (max-width: 480px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}
