/**
 * Ana sayfa — hero hariç (.pk-home-body)
 */
@import url('expert-list-card.css');

/* Hero rozeti */
.pk-home .pk-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto 1rem;
  padding: 0.35rem 0.85rem 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(22, 163, 74, 0.14);
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.08);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--pk-primary);
  letter-spacing: 0.01em;
}

.pk-home .pk-hero__brand {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.pk-home .pk-hero__brand-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}

.pk-home .pk-hero__brand-link {
  display: inline-flex;
  text-decoration: none;
  flex-shrink: 0;
}

.pk-home .pk-hero__anniversary {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  padding-bottom: 0.1rem;
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.35) 0%, transparent 42%),
    linear-gradient(145deg, #16a34a 0%, #15803d 52%, #166534 100%);
  border: 2px solid #f0d060;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.95),
    0 8px 22px rgba(22, 163, 74, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transform: rotate(-8deg);
  animation: pkAnniversaryFloat 4s ease-in-out infinite;
}

.pk-home .pk-hero__anniversary-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(from 210deg, transparent 0deg, rgba(255, 255, 255, 0.22) 55deg, transparent 110deg);
  opacity: 0.85;
  pointer-events: none;
}

.pk-home .pk-hero__anniversary-num {
  position: relative;
  z-index: 1;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  text-shadow: 0 1px 2px rgba(5, 46, 22, 0.25);
}

.pk-home .pk-hero__anniversary-label {
  position: relative;
  z-index: 1;
  margin-top: 0.08rem;
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  color: #fce588;
}

@keyframes pkAnniversaryFloat {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-6deg) translateY(-2px); }
}

@media (prefers-reduced-motion: reduce) {
  .pk-home .pk-hero__anniversary {
    animation: none;
  }
}

.pk-home .pk-hero__live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  animation: pkHeroPulse 2s ease-out infinite;
  flex-shrink: 0;
}

@keyframes pkHeroPulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .pk-home .pk-hero__live-dot {
    animation: none;
  }
}

.pk-home .pk-hero__chips {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
  justify-content: flex-start;
  max-width: 720px;
  width: 100%;
  margin: 1.25rem auto 0;
  padding: 0.15rem 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(22, 163, 74, 0.28) transparent;
}

.pk-home .pk-hero__chips::-webkit-scrollbar {
  height: 5px;
}

.pk-home .pk-hero__chips::-webkit-scrollbar-thumb {
  background: rgba(22, 163, 74, 0.22);
  border-radius: 999px;
}

.pk-home .pk-hero__chips .pk-home-pill {
  flex: 0 0 auto;
  white-space: nowrap;
  scroll-snap-align: start;
  font-size: 0.8125rem;
  padding: 0.4rem 0.85rem;
}

.pk-home-body {
  --home-pad-y: clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow-x: clip;
}

/* —— Dekoratif arka plan —— */
.pk-home-block {
  position: relative;
}

.pk-home-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.pk-home-deco--blob-a {
  top: -120px;
  right: -80px;
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.12) 0%, transparent 68%);
  filter: blur(2px);
}

.pk-home-deco--mesh {
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 10% 20%, rgba(22, 163, 74, 0.07), transparent),
    radial-gradient(ellipse 60% 40% at 90% 80%, rgba(29, 45, 53, 0.05), transparent);
}

.pk-home-block > .pk-container {
  position: relative;
  z-index: 1;
}

/* —— Güven şeridi —— */
.pk-home-trust {
  padding: 1.25rem 0;
  background: linear-gradient(90deg, var(--pk-primary-soft) 0%, #fff 50%, var(--pk-primary-soft) 100%);
  border-bottom: 1px solid rgba(22, 163, 74, 0.08);
}

.pk-home-trust__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1rem;
}

@media (min-width: 768px) {
  .pk-home-trust__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.pk-home-trust__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(22, 163, 74, 0.1);
  box-shadow: 0 2px 12px rgba(22, 163, 74, 0.06);
  backdrop-filter: blur(6px);
}

.pk-home-trust__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pk-primary) 0%, #16a34a 100%);
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pk-home-trust__text {
  font-size: 0.8125rem;
  line-height: 1.35;
  color: var(--pk-muted);
}

.pk-home-trust__text strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--pk-text);
  letter-spacing: -0.02em;
}

/* —— Ortak başlıklar —— */
.pk-home-head {
  margin-bottom: 2rem;
}

