/*!
 * services-fx.css — /hizmetler/ sayfasının derinlik ve hareket katmanı
 * =====================================================================
 *
 * NE YAPAR
 * --------
 * 1. Kategori kartlarına GERÇEK 3B eğim: imleç/parmak kartın neresindeyse
 *    kart o yöne yatar, ışık da o noktadan gelir.
 * 2. Yapışkan kategori şeridi: hangi bölümdeysen o çip yanar.
 * 3. Fiyat satırları sırayla açılır (aşağı VE yukarı kaydırırken).
 * 4. Başlıkta ve rozetlerde yavaş gezen ışık.
 *
 * KURALLAR
 * --------
 * • Bu dosya düz CSS'tir. Tailwind bu projede ÖNCEDEN derlendiği için
 *   şablona uydurma "arbitrary" sınıf yazmak sessizce çalışmaz; buradaki
 *   sınıflar derlemeye bağımlı değildir.
 * • İçerik, metin ve SEO işaretlemesi DEĞİŞMEZ; yalnızca görsel katman.
 * • Yerleşim bozulmaz: sadece transform, opacity, filter ve CSS değişkeni
 *   kullanılır — hiçbiri belge akışını etkilemez.
 *
 * HAREKET TERCİHİ
 * ---------------
 * "Hareketi azalt" açıkken IŞIK ve opaklık çalışmaya devam eder (bunlar
 * vestibüler rahatsızlık tetiklemez), 3B eğim ve yer değiştirme kapanır.
 * Işığı da kapatmak sayfayı ölü gösterirdi; istenen hareketin azalması.
 */

/* ---------------------------------------------------------------- *
 * 1. KATEGORİ KARTI — 3B eğim
 * ---------------------------------------------------------------- */

.svc-deck {
  /* Perspektif ANNE öğede durmalı; her kartta ayrı ayrı tanımlanırsa
     kartlar birbirinden bağımsız kaçış noktalarına sahip olur ve göz
     bunu "yamuk" olarak okur. */
  perspective: 1400px;
  perspective-origin: 50% 40%;
}

.svc-card {
  position: relative;
  transform-style: preserve-3d;
  /* --svc-rx / --svc-ry JavaScript tarafından yazılır. */
  transform: rotateX(var(--svc-rx, 0deg)) rotateY(var(--svc-ry, 0deg))
             translate3d(0, 0, 0);
  transition: transform .5s cubic-bezier(.22, 1, .36, 1),
              box-shadow .5s cubic-bezier(.22, 1, .36, 1),
              border-color .35s ease;
  will-change: transform;
}

/* Parmak/imleç kartın üzerindeyken geçiş kısalır: takip gecikmeli
   olursa kart "ağır" hissedilir. */
.svc-card.is-tilting {
  transition: transform .12s linear, box-shadow .3s ease, border-color .3s ease;
}

.svc-card:hover,
.svc-card:focus-within {
  border-color: rgba(255, 122, 178, .45);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, .5),
    0 18px 40px -18px rgba(0, 0, 0, .75),
    0 0 34px -6px rgba(255, 45, 126, .28);
}

/* Nokta ışık: kartın üstünde imlecin bulunduğu yerden gelir. */
.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    340px circle at var(--svc-mx, 50%) var(--svc-my, 0%),
    rgba(255, 138, 190, .17),
    rgba(255, 138, 190, 0) 62%
  );
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}

.svc-card:hover::before,
.svc-card:focus-within::before {
  opacity: 1;
}

/* Kartın kenarında dolaşan ince ışık çizgisi. */
.svc-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from var(--svc-angle, 0deg),
    rgba(255, 45, 126, 0) 0deg,
    rgba(255, 45, 126, .55) 90deg,
    rgba(233, 199, 155, .5) 160deg,
    rgba(255, 45, 126, 0) 260deg
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .45s ease;
  animation: svc-orbit 7s linear infinite;
  pointer-events: none;
}

.svc-card:hover::after,
.svc-card:focus-within::after {
  opacity: .9;
}

@property --svc-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes svc-orbit {
  to { --svc-angle: 360deg; }
}

/* İkon rozeti kartla birlikte değil, ONDAN ÖNCE hareket eder; derinlik
   hissi bu ayrımdan doğuyor. */
.svc-badge {
  transform: translateZ(38px);
  transition: transform .5s cubic-bezier(.22, 1, .36, 1);
}

.svc-card:hover .svc-badge {
  transform: translateZ(58px) scale(1.06);
}

.svc-title {
  transform: translateZ(24px);
}

/* ---------------------------------------------------------------- *
 * 2. FİYAT SATIRLARI
 * ---------------------------------------------------------------- */

.svc-row {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  padding: .55rem .25rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: background-color .25s ease, padding-left .25s ease;
}

.svc-row:last-child { border-bottom: 0; }

.svc-row:hover {
  background: rgba(255, 255, 255, .035);
  padding-left: .6rem;
}

.svc-row-name { flex: 1 1 auto; min-width: 0; }

/* Ad ile fiyat arasındaki noktalı çizgi: göz satırı kaybetmesin.
   Menü kartlarının klasik çözümü, burada da doğru olan bu. */
.svc-dots {
  flex: 1 1 auto;
  height: 1px;
  min-width: 1.5rem;
  margin-bottom: .18rem;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .28) 1px, transparent 1px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
}

.svc-price {
  flex: 0 0 auto;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.01em;
}

/* ---------------------------------------------------------------- *
 * 2b. KAYDIRMA GİRİŞLERİ
 * ----------------------------------------------------------------
 * GİZLEME YALNIZCA `html.svc-ready` ile birlikte geçerlidir. Bu sınıfı
 * JavaScript ekler; JS çalışmazsa hiçbir içerik gizli kalmaz ve sayfa
 * tam okunur durumda olur. Arama motorları için de kritik olan budur.
 * ---------------------------------------------------------------- */

