

.process-head{
  text-align:center;
  margin-bottom: 40px;
  padding: 0 10px;
}

.process-title{
  margin: 0;
  font-size: clamp(22px, 2.2vw, 36px);
  font-weight: 950;
  letter-spacing: -.02em;
  color: rgba(255,255,255,.95);
  text-shadow: 0 18px 50px rgba(0,0,0,.35);
}

.process-kicker{
  margin: 12px auto 0;
  max-width: 75ch;
  font-weight: 650;
  line-height: 1.7;
  font-size: 17px;
  color: rgb(255, 255, 255);
}

/* GRID — 8 kart için optimize */
.process-grid{
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

/* CARD */
.process-card{
  border-radius: 20px;
  padding: 22px 20px 20px;
  min-height: 190px;

  background: rgba(5, 18, 42, .38);
  border: 1px solid rgba(255,255,255,.10);

  box-shadow:
    0 20px 70px rgba(0,0,0,.25),
    inset 0 0 0 1px rgba(255,255,255,.04);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition:
    transform .22s ease,
    border-color .22s ease,
    box-shadow .22s ease,
    background .22s ease;
}

.process-card:hover{
  transform: translateY(-6px);
  border-color: rgba(79,211,255,.35);
  box-shadow:
    0 28px 90px rgba(0,0,0,.32),
    0 0 0 6px rgba(79,211,255,.08);
  background: rgba(8, 24, 56, .45);
}

/* ÜST BÖLÜM */
.process-top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  margin-bottom: 14px;
}

/* STEP BADGE */
.process-step{
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 15px;
  padding: 7px 12px;
  border-radius: 999px;

  color: rgb(255, 255, 255);
  background: linear-gradient(90deg,
    rgba(79,211,255,.25),
    rgba(0,255,213,.18)
  );

  border: 1px solid rgba(79,211,255,.30);
}

/* ICON (SVG) — PROFESYONEL */
.process-icon{
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: rgb(255, 255, 255);

  background: rgb(79, 211, 255);
  border: 1px solid rgb(79, 211, 255);
  border-radius: 10px;

  box-shadow: 0 0 18px rgb(63, 95, 105);

  transition:
    transform .22s ease,
    box-shadow .22s ease,
    background .22s ease,
    border-color .22s ease,
    color .22s ease;
}

.process-icon svg{
  width: 16px;
  height: 16px;
  display: block;
}

.process-card:hover .process-icon{
  background: rgba(79,211,255,.16);
  border-color: rgba(79,211,255,.34);
  box-shadow: 0 0 26px rgba(79,211,255,.32);
  transform: scale(1.06);
  color: rgba(79,211,255,.95);
}

/* BAŞLIK */
.process-name{
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 900;
  color: rgb(255, 255, 255);
  letter-spacing: -.01em;
}

/* AÇIKLAMA */
.process-desc{
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
}

/* CTA */
.process-cta{
  margin-top: 50px;
  display:flex;
  gap: 18px;
  justify-content:center;
  align-items:center;
  flex-wrap: wrap;
}

.process-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: .02em;

  color: rgb(255, 255, 255);
  background: linear-gradient(
    90deg,
    rgb(19, 148, 192),
    rgba(0, 255, 213, 0.656),
    rgba(251, 190, 36, 0.556)
  );

  border: 1px solid rgb(0, 230, 103);

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.808),
    0 0 0 8px rgba(79,211,255,.08);

  transition:
    transform .22s ease,
    box-shadow .22s ease,
    filter .22s ease;

  text-decoration: none;
}

.process-btn:hover{
  transform: translateY(-3px);
  filter: saturate(1.12) brightness(1.05);
  box-shadow:
    0 28px 80px rgba(0,0,0,.35),
    0 0 0 10px rgba(79,211,255,.12);
}

.process-link{
  color: rgba(255,255,255,.70);
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
}

.process-link:hover{
  color: rgba(255,255,255,.95);
  text-decoration: underline;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 1100px){
  .process-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobil */
@media (max-width: 520px){
  .home-process{
    padding: 80px 0 100px;
  }

  .process-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-card{
    min-height: auto;
    border-radius: 18px;
    padding: 18px;
  }

  .process-name{
    font-size: 15px;
  }

  .process-desc{
    font-size: 13px;
  }
}


/* =========================
   PROCESS MOBILE
========================= */

@media (max-width:768px){

  .process-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .process-card{
    padding:20px 18px;
  }

}
