/* ============================================================
   MALAM COMMUNICATION — Design System
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #dbeafe;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --info: #3b82f6;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --dark-3: #334155;
  --mid: #64748b;
  --light: #f1f5f9;
  --lighter: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  --font-head: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,.07);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.12);
  --transition: all .22s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--dark); background: var(--lighter); line-height: 1.6; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: var(--font-body); }

/* ── Layout ──────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* ── Grid ────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.grid-5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 1.25rem; }
@media(max-width:1024px){ .grid-4{grid-template-columns:repeat(3,1fr);} .grid-5{grid-template-columns:repeat(3,1fr);} }
@media(max-width:768px){ .grid-2,.grid-3,.grid-4,.grid-5{grid-template-columns:repeat(2,1fr);} }
@media(max-width:480px){ .grid-2,.grid-3,.grid-4,.grid-5{grid-template-columns:1fr;} }

/* ── Buttons ─────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .75rem 1.75rem; border-radius: var(--radius-sm); font-weight: 600; font-size: .95rem; border: 2px solid transparent; transition: var(--transition); white-space: nowrap; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,99,235,.3); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-1px); }
.btn-outline { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark-2); color: var(--white); }
.btn-danger { background: var(--danger); color: var(--white); }
.btn-sm { padding: .5rem 1.25rem; font-size: .875rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── Cards ───────────────────────────────────────────────── */
.card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transition: var(--transition); }
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.card-body { padding: 1.5rem; }