html.svc-ready .svc-reveal {
  transition:
    opacity .7s cubic-bezier(.22, 1, .36, 1) var(--svc-delay, 0ms),
    translate .7s cubic-bezier(.22, 1, .36, 1) var(--svc-delay, 0ms),
    filter .7s cubic-bezier(.22, 1, .36, 1) var(--svc-delay, 0ms);
}

/* `:not(.svc-in)` şart: aksi halde iki kural aynı özgüllükte kalır ve
   kaynak sırasına göre biri diğerini bastırır — daha önce tam olarak bu
   yüzden kalıcı bulanıklık oluşmuştu. */
html.svc-ready .svc-reveal:not(.svc-in) {
  opacity: 0;
  translate: 0 28px;
  filter: blur(3px);
}

html.svc-ready .svc-reveal.svc-in {
  opacity: 1;
  translate: 0 0;
  filter: none;
}

/* Hareket azaltılmışken mesafe kısalır, bulanıklık kalkar; opaklık
   geçişi kalır. */
@media (prefers-reduced-motion: reduce) {
  html.svc-ready .svc-reveal:not(.svc-in) {
    translate: 0 6px;
    filter: none;
  }
  html.svc-ready .svc-reveal {
    transition-duration: .45s;
  }
}

/* ---------------------------------------------------------------- *
 * 3. YAPIŞKAN KATEGORİ ŞERİDİ
 * ---------------------------------------------------------------- */

.svc-nav {
  position: sticky;
  /* Üstteki site başlığının altına oturur. */
  top: 4.25rem;
  z-index: 30;
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
}

.svc-nav-chip {
  position: relative;
  white-space: nowrap;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease;
}

/* Okunan bölümün çipi yanar. JavaScript yalnızca bu sınıfı taşır. */
.svc-nav-chip[aria-current="true"] {
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 45, 126, .9), rgba(194, 24, 91, .9));
  border-color: transparent;
  box-shadow: 0 0 22px -4px rgba(255, 45, 126, .55);
}

/* ---------------------------------------------------------------- *
 * 4. BAŞLIK IŞIĞI
 * ---------------------------------------------------------------- */

.svc-shine {
  background-image: linear-gradient(
    100deg,
    #ffd9e6 0%, #fff 18%, #ffb3d1 34%, #e9c79b 52%, #fff 70%, #ffd9e6 100%
  );
  background-size: 260% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  animation: svc-shine 9s ease-in-out infinite;
}

@keyframes svc-shine {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* ---------------------------------------------------------------- *
 * 5. HAREKET TERCİHİ
 * ---------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  /* 3B eğim ve yer değiştirme kapanır... */
  .svc-card,
  .svc-card.is-tilting {
    transform: none !important;
    transition: box-shadow .3s ease, border-color .3s ease;
  }
  .svc-badge,
  .svc-card:hover .svc-badge {
    transform: none;
  }
  /* ...ışık ise ÇALIŞMAYA DEVAM EDER: parlaklık değişimi vestibüler
     rahatsızlık tetiklemez, kapatmak sayfayı ölü gösterirdi. Yalnızca
     daha yavaş akar. */
  .svc-card::after { animation-duration: 18s; }
  .svc-shine { animation-duration: 16s; }
}

/* ================================================================ *
 * 6. SİNEMATİK HERO
 * ----------------------------------------------------------------
 * Tam genişlik açılış. Gerçek salon fotoğrafı <img> olarak konur
 * (alt metni indekslenir), üstüne karartma katmanı ve pembe ışık
 * gelir. Fotoğraf kaydırmada yavaş kayar (parallax): --svc-par
 * değerini JavaScript yazar. JS yoksa görsel sabit durur, hiçbir
 * içerik gizlenmez.
 * ================================================================ */

.svc-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(90vh, 780px);
  margin-bottom: 1rem;
}

.svc-hero-img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Sağdaki neon/ayna tarafını göster; sol taraf metin için karanlık kalsın. */
  object-position: 72% 50%;
  /* 1.12 ölçek parallax hareketine pay bırakır, kenarlar açılmaz. */
  transform: scale(1.12) translate3d(0, var(--svc-par, 0px), 0);
  will-change: transform;
}

/* Metnin oturduğu sol-alt bölgeyi karartan çift degrade. */
.svc-hero-veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg,
      rgba(2, 6, 23, .55) 0%, rgba(2, 6, 23, .12) 28%,
      rgba(2, 6, 23, .72) 76%, rgba(2, 6, 23, .97) 100%),
    linear-gradient(90deg,
      rgba(2, 6, 23, .88) 0%, rgba(2, 6, 23, .38) 46%, rgba(2, 6, 23, 0) 78%);
}

.svc-hero-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: screen;
  background:
    radial-gradient(58% 48% at 14% 88%, rgba(255, 45, 126, .24), transparent 70%),
    radial-gradient(48% 40% at 92% 8%, rgba(232, 121, 249, .18), transparent 70%);
}

.svc-hero-inner {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* Yatay boşluk Tailwind px-* sınıflarından gelir; burada YALNIZ dikey. */
  padding-top: 6rem;
  padding-bottom: 3.75rem;
}

/* Ekmek kırıntısını en üste iter, gövdeyi alta bırakır. */
.svc-hero-crumb { margin-bottom: auto; }

.svc-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1.1rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ffd9e6;
}

.svc-hero-eyebrow-dot {
  width: .5rem;
  height: .5rem;
  border-radius: 999px;
  background: #ff2d7e;
  box-shadow: 0 0 12px 2px rgba(255, 45, 126, .8);
  animation: svc-pulse 2.4s ease-in-out infinite;
}

@keyframes svc-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .45; transform: scale(.65); }
}

.svc-hero-title {
  margin: 0;
  max-width: 20ch;
  font-size: clamp(2.15rem, 6vw, 4.15rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff;
  text-shadow: 0 2px 34px rgba(0, 0, 0, .5);
}

.svc-hero-lead {
  margin-top: 1.3rem;
  max-width: 48ch;
  font-size: clamp(1rem, 1.55vw, 1.16rem);
  line-height: 1.62;
  color: rgba(226, 232, 240, .93);
}

.svc-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}

