/* ============================================================
   1NT Landing (PHP) - Global Styles 
   Dosya: /assets/css/site.css
   Notlar:
   - Dark/Light: CSS değişkenleri ile.
   - Mobil: 1024px altında drawer menü.
   - Yeni section eklemek için: .section + .container kullan.
============================================================ */

:root {
  --bg: #f6f8ff;
  --surface: #ffffff;
  --surface-2: #f1f5ff;
  --text: #0b1220;
  --muted: #5a6b86;
  --border: rgba(20, 34, 58, 0.10);
  --shadow: 0 20px 60px rgba(10, 20, 40, 0.10);

  --primary: #2b6cff;
  --primary-2: #7a5cff;
  --radius: 18px;

  --maxw: 1120px;

  /* Aliases (compat for moved blocks) */
  --card: var(--surface);
  --text-secondary: var(--muted);
  --spacing-sm: 0.75rem;
  --spacing-lg: 2.5rem;

  /* Slider compat vars (override via html[data-theme]) */
  --bg-light: #f8fafc;
  --white: #ffffff;
  --slate-900: #0f172a;
  --slate-600: #475569;
  --slate-200: #e2e8f0;
  --shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

html[data-theme="dark"] {
  --bg: #0b1020;
  --surface: #101a33;
  --surface-2: #0f1830;
  --text: #eef3ff;
  --muted: #a9b7d6;
  --border: rgba(255,255,255,0.10);
  --shadow: 0 20px 60px rgba(0,0,0,0.35);

  --primary: #5ea0ff;
  --primary-2: #b18cff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

html[data-theme="light"]{ color-scheme: light; }
html[data-theme="dark"]{ color-scheme: dark; }

body {
  margin: 0;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 10% 0%, rgba(43,108,255,0.12), transparent 60%),
              radial-gradient(1200px 600px at 90% 10%, rgba(177,140,255,0.14), transparent 55%),
              var(--bg);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  width: min(var(--maxw), calc(100% - 32px));
  margin: 0 auto;
}

/* ---------------- Header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(246,248,255,0.92);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
html[data-theme=dark] .site-header {
  background: rgba(11,16,32,0.92);
}

.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
}

.brand-bolt {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, color-mix(in oklab, var(--primary) 90%, white), color-mix(in oklab, var(--primary-2) 80%, white));
  color: white;
}

.brand-text {
  font-weight: 900;
 /* letter-spacing: 0.2px; */
  letter-spacing: -0.05em;
      font-size: 1.5rem;
    line-height: 2rem;
}
.brand-text strong {
    --tw-text-opacity: 1;
    color: rgb(37 99 235 / var(--tw-text-opacity, 1));
 }

.nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-link {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: var(--muted);
  padding: 10px 8px;
  border-radius: 12px;
}

.nav-link.is-active {
  color: var(--text);
  background: color-mix(in oklab, var(--surface) 80%, transparent);
  border: 1px solid var(--border);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pill-group {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--surface) 70%, transparent);
  border: 1px solid var(--border);
}

.pill {
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  color: var(--muted);
}

.pill.is-active {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.icon-btn {
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--surface) 70%, transparent);
  color: var(--text);
  height: 40px;
  width: 40px;
  border-radius: 14px;
  cursor: pointer;
  display: grid;
  place-items: center;
}


.btn {
  border: 1px solid var(--border);
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 900;
  font-size: 24px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  white-space: nowrap;

  /* ✅ Hover animasyonu için temel */
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
  will-change: transform;
}

.btn-primary {
  border: none;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 12px 30px rgba(43,108,255,0.25);
}

/* ✅ Primary hover: biraz yukarı + parlaklık + daha güçlü shadow */
.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 18px 44px rgba(43,108,255,0.34);
}

/* ✅ Ghost: hafif dolma + border belirginleşsin */
.btn-ghost {
  color: var(--text);
  background: color-mix(in oklab, var(--surface) 70%, transparent);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  background: color-mix(in oklab, var(--surface) 88%, transparent);
  border-color: color-mix(in oklab, var(--border) 60%, var(--text) 14%);
  box-shadow: 0 14px 36px rgba(10, 20, 40, 0.12);
}

/* ✅ Klavye ile dolaşımda da güzel görünsün */
.btn:focus-visible {
  outline: 3px solid color-mix(in oklab, var(--primary) 55%, transparent);
  outline-offset: 2px;
}

/* ✅ Tıklarken hafif “press” efekti */
.btn:active {
  transform: translateY(0px) scale(0.99);
}

/* ✅ Hareketi sevmeyenler için */
@media (prefers-reduced-motion: reduce) {
  .btn { transition: none; }
  .btn:hover, .btn:active { transform: none; }
}



/* ---------------- Mobile drawer ---------------- */
.mobile-only { display: none; }

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: none;
}

.mobile-drawer.is-open { display: block; }

.mobile-drawer-inner {
  width: min(420px, 92vw);
  height: 100%;
  background: var(--surface);
  border-right: 1px solid var(--border);
  padding: 16px;
  box-shadow: var(--shadow);
}

.mobile-drawer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.mobile-links { padding: 14px 0; display: grid; gap: 10px; }

.mobile-link {
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--surface-2) 60%, transparent);
  font-weight: 800;
  color: var(--muted);
}

.mobile-link.is-active {
  color: var(--text);
  background: color-mix(in oklab, var(--surface) 90%, transparent);
}

.mobile-actions { display: grid; gap: 10px; }

/* ---------------- Sections ---------------- */
.section { padding: 64px 0; }
.section-tight { padding: 42px 0; }

.hero {
  padding: 56px 0 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--primary) 12%, transparent);
  color: var(--primary);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.3px;
}