.pk-home-head--center {
  text-align: center;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.pk-home-head--row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.pk-home-head__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pk-primary-soft) 0%, #fff 100%);
  border: 1px solid rgba(22, 163, 74, 0.12);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--pk-primary-dark);
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.06);
}

.pk-home-head__eyebrow i {
  font-size: 0.9rem;
  color: var(--pk-primary);
}

.pk-home-head__link.pk-home-head__link--pill {
  min-width: 8.75rem;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(22, 163, 74, 0.2);
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.1);
}

.pk-home-head__link.pk-home-head__link--pill:hover {
  background: var(--pk-primary-soft);
  border-color: var(--pk-primary);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.15);
}

.pk-home-head__eyebrow--light {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.pk-home-head__title {
  margin: 0;
  font-size: clamp(1.5rem, 3.5vw, 2.125rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--pk-text);
}

.pk-home-head__lead {
  margin: 0.65rem 0 0;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--pk-muted);
  max-width: 34rem;
}

.pk-home-head--center .pk-home-head__lead {
  margin-left: auto;
  margin-right: auto;
}

.pk-home-head__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--pk-primary);
  text-decoration: none;
  white-space: nowrap;
  padding: 0.5rem 0;
  transition: gap 0.2s ease, color 0.2s ease;
}

.pk-home-head__link:hover {
  color: var(--pk-primary-dark);
  gap: 0.55rem;
}

/* —— Bloklar —— */
.pk-home-block {
  padding: var(--home-pad-y) 0;
}

.pk-home-block--services {
  background: #fff;
}

.pk-home-block--experts {
  background: linear-gradient(180deg, var(--pk-bg) 0%, #fff 40%, #fff 100%);
}

.pk-home-block--steps {
  background: #fff;
}

.pk-home-block--removed {
  background: linear-gradient(180deg, #fff 0%, var(--pk-bg) 45%, #fff 100%);
}

.pk-home-block--popular {
  background: var(--pk-bg);
}

.pk-home-block--cities {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, var(--pk-bg) 38%, #fff 100%);
}

.pk-home-cities__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 8% 15%, rgba(22, 163, 74, 0.07), transparent 55%),
    radial-gradient(ellipse 45% 50% at 92% 85%, rgba(22, 163, 74, 0.05), transparent 60%);
}

.pk-home-cities {
  position: relative;
  z-index: 1;
}

.pk-home-cities__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  margin-bottom: 1.75rem;
}

.pk-home-cities__head-main {
  flex: 1 1 auto;
  min-width: min(100%, 18rem);
}

.pk-home-cities__head-main .pk-home-head__title {
  text-wrap: balance;
}

.pk-home-cities__head-main .pk-home-head__lead {
  max-width: 38rem;
  text-wrap: pretty;
}

.pk-home-cities__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pk-home-cities__stats li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 5.5rem;
  padding: 0.75rem 1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(22, 163, 74, 0.1);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.pk-home-cities__stats strong {
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--pk-primary-dark);
}

.pk-home-cities__stats span {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--pk-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pk-home-cities__featured {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1.35rem;
}

@media (min-width: 640px) {
  .pk-home-cities__featured {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .pk-home-cities__featured {
    gap: 1.1rem;
  }
}

.pk-home-city-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 4.75rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--city-bg, var(--pk-primary-soft)) 0%, #fff 115%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 6px 20px rgba(15, 23, 42, 0.05);
  text-decoration: none;
  color: var(--pk-text);
  overflow: hidden;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
}

.pk-home-city-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(22, 163, 74, 0.12);
}

.pk-home-city-card__shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 80%;
  height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.5) 50%, transparent 60%);
  transform: rotate(12deg);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.pk-home-city-card:hover .pk-home-city-card__shine {
  transform: rotate(12deg) translateX(110%);
}

.pk-home-city-card__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--pk-primary);
  font-size: 1.15rem;
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.08);
}

.pk-home-city-card__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.pk-home-city-card__body strong {
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--pk-text);
}

.pk-home-city-card__body span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pk-muted);
}

.pk-home-city-card__arrow {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--pk-primary);
  font-size: 1rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.pk-home-city-card:hover .pk-home-city-card__arrow {
  background: var(--pk-primary);
  color: #fff;
  transform: translateX(2px);
}

.pk-home-cities__panel {
  padding: 1.15rem 1.2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 163, 74, 0.08);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(6px);
}

.pk-home-cities__panel-label {
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pk-muted);
}

