/* =========================================================
   HOME SIGNALS — Anasayfa hero sonrası 4 güven sinyali
   Yasa uyumlu · AI destekli · 32 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;
}

/* =========================================================
   NEW FEATURES STRIP — YENİ duyurusu (dark tema uyumlu)
   ========================================================= */
.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; }
}
