/* ============================================
   ANİMASYONLU İLLÜSTRASYONLAR
   Çözüm sayfalarında ve ana sayfada kullanılan
   CSS tabanlı, hafif animasyonlu görsel kompozisyonlar
   ============================================ */

/* ============================================
   ORTAK İLLÜSTRASYON ÇERÇEVESİ
   ============================================ */
.illus {
  position: relative;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 4 / 3.2;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: linear-gradient(155deg, #0A1A30 0%, #0D2240 55%, #07172E 100%);
  box-shadow:
    0 30px 80px rgba(10, 37, 64, 0.30),
    0 12px 28px rgba(10, 37, 64, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Yüksek varyant — gerçek görsel + grafik kombinasyonu için */
.illus--tall { aspect-ratio: 4 / 4.4; max-width: 560px; }

/* Frame renk varyantları (sayfaya özel kimlik) */
.illus--purple {
  background: linear-gradient(155deg, #1A0E32 0%, #2A1248 55%, #14082A 100%);
}
.illus--purple::before {
  background:
    radial-gradient(ellipse 80% 60% at 70% 0%, rgba(124, 92, 250, 0.32) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(63, 121, 245, 0.18) 0%, transparent 70%);
}
.illus--purple::after {
  background-image:
    linear-gradient(rgba(124, 92, 250, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 92, 250, 0.05) 1px, transparent 1px);
}

.illus--emerald {
  background: linear-gradient(155deg, #061F18 0%, #0A2D24 55%, #04140F 100%);
}
.illus--emerald::before {
  background:
    radial-gradient(ellipse 80% 60% at 70% 0%, rgba(16, 214, 132, 0.28) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(0, 200, 255, 0.14) 0%, transparent 70%);
}
.illus--emerald::after {
  background-image:
    linear-gradient(rgba(16, 214, 132, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 214, 132, 0.05) 1px, transparent 1px);
}

.illus--amber {
  background: linear-gradient(155deg, #1F1409 0%, #2E1F0B 55%, #150C04 100%);
}
.illus--amber::before {
  background:
    radial-gradient(ellipse 80% 60% at 70% 0%, rgba(245, 166, 35, 0.28) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(244, 63, 94, 0.14) 0%, transparent 70%);
}
.illus--amber::after {
  background-image:
    linear-gradient(rgba(245, 166, 35, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 166, 35, 0.05) 1px, transparent 1px);
}

.illus--rose {
  background: linear-gradient(155deg, #1F0A12 0%, #2E0E1A 55%, #150509 100%);
}
.illus--rose::before {
  background:
    radial-gradient(ellipse 80% 60% at 70% 0%, rgba(244, 63, 94, 0.30) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(245, 166, 35, 0.14) 0%, transparent 70%);
}
.illus--rose::after {
  background-image:
    linear-gradient(rgba(244, 63, 94, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 63, 94, 0.05) 1px, transparent 1px);
}

.illus--light {
  background: linear-gradient(155deg, #F0F6FF 0%, #E0EBFA 55%, #DDE9FB 100%);
  border-color: rgba(63, 121, 245, 0.18);
  box-shadow:
    0 30px 80px rgba(10, 37, 64, 0.18),
    0 12px 28px rgba(10, 37, 64, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.50);
}
.illus--light::before {
  background:
    radial-gradient(ellipse 80% 60% at 70% 0%, rgba(63, 121, 245, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(0, 200, 255, 0.15) 0%, transparent 70%);
}
.illus--light::after {
  background-image:
    linear-gradient(rgba(63, 121, 245, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63, 121, 245, 0.07) 1px, transparent 1px);
}
.illus::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 0%, rgba(0, 200, 255, 0.28) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(63, 121, 245, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.illus::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 200, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.illus__layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* Yüzen kart (Floating Tag) */
.illus-tag {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--r-md);
  padding: var(--space-3) var(--space-4);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.30),
    0 0 0 1px rgba(0, 200, 255, 0.20);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  z-index: 3;
  backdrop-filter: blur(8px);
}
.illus-tag svg {
  color: var(--blue);
  flex-shrink: 0;
}
.illus-tag__title {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--on-light);
  white-space: nowrap;
}
.illus-tag__sub {
  font-size: 10px;
  color: var(--on-light-3);
  white-space: nowrap;
}

@keyframes illusFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes illusFloatRev {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}
@keyframes illusPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.05); opacity: 0.85; }
}
@keyframes illusShine {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes scanLine {
  0%   { top: 0%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 200, 255, 0.55); }
  50%      { box-shadow: 0 0 0 10px rgba(0, 200, 255, 0); }
}
@keyframes wifiWave {
  0%   { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(1.4); opacity: 0; }
}
@keyframes signalPing {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* ============================================
   POS TERMİNALİ İLLÜSTRASYONU
   ============================================ */
.illus-pos {
  position: relative;
  width: 240px;
  height: 220px;
  z-index: 1;
}
.illus-pos__terminal {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 130px;
  background: linear-gradient(160deg, #1a2138 0%, #0a1224 100%);
  border-radius: 12px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}
.illus-pos__screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0A2540 0%, #163860 100%);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 10px;
  gap: 6px;
}
.illus-pos__row {
  height: 6px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 2px;
  width: 80%;
}
.illus-pos__row:nth-child(2) { width: 60%; background: rgba(0, 200, 255, 0.50); }
.illus-pos__row:nth-child(3) { width: 70%; }
.illus-pos__total {
  margin-top: auto;
  height: 14px;
  background: var(--g-accent);
  border-radius: 3px;
  width: 50%;
  align-self: flex-end;
  position: relative;
  overflow: hidden;
}
.illus-pos__total::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  background-size: 200% 100%;
  animation: illusShine 2.8s linear infinite;
}
.illus-pos__base {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 18px;
  background: linear-gradient(180deg, #1a2138 0%, #0a1224 100%);
  border-radius: 0 0 8px 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.illus-pos__receipt {
  position: absolute;
  top: 0;
  right: 8px;
  width: 70px;
  height: 110px;
  background: var(--white);
  border-radius: 4px 4px 1px 1px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.40);
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: illusFloat 3.2s ease-in-out infinite;
  transform-origin: top center;
}
.illus-pos__receipt::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 6px;
  background:
    linear-gradient(135deg, transparent 33.33%, var(--white) 33.33%, var(--white) 66.66%, transparent 66.66%) 0 0/6px 6px,
    linear-gradient(45deg, transparent 33.33%, var(--white) 33.33%, var(--white) 66.66%, transparent 66.66%) 0 0/6px 6px;
}
.illus-pos__receipt-line {
  height: 3px;
  background: rgba(10, 37, 64, 0.18);
  border-radius: 1px;
}
.illus-pos__receipt-line:first-child { background: rgba(10, 37, 64, 0.45); width: 60%; margin-bottom: 4px; }
.illus-pos__receipt-line:nth-child(2) { width: 90%; }
.illus-pos__receipt-line:nth-child(3) { width: 70%; }
.illus-pos__receipt-line:nth-child(4) { width: 80%; }
.illus-pos__receipt-line:nth-child(5) { width: 50%; background: var(--cyan); height: 4px; margin-top: 6px; }

/* ============================================
   ERP / SUNUCU İLLÜSTRASYONU
   ============================================ */
.illus-erp {
  position: relative;
  width: 280px;
  height: 240px;
  z-index: 1;
}
.illus-erp__rack {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: linear-gradient(160deg, #1a2138 0%, #0a1224 100%);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}
.illus-erp__server {
  height: 30px;
  background: linear-gradient(90deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.10) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 8px;
  position: relative;
}
.illus-erp__server::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 0 rgba(16, 214, 132, 0.6);
  animation: dotPulse 2s ease-in-out infinite;
}
.illus-erp__server-bars {
  flex: 1;
  display: flex;
  gap: 3px;
}
.illus-erp__server-bar {
  flex: 1;
  height: 4px;
  background: rgba(0, 200, 255, 0.20);
  border-radius: 1px;
}
.illus-erp__server-bar--active { background: var(--cyan); }
.illus-erp__server:nth-child(2)::before { animation-delay: 0.3s; background: var(--cyan); box-shadow: 0 0 0 0 rgba(0, 200, 255, 0.6); }
.illus-erp__server:nth-child(3)::before { animation-delay: 0.6s; background: var(--blue);  box-shadow: 0 0 0 0 rgba(63, 121, 245, 0.6); }
.illus-erp__server:nth-child(4)::before { animation-delay: 0.9s; background: var(--amber); box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.6); }
.illus-erp__server:nth-child(5)::before { animation-delay: 1.2s; }

.illus-erp__scan {
  position: absolute;
  left: 16px;
  right: 16px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  filter: blur(1px);
  animation: scanLine 3s ease-in-out infinite;
}

/* ============================================
   ERP — MODÜL AKIŞ DİYAGRAMI (yeni)
   ============================================ */
.illus-erp-flow {
  position: relative;
  width: 460px;
  height: 380px;
  z-index: 1;
  font-family: var(--font-display);
}

/* Merkez ERP çekirdeği */
.illus-erp-flow__core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7C5CFA 0%, #5B3DC9 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow:
    0 0 0 12px rgba(124, 92, 250, 0.10),
    0 0 0 24px rgba(124, 92, 250, 0.05),
    0 16px 40px rgba(124, 92, 250, 0.40);
  z-index: 5;
}
.illus-erp-flow__core::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px dashed rgba(124, 92, 250, 0.40);
  animation: orbitRotate 24s linear infinite;
}
.illus-erp-flow__core-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.illus-erp-flow__core-text {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 2px;
}
.illus-erp-flow__core-pulse {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  margin-top: 4px;
  animation: dotPulse 1.4s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.6);
}

/* Modül kartları (etrafa dağılmış) */
.illus-erp-flow__module {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 10px;
  padding: 8px 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.30),
    0 0 0 1px rgba(124, 92, 250, 0.20);
  z-index: 4;
  min-width: 100px;
}
.illus-erp-flow__module-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: rgba(124, 92, 250, 0.12);
  border: 1px solid rgba(124, 92, 250, 0.25);
  color: #7C5CFA;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.illus-erp-flow__module-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.illus-erp-flow__module-name {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--on-light);
  letter-spacing: -0.01em;
}
.illus-erp-flow__module-stat {
  font-size: 7.5px;
  color: #7C5CFA;
  font-weight: 700;
  margin-top: 1px;
}