/* ✅ Dark modda badge arka planı “beyazlamasın” */
html[data-theme="dark"] .badge{
  background: color-mix(in oklab, var(--primary) 18%, rgba(255,255,255,0.04));
  border-color: rgba(255,255,255,0.14);
  color: color-mix(in oklab, var(--primary) 70%, #ffffff);
}


.h1 {
  margin: 18px 0 12px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -1px;
}

.gradient {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sub {
  margin: 0 auto;
  max-width: 740px;
  color: var(--muted);
  font-size: 1.25rem;;
  font-weight: 500;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cards {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
}

.card {
  background: color-mix(in oklab, var(--surface) 90%, transparent);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);

  /* ✅ Hover altyapısı */
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
  will-change: transform;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 55px rgba(0,0,0,0.12);
  border-color: color-mix(in oklab, var(--border) 50%, var(--primary) 25%);
  background: color-mix(in oklab, var(--surface) 96%, transparent);
}


.card h3 { margin: 10px 0 6px; font-size: 16px; }
.card p { margin: 0; color: var(--muted); line-height: 1.6; font-size: 13.5px; }

.card .icon {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--surface-2) 70%, transparent);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: center;
}

.panel {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 6px);
  background: color-mix(in oklab, var(--surface) 92%, transparent);
  box-shadow: var(--shadow);
  padding: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.thumb {
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--surface-2) 60%, transparent);
  overflow: hidden;

  /* ✅ Hover altyapısı */
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, filter 180ms ease;
  will-change: transform;
}

.thumb::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(43,108,255,0.20), rgba(177,140,255,0.18));
  transition: transform 220ms ease, opacity 220ms ease;
}

.thumb:hover {
  transform: translateY(-2px) scale(1.01);
  border-color: color-mix(in oklab, var(--border) 40%, var(--primary) 35%);
  box-shadow: 0 16px 45px rgba(0,0,0,0.14);
  filter: saturate(1.06);
}

.thumb:hover::before {
  transform: scale(1.04);
  opacity: 0.95;
}


.bullets { margin: 12px 0 0; padding: 0; list-style: none; color: var(--muted); }
.bullets li { margin: 8px 0; display: flex; gap: 8px; align-items: flex-start; }
.bullets li::before { content: " "; color: var(--primary); }

/* ---------------- Table / Matrix ---------------- */
.matrix {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: color-mix(in oklab, var(--surface) 92%, transparent);
  box-shadow: var(--shadow);
}

.matrix-header,
.matrix-row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 0;
}

/* ✅ Satır hover (3. görseldeki gibi) */
.matrix-row {
  transition: background-color 160ms ease, transform 160ms ease;
}

.matrix-row:hover {
  background: color-mix(in oklab, var(--surface-2) 55%, transparent);
}


.matrix-header {
  background: color-mix(in oklab, var(--surface-2) 70%, transparent);
  font-weight: 900;
  color: var(--muted);
}

.matrix-cell {
  padding: 16px;
  border-bottom: 1px solid var(--border);
}

.matrix-row:last-child .matrix-cell { border-bottom: none; }

.tick {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--primary) 20%, transparent);
  border: 1px solid color-mix(in oklab, var(--primary) 40%, transparent);
}

.dash {
  opacity: 0.6;
}

/* ---------------- Footer ---------------- */
.site-footer {
  margin-top: 50px;
  border-top: 1px solid var(--border);
  background: color-mix(in oklab, var(--surface) 65%, transparent);
}

.footer-grid {
  padding: 34px 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 22px;
}

.footer-col h4 { margin: 0 0 10px; font-size: 13px; letter-spacing: 0.2px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-col a { color: var(--muted); font-weight: 700; font-size: 13px; }
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  padding: 14px 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--border);
}

.muted { color: var(--muted); }

/* ---------------- Responsive ---------------- */
@media (max-width: 1024px) {
  .nav { display: none; }
  .mobile-only { display: grid; }
  .cards { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}




.thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* img varken gradient kapansın */
.thumb:has(img)::before{
  display:none;
}







/* ============================================================
   ✅ Compare Page Addons (ONLY APPEND)
   Dosya: /assets/css/site.css
   Not: Var olan class’lara dokunmaz. En alta eklenir.
============================================================ */

/* ---- A) Comparison Cards ---- */
.cmp-top { text-align:center; margin-bottom: 14px; }
.cmp-top-text { margin: 0 auto; max-width: 760px; color: var(--muted); line-height: 1.6; font-weight: 600; }

.cmp-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.cmp-card{
  border: 1px solid var(--border);
  border-radius: 22px;
  background: color-mix(in oklab, var(--surface) 92%, transparent);
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  padding: 14px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, filter 180ms ease;
}

.cmp-card:hover{
  transform: translateY(-3px);
  border-color: color-mix(in oklab, var(--border) 45%, var(--primary) 35%);
  box-shadow: 0 18px 55px rgba(0,0,0,0.12);
  filter: saturate(1.03);
}

.cmp-img{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--surface-2) 70%, transparent);
}

.cmp-img img{
  width: 100%;
  height: 230px;
  object-fit: cover;
  display:block;
  transition: transform 220ms ease;
}

.cmp-card:hover .cmp-img img{ transform: scale(1.02); }

.cmp-title{
  margin: 12px 4px 6px;
  font-size: 18px;
  letter-spacing: -0.2px;
  font-weight: 950;
}

.cmp-stats{
  margin-top: 8px;
  border-top: 1px solid var(--border);
  padding-top: 10px;
}

.cmp-row{
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding: 10px 4px;
  border-bottom: 1px solid color-mix(in oklab, var(--border) 70%, transparent);
  font-weight: 800;
  font-size: 12px;
}

.cmp-row:last-child{ border-bottom: none; }

.cmp-k{ color: var(--muted); font-weight: 800; }
.cmp-v{ color: var(--text); font-weight: 950; }