.svc-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.55rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: transform .25s cubic-bezier(.22, 1, .36, 1),
              box-shadow .25s ease, background-color .25s ease;
}

.svc-hero-btn:hover,
.svc-hero-btn:focus-visible { transform: translateY(-2px); }

.svc-hero-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #ff2d7e, #c2185b);
  box-shadow: 0 10px 30px -8px rgba(255, 45, 126, .65);
}
.svc-hero-btn-primary:hover { box-shadow: 0 16px 42px -8px rgba(255, 45, 126, .82); }

.svc-hero-btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .26);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.svc-hero-btn-ghost:hover { background: rgba(255, 255, 255, .16); }

.svc-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1.85rem 0 0;
  padding: 0;
  list-style: none;
}
.svc-hero-chips li {
  padding: .38rem .85rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(226, 232, 240, .92);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .15);
}

/* Aşağı kaydır ipucu */
.svc-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.15rem;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, .45);
  display: flex;
  justify-content: center;
  transition: border-color .25s ease;
}
.svc-scroll-cue:hover { border-color: rgba(255, 255, 255, .85); }
.svc-scroll-cue-dot {
  width: 4px;
  height: 8px;
  margin-top: 6px;
  border-radius: 2px;
  background: #fff;
  animation: svc-scroll 1.8s ease-in-out infinite;
}
@keyframes svc-scroll {
  0%   { opacity: 0; transform: translateY(0); }
  30%  { opacity: 1; }
  60%  { opacity: 1; transform: translateY(12px); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* ================================================================ *
 * 7. MARKA PORTRESİ BANDI
 * ================================================================ */

.svc-story-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .svc-story-grid {
    grid-template-columns: 5fr 7fr;
    gap: 3rem;
  }
}

.svc-story-media {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow:
    0 30px 70px -30px rgba(0, 0, 0, .8),
    0 0 44px -12px rgba(255, 45, 126, .28);
}
.svc-story-media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.22, 1, .36, 1);
}
.svc-story-media:hover img { transform: scale(1.05); }

.svc-story-cap {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .42rem .9rem;
  border-radius: 999px;
  background: rgba(2, 6, 23, .6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
}
.svc-story-cap-dot {
  width: .5rem;
  height: .5rem;
  border-radius: 999px;
  background: #ff2d7e;
  box-shadow: 0 0 10px 1px rgba(255, 45, 126, .8);
}

.svc-story-points {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: grid;
  gap: .7rem;
}
.svc-story-points li {
  position: relative;
  padding-left: 1.95rem;
  line-height: 1.5;
  color: rgba(226, 232, 240, .92);
}
.svc-story-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .05rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #ff2d7e, #c2185b);
}
.svc-story-btn { margin-top: 1.7rem; }

/* ================================================================ *
 * 8. HERO/STORY — HAREKET TERCİHİ
 * ----------------------------------------------------------------
 * Parallax'ı JS zaten kapatır (aşağıda). Burada nabız, kaydırma
 * ipucu ve büyütme durur; ışık ve degradeler kalır.
 * ================================================================ */
@media (prefers-reduced-motion: reduce) {
  .svc-hero-img { transform: scale(1.06); }
  .svc-hero-eyebrow-dot,
  .svc-story-cap-dot { animation: none; }
  .svc-scroll-cue-dot { animation: none; opacity: .8; }
  .svc-story-media:hover img { transform: none; }
  .svc-hero-btn:hover,
  .svc-hero-btn:focus-visible { transform: none; }
}


/* ================================================================ *
 * 9. PREMIUM FAQ — editorial accordion
 * ================================================================ */

.svc-faq {
  position: relative;
  isolation: isolate;
  max-width: 72rem;
  margin: 7rem auto 1rem;
  padding: clamp(1.4rem, 4vw, 3.5rem);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: clamp(1.5rem, 4vw, 2.75rem);
  background:
    linear-gradient(145deg, rgba(28,18,37,.96), rgba(9,8,15,.98));
  box-shadow:
    0 40px 100px -45px rgba(0,0,0,.9),
    inset 0 1px 0 rgba(255,255,255,.1);
}

.svc-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.svc-faq-orb {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
  opacity: .28;
}
.svc-faq-orb-one {
  width: 19rem;
  height: 19rem;
  top: -9rem;
  right: -5rem;
  background: #ff2d7e;
}
.svc-faq-orb-two {
  width: 15rem;
  height: 15rem;
  bottom: -8rem;
  left: -6rem;
  background: #b832d7;
}

.svc-faq-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(16rem, .9fr);
  column-gap: 3rem;
  align-items: end;
  margin-bottom: 2.4rem;
}

.svc-faq-kicker {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  width: fit-content;
  margin: 0 0 1.15rem;
  color: #f9a8d4;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.svc-faq-kicker span {
  color: #fff;
  filter: drop-shadow(0 0 8px rgba(255,45,126,.85));
}

.svc-faq-title {
  margin: 0;
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.045em;
}

.svc-faq-title span {
  background: linear-gradient(110deg, #fff 0%, #f9a8d4 42%, #e879f9 75%, #fff 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: svc-faq-shine 8s ease-in-out infinite;
}

.svc-faq-intro {
  max-width: 32rem;
  margin: 0 0 .35rem;
  color: rgba(203,213,225,.82);
  font-size: 1rem;
  line-height: 1.7;
}

.svc-faq-list {
  display: grid;
  gap: .8rem;
}

.svc-faq-item {
  position: relative;
  overflow: clip;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 1.25rem;
  background: rgba(255,255,255,.035);
  transition:
    border-color .35s ease,
    background-color .35s ease,
    box-shadow .35s ease,
    transform .35s cubic-bezier(.22,1,.36,1);
}

.svc-faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(249,168,212,.24);
  background: rgba(255,255,255,.052);
}

