/* Anasayfa — Hızlı Hizmet Çözümleri */
.sosta-home-svc {
  position: relative;
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  background: linear-gradient(165deg, #001b3d 0%, #0f2744 45%, #0a1628 100%);
  overflow: hidden;
}

.sosta-home-svc::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0, 76, 203, 0.18), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(37, 99, 235, 0.12), transparent 40%);
  pointer-events: none;
}

.sosta-home-svc::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
  pointer-events: none;
}

.sosta-home-svc__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.sosta-home-svc__head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.sosta-home-svc__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: #93c5fd;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.sosta-home-svc__badge .material-symbols-outlined {
  font-size: 16px;
}

.sosta-home-svc__title {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.sosta-home-svc__subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255,255,255,.72);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.6;
}

.sosta-home-svc__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .sosta-home-svc__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .sosta-home-svc__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.sosta-home-svc__card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 24px rgba(0,0,0,.2);
  transition: transform 0.35s cubic-bezier(.22,1,.36,1), box-shadow 0.35s ease;
  min-height: 100%;
}

.sosta-home-svc__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,76,203,.25);
}

.sosta-home-svc__visual {
  position: relative;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.sosta-home-svc__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.22,1,.36,1);
}

.sosta-home-svc__card:hover .sosta-home-svc__visual img {
  transform: scale(1.08);
}

.sosta-home-svc__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,27,61,.92) 0%, rgba(0,27,61,.35) 55%, rgba(0,76,203,.2) 100%);
  transition: opacity 0.3s;
}

.sosta-home-svc__card:hover .sosta-home-svc__visual::after {
  background: linear-gradient(to top, rgba(0,27,61,.95) 0%, rgba(0,76,203,.45) 100%);
}

.sosta-home-svc__icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.3s, background 0.3s;
}

.sosta-home-svc__card:hover .sosta-home-svc__icon {
  transform: scale(1.08);
  background: rgba(255,255,255,.25);
}

.sosta-home-svc__icon .material-symbols-outlined {
  font-size: 28px;
}

.sosta-home-svc__tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  background: rgba(255,255,255,.9);
  color: #004ccb;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sosta-home-svc__body {
  padding: 1.35rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sosta-home-svc__card-title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  color: #001b3d;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.sosta-home-svc__card-text {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 1rem;
  flex: 1;
}

.sosta-home-svc__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #004ccb;
  transition: gap 0.25s;
}

.sosta-home-svc__card:hover .sosta-home-svc__cta {
  gap: 0.6rem;
}

.sosta-home-svc__cta .material-symbols-outlined {
  font-size: 18px;
  transition: transform 0.25s;
}

.sosta-home-svc__card:hover .sosta-home-svc__cta .material-symbols-outlined {
  transform: translateX(3px);
}

.sosta-home-svc__footer {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}

.sosta-home-svc__stat {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255,255,255,.85);
  font-size: 0.875rem;
}

.sosta-home-svc__stat strong {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}

.sosta-home-svc__stat .material-symbols-outlined {
  font-size: 22px;
  color: #60a5fa;
}

.sosta-home-svc__all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0.85rem 1.75rem;
  border-radius: 12px;
  background: #fff;
  color: #001b3d;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  transition: transform 0.25s, box-shadow 0.25s;
}

.sosta-home-svc__all:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,76,203,.3);
}

.sosta-home-svc__all-wrap {
  text-align: center;
}

/* Anasayfa — Servis Sürecimiz */
.sosta-home-process {
  position: relative;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 50%, #f1f5f9 100%);
  overflow: hidden;
}

.sosta-home-process::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(37, 99, 235, 0.06), transparent 70%);
  pointer-events: none;
}

.sosta-home-process__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.sosta-home-process__head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}

.sosta-home-process__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.15);
  color: #2563eb;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sosta-home-process__eyebrow .material-symbols-outlined {
  font-size: 1rem;
}

.sosta-home-process__title {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: #0f2744;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.sosta-home-process__subtitle {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #64748b;
}

.sosta-home-process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .sosta-home-process__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    align-items: stretch;
  }
}

.sosta-home-process__step {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
}

@media (min-width: 768px) {
  .sosta-home-process__step {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding-top: 0.5rem;
  }

  .sosta-home-process__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 2rem;
    left: calc(50% + 2rem);
    width: calc(100% - 4rem);
    height: 3px;
    background: linear-gradient(90deg, #2563eb 0%, #cbd5e1 100%);
    border-radius: 999px;
    z-index: 0;
  }

  .sosta-home-process__step:nth-child(3)::after,
  .sosta-home-process__step:nth-child(4)::after {
    background: #e2e8f0;
  }
}

.sosta-home-process__marker {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid #e2e8f0;
  color: #94a3b8;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.sosta-home-process__marker .material-symbols-outlined {
  font-size: 1.5rem;
}

.sosta-home-process__num {
  position: absolute;
  top: -0.35rem;
  right: -0.35rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: #e2e8f0;
  color: #64748b;
  font-size: 0.6875rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  line-height: 1;
}

.sosta-home-process__step--done .sosta-home-process__marker {
  background: linear-gradient(135deg, #2563eb 0%, #004ccb 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.sosta-home-process__step--done .sosta-home-process__num {
  background: #f1680a;
  color: #fff;
}

.sosta-home-process__step:hover .sosta-home-process__marker {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.2);
}

.sosta-home-process__step--done:hover .sosta-home-process__marker {
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.4);
}

.sosta-home-process__card {
  flex: 1;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.15rem 1.25rem;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

@media (min-width: 768px) {
  .sosta-home-process__card {
    margin-top: 1.25rem;
    text-align: center;
    min-height: 8.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
}

.sosta-home-process__step:hover .sosta-home-process__card {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
}

.sosta-home-process__step--done .sosta-home-process__card {
  border-color: rgba(37, 99, 235, 0.12);
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.sosta-home-process__card-title {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0f2744;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.sosta-home-process__card-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

@media (max-width: 767px) {
  .sosta-home-process__step {
    position: relative;
    padding-left: 4.75rem;
    min-height: 5rem;
  }

  .sosta-home-process__marker {
    position: absolute;
    left: 0;
    top: 0.85rem;
  }

  .sosta-home-process__step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 1.85rem;
    top: 4.25rem;
    bottom: -0.75rem;
    width: 2px;
    background: #e2e8f0;
    border-radius: 1px;
  }

  .sosta-home-process__step--done:not(:last-child)::before {
    background: linear-gradient(180deg, #2563eb, #cbd5e1);
  }
}