.illus-erp-flow__module--finance  { top: 6%;  left: 4%;  animation: illusFloat 4s ease-in-out infinite; }
.illus-erp-flow__module--stock    { top: 14%; right: 4%; animation: illusFloat 4s ease-in-out infinite reverse; animation-delay: 0.3s; }
.illus-erp-flow__module--sales    { bottom: 14%; right: 4%; animation: illusFloat 4s ease-in-out infinite; animation-delay: 0.6s; }
.illus-erp-flow__module--prod     { bottom: 6%; left: 6%;  animation: illusFloat 4s ease-in-out infinite reverse; animation-delay: 0.9s; }
.illus-erp-flow__module--hr       { top: 50%; right: 0; transform: translateY(-50%); animation: illusFloat 5s ease-in-out infinite; animation-delay: 1.2s; }
.illus-erp-flow__module--report   { top: 50%; left: 0; transform: translateY(-50%); animation: illusFloat 5s ease-in-out infinite reverse; animation-delay: 1.5s; }

/* Veri akış çizgileri (SVG ile dış katmanda yapılacak) */
.illus-erp-flow__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.illus-erp-flow__line {
  stroke: rgba(124, 92, 250, 0.50);
  stroke-width: 1.5;
  stroke-dasharray: 4 4;
  fill: none;
  animation: dashFlow 3s linear infinite;
}
@keyframes dashFlow {
  to { stroke-dashoffset: -16; }
}