.svc-faq-item[open] {
  border-color: rgba(249,168,212,.3);
  background:
    linear-gradient(130deg, rgba(255,45,126,.105), rgba(255,255,255,.045));
  box-shadow:
    0 18px 42px -28px rgba(0,0,0,.9),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.svc-faq-item[open]::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(#ff2d7e, #e879f9);
  box-shadow: 0 0 18px rgba(255,45,126,.8);
}

.svc-faq-question {
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr) 2.6rem;
  gap: 1rem;
  align-items: center;
  min-height: 5.4rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.svc-faq-question::-webkit-details-marker { display: none; }

.svc-faq-number {
  color: rgba(249,168,212,.58);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.svc-faq-question-text {
  color: rgba(248,250,252,.94);
  font-size: clamp(1rem, 2vw, 1.16rem);
  font-weight: 700;
  line-height: 1.4;
  transition: color .3s ease;
}

.svc-faq-item[open] .svc-faq-question-text { color: #fff; }

.svc-faq-toggle {
  position: relative;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  transition: transform .45s cubic-bezier(.22,1,.36,1), background .3s ease, border-color .3s ease;
}

.svc-faq-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: .9rem;
  height: 1.5px;
  border-radius: 99px;
  background: #fce7f3;
  transform: translate(-50%, -50%);
  transition: transform .35s ease, opacity .3s ease;
}
.svc-faq-toggle span:last-child { transform: translate(-50%, -50%) rotate(90deg); }

.svc-faq-item[open] .svc-faq-toggle {
  transform: rotate(180deg);
  border-color: rgba(249,168,212,.4);
  background: linear-gradient(135deg, rgba(255,45,126,.3), rgba(232,121,249,.2));
}
.svc-faq-item[open] .svc-faq-toggle span:last-child {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0);
}

.svc-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .48s cubic-bezier(.22,1,.36,1);
}
.svc-faq-item[open] .svc-faq-answer { grid-template-rows: 1fr; }

.svc-faq-answer p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 5rem 0 4.85rem;
  color: rgba(203,213,225,.88);
  font-size: .96rem;
  line-height: 1.75;
}
.svc-faq-item[open] .svc-faq-answer p { padding-bottom: 1.5rem; }

.svc-faq-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1.3rem 1.45rem;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 1.25rem;
  background: linear-gradient(120deg, rgba(255,255,255,.055), rgba(255,45,126,.08));
}

.svc-faq-footer-label {
  display: block;
  margin-bottom: .22rem;
  color: rgba(203,213,225,.7);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.svc-faq-footer strong {
  color: #fff;
  font-size: 1rem;
}

.svc-faq-whatsapp {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #16a34a, #059669);
  box-shadow: 0 12px 28px -12px rgba(16,185,129,.8);
  font-size: .87rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .28s ease, box-shadow .28s ease;
}
.svc-faq-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -12px rgba(16,185,129,.9);
}

@keyframes svc-faq-shine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Genel hizmet kartlarını daha rafine hale getirir. */
.svc-card {
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(30,22,39,.86), rgba(10,10,17,.94));
  box-shadow: 0 28px 65px -38px rgba(0,0,0,.95), inset 0 1px 0 rgba(255,255,255,.07);
}
.svc-card:hover,
.svc-card:focus-within {
  box-shadow:
    0 38px 80px -38px rgba(0,0,0,.98),
    0 0 48px -18px rgba(255,45,126,.5),
    inset 0 1px 0 rgba(255,255,255,.1);
}

@media (max-width: 720px) {
  .svc-faq { margin-top: 4.5rem; padding: 1.15rem; }
  .svc-faq-heading { grid-template-columns: 1fr; gap: 1rem; }
  .svc-faq-intro { margin-top: .3rem; }
  .svc-faq-question {
    grid-template-columns: 2rem minmax(0, 1fr) 2.35rem;
    gap: .65rem;
    padding: .85rem;
  }
  .svc-faq-toggle { width: 2.35rem; height: 2.35rem; }
  .svc-faq-answer p { padding: 0 1rem 0 3.5rem; font-size: .9rem; }
  .svc-faq-item[open] .svc-faq-answer p { padding-bottom: 1.2rem; }
  .svc-faq-footer { align-items: stretch; flex-direction: column; }
  .svc-faq-whatsapp { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .svc-faq-title span { animation: none; }
  .svc-faq-item,
  .svc-faq-toggle,
  .svc-faq-whatsapp,
  .svc-faq-answer { transition-duration: .01ms; }
}


/* ================================================================ *
 * 10. UZMAN İÇERİK, YEREL GÜVEN VE İÇ BAĞLANTILAR
 * ================================================================ */

.svc-guide,
.svc-local-proof,
.svc-links {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

.svc-guide { margin-top: 7rem; }

.svc-guide-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, .85fr);
  gap: 1.3rem 3rem;
  align-items: end;
  margin-bottom: 2.2rem;
}

.svc-guide-kicker {
  grid-column: 1 / -1;
  width: fit-content;
  margin: 0;
  color: #f9a8d4;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.svc-guide-heading h2,
.svc-local-copy h2,
.svc-links h2 {
  margin: 0;
  color: #fff;
  font-weight: 800;
  letter-spacing: -.035em;
}

.svc-guide-heading h2 {
  font-size: clamp(2.15rem, 4.6vw, 4rem);
  line-height: 1.02;
}

.svc-guide-heading h2 span {
  background: linear-gradient(110deg, #fff, #f9a8d4 45%, #e879f9 78%, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.svc-guide-heading > p:last-child,
.svc-local-copy > p:last-child,
.svc-links > div > p:last-child {
  margin: 0;
  color: rgba(203,213,225,.84);
  line-height: 1.75;
}

.svc-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
}

.svc-guide-card {
  position: relative;
  isolation: isolate;
  min-height: 100%;
  padding: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.095);
  border-radius: 1.65rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,45,126,.13), transparent 42%),
    linear-gradient(145deg, rgba(29,21,38,.92), rgba(10,9,16,.96));
  box-shadow: 0 28px 65px -42px rgba(0,0,0,.95), inset 0 1px 0 rgba(255,255,255,.07);
  transition: transform .4s cubic-bezier(.22,1,.36,1), border-color .35s ease, box-shadow .4s ease;
}

