/* ============================================================
   ALLBOOKEU — PREMIUM DESIGN v2
   Full layout overhaul: dark hero, split auth, SaaS dashboard
   ============================================================ */

/* ============================================================
   HOMEPAGE — PREMIUM DARK HERO
   ============================================================ */

.hero-premium {
  background:
    linear-gradient(145deg, rgba(5,8,15,0.80) 0%, rgba(13,20,37,0.72) 45%, rgba(21,3,8,0.82) 100%),
    url('../images/allbookeubg.png') center / cover no-repeat;
  min-height: 560px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-premium::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(220,38,38,0.10) 0%, transparent 70%);
  top: -200px; right: -150px;
  pointer-events: none;
}

.hero-premium::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.05) 0%, transparent 70%);
  bottom: 0; left: -100px;
  pointer-events: none;
}

.hero-premium-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 88px 20px 52px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220,38,38,0.10);
  border: 1px solid rgba(220,38,38,0.22);
  color: #fca5a5;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin-bottom: 18px;
  max-width: 860px;
}

.hero-headline em {
  color: var(--red);
  font-style: normal;
}

.hero-subtext {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.6;
}

.hero-search-module {
  width: 100%;
  max-width: 860px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.2);
}

.hero-stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 18px 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: rgba(0,0,0,0.2);
  position: relative;
  z-index: 1;
}

.hero-stats-inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 680px;
  width: 100%;
  justify-content: center;
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  color: #475569;
  font-size: 0.8rem;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,0.07);
  white-space: nowrap;
}

.hero-stat-item:last-child { border-right: none; }
.hero-stat-item strong { color: #cbd5e1; font-weight: 700; }
.hero-stat-icon { font-size: 0.9rem; }

/* ============================================================
   HOMEPAGE — FEATURES STRIP
   ============================================================ */

.features-strip {
  padding: 80px 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.features-strip .section-header {
  justify-content: center;
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
}

.features-strip .section-header h2 {
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.features-strip .section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-gray);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.25s;
  text-decoration: none;
  color: inherit;
}

.feature-card:hover {
  border-color: rgba(220,38,38,0.2);
  background: #fff;
  box-shadow: 0 12px 40px rgba(15,23,42,0.08);
  transform: translateY(-3px);
}

.feature-icon-wrap {
  width: 48px; height: 48px;
  background: var(--red-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   AUTH PAGES — SPLIT SCREEN
   ============================================================ */

.auth-split {
  display: grid;
  grid-template-columns: 400px 1fr;
  min-height: calc(100vh - 64px);
}

.auth-brand-panel {
  background: linear-gradient(160deg, #05080f 0%, #0d1425 60%, #150308 100%);
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow-y: auto;
}

.auth-brand-logo {
  display: block;
  margin-bottom: 52px;
}

.auth-brand-logo img {
  height: 34px;
  width: auto;
}

.auth-brand-headline {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.18;
  margin-bottom: 14px;
}

.auth-brand-sub {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 40px;
}

.auth-brand-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: auto;
}

.auth-brand-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.45;
}

.abb-check {
  width: 20px; height: 20px;
  background: rgba(220,38,38,0.12);
  border: 1px solid rgba(220,38,38,0.25);
  color: #f87171;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.auth-brand-quote {
  margin-top: 40px;
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
}

.auth-brand-quote p {
  font-size: 0.82rem;
  color: #64748b;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 10px;
}

.auth-brand-quote cite {
  font-size: 0.72rem;
  color: #475569;
  font-style: normal;
  font-weight: 600;
}

.auth-brand-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.8rem;
  color: #334155;
}

.auth-brand-footer a {
  color: #64748b;
  font-weight: 600;
  transition: color 0.15s;
}

.auth-brand-footer a:hover { color: #94a3b8; }

.auth-form-panel {
  background: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 52px 48px;
  overflow-y: auto;
  min-height: calc(100vh - 64px);
}

.auth-form-panel .auth-page {
  min-height: auto;
  padding: 0;
  background: none;
  display: block;
  width: 100%;
  max-width: 440px;
}

.auth-form-panel .auth-card {
  box-shadow: none;
  border: none;
  border-radius: 0;
  padding: 0;
  max-width: 440px;
  width: 100%;
  background: none;
}

/* ============================================================
   BIZ DASHBOARD — KPI CARDS
   ============================================================ */

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.kpi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.kpi-card:hover {
  box-shadow: 0 8px 24px rgba(15,23,42,0.07);
  transform: translateY(-1px);
}

.kpi-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}

.kpi-card:hover::after { transform: scaleX(1); }

.kpi-icon {
  font-size: 1.3rem;
  margin-bottom: 14px;
  display: block;
}

.kpi-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.kpi-value {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 8px;
}

.kpi-trend {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.kpi-trend.up { color: #16a34a; }
.kpi-trend.down { color: #dc2626; }
.kpi-trend.neutral { color: var(--text-muted); }

/* Dashboard page header (replaces old plain header) */
.dash-page-header {
  background:
    linear-gradient(135deg, rgba(5,8,15,0.88) 0%, rgba(13,20,37,0.80) 55%, rgba(21,3,8,0.90) 100%),
    url('../images/allbookeubg.png') center 30% / cover no-repeat;
  color: #fff;
  padding: 28px 40px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.dph-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.dph-sub {
  font-size: 0.82rem;
  color: #475569;
}

.dph-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.btn-dph-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.btn-dph-primary:hover {
  background: var(--red-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(220,38,38,0.28);
}

.btn-dph-secondary {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.07);
  color: #94a3b8;
  border: 1px solid rgba(255,255,255,0.10);
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
  text-decoration: none;
}

.btn-dph-secondary:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

/* ============================================================
   IMPROVED SEARCH PAGE
   ============================================================ */

.search-active-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 10px 0;
}

.search-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red-light);
  color: var(--red);
  border: 1px solid #fecaca;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 600;
}

.results-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
  gap: 16px;
  flex-wrap: wrap;
}

.results-count-v2 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.results-count-v2 span {
  color: var(--text-muted);
  font-weight: 400;
}

/* Improved result cards */
.result-card-v2 {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.22s, transform 0.22s;
}

.result-card-v2:hover {
  box-shadow: 0 12px 40px rgba(15,23,42,0.10), 0 4px 12px rgba(15,23,42,0.05);
  transform: translateY(-2px);
}

.rcv2-img {
  position: relative;
  overflow: hidden;
}

.rcv2-img img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.result-card-v2:hover .rcv2-img img { transform: scale(1.06); }

.rcv2-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
}

