/* ==========================================================================
   VOKKOO — Ana stil dosyası
   1. Değişkenler / tema
   2. Temel sıfırlama
   3. Yerleşim yardımcıları
   4. Butonlar & küçük parçalar
   5. Başlık (header)
   6. Hero
   7. Uygulama listesi
   8. Adımlar / güven / SSS / CTA
   9. Uygulama detay sayfası
  10. Footer
  11. Admin
  12. Duyarlı (responsive)
   ========================================================================== */

/* 1. Değişkenler --------------------------------------------------------- */
:root {
  --bg:            #ffffff;
  --bg-alt:        #f5f7fb;
  --surface:       #ffffff;
  --surface-2:     #f8fafc;
  --border:        #e4e8f0;
  --border-strong: #d3dae6;
  --text:          #0d1526;
  --text-soft:     #3b4557;
  --muted:         #626d82;

  --accent:        #3b5bfd;
  --accent-hover:  #2c48e0;
  --accent-soft:   rgba(59, 91, 253, .08);
  --accent-ring:   rgba(59, 91, 253, .28);

  --ok:            #16a34a;
  --warn:          #b45309;
  --danger:        #dc2626;

  --shadow-sm:  0 1px 2px rgba(13, 21, 38, .05);
  --shadow-md:  0 4px 16px rgba(13, 21, 38, .07);
  --shadow-lg:  0 18px 44px -18px rgba(13, 21, 38, .22);

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 22px;

  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1180px;
  --header-h:  70px;
}

[data-theme="dark"] {
  --bg:            #080c15;
  --bg-alt:        #0c1220;
  --surface:       #101828;
  --surface-2:     #141d30;
  --border:        #1e2941;
  --border-strong: #2a3752;
  --text:          #f1f5fb;
  --text-soft:     #cbd4e4;
  --muted:         #94a1ba;

  --accent:        #6c8bff;
  --accent-hover:  #85a0ff;
  --accent-soft:   rgba(108, 139, 255, .12);
  --accent-ring:   rgba(108, 139, 255, .32);

  --shadow-sm:  0 1px 2px rgba(0, 0, 0, .4);
  --shadow-md:  0 6px 20px rgba(0, 0, 0, .35);
  --shadow-lg:  0 22px 50px -20px rgba(0, 0, 0, .7);
}

/* 2. Temel --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; display: block; }
svg { fill: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.18;
  letter-spacing: -.02em;
  margin: 0;
  font-weight: 700;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color .18s ease, opacity .18s ease;
}
a:hover { color: var(--accent-hover); }

button { font: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection { background: var(--accent); color: #fff; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 200;
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
}
.skip-link:focus { left: 16px; color: #fff; }

/* 3. Yerleşim ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.container--narrow { max-width: 780px; }
.center-block { text-align: center; display: grid; gap: 18px; justify-items: center; }

.section { padding: 92px 0; }
.section--tight { padding: 64px 0; }
.section--alt { background: var(--bg-alt); }

.section__head {
  max-width: 640px;
  margin-bottom: 44px;
}
.section__title { font-size: clamp(1.75rem, 3.2vw, 2.4rem); }
.section__sub {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.05rem;
}

.is-hidden { display: none !important; }

/* Ekran okuyucular için görünür, gözle görünmez */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.empty-state {
  text-align: center;
  color: var(--muted);
  padding: 56px 20px;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface-2);
}

