/* =========================================================
   HOME SIGNALS — Anasayfa hero sonrası 4 güven sinyali
   Yasa uyumlu · AI destekli · 37 dil · 7 yıllık iz
   Dark tema anasayfa için: glass card estetiği
   ========================================================= */
.home-signals {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem) 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(230, 22, 115, 0.055), transparent 55%),
    radial-gradient(ellipse at 85% 50%, rgba(99, 102, 241, 0.045), transparent 55%);
}
.home-signals::before,
.home-signals::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.06) 20%,
    rgba(255, 255, 255, 0.06) 80%,
    transparent);
}
.home-signals::before { top: 0; }
.home-signals::after  { bottom: 0; }

.home-signals__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  align-items: stretch;
}
@media (max-width: 900px) {
  .home-signals__list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .home-signals__list { grid-template-columns: 1fr; gap: 0.625rem; }
}

.home-signals__cell {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              background 0.3s ease;
}
.home-signals__cell:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(230, 22, 115, 0.28);
}

.home-signals__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(230, 22, 115, 0.18), rgba(99, 102, 241, 0.14));
  color: #ff5aa0;
}
.home-signals__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.home-signals__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}
.home-signals__label {
  font-family: var(--ff-display, 'Inter Tight', Inter, sans-serif);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: #fff;
  line-height: 1.2;
  text-decoration: none;
}
.home-signals__label--link { position: relative; }
.home-signals__label--link::after {
  content: "→";
  margin-left: 6px;
  color: #ff5aa0;
  font-weight: 700;
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.home-signals__cell:hover .home-signals__label--link::after {
  transform: translateX(3px);
}
.home-signals__sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.35;
  margin-top: 3px;
}

/* =========================================================
   LIVING SYSTEM — sakin, düzenli gelişen ürün katmanı
   ========================================================= */