.pk-home-cities__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pk-home-city-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--pk-primary-dark);
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(22, 163, 74, 0.12);
  box-shadow: 0 2px 6px rgba(22, 163, 74, 0.04);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.pk-home-city-chip i {
  font-size: 0.875rem;
  opacity: 0.75;
}

.pk-home-city-chip:hover {
  background: var(--pk-primary-soft);
  border-color: rgba(22, 163, 74, 0.22);
  transform: translateY(-1px);
}

.pk-home-cities__foot {
  display: flex;
  justify-content: center;
  margin-top: 1.35rem;
}

.pk-home-cities__all {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--pk-primary-dark);
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(22, 163, 74, 0.15);
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.08);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.pk-home-cities__all:hover {
  background: var(--pk-primary-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(22, 163, 74, 0.14);
}

.pk-home-cities__all i {
  font-size: 1.05rem;
  transition: transform 0.2s ease;
}

.pk-home-cities__all:hover i {
  transform: translateX(3px);
}

.pk-home-expert__media--office {
  background: linear-gradient(160deg, #fff 0%, #f7fef9 42%, #f3fbf8 100%);
}

.pk-home-expert__media--office .pk-img-fallback {
  align-items: center;
  justify-content: center;
  padding: 0;
}

.pk-img-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: transparent;
}

.pk-img-fallback--office {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: transparent;
}

.pk-home-expert__media--office .avatar-initials--block {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.pk-home-block--reviews {
  background: #fff;
}

.pk-home-block--faq {
  background: var(--pk-bg);
}

.pk-home-block--pro {
  background: #fff;
}

.pk-home-block--cta {
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(180deg, #fff 0%, var(--pk-bg) 30%, var(--pk-bg) 70%, #fff 100%);
}

/* —— Hizmet kartları —— */
.pk-home-services {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  justify-items: center;
}

@media (min-width: 992px) {
  .pk-home-services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1020px;
    margin-inline: auto;
    gap: 1.15rem;
    justify-items: stretch;
  }

  .pk-home-service {
    max-width: none;
  }
}

.pk-home-service {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  width: 100%;
  max-width: 360px;
  padding: 0;
  border-radius: 22px;
  background: linear-gradient(145deg, var(--svc-bg, var(--pk-primary-soft)) 0%, #fff 120%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 8px 24px rgba(15, 23, 42, 0.06);
  text-decoration: none;
  color: var(--pk-text);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.pk-home-service::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.35), transparent 50%, rgba(22, 163, 74, 0.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.pk-home-service:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 48px rgba(22, 163, 74, 0.16);
}

.pk-home-service:hover::before {
  opacity: 1;
}

.pk-home-service__shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 80%;
  height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.45) 50%, transparent 60%);
  transform: rotate(12deg);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.pk-home-service:hover .pk-home-service__shine {
  transform: rotate(12deg) translateX(120%);
}

.pk-home-service__num {
  position: absolute;
  top: 0.65rem;
  right: 0.85rem;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
  color: rgba(22, 163, 74, 0.08);
  z-index: 1;
  pointer-events: none;
}

.pk-home-service__main {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
  gap: 0.65rem;
  padding: 1.2rem;
  text-align: center;
}

.pk-home-service__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  padding-right: 0;
}

.pk-home-service__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  background: rgba(22, 163, 74, 0.12);
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pk-primary-dark);
}

.pk-home-service__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: linear-gradient(145deg, #fff 0%, var(--pk-primary-soft) 100%);
  color: var(--pk-primary);
  font-size: 1.2rem;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.12);
  flex-shrink: 0;
}

.pk-home-service__text {
  flex: 1;
  min-width: 0;
}

.pk-home-service__text h3 {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.pk-home-service__text p {
  margin: 0.4rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--pk-muted);
}

.pk-home-service__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-top: auto;
  border-radius: 50%;
  background: #fff;
  color: var(--pk-primary);
  font-size: 1.1rem;
  box-shadow: var(--pk-shadow);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.pk-home-service:hover .pk-home-service__arrow {
  background: var(--pk-primary);
  color: #fff;
  transform: translateX(3px);
}

/* —— Branş pill'leri —— */
.pk-home-pills {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.15rem 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(22, 163, 74, 0.28) transparent;
  width: 100%;
  max-width: 100%;
}

.pk-home-block--services .pk-home-pills--scroll {
  margin-bottom: 1.75rem;
}

.pk-home-pills::-webkit-scrollbar {
  height: 5px;
}

.pk-home-pills::-webkit-scrollbar-thumb {
  background: rgba(22, 163, 74, 0.22);
  border-radius: 999px;
}

