/* ============================================================
 * home-process.css
 * Otomatik olarak home-platform.css dosyasından ayrıştırıldı.
 * Kaynak satırlar: L6844 – L7411
 * ============================================================ */

/* ═══════════════════════════════════════════════════════════════════
   AB-VIS — Animasyonlu panel görseli
════════════════════════════════════════════════════════════════════ */

.ab-vis {
  --vis-accent: #0e9faa;
  width: 100%;
  border: 1px solid #e4ebf3;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 40px rgba(10, 37, 64, .09);
}

.ab-vis--teal {
  --vis-accent: #0e9faa;
}

.ab-vis--orange {
  --vis-accent: #f28b3c;
}

.ab-vis--purple {
  --vis-accent: #635bff;
}

.ab-vis--rose {
  --vis-accent: #df4b88;
}

/* Top: ring + bars */
.ab-vis__top {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 20px 20px 16px;
  border-bottom: 1px solid #f0f4f9;
  align-items: center;
}

/* Ring */
.ab-vis__ring-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ab-vis__ring-svg {
  width: 88px;
  height: 88px;
  transform: rotate(-90deg);
}

.ab-vis__ring-bg {
  fill: none;
  stroke: #edf2f7;
  stroke-width: 6;
}

.ab-vis__ring-fill {
  fill: none;
  stroke: var(--vis-accent);
  stroke-width: 6;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.4s cubic-bezier(.4, 0, .2, 1);
}

.ab-vis__ring-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  line-height: 1.15;
}

.ab-vis__ring-label strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0a2540;
  letter-spacing: -.03em;
}

.ab-vis__ring-label span {
  display: block;
  font-size: .52rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--vis-accent);
  text-transform: uppercase;
}

.ab-vis__ring-label small {
  display: block;
  font-size: .5rem;
  color: #94a3b8;
  line-height: 1.2;
}

/* Bars */
.ab-vis__bars {
  display: grid;
  gap: 10px;
}

.ab-vis__bar {
  display: grid;
  gap: 4px;
}

.ab-vis__bar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ab-vis__bar-header span {
  font-size: .65rem;
  font-weight: 600;
  color: #566478;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ab-vis__bar-header em {
  font-style: normal;
  font-size: .62rem;
  font-weight: 700;
  color: var(--vis-accent);
  margin-left: 8px;
  flex-shrink: 0;
}

.ab-vis__bar-track {
  height: 5px;
  background: #edf2f7;
  border-radius: 999px;
  overflow: hidden;
}

.ab-vis__bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--vis-accent), color-mix(in srgb, var(--vis-accent) 70%, #635bff));
  transition: width 1.2s cubic-bezier(.4, 0, .2, 1);
}

/* Steps timeline */
.ab-vis__steps {
  padding: 14px 20px;
  display: grid;
  gap: 0;
}

.ab-vis__step {
  display: grid;
  grid-template-columns: 16px 1fr 20px;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid #f5f7fa;
}

.ab-vis__step:last-child {
  border-bottom: none;
}

.ab-vis__step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
  border: 2px solid #cbd5e1;
  transition: background-color .3s, border-color .3s;
}

.ab-vis__step.is-done .ab-vis__step-dot {
  background: var(--vis-accent);
  border-color: var(--vis-accent);
}

.ab-vis__step.is-active .ab-vis__step-dot {
  background: color-mix(in srgb, var(--vis-accent) 20%, #fff);
  border-color: var(--vis-accent);
}

.ab-vis__step-label {
  font-size: .73rem;
  font-weight: 500;
  color: #7a8fa3;
  line-height: 1.3;
}

.ab-vis__step.is-done .ab-vis__step-label {
  color: #0a2540;
  font-weight: 600;
}

.ab-vis__step.is-active .ab-vis__step-label {
  color: #0a2540;
  font-weight: 700;
}

.ab-vis__step-state {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ab-vis__step.is-done .ab-vis__step-state svg {
  width: 14px;
  height: 14px;
  color: var(--vis-accent);
}

/* Pulsing dot for active step */
.ab-vis__pulse {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vis-accent);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--vis-accent) 30%, transparent);
  animation: ab-pulse 1.8s ease-in-out infinite;
}

.ab-vis__pending {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dde6ef;
}

@keyframes ab-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--vis-accent) 30%, transparent);
  }

  50% {
    box-shadow: 0 0 0 7px color-mix(in srgb, var(--vis-accent) 0%, transparent);
  }
}

/* Panel activation: trigger ring + bar animations */
.ab-panel.is-active .ab-vis__ring-fill {
  /* offset set inline per panel, transition fires on is-active */
}

.ab-panel.is-active .ab-vis__bar-fill {
  width: var(--bar-pct) !important;
}