/* Üst KPI banner */
.illus-erp-flow__kpi {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 90px));
  display: flex;
  gap: 6px;
  z-index: 6;
}
.illus-erp-flow__kpi-chip {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(124, 92, 250, 0.30);
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 8px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
}
.illus-erp-flow__kpi-chip--up { color: var(--emerald); border-color: rgba(16,214,132,0.30); }

/* ============================================
   AĞ / WIFI İLLÜSTRASYONU
   ============================================ */
.illus-network {
  position: relative;
  width: 320px;
  height: 280px;
  z-index: 1;
}
.illus-network__router {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow:
    0 0 0 8px rgba(0, 200, 255, 0.10),
    0 0 0 16px rgba(0, 200, 255, 0.05),
    0 16px 40px rgba(0, 200, 255, 0.30);
  z-index: 5;
}
.illus-network__wave {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  transform: translate(-50%, -50%);
  animation: wifiWave 2.4s ease-out infinite;
  z-index: 1;
}
.illus-network__wave--2 { animation-delay: 0.8s; }
.illus-network__wave--3 { animation-delay: 1.6s; }

.illus-network__node {
  position: absolute;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.30),
    0 0 0 1px rgba(0, 200, 255, 0.20);
  z-index: 4;
  animation: illusFloat 4s ease-in-out infinite;
}
.illus-network__node--tl { top: 8%;  left: 8%;  }
.illus-network__node--tr { top: 8%;  right: 8%; animation-delay: 0.5s; }
.illus-network__node--bl { bottom: 8%; left: 8%;  animation-delay: 1s; }
.illus-network__node--br { bottom: 8%; right: 8%; animation-delay: 1.5s; }

.illus-network__line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 0 50%;
  height: 1.5px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  z-index: 2;
  opacity: 0.6;
}

/* ============================================
   AĞ TOPOLOJİSİ (yeni — yatay topology diyagramı)
   ============================================ */
.illus-net-topo {
  position: relative;
  width: 460px;
  height: 360px;
  z-index: 1;
  font-family: var(--font-display);
}

/* Bina/lokasyon kartları */
.illus-net-topo__loc {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(16, 214, 132, 0.25);
  border-radius: 10px;
  padding: 10px;
  width: 130px;
  backdrop-filter: blur(6px);
}
.illus-net-topo__loc-title {
  font-size: 9px;
  font-weight: 700;
  color: var(--emerald);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.illus-net-topo__loc-title::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--emerald);
  border-radius: 50%;
  animation: dotPulse 1.6s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(16,214,132,0.6);
}
.illus-net-topo__device {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 8.5px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 4px;
}
.illus-net-topo__device:last-child { margin-bottom: 0; }
.illus-net-topo__device-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: rgba(16, 214, 132, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
  flex-shrink: 0;
}
.illus-net-topo__device-bar {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.10);
  border-radius: 2px;
  overflow: hidden;
}
.illus-net-topo__device-bar::after {
  content: '';
  display: block;
  height: 100%;
  width: 70%;
  background: var(--emerald);
}