.pk-home-pills .pk-home-pill {
  flex: 0 0 auto;
  white-space: nowrap;
  scroll-snap-align: start;
}

.pk-home-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--pk-primary-dark);
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(22, 163, 74, 0.15);
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.06);
  transition: background 0.2s ease, transform 0.2s ease;
}

.pk-home-pill:hover {
  background: var(--pk-primary-soft);
  transform: translateY(-1px);
}

/* 24. kart — daha fazla uzman */
.pk-home-expert--more {
  background: linear-gradient(165deg, #f0fdf4 0%, #fff 48%, #f8fafc 100%);
  border-style: dashed;
  border-color: rgba(22, 163, 74, 0.28);
}

.pk-home-expert--more:hover {
  border-color: var(--pk-primary);
  background: linear-gradient(165deg, #ecfdf5 0%, #fff 55%, #f0fdf4 100%);
}

.pk-home-expert__more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  min-height: 100%;
  padding: 1.5rem 1rem;
  position: relative;
  overflow: hidden;
}

.pk-home-expert__more-ring {
  position: absolute;
  inset: auto;
  top: 50%;
  left: 50%;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  border: 1px solid rgba(22, 163, 74, 0.12);
  transform: translate(-50%, -58%);
  pointer-events: none;
}

.pk-home-expert__more-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--pk-primary) 0%, #16a34a 100%);
  color: #fff;
  font-size: 1.65rem;
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.22);
  margin-bottom: 0.85rem;
}

.pk-home-expert__more-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: var(--pk-text);
  line-height: 1.25;
}

.pk-home-expert__more-desc {
  margin: 0.45rem 0 0;
  max-width: 16rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--pk-muted);
}

.pk-home-expert__cta--outline {
  margin-top: 1rem;
  color: var(--pk-primary-dark);
  background: #fff;
  border: 2px solid rgba(22, 163, 74, 0.22);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
}

.pk-home-expert--more:hover .pk-home-expert__cta--outline {
  background: var(--pk-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(22, 163, 74, 0.24);
}

@media (min-width: 992px) {
  .pk-home-expert__more-title {
    font-size: 1.0625rem;
  }
}

/* —— Nasıl çalışır —— */
.pk-home-app-download {
  display: block;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 10% 0%, rgba(183, 243, 238, 0.24), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(38, 166, 154, 0.22), transparent 30%),
    linear-gradient(135deg, #0f2433 0%, #123443 46%, #15803d 100%);
  color: #fff;
}

.pk-home-app-download::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 42%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 18px);
  pointer-events: none;
}

.pk-home-app-download__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: clamp(2.4rem, 5vw, 4rem) 1.25rem;
  text-align: center;
}

.pk-home-app-download__content {
  max-width: 46rem;
  margin: 0 auto;
}

.pk-home-app-download__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 0.7rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #a7f3d0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pk-home-app-download__title {
  margin: 0 auto;
  max-width: 42rem;
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: #fff;
}

.pk-home-app-download__text {
  margin: 0.8rem auto 0;
  max-width: 37rem;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.82);
}

.pk-home-app-download__stores {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.15rem;
  margin-top: 1.75rem;
}

.pk-home-app-download__store {
  min-height: 4.35rem;
  padding: 1.15rem 1.75rem;
  justify-content: center;
  min-width: 14rem;
  color: #fff;
  background: rgba(15, 36, 51, 0.82);
  border: 1px solid rgba(183, 243, 238, 0.24);
  border-radius: 22px;
  font-size: 1.08rem;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(20, 83, 45, 0.22);
}

.pk-home-app-download__store i {
  font-size: 1.65rem;
}

.pk-home-app-download__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.pk-home-app-download__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 8rem;
  padding: 1.2rem 1rem;
  text-align: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(183, 243, 238, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pk-home-app-download__feature i {
  color: #34d399;
  font-size: 1.55rem;
}

.pk-home-app-download__feature strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}

.pk-home-app-download__feature span {
  max-width: 15rem;
  color: rgba(226, 232, 240, 0.72);
  font-size: 0.8125rem;
  line-height: 1.45;
}

.pk-home-steps-layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .pk-home-steps-layout {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3.5rem;
  }
}

.pk-home-steps-visual {
  position: relative;
}

.pk-home-steps-photo {
  position: relative;
  max-width: 22rem;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow:
    0 24px 48px rgba(22, 163, 74, 0.16),
    0 0 0 1px rgba(22, 163, 74, 0.08);
}