.cmp-blue{ color: #2563eb; }
.cmp-red{ color: #f97316; }
.cmp-orange{ color: #f59e0b; }
.cmp-green{ color: #16a34a; }

/* WebP/AVIF kartlarına hafif “vurgu border” */
.cmp-card--webp{ border-color: color-mix(in oklab, var(--border) 55%, var(--primary) 45%); }
.cmp-card--avif{ border-color: color-mix(in oklab, var(--border) 55%, var(--primary-2) 55%); }

/* ---- B) Thumbnail Split + Workflow ---- */
.thumb-split{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items:center;
}

.thumb-pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--surface) 75%, transparent);
  margin-bottom: 14px;
}

.thumb-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.thumb-pill-text{
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.22em;
  color: color-mix(in oklab, var(--muted) 85%, var(--text) 15%);
}

.thumb-h2{
  margin: 0 0 12px;
  font-size: clamp(34px, 4.3vw, 58px);
  line-height: 1.02;
  letter-spacing: -1.1px;
  font-weight: 1000;
}

.thumb-h2-accent{
  color: #2563eb;
}

.thumb-p{
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 550;
  max-width: 640px;
}

.thumb-mini-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.thumb-mini{
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 14px;
  background: color-mix(in oklab, var(--surface) 92%, transparent);
  box-shadow: 0 10px 34px rgba(0,0,0,0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.thumb-mini:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 52px rgba(0,0,0,0.12);
  border-color: color-mix(in oklab, var(--border) 45%, var(--primary) 30%);
}

.thumb-mini-ic{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid var(--border);
  display:grid;
  place-items:center;
  background: color-mix(in oklab, var(--surface-2) 75%, transparent);
  font-weight: 1000;
  margin-bottom: 10px;
}

.thumb-mini-t{
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.12em;
  color: color-mix(in oklab, var(--muted) 85%, var(--text) 15%);
}

.thumb-mini-d{
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 650;
}

.workflow-card{
  position: relative;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: color-mix(in oklab, var(--surface) 94%, transparent);
  box-shadow: var(--shadow);
  padding: 18px;
  overflow:hidden;

  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.workflow-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 22px 66px rgba(0,0,0,0.16);
  border-color: color-mix(in oklab, var(--border) 45%, var(--primary) 25%);
}

.workflow-top{
  display:flex;
  justify-content: space-between;
  align-items:center;
  margin-bottom: 10px;
}

.workflow-title{
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.18em;
  color: color-mix(in oklab, var(--muted) 80%, var(--text) 20%);
}

.workflow-ic{
  color: #2563eb;
  font-weight: 1000;
}

.wf{ margin-top: 14px; }

.wf-head{
  display:flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: 0.14em;
  color: color-mix(in oklab, var(--muted) 85%, var(--text) 15%);
  margin-bottom: 8px;
}

.wf-bar{
  height: 10px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--surface-2) 80%, transparent);
  border: 1px solid var(--border);
  overflow:hidden;
}

.wf-fill{
  height: 100%;
  display:block;
  border-radius: 999px;
  transition: width 600ms ease;
}

.wf-green{ background: #22c55e; }
.wf-blue{ background: #2563eb; }
.wf-gray{ background: color-mix(in oklab, var(--border) 55%, var(--surface-2) 45%); }

.wf-pulse{
  color: #2563eb;
  animation: wfPulse 1.1s ease-in-out infinite;
}

@keyframes wfPulse{
  0%, 100%{ opacity: 0.55; }
  50%{ opacity: 1; }
}

.workflow-glow{
  position:absolute;
  top: -30px;
  right: -40px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(37,99,235,0.14);
  filter: blur(60px);
}













/* ---------------- Responsive ---------------- */
@media (max-width: 1024px) {
  .nav { display: none; }
  .mobile-only { display: grid; }
  .cards { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MARKETING KIT (pazarlama-kiti.php)
   - Mevcut CSS’e dokunmadan en alta eklendi.
   - Dark/Light: var(--bg, --surface, --text, --muted, --border) ile uyumlu.
============================================================ */

.mk-head { margin-bottom: 18px; }
.mk-title {
  margin: 0;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  letter-spacing: -1.2px;
  font-weight: 1000;
}
.mk-sub {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.7;
  max-width: 760px;
}

.mk-tabs {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: center;
}
.mk-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 1000;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: color-mix(in oklab, var(--muted) 85%, var(--text));
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--surface) 70%, transparent);
}
.mk-dot { width: 8px; height: 8px; border-radius: 999px; display: inline-block; }
.mk-dot-ig { background: #ec4899; }
.mk-dot-x { background: var(--text); }
.mk-dot-seo { background: #22c55e; }

.mk-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}
.mk-col { display: grid; gap: 16px; }

.mk-card {
  border-radius: 22px;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--surface) 92%, transparent);
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.mk-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(0,0,0,0.10);
  border-color: color-mix(in oklab, var(--primary) 28%, var(--border));
}

.mk-card-body { padding: 16px; }

.mk-media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--surface-2) 60%, transparent);
}
.mk-media img { width: 100%; height: auto; display: block; }

.mk-quote {
  margin-top: 12px;
  color: var(--text);
  font-weight: 900;
  line-height: 1.5;
  font-size: 14px;
}
.mk-quote-lg {
  font-size: 15px;
  font-weight: 950;
}

.mk-sn-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 1000;
  color: color-mix(in oklab, var(--primary) 80%, var(--text));
}
.mk-sn-url {
  margin-top: 6px;
  font-weight: 950;
  font-size: 12px;
  color: #16a34a;
}
.mk-sn-desc {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 600;
  font-size: 13px;
}

.mk-copy {
  margin-top: 14px;
  width: 100%;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--surface-2) 65%, transparent);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 16px;
  font-weight: 950;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}
.mk-copy:hover {
  transform: translateY(-2px);
  border-color: color-mix(in oklab, var(--primary) 30%, var(--border));
  background: color-mix(in oklab, var(--surface-2) 55%, transparent);
  box-shadow: 0 16px 34px rgba(43,108,255,0.10);
}
.mk-copy:active { transform: translateY(0px); }
.mk-copy-ico {
  width: 24px;
  height: 24px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--surface) 70%, transparent);
  font-weight: 1000;
  font-size: 12px;
  color: color-mix(in oklab, var(--primary) 70%, var(--text));
}