/* Lokasyon konumları */
.illus-net-topo__loc--hq    { top: 8%;   left: 50%; transform: translateX(-50%); }
.illus-net-topo__loc--branch1 { top: 50%;  left: 4%; }
.illus-net-topo__loc--branch2 { top: 50%;  right: 4%; }
.illus-net-topo__loc--cloud { bottom: 8%; left: 50%; transform: translateX(-50%); }

/* Merkez switch */
.illus-net-topo__switch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--emerald) 0%, #0AA86A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 5;
  box-shadow:
    0 0 0 6px rgba(16, 214, 132, 0.10),
    0 0 0 14px rgba(16, 214, 132, 0.05),
    0 12px 32px rgba(16, 214, 132, 0.40);
}
.illus-net-topo__switch::before {
  content: 'CORE';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--emerald);
}

/* Bağlantı çizgileri (SVG) */
.illus-net-topo__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.illus-net-topo__path {
  stroke: rgba(16, 214, 132, 0.40);
  stroke-width: 1.5;
  stroke-dasharray: 5 4;
  fill: none;
  animation: dashFlow 3s linear infinite;
}

/* ============================================
   GÜVENLİK KAMERA İLLÜSTRASYONU
   ============================================ */
.illus-security {
  position: relative;
  width: 320px;
  height: 240px;
  z-index: 1;
}
.illus-security__monitor {
  position: absolute;
  inset: 20px;
  background: linear-gradient(160deg, #1a2138 0%, #0a1224 100%);
  border-radius: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.40);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
}
.illus-security__cam {
  background: linear-gradient(135deg, #0A2540 0%, #061528 100%);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 200, 255, 0.18);
}
.illus-security__cam::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 30%, rgba(0, 200, 255, 0.20) 0%, transparent 70%);
}
.illus-security__cam::after {
  content: 'REC';
  position: absolute;
  top: 4px;
  right: 4px;
  font-family: var(--font-display);
  font-size: 7px;
  color: var(--rose);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.illus-security__rec-dot {
  position: absolute;
  top: 6px;
  left: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rose);
  animation: dotPulse 1.4s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(244, 63, 94, 0.6);
}
.illus-security__cam-target {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border: 1px solid rgba(0, 200, 255, 0.50);
  border-radius: 4px;
}
.illus-security__cam-target::before,
.illus-security__cam-target::after {
  content: '';
  position: absolute;
  background: var(--cyan);
}
.illus-security__cam-target::before {
  top: 50%; left: -5px; right: -5px; height: 1px;
}
.illus-security__cam-target::after {
  left: 50%; top: -5px; bottom: -5px; width: 1px;
}
.illus-security__plate {
  position: absolute;
  bottom: 4px;
  left: 4px;
  background: var(--white);
  color: var(--on-light);
  font-family: 'Courier New', monospace;
  font-size: 7px;
  font-weight: 700;
  padding: 1px 4px;
  border-radius: 1px;
  letter-spacing: 0.05em;
}

/* ============================================
   GÜVENLİK — TEK KAMERA CANLI YAYIN (yeni)
   ============================================ */
.illus-cam-live {
  position: relative;
  width: 460px;
  height: 360px;
  z-index: 1;
  font-family: var(--font-display);
}

.illus-cam-live__monitor {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a140b 0%, #0a0704 100%);
  border-radius: 14px;
  padding: 12px;
  border: 1px solid rgba(245, 166, 35, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.50);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.illus-cam-live__topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.illus-cam-live__rec {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(244, 63, 94, 0.18);
  border: 1px solid rgba(244, 63, 94, 0.40);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 9px;
  font-weight: 800;
  color: var(--rose);
  letter-spacing: 0.10em;
}
.illus-cam-live__rec::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
  animation: dotPulse 1.2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(244, 63, 94, 0.6);
}
.illus-cam-live__cam-name {
  font-size: 9px;
  color: rgba(255,255,255,0.70);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.illus-cam-live__time {
  margin-left: auto;
  font-size: 9px;
  color: var(--amber);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* Ana kamera görünümü */
.illus-cam-live__view {
  flex: 1;
  background: linear-gradient(180deg, #1a2e3e 0%, #0a1828 60%, #2a1f0a 100%);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
/* Yatay yol (perspektif) */
.illus-cam-live__view::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 220px solid transparent;
  border-right: 220px solid transparent;
  border-bottom: 100px solid rgba(80, 80, 100, 0.25);
}
/* Yol şeritleri */
.illus-cam-live__view::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 100px;
  background: repeating-linear-gradient(
    180deg,
    rgba(245, 166, 35, 0.50) 0px,
    rgba(245, 166, 35, 0.50) 12px,
    transparent 12px,
    transparent 22px
  );
  animation: roadFlow 1.5s linear infinite;
}
@keyframes roadFlow {
  to { background-position-y: 22px; }
}

/* Araç silüeti */
.illus-cam-live__car {
  position: absolute;
  bottom: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 56px;
  background: linear-gradient(180deg, #404550 0%, #1a1d24 100%);
  border-radius: 10px 10px 6px 6px;
  z-index: 2;
}
.illus-cam-live__car::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 12px;
  right: 12px;
  height: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(0,0,0,0.30) 100%);
  border-radius: 8px 8px 2px 2px;
}
.illus-cam-live__car::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 8px;
  right: 8px;
  height: 6px;
  background: #1a1d24;
  border-radius: 0 0 6px 6px;
}

