/* ============================================================
   SKIDWARE — Premium Dark UI
   ============================================================ */

:root {
  --bg-0: #05060a;
  --bg-1: #0a0c12;
  --bg-2: #0f1219;
  --bg-3: #151922;
  --surface: rgba(22, 26, 36, 0.72);
  --surface-solid: #161a24;
  --surface-hover: rgba(30, 35, 48, 0.85);

  --border: rgba(255, 255, 255, 0.055);
  --border-hover: rgba(255, 255, 255, 0.12);
  --border-accent: rgba(139, 92, 246, 0.35);

  --text-1: #f4f4f7;
  --text-2: #9b9db0;
  --text-3: #5c5e72;

  --accent: #8b5cf6;
  --accent-2: #a78bfa;
  --accent-3: #c4b5fd;
  --cyan: #22d3ee;
  --green: #34d399;
  --red: #f87171;
  --amber: #fbbf24;

  --grad-accent: linear-gradient(135deg, #8b5cf6 0%, #6366f1 50%, #3b82f6 100%);
  --grad-glow: linear-gradient(135deg, rgba(139,92,246,0.5), rgba(59,130,246,0.3));
  --grad-green: linear-gradient(135deg, #10b981, #059669);
  --grad-red: linear-gradient(135deg, #ef4444, #dc2626);

  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.55);
  --glow: 0 0 40px rgba(139, 92, 246, 0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-0);
  color: var(--text-1);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--accent);
  color: #fff;
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.14); }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes pulse-soft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes border-glow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--grad-accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.35), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.45), inset 0 1px 0 rgba(255,255,255,0.2);
  filter: brightness(1.08);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover::after {
  opacity: 1;
  animation: shimmer 1.2s ease;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-hover);
  color: var(--text-1);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.18);
}

.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: none;
  padding: 8px 14px;
}
.btn-ghost:hover {
  color: var(--text-1);
  background: rgba(255,255,255,0.05);
}

.btn-success {
  background: var(--grad-green);
  color: #fff;
  box-shadow: 0 4px 16px rgba(16,185,129,0.3);
}
.btn-danger {
  background: var(--grad-red);
  color: #fff;
  box-shadow: 0 4px 16px rgba(239,68,68,0.3);
}
.btn-sm {
  padding: 8px 14px;
  font-size: 13px;
  border-radius: 10px;
}
.btn-icon { width: 16px; height: 16px; flex-shrink: 0; }
.w-full { width: 100%; }

/* ========== INPUTS ========== */
.input {
  background: rgba(8, 10, 16, 0.7);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--text-1);
  font-size: 14px;
  font-family: inherit;
  width: 100%;
  transition: all 0.25s var(--ease);
  outline: none;
}
.input:focus {
  border-color: var(--border-accent);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.12), 0 0 24px rgba(139, 92, 246, 0.08);
  background: rgba(10, 12, 20, 0.9);
}
.input::placeholder { color: var(--text-3); }

.search-box {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
}
.search-box .input {
  flex: 1;
  border-radius: 12px 0 0 12px;
  border-right: none;
}
.search-box .btn {
  border-radius: 0 12px 12px 0;
  padding-left: 24px;
  padding-right: 24px;
}

/* ========== BADGES ========== */
.badge, .status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.badge-success, .status-badge.status-premium {
  background: rgba(16,185,129,0.12);
  color: var(--green);
  border: 1px solid rgba(16,185,129,0.22);
}
.badge-danger {
  background: rgba(239,68,68,0.12);
  color: var(--red);
  border: 1px solid rgba(239,68,68,0.22);
}
.badge-info, .status-badge.status-vip {
  background: rgba(34,211,238,0.1);
  color: var(--cyan);
  border: 1px solid rgba(34,211,238,0.2);
}
.status-badge.status-admin {
  background: rgba(139,92,246,0.15);
  color: var(--accent-3);
  border: 1px solid rgba(139,92,246,0.3);
}
.status-badge.status-user {
  background: rgba(255,255,255,0.05);
  color: var(--text-2);
  border: 1px solid var(--border);
}

/* ========== LAYOUT ========== */
.layout {
  display: flex;
  min-height: 100vh;
  background: var(--bg-0);
}

.sidebar {
  width: 260px;
  background: linear-gradient(180deg, rgba(12,14,22,0.98) 0%, rgba(8,10,16,0.98) 100%);
  border-right: 1px solid var(--border);
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 50;
}