.pk-home-steps-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pk-home-phone {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 4/5;
  border-radius: 32px;
  overflow: visible;
  box-shadow:
    0 32px 64px rgba(22, 163, 74, 0.22),
    0 0 0 1px rgba(22, 163, 74, 0.1);
}

.pk-home-phone__glow {
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.25) 0%, transparent 65%);
  z-index: 0;
  animation: pk-home-glow 4s ease-in-out infinite alternate;
}

@keyframes pk-home-glow {
  from { opacity: 0.6; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1.05); }
}

.pk-home-phone img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}

.pk-home-phone__float {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.75rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--pk-text);
  white-space: nowrap;
}

.pk-home-phone__float i {
  font-size: 1rem;
  color: var(--pk-primary);
}

.pk-home-phone__float--1 {
  top: 12%;
  left: -8%;
  animation: pk-home-float 5s ease-in-out infinite;
}

.pk-home-phone__float--2 {
  bottom: 18%;
  right: -10%;
  animation: pk-home-float 5s ease-in-out infinite 1.2s;
}

@keyframes pk-home-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.pk-home-phone__shell {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  border: 3px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
  z-index: 2;
}

.pk-home-timeline {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pk-home-timeline__item {
  display: flex;
  gap: 1.15rem;
  padding-bottom: 1.75rem;
  position: relative;
}

.pk-home-timeline__item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 3rem;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--pk-primary-light), transparent);
}

.pk-home-timeline__marker {
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff 0%, var(--pk-primary-soft) 100%);
  border: 1px solid rgba(22, 163, 74, 0.2);
  color: var(--pk-primary);
  font-size: 1.25rem;
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.12);
}

.pk-home-timeline__item:hover .pk-home-timeline__marker {
  background: var(--pk-primary);
  color: #fff;
  border-color: var(--pk-primary);
  transform: scale(1.05);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.pk-home-timeline__num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--pk-primary);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.pk-home-timeline__body h3 {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pk-home-timeline__body p {
  margin: 0.35rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--pk-muted);
}

.pk-home-steps-btn {
  margin-top: 0.5rem;
}

/* —— Yorumlar —— */
.pk-home-reviews-wrap {
  position: relative;
}

.pk-home-reviews-wrap::before,
.pk-home-reviews-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0.5rem;
  width: clamp(1rem, 8vw, 4rem);
  z-index: 2;
  pointer-events: none;
}

.pk-home-reviews-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, transparent 100%);
}

.pk-home-reviews-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, transparent 100%);
}

.pk-home-reviews {
  display: flex;
  gap: 1.15rem;
  overflow-x: auto;
  padding: 0.25rem 0 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--pk-primary-light) transparent;
}

.pk-home-review {
  flex: 0 0 min(88vw, 360px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  padding: 1.65rem;
  border-radius: 22px;
  background: linear-gradient(160deg, #fff 0%, var(--pk-bg) 100%);
  border: 1px solid var(--pk-border);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pk-home-review::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pk-primary), #16a34a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.pk-home-review:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(22, 163, 74, 0.12);
  border-color: rgba(22, 163, 74, 0.2);
}

.pk-home-review:hover::after {
  transform: scaleX(1);
}

.pk-home-review__quote {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--pk-primary);
  opacity: 0.12;
}

.pk-home-review__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pk-home-review__stars {
  display: flex;
  gap: 0.12rem;
  color: #f59e0b;
  font-size: 0.9rem;
}

.pk-home-review__verified {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pk-primary);
}

.pk-home-review__verified i {
  font-size: 0.85rem;
}

.pk-home-review__text {
  margin: 1rem 0 0;
  flex: 1;
  font-size: 0.9375rem;
  font-style: normal;
  line-height: 1.65;
  color: var(--pk-text);
  font-weight: 500;
}

.pk-home-review__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--pk-border);
}

.pk-home-review__author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: var(--pk-shadow);
}

.pk-home-review__author cite {
  display: block;
  font-style: normal;
  font-weight: 800;
  font-size: 0.9375rem;
}

.pk-home-review__author span {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pk-muted);
}

/* —— SSS —— */
.pk-home-faq {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 0;
}

.pk-home-faq__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pk-primary-dark) 0%, var(--pk-primary) 50%, #16a34a 100%);
}

.pk-home-faq__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.pk-home-faq__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  padding: clamp(1.75rem, 4vw, 2.75rem);
}

@media (min-width: 992px) {
  .pk-home-faq__grid {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
    gap: 2.5rem;
  }
}

