/* ============================================================
   Useroam — global site
   Tek CSS. Mobil öncelikli. Marka: lacivert #0F124A + limon #AFCB1D.
   ============================================================ */

@font-face {
  font-family: 'Montserrat';
  src: url('/assets/fonts/montserrat-latin.woff2') format('woff2');
  font-weight: 300 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/assets/fonts/montserrat-latin-ext.woff2') format('woff2');
  font-weight: 300 800;
  font-display: swap;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --ink: #14183a;
  --ink-soft: #50536f;
  --ink-deep: #0F124A;
  --ink-deep-2: #0b0e3a;
  --bg: #fafafa;
  --surface: #f0f0f4;
  --lime: #AFCB1D;
  --lime-ink: #6d7d12;
  --stone: #a9adcf;
  --paper-dark: #d9dbee;
  --line: #e2e3ec;
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: 72rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 1rem;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 2px;
  border-radius: 4px;
}
.dark :focus-visible, .band-dark :focus-visible { outline-color: var(--lime); }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 48em) { .wrap { padding-inline: 2rem; } }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--lime); color: var(--ink-deep);
  padding: .6rem 1rem; font-weight: 600; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Tipografi ---------- */
h1, h2, h3 { line-height: 1.15; text-wrap: balance; letter-spacing: -0.015em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.25rem); font-weight: 720; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 650; }
p  { max-width: 70ch; }
.lead { font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: var(--ink-soft); }
.band-dark p, .band-dark .lead { color: var(--paper-dark); line-height: 1.65; }
strong { font-weight: 650; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-weight: 650; font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  min-height: 48px;
}
.btn:active { transform: scale(.97); }
.btn:hover { transform: translateY(-2px); }
.btn-lime { background: var(--lime); color: var(--ink-deep); position: relative; overflow: hidden; }
.btn-lime::after {
  content: ''; position: absolute; top: 0; left: -70%; width: 45%; height: 100%;
  background: rgba(255,255,255,.4); transform: skewX(-22deg);
  transition: left .55s var(--ease); pointer-events: none;
}
.btn-lime:hover { background: #c2df26; }
.btn-lime:hover::after { left: 130%; }
.btn-ghost { border-color: var(--stone); color: var(--paper-dark); }
.btn-ghost:hover { border-color: var(--lime); color: #fff; }
.btn-navy { background: var(--ink-deep); color: #fff; }
.btn-navy:hover { background: #1a1e63; }
.btn-line { border-color: var(--ink-deep); color: var(--ink-deep); }
.btn-line:hover { background: var(--ink-deep); color: #fff; }

/* ---------- Header ---------- */
.site-head {
  background: var(--ink-deep);
  position: sticky; top: 0; z-index: 50;
}
.site-head .wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 4.25rem; gap: 1rem;
}
.brand { display: flex; align-items: center; }
.brand svg, .brand img { height: 1.6rem; width: auto; }

.nav-toggle {
  background: none; border: 0; color: #fff;
  width: 48px; height: 48px; display: grid; place-items: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ''; display: block; width: 24px; height: 2px;
  background: #fff; position: relative;
  transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after  { position: absolute; top: 7px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span::after  { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
  display: none;
  position: fixed; inset: 4.25rem 0 0 0;
  background: var(--ink-deep-2);
  padding: 1.5rem 1.25rem 3rem;
  overflow-y: auto; z-index: 49;
}
.nav-open .site-nav { display: block; }
.site-nav a {
  display: block; color: #fff; text-decoration: none;
  padding: .8rem .4rem; font-weight: 600; font-size: 1.1rem;
  border-bottom: 1px solid rgba(169,173,207,.18);
}
.site-nav a:hover { color: var(--lime); }
.site-nav .nav-group { color: var(--stone); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; margin: 1.4rem 0 .2rem; }
.site-nav .nav-cta { border: 0; }
.nav-login { display: flex; gap: .6rem; margin-top: 1.6rem; }
.nav-login .btn { flex: 1; justify-content: center; }
.nav-lang { display: flex; gap: 0; align-items: center; }
.nav-lang a {
  color: var(--stone); text-decoration: none; font-weight: 700; font-size: .82rem;
  letter-spacing: .04em; padding: .35rem .55rem; border: 0; border-radius: 6px;
  position: relative;
}
.nav-lang a + a { border-left: 1px solid rgba(169,173,207,.35); border-radius: 0; }
.nav-lang a[aria-current="true"] { color: #fff; background: none; }
.nav-lang a[aria-current="true"]::after {
  content: ''; position: absolute; left: .55rem; right: .55rem; bottom: -.15rem;
  height: 2px; background: var(--lime); border-radius: 2px;
}
.nav-lang a:hover { color: #fff; }

@media (min-width: 64em) {
  .nav-toggle { display: none; }
  .site-nav {
    display: flex; position: static; inset: auto;
    background: none; padding: 0; overflow: visible;
    align-items: center; gap: .2rem;
  }
  .site-nav a {
    padding: .5rem .6rem; font-size: .92rem; border: 0; white-space: nowrap;
  }
  .site-nav .nav-group { display: none; }
  .site-nav .nav-login { margin: 0 0 0 .7rem; gap: .45rem; }
  .site-nav .nav-login .btn { flex: 0 0 auto; padding: .5rem 1rem; min-height: 40px; font-size: .88rem; }
  .site-nav .nav-lang { margin-left: .5rem; }
  .has-sub { position: relative; }
  .has-sub > a::after { content: ' ▾'; font-size: .7em; color: var(--stone); }
  .sub {
    display: none; position: absolute; top: 100%; left: 0;
    background: var(--ink-deep-2); border-radius: 12px;
    min-width: 15rem; padding: .6rem; box-shadow: 0 18px 40px rgba(11,14,58,.35);
  }
  .has-sub:hover .sub, .has-sub:focus-within .sub { display: block; }
  .sub a { padding: .55rem .8rem; border-radius: 8px; font-size: .92rem; }
  .sub a:hover { background: rgba(175,203,29,.12); }
}

/* ---------- Bantlar ---------- */
.band { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.band-dark { background: var(--ink-deep); color: #fff; }
.band-dark h1, .band-dark h2, .band-dark h3 { color: #fff; }
.band-surface { background: var(--surface); }
.band-tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero .wrap { position: relative; z-index: 3; }
/* Ana sayfa hero fotoğraf arka planı + lacivert derinlik katmanı */
.hero-photo { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
.hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, var(--ink-deep) 34%, rgba(15,18,74,.86) 52%, rgba(15,18,74,.6) 100%),
    linear-gradient(0deg, rgba(11,14,58,.5), rgba(11,14,58,0) 40%);
}
@media (max-width: 47.99em) {
  .hero-photo img { object-position: 62% center; }
  .hero-photo::after { background: linear-gradient(180deg, var(--ink-deep) 42%, rgba(15,18,74,.82) 100%); }
}
/* Sektör hero'ları: sağ tarafta dashboard yok — fotoğraf net görünsün */
.hero-side .hero-photo::after {
  background:
    linear-gradient(100deg, var(--ink-deep) 30%, rgba(15,18,74,.72) 48%, rgba(15,18,74,.12) 100%),
    linear-gradient(0deg, rgba(11,14,58,.55), rgba(11,14,58,0) 45%);
}
.hero-side .wrap { max-width: var(--wrap); }
.hero-side h1, .hero-side .lead { max-width: 34rem; }
@media (max-width: 47.99em) {
  .hero-side .hero-photo::after { background: linear-gradient(180deg, rgba(15,18,74,.72) 0%, var(--ink-deep) 62%); }
}
.hero-arcs {
  position: absolute; right: -8%; top: -12%;
  width: min(34rem, 70vw); z-index: 1; pointer-events: none;
  opacity: .9;
}
.hero-kicker { color: var(--lime); font-weight: 700; letter-spacing: .06em; font-size: .95rem; margin-bottom: 1rem; }
.hero-sub {
  margin-top: 1rem; padding-left: 1rem;
  border-left: 3px solid var(--lime);
  color: #fff; font-weight: 600; font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 44ch;
}
/* Güven şeridi — 5651/uyum, ilk ekranın hemen altında */
.trust-strip { background: var(--ink-deep-2); padding-block: 1.4rem; }
.trust-grid { display: grid; gap: 1rem 1.8rem; grid-template-columns: 1fr; }
@media (min-width: 34em) { .trust-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 62em) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-grid li { display: flex; gap: .7rem; align-items: flex-start; }
.trust-grid svg { width: 1.4rem; height: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
.trust-grid strong { display: block; color: #fff; font-weight: 650; font-size: .98rem; }
.trust-grid span { display: block; color: var(--stone); font-size: .84rem; line-height: 1.4; margin-top: .15rem; }
.hero p.lead { margin-top: 1.2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero-note { margin-top: 1.4rem; color: var(--stone); font-size: .88rem; }

.arc { fill: none; stroke-linecap: round; }
.arc-lime { stroke: var(--lime); }
.arc-stone { stroke: rgba(169,173,207,.45); }
@media (prefers-reduced-motion: no-preference) {
  .js .arc { stroke-dasharray: var(--len, 600); stroke-dashoffset: var(--len, 600); }
  .js .arcs-in .arc { animation: arcdraw 1.4s var(--ease) forwards; }
  .js .arcs-in .arc:nth-child(2) { animation-delay: .15s; }
  .js .arcs-in .arc:nth-child(3) { animation-delay: .3s; }
  .js .arcs-in .arc:nth-child(4) { animation-delay: .45s; }
}
@keyframes arcdraw { to { stroke-dashoffset: 0; } }

/* ---------- Radar taraması + sinyal blip'leri (marka imzası) ---------- */
.sweep-beam { opacity: 0; }
.blip { fill: var(--lime); opacity: .25; }
.blip-2 { fill: #d9dbee; }
@media (prefers-reduced-motion: no-preference) {
  .js .arcs-in .sweep-beam {
    transform-origin: 520px 520px;
    animation: sweep 7.5s linear 1.2s infinite;
  }
  .js .arcs-in .blip {
    transform-box: fill-box; transform-origin: center;
    animation: blip 4.2s ease-in-out infinite;
  }
  .js .arcs-in .blip:nth-of-type(2) { animation-delay: 1.1s; }
  .js .arcs-in .blip:nth-of-type(3) { animation-delay: 2.2s; }
  .js .arcs-in .blip:nth-of-type(4) { animation-delay: 3s; }
}
@keyframes sweep {
  0% { transform: rotate(10deg); opacity: 0; }
  6% { opacity: .8; }
  46% { opacity: .8; }
  54% { transform: rotate(-100deg); opacity: 0; }
  100% { transform: rotate(-100deg); opacity: 0; }
}
@keyframes blip {
  0%, 100% { opacity: .15; transform: scale(.55); }
  45% { opacity: 1; transform: scale(1.25); }
}

/* ---------- Hero görsel kompozisyonu (gerçek ürün ekranı) ---------- */
.hero-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 64em) {
  .hero-grid { grid-template-columns: 1.08fr .92fr; gap: 4rem; }
  .hero-grid h1 { font-size: clamp(2.2rem, 3.6vw, 3.4rem); }
  .hero-grid .lead { font-size: clamp(1rem, 1.4vw, 1.15rem); }
}
.hero-visual { position: relative; margin-top: 1rem; }
.hero-shot {
  border-radius: 14px;
  border: 1px solid rgba(169,173,207,.32);
  box-shadow: 0 44px 90px -28px rgba(0,0,0,.72);
  transform: perspective(1300px) rotateY(-7deg) rotateX(2.5deg);
}
.hero-phone {
  position: absolute; left: -2.6rem; bottom: -3rem; width: clamp(96px, 9vw, 128px);
  border-radius: 22px; border: 4px solid var(--ink-deep-2);
  box-shadow: 0 30px 60px -18px rgba(0,0,0,.75);
  transform: perspective(1300px) rotateY(8deg);
  display: none;
}
@media (min-width: 48em) { .hero-phone { display: block; } }
@media (prefers-reduced-motion: no-preference) {
  .js .hero-shot { animation: shotin 1.1s var(--ease) .25s backwards; }
  .js .hero-phone { animation: heroin 1s var(--ease) .55s backwards; }
}
@keyframes shotin {
  from { opacity: 0; transform: perspective(1300px) rotateY(-7deg) rotateX(2.5deg) translateY(46px); }
  to   { opacity: 1; transform: perspective(1300px) rotateY(-7deg) rotateX(2.5deg); }
}

/* ---------- Hero'da süzülen kampanya kartları ---------- */
.hero-float { position: absolute; inset: 0; z-index: 2; pointer-events: none; display: none; }
@media (min-width: 64em) { .hero-float { display: block; } }
.fcard {
  position: absolute;
  background: #171c62;
  border: 1px solid rgba(169,173,207,.28);
  border-radius: 14px;
  padding: .8rem 1.1rem;
  color: var(--paper-dark);
  font-size: .86rem; font-weight: 600; line-height: 1.35;
  box-shadow: 0 24px 50px -18px rgba(0,0,0,.6);
  max-width: 15rem;
}
.fcard strong { color: #fff; }
.fcard .dot {
  display: inline-block; width: .55rem; height: .55rem; border-radius: 50%;
  background: var(--lime); margin-right: .45rem;
}
.fcard-lime { background: var(--lime); border: 0; color: var(--ink-deep); }
.fcard-lime strong { color: var(--ink-deep); }
@media (prefers-reduced-motion: no-preference) {
  .js .fcard { animation: floaty 5.5s ease-in-out infinite alternate; }
  .js .fcard:nth-child(2) { animation-delay: 1.4s; animation-duration: 6.5s; }
  .js .fcard:nth-child(3) { animation-delay: 2.6s; animation-duration: 7s; }
  .js .hero .wrap > * { animation: heroin .8s var(--ease) backwards; }
  .js .hero .wrap > *:nth-child(2) { animation-delay: .1s; }
  .js .hero .wrap > *:nth-child(3) { animation-delay: .2s; }
  .js .hero .wrap > *:nth-child(4) { animation-delay: .3s; }
  .js .hero .wrap > *:nth-child(5) { animation-delay: .4s; }
}
@keyframes floaty { from { transform: translateY(-9px); } to { transform: translateY(11px); } }
@keyframes heroin { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* ---------- Reveal (JS kademeli gecikme verir) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .js .rv { opacity: 0; transform: translateY(22px); }
  .js .rv.in { opacity: 1; transform: none; transition: opacity .75s var(--ease), transform .75s var(--ease); }
}

/* ---------- Başlık altı limon çizgi süpürmesi ---------- */
h2.rv::after {
  content: ''; display: block; width: 0; height: 4px;
  background: var(--lime); border-radius: 2px; margin-top: .65rem;
  transition: width .9s var(--ease) .25s;
}
h2.rv.in::after { width: 4.5rem; }

/* ---------- Sayaç bandı ---------- */
.stats { display: grid; gap: 2.2rem; grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr)); text-align: center; margin-top: 2.5rem; }
.stat b {
  display: block; font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 760; color: var(--lime);
  font-variant-numeric: tabular-nums; line-height: 1.05;
}
.stat span { color: var(--paper-dark); font-size: .95rem; font-weight: 550; }

/* ---------- Akan şerit (marquee) ---------- */
.marquee { overflow: hidden; margin-top: 1.8rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee-track { display: flex; gap: 4.5rem; width: max-content; padding-block: .4rem; }
.marquee-track span { white-space: nowrap; font-weight: 700; font-size: 1.2rem; letter-spacing: .03em; color: var(--ink-soft); }
.band-dark .marquee-track span { color: var(--stone); }
.marquee-track span::after { content: '·'; margin-left: 4.5rem; color: var(--lime); }
@media (prefers-reduced-motion: no-preference) {
  .js .marquee-track { animation: marquee 30s linear infinite; }
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Modül satırları (özdeş grid yerine dönüşümlü) ---------- */
.mod-row {
  display: grid; gap: 2rem; align-items: center;
  padding-block: clamp(2rem, 5vw, 3.5rem);
}
.mod-row + .mod-row { border-top: 1px solid var(--line); }
.mod-row h3 { font-size: clamp(1.35rem, 2.4vw, 1.8rem); }
.mod-row .tag {
  display: inline-block; font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--lime-ink); margin-bottom: .6rem;
}
.mod-row ul { margin-top: 1rem; display: grid; gap: .5rem; }
.mod-row li { padding-left: 1.6rem; position: relative; color: var(--ink-soft); }
.mod-row li::before {
  content: ''; position: absolute; left: 0; top: .48em;
  width: .85rem; height: .5rem;
  border-left: 3px solid var(--lime); border-bottom: 3px solid var(--lime);
  transform: rotate(-45deg);
}
.mod-row .mod-link { font-weight: 650; color: var(--ink-deep); text-decoration-color: var(--lime); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.mod-visual { border-radius: var(--radius); overflow: hidden; }
.mod-photo {
  width: 100%; aspect-ratio: 5 / 4; object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 22px 50px -26px rgba(15,18,74,.4);
  transition: transform .5s var(--ease);
}
.mod-row:hover .mod-photo { transform: scale(1.03); }
@media (min-width: 48em) {
  .mod-row { grid-template-columns: 1.05fr .95fr; gap: 3.5rem; }
  .mod-row:nth-child(even) .mod-visual { order: -1; }
}

/* ---------- Çip listesi (özellikler) ---------- */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.4rem; }
.chip {
  background: var(--surface); border: 1px solid var(--line);
  padding: .5rem .95rem; border-radius: 999px;
  font-size: .9rem; font-weight: 550; color: var(--ink);
}
.band-dark .chip { background: rgba(255,255,255,.06); border-color: rgba(169,173,207,.3); color: var(--paper-dark); }

/* ---------- Adımlar (nasıl çalışır) ---------- */
.steps { counter-reset: adim; display: grid; gap: 1.6rem; margin-top: 2rem; }
.step { position: relative; padding-left: 4rem; }
.step::before {
  counter-increment: adim; content: counter(adim);
  position: absolute; left: 0; top: 0;
  width: 2.9rem; height: 2.9rem; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ink-deep); color: var(--lime);
  font-weight: 750; font-size: 1.15rem;
}
.band-dark .step::before { background: var(--lime); color: var(--ink-deep); }
.step h3 { margin-bottom: .3rem; }
.step p { color: var(--ink-soft); }
.band-dark .step p { color: var(--paper-dark); }
@media (min-width: 48em) { .steps { grid-template-columns: repeat(3, 1fr); } .steps.steps-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 72em) { .steps.steps-4 { grid-template-columns: repeat(4, 1fr); } }

/* ---------- SSS ---------- */
.faq { max-width: 46rem; margin-top: 2rem; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; font-weight: 650; padding: 1.1rem .2rem;
  list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--lime-ink); font-weight: 750; font-size: 1.3rem; flex-shrink: 0; }
.faq details[open] summary::after { content: '–'; }
.faq .faq-a { padding: 0 .2rem 1.2rem; color: var(--ink-soft); }

/* ---------- CTA bandı ---------- */
.cta-band { text-align: center; position: relative; overflow: hidden; }
.cta-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  opacity: .13; filter: saturate(.7);
  pointer-events: none;
}
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band h2 { max-width: 26ch; margin-inline: auto; }
.cta-band .lead { margin: 1rem auto 0; max-width: 55ch; }
.cta-band .hero-cta { justify-content: center; }

/* ---------- Kartlar (sektör/entegrasyon — üç varyant, tekdüze grid değil) ---------- */
.mosaic { display: grid; gap: 1.2rem; margin-top: 2.2rem; }
.mosaic-card {
  border-radius: var(--radius); padding: 1.8rem;
  background: var(--surface); border: 1px solid var(--line);
  text-decoration: none; display: flex; flex-direction: column; gap: .5rem;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.mosaic-card:hover { border-color: var(--lime); transform: translateY(-6px); box-shadow: 0 22px 44px -24px rgba(15,18,74,.35); }
.mosaic-card h3 { color: var(--ink-deep); }
.mosaic-card p { color: var(--ink-soft); font-size: .95rem; }
.mosaic-card .go { margin-top: auto; padding-top: .8rem; font-weight: 700; color: var(--lime-ink); font-size: .9rem; }
.mosaic-card.feat {
  background: var(--ink-deep); border-color: var(--ink-deep);
}
.mosaic-card.feat h3 { color: #fff; }
.mosaic-card.feat p { color: var(--paper-dark); }
.mosaic-card.feat .go { color: var(--lime); }
@media (min-width: 48em) {
  .mosaic { grid-template-columns: repeat(6, 1fr); }
  .mosaic-card { grid-column: span 2; }
  .mosaic-card.wide { grid-column: span 3; }
}

/* ---------- Logo şeridi / vendor listesi ---------- */
.vendors { display: flex; flex-wrap: wrap; gap: .8rem 2rem; align-items: center; margin-top: 1.4rem; }
.vendors span { color: var(--ink-soft); font-weight: 650; font-size: .95rem; letter-spacing: .02em; }
.band-dark .vendors span { color: var(--stone); }

/* ---------- Referans şeridi (tek satır akan) ---------- */
.logo-strip { padding-block: 2.2rem; }
.logo-strip-label {
  color: var(--ink-soft); font-weight: 650; font-size: .82rem;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.6rem;
}
.logo-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-marquee-track { display: flex; width: max-content; align-items: stretch; }
.logo-item {
  flex: 0 0 auto; min-width: 12rem; padding: .4rem 2.2rem;
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--line);
}
.logo-item img {
  max-height: 2.6rem; max-width: 11rem; width: auto; object-fit: contain;
  filter: grayscale(1); opacity: .7;
  transition: filter .3s var(--ease), opacity .3s var(--ease);
}
.logo-item:hover img { filter: grayscale(0); opacity: 1; }
.logo-mark {
  display: flex; flex-direction: column; align-items: center; gap: .12rem;
  filter: grayscale(1); opacity: .72;
  transition: filter .3s var(--ease), opacity .3s var(--ease);
}
.logo-item:hover .logo-mark { filter: none; opacity: 1; }
.logo-brand {
  font-weight: 750; font-size: 1.12rem; letter-spacing: -0.01em;
  color: var(--ink-deep); line-height: 1; white-space: nowrap;
}
.logo-kind {
  font-size: .58rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--lime-ink);
}
@media (prefers-reduced-motion: no-preference) {
  .js .logo-marquee-track { animation: marquee 55s linear infinite; }
  .logo-marquee:hover .logo-marquee-track { animation-play-state: paused; }
}

/* ---------- Blog ---------- */
.post-grid { display: grid; gap: 1.4rem; margin-top: 2.2rem; }
@media (min-width: 48em) { .post-grid { grid-template-columns: repeat(3, 1fr); } }
.post-card {
  display: flex; flex-direction: column; gap: .55rem;
  text-decoration: none; border-radius: var(--radius);
  padding: 1.5rem; background: #fff; border: 1px solid var(--line);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.post-card:hover { border-color: var(--lime); transform: translateY(-3px); }
.post-card time { color: var(--ink-soft); font-size: .82rem; }
.post-card h2, .post-card h3 { font-size: 1.12rem; font-weight: 650; color: var(--ink-deep); }
.post-card p { color: var(--ink-soft); font-size: .93rem; }

.article { max-width: 46rem; }
.article h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.article-meta { color: var(--ink-soft); font-size: .9rem; margin-top: .8rem; }
.article-body { margin-top: 2rem; }
.article-body h2 { font-size: 1.5rem; margin: 2.2rem 0 .8rem; }
.article-body h3 { margin: 1.8rem 0 .6rem; }
.article-body p { margin-bottom: 1rem; color: #23274b; }
.article-body ul, .article-body ol { margin: 0 0 1rem 1.3rem; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: .4rem; }
.article-body a { color: var(--lime-ink); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.article-body table { border-collapse: collapse; width: 100%; margin: 1.2rem 0; font-size: .93rem; }
.article-body th, .article-body td { border: 1px solid var(--line); padding: .6rem .8rem; text-align: left; }
.article-body th { background: var(--surface); }
.article-body img { border-radius: var(--radius); margin: 1.2rem 0; }
.article-body blockquote { border-left: 4px solid var(--lime); padding: .4rem 0 .4rem 1.2rem; margin: 1.2rem 0; color: var(--ink-soft); }

/* ---------- Form ---------- */
.form { display: grid; gap: 1rem; max-width: 34rem; margin-top: 2rem; }
.form label { font-weight: 650; font-size: .92rem; display: grid; gap: .35rem; }
.form input, .form textarea, .form select {
  font: inherit; padding: .8rem .95rem;
  border: 1.5px solid var(--stone); border-radius: 10px;
  background: #fff; color: var(--ink); width: 100%;
}
.form input:focus, .form textarea:focus, .form select:focus { border-color: var(--ink-deep); outline: 2px solid var(--lime); outline-offset: 1px; }
.form .hp { position: absolute; left: -5000px; }
.form-note { font-size: .85rem; color: var(--ink-soft); }
.alert { padding: 1rem 1.2rem; border-radius: 10px; font-weight: 600; margin-top: 1.5rem; max-width: 34rem; }
.alert-ok { background: #eef4d3; color: #3c4708; border: 1px solid var(--lime); }
.alert-err { background: #fbeaea; color: #7c1d1d; border: 1px solid #e3a5a5; }

/* ---------- Yasal metin ---------- */
.legal { max-width: 46rem; }
.legal h2 { font-size: 1.3rem; margin: 2rem 0 .7rem; }
.legal p, .legal li { color: #23274b; margin-bottom: .8rem; font-size: .96rem; }
.legal ul { margin-left: 1.3rem; list-style: disc; }

/* ---------- Footer ---------- */
.site-foot { background: var(--ink-deep-2); color: var(--paper-dark); padding-block: 3.5rem 2rem; }
.foot-grid { display: grid; gap: 2rem; }
@media (min-width: 48em) { .foot-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.site-foot h3 { color: #fff; font-size: .85rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: .9rem; }
.site-foot a { color: var(--paper-dark); text-decoration: none; display: inline-block; padding: .22rem 0; font-size: .93rem; }
.site-foot a:hover { color: var(--lime); }
.foot-brand img, .foot-brand svg { height: 1.5rem; width: auto; margin-bottom: 1rem; }
.foot-brand p { font-size: .9rem; color: var(--stone); max-width: 34ch; }
.foot-addr { margin-top: .9rem; font-size: .84rem; line-height: 1.5; }
.foot-contact { margin-top: .9rem; font-size: .88rem; }
.foot-contact a { color: var(--paper-dark); text-decoration: none; }
.foot-contact a:hover { color: var(--lime); }
.foot-legal {
  margin-top: 2.8rem; padding-top: 1.4rem;
  border-top: 1px solid rgba(169,173,207,.2);
  display: flex; flex-wrap: wrap; gap: .8rem 1.8rem; align-items: center;
  font-size: .84rem; color: var(--stone);
}
.foot-legal a { font-size: .84rem; color: var(--stone); }

/* ---------- Ürün ekran görüntüleri ---------- */
.screen {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px -28px rgba(15,18,74,.35);
}
.band-dark .screen { border-color: rgba(169,173,207,.28); box-shadow: 0 24px 60px -20px rgba(0,0,0,.5); }
.phone {
  max-width: 300px; margin-inline: auto;
  border-radius: 32px; border: 6px solid var(--ink-deep-2);
  box-shadow: 0 24px 60px -24px rgba(15,18,74,.45);
}
.screen-band { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 48em) { .screen-band { grid-template-columns: 1fr 1.2fr; gap: 3rem; } }

/* ---------- Yardımcılar ---------- */
.center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.breadcrumb { font-size: .85rem; color: var(--ink-soft); margin-bottom: 1.4rem; }
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb .sep { margin-inline: .45rem; color: var(--stone); }
.band-dark .breadcrumb, .band-dark .breadcrumb a { color: var(--stone); }