/* 4. Butonlar ------------------------------------------------------------ */
.btn {
  --btn-bg: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: -.01em;
  white-space: nowrap;
  transition: transform .16s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn svg { width: 16px; height: 16px; }
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--btn-bg);
  color: #fff;
  box-shadow: 0 6px 18px -8px var(--accent-ring);
}
.btn--primary:hover {
  background: var(--accent-hover);
  color: #fff;
  box-shadow: 0 10px 24px -10px var(--accent-ring);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover {
  color: var(--text);
  border-color: var(--accent);
  background: var(--accent-soft);
}

.btn--light {
  background: #fff;
  color: #0d1526;
}
.btn--light:hover { background: #eef1ff; color: #0d1526; transform: translateY(-1px); }

.btn--sm { padding: 9px 17px; font-size: .875rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--muted);
}
.link-arrow svg { width: 15px; height: 15px; transition: transform .18s ease; }
.link-arrow:hover { color: var(--accent); }
.link-arrow:hover svg { transform: translateX(3px); }

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 9px;
  max-width: 100%;
  text-align: center;
  padding: 7px 16px 7px 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  font-size: .83rem;
  font-weight: 500;
  color: var(--text-soft);
  box-shadow: var(--shadow-sm);
}
.pill__dot {
  flex: none;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, .18);
}

.chip {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: .78rem;
  font-weight: 600;
}

.tag {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.tag--new     { background: rgba(22, 163, 74, .12);  color: #16a34a; }
.tag--popular { background: rgba(180, 83, 9, .12);   color: #b45309; }
.tag--free    { background: var(--accent-soft);      color: var(--accent); text-transform: none; }
[data-theme="dark"] .tag--new     { background: rgba(74, 222, 128, .14); color: #4ade80; }
[data-theme="dark"] .tag--popular { background: rgba(251, 191, 36, .14); color: #fbbf24; }

/* 5. Header -------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--bg); /* color-mix desteklemeyen tarayıcılar için */
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
}
.brand__logo {
  display: block;
  height: 30px;
  width: auto;
  transition: opacity .18s ease;
}
.brand:hover .brand__logo { opacity: .8; }

/* Koyu temada beyaz yazılı sürüm gösterilir */
.brand__logo--dark { display: none; }
[data-theme="dark"] .brand__logo--light { display: none; }
[data-theme="dark"] .brand__logo--dark { display: block; }

.brand--footer .brand__logo { height: 32px; }
.brand--admin .brand__logo { height: 26px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-inline-end: auto;
}
.site-nav a {
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 500;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--text); background: var(--accent-soft); }

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  display: flex;
  padding: 3px;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-2);
}
.lang-switch__item {
  padding: 4px 11px;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--muted);
}
.lang-switch__item.is-active {
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.icon-btn {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  color: var(--muted);
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}
.icon-btn:hover { color: var(--text); border-color: var(--border-strong); }
.icon-btn svg { width: 18px; height: 18px; }

.icon-moon { display: none; }
[data-theme="dark"] .icon-sun  { display: none; }
[data-theme="dark"] .icon-moon { display: block; }

.menu-toggle { display: none; flex-direction: column; gap: 4px; }
.menu-toggle span {
  width: 17px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* 6. Üst bölüm: uygulamalar (sol) + tanıtım (sağ) ------------------------ */
/* overflow verilmez: sticky tanıtım panelini bozar */
.split {
  position: relative;
  padding: 44px 0 92px;
}
.split__glow {
  position: absolute;
  top: -300px; right: 0;
  width: 720px; height: 520px;
  background:
    radial-gradient(closest-side, rgba(59, 91, 253, .20), transparent 70%),
    radial-gradient(closest-side, rgba(124, 58, 237, .16), transparent 70%);
  background-position: 30% 50%, 70% 40%;
  background-size: 70% 100%, 70% 100%;
  background-repeat: no-repeat;
  filter: blur(12px);
  pointer-events: none;
}
[data-theme="dark"] .split__glow { opacity: .7; }

.split__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 20px 52px;
  align-items: start;
}
.split__apps { grid-area: 1 / 1; min-width: 0; }

.split__intro {
  grid-area: 1 / 2;
  position: sticky;
  top: calc(var(--header-h) + 28px);
  display: grid;
  gap: 15px;
  justify-items: start;
}
.split__intro > * { max-width: 100%; }
.split__title {
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  letter-spacing: -.035em;
}
.split__text {
  color: var(--muted);
  font-size: 1.02rem;
}
.split__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}
.split__points {
  display: grid;
  gap: 11px;
  width: 100%;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.split__points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-soft);
  font-size: .9rem;
}
.split__points svg {
  width: 16px; height: 16px;
  flex: none;
  margin-top: 4px;
  color: var(--ok);
}

