/* ===== VARIABLES ===== */
:root {
  --primary: #003d7a;
  --primary-light: #0056b0;
  --primary-dark: #002554;
  --secondary: #e8a000;
  --secondary-light: #f5b800;
  --accent: #00b4d8;
  --success: #27ae60;
  --danger: #e74c3c;
  --warning: #f39c12;
  --info: #3498db;
  --text-dark: #1a1a2e;
  --text-medium: #4a4a6a;
  --text-light: #7a7a9a;
  --bg-white: #ffffff;
  --bg-light: #f8f9fc;
  --bg-section: #eef2ff;
  --border: #e0e4f0;
  --shadow-sm: 0 2px 8px rgba(0,61,122,0.08);
  --shadow-md: 0 4px 20px rgba(0,61,122,0.12);
  --shadow-lg: 0 8px 40px rgba(0,61,122,0.16);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}
/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text-dark); background: var(--bg-white); line-height: 1.6; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-light); }
ul { list-style: none; }
img { max-width: 100%; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }
/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-title { font-family: 'Poppins', sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 12px; text-align: center; }
.section-subtitle { font-size: 1.05rem; color: var(--text-medium); text-align: center; margin-bottom: 50px; max-width: 600px; margin-left: auto; margin-right: auto; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 8px; } .gap-2 { gap: 16px; } .gap-3 { gap: 24px; }
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border); transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo { height: 44px; width: auto; object-fit: contain; }
.nav-title { display: flex; flex-direction: column; line-height: 1.2; }
.nav-title-main { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--primary-dark); }
.nav-title-sub { font-size: 0.7rem; color: var(--text-light); }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link { padding: 8px 14px; border-radius: var(--radius-sm); font-weight: 500; font-size: 0.9rem; color: var(--text-medium); transition: var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--bg-section); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-auth { display: flex; gap: 8px; }
.nav-user { position: relative; }
.user-menu-trigger { display: flex; align-items: center; gap: 8px; cursor: pointer; padding: 6px 12px; border-radius: var(--radius-sm); transition: var(--transition); }
.user-menu-trigger:hover { background: var(--bg-light); }
.user-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 0.9rem; }
.user-dropdown { position: absolute; top: calc(100% + 8px); right: 0; background: white; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 8px; min-width: 180px; z-index: 100; }
.user-dropdown a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: var(--radius-sm); color: var(--text-medium); font-size: 0.9rem; }
.user-dropdown a:hover { background: var(--bg-light); color: var(--primary); }
.user-dropdown hr { border: none; border-top: 1px solid var(--border); margin: 6px 0; }
.nav-toggle { display: none; background: none; border: 1px solid var(--border); padding: 8px 10px; border-radius: var(--radius-sm); font-size: 1.1rem; color: var(--text-medium); }
/* ===== HERO ===== */
.hero {
  min-height: 100vh; padding-top: 70px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute; bottom: -30%; left: -10%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,160,0,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.3); color: white; padding: 8px 18px; border-radius: 100px; font-size: 0.85rem; font-weight: 500; margin-bottom: 24px; }