/* Small screen */
@media (max-width: 640px) {
  .ab-vis__top {
    grid-template-columns: 90px 1fr;
    gap: 12px;
    padding: 14px 16px 12px;
  }

  .ab-vis__ring-svg {
    width: 76px;
    height: 76px;
  }

  .ab-vis__steps {
    padding: 10px 16px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   PROJECTS SECTION
════════════════════════════════════════════════════════════════════ */

.projects-section {
  background: #fff;
  border-top: 1px solid #e8eef5;
  border-bottom: 1px solid #e8eef5;
}

.home-announcements {
  background: #fff;
  border-bottom: 1px solid #e8eef5;
}

.home-announcements .section-head__main {
  max-width: 640px;
}

.home-announcements__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(201, 217, 231, .92);
  border-radius: 8px;
  color: #0a2540;
  background: #fff;
  font-size: .84rem;
  font-weight: 760;
  text-decoration: none;
}

.home-announcements__link:hover {
  transform: translateY(-1px);
}

.home-announcements__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-ann-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px 22px 20px;
  border: 1px solid #e3ebf3;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(248, 251, 253, .96) 100%);
  box-shadow: 0 18px 44px rgba(10, 37, 64, .05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.home-ann-card:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 159, 170, .22);
  box-shadow: 0 22px 54px rgba(10, 37, 64, .08);
}

.home-ann-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  color: #7c8da0;
  font-size: .74rem;
  font-weight: 600;
}

.home-ann-card__type {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-ann-card__type--duyuru {
  background: rgba(14, 159, 170, .12);
  color: #087f8a;
}

.home-ann-card__type--haber {
  background: rgba(73, 120, 232, .12);
  color: #315ecb;
}

.home-ann-card__type--basari {
  background: rgba(242, 139, 60, .14);
  color: #c96b20;
}

.home-ann-card__type--etkinlik {
  background: rgba(223, 75, 136, .13);
  color: #c03d73;
}

.home-ann-card__title {
  margin: 0 0 12px;
  color: #0a2540;
  font-size: 1.05rem;
  font-weight: 750;
  line-height: 1.38;
  letter-spacing: -.02em;
}

.home-ann-card__body {
  margin: 0;
  color: #607388;
  font-size: .88rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-ann-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
}

.home-ann-card__badge {
  color: #0e9faa;
  font-size: .74rem;
  font-weight: 800;
}

.home-ann-card__action {
  margin-left: auto;
  color: #0a2540;
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
}

.home-ann-card__action:hover {
  color: #0e9faa;
}

.home-announcements__list {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid rgba(201, 217, 231, .9);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.home-ann-row {
  display: grid;
  grid-template-columns: 44px 96px minmax(0, 1fr) 92px 38px;
  align-items: center;
  gap: 18px;
  min-height: 86px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(201, 217, 231, .72);
  background: #fff;
  transition: background-color .18s ease;
}

.home-ann-row:last-child {
  border-bottom: 0;
}

.home-ann-row:hover {
  background: linear-gradient(90deg, rgba(14, 159, 170, .035), #fff 46%);
}

.home-ann-row__index {
  color: #96a9ba;
  font-size: .78rem;
  font-weight: 780;
  line-height: 1;
}

.home-ann-row__meta {
  min-width: 0;
}

.home-ann-row__type {
  display: inline-flex;
  align-items: center;
  color: #087f8a;
  font-size: .72rem;
  font-weight: 780;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.home-ann-row__type--haber {
  color: #315ecb;
}

.home-ann-row__type--basari {
  color: #c96b20;
}

.home-ann-row__type--etkinlik {
  color: #c03d73;
}

.home-ann-row__content {
  min-width: 0;
}

.home-ann-row__content h3 {
  margin: 0 0 5px;
  color: #0a2540;
  font-size: .98rem;
  font-weight: 760;
  line-height: 1.28;
  letter-spacing: 0;
}

.home-ann-row__content p {
  margin: 0;
  color: #61768b;
  font-size: .84rem;
  font-weight: 500;
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-ann-row__date {
  justify-self: end;
  color: #7b8fa3;
  font-size: .78rem;
  font-weight: 700;
  white-space: nowrap;
}

.home-ann-row__action {
  justify-self: end;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(201, 217, 231, .9);
  border-radius: 8px;
  color: #0e9faa;
  background: #fff;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition: border-color .18s ease, transform .18s ease;
}

.home-ann-row:hover .home-ann-row__action {
  border-color: rgba(14, 159, 170, .38);
  transform: translateX(2px);
}

.projects-head {
  max-width: 560px;
  margin-bottom: clamp(28px, 4vw, 48px);
  display: grid;
  gap: 10px;
}

.projects-head__kicker {
  color: var(--color-brand);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.projects-head__title {
  font-size: clamp(1.35rem, 1.9vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -.025em;
  color: #0a2540;
  line-height: 1.22;
}