/* Sol sütun dar olduğu için araç çubuğu iki satıra yayılır */
.split__apps .apps-toolbar {
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}
.split__apps .apps-toolbar__end { justify-content: space-between; gap: 14px; }
.split__apps .filter { padding: 7px 14px; font-size: .855rem; }
.split__apps .search { flex: 1; order: -1; max-width: none; } /* arama solda, sayaç sağda */
.split__apps .apps-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

/* 7. Uygulamalar --------------------------------------------------------- */
.apps-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
  margin-bottom: 22px;
}
.apps-toolbar__end {
  display: flex;
  align-items: center;
  gap: 16px;
}
.app-count {
  color: var(--muted);
  font-size: .85rem;
  white-space: nowrap;
}

.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: .875rem;
  font-weight: 500;
  transition: all .18s ease;
}
.filter:hover { color: var(--text); border-color: var(--border-strong); }
.filter.is-active {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg);
}

.search {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 240px;
}
.search svg {
  position: absolute;
  left: 14px;
  width: 17px; height: 17px;
  color: var(--muted);
  pointer-events: none;
}
.search input {
  width: 100%;
  padding: 10px 16px 10px 40px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-size: .9rem;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.search input::placeholder { color: var(--muted); }
.search input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-ring);
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 20px;
}

.app-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.app-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity .22s ease;
}
.app-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg);
}
.app-card:hover::before { opacity: 1; }

.app-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

.app-icon {
  width: 52px; height: 52px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--accent-soft); /* color-mix desteklemeyen tarayıcılar için */
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
  font-size: 25px;
  line-height: 1;
  overflow: hidden;
}
.app-icon img { width: 100%; height: 100%; object-fit: cover; }
.app-icon__emoji { transform: translateY(1px); }
.app-icon--lg {
  width: 84px; height: 84px;
  border-radius: 22px;
  font-size: 40px;
}
.app-icon--sm {
  width: 36px; height: 36px;
  border-radius: 11px;
  font-size: 18px;
}

.app-card__category {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
}
.app-card__title { font-size: 1.18rem; }
.app-card__title a { color: var(--text); }
.app-card__title a:hover { color: var(--accent); }
.app-card__title a::after {
  content: "";
  position: absolute;
  inset: 0;
}
.app-card__text {
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.6;
  flex: 1;
}

.app-card__foot {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.app-card .link-arrow { color: var(--accent); }
.app-card:hover .link-arrow svg { transform: translateX(3px); }

/* 8. Adımlar / güven / SSS / CTA ---------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.step__num {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  margin-bottom: 16px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .95rem;
}
.step__title { font-size: 1.1rem; margin-bottom: 8px; }
.step__text { color: var(--muted); font-size: .94rem; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.trust-card {
  padding: 26px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color .2s ease, transform .2s ease;
}
.trust-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.trust-card__icon {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
}
.trust-card__icon svg { width: 21px; height: 21px; }
.trust-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.trust-card p { color: var(--muted); font-size: .92rem; }

.faq { display: grid; gap: 12px; }
.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq__item[open] { border-color: var(--border-strong); }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  color: var(--text);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary svg {
  width: 18px; height: 18px;
  flex: none;
  color: var(--muted);
  transition: transform .22s ease;
}
.faq__item[open] summary svg { transform: rotate(180deg); }
.faq__item p {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: .95rem;
}

.cta {
  position: relative;
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
  padding: 64px 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, #1b2a6b 0%, var(--accent) 55%, #7c3aed 100%);
  color: #fff;
  overflow: hidden;
}
.cta::after {
  content: "";
  position: absolute;
  inset: auto -10% -60% -10%;
  height: 300px;
  background: radial-gradient(closest-side, rgba(255, 255, 255, .18), transparent);
  pointer-events: none;
}
.cta h2 {
  position: relative;
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  max-width: 20ch;
}
.cta p {
  position: relative;
  color: rgba(255, 255, 255, .82);
  max-width: 50ch;
}
.cta .btn { position: relative; margin-top: 10px; }

/* 9. Detay sayfası ------------------------------------------------------- */
.app-hero {
  position: relative;
  padding: 40px 0 52px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.app-hero__glow {
  position: absolute;
  top: -220px; left: 12%;
  width: 640px; height: 460px;
  background: radial-gradient(closest-side, var(--accent-soft), transparent 70%);
  background: radial-gradient(closest-side, color-mix(in srgb, var(--accent) 22%, transparent), transparent 70%);
  pointer-events: none;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 500;
}
.back-link svg { width: 16px; height: 16px; }
.back-link:hover { color: var(--accent); }

.app-hero__inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 26px;
}
.app-hero__body { display: grid; gap: 12px; }
.app-hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.app-hero h1 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); }
.app-hero__tagline {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.08rem;
}
.app-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