.sidebar .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 800;
  padding: 10px 12px 22px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  letter-spacing: -0.3px;
}
.sidebar .logo span {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  color: var(--text-2);
  text-decoration: none;
  border-radius: 11px;
  font-weight: 550;
  font-size: 13.5px;
  transition: all 0.2s var(--ease);
  position: relative;
}
.menu a:hover {
  color: var(--text-1);
  background: rgba(255,255,255,0.035);
}
.menu a.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(139,92,246,0.16), rgba(99,102,241,0.08));
  border: 1px solid rgba(139,92,246,0.18);
  box-shadow: 0 0 24px rgba(139,92,246,0.08);
}
.menu-icon {
  width: 18px;
  height: 18px;
  opacity: 0.7;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.menu a:hover .menu-icon,
.menu a.active .menu-icon {
  opacity: 1;
}

.main {
  flex: 1;
  padding: 32px 40px 48px;
  max-width: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 90% -10%, rgba(139,92,246,0.07), transparent 50%),
    radial-gradient(ellipse 50% 40% at 10% 100%, rgba(34,211,238,0.03), transparent 50%),
    var(--bg-0);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  animation: fadeUp 0.4s var(--ease);
}
.topbar h1 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.title-icon {
  width: 24px;
  height: 24px;
  opacity: 0.9;
}

/* ========== STAT CARDS ========== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(12px);
  animation: fadeUp 0.45s var(--ease) backwards;
}
.stat-card:nth-child(1) { animation-delay: 0.04s; }
.stat-card:nth-child(2) { animation-delay: 0.08s; }
.stat-card:nth-child(3) { animation-delay: 0.12s; }
.stat-card:nth-child(4) { animation-delay: 0.16s; }

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.stat-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.stat-card:hover::before { opacity: 1; }

.stat-card-label {
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-weight: 650;
  margin-bottom: 8px;
}
.stat-card-value {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--text-1);
}
.stat-card-value.text-success { color: var(--green); }

/* ========== PANELS ========== */
.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  transition: border-color 0.25s;
  animation: scaleIn 0.4s var(--ease) backwards;
}
.panel:hover { border-color: var(--border-hover); }

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.panel-header h2 {
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--text-1);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.mt-4 { margin-top: 18px; }
.mb-4 { margin-bottom: 18px; }

/* ========== TABLES ========== */
table {
  width: 100%;
  border-collapse: collapse;
}
th {
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--text-3);
  font-weight: 650;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
td {
  padding: 13px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  font-size: 13.5px;
  color: var(--text-2);
}
tr { transition: background 0.15s; }
tr:hover td { background: rgba(255,255,255,0.02); }

/* ========== LISTS ========== */
.donation-item, .check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border-radius: 11px;
  background: rgba(255,255,255,0.015);
  border: 1px solid transparent;
  margin-bottom: 6px;
  transition: all 0.2s var(--ease);
  animation: fadeUp 0.3s var(--ease) backwards;
}
.donation-item:hover, .check-item:hover {
  background: rgba(255,255,255,0.035);
  border-color: var(--border);
}

/* ========== LOADING ========== */
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  color: var(--text-3);
  min-height: 100px;
}
.spinner {
  width: 28px;
  height: 28px;
  border: 2.5px solid rgba(139,92,246,0.15);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

/* ========== TOAST ========== */
.toast-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ========== ADMIN ========== */
.admin-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.admin-section { animation: fadeUp 0.3s var(--ease); }

/* ========== LANDING ========== */
.landing {
  min-height: 100vh;
  background: var(--bg-0);
  position: relative;
}

.nav-landing {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 6, 10, 0.75);
  backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  padding: 14px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: fadeUp 0.5s var(--ease);
}
.nav-landing .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: -0.4px;
}
.nav-landing .logo span {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-weight: 550;
  font-size: 14px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-1); }

/* Hero */
.hero-v2 {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px 80px;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, black 15%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, black 15%, transparent 70%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 800px;
  height: 550px;
  background: radial-gradient(ellipse, rgba(139,92,246,0.2) 0%, rgba(59,130,246,0.08) 40%, transparent 70%);
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  filter: blur(50px);
}