.rcv2-body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.rcv2-header { }

.rcv2-name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: var(--text);
  text-decoration: none;
  transition: color 0.15s;
}

.rcv2-name:hover { color: var(--red); }

.rcv2-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.rcv2-rating { font-weight: 700; color: var(--text); }
.rcv2-star { color: #f59e0b; }

.rcv2-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rcv2-times {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}

.rcv2-time-btn {
  background: var(--red-light);
  color: var(--red);
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 7px 13px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.15s;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.rcv2-time-btn:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.rcv2-paused {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--bg-gray);
  border-radius: 8px;
  padding: 8px 14px;
}

.rcv2-no-times {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Sidebar improvement */
.search-sidebar-v2 {
  width: 220px;
  flex-shrink: 0;
}

.search-sidebar-v2 h3 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.filter-group-v2 {
  margin-bottom: 28px;
}

.filter-group-v2 .filter-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: block;
}

.filter-opt-v2 {
  display: block;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all 0.12s;
  font-weight: 500;
  text-decoration: none;
}

.filter-opt-v2:hover {
  background: var(--bg-gray);
  color: var(--text);
}

.filter-opt-v2.active {
  background: var(--red-light);
  color: var(--red);
  font-weight: 700;
}

/* ============================================================
   ADMIN — VERCEL-STYLE PANEL (overrides)
   ============================================================ */

.admin-layout-premium {
  display: flex;
  min-height: 100vh;
  background: #f8fafc;
}

.admin-sidebar-premium {
  width: 220px;
  min-width: 220px;
  background: #0f172a;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  border-right: 1px solid rgba(255,255,255,0.05);
}

.admin-logo-premium {
  padding: 22px 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.admin-logo-premium img { height: 28px; width: auto; }
.admin-logo-premium small {
  display: block;
  font-size: 0.62rem;
  color: #334155;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-top: 6px;
}

.admin-nav-premium { padding: 12px 0; flex: 1; }

.admin-nav-section-premium {
  padding: 16px 16px 6px;
  font-size: 0.62rem;
  font-weight: 700;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.admin-nav-link-premium {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #475569;
  transition: all 0.15s;
  border-radius: 0;
  margin: 1px 8px;
  border-radius: 7px;
}

.admin-nav-link-premium:hover {
  background: rgba(255,255,255,0.05);
  color: #e2e8f0;
}

.admin-nav-link-premium.active {
  background: rgba(220,38,38,0.12);
  color: #fca5a5;
  font-weight: 600;
}

.admin-nav-icon { font-size: 0.9rem; flex-shrink: 0; width: 18px; text-align: center; }

.admin-user-premium {
  padding: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.admin-user-name-premium { font-size: 0.82rem; font-weight: 700; color: #94a3b8; }
.admin-user-role-premium { font-size: 0.7rem; color: #334155; margin-top: 1px; }

.admin-logout-premium {
  margin-top: 10px;
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.06);
  color: #334155;
  border-radius: 7px;
  padding: 7px;
  font-size: 0.78rem;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
  font-weight: 500;
}

.admin-logout-premium:hover {
  background: rgba(239,68,68,0.08);
  border-color: rgba(239,68,68,0.15);
  color: #f87171;
}

.admin-main-premium { flex: 1; min-width: 0; display: flex; flex-direction: column; }

.admin-topbar-premium {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.admin-topbar-premium h1 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.admin-topbar-premium p { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

.admin-content-premium { padding: 24px 28px; flex: 1; }

/* Admin stat grid upgrade */
.admin-stat-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.admin-stat-premium {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 20px;
  transition: box-shadow 0.2s;
}

.admin-stat-premium:hover {
  box-shadow: 0 4px 16px rgba(15,23,42,0.07);
}

.admin-stat-num-premium {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.05em;
  line-height: 1;
}

.admin-stat-num-premium.red { color: var(--red); }
.admin-stat-num-premium.amber { color: #d97706; }
.admin-stat-num-premium.green { color: #16a34a; }

.admin-stat-label-premium {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 6px;
}

/* Admin card upgrade */
.admin-card-premium {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(15,23,42,0.04);
}

.admin-card-header-premium {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-gray);
}

.admin-card-title-premium {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Admin table upgrade */
.admin-table-premium {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.admin-table-premium th {
  padding: 11px 16px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-align: left;
  border-bottom: 1px solid var(--border);
  background: var(--bg-gray);
  white-space: nowrap;
}

.admin-table-premium td {
  padding: 13px 16px;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.admin-table-premium tr:last-child td { border-bottom: none; }
.admin-table-premium tr:hover td { background: var(--bg-gray); }

/* ============================================================
   HOMEPAGE CTA — FULL-WIDTH DARK
   ============================================================ */

.cta-dark {
  background: var(--sidebar-bg);
  padding: 80px 0;
}

.cta-dark-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cta-dark h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.18;
  margin-bottom: 16px;
}

.cta-dark p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 28px;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  transition: all 0.18s;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.btn-cta-white:hover {
  background: #f1f5f9;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.cta-dark-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-dark-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cdf-icon {
  width: 36px; height: 36px;
  background: rgba(220,38,38,0.1);
  border: 1px solid rgba(220,38,38,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.cdf-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 2px;
}

.cdf-text span {
  font-size: 0.82rem;
  color: #475569;
  line-height: 1.4;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .auth-split { grid-template-columns: 1fr; }
  .auth-brand-panel { display: none; }
  .auth-form-panel { padding: 40px 24px; min-height: auto; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-dark-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .hero-premium-inner { padding: 60px 16px 36px; }
  .hero-headline { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-stats-strip { display: none; }
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .features-strip { padding: 52px 0; }
  .kpi-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .dash-page-header { padding: 20px; }
  .result-card-v2 { grid-template-columns: 1fr; }
  .rcv2-img img { min-height: 160px; }
  .admin-sidebar-premium { display: none; }
  .admin-content-premium { padding: 16px; }
  .admin-topbar-premium { padding: 14px 16px; }
  .cta-dark { padding: 52px 0; }
  .cta-dark h2 { font-size: 1.6rem; }
}

@media (max-width: 520px) {
  .kpi-grid { grid-template-columns: 1fr; }
}