/* Plaka kutusu */
.illus-cam-live__plate {
  position: absolute;
  bottom: 28%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--on-light);
  font-family: 'Courier New', monospace;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 2px;
  letter-spacing: 0.05em;
  z-index: 3;
  border: 1.5px solid #000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* Tanıma kutusu (bounding box) */
.illus-cam-live__bbox {
  position: absolute;
  bottom: 22%;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 90px;
  border: 2px solid var(--cyan);
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 0 0 1000px rgba(0,0,0,0.10) inset;
  animation: bboxPulse 2s ease-in-out infinite;
}
.illus-cam-live__bbox::before,
.illus-cam-live__bbox::after {
  content: '';
  position: absolute;
  background: var(--cyan);
}
.illus-cam-live__bbox::before {
  top: -4px; bottom: -4px; left: 50%; width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, var(--cyan), transparent);
}
.illus-cam-live__bbox::after {
  left: -4px; right: -4px; top: 50%; height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
@keyframes bboxPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.5; }
}

/* Plaka tanıma sonuç paneli */
.illus-cam-live__result {
  position: absolute;
  top: 14%;
  right: 5%;
  background: rgba(10, 14, 24, 0.85);
  border: 1px solid rgba(0, 200, 255, 0.40);
  border-radius: 6px;
  padding: 7px 10px;
  z-index: 3;
  backdrop-filter: blur(8px);
  min-width: 130px;
}
.illus-cam-live__result-label {
  font-size: 7.5px;
  color: var(--cyan);
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.illus-cam-live__result-value {
  font-size: 13px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-top: 2px;
  font-family: 'Courier New', monospace;
}
.illus-cam-live__result-meta {
  font-size: 8px;
  color: rgba(255,255,255,0.55);
  margin-top: 3px;
  display: flex;
  justify-content: space-between;
}
.illus-cam-live__result-meta span:last-child {
  color: var(--emerald);
  font-weight: 700;
}

/* Tarama çizgisi */
.illus-cam-live__scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  filter: blur(0.5px);
  animation: scanLine 3s ease-in-out infinite;
  z-index: 4;
}

/* Mini kamera grid (alt sıra) */
.illus-cam-live__minis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  height: 60px;
  flex-shrink: 0;
}
.illus-cam-live__mini {
  background: linear-gradient(135deg, #0A2540 0%, #061528 100%);
  border-radius: 5px;
  position: relative;
  border: 1px solid rgba(0, 200, 255, 0.18);
  overflow: hidden;
}
.illus-cam-live__mini::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 30%, rgba(0, 200, 255, 0.18) 0%, transparent 70%);
}
.illus-cam-live__mini::after {
  content: 'REC';
  position: absolute;
  top: 3px;
  right: 3px;
  font-size: 6px;
  color: var(--rose);
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* ============================================
   TEKNİK SERVİS — KANBAN TİCKET QUEUE (yeni)
   ============================================ */
.illus-svc-board {
  position: relative;
  width: 460px;
  height: 360px;
  z-index: 1;
  font-family: var(--font-display);
}
.illus-svc-board__panel {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a0c12 0%, #0a0507 100%);
  border-radius: 14px;
  padding: 12px;
  border: 1px solid rgba(244, 63, 94, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.50);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.illus-svc-board__topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.illus-svc-board__title {
  font-size: 10px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.05em;
}
.illus-svc-board__title::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--rose);
  border-radius: 50%;
  margin-right: 6px;
  animation: dotPulse 1.4s ease-in-out infinite;
}
.illus-svc-board__filter {
  margin-left: auto;
  display: flex;
  gap: 4px;
}
.illus-svc-board__chip {
  font-size: 7.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 2px 7px;
  letter-spacing: 0.05em;
}
.illus-svc-board__chip--active {
  color: var(--rose);
  background: rgba(244, 63, 94, 0.15);
  border-color: rgba(244, 63, 94, 0.35);
}

/* Kolonlar */
.illus-svc-board__cols {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  min-height: 0;
}
.illus-svc-board__col {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 0;
}
.illus-svc-board__col-title {
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.50);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 4px;
}
.illus-svc-board__col-count {
  background: rgba(255,255,255,0.10);
  font-size: 7.5px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 999px;
  color: var(--white);
}

/* Ticket kartı */
.illus-svc-board__ticket {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 6px 7px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
}
.illus-svc-board__ticket::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--rose);
  border-radius: 6px 0 0 6px;
}
.illus-svc-board__ticket--urgent::before { background: var(--rose); }
.illus-svc-board__ticket--med::before    { background: var(--amber); }
.illus-svc-board__ticket--low::before    { background: var(--cyan); }
.illus-svc-board__ticket--done {
  opacity: 0.65;
  background: rgba(16, 214, 132, 0.08);
  border-color: rgba(16, 214, 132, 0.18);
}
.illus-svc-board__ticket--done::before { background: var(--emerald); }