.mk-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  pointer-events: none;
  background: color-mix(in oklab, var(--surface) 80%, transparent);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 950;
  box-shadow: var(--shadow);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 999;
}
.mk-toast.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0px);
}

@media (max-width: 1024px) {
  .mk-tabs { grid-template-columns: 1fr; }
  .mk-grid { grid-template-columns: 1fr; }
}








html[data-theme="dark"]{
  --bg-light: #0b1020;
  --white: #101a33;
  --slate-200: rgba(255,255,255,0.10);
  --slate-600: #a9b7d6;
  --slate-900: #eef3ff;
}

/* Nav active görünürlüğü (dark) */
html[data-theme="dark"] .nav-link.is-active{
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
}
html[data-theme="dark"] .nav-link:hover{
  background: rgba(255,255,255,0.05);
}

.text-red-500{ color: #ef4444; }

.text-blue-500{ color: #3b82f6; }

.text-orange-500{ color: #f97316; }


/* =====================================================================
   NT HOME — moved from index.php (dark/light + mobil uyumlu)
   - Slider CSS bloğu AYNEN taşınacak (aşağıda) ve DOKUNULMADI.
===================================================================== */


/* ---------- Top feature cards (3'lü kartlar) ---------- */
.grid-3{
  display:grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2.5rem auto 1rem;
  max-width: 1200px;
  padding: 0 1.5rem;
}
@media (min-width: 768px){
  .grid-3{ grid-template-columns: repeat(3, 1fr); }
}
.card-main{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: 1.75rem 1.75rem;
  box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease;
}
.card-main:hover{ transform: translateY(-6px); border-color: color-mix(in oklab, var(--primary) 35%, var(--border)); }
.icon-circle{
  width: 56px; height: 56px;
  border-radius: 16px;
  display:flex; align-items:center; justify-content:center;
  background: color-mix(in oklab, var(--primary) 12%, var(--surface));
  border: 1px solid color-mix(in oklab, var(--primary) 14%, var(--border));
  margin-bottom: 1rem;
}
.card-title{
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text);
  margin: 0 0 .5rem;
}
.card-desc{
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

/* ---------- Workflow / Thumbnail block ---------- */
.workflow-container{display:grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; margin: 0 auto 4.5rem; max-width: 1200px; padding: 0 1.5rem;}
@media (min-width: 1024px){
  .workflow-container{ grid-template-columns: 1fr 1fr; }
}
.market-badge{ display:inline-flex; align-items:center; gap:.5rem; padding:.5rem 1rem; border: 1px solid var(--border);
  background: color-mix(in oklab, var(--primary) 10%, transparent); border-radius: 9999px; margin-bottom: 0.05rem;}
.badge-dot{ width:10px; height:10px; border-radius:50%; background: var(--primary); }
.badge-text{ font-size:10px; font-weight:900; text-transform:uppercase; letter-spacing:.3em; color: var(--primary); }
.workflow-title{font-size: clamp(2.1rem, 5vw, 3.25rem); font-weight: 900; line-height: 1.02; letter-spacing: -0.04em; color: var(--text);}
.workflow-desc{margin-top: 1.15rem; color: var(--muted); line-height: 1.7; max-width: 560px;}
.info-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-top: 2rem;}
.info-card{padding: 1.25rem 1.25rem; background: var(--surface); border: 1px solid var(--border); border-radius: 1.25rem; box-shadow: var(--shadow); transition: transform .25s ease;}
.info-card:hover{ transform: translateY(-4px); }
.info-card-icon{ font-size: 1.35rem; margin-bottom: .75rem; font-weight: 900; }
.info-card-title{ font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .2em; color: var(--text); }
.info-card-desc{ font-size: .9rem; color: var(--muted); margin-top: .45rem; }

.workflow-card{ background: var(--surface); border-radius: 2rem;
  border: 1px solid var(--border); padding: 1.5rem;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.workflow-header{ display:flex; justify-content: space-between; align-items:center; margin-bottom: 1.5rem; }
.workflow-header span{ font-size:10px; font-weight:900; opacity:.75; letter-spacing:.3em; color: var(--muted); }

.progress-item{ margin-bottom: 1.25rem; }
.progress-labels{
  display:flex; justify-content:space-between;
  font-size:10px; font-weight:900; letter-spacing:.2em;
  color: color-mix(in oklab, var(--muted) 90%, transparent);
  margin-bottom: .5rem;
}
.progress-track{
  height: 12px;
  background: color-mix(in oklab, var(--surface-2) 80%, transparent);
  border-radius: 9999px;
  overflow:hidden;
  border: 1px solid color-mix(in oklab, var(--border) 70%, transparent);
}
.progress-bar{ height: 100%; border-radius: 9999px; transition: width 1s ease; }
.bg-green{ background-color: #22c55e; }
.bg-blue{ background-color: var(--primary); }
.bg-pending{ background-color: color-mix(in oklab, var(--border) 90%, transparent); }

.glow{
  position:absolute; top:-4rem; right:-4rem;
  width: 18rem; height: 18rem;
  background: color-mix(in oklab, var(--primary) 18%, transparent);
  filter: blur(60px);
  border-radius: 50%;
  pointer-events:none;
}

/* ---------- İkon balonları ---------- */
.check-icon, .carpi-icon{
  width: 40px; height: 40px; border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  margin: .5rem auto 0;
  transition: transform .2s ease;
}
.check-icon{
  background: linear-gradient(to top right, #3b82f6, #4f46e5);
  color:#fff;
  box-shadow: 0 10px 15px -3px rgba(59,130,246,.4);
}
.carpi-icon{
  background: linear-gradient(to top right, #eff6ff, #dbeafe);
  color: var(--primary);
  border: 1px solid rgba(37,99,235,.12);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.06);
  line-height: 0;
}
.check-icon:hover, .carpi-icon:hover{ transform: scale(1.05); }

/* ---------- Stats (60% / 95% / 100ms) ---------- */
.stats-section-wrapper{
  padding: 1rem 2rem;
  margin: 1rem 2rem;
  text-align:center;
}
.stats-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px){
  .stats-grid{ grid-template-columns: repeat(3, 1fr); }
}
.stat-box{
  padding: 2.5rem;
  border-radius: 2.5rem;
  position: relative;
  overflow:hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  border: 1px solid var(--border);
}
.stat-box:hover{ transform: translateY(-6px); }
.box-light{
  background: var(--surface);
  box-shadow: var(--shadow);
}
.box-blue{
  background: #2563eb;
  color:#fff;
  border-color: rgba(37,99,235,.45);
  box-shadow: 0 25px 50px -12px rgba(37,99,235,.4);
}
.stat-content{ position: relative; z-index: 2; }
.stat-value{
  font-size: 3rem;
  font-weight: 900;
  font-style: italic;
  margin-bottom: .5rem;
}
.text-blue{ color: #2563eb; }
.text-indigo{ color: #4f46e5; }
.text-white{ color: #ffffff; }

.stat-label{
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: color-mix(in oklab, var(--muted) 80%, transparent);
  margin-bottom: 1rem;
}
.label-white{ color: rgba(255,255,255,.82); }

.stat-desc{
  font-size: .9rem;
  line-height: 1.65;
  color: var(--muted);
}
.desc-white{ color: rgba(255,255,255,.9); }

.stat-icon-bg{
  position:absolute;
  right: -1rem; bottom: -1rem;
  width: 8rem; height: 8rem;
  opacity: .2;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  pointer-events:none;
}
.box-blue:hover .stat-icon-bg{ transform: scale(1.1); }

/* ---------- Comparison cards ---------- */
.comparison-section{
  padding: 1rem 2rem;
  margin: 2rem 2rem;
}
.comparison-intro{ text-align:center; margin-bottom: 2.5rem; }
.comparison-subtitle{
  color: var(--muted);
  max-width: 62rem;
  margin: 0 auto;
  font-weight: 500;
  line-height: 1.7;
}
.comparison-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px){
  .comparison-grid{ grid-template-columns: repeat(3, 1fr); }
}
.comp-card{
  background: var(--surface);
  border-radius: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow:hidden;
  transition: transform .25s ease, border-color .25s ease;
}
.border-blue-soft{ border-color: rgba(59,130,246,.4); }
.border-violet-soft{ border-color: rgba(139,92,246,.4); }
.group-hover-effect:hover{ transform: translateY(-.25rem); }

.comp-card-inner{ padding: 1.5rem; }
.img-wrapper-v3{
  border-radius: 1rem;
  overflow:hidden;
  border: 1px solid var(--border);
  height: 240px;
  background: color-mix(in oklab, var(--surface-2) 65%, transparent);
}
.img-wrapper-v3 img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.comp-card:hover .img-wrapper-v3 img{ transform: scale(1.02); }

/* ✅ Comparison: resim üstü mod yazısı (hover ile göster) */
.comparison-section .img-wrapper-v3{
	position: relative;
	overflow: hidden;
	border-radius: 18px; /* sende farklıysa elleme, yoksa ek kalsın */
}

/* Hover'da okunabilirlik için hafif karartma */
.comparison-section .img-wrapper-v3::after{
	content:"";
	position:absolute;
	inset:0;
	pointer-events:none;
	opacity:0;
	transition: opacity 180ms ease;
	background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.00) 60%);
}

.comparison-section .comp-card:hover .img-wrapper-v3::after{
	opacity:1;
}

/* Yazı: default gizli */
.comparison-section .img-wrapper-v3 .comp-mode{
	position:absolute;
	left: 14px;
	bottom: 12px;
	z-index: 2;

	padding: 8px 12px;
	border-radius: 999px;

	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0.08em;
	text-transform: uppercase;

	color: #fff;
	border: 1px solid rgba(255,255,255,0.16);
	background: rgba(0,0,0,0.35);
	backdrop-filter: blur(8px);

	opacity:0;
	transform: translateY(6px);
	transition: opacity 180ms ease, transform 180ms ease;
}

.comparison-section .comp-card:hover .img-wrapper-v3 .comp-mode{
	opacity:1;
	transform: translateY(0);
}

/* Mobilde hover yok: yazı hep görünsün */
@media (hover: none) and (pointer: coarse){
	.comparison-section .img-wrapper-v3::after{ opacity:1; }
	.comparison-section .img-wrapper-v3 .comp-mode{
		opacity:1;
		transform:none;
	}
}


.comp-title{
  margin-top: 1.5rem;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text);
}
.comp-stats{ margin-top: 1.25rem; }
.comp-stat-row{
  display:flex; justify-content:space-between; align-items:center;
  padding: .75rem 0;
  font-size: .875rem;
}
.comp-stat-row.border-b{ border-bottom: 1px solid color-mix(in oklab, var(--border) 55%, transparent); }
.comp-stat-row .label{ color: var(--muted); }
.comp-stat-row .value{ font-weight: 900; }

.text-orange{ color: #f97316; }
.text-amber{ color: #f59e0b; }
.text-green{ color: #16a34a; }

/* ---------- Media health block ---------- */
.media-health-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
}
.media-health-flex{
  display:flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
@media (min-width: 768px){
  .media-health-flex{ flex-direction: row; align-items: stretch; }
}
.content-side{
  flex: 1;
  display:flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.title{
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 10px 0 10px;
  color: var(--text);
}
.description{
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
  margin: 0;
  max-width: 560px;
}
.feature-list{
  list-style:none;
  padding: 0;
  margin: 18px 0 0;
  display:grid;
  gap: 10px;
}
.feature-list li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  color: var(--text);
}
.feature-list li .check-icon{
  width: 20px;
  height: 20px;
  border-radius: 0;
  margin: 2px 0 0;
  background: transparent;
  box-shadow: none;
  color: var(--primary);
}
.visual-side{
  flex: 1;
  width: 100%;
  display:flex;
  justify-content:center;
  align-items:center;
}

.scan-card{
  width: min(460px, 100%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: 18px;
  box-shadow: var(--shadow);
}
.pulse-animation{ display:flex; gap: 16px; align-items:center; }
.circle-placeholder{
  width: 56px; height: 56px; border-radius: 16px;
  background: color-mix(in oklab, var(--primary) 14%, var(--surface));
  border: 1px solid color-mix(in oklab, var(--primary) 18%, var(--border));
  animation: ntPulse 2.2s ease-in-out infinite;
}
.lines-placeholder{ flex: 1; display:grid; gap: 10px; }
.line{
  height: 10px; border-radius: 999px;
  background: color-mix(in oklab, var(--surface-2) 70%, transparent);
  border: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
}
.line.long{ width: 100%; }
.line-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.line.red{ background: color-mix(in oklab, #ef4444 18%, var(--surface-2)); border-color: color-mix(in oklab, #ef4444 20%, var(--border)); }
.line.green{ background: color-mix(in oklab, #22c55e 18%, var(--surface-2)); border-color: color-mix(in oklab, #22c55e 20%, var(--border)); }
.scan-text{ margin: 14px 0 0; color: var(--muted); font-weight: 600; }

@keyframes ntPulse{
  0%, 100%{ transform: scale(1); filter: brightness(1); }
  50%{ transform: scale(1.03); filter: brightness(1.08); }
}
/* ✅ Sadece Media Health bölümüne özel dark fix (sağ taraftaki tarama kartı) */
html[data-theme="dark"] .media-health-container .scan-card{
  background: color-mix(in oklab, #0b1020 70%, #101a33);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.45);
}

html[data-theme="dark"] .media-health-container .circle-placeholder,
html[data-theme="dark"] .media-health-container .line.long{
  background: rgba(255,255,255,0.12);
}

/* Yazılar dark’ta kararmasın */
html[data-theme="dark"] .media-health-container .title,
html[data-theme="dark"] .media-health-container .description,
html[data-theme="dark"] .media-health-container .feature-list li{
  color: var(--text);
}

html[data-theme="dark"] .media-health-container .description{
  color: color-mix(in oklab, var(--text) 70%, transparent);
}

html[data-theme="dark"] .media-health-container .scan-text{
  color: color-mix(in oklab, var(--primary) 75%, #ffffff);
}


/* ---------- FAQ ---------- */
.faq{
	padding: 1rem 2rem;
	margin: 2rem 2rem;
	display: flex;          		/* İçindeki 2 ana divi yan yana dizer */
    gap: 30px;              		/* Aralarındaki boşluk mesafesi */
    align-items: flex-start; 		/* Elemanları yukarı hizalar */
    justify-content: center; 		/* Sayfada ortalar */
    flex-wrap: wrap;        		/* Mobilde alt alta düşmesini sağlar */
}
/* GÖREV 4-5 FIX: FAQ (fx-62-parx) açılınca taşma/bozulma önlenir.
   Sabit yükseklik yerine min-height; içerik açılınca kart dikey uzar,
   parallax görseli hizada kalır (efekt korunur). */
.faq .fx-62-parx .parx-wrap,
.fx-62-parx .parx-wrap{
  height: auto !important;
  min-height: var(--parx-card-h, 420px);
  align-items: flex-start !important;
}
.fx-62-parx .parx-left{ position: sticky; top: 20px; }
.quality-control-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.quality-control-card h4{
  margin: 0;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
}
.compress-faq-intro{ opacity: .85; margin: 10px 0 14px; font-size: 1rem; color: var(--muted); }
.compress-faq-item{
  border: 1px solid color-mix(in oklab, var(--border) 75%, transparent);
  border-radius: 14px;
  padding: 12px 15px;
  margin: 10px 0;
  background: color-mix(in oklab, var(--surface-2) 60%, transparent);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  list-style:none;
}
.compress-faq-item summary::-webkit-details-marker{ display:none; }
.compress-faq-item summary{
  cursor:pointer;
  font-weight: 900;
  font-size: 1rem;
  display:flex;
  justify-content: space-between;
  align-items:center;
  list-style:none;
  outline:none;
  user-select:none;
  color: var(--text);
}
.compress-faq-item summary::after{
  content: '\203A';
  font-size: 20px;
  transition: transform .25s ease;
  transform: rotate(90deg);
  opacity: .7;
  font-weight: normal;
}
.compress-faq-item[open] summary::after{
  transform: rotate(-90deg);
  color: var(--primary);
}
.compress-faq-item p{
  margin: 10px 0 0;
  opacity: .9;
  font-size: .95rem;
  line-height: 1.6;
  border-top: 1px solid color-mix(in oklab, var(--border) 50%, transparent);
  padding-top: 10px;
  animation: ntFadeIn .35s ease-out;
  color: var(--muted);
}
@keyframes ntFadeIn{
  from{ opacity:0; transform: translateY(-5px); }
  to{ opacity:1; transform: translateY(0); }
}
.compress-faq-note{ margin-top: 12px; font-size: .85rem; opacity: .75; color: var(--muted); }
@media (max-width: 600px){
  .compress-faq-item summary{ font-size: .95rem; }
  .compress-faq-item p{ font-size: .9rem; }
}


/* --- <!--  FEATURE SLİDER --> FEATURES SLIDER CSS --- */
	:root {
		/* Varsayılan Light Mode Değişkenleri (Senin sistemine göre güncellenebilir) */
		--primary: #2563eb;
		--primary-light: rgba(37, 99, 235, 0.1);
		--white: #ffffff;
		--bg-light: #f8fafc;
		--slate-200: #e2e8f0;
		--slate-600: #475569;
		--slate-900: #0f172a;
		--shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
	}
	/* Dark Mode Uyumu */
	@media (prefers-color-scheme: dark) {
		:root {
			--white: #1e293b;
			--bg-light: #0f172a;
			--slate-200: #334155;
			--slate-600: #94a3b8;
			--slate-900: #f1f5f9;
		}
	}		
	.section-title {
		font-size: 2.5rem;
		text-align: center;
		margin-bottom: var(--spacing-sm);
	}
	.section-subtitle {
		text-align: center;
		color: var(--text-secondary);
		margin-bottom: var(--spacing-lg);
	}
	.features-slider { 
		padding: 1rem 0; 
		background: var(--bg-light); 
		overflow: hidden; 
	}
	.slider-container {
		position: relative;
		max-width: 1200px;
		margin: 1rem auto 0;
		padding: 0 70px; /* Oklar için güvenli alan */
	}
	.slider-container-xx {
		position: relative;
		max-width: 1200px;
		margin: 0.5rem auto 0;
		padding: 0 70px; /* Oklar için güvenli alan */
	}
	.slider-viewport {
		overflow: hidden;
		border-radius: 2.5rem;
		margin: 1px auto;
		width: 100%; /* Kapsayıcıya tam oturmalı */
	}
	.slider-viewport-xx {
		overflow: hidden;
		border-radius: 1.5rem;
		margin: 1px auto;
		width: 100%; /* Kapsayıcıya tam oturmalı */
	}
	.slider-track { 
		display: flex;
		gap: 2rem; /* Kartlar arasındaki boşluk */
		transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
		will-change: transform;
		margin-top: 10px;
	}
	.feature-slide {
		/* Her zaman 3 adet görünmesi için: (100% - boşluklar) / 3 */
		flex: 0 0 calc((100% / 3) - (4rem / 3)); 
		background: var(--white);
		padding: 1.5rem 2rem;
		border-radius: 2.5rem;
		border: 1px solid var(--slate-200);
		box-sizing: border-box;
		text-align: center;
		transition: all 0.4s ease;
	}
	.feature-slide-xx {
		/* Her zaman 3 adet görünmesi için: (100% - boşluklar) / 3 */
		flex: 0 0 calc((100% / 3) - (4rem / 3)); 
		background: var(--white);
		padding: 1.0rem 1.5rem;
		border-radius: 1.5rem;
		border: 1px solid var(--slate-200);
		box-sizing: border-box;
		text-align: center;
		transition: all 0.4s ease;
	}
	.feature-slide:hover {
		transform: translateY(-10px);
		box-shadow: var(--shadow);
		border-color: var(--primary);
	}
	.feature-slide-xx:hover {
		transform: translateY(-10px);
		box-shadow: var(--shadow);
		border-color: var(--primary);
	}
	/* İkonlar */
	.slide-icon {
		width: 85px;
		height: 85px;        
		color: var(--primary);
		border-radius: 1.25rem;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 auto 2rem;
		line-height: 0;
	}
	.slide-icon svg { width: 76px; height: 76px; }
	.dark .slide-icon { color: #60a5fa;}
	.feature-slide h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; color: var(--slate-900); }
	.feature-slide p { color: var(--slate-600); line-height: 1.6; margin-bottom: 2rem; font-size: 0.95rem; }
	.feature-slide-xx h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; color: var(--slate-900); }
	.feature-slide-xx p { color: var(--slate-600); line-height: 1.6; margin-bottom: 2rem; font-size: 0.95rem; }
	/* Oklar */
	.slider-arrow {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 50px;
		height: 50px;
		background: var(--white);
		border: 1px solid var(--slate-200);
		border-radius: 50%;
		color: var(--primary);
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
		z-index: 10;
		transition: all 0.3s ease;
	}
	.slider-arrow:hover {
		background: var(--primary);
		color: white;
		transform: translateY(-50%) scale(1.1);
	}
	.slider-arrow.prev { left: 5px; }
	.slider-arrow.next { right: 5px; }
	/* Navigasyon Dotları */
	.slider-nav { display: flex; justify-content: center; align-items: center; gap: 0.75rem; margin-top: 3.5rem; }
	.slider-nav-xx { display: flex; justify-content: center; align-items: center; gap: 0.75rem; margin-top: 2.5rem; }
	.dot { width: 10px; height: 10px; background: var(--slate-200); border-radius: 50%; cursor: pointer; transition: all 0.3s ease; }
	.dot.active { width: 30px; background: var(--primary); border-radius: 10px; }
	/* MOBİL UYUM */
	@media (max-width: 1024px) {
		.feature-slide { flex: 0 0 calc(50% - 1rem); } /* Tablet: 2'li */
		.feature-slide-xx { flex: 0 0 calc(50% - 1rem); } /* Tablet: 2'li */
	}
	@media (max-width: 768px) {
		.feature-slide { flex: 0 0 100%; } /* Mobil: Tekli */
		.feature-slide-xx { flex: 0 0 100%; } /* Mobil: Tekli */
		.slider-container { padding: 0 15px; }
		.slider-container-xx { padding: 0 15px; }


/* Slider vars forced by data-theme (bu blok slider CSS'ine dokunmadan tema toggle'ı düzeltir) */
html[data-theme="light"]{
  --bg-light: #f8fafc;
  --white: #ffffff;
  --slate-200: #e2e8f0;
  --slate-600: #475569;
  --slate-900: #0f172a;
}
html[data-theme="dark"]{
  --bg-light: #0b1020;
  --white: #101a33;
  --slate-200: rgba(255,255,255,0.10);
  --slate-600: #a9b7d6;
  --slate-900: #eef3ff;
}


/* Slider içi link */
.slide-link{
  display:inline-flex;
  align-items:center;
  gap: .5rem;
  font-weight: 900;
  color: var(--primary);
  text-decoration: none;
}
.slide-link:hover{ text-decoration: underline; }

/* ============================================================
   MARKA LOGOSU
   ============================================================ */
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo { height: 38px; width: auto; display: inline-block; max-height: 38px; }
@media (max-width: 560px) { .brand-logo { height: 32px; } }

/* ============================================================
   HERO ÜRÜN ÇERÇEVESİ
   ============================================================ */
.hero-product { padding: 20px 0 40px; }
.hero-product-frame {
  display: inline-block; max-width: 920px; width: 100%;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(26,44,74,.18);
  border: 1px solid rgba(56,99,240,.12); background:#fff;
}
.hero-product-frame img { display: block; width: 100%; height: auto; }
html[data-theme="dark"] .hero-product-frame {
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  border-color: rgba(120,170,255,.18); background:#16243f;
}

/* ============================================================
   TASARRUF ROZETİ (comparison kart)
   ============================================================ */
.comp-save-badge {
  position: absolute; top: 12px; right: 12px;
  display: flex; flex-direction: column; align-items: center;
  background: #3DDC97; color: #1A2C4A;
  padding: 6px 12px; border-radius: 12px;
  box-shadow: 0 6px 16px rgba(61,220,151,.35);
  line-height: 1.1; z-index: 3;
}
.comp-save-badge--avif { background: #3863F0; color: #fff; box-shadow: 0 6px 16px rgba(56,99,240,.35); }
.comp-save-pct { font-weight: 800; font-size: 15px; }
.comp-save-lbl { font-size: 9px; letter-spacing: .08em; font-weight: 700; opacity: .85; }

/* ============================================================
   6 ÖZELLİK KARTI (more-cards grid)
   ============================================================ */
.more-features { padding: 60px 0; }
.more-features-title {
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800;
  text-align: center; margin-bottom: 8px; color: var(--text);
}
.more-features-sub {
  text-align: center; color: var(--muted); margin-bottom: 40px; font-size: 1rem;
}
.more-cards {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 22px; max-width: 1080px; margin: 0 auto;
}
.mcard {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; padding: 28px 24px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex; flex-direction: column;
}
.mcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(26,44,74,.12);
  border-color: rgba(56,99,240,.3);
}
.mcard-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; flex-shrink: 0;
}
.mcard-icon svg { width: 24px; height: 24px; display: block; flex-shrink: 0; }
.mcard h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.mcard p  { font-size: .92rem; line-height: 1.6; color: var(--muted); margin: 0; }
.ic-blue   { background: rgba(56,99,240,.12);  color: #3863F0; }
.ic-mint   { background: rgba(61,220,151,.15); color: #1c9c6b; }
.ic-orange { background: rgba(245,124,0,.13);  color: #F57C00; }
.ic-violet { background: rgba(124,92,252,.13); color: #7C5CFC; }
.ic-green  { background: rgba(34,197,94,.13);  color: #16a34a; }
.ic-amber  { background: rgba(245,180,0,.15);  color: #d99400; }
html[data-theme="dark"] .mcard {
  background: #16243f; border-color: rgba(120,170,255,.18);
}
html[data-theme="dark"] .mcard:hover { box-shadow: 0 18px 40px rgba(0,0,0,.4); }
html[data-theme="dark"] .ic-mint  { color: #3DDC97; }
@media (max-width: 860px) { .more-cards { grid-template-columns: repeat(2,1fr) !important; } }
@media (max-width: 540px) { .more-cards { grid-template-columns: 1fr !important; } }

/* ============================================================
   SOSYAL KANIT — TRUST SECTION
   ============================================================ */
.trust-section { padding: 50px 0; }
.trust-title {
  font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800;
  margin-bottom: 8px; text-align: center; color: var(--text);
}
.trust-subtitle { color: var(--muted); text-align: center; margin-bottom: 36px; }
.trust-stats {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px; margin-bottom: 48px;
}
.trust-stat {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px 16px; text-align: center;
}
.trust-stat-value {
  font-size: clamp(1.6rem,3.5vw,2.4rem); font-weight: 800; line-height: 1;
  color: var(--primary);
}
.trust-stat:nth-child(2) .trust-stat-value { color: #16a34a; }
.trust-stat:nth-child(3) .trust-stat-value { color: #F57C00; }
.trust-stat:nth-child(4) .trust-stat-value { color: #7C5CFC; }
.trust-stat-label { margin-top: 8px; font-size: .9rem; color: var(--muted); }
.trust-reviews {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px;
}
.review-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.review-stars { color: #F5B400; font-size: 1.05rem; letter-spacing: 2px; }
.review-card blockquote {
  margin: 0; font-size: .97rem; line-height: 1.6; color: var(--text);
}
.review-card figcaption {
  font-size: .84rem; font-weight: 700; color: var(--muted); margin-top: auto;
}
html[data-theme="dark"] .trust-stat,
html[data-theme="dark"] .review-card {
  background: #16243f; border-color: rgba(120,170,255,.18);
}
html[data-theme="dark"] .review-card blockquote { color: #e8eefc; }
@media (max-width: 860px) {
  .trust-stats   { grid-template-columns: repeat(2,1fr) !important; }
  .trust-reviews { grid-template-columns: 1fr !important; }
}
@media (max-width: 540px) {
  .trust-stats { grid-template-columns: repeat(2,1fr) !important; }
}

/* ============================================================
   GENEL BOYUT GÜVENLİĞİ
   ============================================================ */
html, body { overflow-x: hidden; max-width: 100%; }
svg { max-width: 100%; }
.mcard-icon svg { max-width: 24px; max-height: 24px; }

/* ============================================================
   GÖRÜNÜRLÜK (rvl kaldırıldı, doğrudan görünür)
   ============================================================ */
.more-features, .trust-section, .hero-product { opacity:1; visibility:visible; }
.mcard, .trust-stat, .review-card { opacity:1; visibility:visible; }
@keyframes ntCardIn {
  from { opacity:0; transform:translateY(14px); }
  to   { opacity:1; transform:translateY(0); }
}
.more-cards .mcard     { animation: ntCardIn .4s ease-out both; }
.more-cards .mcard:nth-child(2) { animation-delay:.07s; }
.more-cards .mcard:nth-child(3) { animation-delay:.14s; }
.more-cards .mcard:nth-child(4) { animation-delay:.21s; }
.more-cards .mcard:nth-child(5) { animation-delay:.28s; }
.more-cards .mcard:nth-child(6) { animation-delay:.35s; }
@media (prefers-reduced-motion:reduce) { .mcard { animation:none; } }