.pk-home-faq__intro {
  color: #fff;
}

.pk-home-faq__title {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: #fff;
}

.pk-home-faq__lead {
  margin: 0.65rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  opacity: 0.9;
}

.pk-home-faq__more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.25rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease;
}

.pk-home-faq__more:hover {
  background: rgba(255, 255, 255, 0.25);
}

.pk-home-faq__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.pk-home-faq__stats > div {
  flex: 1 1 5.5rem;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}

.pk-home-faq__stats strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pk-home-faq__stats span {
  font-size: 0.75rem;
  opacity: 0.88;
}

.pk-home-faq__list {
  background: #fff;
  border-radius: 18px;
  padding: 0.35rem 1rem;
  box-shadow: var(--pk-shadow-lg);
}

.pk-home-faq__item {
  border-bottom: 1px solid var(--pk-border);
}

.pk-home-faq__item:last-child {
  border-bottom: none;
}

.pk-home-faq__item summary {
  padding: 1rem 0;
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.pk-home-faq__item summary::-webkit-details-marker {
  display: none;
}

.pk-home-faq__item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--pk-primary);
}

.pk-home-faq__item[open] summary::after {
  content: "−";
}

.pk-home-faq__item p {
  margin: 0;
  padding-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--pk-muted);
}

/* —— Uzmanlar için —— */
.pk-home-pro {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: 24px;
  background: linear-gradient(145deg, var(--pk-primary-soft) 0%, #fff 55%);
  border: 1px solid rgba(22, 163, 74, 0.12);
}

@media (min-width: 992px) {
  .pk-home-pro {
    grid-template-columns: 1fr 0.85fr;
    gap: 2.5rem;
  }
}

.pk-home-pro__title {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.pk-home-pro__lead {
  margin: 0.65rem 0 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--pk-muted);
}

.pk-home-pro__grid {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .pk-home-pro__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pk-home-pro__tile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(22, 163, 74, 0.1);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pk-home-pro__tile:hover {
  transform: translateX(4px);
  background: #fff;
  box-shadow: 0 6px 18px rgba(22, 163, 74, 0.1);
}

.pk-home-pro__tile-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pk-primary) 0%, #16a34a 100%);
  color: #fff;
  font-size: 1rem;
}

.pk-home-pro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.pk-home-pro__visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  max-width: 22rem;
  margin: 0 auto;
  box-shadow: var(--pk-shadow-lg);
}

.pk-home-pro__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pk-home-pro__badge {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--pk-text);
  box-shadow: var(--pk-shadow);
}

.pk-home-pro__badge i {
  font-size: 1.15rem;
  color: var(--pk-primary);
}

/* —— CTA (ADiyetisyen ailesine katılın) —— */
.pk-home-cta {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(22, 163, 74, 0.14);
  background:
    radial-gradient(ellipse 100% 80% at 100% 0%, rgba(22, 163, 74, 0.1), transparent 72%),
    radial-gradient(ellipse 75% 55% at 0% 100%, rgba(74, 222, 128, 0.07), transparent 70%),
    linear-gradient(145deg, #ffffff 0%, #f6fcfb 45%, var(--pk-primary-soft) 100%);
  box-shadow:
    0 20px 50px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.pk-home-cta__shine {
  position: absolute;
  top: -40%;
  right: -15%;
  width: 50%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(74, 222, 128, 0.14) 0%, rgba(74, 222, 128, 0.04) 50%, transparent 82%);
  pointer-events: none;
}

.pk-home-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.75rem;
  align-items: center;
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
}

@media (min-width: 900px) {
  .pk-home-cta__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
  }
}

.pk-home-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(22, 163, 74, 0.12);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--pk-primary-dark);
}

.pk-home-cta__eyebrow i {
  font-size: 0.95rem;
  color: var(--pk-primary);
}

.pk-home-cta__title {
  margin: 0;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.18;
  color: var(--pk-text);
  text-wrap: balance;
}

.pk-home-cta__lead {
  margin: 0.75rem 0 0;
  max-width: 32rem;
  font-size: clamp(0.9375rem, 1.7vw, 1.0625rem);
  line-height: 1.6;
  color: var(--pk-muted);
}

.pk-home-cta__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.pk-home-cta__stats li {
  padding: 0.65rem 0.75rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(22, 163, 74, 0.1);
  text-align: center;
}

.pk-home-cta__stats strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--pk-primary-dark);
  line-height: 1.2;
}