.illus-svc-board__ticket-id {
  font-size: 7px;
  color: rgba(255,255,255,0.45);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.illus-svc-board__ticket-title {
  font-size: 9px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}
.illus-svc-board__ticket-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 7px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}
.illus-svc-board__ticket-avatar {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--g-accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6px;
  font-weight: 800;
}
.illus-svc-board__ticket--active {
  border-color: rgba(244, 63, 94, 0.40);
  box-shadow: 0 0 0 1px rgba(244, 63, 94, 0.30);
  animation: illusPulse 2s ease-in-out infinite;
}

/* Sayaç bandı altta */
.illus-svc-board__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  flex-shrink: 0;
}
.illus-svc-board__metric {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 5px 8px;
  text-align: center;
}
.illus-svc-board__metric-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.illus-svc-board__metric-num--good { color: var(--emerald); }
.illus-svc-board__metric-label {
  font-size: 7px;
  color: rgba(255,255,255,0.50);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-weight: 700;
  margin-top: 2px;
}

/* ============================================
   TEKNİK SERVİS / BAKIM İLLÜSTRASYONU
   ============================================ */
.illus-service {
  position: relative;
  width: 280px;
  height: 240px;
  z-index: 1;
}
.illus-service__laptop {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 140px;
  background: linear-gradient(160deg, #1a2138 0%, #0a1224 100%);
  border-radius: 10px 10px 4px 4px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.40);
}
.illus-service__laptop-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0A2540 0%, #0E2A48 100%);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.illus-service__base {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 8px;
  background: linear-gradient(180deg, #2a3252 0%, #1a2138 100%);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.30);
}
.illus-service__base::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 0 0 4px 4px;
}
.illus-service__progress {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  height: 4px;
  background: rgba(0, 200, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
}
.illus-service__progress::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--g-accent);
  width: 70%;
  border-radius: 2px;
  animation: illusShine 2s ease-in-out infinite alternate;
}
.illus-service__wrench {
  position: absolute;
  top: 30%;
  right: 8%;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--g-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 12px 32px rgba(0, 200, 255, 0.40);
  animation: illusFloat 3.4s ease-in-out infinite;
  z-index: 3;
}
.illus-service__check {
  position: absolute;
  top: 20%;
  left: 6%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.30);
  animation: illusFloat 3s ease-in-out infinite reverse;
  animation-delay: 0.5s;
  z-index: 3;
}

/* ============================================
   RESTORAN OTOMASYONU İLLÜSTRASYONU
   Ana panel: Dashboard (masa planı + sipariş listesi)
   Yan: Mobil sipariş bildirimi (Yemeksepeti)
   Üst: Mutfak fişi
   ============================================ */
.illus-restaurant {
  position: relative;
  width: 460px;
  height: 360px;
  z-index: 1;
  font-family: var(--font-display);
}

/* === Ana Dashboard Panel === */
.illus-rest__dashboard {
  position: absolute;
  top: 30px;
  left: 0;
  width: 380px;
  height: 290px;
  background: linear-gradient(160deg, #14223a 0%, #08121f 100%);
  border-radius: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(0, 200, 255, 0.08) inset;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
}
.illus-rest__dashboard::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(0, 200, 255, 0.10) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 14px;
}

/* Dashboard üst bar */
.illus-rest__topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
}
.illus-rest__brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--g-accent);
  box-shadow: 0 0 12px rgba(0, 200, 255, 0.6);
}
.illus-rest__brand-text {
  font-size: 9px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.illus-rest__time {
  margin-left: auto;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.illus-rest__live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--emerald);
  margin-left: 6px;
  animation: dotPulse 1.6s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(16, 214, 132, 0.6);
}

/* Dashboard içerik gridi */
.illus-rest__content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
  flex: 1;
  position: relative;
  z-index: 1;
  min-height: 0;
}

/* Masa planı */
.illus-rest__floor {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.illus-rest__floor-title {
  font-size: 8px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.50);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.illus-rest__floor-title span:last-child {
  color: var(--cyan);
  font-weight: 800;
}
.illus-rest__tables {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  flex: 1;
}
.illus-rest__table {
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  position: relative;
  transition: all 0.3s;
}
.illus-rest__table-num {
  font-size: 11px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -0.02em;
}
.illus-rest__table-status {
  font-size: 6.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: rgba(255, 255, 255, 0.30);
  text-transform: uppercase;
}
/* Durum varyantları */
.illus-rest__table--occupied {
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.18), rgba(244, 63, 94, 0.08));
  border-color: rgba(244, 63, 94, 0.35);
}
.illus-rest__table--occupied .illus-rest__table-num    { color: var(--rose); }
.illus-rest__table--occupied .illus-rest__table-status { color: rgba(244, 63, 94, 0.75); }