.svc-guide-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 20%, rgba(249,168,212,.12), transparent 72%);
  opacity: 0;
  transition: opacity .4s ease;
}

.svc-guide-card:hover {
  transform: translateY(-7px);
  border-color: rgba(249,168,212,.3);
  box-shadow: 0 38px 75px -38px rgba(0,0,0,.95), 0 0 38px -18px rgba(255,45,126,.48);
}
.svc-guide-card:hover::after { opacity: 1; }

.svc-guide-index {
  position: absolute;
  top: 1.35rem;
  right: 1.4rem;
  color: rgba(249,168,212,.32);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.svc-guide-icon {
  display: grid;
  place-items: center;
  width: 3.3rem;
  height: 3.3rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(255,45,126,.22), rgba(232,121,249,.1));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 14px 32px -18px rgba(255,45,126,.8);
  font-size: 1.45rem;
}

.svc-guide-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.28rem;
  font-weight: 750;
}

.svc-guide-card > p {
  margin: .8rem 0 0;
  color: rgba(203,213,225,.84);
  font-size: .92rem;
  line-height: 1.7;
}

.svc-guide-card ul {
  display: grid;
  gap: .55rem;
  margin: 1.2rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(255,255,255,.075);
  list-style: none;
}

.svc-guide-card li {
  position: relative;
  padding-left: 1.15rem;
  color: rgba(226,232,240,.9);
  font-size: .82rem;
  line-height: 1.5;
}
.svc-guide-card li::before {
  content: "";
  position: absolute;
  top: .55em;
  left: 0;
  width: .38rem;
  height: .38rem;
  border-radius: 50%;
  background: #f472b6;
  box-shadow: 0 0 9px rgba(244,114,182,.75);
}

.svc-local-proof {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(17rem,.9fr);
  gap: 2.5rem;
  align-items: center;
  margin-top: 1rem;
  padding: clamp(1.5rem,4vw,3rem);
  border: 1px solid rgba(255,255,255,.095);
  border-radius: 1.75rem;
  background:
    radial-gradient(circle at 10% 100%, rgba(232,121,249,.12), transparent 42%),
    rgba(255,255,255,.035);
}

.svc-local-copy h2,
.svc-links h2 {
  margin-top: .7rem;
  font-size: clamp(1.65rem,3vw,2.45rem);
  line-height: 1.1;
}
.svc-local-copy > p:last-child { margin-top: 1rem; }

.svc-local-facts {
  display: grid;
  gap: .65rem;
  margin: 0;
}
.svc-local-facts div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 1rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 1rem;
  background: rgba(2,6,23,.28);
}
.svc-local-facts dt {
  color: rgba(148,163,184,.78);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.svc-local-facts dd {
  margin: 0;
  color: #fff;
  font-size: .86rem;
  font-weight: 700;
  text-align: right;
}

.svc-links {
  display: grid;
  grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr);
  gap: 2.5rem;
  margin-top: 1rem;
  padding: clamp(1.5rem,4vw,3rem);
}
.svc-links > div > p:last-child { margin-top: .85rem; }

.svc-links-list {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: .6rem;
}
.svc-links-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  padding: .8rem 1rem;
  border: 1px solid rgba(255,255,255,.085);
  border-radius: .95rem;
  color: rgba(241,245,249,.92);
  background: rgba(255,255,255,.035);
  font-size: .84rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .28s ease, color .28s ease, border-color .28s ease, background .28s ease;
}
.svc-links-list a:hover {
  transform: translateX(4px);
  color: #fff;
  border-color: rgba(249,168,212,.3);
  background: rgba(255,45,126,.09);
}
.svc-links-list a span:last-child { color: #f9a8d4; }

@media (max-width: 900px) {
  .svc-guide-heading,
  .svc-local-proof,
  .svc-links { grid-template-columns: 1fr; }
  .svc-guide-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .svc-guide { margin-top: 4.5rem; padding: 0 1rem; }
  .svc-local-proof,
  .svc-links { margin-left: 1rem; margin-right: 1rem; padding: 1.25rem; }
  .svc-links-list { grid-template-columns: 1fr; }
  .svc-guide-card:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .svc-guide-card,
  .svc-links-list a { transition: none; }
  .svc-guide-card:hover,
  .svc-links-list a:hover { transform: none; }
}


/* ================================================================ *
 * 11. EDITORIAL SERVICE SHOWCASE — her kart farklı karakter
 * ================================================================ */

.svc-deck {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2.4rem);
  perspective: 1800px;
}

.svc-card {
  --svc-accent: 255, 45, 126;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(16rem, .76fr) minmax(0, 1.24fr);
  gap: clamp(1.4rem, 4vw, 3.4rem);
  padding: clamp(1.35rem, 3vw, 2.5rem);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: clamp(1.5rem, 3vw, 2.4rem);
  background: #100c16;
  box-shadow:
    0 45px 90px -55px rgba(0,0,0,.98),
    inset 0 1px 0 rgba(255,255,255,.08);
  transform:
    translate3d(0, var(--svc-depth, 0px), 0)
    rotateX(var(--svc-rx, 0deg))
    rotateY(var(--svc-ry, 0deg));
  transition:
    transform .65s cubic-bezier(.16,1,.3,1),
    border-color .4s ease,
    box-shadow .55s cubic-bezier(.16,1,.3,1);
}

.svc-card:nth-child(4n+2) { --svc-accent: 232, 121, 249; }
.svc-card:nth-child(4n+3) { --svc-accent: 244, 114, 182; }
.svc-card:nth-child(4n+4) { --svc-accent: 233, 199, 155; }

.svc-card-light {
  position: absolute;
  inset: -30%;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(420px circle at var(--svc-mx, 25%) var(--svc-my, 20%),
      rgba(var(--svc-accent),.22), transparent 64%);
  opacity: .56;
  transition: opacity .45s ease;
}