.new-features {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 5rem);
  width: min(1240px, calc(100% - 2rem));
  margin: clamp(2.5rem, 6vw, 6rem) auto;
  padding: clamp(2rem, 5vw, 4.5rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: clamp(24px, 3vw, 38px);
  background:
    radial-gradient(circle at 88% 12%, rgba(101, 82, 255, .16), transparent 34%),
    radial-gradient(circle at 8% 88%, rgba(230, 22, 115, .12), transparent 31%),
    rgba(9, 9, 15, .86);
  box-shadow: 0 42px 100px -58px rgba(230, 22, 115, .58), inset 0 1px 0 rgba(255,255,255,.04);
}
.new-features::before {
  content: "";
  position: absolute;
  top: 0; left: 8%;
  width: 52%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(230, 22, 115, 0.28) 50%,
    transparent 100%);
}
.new-features__head {
  position: relative;
  z-index: 1;
  align-self: center;
  text-align: left;
  max-width: 470px;
  margin: 0;
}
.new-features__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(230, 22, 115, 0.1);
  border: 1px solid rgba(230, 22, 115, 0.2);
  color: var(--brand-magenta-soft, #ff4a93);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.new-features__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-magenta, #e61673);
  box-shadow: 0 0 8px var(--brand-magenta, #e61673);
  animation: nf-pulse 2.4s ease-in-out infinite;
}
@keyframes nf-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(0.85); }
}
.new-features__title {
  margin: 0 0 0.65rem;
  font-family: var(--ff-display, 'Inter Tight', Inter, sans-serif);
  font-size: clamp(2rem, 4.2vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: .98;
  color: #fff;
}
.new-features__title .accent {
  background: linear-gradient(135deg, var(--brand-magenta, #e61673), var(--brand-indigo, #343c90));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.new-features__sub {
  margin: 0;
  font-size: clamp(0.95rem, 1.3vw, 1.06rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
}

.new-features__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
}

/* Feature card */
.feat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 20px 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  color: inherit;
  text-decoration: none;
  transition: transform .32s cubic-bezier(.16,1,.3,1),
              background .32s ease,
              border-color .32s ease,
              box-shadow .32s ease;
  min-height: 158px;
  overflow: hidden;
}
.feat-card:first-child {
  grid-column: 1 / -1;
  min-height: 174px;
}
.feat-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 20%, rgba(255,255,255,0.14) 50%, transparent 80%);
  opacity: 0.7;
}
.feat-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(230, 22, 115, 0.28);
  box-shadow: 0 22px 44px -18px rgba(230, 22, 115, 0.32);
}
.feat-card__icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(230, 22, 115, 0.18), rgba(52, 60, 144, 0.18));
  border: 1px solid rgba(230, 22, 115, 0.25);
  color: #ff8bc0;
}
.feat-card__icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.feat-card__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: #fff;
  line-height: 1.25;
}
.feat-card__desc {
  margin: 0;
  font-size: 0.83rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
  flex: 1;
}
.feat-card__arrow {
  display: none;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-magenta-soft, #ff8bc0);
  letter-spacing: 0.01em;
  transition: gap .3s cubic-bezier(.16,1,.3,1), color .3s ease;
}
.feat-card__arrow svg {
  width: 14px;
  height: 14px;
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.feat-card:hover .feat-card__arrow { gap: 8px; color: #fff; }
.feat-card:hover .feat-card__arrow svg { transform: translateX(3px); }

/* Vurgu kartı — AI (magenta gradient border glow) */
.feat-card--accent {
  background: linear-gradient(135deg,
    rgba(230, 22, 115, 0.12) 0%,
    rgba(52, 60, 144, 0.08) 100%);
  border-color: rgba(230, 22, 115, 0.28);
}
.feat-card--accent .feat-card__icon {
  background: linear-gradient(135deg, var(--brand-magenta, #e61673), var(--brand-indigo, #343c90));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 16px -4px rgba(230, 22, 115, 0.45);
}
.feat-card--accent:hover {
  border-color: rgba(230, 22, 115, 0.5);
  box-shadow: 0 26px 50px -16px rgba(230, 22, 115, 0.4);
}

/* Küçük "Yeni" rozeti — kartın sağ üstünde */
.feat-card__new {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(230, 22, 115, 0.18);
  color: #ff8bc0;
  border: 1px solid rgba(230, 22, 115, 0.32);
  text-transform: uppercase;
}

@keyframes nf-live-focus {
  0%, 13%, 100% { opacity: .7; border-color: rgba(255,255,255,.08); }
  18%, 34% { opacity: 1; border-color: rgba(230,22,115,.32); }
  40% { opacity: .78; border-color: rgba(255,255,255,.1); }
}
.feat-card { animation: nf-live-focus 18s ease-in-out infinite; }
.feat-card:nth-child(2) { animation-delay: -14.4s; }
.feat-card:nth-child(3) { animation-delay: -10.8s; }
.feat-card:nth-child(4) { animation-delay: -7.2s; }
.feat-card:nth-child(5) { animation-delay: -3.6s; }

@media (max-width: 960px) {
  .new-features {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .new-features__head { max-width: 680px; }
}
@media (max-width: 640px) {
  .new-features {
    width: calc(100% - 1rem);
    margin-block: 2rem;
    padding: 1.25rem;
    border-radius: 24px;
  }
  .new-features__grid { grid-template-columns: 1fr; gap: 10px; }
  .feat-card:first-child { grid-column: auto; min-height: 158px; }
  .new-features__title { font-size: clamp(2rem, 12vw, 3rem); }
}
@media (prefers-reduced-motion: reduce) {
  .new-features__eyebrow::before,
  .feat-card { animation: none !important; }
}

/* =========================================================
   NEW FEATURES STRIP — DEPRECATED (V3.3'te yerine grid geldi)
   Eski CSS geriye uyumluluk için bırakıldı ama HTML kullanmıyor.
   ========================================================= */
.new-strip {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  background: linear-gradient(180deg, transparent 0%, rgba(230, 22, 115, 0.04) 100%);
}
.new-strip::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(230, 22, 115, 0.14) 30%,
    rgba(230, 22, 115, 0.28) 50%,
    rgba(230, 22, 115, 0.14) 70%,
    transparent 100%);
}
.new-strip__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(230, 22, 115, 0.15);
  box-shadow: 0 12px 40px rgba(230, 22, 115, 0.06);
}
@media (max-width: 760px) {
  .new-strip__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.25rem;
    gap: 0.75rem;
  }
}
.new-strip__label {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: var(--brand-magenta, #e61673);
  color: #fff;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(230, 22, 115, 0.35);
  animation: new-strip-pulse 3s ease-in-out infinite;
  justify-self: start;
}
@media (max-width: 760px) {
  .new-strip__label { justify-self: center; }
}
@keyframes new-strip-pulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(230, 22, 115, 0.35); }
  50%      { box-shadow: 0 6px 22px rgba(230, 22, 115, 0.55); }
}

.new-strip__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.new-strip__title {
  margin: 0;
  font-family: var(--ff-display, 'Inter Tight', Inter, sans-serif);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #fff;
  line-height: 1.3;
}
.new-strip__sub {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.new-strip__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 760px) {
  .new-strip__actions { justify-content: center; }
}
.new-strip__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s ease,
              color 0.3s ease,
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}
.new-strip__btn--ghost {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.new-strip__btn--ghost:hover,
.new-strip__btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  transform: translateY(-1px);
}
.new-strip__btn--primary {
  background: linear-gradient(135deg, var(--brand-magenta, #e61673), var(--brand-indigo, #343c90));
  color: #fff;
  box-shadow: 0 6px 18px rgba(230, 22, 115, 0.28);
}
.new-strip__btn--primary:hover,
.new-strip__btn--primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(230, 22, 115, 0.4);
}
.new-strip__btn svg { flex-shrink: 0; transition: transform 0.3s ease; }
.new-strip__btn:hover svg { transform: translate(2px, -1px); }

@media (prefers-reduced-motion: reduce) {
  .new-strip__label { animation: none; }
  .new-strip__btn:hover { transform: none; }
  .new-strip__btn:hover svg { transform: none; }
}