.illus-rest__table--reserved {
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.18), rgba(245, 166, 35, 0.08));
  border-color: rgba(245, 166, 35, 0.35);
}
.illus-rest__table--reserved .illus-rest__table-num    { color: var(--amber); }
.illus-rest__table--reserved .illus-rest__table-status { color: rgba(245, 166, 35, 0.75); }

.illus-rest__table--paying {
  background: linear-gradient(135deg, rgba(0, 200, 255, 0.18), rgba(0, 200, 255, 0.08));
  border-color: var(--cyan-border);
  animation: illusPulse 2s ease-in-out infinite;
}
.illus-rest__table--paying .illus-rest__table-num    { color: var(--cyan); }
.illus-rest__table--paying .illus-rest__table-status { color: rgba(0, 200, 255, 0.75); }

.illus-rest__table--free .illus-rest__table-status { color: rgba(16, 214, 132, 0.7); }

/* Aktif Siparişler kolonu */
.illus-rest__orders {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}
.illus-rest__orders-title {
  font-size: 8px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.50);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 4px;
}
.illus-rest__orders-count {
  background: var(--g-accent);
  color: var(--white);
  font-size: 8px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 999px;
  letter-spacing: 0;
}
.illus-rest__order-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 5px;
  padding: 6px 7px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.illus-rest__order-table {
  background: var(--g-accent);
  color: var(--white);
  font-size: 8px;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 3px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.illus-rest__order-info { flex: 1; min-width: 0; }
.illus-rest__order-name {
  font-size: 8.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.illus-rest__order-meta {
  font-size: 7.5px;
  color: rgba(255, 255, 255, 0.40);
  margin-top: 1px;
}
.illus-rest__order-card--new {
  background: linear-gradient(135deg, rgba(0, 200, 255, 0.14), rgba(0, 200, 255, 0.04));
  border-color: var(--cyan-border);
  animation: illusPulse 2s ease-in-out infinite;
}
.illus-rest__order-card--new .illus-rest__order-table {
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 200, 255, 0.5);
}

/* === Yan: Yemeksepeti telefonu === */
.illus-rest__phone {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 130px;
  height: 220px;
  background: linear-gradient(160deg, #1a2138 0%, #0a1224 100%);
  border-radius: 16px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  z-index: 5;
  animation: illusFloat 3.2s ease-in-out infinite;
}
.illus-rest__phone::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 4px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 4px;
}
.illus-rest__phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #0A2540 0%, #07182d 100%);
  border-radius: 11px;
  padding: 14px 8px 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  overflow: hidden;
}
.illus-rest__phone-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  font-size: 6px;
  color: rgba(255, 255, 255, 0.40);
  font-weight: 700;
}
.illus-rest__phone-platform {
  background: linear-gradient(135deg, #ff0040, #c00030);
  color: var(--white);
  font-size: 7.5px;
  font-weight: 800;
  text-align: center;
  padding: 4px 0;
  border-radius: 4px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(255, 0, 64, 0.35);
  margin-top: 3px;
}
.illus-rest__phone-order {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 5px;
  padding: 5px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.illus-rest__phone-order-title {
  font-size: 7.5px;
  font-weight: 700;
  color: var(--white);
}
.illus-rest__phone-order-line {
  font-size: 6.5px;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  justify-content: space-between;
}
.illus-rest__phone-total {
  margin-top: auto;
  background: var(--g-accent);
  color: var(--white);
  font-size: 8px;
  font-weight: 800;
  text-align: center;
  padding: 5px;
  border-radius: 5px;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}
.illus-rest__phone-total::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  background-size: 200% 100%;
  animation: illusShine 2.4s linear infinite;
}

/* === Üst: Mutfak Fişi (KDS Ticket) === */
.illus-rest__ticket {
  position: absolute;
  top: 0;
  left: 30px;
  width: 150px;
  background: var(--white);
  border-radius: 6px 6px 2px 2px;
  padding: 10px 12px 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  z-index: 6;
  animation: illusFloat 3.6s ease-in-out infinite reverse;
  animation-delay: 0.5s;
  font-family: 'Courier New', monospace;
  transform: rotate(-3deg);
  transform-origin: top right;
}
.illus-rest__ticket::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background:
    linear-gradient(135deg, transparent 33.33%, var(--white) 33.33%, var(--white) 66.66%, transparent 66.66%) 0 0/8px 8px,
    linear-gradient(45deg, transparent 33.33%, var(--white) 33.33%, var(--white) 66.66%, transparent 66.66%) 0 0/8px 8px;
}
.illus-rest__ticket-header {
  text-align: center;
  padding-bottom: 6px;
  border-bottom: 1.5px dashed rgba(10, 37, 64, 0.18);
  margin-bottom: 6px;
}
.illus-rest__ticket-id {
  font-size: 11px;
  font-weight: 800;
  color: var(--on-light);
  letter-spacing: 0.05em;
}
.illus-rest__ticket-table {
  font-size: 8px;
  color: var(--on-light-3);
  margin-top: 1px;
}
.illus-rest__ticket-items {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 8px;
  color: var(--on-light);
}
.illus-rest__ticket-item {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}
.illus-rest__ticket-qty {
  color: var(--blue);
  font-weight: 800;
}
.illus-rest__ticket-stamp {
  margin-top: 6px;
  background: var(--emerald);
  color: var(--white);
  font-size: 7px;
  font-weight: 800;
  text-align: center;
  padding: 2px 0;
  border-radius: 2px;
  letter-spacing: 0.1em;
}