.svc-card-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .16;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.22) 0 1px, transparent 1.5px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,.12) 0 1px, transparent 1.5px);
  background-size: 31px 31px, 47px 47px;
  mask-image: linear-gradient(120deg,#000,transparent 68%);
}

.svc-card:hover,
.svc-card:focus-within {
  border-color: rgba(var(--svc-accent),.42);
  box-shadow:
    0 55px 100px -52px rgba(0,0,0,1),
    0 0 56px -24px rgba(var(--svc-accent),.64),
    inset 0 1px 0 rgba(255,255,255,.12);
}
.svc-card:hover .svc-card-light { opacity: 1; }

/* 1 — Spotlight: güçlü karanlık vitrin */
.svc-card--spotlight {
  background:
    radial-gradient(circle at 0% 0%, rgba(255,45,126,.2), transparent 42%),
    linear-gradient(135deg,#211323 0%,#0d0b12 64%);
}
.svc-card--spotlight .svc-card-head {
  align-self: center;
}

/* 2 — Editorial: açık pembe dikey panel hissi */
.svc-card--editorial {
  grid-template-columns: minmax(0,1.25fr) minmax(16rem,.75fr);
  background:
    linear-gradient(110deg,rgba(255,255,255,.055) 0 48%,transparent 48%),
    linear-gradient(145deg,#120e18,#1c101e);
}
.svc-card--editorial .svc-card-head { grid-column: 2; grid-row: 1; }
.svc-card--editorial .svc-card-body { grid-column: 1; grid-row: 1; }
.svc-card--editorial .svc-badge { margin-left: auto; }
.svc-card--editorial .svc-card-overline { justify-content: flex-end; }
.svc-card--editorial .svc-title { text-align: right; }

/* 3 — Aurora: üst başlık + iki kolonlu menü */
.svc-card--aurora {
  grid-template-columns: 1fr;
  background:
    radial-gradient(circle at 15% -20%,rgba(244,114,182,.22),transparent 43%),
    radial-gradient(circle at 90% 110%,rgba(139,92,246,.18),transparent 48%),
    linear-gradient(140deg,#17101f,#090910);
}
.svc-card--aurora .svc-card-head {
  display: grid;
  grid-template-columns: auto minmax(0,1fr);
  max-width: 56rem;
}
.svc-card--aurora .svc-menu {
  grid-template-columns: repeat(2,minmax(0,1fr));
  column-gap: 1.6rem;
}

/* 4 — Outline: daha ferah, çizgisel lüks */
.svc-card--outline {
  grid-template-columns: minmax(0,.68fr) minmax(0,1.32fr);
  background:
    linear-gradient(145deg,rgba(255,255,255,.025),rgba(255,255,255,.008)),
    #0b0910;
}
.svc-card--outline::before {
  background:
    linear-gradient(90deg,rgba(var(--svc-accent),.8),transparent) top left/44% 1px no-repeat,
    linear-gradient(180deg,rgba(var(--svc-accent),.55),transparent) top left/1px 58% no-repeat;
  opacity: .7;
}

.svc-card-head {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.svc-badge {
  position: relative;
  display: grid;
  place-items: center;
  width: 4.8rem;
  height: 4.8rem;
  margin-bottom: 1.35rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 1.5rem;
  background:
    linear-gradient(145deg,rgba(var(--svc-accent),.28),rgba(255,255,255,.025));
  box-shadow:
    0 20px 45px -24px rgba(var(--svc-accent),.95),
    inset 0 1px 0 rgba(255,255,255,.14);
  transform: translateZ(54px);
}

.svc-badge-icon {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  filter: drop-shadow(0 7px 12px rgba(0,0,0,.32));
}

.svc-badge-orbit {
  position: absolute;
  inset: -.48rem;
  border: 1px dashed rgba(var(--svc-accent),.42);
  border-radius: 1.8rem;
  animation: svc-badge-orbit 13s linear infinite;
}

.svc-card-overline {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 0 0 .75rem;
  color: rgba(203,213,225,.68);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.svc-card-overline span:first-child {
  color: rgb(var(--svc-accent));
  text-shadow: 0 0 16px rgba(var(--svc-accent),.7);
}

.svc-title h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.75rem,3.3vw,3.15rem);
  font-weight: 820;
  letter-spacing: -.045em;
  line-height: 1;
  text-wrap: balance;
}

.svc-card-description {
  max-width: 36rem;
  margin: 1rem 0 0;
  color: rgba(203,213,225,.87);
  line-height: 1.65;
}
.svc-card--editorial .svc-card-description { margin-left: auto; }

.svc-card-price-note {
  display: inline-flex;
  margin: 1.1rem 0 0;
  padding: .48rem .72rem;
  border: 1px solid rgba(var(--svc-accent),.2);
  border-radius: 999px;
  color: rgba(249,168,212,.95);
  background: rgba(var(--svc-accent),.075);
  font-size: .75rem;
  font-weight: 700;
}

.svc-card-body {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.svc-menu {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.svc-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: .7rem;
  min-height: 2.75rem;
  padding: .55rem .35rem;
  border-bottom: 1px solid rgba(255,255,255,.065);
  transition:
    padding-left .28s ease,
    background-color .28s ease,
    color .28s ease;
}

.svc-row-marker {
  width: .35rem;
  height: .35rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(var(--svc-accent),.66);
  box-shadow: 0 0 9px rgba(var(--svc-accent),.45);
  transition: transform .3s ease, box-shadow .3s ease;
}

.svc-row-name {
  flex: 0 1 auto;
  min-width: 0;
  color: rgba(241,245,249,.92);
  font-size: .9rem;
  font-weight: 600;
}

.svc-row:hover {
  padding-left: .7rem;
  background: linear-gradient(90deg,rgba(var(--svc-accent),.08),transparent);
}
.svc-row:hover .svc-row-marker {
  transform: scale(1.6);
  box-shadow: 0 0 14px rgba(var(--svc-accent),.85);
}

.svc-dots {
  flex: 1 1 1.5rem;
  min-width: 1.5rem;
  opacity: .8;
}

.svc-price {
  flex: 0 0 auto;
  color: #fff;
  font-size: .88rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.svc-price > span { color: rgb(var(--svc-accent)); font-size: .75rem; }

.svc-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.09);
}

.svc-card-live {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(148,163,184,.83);
  font-size: .72rem;
}
.svc-card-live > span {
  width: .42rem;
  height: .42rem;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 5px rgba(52,211,153,.08),0 0 12px rgba(52,211,153,.65);
  animation: svc-live 2.4s ease-in-out infinite;
}

.svc-card-cta {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .68rem .78rem .68rem 1rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg,rgba(var(--svc-accent),.9),rgba(168,85,247,.82));
  box-shadow: 0 14px 30px -16px rgba(var(--svc-accent),.9);
  font-size: .8rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .3s cubic-bezier(.22,1,.36,1),box-shadow .3s ease;
}
.svc-card-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 38px -14px rgba(var(--svc-accent),1);
}

.svc-card-arrow {
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  transition: transform .3s ease;
}
.svc-card-cta:hover .svc-card-arrow { transform: rotate(45deg); }

/* Yukarı/aşağı kaydırmada kartlar farklı yönden sahneye girer. */
html.svc-ready[data-svc-direction="down"] .svc-card.svc-reveal:not(.svc-in) {
  opacity: 0;
  translate: 0 72px;
  scale: .965;
  filter: blur(8px);
}
html.svc-ready[data-svc-direction="up"] .svc-card.svc-reveal:not(.svc-in) {
  opacity: 0;
  translate: 0 -58px;
  scale: .975;
  filter: blur(7px);
}
html.svc-ready .svc-card.svc-reveal {
  transition:
    opacity .85s cubic-bezier(.16,1,.3,1) var(--svc-delay,0ms),
    translate .85s cubic-bezier(.16,1,.3,1) var(--svc-delay,0ms),
    scale .85s cubic-bezier(.16,1,.3,1) var(--svc-delay,0ms),
    filter .75s ease var(--svc-delay,0ms),
    border-color .4s ease,
    box-shadow .5s ease;
}

html.svc-ready .svc-card.svc-in .svc-row {
  animation: svc-row-arrive .62s cubic-bezier(.16,1,.3,1) both;
  animation-delay: calc(var(--row-index,0) * 42ms + 170ms);
}

/* Kart çıkarken satırlar da nazikçe geri çekilir; tekrar girişte yeniden oynar. */
html.svc-ready .svc-card:not(.svc-in) .svc-row {
  opacity: 0;
  translate: 18px 0;
}

@keyframes svc-row-arrive {
  from { opacity:0; translate:22px 0; filter:blur(3px); }
  to { opacity:1; translate:0 0; filter:none; }
}
@keyframes svc-badge-orbit { to { transform:rotate(360deg); } }
@keyframes svc-live {
  0%,100% { opacity:.65; transform:scale(.82); }
  50% { opacity:1; transform:scale(1.08); }
}

@media (max-width: 900px) {
  .svc-card,
  .svc-card--editorial,
  .svc-card--outline { grid-template-columns: 1fr; }
  .svc-card--editorial .svc-card-head,
  .svc-card--editorial .svc-card-body { grid-column:auto; grid-row:auto; }
  .svc-card--editorial .svc-card-head { order:0; }
  .svc-card--editorial .svc-card-body { order:1; }
  .svc-card--editorial .svc-badge { margin-left:0; }
  .svc-card--editorial .svc-card-overline { justify-content:flex-start; }
  .svc-card--editorial .svc-title { text-align:left; }
  .svc-card--editorial .svc-card-description { margin-left:0; }
}

@media (max-width: 640px) {
  .svc-deck { gap:1.1rem; }
  .svc-card { padding:1.15rem; border-radius:1.5rem; }
  .svc-card--aurora .svc-card-head { grid-template-columns:1fr; }
  .svc-card--aurora .svc-menu { grid-template-columns:1fr; }
  .svc-badge { width:4rem; height:4rem; border-radius:1.2rem; }
  .svc-title h3 { font-size:1.85rem; }
  .svc-card-footer { align-items:stretch; flex-direction:column; }
  .svc-card-cta { justify-content:space-between; }
  .svc-card-live { padding-left:.25rem; }
}

/* Hareket tercihi olan ziyaretçide içerik kaybolmaz; tasarım yine canlı kalır. */
@media (prefers-reduced-motion: reduce) {
  html.svc-ready[data-svc-direction] .svc-card.svc-reveal:not(.svc-in) {
    opacity:0;
    translate:0 12px;
    scale:.995;
    filter:none;
  }
  .svc-badge-orbit,
  .svc-card-live > span { animation-duration:20s; }
}


/* ================================================================ *
 * 12. TINA ICON LANGUAGE + RESPONSIVE APP SHELL
 * ================================================================ */

.svc-icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.svc-nav-icon,
.svc-badge-icon,
.svc-guide-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc-nav-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  color: rgba(249,168,212,.82);
  transition: transform .32s cubic-bezier(.22,1,.36,1), color .25s ease;
}

