/* ── DEVICE MOCKUPS ── */
.devices-showcase {
  position: relative;
  display: flex; align-items: flex-end; justify-content: center;
  gap: 2rem; padding: 3rem 2rem 1rem;
}

/* MAC DESKTOP */
.mac-frame {
  position: relative; flex-shrink: 0;
}
.mac-screen-wrap {
  background: #1a1a2e;
  border-radius: 10px 10px 0 0;
  border: 3px solid #3a3a5c;
  border-bottom: none;
  padding: 22px 8px 8px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  width: 480px;
}
.mac-camera {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: #2a2a4a; border: 1px solid #4a4a6a;
}
.mac-screen {
  width: 100%; border-radius: 4px; overflow: hidden;
  aspect-ratio: 16/10; background: #06103a;
  position: relative;
}
.mac-stand {
  width: 120px; height: 14px;
  background: linear-gradient(to bottom, #2a2a4a, #1a1a2e);
  margin: 0 auto; border-radius: 0 0 3px 3px;
  border: 2px solid #3a3a5c; border-top: none;
}
.mac-base {
  width: 200px; height: 8px;
  background: linear-gradient(to bottom, #252540, #1a1a2e);
  margin: 0 auto; border-radius: 4px;
  border: 1px solid #3a3a5c;
}

/* MOBILE PHONE */
.phone-frame {
  position: relative; flex-shrink: 0;
  margin-bottom: 2rem;
}
.phone-body {
  width: 120px;
  background: #1a1a2e;
  border-radius: 22px;
  border: 3px solid #3a3a5c;
  padding: 16px 6px 20px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04), inset 0 1px 0 rgba(255,255,255,0.08);
}
.phone-notch {
  width: 50px; height: 10px;
  background: #1a1a2e; border-radius: 0 0 10px 10px;
  margin: -16px auto 8px; position: relative; z-index: 2;
  border: 2px solid #3a3a5c; border-top: none;
}
.phone-screen {
  width: 100%; border-radius: 10px; overflow: hidden;
  aspect-ratio: 9/19; background: #06103a;
  position: relative;
}
.phone-home-btn {
  width: 32px; height: 4px; border-radius: 2px;
  background: #3a3a5c; margin: 10px auto 0;
}

/* SCREEN CONTENT - School */
.screen-school { background: linear-gradient(160deg, #06103a 0%, #0d1f5c 100%); }
.screen-church { background: linear-gradient(160deg, #1a0630 0%, #3d0f6b 100%); }
.screen-realestate { background: linear-gradient(160deg, #001a10 0%, #003320 100%); }
.screen-hotel { background: linear-gradient(160deg, #1a0a00 0%, #3d1500 100%); }

/* ── SCREEN UI ELEMENTS ── */
.ui-topbar {
  height: 28px; padding: 0 8px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ui-topbar-logo {
  font-size: 7px; font-weight: 900; color: rgba(255,255,255,0.9);
  font-family: Arial, sans-serif; letter-spacing: -0.3px;
}
.ui-topbar-dots { display: flex; gap: 3px; }
.ui-topbar-dots span { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.25); }
.ui-topbar-dots span:first-child { background: rgba(255,255,255,0.5); }

.ui-sidebar {
  position: absolute; left: 0; top: 28px; bottom: 0;
  width: 55px; background: rgba(0,0,0,0.3);
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; padding: 8px 4px; gap: 4px;
}
.ui-sidebar-item {
  height: 20px; border-radius: 3px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; padding: 0 4px; gap: 4px;
}
.ui-sidebar-item.active { background: rgba(255,255,255,0.15); }
.ui-sidebar-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.4); flex-shrink: 0; }
.ui-sidebar-line { height: 3px; border-radius: 1px; background: rgba(255,255,255,0.2); flex: 1; }

.ui-content { position: absolute; left: 55px; top: 28px; right: 0; bottom: 0; padding: 8px; overflow: hidden; }
.ui-stat-row { display: flex; gap: 4px; margin-bottom: 6px; }
.ui-stat {
  flex: 1; padding: 5px 4px; border-radius: 3px;
  background: rgba(255,255,255,0.08);
}
.ui-stat-num { font-size: 8px; font-weight: 900; color: rgba(255,255,255,0.9); font-family: Arial; }
.ui-stat-label { font-size: 5px; color: rgba(255,255,255,0.4); font-family: Arial; margin-top: 1px; }
.ui-chart {
  height: 45px; background: rgba(255,255,255,0.04); border-radius: 3px;
  margin-bottom: 6px; padding: 6px; display: flex; align-items: flex-end; gap: 3px;
}
.ui-bar { flex: 1; border-radius: 2px 2px 0 0; background: rgba(255,255,255,0.2); }
.ui-bar.hi { background: rgba(255,255,255,0.5); }
.ui-table { background: rgba(255,255,255,0.04); border-radius: 3px; overflow: hidden; }
.ui-table-row { height: 12px; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; padding: 0 4px; gap: 3px; }
.ui-table-row.header { background: rgba(255,255,255,0.08); }
.ui-table-cell { height: 3px; border-radius: 1px; background: rgba(255,255,255,0.2); }
.ui-table-cell.w1 { width: 25%; }
.ui-table-cell.w2 { width: 30%; }
.ui-table-cell.w3 { width: 20%; }
.ui-badge { height: 5px; width: 18px; border-radius: 2px; background: rgba(100,200,100,0.4); }

/* MOBILE screen UI */
.mob-topbar {
  height: 20px; padding: 0 6px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(0,0,0,0.3);
}
.mob-topbar-logo { font-size: 5px; font-weight: 900; color: rgba(255,255,255,0.9); font-family: Arial; }
.mob-content { padding: 5px; }
.mob-card { background: rgba(255,255,255,0.08); border-radius: 4px; padding: 5px; margin-bottom: 4px; }
.mob-card-title { font-size: 5px; font-weight: 700; color: rgba(255,255,255,0.8); font-family: Arial; margin-bottom: 3px; }
.mob-card-row { display: flex; gap: 3px; margin-bottom: 2px; }
.mob-line { height: 3px; border-radius: 1px; background: rgba(255,255,255,0.2); flex: 1; }
.mob-line.short { flex: 0.6; }
.mob-line.accent { background: rgba(255,255,255,0.45); }
.mob-stats { display: flex; gap: 3px; margin-bottom: 4px; }
.mob-stat { flex: 1; background: rgba(255,255,255,0.08); border-radius: 3px; padding: 4px 3px; text-align: center; }
.mob-stat-num { font-size: 7px; font-weight: 900; color: rgba(255,255,255,0.9); font-family: Arial; display: block; }
.mob-stat-lbl { font-size: 4px; color: rgba(255,255,255,0.4); font-family: Arial; }
.mob-nav { display: flex; justify-content: space-around; padding: 5px 0 2px; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 3px; }
.mob-nav-dot { width: 14px; height: 14px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.mob-nav-dot.active { background: rgba(255,255,255,0.2); }
.mob-nav-inner { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.4); }