/* ── Product Card ────────────────────────────────────────── */
.product-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); position: relative; }
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-card:hover .product-card__actions { opacity: 1; transform: translateY(0); }
.product-card__image { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--light); }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-card__image img { transform: scale(1.06); }
.product-card__badges { position: absolute; top: .75rem; left: .75rem; display: flex; flex-direction: column; gap: .4rem; }
.badge { display: inline-block; padding: .25rem .65rem; border-radius: 6px; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.badge-sale { background: var(--danger); color: var(--white); }
.badge-new { background: var(--success); color: var(--white); }
.badge-featured { background: var(--accent); color: var(--white); }
.product-card__actions { position: absolute; bottom: 1rem; left: 50%; transform: translate(-50%, 10px); opacity: 0; transition: var(--transition); display: flex; gap: .5rem; }
.product-card__body { padding: 1.25rem; }
.product-card__category { font-size: .78rem; color: var(--mid); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .35rem; }
.product-card__name { font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--dark); margin-bottom: .5rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card__price { display: flex; align-items: center; gap: .6rem; }
.price-current { font-size: 1.15rem; font-weight: 700; color: var(--primary); }
.price-old { font-size: .875rem; color: var(--mid); text-decoration: line-through; }
.price-discount { font-size: .78rem; font-weight: 700; color: var(--danger); background: #fee2e2; padding: .2rem .5rem; border-radius: 4px; }

/* ── Stars ───────────────────────────────────────────────── */
.stars { color: #fbbf24; letter-spacing: 1px; }
.stars.empty { color: #d1d5db; }

/* ── Forms ───────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .45rem; color: var(--dark-2); }
.form-control { width: 100%; padding: .75rem 1rem; border: 2px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: .95rem; transition: var(--transition); background: var(--white); color: var(--dark); }
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,.12); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2364748b'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .75rem center; background-size: 1.25rem; padding-right: 2.5rem; }
.form-check { display: flex; align-items: center; gap: .6rem; }
.form-check input { width: 1.1rem; height: 1.1rem; accent-color: var(--primary); }
textarea.form-control { min-height: 120px; resize: vertical; }

/* ── Alerts ──────────────────────────────────────────────── */
.alert { padding: 1rem 1.25rem; border-radius: var(--radius-sm); margin-bottom: 1.25rem; border-left: 4px solid; font-size: .95rem; }
.alert-success { background: #ecfdf5; border-color: var(--success); color: #065f46; }
.alert-danger { background: #fef2f2; border-color: var(--danger); color: #991b1b; }
.alert-warning { background: #fffbeb; border-color: var(--warning); color: #92400e; }
.alert-info { background: #eff6ff; border-color: var(--info); color: #1e40af; }

/* ── Status Badges ───────────────────────────────────────── */
.status-badge { display: inline-flex; align-items: center; padding: .3rem .85rem; border-radius: 99px; font-size: .8rem; font-weight: 600; text-transform: capitalize; }
.status-pending { background: #fef3c7; color: #92400e; }
.status-confirmed { background: #dbeafe; color: #1e40af; }
.status-processing { background: #ede9fe; color: #5b21b6; }
.status-shipped { background: #e0f2fe; color: #075985; }
.status-delivered { background: #d1fae5; color: #065f46; }
.status-cancelled { background: #fee2e2; color: #991b1b; }
.status-reserved { background: #e0f2fe; color: #075985; }
.status-paid { background: #d1fae5; color: #065f46; }
.status-unpaid { background: #fef3c7; color: #92400e; }

/* ── Table ───────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); background: var(--white); }
.table { width: 100%; border-collapse: collapse; }
.table th { background: var(--dark); color: var(--white); padding: 1rem 1.25rem; text-align: left; font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; white-space: nowrap; }
.table td { padding: .9rem 1.25rem; border-bottom: 1px solid var(--border); font-size: .9rem; vertical-align: middle; }
.table tr:last-child td { border-bottom: none; }
.table tbody tr:hover { background: var(--lighter); }

/* ── Navbar ──────────────────────────────────────────────── */
.navbar { background: var(--white); box-shadow: 0 2px 12px rgba(0,0,0,.06); position: sticky; top: 0; z-index: 900; }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.navbar__logo { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.navbar__logo span { color: var(--accent); }
.navbar__menu { display: flex; align-items: center; gap: 2rem; list-style: none; }
.navbar__menu a { font-weight: 500; font-size: .95rem; color: var(--dark-3); padding: .3rem 0; border-bottom: 2px solid transparent; }
.navbar__menu a:hover, .navbar__menu a.active { color: var(--primary); border-color: var(--primary); }
.navbar__actions { display: flex; align-items: center; gap: 1rem; }
.navbar__search { display: flex; align-items: center; background: var(--light); border-radius: 99px; padding: .4rem 1rem; gap: .5rem; }
.navbar__search input { background: transparent; border: none; outline: none; font-size: .9rem; width: 180px; }
.cart-icon { position: relative; }
.cart-badge { position: absolute; top: -8px; right: -8px; background: var(--danger); color: var(--white); border-radius: 99px; font-size: .7rem; font-weight: 700; min-width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; padding: 0 4px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: .5rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }
@media(max-width:768px){
  .hamburger{display:flex;}
  .navbar__menu{display:none;position:absolute;top:72px;left:0;right:0;background:var(--white);flex-direction:column;padding:1.5rem;gap:1rem;box-shadow:var(--shadow-lg);}
  .navbar__menu.open{display:flex;}
  .navbar__search input{width:120px;}
}

/* ── Hero Banner ─────────────────────────────────────────── */
.hero { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%); color: var(--white); padding: 5rem 0; position: relative; overflow: hidden; }
.hero::before { content:''; position:absolute; top:-20%; right:-10%; width:60%; height:140%; background: radial-gradient(circle, rgba(37,99,235,.2) 0%, transparent 70%); }
.hero__title { font-size: clamp(2rem,5vw,3.5rem); line-height: 1.1; margin-bottom: 1rem; }
.hero__title span { color: var(--accent); }
.hero__sub { font-size: 1.15rem; opacity: .8; margin-bottom: 2rem; max-width: 560px; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Section Header ──────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header__label { display: inline-block; color: var(--primary); font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; margin-bottom: .5rem; }
.section-header h2 { font-size: clamp(1.8rem,4vw,2.6rem); }
.section-header p { color: var(--mid); font-size: 1.05rem; max-width: 560px; margin: .75rem auto 0; }

/* ── Footer ──────────────────────────────────────────────── */
.footer { background: var(--dark); color: rgba(255,255,255,.75); padding: 4rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer__brand .footer__logo { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--white); margin-bottom: 1rem; }
.footer__brand .footer__logo span { color: var(--accent); }
.footer h4 { color: var(--white); font-size: .95rem; margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: .08em; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: .6rem; }
.footer ul a { color: rgba(255,255,255,.65); font-size: .9rem; transition: var(--transition); }
.footer ul a:hover { color: var(--white); }
.footer__social { display: flex; gap: .75rem; margin-top: 1rem; }
.footer__social a { width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: .9rem; color: var(--white); transition: var(--transition); }
.footer__social a:hover { background: var(--primary); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 2rem; text-align: center; font-size: .875rem; opacity: .6; }
@media(max-width:768px){ .footer__grid{grid-template-columns:1fr 1fr;} }
@media(max-width:480px){ .footer__grid{grid-template-columns:1fr;} }

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: .5rem; padding: 1rem 0; font-size: .875rem; color: var(--mid); flex-wrap: wrap; }
.breadcrumb a { color: var(--mid); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb__sep { color: var(--border); }
.breadcrumb__current { color: var(--dark); font-weight: 500; }

/* ── Pagination ──────────────────────────────────────────── */
.pagination { display: flex; justify-content: center; align-items: center; gap: .5rem; padding: 2.5rem 0; }
.page-item { display: flex; }
.page-link { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); border: 2px solid var(--border); color: var(--dark); font-weight: 600; font-size: .9rem; transition: var(--transition); }
.page-link:hover { border-color: var(--primary); color: var(--primary); }
.page-link.active { background: var(--primary); border-color: var(--primary); color: var(--white); }
.page-link.disabled { opacity: .4; cursor: not-allowed; }

/* ── Toast ───────────────────────────────────────────────── */
.toast-container { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999; display: flex; flex-direction: column; gap: .75rem; }
.toast { background: var(--dark); color: var(--white); padding: 1rem 1.5rem; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); min-width: 280px; display: flex; align-items: center; gap: .75rem; font-size: .9rem; animation: slideIn .3s ease; }
.toast.success { border-left: 4px solid var(--success); }
.toast.error { border-left: 4px solid var(--danger); }
.toast.info { border-left: 4px solid var(--info); }
@keyframes slideIn { from{transform:translateX(100%);opacity:0;} to{transform:translateX(0);opacity:1;} }

/* ── Dashboard Layout (Light Theme) ─────────────────────── */
.dash-layout { display:flex;min-height:100vh;background:#f1f5f9; }

/* ── Sidebar ─────────────────────────────────────────────── */
.dash-sidebar {
  width:260px;
  background:#fff;
  flex-shrink:0;display:flex;flex-direction:column;
  position:sticky;top:0;height:100vh;overflow-y:auto;
  border-right:1px solid #e2e8f0;
  box-shadow:2px 0 8px rgba(15,23,42,.06);
  scrollbar-width:thin;scrollbar-color:#e2e8f0 transparent;
}
.dash-sidebar__logo {
  padding:1.5rem 1.25rem;display:flex;align-items:center;gap:.5rem;
  font-family:var(--font-head);font-size:1.3rem;font-weight:800;color:#0f172a;
  border-bottom:1px solid #f1f5f9;text-decoration:none;
}
.dash-sidebar__logo .logo-dot { color:#2563eb; }
.dash-sidebar__logo .logo-sub { font-size:.6rem;font-weight:500;color:#94a3b8;letter-spacing:.08em;display:block;margin-top:.1rem;font-family:var(--font-body); }
.dash-sidebar__nav { padding:.75rem 0;flex:1; }
.dash-nav-section { padding:0 .875rem;margin-bottom:1rem; }
.dash-nav-label {
  font-size:.65rem;font-weight:700;text-transform:uppercase;letter-spacing:.14em;
  color:#94a3b8;padding:.2rem .625rem;margin-bottom:.25rem;display:block;
}
.dash-nav-item {
  display:flex;align-items:center;gap:.75rem;padding:.65rem .75rem;
  border-radius:8px;color:#475569;font-size:.875rem;font-weight:500;
  transition:all .15s ease;margin-bottom:.1rem;
}
.dash-nav-item:hover { background:#f8fafc;color:#1e40af; }
.dash-nav-item.active { background:#eff6ff;color:#1d4ed8;font-weight:600; }
.dash-nav-item.active .icon { color:#2563eb; }
.dash-nav-item .icon { width:18px;text-align:center;flex-shrink:0;font-size:.88rem;color:#94a3b8; }
.dash-sidebar__footer {
  padding:1rem 1.25rem;border-top:1px solid #f1f5f9;
  font-size:.75rem;color:#94a3b8;
}

/* ── Main area ────────────────────────────────────────────── */
.dash-main { flex:1;display:flex;flex-direction:column;overflow:hidden;min-width:0; }

/* ── Topbar ───────────────────────────────────────────────── */
.dash-topbar {
  background:#fff;border-bottom:1px solid #e2e8f0;
  padding:0 1.75rem;height:64px;display:flex;align-items:center;
  justify-content:space-between;gap:1rem;position:sticky;top:0;z-index:10;
  box-shadow:0 1px 4px rgba(15,23,42,.06);
}
.dash-topbar__title {
  color:#0f172a;font-family:var(--font-head);font-size:1.05rem;font-weight:700;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}

/* ── Content ──────────────────────────────────────────────── */
.dash-content { padding:1.75rem;flex:1;overflow-y:auto; }

/* ── Cards ────────────────────────────────────────────────── */
.dash-card {
  background:#fff;border-radius:12px;padding:1.5rem;
  border:1px solid #e2e8f0;box-shadow:0 1px 6px rgba(15,23,42,.06);
}
.dash-card h3 { color:#0f172a;margin-bottom:1.25rem;font-size:1rem;font-weight:700; }

/* ── Stat cards ───────────────────────────────────────────── */
.dash-stat-card {
  background:#fff;border:1px solid #e2e8f0;border-radius:12px;padding:1.5rem;
  display:flex;align-items:center;gap:1.25rem;
  box-shadow:0 1px 6px rgba(15,23,42,.06);transition:transform .2s,box-shadow .2s;
}
.dash-stat-card:hover { transform:translateY(-2px);box-shadow:0 6px 20px rgba(15,23,42,.1); }
.dash-stat-icon {
  width:52px;height:52px;border-radius:12px;display:flex;align-items:center;
  justify-content:center;font-size:1.3rem;flex-shrink:0;
}
.dash-stat-value { font-family:var(--font-head);font-size:1.9rem;font-weight:800;color:#0f172a;line-height:1; }
.dash-stat-label { font-size:.82rem;color:#64748b;margin-top:.35rem; }
.dash-stat-delta { font-size:.75rem;font-weight:600;margin-top:.5rem; }
.dash-stat-delta.up { color:#16a34a; }
.dash-stat-delta.down { color:#dc2626; }

/* ── Tables ───────────────────────────────────────────────── */
.dash-table-wrap { overflow-x:auto;-webkit-overflow-scrolling:touch;border-radius:10px;border:1px solid #e2e8f0;background:#fff; }
.dash-table { width:100%;border-collapse:collapse;min-width:640px; }
.dash-table thead { background:#f8fafc; }
.dash-table th {
  color:#64748b;font-size:.72rem;text-transform:uppercase;
  letter-spacing:.1em;padding:.875rem 1.1rem;border-bottom:1px solid #e2e8f0;
  text-align:left;white-space:nowrap;font-weight:600;
}
.dash-table td {
  padding:.9rem 1.1rem;border-bottom:1px solid #f1f5f9;
  color:#374151;font-size:.875rem;vertical-align:middle;
}
.dash-table tbody tr:hover { background:#f8fafc;transition:background .15s; }
.dash-table tr:last-child td { border:none; }

/* ── Inputs ───────────────────────────────────────────────── */
.dash-input {
  background:#fff;border:1px solid #d1d5db;
  border-radius:8px;color:#0f172a;padding:.7rem 1rem;font-size:.9rem;
  font-family:var(--font-body);width:100%;transition:all .2s;
}
.dash-input:focus { outline:none;border-color:#2563eb;box-shadow:0 0 0 3px rgba(37,99,235,.12); }
.dash-input:hover { border-color:#94a3b8; }
.dash-input::placeholder { color:#9ca3af; }
select.dash-input { cursor:pointer; }
.form-label { color:#374151;font-weight:600;font-size:.875rem;margin-bottom:.4rem;display:block; }

/* ── Responsive ───────────────────────────────────────────── */
.dash-menu-toggle {
  display:none;background:#f1f5f9;border:1px solid #e2e8f0;
  color:#475569;font-size:1rem;cursor:pointer;
  padding:.5rem .7rem;line-height:1;border-radius:8px;transition:all .2s;
}
.dash-menu-toggle:hover { background:#e2e8f0;color:#0f172a; }
.dash-overlay { display:none;position:fixed;inset:0;background:rgba(15,23,42,.4);z-index:998;backdrop-filter:blur(2px); }
.dash-overlay.active { display:block; }
@media(max-width:1024px) {
  .dash-sidebar { position:fixed;left:-270px;top:0;bottom:0;z-index:999;transition:left .28s cubic-bezier(.4,0,.2,1);height:100vh; }
  .dash-sidebar.open { left:0;box-shadow:8px 0 40px rgba(15,23,42,.15); }
  .dash-menu-toggle { display:flex;align-items:center;justify-content:center; }
  .dash-main { width:100%;overflow-x:hidden; }
  .dash-content { padding:1.25rem; }
  .dash-topbar { padding:0 1.25rem; }
}
@media(max-width:640px) {
  .dash-content { padding:.875rem; }
  .dash-stat-card { flex-direction:column;align-items:flex-start;gap:.75rem;padding:1.25rem; }
  .dash-stat-value { font-size:1.5rem; }
  .dash-card { padding:1.1rem; }
  .dash-topbar { height:56px; }
}


/* ── Dashboard Form Grids (responsive) ───────────────────── */
.dash-form-grid { display:grid;grid-template-columns:1fr 320px;gap:2rem;align-items:start; }
.dash-form-grid--wide  { grid-template-columns:1fr 360px; }
.dash-form-grid--equal { grid-template-columns:1fr 1fr; }
.dash-form-grid--left  { grid-template-columns:300px 1fr; }
.dash-grid-2 { display:grid;grid-template-columns:1fr 1fr;gap:1rem; }
.dash-grid-3 { display:grid;grid-template-columns:1fr 1fr 1fr;gap:1rem; }
@media(max-width:900px) {
  .dash-form-grid,.dash-form-grid--wide,.dash-form-grid--equal,.dash-form-grid--left { grid-template-columns:1fr; }
}
@media(max-width:600px) {
  .dash-grid-2,.dash-grid-3 { grid-template-columns:1fr; }
}

/* ── Misc Utilities ──────────────────────────────────────── */

.text-center{text-align:center;} .text-right{text-align:right;}
.mt-1{margin-top:.5rem;} .mt-2{margin-top:1rem;} .mt-3{margin-top:1.5rem;} .mt-4{margin-top:2rem;} .mt-5{margin-top:3rem;}
.mb-1{margin-bottom:.5rem;} .mb-2{margin-bottom:1rem;} .mb-3{margin-bottom:1.5rem;} .mb-4{margin-bottom:2rem;}
.flex{display:flex;} .flex-center{display:flex;align-items:center;justify-content:center;} .flex-between{display:flex;align-items:center;justify-content:space-between;} .flex-gap-1{gap:.5rem;} .flex-gap-2{gap:1rem;} .flex-wrap{flex-wrap:wrap;} .items-center{align-items:center;}
.text-primary{color:var(--primary);} .text-accent{color:var(--accent);} .text-muted{color:var(--mid);} .text-danger{color:var(--danger);} .text-success{color:var(--success);}
.fw-600{font-weight:600;} .fw-700{font-weight:700;} .fw-800{font-weight:800;}
.fs-sm{font-size:.875rem;} .fs-xs{font-size:.78rem;}
.rounded{border-radius:var(--radius);} .rounded-full{border-radius:99px;}
.p-1{padding:.5rem;} .p-2{padding:1rem;} .p-3{padding:1.5rem;} .p-4{padding:2rem;}
.hidden{display:none;}
.spinner { width: 28px; height: 28px; border: 3px solid var(--border); border-top-color: var(--primary); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin{to{transform:rotate(360deg);}}

/* ── Homepage Hero ───────────────────────────────────────── */
.hero-section { background: linear-gradient(135deg,#0f172a 0%,#1e293b 50%,#0f2454 100%); min-height: 88vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 5rem 0; color: #fff; }
.hero-section__blob-1 { position:absolute;top:-120px;right:-80px;width:600px;height:600px;background:radial-gradient(circle,rgba(37,99,235,.25) 0%,transparent 65%);pointer-events:none; }
.hero-section__blob-2 { position:absolute;bottom:-100px;left:-60px;width:400px;height:400px;background:radial-gradient(circle,rgba(245,158,11,.1) 0%,transparent 70%);pointer-events:none; }
.hero-section__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 2; }
.hero-section__badge { display:inline-flex;align-items:center;gap:.5rem;background:rgba(37,99,235,.2);border:1px solid rgba(37,99,235,.4);padding:.4rem 1.1rem;border-radius:99px;margin-bottom:1.75rem; }
.hero-section__badge span { color:#93c5fd;font-size:.8rem;font-weight:600;letter-spacing:.04em; }
.hero-section__badge i { color:#f59e0b;font-size:.75rem; }
.hero-section__title { font-size:clamp(2.2rem,5vw,3.5rem);line-height:1.15;margin-bottom:1.5rem;color:#fff; }
.hero-section__title em { color:#f59e0b;font-style:normal; }
.hero-section__sub { font-size:1.1rem;color:rgba(255,255,255,.75);max-width:480px;line-height:1.8;margin-bottom:2.5rem; }
.hero-section__btns { display:flex;gap:1rem;flex-wrap:wrap;margin-bottom:3rem; }
.hero-section__trust { display:flex;gap:2rem;flex-wrap:wrap; }
.hero-section__trust-item { display:flex;align-items:center;gap:.5rem;color:rgba(255,255,255,.6);font-size:.875rem; }
.hero-section__card { background:rgba(255,255,255,.05);backdrop-filter:blur(16px);border:1px solid rgba(255,255,255,.1);border-radius:24px;padding:2.5rem;box-shadow:0 24px 80px rgba(0,0,0,.4); }
.hero-section__card-label { font-size:.8rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:#60a5fa;margin-bottom:1.5rem; }
.hero-feature-item { display:flex;gap:1rem;align-items:flex-start;padding:.875rem 0;border-bottom:1px solid rgba(255,255,255,.07); }
.hero-feature-item:last-child { border-bottom:none; }
.hero-feature-item__icon { width:40px;height:40px;border-radius:10px;background:rgba(37,99,235,.25);display:flex;align-items:center;justify-content:center;flex-shrink:0;color:#60a5fa; }
.hero-feature-item__title { color:#fff;font-weight:700;font-size:.95rem;margin-bottom:.2rem; }
.hero-feature-item__desc { color:rgba(255,255,255,.5);font-size:.82rem;line-height:1.5; }
@media(max-width:900px){ .hero-section__grid{grid-template-columns:1fr;} .hero-section__card{display:none;} }

/* ── Category Grid ───────────────────────────────────────── */
.category-card { display:block;text-align:center;padding:1.75rem 1.25rem;text-decoration:none;color:var(--dark);border-radius:var(--radius);background:var(--white);box-shadow:var(--shadow);transition:var(--transition); }
.category-card:hover { box-shadow:var(--shadow-lg);transform:translateY(-4px);color:var(--primary); }
.category-card__icon { width:72px;height:72px;background:var(--primary-light);border-radius:16px;display:flex;align-items:center;justify-content:center;margin:0 auto 1rem;font-size:1.8rem;color:var(--primary);transition:var(--transition); }
.category-card:hover .category-card__icon { background:var(--primary);color:#fff; }
.category-card__name { font-size:1rem;font-weight:700;margin-bottom:.3rem; }
.category-card__count { font-size:.82rem;color:var(--mid); }

/* ── How It Works ────────────────────────────────────────── */
.how-step { padding:1.5rem;text-align:center; }
.how-step__circle { position:relative;width:72px;height:72px;border-radius:50%;background:var(--primary);display:flex;align-items:center;justify-content:center;margin:0 auto 1.25rem;box-shadow:0 8px 24px rgba(37,99,235,.3);color:#fff;font-size:1.3rem; }
.how-step__number { position:absolute;top:-8px;right:-8px;width:26px;height:26px;background:#f59e0b;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.75rem;font-weight:800;color:#000; }
.how-step__title { font-size:1.05rem;margin-bottom:.5rem; }
.how-step__desc { color:var(--mid);font-size:.875rem;line-height:1.7; }

/* ── Feature Cards (Dark) ────────────────────────────────── */
.dark-section { background:linear-gradient(135deg,#0f172a,#1e293b);padding:5rem 0; }
.dark-section .section-header__label { background:rgba(37,99,235,.2);color:#93c5fd;padding:.3rem .9rem;border-radius:99px; }
.dark-section .section-header h2 { color:#fff; }
.feature-card { background:var(--white);border:1px solid var(--border);border-radius:16px;padding:2rem;box-shadow:var(--shadow);transition:var(--transition); }
.feature-card:hover { box-shadow:var(--shadow-lg);transform:translateY(-3px); }
.feature-card__icon { width:52px;height:52px;border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:1.25rem;font-size:1.1rem; }
.feature-card__title { color:var(--dark);font-size:1.05rem;margin-bottom:.6rem; }
.feature-card__desc { color:var(--mid);font-size:.875rem;line-height:1.7; }
.dark-section .feature-card { background:rgba(255,255,255,.04);border-color:rgba(255,255,255,.08);box-shadow:none; }
.dark-section .feature-card:hover { background:rgba(255,255,255,.07); }
.dark-section .feature-card__title { color:#fff; }
.dark-section .feature-card__desc { color:rgba(255,255,255,.55); }


/* ── Payment Bar ─────────────────────────────────────────── */
.payment-bar { background:#fff;padding:3rem 0;text-align:center; }
.payment-bar__label { font-size:.85rem;color:var(--mid);font-weight:600;text-transform:uppercase;letter-spacing:.08em;margin-bottom:1.5rem; }
.payment-bar__methods { display:flex;justify-content:center;align-items:center;gap:2.5rem;flex-wrap:wrap; }
.payment-method { display:flex;align-items:center;gap:.6rem;color:var(--dark-3);font-size:.9rem;font-weight:600; }
.payment-method i { font-size:1.4rem; }
.payment-bar__note { font-size:.8rem;color:var(--mid);margin-top:1rem; }

/* ── Testimonial Card ────────────────────────────────────── */
.testimonial-card { background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow);padding:1.75rem; }
.testimonial-card__stars { color:#f59e0b;margin-bottom:1rem; }
.testimonial-card__text { color:var(--dark-3);line-height:1.7;margin-bottom:1.25rem;font-style:italic; }
.testimonial-card__author { display:flex;align-items:center;gap:.75rem; }
.testimonial-card__avatar { width:40px;height:40px;border-radius:50%;background:var(--primary-light);display:flex;align-items:center;justify-content:center;font-weight:700;color:var(--primary);font-size:.9rem;flex-shrink:0; }
.testimonial-card__name { font-weight:700;font-size:.9rem; }
.testimonial-card__location { font-size:.78rem;color:var(--mid); }

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section { background:linear-gradient(135deg,var(--primary),var(--primary-dark));padding:5rem 0;text-align:center; }
.cta-section__icon { font-size:3rem;color:rgba(255,255,255,.3);margin-bottom:1.5rem;display:block; }
.cta-section__title { color:#fff;font-size:clamp(1.6rem,4vw,2.5rem);margin-bottom:1rem; }
.cta-section__sub { color:rgba(255,255,255,.8);font-size:1.05rem;margin-bottom:2.5rem;max-width:500px;margin-left:auto;margin-right:auto; }
.cta-section__btns { display:flex;gap:1rem;justify-content:center;flex-wrap:wrap; }
.btn-ghost { background:rgba(255,255,255,.15);color:#fff;border:2px solid rgba(255,255,255,.3); }
.btn-ghost:hover { background:rgba(255,255,255,.25);color:#fff; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-section-title { font-size:1.2rem;color:var(--primary);display:flex;align-items:center;gap:.75rem;margin-bottom:1.25rem;padding-bottom:.75rem;border-bottom:2px solid var(--border); }
.faq-item { border:2px solid var(--border);border-radius:var(--radius);margin-bottom:.75rem;overflow:hidden;background:var(--white);transition:var(--transition); }
.faq-item:has(.faq-question.active) { border-color:var(--primary); }
.faq-question { width:100%;text-align:left;padding:1.25rem 1.5rem;background:#fff;border:none;cursor:pointer;display:flex;justify-content:space-between;align-items:center;font-family:var(--font-body);font-size:1rem;font-weight:600;color:var(--dark);gap:1rem;transition:var(--transition); }
.faq-question.active { color:var(--primary); }
.faq-question span { flex:1; }
.faq-icon { color:var(--primary);font-size:1rem;flex-shrink:0;transition:transform .3s; }
.faq-answer { max-height:0;overflow:hidden;transition:max-height .35s ease,padding .35s ease;padding:0 1.5rem;color:var(--dark-3);line-height:1.8;font-size:.95rem; }
.faq-answer.open { max-height:400px;padding:0 1.5rem 1.25rem; }
.faq-cta { margin-top:3rem;background:var(--primary-light);border-radius:16px;padding:2.5rem;text-align:center; }
.faq-cta__icon { font-size:2.5rem;color:var(--primary);margin-bottom:1rem;display:block; }
.faq-cta__title { color:var(--primary);margin-bottom:.5rem; }
.faq-cta__sub { color:var(--mid);margin-bottom:1.5rem; }
.faq-cta__btns { display:flex;gap:1rem;justify-content:center;flex-wrap:wrap; }
.btn-whatsapp { background:#25d366;color:#fff;border-color:#25d366; }
.btn-whatsapp:hover { background:#128c7e;color:#fff;border-color:#128c7e; }

/* ── About Page ──────────────────────────────────────────── */
.about-hero { background:linear-gradient(135deg,#0f172a 0%,#1e293b 60%,#0f172a 100%);padding:5rem 0;text-align:center;position:relative;overflow:hidden; }
.about-hero__glow { position:absolute;top:0;left:0;right:0;bottom:0;background:radial-gradient(circle at 50% 0%,rgba(37,99,235,.25) 0%,transparent 60%); }
.about-hero__badge { display:inline-block;background:rgba(37,99,235,.2);color:#60a5fa;font-size:.8rem;font-weight:700;text-transform:uppercase;letter-spacing:.12em;padding:.4rem 1rem;border-radius:99px;margin-bottom:1rem; }
.about-hero__title { color:#fff;font-size:clamp(2rem,5vw,3rem);margin-bottom:1rem; }
.about-hero__title em { color:#f59e0b;font-style:normal; }
.about-hero__sub { color:rgba(255,255,255,.65);font-size:1.1rem;max-width:600px;margin:0 auto; }
.stats-bar { background:var(--primary);padding:2rem 0; }
.stats-bar__item { text-align:center; }
.stats-bar__num { font-size:2rem;font-weight:800;color:#fff; }
.stats-bar__label { color:rgba(255,255,255,.75);font-size:.9rem; }
.about-story__grid { display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center; }
.about-story__title { font-size:2rem;margin-bottom:1.25rem; }
.about-story__text { color:var(--mid);line-height:1.8;margin-bottom:1rem; }
.about-story__points { display:flex;flex-direction:column;gap:.75rem; }
.about-story__point { display:flex;align-items:center;gap:.75rem; }
.about-story__point i { color:var(--success);flex-shrink:0; }
.about-story__point span { color:var(--dark-3); }
.about-story__visual { background:var(--lighter);border-radius:20px;padding:3rem;text-align:center; }
.about-story__visual-icon { font-size:5rem;color:var(--primary);margin-bottom:1rem; }
.value-card { text-align:center;padding:2rem; }
.value-card__circle { width:70px;height:70px;border-radius:50%;background:var(--primary-light);display:flex;align-items:center;justify-content:center;margin:0 auto 1rem;font-size:1.5rem;color:var(--primary); }
.value-card__title { font-size:1.05rem;margin-bottom:.5rem; }
.value-card__desc { color:var(--mid);font-size:.85rem;line-height:1.6; }
@media(max-width:768px){ .about-story__grid{grid-template-columns:1fr;} .about-story__visual{display:none;} }

/* ── Error Pages ─────────────────────────────────────────── */
.error-page { min-height:70vh;display:flex;align-items:center;justify-content:center;padding:4rem 0;background:var(--lighter); }
.error-page__inner { text-align:center;max-width:520px;margin:0 auto; }
.error-page__code { font-size:clamp(5rem,15vw,9rem);font-weight:900;font-family:var(--font-head);color:var(--primary);line-height:1;margin-bottom:0; }
.error-page__icon { font-size:3rem;color:var(--primary);margin-bottom:1.5rem; }
.error-page__title { font-size:clamp(1.5rem,4vw,2rem);margin-bottom:.75rem; }
.error-page__sub { color:var(--mid);line-height:1.8;margin-bottom:2.5rem; }
.error-page__actions { display:flex;gap:1rem;justify-content:center;flex-wrap:wrap; }