.svc-nav-chip:hover .svc-nav-icon,
.svc-nav-chip[aria-current="true"] .svc-nav-icon {
  color: #fff;
  transform: rotate(-5deg) scale(1.12);
}

.svc-badge {
  color: rgb(var(--svc-accent));
  overflow: visible;
}

.svc-badge::before,
.svc-badge::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.svc-badge::before {
  inset: .4rem;
  border-radius: 1.05rem;
  background:
    radial-gradient(circle at 28% 22%,rgba(255,255,255,.25),transparent 34%),
    linear-gradient(145deg,rgba(var(--svc-accent),.16),rgba(255,255,255,.02));
  box-shadow: inset 0 1px 1px rgba(255,255,255,.13);
}

.svc-badge::after {
  width: 1.2rem;
  height: 1.2rem;
  top: -.28rem;
  right: -.28rem;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%,#fff 0 8%,rgba(var(--svc-accent),.95) 20%,rgba(var(--svc-accent),0) 72%);
  filter: blur(.2px);
  animation: svc-icon-satellite 5.8s ease-in-out infinite;
}

.svc-badge-icon {
  position: relative;
  z-index: 3;
  width: 2.35rem;
  height: 2.35rem;
  color: #fff;
  filter:
    drop-shadow(0 0 8px rgba(var(--svc-accent),.8))
    drop-shadow(0 10px 14px rgba(0,0,0,.38));
  transition: transform .5s cubic-bezier(.16,1,.3,1),filter .4s ease;
}