.hero-card {
  position: relative;
  z-index: 2;
  max-width: 780px;
  width: 100%;
  background: rgba(14, 16, 24, 0.7);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: 56px 48px 48px;
  text-align: center;
  backdrop-filter: blur(24px) saturate(1.3);
  box-shadow:
    0 0 0 1px rgba(139,92,246,0.06),
    0 32px 80px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.04);
  animation: scaleIn 0.7s var(--ease);
}
.hero-card h1 {
  font-size: clamp(38px, 6.2vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.8px;
  margin-bottom: 18px;
  color: #fff;
}
.hero-card .gradient-text {
  background: linear-gradient(135deg, #a78bfa 0%, #60a5fa 45%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 16.5px;
  color: var(--text-2);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.hero-search { margin-bottom: 26px; }
.search-wrap {
  display: flex;
  align-items: center;
  background: rgba(6, 8, 14, 0.85);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 5px 5px 5px 18px;
  gap: 12px;
  transition: all 0.3s var(--ease);
  max-width: 540px;
  margin: 0 auto;
}
.search-wrap:focus-within {
  border-color: rgba(139,92,246,0.5);
  box-shadow: 0 0 0 4px rgba(139,92,246,0.12), 0 0 40px rgba(139,92,246,0.1);
}
.search-icon {
  width: 20px;
  height: 20px;
  opacity: 0.45;
  flex-shrink: 0;
}
.hero-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 15.5px;
  font-family: inherit;
  padding: 13px 0;
}
.hero-input::placeholder { color: var(--text-3); }
.hero-search-btn {
  padding: 12px 26px;
  border-radius: 12px;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
.link-muted {
  color: var(--text-3);
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.2s;
}
.link-muted:hover { color: var(--text-2); }

.hero-stats-v2 {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 64px;
  margin-top: 60px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.8s var(--ease) 0.2s backwards;
}
.stat-big { text-align: center; }
.stat-big .stat-value {
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(180deg, #fff 20%, #8b8da0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.stat-big .stat-label {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  font-weight: 600;
}

/* Features */
.features-v2 {
  padding: 100px 24px 70px;
  max-width: 1140px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header h2 {
  font-size: clamp(30px, 4.5vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.section-header p {
  color: var(--text-2);
  font-size: 16px;
}
.features-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 16px;
}
.feature-card-v2 {
  background: rgba(16, 19, 28, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card-v2::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.5), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.feature-card-v2:hover {
  border-color: rgba(139,92,246,0.22);
  background: rgba(20, 24, 34, 0.8);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.feature-card-v2:hover::before { opacity: 1; }

.feature-icon-v2 {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(139,92,246,0.18), rgba(59,130,246,0.1));
  border: 1px solid rgba(139,92,246,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.3s;
}
.feature-card-v2:hover .feature-icon-v2 {
  background: linear-gradient(135deg, rgba(139,92,246,0.28), rgba(59,130,246,0.15));
  box-shadow: 0 0 20px rgba(139,92,246,0.15);
}
.feature-icon-v2 img { width: 22px; height: 22px; }
.feature-card-v2 h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}
.feature-card-v2 p {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.65;
}

/* Pricing */
.pricing-section-v2 {
  padding: 50px 24px 90px;
  max-width: 1080px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.pricing-card {
  background: rgba(16, 19, 28, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all 0.35s var(--ease);
  backdrop-filter: blur(12px);
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139,92,246,0.25);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.pricing-card.featured {
  border-color: rgba(139,92,246,0.35);
  background: linear-gradient(160deg, rgba(139,92,246,0.1) 0%, rgba(16,19,28,0.85) 40%);
  box-shadow: 0 0 50px rgba(139,92,246,0.12);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(139,92,246,0.4);
}
.pricing-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-1);
}
.pricing-price {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pricing-price span {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-3);
}
.star-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.pricing-duration {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 22px;
}
.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}
.pricing-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-2);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Footer */
.footer-v2 {
  border-top: 1px solid var(--border);
  padding: 56px 40px 28px;
  background: rgba(6, 7, 12, 0.9);
}
.footer-v2 .footer-content {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
}
.footer-brand p {
  color: var(--text-3);
  font-size: 13.5px;
  margin-top: 14px;
  max-width: 260px;
  line-height: 1.6;
}
.footer-links-group h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--text-3);
  margin-bottom: 14px;
}
.footer-links-group a {
  display: block;
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 9px;
  transition: color 0.2s;
}
.footer-links-group a:hover { color: #fff; }
.footer-bottom {
  max-width: 1080px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-3);
  font-size: 12.5px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .grid-2 { grid-template-columns: 1fr; }
  .sidebar { width: 230px; }
  .main { padding: 24px; }
}
@media (max-width: 768px) {
  .layout { flex-direction: column; }
  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .menu {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
  }
  .menu a { padding: 8px 12px; font-size: 12.5px; }
  .hero-card { padding: 36px 22px 32px; border-radius: 20px; }
  .hero-stats-v2 { gap: 28px; }
  .search-wrap { flex-direction: column; padding: 12px; gap: 10px; }
  .hero-search-btn { width: 100%; }
  .footer-v2 .footer-content { grid-template-columns: 1fr; gap: 28px; }
  .nav-landing { padding: 12px 18px; }
  .nav-links { display: none; }
}