/* === Bildirim çanı === */
.illus-rest__bell {
  position: absolute;
  top: 110px;
  right: 100px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--g-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 7;
  box-shadow: 0 12px 32px rgba(0, 200, 255, 0.45);
  animation: illusFloat 2.6s ease-in-out infinite;
}
.illus-rest__bell::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  animation: signalPing 2s ease-out infinite;
}
.illus-rest__bell-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  background: var(--rose);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #14223a;
  padding: 0 4px;
}

/* ============================================
   KOMBO LAYOUT: Gerçek görsel + Dashboard
   (Restoran ve POS sayfalarında kullanılır)
   ============================================ */
.illus-combo {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 12px;
}

/* Üst: gerçek ürün görseli */
.illus-combo__product {
  flex: 0 0 38%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}
.illus-combo__product-frame {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 200, 255, 0.06) 0%, rgba(63, 121, 245, 0.04) 100%);
  border-radius: 14px;
  border: 1px solid rgba(0, 200, 255, 0.15);
  overflow: hidden;
  padding: 14px;
  animation: illusFloat 5s ease-in-out infinite;
}
.illus-combo__product-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0, 200, 255, 0.20) 0%, transparent 65%);
  pointer-events: none;
}
.illus-combo__product-frame::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 12px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.5) 0%, transparent 70%);
  filter: blur(8px);
  z-index: 0;
}
.illus-combo__product-frame img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.45));
}

/* Üst — sol etiket (gerçek görsel üzerinde) */
.illus-combo__product-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 6px;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  color: var(--on-light);
  box-shadow: 0 4px 12px rgba(0,0,0,0.30);
  z-index: 5;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.illus-combo__product-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  animation: dotPulse 1.6s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(16, 214, 132, 0.6);
}

/* Alt: dashboard */
.illus-combo__bottom {
  flex: 1;
  position: relative;
  min-height: 0;
}

/* Restoran kombosu — dashboard yeniden konumlanması */
.illus-rest-combo {
  width: 100%;
  height: 100%;
  position: relative;
}
.illus-rest-combo .illus-rest__dashboard {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.illus-rest-combo .illus-rest__dashboard .illus-rest__tables {
  grid-template-columns: repeat(6, 1fr);
}

/* POS kombosu için */
.illus-pos-combo {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.illus-pos-combo .illus-pos {
  width: 100%;
  height: 100%;
  max-height: 100%;
}
.illus-pos-combo .illus-pos__terminal {
  width: 60%;
  max-width: 220px;
  height: 75%;
  bottom: 25px;
}
.illus-pos-combo .illus-pos__base {
  width: 75%;
  max-width: 250px;
  height: 18px;
}
.illus-pos-combo .illus-pos__receipt {
  right: 10%;
  top: 5%;
  width: 22%;
  max-width: 90px;
  height: 70%;
  max-height: 130px;
}

@media (max-width: 768px) {
  .illus-restaurant { transform: scale(0.78); transform-origin: center; }
  .illus-rest-combo .illus-rest__dashboard .illus-rest__tables { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 480px) {
  .illus-restaurant { transform: scale(0.55); }
}

/* ============================================
   AYAKLI MONİTÖR İLLÜSTRASYON (PAGE)
   ============================================ */
.illus-kiosk {
  position: relative;
  width: 240px;
  z-index: 1;
}

/* ============================================
   RESPONSIVE
   ============================================ */
/* ============================================
   RESPONSIVE — TÜM İLLÜSTRASYONLAR
   ============================================ */
.illus__layer { transform-origin: center; }

@media (max-width: 1024px) {
  .illus { max-width: 100%; }
  .illus--tall { max-width: 100%; }
}

@media (max-width: 768px) {
  .illus { aspect-ratio: 1.15 / 1; }
  .illus--tall { aspect-ratio: 1 / 1.15; }
  .illus__layer { transform: scale(0.85); }
  /* Combo iç düzen — küçük ekrana uyum */
  .illus-combo { padding: 12px; gap: 10px; }
  .illus-combo__product { flex: 0 0 38%; }
  .illus-rest-combo .illus-rest__dashboard .illus-rest__tables {
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
  }
  /* Kanban — 3 kolondan 2 kolona düş */
  .illus-svc-board__cols { grid-template-columns: 1fr 1fr; }
  .illus-svc-board__col:nth-child(3) { display: none; }
}

@media (max-width: 560px) {
  .illus__layer { transform: scale(0.7); }
  .illus--tall { aspect-ratio: 1 / 1.20; }
}

@media (max-width: 420px) {
  .illus__layer { transform: scale(0.58); }
}

@media (max-width: 360px) {
  .illus__layer { transform: scale(0.50); }
}
