/* ===================================================
   MealCircle — Complete Stylesheet
   Brand: Cream #F5EDD8 | Cayenne #AF4425 | Dark Cayenne #662E1C
   =================================================== */

/* CSS Variables */
:root {
  --cream: #F5EDD8;
  --cayenne: #AF4425;
  --cayenne-dark: #662E1C;
  --border: #D9D0BB;
  --text: #2E2E33;
  --success: #1AB881;
  --font: 'Poppins', sans-serif;
}

/* Base */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 15px; }
body { font-family: var(--font); color: var(--text); }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.text-cayenne { color: var(--cayenne) !important; }
.font-mono { font-family: 'Courier New', monospace; font-size: 13px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-cayenne {
  background: var(--cayenne);
  color: #fff;
  border: 2px solid var(--cayenne);
  font-weight: 600;
  border-radius: 8px;
  transition: all .2s;
}
.btn-cayenne:hover { background: var(--cayenne-dark); border-color: var(--cayenne-dark); color: #fff; }

.btn-outline-cayenne {
  background: transparent;
  color: var(--cayenne);
  border: 2px solid var(--cayenne);
  font-weight: 600;
  border-radius: 8px;
  transition: all .2s;
}
.btn-outline-cayenne:hover { background: var(--cayenne); color: #fff; }

.btn-cayenne-outline {
  background: transparent;
  color: var(--cayenne);
  border: 1.5px solid var(--cayenne);
  font-weight: 500;
  border-radius: 6px;
  transition: all .2s;
  font-size: 13px;
}
.btn-cayenne-outline:hover { background: var(--cayenne); color: #fff; }

/* ============================================================
   LANDING PAGE
   ============================================================ */
.landing-body { background: var(--cream); }

/* Navbar */
.landing-navbar {
  background: rgba(245,237,216,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  padding: 14px 0;
  transition: all .3s;
}
.landing-navbar.scrolled {
  background: rgba(245,237,216,0.97);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.landing-brand { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.brand-emoji { font-size: 24px; }
.brand-name { font-size: 20px; font-weight: 700; color: var(--cayenne); }
.landing-nav-link { color: var(--text) !important; font-weight: 500; font-size: 15px; padding: 6px 12px !important; border-radius: 6px; transition: all .2s; }
.landing-nav-link:hover { color: var(--cayenne) !important; background: rgba(175,68,37,.08); }

/* Hero */
.hero-section { padding: 80px 0 100px; overflow: hidden; position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(175,68,37,.12); color: var(--cayenne);
  padding: 6px 14px; border-radius: 100px; font-size: 13px; font-weight: 600;
  margin-bottom: 20px;
}
.hero-heading { font-size: clamp(36px, 5vw, 58px); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.hero-sub { font-size: 17px; color: #666; line-height: 1.7; margin-bottom: 32px; max-width: 500px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.store-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; font-weight: 600; border-radius: 10px; }
.hero-stats { display: flex; gap: 32px; }
.hero-stat { display: flex; flex-direction: column; }
.stat-num { font-size: 24px; font-weight: 700; color: var(--cayenne); }
.stat-lbl { font-size: 12px; color: #999; font-weight: 500; }

/* Phone Mockup */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; padding: 40px 0; }
.phone-mockup {
  background: #1a1a2e;
  border-radius: 36px;
  padding: 14px;
  box-shadow: 0 40px 80px rgba(0,0,0,.25), 0 0 0 2px #333;
  width: 260px;
  position: relative;
  z-index: 2;
}
.phone-screen { background: #fff; border-radius: 26px; overflow: hidden; min-height: 400px; }
.phone-app-header {
  background: var(--cayenne); color: #fff; padding: 14px 16px;
  font-weight: 700; font-size: 14px;
}
.phone-week-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px; background: var(--cream); font-size: 12px; font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.phone-meal-row {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-bottom: 1px solid #f0f0f0;
}
.phone-day { width: 72px; font-size: 11px; color: #999; font-weight: 600; }
.phone-meal { font-size: 11px; font-weight: 500; border-left: 3px solid; padding-left: 8px; line-height: 1.4; }
.phone-bottom-nav {
  display: flex; justify-content: space-around; padding: 10px;
  background: #fff; border-top: 1px solid #eee; font-size: 18px; color: #ccc;
}
.phone-bottom-nav .active { color: var(--cayenne); }

/* Float Badges */
.float-badge {
  position: absolute; background: #fff; border-radius: 100px;
  padding: 8px 14px; font-size: 12px; font-weight: 600;
  box-shadow: 0 8px 24px rgba(0,0,0,.12); z-index: 3;
  white-space: nowrap;
}
.badge-top-right { top: 20px; right: -10px; }
.badge-bottom-left { bottom: 30px; left: -20px; }

/* Features */
.features-section { padding: 100px 0; background: #fff; }
.section-header { margin-bottom: 16px; }
.section-tag {
  display: inline-block; background: rgba(175,68,37,.1); color: var(--cayenne);
  padding: 4px 14px; border-radius: 100px; font-size: 13px; font-weight: 600; margin-bottom: 12px;
}
.section-tag.light { background: rgba(255,255,255,.2); color: #fff; }
.section-title { font-size: clamp(26px, 4vw, 38px); font-weight: 700; margin-bottom: 12px; }
.section-sub { color: #666; font-size: 16px; max-width: 500px; margin: 0 auto; }
.feature-card {
  background: var(--cream); border: 1px solid var(--border); border-radius: 16px;
  padding: 28px; height: 100%; transition: all .3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(175,68,37,.15); border-color: var(--cayenne); }
.feature-icon {
  width: 52px; height: 52px; background: var(--cayenne); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px; margin-bottom: 16px;
}
.feature-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature-desc { color: #666; font-size: 14px; line-height: 1.7; margin: 0; }

/* Pricing */
.pricing-section { padding: 100px 0; background: var(--cream); }
.pricing-card {
  background: #fff; border: 2px solid var(--border); border-radius: 20px;
  padding: 36px 28px; height: 100%; position: relative; transition: all .3s;
}
.pricing-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,.12); transform: translateY(-4px); }
.pricing-card-featured {
  border-color: var(--cayenne); background: var(--cayenne-dark);
  color: #fff; transform: scale(1.04);
}
.pricing-card-featured .pricing-price,
.pricing-card-featured .pricing-plan-name { color: #fff !important; }
.pricing-card-featured .pricing-features li { color: rgba(255,255,255,.85); }
.pricing-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--cayenne); color: #fff; padding: 4px 16px;
  border-radius: 100px; font-size: 12px; font-weight: 700; white-space: nowrap;
}
.pricing-plan-name { font-size: 20px; font-weight: 700; color: var(--cayenne); margin-bottom: 4px; }
.pricing-member-range { font-size: 12px; font-weight: 600; color: var(--cayenne); background: rgba(175,68,37,.1); display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: 20px; margin-bottom: 12px; }
.pricing-member-range--placeholder { visibility: hidden; pointer-events: none; }
.pricing-price { font-size: 42px; font-weight: 800; margin-bottom: 4px; line-height: 1; }
.price-period { font-size: 16px; font-weight: 400; color: #888; }
.pricing-billed-note { font-size: 12px; color: #888; margin-bottom: 20px; min-height: 18px; transition: all .3s; }
.pricing-card-featured .price-period { color: rgba(255,255,255,.6); }
.pricing-card-featured .pricing-billed-note { color: rgba(255,255,255,.6); }
.pricing-card-featured .pricing-member-range { background: rgba(255,255,255,.2); color: #fff; }
.pricing-features { list-style: none; padding: 0; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; padding: 7px 0; font-size: 14px; }
.pricing-features .bi-x-circle-fill { opacity: .4; }

/* Billing toggle */
.billing-toggle-wrap { display: inline-flex; align-items: center; gap: 12px; margin-top: 20px; }
.billing-lbl { font-size: 14px; font-weight: 500; color: #aaa; transition: color .2s; }
.billing-lbl-active { color: var(--cinnamon); }
.billing-toggle { width: 48px; height: 26px; background: #ddd; border-radius: 13px; cursor: pointer; position: relative; transition: background .25s; flex-shrink: 0; }
.billing-toggle.active { background: var(--cayenne); }
.billing-toggle-thumb { position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; background: #fff; border-radius: 50%; transition: left .25s; box-shadow: 0 1px 4px rgba(0,0,0,.2); }
.billing-toggle.active .billing-toggle-thumb { left: 25px; }
.billing-save-badge { background: #1ab881; color: #fff; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; opacity: 0; transform: translateY(4px); transition: opacity .25s, transform .25s; pointer-events: none; }
.billing-save-badge.visible { opacity: 1; transform: translateY(0); }

/* Download */
.download-section { padding: 80px 0; background: #fff; }
.download-card {
  background: linear-gradient(135deg, var(--cayenne-dark), var(--cayenne));
  border-radius: 24px; padding: 60px 48px; color: #fff;
}
.download-title { font-size: clamp(26px, 4vw, 40px); font-weight: 800; margin: 16px 0 12px; }
.download-sub { font-size: 16px; opacity: .9; margin-bottom: 32px; }
.download-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.store-badge {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.15); color: #fff;
  padding: 14px 20px; border-radius: 12px; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.3); transition: all .2s;
}
.store-badge:hover { background: rgba(255,255,255,.25); color: #fff; transform: translateY(-2px); }
.badge-small { display: block; font-size: 10px; opacity: .8; }
.badge-big { display: block; font-size: 16px; font-weight: 700; }
.download-phone-visual { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 200px; height: 200px; margin: 0 auto; }
.dv-circle { position: absolute; border-radius: 50%; }
.dv-c1 { width: 180px; height: 180px; background: rgba(255,255,255,.1); }
.dv-c2 { width: 120px; height: 120px; background: rgba(255,255,255,.15); }
.dv-label { font-size: 64px; position: relative; z-index: 1; }

/* Testimonials */
.testimonials-section { padding: 100px 0; background: var(--cream); }
.testimonial-card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 28px; height: 100%;
}
.testimonial-stars { color: #f5a623; font-size: 16px; margin-bottom: 14px; }
.testimonial-quote { font-size: 14px; line-height: 1.7; color: #444; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--cayenne);
  color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.testi-name { font-weight: 600; font-size: 14px; }
.testi-location { font-size: 12px; color: #999; }

/* Footer */
.landing-footer { background: var(--text); color: #ccc; padding: 60px 0 32px; }
.footer-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.footer-brand .brand-name { color: #fff; font-size: 18px; }
.footer-tagline { font-size: 15px; color: #fff; font-weight: 600; margin-bottom: 8px; }
.footer-heading { color: #fff; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #aaa; text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-divider { border-color: rgba(255,255,255,.1); margin: 40px 0 20px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 13px; color: #888; }

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.admin-body { background: #f0ece4; font-family: var(--font); margin: 0; padding: 0; }
.admin-wrapper { display: flex; min-height: 100vh; }

/* Sidebar */
.admin-sidebar {
  width: 240px; min-height: 100vh; background: #fff;
  border-right: 1px solid var(--border); display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; height: 100vh; z-index: 1000;
  transition: width .3s, transform .3s;
  overflow-y: auto;
}
.admin-sidebar.collapsed { width: 0; transform: translateX(-240px); }
.sidebar-brand {
  display: flex; align-items: center; gap: 10px;
  padding: 20px 20px 16px; border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.sidebar-brand .brand-icon { font-size: 22px; }
.sidebar-brand .brand-text { font-size: 18px; font-weight: 700; color: var(--cayenne); }

/* ── Circular brand logo (round badge + wordmark) ── */
.mc-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.mc-brand-icon {
  border-radius: 50%; object-fit: cover; aspect-ratio: 1 / 1; display: block;
  box-shadow: 0 2px 8px rgba(90,41,34,0.18);
}
.mc-brand-name {
  font-family: 'Poppins', sans-serif; font-weight: 800; letter-spacing: -0.3px;
  line-height: 1; white-space: nowrap;
}
.mc-brand-name .mc-meal { color: #9A4633; }
.mc-brand-name .mc-circle { color: #E07848; }
.sidebar-nav { flex: 1; padding: 12px 0; }
.sidebar-link {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 20px; color: #555; text-decoration: none;
  font-size: 14px; font-weight: 500; border-radius: 0;
  transition: all .2s; border-left: 3px solid transparent;
  white-space: nowrap;
}
.sidebar-link:hover { color: var(--cayenne); background: rgba(175,68,37,.06); }
.sidebar-link.active { color: var(--cayenne); background: rgba(175,68,37,.08); border-left-color: var(--cayenne); font-weight: 600; }
.sidebar-link i { font-size: 17px; flex-shrink: 0; }
.sidebar-footer {
  padding: 16px; border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}
.sidebar-user { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.user-avatar {
  width: 34px; height: 34px; border-radius: 50%; background: var(--cayenne);
  color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.user-name { font-size: 13px; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-role { font-size: 11px; color: #999; }
.sidebar-logout {
  width: 32px; height: 32px; border-radius: 8px; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  color: var(--cayenne); text-decoration: none; font-size: 16px; flex-shrink: 0;
  transition: all .2s;
}
.sidebar-logout:hover { background: var(--cayenne); color: #fff; }

/* Main content */
.admin-main { flex: 1; margin-left: 240px; display: flex; flex-direction: column; min-height: 100vh; transition: margin-left .3s; }
.admin-topbar {
  height: 60px; background: #fff; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 16px; padding: 0 24px;
  position: sticky; top: 0; z-index: 999;
}
.topbar-title { font-size: 18px; font-weight: 700; flex: 1; margin: 0; }
.topbar-actions { display: flex; align-items: center; gap: 8px; }
.topbar-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: var(--cayenne);
  color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.admin-content { padding: 24px; flex: 1; }

/* Admin Cards */
.admin-card {
  background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
}
.admin-card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
}
.admin-card-title { font-size: 15px; font-weight: 700; margin: 0; color: var(--text); }
.admin-card-body { padding: 20px; }

/* Stat Cards */
.stat-card {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 20px; display: flex; align-items: flex-start; gap: 16px;
}
.stat-icon {
  width: 48px; height: 48px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
}
.bg-cayenne-soft { background: rgba(175,68,37,.1); }
.bg-success-soft { background: rgba(26,184,129,.1); }
.bg-blue-soft { background: rgba(13,110,253,.1); }
.bg-warning-soft { background: rgba(255,193,7,.1); }
.stat-value { font-size: 24px; font-weight: 800; color: var(--text); }
.stat-label { font-size: 13px; color: #888; margin: 2px 0; }
.stat-change { font-size: 12px; font-weight: 500; }
.stat-change.positive { color: var(--success); }

/* Tables */
.admin-table { font-size: 14px; }
.admin-table thead th {
  background: var(--cream); color: #666; font-size: 12px;
  font-weight: 600; text-transform: uppercase; letter-spacing: .5px;
  border-bottom: 1px solid var(--border); padding: 12px 16px;
}
.admin-table td { padding: 12px 16px; vertical-align: middle; border-color: #f0ece4; }
.admin-table tbody tr:hover { background: rgba(245,237,216,.4); }

/* Badges / Status */
.status-badge { padding: 4px 12px; border-radius: 100px; font-size: 12px; font-weight: 600; }
.status-badge.open { background: rgba(13,110,253,.1); color: #0d6efd; }
.status-badge.inprogress { background: rgba(255,193,7,.15); color: #c98b00; }
.status-badge.resolved { background: rgba(26,184,129,.1); color: var(--success); }
.status-badge.closed { background: rgba(108,117,125,.1); color: #6c757d; }
.ticket-number { font-family: monospace; font-size: 13px; font-weight: 600; color: var(--cayenne); }
.badge-plan { background: var(--cream); color: var(--cayenne); padding: 3px 10px; border-radius: 4px; font-size: 12px; font-weight: 600; }

/* Support tabs */
.support-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--border); padding: 0 20px; background: #fff; }
.support-tab {
  padding: 12px 16px; font-size: 14px; font-weight: 500; color: #666;
  text-decoration: none; border-bottom: 2px solid transparent; transition: all .2s;
  display: flex; align-items: center; gap: 6px;
}
.support-tab:hover { color: var(--cayenne); }
.support-tab.active { color: var(--cayenne); border-bottom-color: var(--cayenne); font-weight: 600; }
.tab-count { font-size: 11px; background: var(--cream); padding: 1px 7px; border-radius: 100px; font-weight: 600; }

/* Chat */
.chat-layout { height: calc(100vh - 140px); }
.chat-card { display: flex; flex-direction: column; height: 100%; }
.chat-messages {
  flex: 1; overflow-y: auto; padding: 20px;
  display: flex; flex-direction: column; gap: 16px;
  background: #faf9f5; min-height: 300px; max-height: 500px;
}
.chat-bubble-wrapper { display: flex; }
.chat-bubble-wrapper.staff { justify-content: flex-end; }
.chat-bubble-wrapper.user { justify-content: flex-start; }
.chat-bubble { max-width: 70%; border-radius: 12px; padding: 12px 16px; }
.bubble-staff { background: var(--cayenne); color: #fff; border-bottom-right-radius: 4px; }
.bubble-user { background: #fff; border: 1px solid var(--border); border-bottom-left-radius: 4px; }
.bubble-sender { font-size: 11px; font-weight: 600; opacity: .75; margin-bottom: 4px; }
.bubble-text { font-size: 14px; line-height: 1.5; }
.bubble-time { font-size: 10px; opacity: .6; margin-top: 6px; text-align: right; }
.chat-input-area { border-top: 1px solid var(--border); padding: 16px; background: #fff; }
.chat-input-row { display: flex; gap: 10px; align-items: flex-end; }
.chat-textarea { resize: none; border-radius: 10px; border-color: var(--border); font-size: 14px; }
.chat-send-btn { flex-shrink: 0; height: 46px; width: 46px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.ticket-detail-row { display: flex; align-items: flex-start; gap: 10px; }

/* Staff */
.staff-avatar {
  width: 32px; height: 32px; border-radius: 50%; background: var(--cream);
  color: var(--cayenne); font-weight: 700; display: flex; align-items: center;
  justify-content: center; border: 1.5px solid var(--border); flex-shrink: 0;
}

/* Permissions table */
.permissions-table { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.perm-header, .perm-row { display: grid; grid-template-columns: 1fr 80px 80px; }
.perm-header { background: var(--cream); padding: 10px 16px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: #666; }
.perm-row { padding: 10px 16px; border-top: 1px solid var(--border); font-size: 14px; align-items: center; }
.perm-row:hover { background: rgba(245,237,216,.5); }
.perm-row span:not(:first-child) { text-align: center; }

/* Statistics Heatmap */
.heatmap-labels { display: flex; gap: 8px; padding-left: 4px; }
.heatmap-day-label { width: 36px; font-size: 11px; font-weight: 600; color: #888; text-align: center; }
.heatmap-grid { display: flex; flex-direction: column; gap: 6px; }
.heatmap-row { display: flex; gap: 8px; }
.heatmap-cell { width: 36px; height: 36px; border-radius: 6px; display: inline-block; cursor: default; }
.heatmap-legend { display: flex; align-items: center; gap: 6px; }
.heatmap-legend .heatmap-cell { width: 20px; height: 20px; border-radius: 4px; }

/* Variable chips */
.variable-chip {
  background: var(--cream); border: 1px solid var(--border); border-radius: 6px;
  padding: 4px 10px; font-size: 12px; font-weight: 600; cursor: pointer;
  transition: all .2s; color: var(--cayenne); user-select: none;
}
.variable-chip:hover { background: var(--cayenne); color: #fff; border-color: var(--cayenne); }

/* Feature flag rows */
.feature-flag-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.feature-flag-row:last-child { border-bottom: none; }
.feature-flag-info { flex: 1; }

/* Login Page */
.login-body {
  min-height: 100vh; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font);
}
.login-container { width: 100%; max-width: 420px; padding: 16px; }
.login-card {
  background: #fff; border: 1px solid var(--border); border-radius: 20px;
  padding: 40px 36px; box-shadow: 0 20px 60px rgba(0,0,0,.08);
}
.login-brand { text-align: center; margin-bottom: 32px; }
.login-logo { font-size: 48px; display: block; margin-bottom: 8px; }
.login-title { font-size: 26px; font-weight: 800; color: var(--cayenne); margin: 0; }
.login-subtitle { color: #888; font-size: 14px; margin: 4px 0 0; }
.login-footer { margin-top: 24px; text-align: center; }

/* Dashboard page wrapper */
.dashboard-page { }

/* Responsive */
@media (max-width: 991px) {
  .admin-sidebar { transform: translateX(-240px); }
  .admin-sidebar.mobile-open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .hero-visual { margin-top: 40px; }
  .float-badge { display: none; }
}
@media (max-width: 575px) {
  .hero-heading { font-size: 32px; }
  .hero-stats { gap: 20px; }
  .pricing-card-featured { transform: none; }
  .download-card { padding: 36px 24px; }
  .admin-content { padding: 16px; }
}