.app-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 56px;
  align-items: start;
}
.app-body__main { display: grid; gap: 18px; }
.lead { color: var(--text-soft); font-size: 1.05rem; line-height: 1.75; }

.block-title {
  margin-top: 22px;
  font-size: 1.25rem;
}

.check-list { display: grid; gap: 12px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-soft);
}
.check-list svg {
  width: 18px; height: 18px;
  flex: none;
  margin-top: 4px;
  color: var(--ok);
}

.usecase-list { display: grid; gap: 10px; }
.usecase-list li {
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  background: var(--surface-2);
  color: var(--text-soft);
  font-size: .95rem;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.screenshot-grid figure {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  box-shadow: 0 1px 2px rgba(15, 20, 30, .04), 0 10px 28px -14px rgba(15, 20, 30, .18);
}
.screenshot-grid img {
  display: block;
  width: 100%;
  height: auto;
}

.side-card {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: grid;
  gap: 12px;
  padding: 28px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}
.side-card h3 { font-size: 1.12rem; }
.side-card > p { color: var(--muted); font-size: .92rem; }
.side-card__list {
  display: grid;
  gap: 9px;
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.side-card__list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: .875rem;
}
.side-card__list li::before {
  content: "";
  position: absolute;
  left: 4px; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* 9b. Başvuru formu ------------------------------------------------------ */
.signup {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}
.signup__title { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.signup__sub {
  margin: 12px 0 30px;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 54ch;
}

.field--apps {
  border: none;
  margin: 0;
  padding: 0;
}
.field--apps legend {
  padding: 0;
  font-size: .84rem;
  font-weight: 600;
  color: var(--text-soft);
}
.field__hint {
  margin: 4px 0 12px;
  color: var(--muted);
  font-size: .8rem;
}

.app-choices {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 10px;
}
.app-choice {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}
.app-choice:hover { border-color: var(--border-strong); }
.app-choice input {
  width: 17px; height: 17px;
  flex: none;
  accent-color: var(--accent);
}
.app-choice__name {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}
.app-choice.is-checked,
.app-choice:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.app-choice:has(input:focus-visible) {
  box-shadow: 0 0 0 3px var(--accent-ring);
}

/* Bot tuzağı — ekranda ve okuyucularda görünmez */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.signup__side .side-card { top: calc(var(--header-h) + 24px); }
.side-steps {
  display: grid;
  gap: 14px;
  margin-top: 6px;
}
.side-steps li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--text-soft);
  font-size: .9rem;
  line-height: 1.5;
}
.side-steps__num {
  display: grid;
  place-items: center;
  flex: none;
  width: 24px; height: 24px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
}
.side-card__contact {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: .87rem;
}

.form-done {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
  max-width: 520px;
  margin: 40px auto;
  padding: 44px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}
.form-done__icon {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(22, 163, 74, .12);
  color: var(--ok);
}
.form-done__icon svg { width: 26px; height: 26px; }
.form-done h1 { font-size: 1.5rem; }
.form-done p { color: var(--muted); }
.form-done .btn { margin-top: 8px; }

/* 10. Footer ------------------------------------------------------------- */
.site-footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand__text {
  margin-top: 16px;
  max-width: 40ch;
  color: var(--muted);
  font-size: .92rem;
}
.footer-social { display: flex; gap: 16px; margin-top: 18px; }
.footer-social a { color: var(--muted); font-size: .87rem; font-weight: 500; }
.footer-social a:hover { color: var(--accent); }

.footer-col h3 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: var(--muted); font-size: .92rem; }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: .85rem;
}
.footer-bottom__links { display: flex; gap: 10px; align-items: center; }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--accent); }