.hero h1 { font-family: 'Poppins', sans-serif; font-size: 3.2rem; font-weight: 800; color: white; line-height: 1.2; margin-bottom: 20px; }
.hero h1 span { color: var(--secondary-light); }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.85); margin-bottom: 36px; max-width: 550px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 60px; }
.hero-stat { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius); padding: 20px; text-align: center; }
.hero-stat-number { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 700; color: var(--secondary-light); }
.hero-stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-top: 4px; }
.hero-image { display: flex; justify-content: center; align-items: center; }
.hero-logo-big { width: 300px; filter: drop-shadow(0 20px 60px rgba(0,0,0,0.3)) brightness(1.1); animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0px); } 50% { transform: translateY(-20px); } }
/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.95rem; border: 2px solid transparent; transition: var(--transition); white-space: nowrap; }
.btn-primary { background: var(--primary); color: white; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); color: white; }
.btn-secondary { background: var(--secondary); color: white; border-color: var(--secondary); }
.btn-secondary:hover { background: var(--secondary-light); border-color: var(--secondary-light); color: white; }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-outline-white { background: transparent; color: white; border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: white; color: var(--primary); }
.btn-white { background: white; color: var(--primary); border-color: white; }
.btn-white:hover { background: var(--bg-light); }
.btn-success { background: var(--success); color: white; border-color: var(--success); }
.btn-danger { background: var(--danger); color: white; border-color: var(--danger); }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }
/* ===== CARDS ===== */
.card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); transition: var(--transition); }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.card-title { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1.1rem; color: var(--text-dark); }
.card-body { color: var(--text-medium); }
.card-footer { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
/* Skema Card */
.skema-card { border-top: 4px solid var(--primary); }
.skema-badge { display: inline-flex; padding: 4px 12px; border-radius: 100px; font-size: 0.8rem; font-weight: 600; margin-bottom: 12px; }
.badge-level { background: rgba(0,61,122,0.1); color: var(--primary); }
.badge-bidang { background: rgba(232,160,0,0.1); color: #8a6000; }
.badge-success { background: rgba(39,174,96,0.1); color: var(--success); }
.badge-warning { background: rgba(243,156,18,0.1); color: var(--warning); }
.badge-danger { background: rgba(231,76,60,0.1); color: var(--danger); }
.badge-info { background: rgba(52,152,219,0.1); color: var(--info); }
.skema-price { font-size: 1.3rem; font-weight: 700; color: var(--primary); }
.skema-desc { font-size: 0.9rem; color: var(--text-medium); margin: 8px 0 16px; line-height: 1.5; }
/* Stat Card */
.stat-card { text-align: center; padding: 28px 20px; }
.stat-icon { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 16px; }
.stat-icon-blue { background: rgba(0,61,122,0.1); color: var(--primary); }
.stat-icon-gold { background: rgba(232,160,0,0.1); color: var(--secondary); }
.stat-icon-green { background: rgba(39,174,96,0.1); color: var(--success); }
.stat-icon-red { background: rgba(231,76,60,0.1); color: var(--danger); }
.stat-number { font-family: 'Poppins', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--primary-dark); }
.stat-label { font-size: 0.9rem; color: var(--text-medium); margin-top: 4px; }
/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 500; font-size: 0.9rem; color: var(--text-dark); margin-bottom: 8px; }
.form-label.required::after { content: ' *'; color: var(--danger); }
.form-control {
  width: 100%; padding: 12px 16px; border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.95rem; color: var(--text-dark); background: white; transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,61,122,0.1); }