.pk-home-cta__stats span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--pk-muted);
  line-height: 1.3;
}

.pk-home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.15rem;
  margin-top: 1.35rem;
}

.pk-home-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pk-primary) 0%, #16a34a 100%);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(22, 163, 74, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pk-home-cta__btn i {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.pk-home-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(22, 163, 74, 0.34);
  color: #fff;
}

.pk-home-cta__btn:hover i {
  transform: translateX(3px);
}

.pk-home-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--pk-primary-dark);
  text-decoration: none;
  transition: color 0.15s ease;
}

.pk-home-cta__link:hover {
  color: var(--pk-primary);
  text-decoration: underline;
}

.pk-home-cta__panel {
  width: min(100%, 320px);
  margin-inline: auto;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(22, 163, 74, 0.12);
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.pk-home-cta__panel-head {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.75rem;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-bottom: 1px solid var(--pk-border);
}

.pk-home-cta__panel-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #cbd5e1;
}

.pk-home-cta__panel-dot:first-child { background: #f87171; }
.pk-home-cta__panel-dot:nth-child(2) { background: #fbbf24; }
.pk-home-cta__panel-dot:nth-child(3) { background: #34d399; }

.pk-home-cta__panel-body {
  padding: 1.15rem 1.25rem 1.25rem;
}

.pk-home-cta__avatars {
  display: flex;
  align-items: center;
  margin-bottom: 0.85rem;
}

.pk-home-cta__avatar {
  width: 2.35rem;
  height: 2.35rem;
  margin-left: -0.55rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
  background: #e2e8f0;
}

.pk-home-cta__avatar:first-child {
  margin-left: 0;
}

.pk-home-cta__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.pk-home-cta__avatar--more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 800;
  color: var(--pk-primary-dark);
  background: var(--pk-primary-soft);
}

.pk-home-cta__panel-title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--pk-text);
}

.pk-home-cta__panel-list {
  margin: 0.65rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.pk-home-cta__panel-list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--pk-muted);
}

.pk-home-cta__panel-list i {
  font-size: 1rem;
  color: var(--pk-primary);
}

/* —— SEO alt bölüm —— */
.pk-home-body .pk-home-seo {
  padding-top: var(--home-pad-y);
  padding-bottom: var(--home-pad-y);
  background: #fff;
  border-top: 1px solid var(--pk-border);
}

.pk-home .pk-home-seo__seo-only,
.pk-home-body .pk-home-seo__seo-only {
  position: static;
  left: auto;
  width: auto;
  height: auto;
  max-height: none;
  overflow: visible;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  clip: auto;
}

.pk-home-body .pk-home-seo__title {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.pk-home-body .pk-home-seo__highlight {
  border-radius: 16px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pk-home-body .pk-home-seo__highlight:hover {
  transform: translateY(-2px);
  border-color: var(--pk-primary);
  box-shadow: var(--pk-shadow);
}

.pk-home-body .pk-btn--primary {
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.28);
}

.pk-home-body .pk-btn--primary:hover {
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.35);
}

/* —— Canlı platform istatistikleri —— */
.pk-live-stats {
  margin-top: 0;
  padding: clamp(2rem, 4vw, 2.75rem) 0;
  background: linear-gradient(165deg, #0f2a32 0%, #1a3d47 55%, #15803d 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.pk-live-stats--bottom {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.pk-live-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 10% 0%, rgba(255, 255, 255, 0.08), transparent 55%),
    radial-gradient(ellipse 50% 60% at 95% 100%, rgba(22, 163, 74, 0.35), transparent 60%);
  pointer-events: none;
}

.pk-live-stats > .pk-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pk-live-stats__head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.pk-live-stats__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #a7f3d0;
  margin-bottom: 0.85rem;
}

.pk-live-stats__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.65);
  animation: pk-live-stats-pulse 2s ease-out infinite;
}

