/* ============================================================
   Customers page — segment rows, ordering steps, closing CTA
   Loaded after css/style.css; page-scoped styles only.
   ============================================================ */

/* --- Alternating segment rows --- */
.seg-rows { display: grid; gap: clamp(52px, 7vw, 96px); }

.seg-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.seg-row-media { position: relative; }
.seg-row-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}
.seg-row-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(23, 10, 17, .78);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.seg-row.flip .seg-row-media { order: 2; }
.seg-row.flip .seg-row-copy { order: 1; }

.seg-row-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--ink);
  line-height: 1.15;
  margin: 6px 0 14px;
}
.seg-row-copy p { color: var(--muted); font-size: .98rem; margin-bottom: 12px; }
.seg-row-copy .eyebrow { margin-bottom: 0; }

.seg-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-weight: 700;
  font-size: .92rem;
  color: var(--pink-deep);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: gap .2s ease, border-color .2s ease;
}
.seg-link:hover { gap: 12px; border-color: var(--pink-deep); }

/* --- How ordering works strip --- */
.order-steps { background: var(--paper-2); }
.order-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 12px;
}
.order-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px 24px;
  text-align: center;
}
.order-step-num {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--leaf);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  box-shadow: 0 8px 20px -8px rgba(76, 159, 19, .55);
}
.order-step h3 { font-size: 1.02rem; color: var(--ink); margin-bottom: 8px; }
.order-step p { font-size: .88rem; color: var(--muted); }
.order-step-arrow {
  position: absolute;
  top: 50%;
  right: -19px;
  transform: translateY(-50%);
  color: var(--pink);
  z-index: 1;
}

/* --- Closing CTA panel --- */
.cust-cta {
  background: linear-gradient(135deg, var(--paper-2), #fff 60%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 72px);
  text-align: center;
}
.cust-cta .section-title { margin-bottom: 14px; }
.cust-cta p { max-width: 640px; margin: 0 auto 26px; color: var(--muted); }

/* --- Responsive --- */
@media (max-width: 900px) {
  .seg-row,
  .seg-row.flip { grid-template-columns: 1fr; }
  .seg-row.flip .seg-row-media { order: 0; }
  .seg-row.flip .seg-row-copy { order: 1; }
  .order-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .order-step-arrow { display: none; }
}
@media (max-width: 540px) {
  .order-steps-grid { grid-template-columns: 1fr; }
}