.form-control::placeholder { color: var(--text-light); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 40px; }
.form-error { font-size: 0.82rem; color: var(--danger); margin-top: 4px; }
.form-hint { font-size: 0.82rem; color: var(--text-light); margin-top: 4px; }
.form-check { display: flex; align-items: center; gap: 8px; }
.form-check input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--primary); }
.search-box { position: relative; }
.search-box input { padding-left: 44px; }
.search-box i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-light); }
/* ===== TABLE ===== */
.table-responsive { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; }
thead { background: var(--bg-section); }
th { padding: 14px 16px; text-align: left; font-weight: 600; font-size: 0.85rem; color: var(--text-medium); white-space: nowrap; }
td { padding: 14px 16px; font-size: 0.9rem; color: var(--text-dark); border-top: 1px solid var(--border); }
tr:hover td { background: var(--bg-light); }
/* ===== FEATURES / PROCESS ===== */
.feature-icon { width: 64px; height: 64px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 20px; }
.feature-icon-blue { background: rgba(0,61,122,0.1); color: var(--primary); }
.feature-icon-gold { background: rgba(232,160,0,0.1); color: var(--secondary); }
.feature-icon-green { background: rgba(39,174,96,0.1); color: var(--success); }
.feature-icon-accent { background: rgba(0,180,216,0.1); color: var(--accent); }
.process-steps { display: flex; gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 30px; left: 30px; right: 30px; height: 2px; background: var(--border); z-index: 0; }
.process-step { flex: 1; text-align: center; position: relative; z-index: 1; }
.step-num { width: 60px; height: 60px; border-radius: 50%; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.2rem; margin: 0 auto 16px; border: 4px solid white; box-shadow: var(--shadow-sm); }
.step-title { font-weight: 600; font-size: 0.95rem; color: var(--text-dark); margin-bottom: 8px; }
.step-desc { font-size: 0.85rem; color: var(--text-medium); }
/* ===== TABS ===== */
.tabs { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 24px; }
.tab-btn { padding: 12px 20px; font-weight: 500; font-size: 0.9rem; color: var(--text-medium); border: none; background: none; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: var(--transition); }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); background: none; }
.tab-btn:hover { color: var(--primary); }
/* ===== ALERT ===== */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 16px; font-size: 0.9rem; display: flex; align-items: flex-start; gap: 10px; }
.alert-success { background: rgba(39,174,96,0.1); border: 1px solid rgba(39,174,96,0.3); color: #1e8449; }
.alert-danger { background: rgba(231,76,60,0.1); border: 1px solid rgba(231,76,60,0.3); color: #c0392b; }
.alert-warning { background: rgba(243,156,18,0.1); border: 1px solid rgba(243,156,18,0.3); color: #8e6800; }
.alert-info { background: rgba(52,152,219,0.1); border: 1px solid rgba(52,152,219,0.3); color: #1a5276; }
/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: var(--text-dark); color: white; padding: 14px 20px; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); font-size: 0.9rem; max-width: 320px;
  animation: slideIn 0.3s ease; display: flex; align-items: center; gap: 10px;
}
.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }
.toast.warning { background: var(--warning); }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
/* ===== LOADING ===== */
.loading-overlay { position: fixed; inset: 0; background: rgba(255,255,255,0.85); z-index: 9998; display: flex; align-items: center; justify-content: center; }
.spinner { width: 44px; height: 44px; border: 4px solid var(--border); border-top-color: var(--primary); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
/* ===== MODAL ===== */
.modal { position: fixed; inset: 0; z-index: 9000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.modal-content { position: relative; background: white; border-radius: var(--radius-lg); max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto; padding: 32px; box-shadow: var(--shadow-lg); animation: modalIn 0.3s ease; }
@keyframes modalIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.modal-title { font-family: 'Poppins', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--text-dark); }
.modal-close { background: none; border: none; font-size: 1.2rem; color: var(--text-light); padding: 4px 8px; }
/* ===== DASHBOARD ===== */
.dashboard { padding-top: 90px; min-height: 100vh; background: var(--bg-light); }
.dashboard-layout { display: grid; grid-template-columns: 260px 1fr; gap: 24px; align-items: start; }
.sidebar { background: white; border-radius: var(--radius); border: 1px solid var(--border); padding: 20px; position: sticky; top: 90px; }
.sidebar-user { text-align: center; padding: 16px 0 20px; border-bottom: 1px solid var(--border); margin-bottom: 16px; }
.sidebar-avatar { width: 70px; height: 70px; border-radius: 50%; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; font-weight: 700; margin: 0 auto 12px; }
.sidebar-name { font-weight: 600; font-size: 0.95rem; }
.sidebar-role { font-size: 0.8rem; color: var(--text-light); margin-top: 2px; }
.sidebar-menu { display: flex; flex-direction: column; gap: 4px; }
.sidebar-item { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 500; color: var(--text-medium); transition: var(--transition); cursor: pointer; border: none; background: none; width: 100%; text-align: left; }
.sidebar-item:hover { background: var(--bg-light); color: var(--primary); }
.sidebar-item.active { background: var(--bg-section); color: var(--primary); font-weight: 600; }
.sidebar-item i { width: 20px; text-align: center; }
.dashboard-main { display: flex; flex-direction: column; gap: 24px; }
.page-header { background: white; border-radius: var(--radius); border: 1px solid var(--border); padding: 24px; }
.page-title { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--text-dark); }
/* ===== UJIAN / EXAM ===== */
.exam-header { background: var(--primary); color: white; padding: 20px 24px; border-radius: var(--radius) var(--radius) 0 0; display: flex; align-items: center; justify-content: space-between; }
.exam-timer { font-family: 'Poppins', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--secondary-light); }
.exam-timer.warning { color: #ff6b6b; animation: pulse 1s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
.exam-body { background: white; border: 1px solid var(--border); border-top: none; border-radius: 0 0 var(--radius) var(--radius); }
.question-nav { display: flex; flex-wrap: wrap; gap: 8px; padding: 16px; border-bottom: 1px solid var(--border); }
.q-btn { width: 36px; height: 36px; border-radius: var(--radius-sm); border: 2px solid var(--border); background: white; font-size: 0.85rem; font-weight: 600; color: var(--text-medium); transition: var(--transition); }
.q-btn.answered { background: var(--success); border-color: var(--success); color: white; }
.q-btn.current { border-color: var(--primary); color: var(--primary); }
.question-area { padding: 24px; }
.question-text { font-size: 1.05rem; font-weight: 500; margin-bottom: 20px; line-height: 1.6; }
.option-list { display: flex; flex-direction: column; gap: 10px; }
.option-item { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 2px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition); }
.option-item:hover { border-color: var(--primary); background: var(--bg-section); }
.option-item.selected { border-color: var(--primary); background: var(--bg-section); }
.option-letter { width: 32px; height: 32px; border-radius: 50%; background: var(--border); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; }
.option-item.selected .option-letter { background: var(--primary); color: white; }
/* ===== SIGNATURE PAD ===== */
.signature-container { border: 2px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.signature-pad { display: block; cursor: crosshair; touch-action: none; }
.signature-controls { display: flex; gap: 8px; padding: 8px; border-top: 1px solid var(--border); background: var(--bg-light); }
/* ===== FOOTER ===== */
.footer { background: var(--primary-dark); color: rgba(255,255,255,0.8); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-brand .footer-logo { height: 60px; filter: brightness(10); margin-bottom: 12px; }
.footer-brand h3 { color: white; font-family: 'Poppins', sans-serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer-social a:hover { background: var(--secondary); color: white; }
.footer-links h4, .footer-contact h4 { color: white; font-family: 'Poppins', sans-serif; font-weight: 600; margin-bottom: 16px; }
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: var(--secondary-light); }
.footer-contact p { font-size: 0.9rem; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 10px; }
.footer-contact i { margin-top: 3px; color: var(--secondary); }
.footer-bottom { margin-top: 40px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 0.85rem; }
/* ===== HERO SEARCH ===== */
.hero-search { background: white; border-radius: var(--radius-lg); padding: 8px; display: flex; gap: 8px; box-shadow: var(--shadow-lg); margin-top: 36px; }
.hero-search input { flex: 1; padding: 12px 16px; border: none; font-size: 1rem; background: transparent; outline: none; }
.hero-search select { padding: 12px 16px; border: none; font-size: 0.9rem; background: transparent; outline: none; color: var(--text-medium); }
/* ===== PAGE CONTENT ===== */
.page-hero { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); padding: 120px 0 60px; color: white; text-align: center; }
.page-hero h1 { font-family: 'Poppins', sans-serif; font-size: 2.5rem; font-weight: 700; margin-bottom: 12px; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.8); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.6); justify-content: center; margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: white; }
/* ===== VERIFICATION ===== */
.verify-result { max-width: 600px; margin: 0 auto; text-align: center; }
.verify-icon { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.verify-valid { background: rgba(39,174,96,0.1); color: var(--success); }
.verify-invalid { background: rgba(231,76,60,0.1); color: var(--danger); }
/* ===== PAGINATION ===== */
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 32px; }
.page-btn { width: 36px; height: 36px; border-radius: var(--radius-sm); border: 1px solid var(--border); background: white; color: var(--text-medium); font-size: 0.85rem; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.page-btn:hover, .page-btn.active { background: var(--primary); border-color: var(--primary); color: white; }
/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: white; padding: 16px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); z-index: 999; }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero h1 { font-size: 2.2rem; }
  .hero-logo-big { width: 180px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .process-steps { flex-direction: column; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.7rem; }
  .hero-search { flex-direction: column; }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; }
  .nav-auth { display: none; }
  .section { padding: 50px 0; }
}
/* ===== PARTNER LOGOS ===== */
.partner-section { padding: 40px 0; background: white; border-bottom: 1px solid var(--border); }
.partner-label { text-align: center; font-size: 0.85rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 24px; }
.partner-logos { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.partner-logos img { height: 50px; opacity: 0.6; filter: grayscale(30%); transition: var(--transition); object-fit: contain; }
.partner-logos img:hover { opacity: 1; filter: grayscale(0%); }
/* ===== PRODUCT CARD (MARKETPLACE) ===== */
.product-grid { gap: 24px; }
.product-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-img { height: 180px; overflow: hidden; position: relative; background: linear-gradient(135deg, var(--bg-section) 0%, var(--bg-light) 100%); }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-img-placeholder { display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--text-light); opacity: 0.3; }
.product-badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; }
.promo-badge { background: var(--danger); color: white; padding: 4px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; animation: badgePulse 2s infinite; }
.featured-badge { background: var(--secondary); color: white; padding: 4px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 700; }
@keyframes badgePulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.product-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem; color: var(--text-dark); margin-bottom: 8px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-desc { font-size: 0.85rem; color: var(--text-medium); line-height: 1.5; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex: 1; }
.product-meta { font-size: 0.82rem; color: var(--text-light); margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border); margin-top: auto; }
.product-price { display: flex; flex-direction: column; }
.price-original { font-size: 0.82rem; color: var(--text-light); text-decoration: line-through; }
.price-promo { font-family: 'Poppins', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--danger); }
.price-normal { font-family: 'Poppins', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--primary); }
/* ===== CHART CONTAINER ===== */
.chart-container { position: relative; height: 260px; width: 100%; }
/* ===== APP DOWNLOAD ===== */
.app-download-section { background: var(--bg-light); }
.app-badges { display: flex; gap: 16px; margin-top: 24px; }
.app-badge { height: 48px; transition: var(--transition); border-radius: var(--radius-sm); }
.app-badge:hover { transform: translateY(-2px); filter: brightness(1.1); }
/* ===== BTN GROUP ===== */
.btn-group { display: flex; gap: 6px; }
/* ===== FEATURE CARD ===== */
.feature-card { padding: 28px 24px; }
.feature-card:hover { border-top-color: var(--secondary) !important; }
