/* =====================================================================
   ADROAS — css/pages.css
   Page-specific sections: system preview dashboard, packages grid.
   ===================================================================== */


/* ─────────────────────────────────────────────────────────────────────
   15. SYSTEM PREVIEW SECTION STYLES
   ───────────────────────────────────────────────────────────────────── */
.preview-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: center;
}

.preview-text {
  text-align: left;
}

.preview-text .section-title {
  margin-bottom: 1.5rem;
}

.flow-container {
  margin-top: 2.25rem;
}

.flow-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--steel);
  margin: 0 0 1.15rem;
}

.flow-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}

.flow-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem;
  background: rgba(248, 246, 239, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.flow-chip:hover {
  transform: translateY(-1px);
  border-color: var(--soft-blue);
}

.flow-chip.highlight {
  background: rgba(47, 93, 140, 0.06);
  border-color: rgba(47, 93, 140, 0.2);
  color: var(--blue);
}

.flow-chip__dot {
  width: 6px;
  height: 6px;
  background-color: var(--muted);
  border-radius: 50%;
  flex-shrink: 0;
}

.flow-chip.highlight .flow-chip__dot {
  background-color: var(--blue);
}

.flow-arrow {
  color: var(--steel);
  font-size: 1.15rem;
  font-weight: bold;
  opacity: 0.5;
}

.preview-visual {
  width: 100%;
}

.dashboard-card {
  background: rgba(248, 246, 239, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  padding: 2.25rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(24, 38, 58, 0.02);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  padding-bottom: 0.88rem;
}

.dashboard-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dashboard-badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--steel);
  background: rgba(255, 255, 255, 0.62);
  padding: 0.25rem 0.625rem;
  border-radius: 30px;
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.stat-item {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(15, 23, 42, 0.04);
  border-radius: 14px;
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat-val {
  font-size: 1.88rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.stat-lbl {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.3;
}

.table-container {
  overflow-x: auto;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.preview-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.88rem;
  min-width: 420px;
}

.preview-table th,
.preview-table td {
  padding: 0.88rem 1.25rem;
}

.preview-table th {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--steel);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.preview-table td {
  border-bottom: 1px solid rgba(15, 23, 42, 0.03);
  color: var(--muted);
  font-weight: 500;
}

.preview-table tr:last-child td {
  border-bottom: none;
}

.cell-name {
  color: var(--navy) !important;
  font-weight: 600 !important;
}

.badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  letter-spacing: 0.01em;
}

.badge--sent {
  background: rgba(78, 124, 168, 0.1);
  color: var(--steel);
}

.badge--scheduled {
  background: rgba(243, 214, 170, 0.18);
  color: #b07c30;
}

.badge--received {
  background: rgba(47, 93, 140, 0.1);
  color: var(--blue);
}


/* ─────────────────────────────────────────────────────────────────────
   16. CHECKLIST STYLES (package-includes / include-check)
   Used on what-we-do.html bundle section.
   ───────────────────────────────────────────────────────────────────── */
.package-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.88rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  padding-top: 1.5rem;
}

.package-includes li {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.include-check {
  color: var(--blue);
  font-weight: bold;
}