/* 11. Admin -------------------------------------------------------------- */
.admin-body { background: var(--bg-alt); }

.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}
.admin-login__card {
  width: min(400px, 100%);
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}
.admin-login__card .brand { margin-bottom: 22px; }

.admin-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.admin-header__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 62px;
}
.admin-header nav { display: flex; gap: 4px; margin-inline-start: auto; }
.admin-header nav a {
  padding: 7px 14px;
  border-radius: 8px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 500;
}
.admin-header nav a:hover,
.admin-header nav a.is-active { background: var(--accent-soft); color: var(--accent); }

.nav-badge {
  display: inline-grid;
  place-items: center;
  min-width: 19px;
  height: 19px;
  margin-left: 5px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
}

.admin-table tr.is-unread td { background: var(--accent-soft); }
.admin-table tr.is-unread:hover td { background: var(--accent-soft); }

.lead-note { margin-top: 8px; }
.lead-note summary {
  cursor: pointer;
  color: var(--accent);
  font-size: .82rem;
  font-weight: 500;
}
.lead-note p {
  margin-top: 8px;
  padding: 10px 13px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-soft);
  font-size: .87rem;
  white-space: normal;
  max-width: 420px;
}

.admin-main { padding: 34px 0 80px; }

.admin-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
}
.admin-title-row h1 { font-size: 1.6rem; }

.panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}
.panel + .panel { margin-top: 22px; }
.panel__head {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.panel__head h2 { font-size: 1.02rem; }
.panel__head p { margin-top: 4px; color: var(--muted); font-size: .85rem; }
.panel__body { padding: 22px; }

.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
  text-align: left;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  font-size: .92rem;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tbody tr:hover { background: var(--surface-2); }

.cell-app { display: flex; align-items: center; gap: 12px; }
.cell-app strong { font-weight: 600; }
.cell-app small { display: block; color: var(--muted); font-size: .8rem; font-weight: 400; }
.cell-app .app-icon { width: 40px; height: 40px; border-radius: 11px; font-size: 19px; }

.state {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 600;
}
.state::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.state--published { background: rgba(22, 163, 74, .12); color: #16a34a; }
.state--draft     { background: rgba(100, 116, 139, .14); color: #64748b; }

.row-actions { display: flex; gap: 6px; justify-content: flex-end; }
.mini-btn {
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  transition: all .16s ease;
}
.mini-btn:hover { color: var(--text); border-color: var(--border-strong); background: var(--surface-2); }
.mini-btn svg { width: 15px; height: 15px; }
.mini-btn--danger:hover { color: var(--danger); border-color: var(--danger); background: rgba(220, 38, 38, .07); }
.mini-btn[disabled] { opacity: .35; pointer-events: none; }

.form-grid { display: grid; gap: 20px; }
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.field { display: grid; gap: 7px; }
.field label {
  font-size: .84rem;
  font-weight: 600;
  color: var(--text-soft);
}
.field small { color: var(--muted); font-size: .78rem; }
.field input[type="text"],
.field input[type="url"],
.field input[type="email"],
.field input[type="number"],
.field input[type="password"],
.field input[type="file"],
.field select,
.field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: .93rem;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-ring);
}
.field input[type="color"] {
  width: 54px; height: 40px;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
}
.field-inline { display: flex; align-items: center; gap: 10px; }

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-soft);
  cursor: pointer;
}
.checkbox input { width: 17px; height: 17px; accent-color: var(--accent); }