@keyframes pk-live-stats-pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.65); }
  70% { box-shadow: 0 0 0 10px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.pk-live-stats__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.pk-live-stats__lead {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.pk-live-stats__grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 52rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  justify-items: stretch;
}

@media (max-width: 639px) {
  .pk-live-stats__grid {
    max-width: none;
    gap: 0.65rem;
  }

  .pk-live-stats__card {
    padding: 1rem 0.5rem;
  }

  .pk-live-stats__icon {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .pk-live-stats__value {
    font-size: clamp(0.95rem, 4vw, 1.25rem);
  }

  .pk-live-stats__label {
    font-size: 0.72rem;
    line-height: 1.3;
  }
}

@media (min-width: 640px) {
  .pk-live-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

@media (min-width: 992px) {
  .pk-live-stats__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.pk-live-stats__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.35rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.pk-live-stats__card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.pk-live-stats__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 14px;
  background: rgba(22, 163, 74, 0.45);
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.pk-live-stats__value {
  display: block;
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.35rem;
}

.pk-live-stats__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

.pk-live-stats__updated {
  margin: 1.5rem 0 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

/* Beyaz tema — Hizmetler üstü */
.pk-live-stats--light {
  background: #fff;
  color: var(--pk-text);
  border-bottom: 1px solid var(--pk-border);
}

.pk-live-stats--light::before {
  display: none;
}

.pk-live-stats--light .pk-live-stats__badge {
  background: var(--pk-primary-soft);
  border-color: rgba(22, 163, 74, 0.15);
  color: var(--pk-primary-dark);
}

.pk-live-stats--light .pk-live-stats__pulse {
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.45);
  animation-name: pk-live-stats-pulse-light;
}

@keyframes pk-live-stats-pulse-light {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.pk-live-stats--light .pk-live-stats__title {
  color: var(--pk-text);
}

.pk-live-stats--light .pk-live-stats__lead {
  color: var(--pk-muted);
}

.pk-live-stats--light .pk-live-stats__card {
  background: #fff;
  border: 1px solid rgba(22, 163, 74, 0.12);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
  backdrop-filter: none;
}

.pk-live-stats--light .pk-live-stats__card:hover {
  background: var(--pk-primary-soft);
  border-color: rgba(22, 163, 74, 0.22);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.1);
}

.pk-live-stats--light .pk-live-stats__icon {
  background: var(--pk-primary-soft);
  color: var(--pk-primary);
}

.pk-live-stats--light .pk-live-stats__value {
  color: var(--pk-primary-dark);
}

.pk-live-stats--light .pk-live-stats__label {
  color: var(--pk-muted);
}

.pk-live-stats--light .pk-live-stats__updated {
  color: #94a3b8;
}

@media (prefers-reduced-motion: reduce) {
  .pk-live-stats__pulse {
    animation: none;
  }

  .pk-home-expert__live-dot,
  .pk-home-phone__float,
  .pk-home-phone__glow {
    animation: none;
  }

  .pk-home-service__shine {
    display: none;
  }
}

.pk-loc-picker__row--3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}
@media (max-width: 900px) {
  .pk-loc-picker__row--3 { grid-template-columns: 1fr; }
}
.pk-home-district-groups {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
  max-height: 420px;
  overflow: auto;
  padding-right: 0.25rem;
}
.pk-home-district-group {
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  background: #fff;
  padding: 0.55rem 0.75rem;
}
.pk-home-district-group summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: #0f172a;
}
.pk-home-district-group summary::-webkit-details-marker { display: none; }
.pk-home-district-group summary span { font-weight: 600; font-size: 0.78rem; color: #64748b; }
.pk-home-district-group__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  margin-top: 0.65rem;
  padding-top: 0.55rem;
  border-top: 1px solid #f1f5f9;
}
.pk-home-district-group__list a {
  font-size: 0.82rem;
  color: #16a34a;
  text-decoration: none;
  font-weight: 600;
}
.pk-home-district-group__list a:hover { text-decoration: underline; }

.pk-home-seo__district-groups {
  display: grid;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
.pk-home-seo__details {
  border: 1px solid #e2e8f0;
  border-radius: 0.65rem;
  background: #fff;
  padding: 0.45rem 0.7rem;
}
.pk-home-seo__details summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: #0f172a;
}
.pk-home-seo__details summary::-webkit-details-marker { display: none; }
.pk-home-seo__details summary span {
  font-weight: 600;
  font-size: 0.78rem;
  color: #64748b;
}
.pk-home-seo__details[open] .pk-seo-links__list {
  margin-top: 0.55rem;
  padding-top: 0.45rem;
  border-top: 1px solid #f1f5f9;
}

.pk-home-seo__city-block {
  margin: 0.85rem 0 1.1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e2e8f0;
}
.pk-home-seo__city-name {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 800;
}
.pk-home-seo__city-name a {
  color: #0f172a;
  text-decoration: none;
}
.pk-home-seo__city-name a:hover { color: #16a34a; }
.pk-home-seo__district-name {
  margin: 0.65rem 0 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
}
.pk-home-seo__district-name a {
  color: #334155;
  text-decoration: none;
}