.svc-card:hover .svc-badge-icon {
  transform: scale(1.1) rotate(-4deg);
  filter:
    drop-shadow(0 0 13px rgba(var(--svc-accent),1))
    drop-shadow(0 13px 18px rgba(0,0,0,.42));
}

.svc-guide-icon {
  color: #fff;
  overflow: visible;
}
.svc-guide-icon svg {
  width: 1.85rem;
  height: 1.85rem;
  filter: drop-shadow(0 0 8px rgba(244,114,182,.72));
  transition: transform .45s cubic-bezier(.16,1,.3,1);
}
.svc-guide-card:hover .svc-guide-icon svg {
  transform: scale(1.12) rotate(-5deg);
}

/* Uygulama kabuğu: masaüstünde kontrollü dock, mobilde native yatay sekmeler. */
.svc-nav {
  border-color: rgba(255,255,255,.12);
  background:
    linear-gradient(180deg,rgba(20,14,27,.88),rgba(9,8,13,.9));
  box-shadow:
    0 22px 50px -30px rgba(0,0,0,.95),
    inset 0 1px 0 rgba(255,255,255,.09);
}

.svc-nav ul {
  scroll-snap-type: x proximity;
  overscroll-behavior-inline: contain;
}

.svc-nav li { scroll-snap-align: center; }

.svc-nav-chip {
  min-height: 2.55rem;
  border-color: rgba(255,255,255,.1);
  background: rgba(255,255,255,.035);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.045);
}

.svc-nav-chip[aria-current="true"] {
  background:
    linear-gradient(135deg,rgba(255,45,126,.96),rgba(168,85,247,.9));
  box-shadow:
    0 10px 28px -10px rgba(255,45,126,.82),
    inset 0 1px 0 rgba(255,255,255,.25);
}

.svc-card::after {
  z-index: 6;
}

/* Kartın üst kenarında uygulama durum ışığı */
.svc-card-body::before {
  content: "";
  position: absolute;
  top: -.9rem;
  right: 0;
  width: 4.6rem;
  height: 1px;
  background: linear-gradient(90deg,transparent,rgba(var(--svc-accent),.9));
  box-shadow: 0 0 13px rgba(var(--svc-accent),.66);
}

@keyframes svc-icon-satellite {
  0%,100% { transform: translate3d(0,0,0) scale(.85); opacity:.55; }
  50% { transform: translate3d(-7px,7px,0) scale(1.08); opacity:1; }
}

@media (min-width: 1024px) {
  .svc-nav {
    margin-bottom: 2.3rem;
    padding: .65rem .75rem;
    border-radius: 1.35rem;
  }

  .svc-nav ul {
    justify-content: center;
    padding: 0;
  }

  .svc-card--spotlight { min-height: 32rem; }
  .svc-card--editorial { min-height: 29rem; }
  .svc-card--aurora { padding: 2.8rem; }

  .svc-card--spotlight .svc-card-head,
  .svc-card--outline .svc-card-head {
    position: sticky;
    top: 8rem;
  }
}

@media (max-width: 767px) {
  .tina-services-app {
    background:
      radial-gradient(circle at 80% 4%,rgba(255,45,126,.13),transparent 22rem),
      linear-gradient(180deg,#0b0810,#120c17 52%,#08070b);
  }

  .svc-nav {
    top: 3.95rem;
    margin-left: -1rem;
    margin-right: -1rem;
    padding: .62rem 1rem;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    backdrop-filter: blur(24px) saturate(1.35);
    -webkit-backdrop-filter: blur(24px) saturate(1.35);
  }

  .svc-nav ul {
    gap: .5rem;
    padding-right: 1rem;
  }

  .svc-nav-chip {
    min-height: 2.75rem;
    padding: .55rem .85rem;
    font-size: .78rem;
  }

  .svc-card {
    border-radius: 1.7rem;
    box-shadow:
      0 25px 55px -34px rgba(0,0,0,.98),
      inset 0 1px 0 rgba(255,255,255,.095);
  }

  .svc-card-head {
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    column-gap: 1rem;
    align-items: start;
  }

  .svc-card-head .svc-badge {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 3.6rem;
    height: 3.6rem;
    margin: 0;
    border-radius: 1.1rem;
  }

  .svc-card-head .svc-title {
    grid-column: 2;
  }

  .svc-badge-icon { width: 1.8rem; height: 1.8rem; }
  .svc-badge-orbit { inset: -.32rem; border-radius: 1.3rem; }

  .svc-card-overline {
    margin-bottom: .45rem;
    font-size: .62rem;
    letter-spacing: .08em;
  }

  .svc-title h3 {
    font-size: clamp(1.55rem,7vw,2rem);
    line-height: 1.03;
  }

  .svc-card-description {
    grid-column: 1 / -1;
    margin-top: 1rem;
    font-size: .88rem;
  }

  .svc-card-price-note {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .svc-row {
    min-height: 3.05rem;
    padding-top: .7rem;
    padding-bottom: .7rem;
  }

  .svc-row-name { font-size: .86rem; }
  .svc-price { font-size: .83rem; }

  .svc-card-light {
    background:
      radial-gradient(300px circle at 78% var(--svc-my,15%),rgba(var(--svc-accent),.18),transparent 65%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .svc-badge::after,
  .svc-badge-orbit { animation:none; }
}

.svc-cta-icon {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 7px rgba(255,255,255,.55));
}
