/* Kilya Clinic "Ilk randevunuzda ne olacak?" adim bolumu.
   Yerlesim: solda baslik + taahhut kutusu, sagda ince cizgilerle
   ayrilmis adim listesi. Yatay alan dort sutuna bolunmuyor.
   Tipografi sitenin mevcut olculerinden alindi (Gabarito, lacivert
   govde metni, 1100px icerik izgarasi). */

.kc-steps {
  --kc-brand: #16489F;
  --kc-tint: #f1f7fc;
  --kc-line: rgba(22, 72, 159, 0.14);

  padding: 110px 0;
}

.kc-steps__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 0 80px;
  max-width: 1140px; /* 20px dolgu ile net 1100px - sitenin izgarasi */
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* --- sol sutun --- */

.kc-steps__title {
  margin: 0 0 16px;
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--kc-brand);
}

.kc-steps__lead {
  margin: 0 0 36px;
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--kc-brand);
  opacity: 0.8;
}

/* Kapanis cumlesi dipnot degil: basligin altinda duran bir taahhut. */
.kc-steps__note {
  margin: 0;
  padding: 24px 26px;
  border-radius: 10px;
  background: var(--kc-tint);
  font-size: 16px;
  line-height: 1.6;
  color: var(--kc-brand);
  opacity: 0.9;
}

/* --- sag sutun: adim listesi --- */

.kc-steps__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.kc-steps__item {
  padding: 26px 0;
  border-top: 1px solid var(--kc-line);
}

.kc-steps__item:first-child {
  padding-top: 0;
  border-top: 0;
}

.kc-steps__item:last-child {
  padding-bottom: 0;
}

/* Numara lacivert: 13px'te acik mavi AA esigini (4.5:1) gecmiyordu. */
.kc-steps__num {
  display: block;
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--kc-brand);
  font-variant-numeric: tabular-nums;
}

.kc-steps__item-title {
  margin: 0 0 8px;
  font-size: clamp(19px, 1.7vw, 23px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--kc-brand);
}

.kc-steps__item-text {
  margin: 0;
  font-size: clamp(16px, 1.3vw, 18px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--kc-brand);
  opacity: 0.82;
}

/* --- tek sutuna dusen ekranlar --- */

@media (max-width: 899px) {
  .kc-steps {
    padding: 72px 0;
  }

  .kc-steps__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .kc-steps__lead {
    margin-bottom: 32px;
  }

  /* Dar ekranda taahhut kutusu listenin altina gecer. */
  .kc-steps__head {
    display: contents;
  }

  .kc-steps__title { order: 1; }
  .kc-steps__lead  { order: 2; }
  .kc-steps__list  { order: 3; }
  .kc-steps__note  { order: 4; margin-top: 36px; }
}
