/* ═══════════════════════════════════════════
   OFFLINE SECTION — Professional Alignment
   ═══════════════════════════════════════════ */
.offline-section {
  padding: 120px 0;
  background: var(--blue-950);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.offline-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}

.offline-section__content h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.offline-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.offline-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--blue-100);
}

.offline-list svg {
  color: #22c55e;
}

/* Devices Mockup Fix */
.offline-section__devices {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
}

.device {
  background: var(--slate-900);
  border: 8px solid var(--slate-800);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
}

.device--laptop {
  width: 360px;
  height: 240px;
}

.device--phone {
  width: 130px;
  height: 240px;
  border-width: 6px;
  border-radius: 24px;
}

.device__screen {
  width: 100%;
  height: 100%;
  background: var(--slate-950);
  position: relative;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.device__offline-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(239, 68, 68, 0.2);
  align-self: flex-start;
}

.offline-dot {
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 8px currentColor;
}

.device__mock-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.device__mock-row {
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  width: 100%;
}

.device__mock-row--short {
  width: 60%;
}

.device__mock-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.device__mock-card {
  height: 60px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
  .offline-section__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .offline-list {
    align-items: center;
  }

  .offline-section__devices {
    flex-wrap: wrap;
    justify-content: center;
  }

  .device--laptop {
    width: 300px;
    height: 200px;
  }

  .device--phone {
    width: 110px;
    height: 200px;
  }
}