.lang-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface-2);
  width: fit-content;
}
.lang-tab {
  padding: 6px 16px;
  border: none;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 600;
}
.lang-tab.is-active { background: var(--surface); color: var(--text); box-shadow: var(--shadow-sm); }
.lang-pane { display: none; }
.lang-pane.is-active { display: grid; gap: 20px; }

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  border-top: 1px solid var(--border);
  background: var(--surface-2);
}

.alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  margin-bottom: 22px;
  border-radius: 12px;
  font-size: .9rem;
  border: 1px solid transparent;
}
.alert--success { background: rgba(22, 163, 74, .1);  border-color: rgba(22, 163, 74, .28);  color: #15803d; }
.alert--error   { background: rgba(220, 38, 38, .09); border-color: rgba(220, 38, 38, .28); color: #b91c1c; }
[data-theme="dark"] .alert--success { color: #4ade80; }
[data-theme="dark"] .alert--error   { color: #fca5a5; }

.icon-preview {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px dashed var(--border-strong);
  border-radius: 12px;
  background: var(--surface-2);
}
.icon-preview img {
  width: 52px; height: 52px;
  border-radius: 13px;
  object-fit: cover;
}

.shots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}
.shots-grid__item {
  display: block;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface-2);
  cursor: pointer;
}
.shots-grid__item img {
  display: block;
  width: 100%;
  height: 100px;
  object-fit: cover;
}
.shots-grid__item .checkbox {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  font-size: .82rem;
  border-top: 1px solid var(--border);
}

.help-note {
  margin-top: 26px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  background: var(--surface);
  color: var(--muted);
  font-size: .88rem;
}
.help-note code {
  padding: 2px 6px;
  border-radius: 5px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: .85em;
}

/* 12. Duyarlı ------------------------------------------------------------ */
@media (max-width: 1000px) {
  .split__inner { grid-template-columns: 1fr; gap: 34px; }
  .split__intro { grid-area: auto; position: static; }
  .split__apps { grid-area: auto; }
  .split__points {
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 18px;
  }

  .app-body { grid-template-columns: 1fr; gap: 36px; }
  .signup { grid-template-columns: 1fr; gap: 34px; }
  .side-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 860px) {
  .menu-toggle { display: flex; }
  .header-cta { display: none; }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px 20px 20px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a { padding: 12px 14px; font-size: 1rem; }

  .section { padding: 64px 0; }
  .split { padding: 30px 0 64px; }
  .split__points { grid-auto-flow: row; gap: 11px; }
  .split__apps .search { max-width: none; }
  .apps-toolbar { flex-direction: column; align-items: stretch; }
  .apps-toolbar__end { align-items: stretch; }
  .app-count { display: none; }
  .search { min-width: 0; }
  .app-hero__inner { flex-direction: column; gap: 18px; }
  .admin-header nav { gap: 0; }
  .admin-header nav a { padding: 7px 10px; font-size: .84rem; }
}

@media (max-width: 620px) {
  .container { padding-inline: 18px; }
  .brand__logo { height: 26px; }
  .pill { font-size: .78rem; padding: 6px 14px 6px 11px; }
  .apps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta { padding: 46px 24px; }
  .app-card__foot { flex-direction: column; align-items: stretch; gap: 10px; }
  .app-card__foot .link-arrow { justify-content: center; }
  .admin-table { display: block; overflow-x: auto; white-space: nowrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}
