/* ==========================================================================
   BIXYN — Service Detail Pages
   New "Deliverables" + "Process" sections for the individual service pages
   (Brand Identity, UX/UI Design, Web Development).

   Desktop : Deliverables + Process shown as ONE combined left/right section.
   iPad/Mob: Deliverables + Process shown as TWO separate, stacked sections.

   Extends the existing design system — all other sections reuse shared
   components (navbar, hero, faq, testimonials, cta, footer).
   ========================================================================== */

.deliverables-process {
  background-color: var(--color-bg);
}

/* Combined row wrapper (mirrors .container sizing on desktop) */
.dp__inner {
  width: 100%;
  max-width: calc(var(--container-max) + (var(--page-padding) * 3));
  margin-inline: auto;
  padding: 100px var(--page-padding);
  display: flex;
  align-items: flex-start;
  gap: var(--space-64);
}

.dp__col {
  flex: 1;
  min-width: 0;
}

.dp__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
}

/* ------------------------------------------------- Deliverables checklist */
.deliverables__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.deliverable-item {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 24px;
  color: var(--color-text-muted);
}

.deliverable-item img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ------------------------------------------------------------ Process list */
.process-list {
  display: flex;
  flex-direction: column;
}

.process-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}

.process-row:first-child {
  padding-top: 0;
}

.process-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.process-row__title {
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: 24px;
  line-height: 33.6px;
  color: var(--color-olive);
}

.text-lg {
  font-size: 14px; 
}

/* ============================================ TABLET (≤ 1024px) ============================================ */
@media (max-width: 1024px) {

  /* Split the combined section into two separate, full-width stacked sections */
  .deliverables-process {
    background-color: transparent;
  }

  .dp__inner {
    display: block;
    max-width: none;
    padding: 0;
  }

  .deliverables {
    background-color: var(--color-bg-alt);
  }

  .process-panel {
    background-color: var(--color-bg);
  }

  .dp__content {
    width: 100%;
    max-width: calc(var(--container-max) + (var(--page-padding) * 3));
    margin-inline: auto;
    padding: 80px var(--page-padding);
  }

  /* Deliverables become two columns on tablet */
  .deliverables__list {
    grid-template-columns: 1fr 1fr;
    gap: 18px var(--space-24);
  }
}

/* ============================================ MOBILE (≤ 640px) ============================================ */
@media (max-width: 640px) {

  .dp__content {
    padding-block: 80px 40px;
  }

  /* Deliverables back to a single column */
  .deliverables__list {
    grid-template-columns: 1fr;
    gap: var(--space-16);
  }

  .deliverable-item {
    font-size: var(--fs-body-sm);
    gap: var(--space-10);
  }

  .deliverable-item img {
    width: 18px;
    height: 18px;
  }

  .process-row__title {
    font-size: 20px;
    line-height: 30px;
  }
}

.text-lg {
  font-size: 14px; 
}

