/* ════════════════════════════════════════════════════════════
   ASMİSOFT — Koyu Sinematik / Liquid Glass
   Derin mor-lacivert + video hero + cam doku. Vanilla CSS.
   ════════════════════════════════════════════════════════════ */

/* ── 1. Tokenlar ─────────────────────────────────────────── */
:root {
  --background: #0d1117;               /* antrasit */
  --surface: #161c26;                  /* yükseltilmiş panel */
  --foreground: #e6edf3;               /* açık gri */
  --hero-sub: #b3bdc9;
  --fg-75: rgba(230, 237, 243, 0.75);
  --fg-50: rgba(230, 237, 243, 0.5);
  --fg-20: rgba(230, 237, 243, 0.2);
  --fg-12: rgba(230, 237, 243, 0.12);
  --accent: #38bdf8;                   /* buz mavisi */
  --accent-2: #0ea5e9;
  --accent-soft: #7dd3fc;
  --grad: linear-gradient(120deg, #94a3b8, #38bdf8);   /* gri → mavi */
  --grad-soft: linear-gradient(135deg, #38bdf8, #0ea5e9);
  --wa: #25D366;

  --font-display: 'General Sans', 'Segoe UI', sans-serif;
  --font-body: 'Geist', 'Segoe UI', system-ui, sans-serif;

  --nav-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── 2. Reset ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-padding-top: calc(var(--nav-h) + 16px); }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  font-family: var(--font-body);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; }
ul { list-style: none; }

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

/* Hareket azaltma: her şey kapanır */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

/* ── 3. Liquid glass ─────────────────────────────────────── */
.liquid-glass {
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.liquid-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.15) 20%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0.15) 80%,
    rgba(255, 255, 255, 0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

/* ── 4. Tipografik yardımcılar ───────────────────────────── */
.grad-text {
  background-image: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.kicker--center { justify-content: center; }
.kicker__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad-soft);
  flex: none;
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: 0.3; } }

.sec-head { padding-block: clamp(64px, 10vh, 110px) clamp(28px, 5vh, 48px); }
.sec-head--center { text-align: center; }

.sec-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.024em;
  margin-top: 18px;
}
.sec-title--xl { font-size: clamp(3rem, 8.5vw, 6rem); }

.sec-sub {
  margin-top: 16px;
  max-width: 56ch;
  color: var(--hero-sub);
  opacity: 0.8;
  font-size: 1.05rem;
}
.sec-head--center .sec-sub { margin-inline: auto; }

/* ── 5. Butonlar (cam hap) ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--foreground);
  border-radius: 999px;
  padding: 8px 16px;
  /* liquid-glass değerleri (hap butonlar için inline uygulanır) */
  background: rgba(255, 255, 255, 0.01);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: background 0.2s, transform 0.2s var(--ease);
  white-space: nowrap;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.15) 20%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0.15) 80%,
    rgba(255, 255, 255, 0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.btn:hover { background: rgba(255, 255, 255, 0.07); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.btn--hero {
  padding: 24px 29px;
  font-size: 1rem;
  margin-top: 25px;
}
/* Solid (dolu) buton — hero primary */
.btn--solid {
  padding: 14px 28px;
  font-size: 0.95rem;
  background: var(--foreground);
  color: var(--background);
  border: none;
  box-shadow: none;
}
.btn--solid::before { display: none; }
.btn--solid:hover {
  background: var(--fg-75);
  transform: translateY(-2px);
}
/* Outline buton — hero secondary */
.btn--outline {
  padding: 14px 28px;
  font-size: 0.95rem;
  border: 1.5px solid var(--fg-20);
  background: transparent;
  box-shadow: none;
}
.btn--outline::before { display: none; }
.btn--outline:hover {
  border-color: transparent;
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
}

/* ── 6. Scroll progress (CSS scroll-driven) ──────────────── */
.progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  z-index: 300;
  background: var(--grad);
  transform-origin: 0 50%;
  transform: scaleX(0);
}
@supports (animation-timeline: scroll()) {
  .progress {
    animation: progress-grow linear both;
    animation-timeline: scroll(root);
  }
}
@keyframes progress-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ── 7. Hero sarmalayıcı + video ─────────────────────────── */
.hero-wrap {
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0; /* JS fade döngüsü kontrol eder */
}

.hero {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: visible; /* blur şekli kırpılmasın */
}

/* Bulanık fon şekli — içeriğin arkasında */
.hero__blur {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(984px, 96vw);
  height: 527px;
  opacity: 0.9;
  background: #030712; /* gray-950 */
  filter: blur(82px);
  pointer-events: none;
}

/* ── 8. Navbar (yüzen hap) ───────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 16px 20px;
  pointer-events: none;
}

/* Masaüstü: Asmipos solda / AsmiQR sağda, header pill'iyle aynı yükseklikte,
   header'ın bir parçası gibi — pill her koşulda tam ortalı kalır. */
.nav__flank { display: none; }
@media (min-width: 861px) {
  .nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: clamp(14px, 2.2vw, 28px);
    max-width: 1360px;
    margin-inline: auto;
  }
  .nav__pill { grid-column: 2; }
  .nav__flank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-inline: clamp(20px, 2vw, 28px);
    border-radius: 999px;
    pointer-events: auto;
    text-decoration: none;
    color: var(--foreground);
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
    transition: transform 0.25s var(--ease), background 0.25s;
  }
  .nav__flank--pos { grid-column: 1; justify-self: start; }
  .nav__flank--qr { grid-column: 3; justify-self: end; }
  .nav__flank svg { width: 20px; height: 20px; flex: none; color: var(--accent-soft); }
  .nav__flank:hover { transform: translateY(-2px); }
}
@media (min-width: 861px) and (max-width: 1150px) {
  .nav__flank span { display: none; }
  .nav__flank { padding-inline: 14px; }
}

.nav__pill {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 6px 8px;
  border-radius: 999px;
  pointer-events: auto;
  transition: box-shadow 0.3s var(--ease);
}
.nav__pill.is-scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.nav__sep {
  width: 1px;
  height: 20px;
  background: var(--fg-12);
  margin-inline: 4px;
  flex: none;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: none;
}
.nav__brand-img {
  height: 44px;
  width: auto;
  display: block;
}
@media (max-width: 600px) {
  .nav__brand-img { height: 35px; }
}
@media (max-width: 400px) {
  .nav__brand-img { height: 29px; }
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}
.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  color: hsl(40 6% 95% / 0.9);
  transition: color 0.2s;
}
.nav__links a:hover { color: #fff; }
.nav__links a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 4px; }

/* "Özel Yazılım & Otomasyon" üst menü bağlantısı — yalnız geniş masaüstünde
   görünür; mobil hamburgerde ve dar masaüstünde GİZLİ (aynı sayfa zaten
   Hizmetlerimiz menüsünde "Özel Yazılım & Otomasyon" olarak listeleniyor,
   iki kez göstermeyelim). 1100–1320px arası kısa etikete düşer. */
.nav__link-swap { white-space: nowrap; }
.nav__lbl--short { display: none; }
@media (max-width: 1099px) {
  .nav__link-swap { display: none; }
}
@media (min-width: 1100px) and (max-width: 1320px) {
  .nav__link-swap .nav__lbl--full { display: none; }
  .nav__link-swap .nav__lbl--short { display: inline; }
}

/* Mobil eylem kümesi: Asmipos/AsmiQR hızlı erişim + hamburger */
.nav__mobile-actions {
  display: none;
  align-items: center;
  gap: 4px;
  flex: none;
}
.nav__icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 40px;
  padding-inline: 7px;
  border-radius: 13px;
  background: var(--foreground);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--background);
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s, box-shadow 0.25s;
  flex: none;
}
.nav__icon-btn svg { width: 16px; height: 16px; flex: none; }
.nav__icon-btn-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.01em; white-space: nowrap; }
.nav__icon-btn:hover,
.nav__icon-btn:focus-visible {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.18);
}
.nav__icon-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--fg-12);
  cursor: pointer;
  flex: none;
}
.nav-toggle__bar {
  width: 18px;
  height: 1.5px;
  background: var(--foreground);
  transition: transform 0.25s var(--ease);
}
.nav--open .nav-toggle__bar:nth-child(1) { transform: translateY(4.2px) rotate(45deg); }
.nav--open .nav-toggle__bar:nth-child(2) { transform: translateY(-4.2px) rotate(-45deg); }

body.no-scroll { overflow: hidden; }

@media (max-width: 860px) {
  .nav { padding: 12px 10px; }
  .nav__mobile-actions { display: flex; }
  .nav__pill {
    width: 100%; border-radius: 16px;
    justify-content: space-between; padding: 8px 8px 8px 12px;
    /* backdrop-filter kaldırılmazsa position:fixed çocukları
       viewport'a değil pill'e göre konumlanır — mobil menü açılmaz */
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .nav-toggle { display: flex; }
  .nav__sep { display: none; }
  .nav__cta { display: none; }

  .nav__links {
    display: flex;
    position: fixed;
    inset: 0;
    height: 100vh;
    height: 100svh;
    z-index: 200;
    flex-direction: column;
    /* ÖNEMLİ: justify-content:center + overflow-y:auto birlikte kullanılınca
       içerik uzadığında üst taraf taşar ve kırpılır — Hizmetlerimiz akordeonu
       açılınca ilk satır üstteki Asmipos/AsmiQR butonlarının altına giriyordu.
       Bunun yerine flex-start + ilk/son çocukta auto kenar boşluğu: yer varken
       liste ortalanır, içerik uzayınca auto'lar 0'a düşer ve üstten normal
       akar. Üst dolgu sabit başlık yüksekliğini temizler. */
    justify-content: flex-start;
    align-items: flex-start;
    padding-inline: clamp(24px, 8vw, 64px);
    padding-block: calc(var(--nav-h) + 14px) 40px;
    gap: 14px;
    background: rgba(13, 17, 23, 0.96);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), visibility 0.3s;
  }
  .nav--open .nav__links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  /* Yer varken listeyi dikey ortalar; içerik uzayınca auto'lar 0'a düşer. */
  .nav__links > *:first-child { margin-top: auto; }
  .nav__links > *:last-child  { margin-bottom: auto; }
  .nav__links > a,
  .nav__links > .nav__dd > .nav__dd-trigger {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.6rem, 6.5vw, 2.4rem);
    letter-spacing: -0.02em;
    transform: translateY(22px);
    opacity: 0;
    transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
  }
  .nav--open .nav__links > a,
  .nav--open .nav__links > .nav__dd > .nav__dd-trigger { transform: none; opacity: 1; }
  .nav--open .nav__links > .nav__dd > .nav__dd-trigger { transition-delay: 0.05s; }
  .nav--open .nav__links > a:nth-of-type(1) { transition-delay: 0.12s; }
  .nav--open .nav__links > a:nth-of-type(2) { transition-delay: 0.19s; }
  .nav--open .nav__links > a:nth-of-type(3) { transition-delay: 0.26s; }
  .nav--open .nav__links > a:nth-of-type(4) { transition-delay: 0.33s; }

  /* Mobil eylem kümesi z-index: nav (z-index:100) stacking context içinde 300,
     overlay (z-index:200 root context) üstünde görünür — ikon butonlar + hamburger
     birlikte kümede kalır, menü açıkken hiçbiri overlay'in altında kaybolmaz */
  .nav__mobile-actions { position: relative; z-index: 300; }
}

/* ── 8b. Duyuru şeridi — yüzen "liquid glass" hap, header genişliğinde ── */
.announce-bar {
  position: fixed;
  top: calc(var(--nav-h, 88px) + 10px);
  left: 50%;
  transform: translate(-50%, 0) scale(1);
  width: var(--nav-w, min(92vw, 760px));
  z-index: 90;
  height: 38px;
  border-radius: 999px;
  overflow: hidden;
  color: var(--announce-text, #ffffff);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.18) 13%, rgba(255, 255, 255, 0) 26%),
    linear-gradient(180deg, rgba(var(--announce-rgb, 110, 140, 230), 0.42) 0%, rgba(var(--announce-rgb, 110, 140, 230), 0.68) 100%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.55),
    inset 0 -6px 14px rgba(var(--announce-rgb, 110, 140, 230), 0.3),
    0 18px 40px -8px rgba(var(--announce-rgb, 110, 140, 230), 0.45);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  pointer-events: none;
  opacity: 1;
  transition: top 0.25s var(--ease), width 0.25s var(--ease), opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.announce-bar.is-hidden {
  opacity: 0;
  transform: translate(-50%, -14px) scale(0.94);
}
.announce-bar__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  padding-inline: clamp(14px, 3vw, 22px);
  display: flex;
  align-items: center;
  gap: 12px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.28);
}
.announce-bar__dot {
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  animation: announce-pulse 2.2s ease-out infinite;
}
@keyframes announce-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55); }
  70%  { box-shadow: 0 0 0 7px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
.announce-bar__viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.announce-bar--marquee .announce-bar__viewport {
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 20px, #000 calc(100% - 20px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 20px, #000 calc(100% - 20px), transparent 100%);
}
.announce-bar__text,
.announce-bar__track {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.announce-bar--fixed .announce-bar__text {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.announce-bar__track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  width: max-content;
  animation: announce-scroll var(--announce-speed, 22s) linear infinite;
}
.announce-bar__seg { flex: none; }
@keyframes announce-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-100% - 56px)); }
}

.announce-bar--font-mono .announce-bar__inner { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.announce-bar--font-display .announce-bar__inner { font-family: var(--font-display); }

@media (prefers-reduced-motion: reduce) {
  .announce-bar__track {
    animation: none;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .announce-bar__seg:nth-child(2) { display: none; }
  .announce-bar__dot { animation: none; }
}
@media (max-width: 600px) {
  .announce-bar { height: 34px; }
  .announce-bar__inner { gap: 9px; padding-inline: 14px; }
  .announce-bar__text, .announce-bar__track { font-size: 0.72rem; }
}

/* ── 9. Hero merkez içerik ───────────────────────────────── */
.hero__center {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* "safe center": normalde dikey ortalar, ama içerik sığmazsa üstten
     (header'ın altından) başlar — başlık asla nav'ın arkasına kaymaz */
  justify-content: safe center;
  text-align: center;
  padding-inline: clamp(20px, 4vw, 40px);
  /* Her ekranda başlık header'ın biraz altından başlasın diye sabit üst boşluk */
  padding-top: calc(var(--nav-h) + clamp(28px, 6vh, 72px));
  padding-bottom: clamp(24px, 5vh, 56px);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  /* Hem genişliğe hem YÜKSEKLİĞE göre ölçekle: kısa ekranlarda da
     3 satır + alt içerik (Aşağı Kaydırın butonu) sığsın diye vh sınırı */
  font-size: clamp(2.4rem, min(11vw, 11.5vh), 150px);
  line-height: 1.0;
  letter-spacing: -0.03em;
}

/* Hero giriş animasyonu — loading screen bittikten sonra
   body'ye .hero-ready eklenince tetiklenir */
.hero__anim {
  opacity: 0;
  transform: translateY(28px);
}
@media (prefers-reduced-motion: no-preference) {
  .hero__anim {
    transition: opacity 1s var(--ease), transform 1s var(--ease);
    transition-delay: var(--anim-delay, 0s);
  }
}
.hero-ready .hero__anim {
  opacity: 1;
  transform: none;
}
/* Reduced-motion: hepsini hemen göster */
@media (prefers-reduced-motion: reduce) {
  .hero__anim { opacity: 1; transform: none; }
}

.hero__sub {
  margin-top: 14px;
  max-width: 34rem;
  font-size: 1.125rem;
  line-height: 2rem;
  color: var(--hero-sub);
  opacity: 0.8;
}

/* Kısa ekranlar (alçak laptop, yatay tablet): hero içeriğini sıkıştır ki
   "Sayfayı Aşağı Kaydırın" butonu her boyutta görünür kalsın */
@media (max-height: 760px) {
  .hero__title { font-size: clamp(2.2rem, min(9.5vw, 10.5vh), 116px); }
  .hero__role { margin-top: 14px; }
  .hero__sub { margin-top: 10px; font-size: 1rem; line-height: 1.55; }
  .hero__actions { margin-top: 18px; }
}
@media (max-height: 680px) {
  /* Çok kısa ekranlarda açıklama satırını gizle — başlık + butonlar öncelikli */
  .hero__sub { display: none; }
  .hero__title { font-size: clamp(2rem, min(8.5vw, 10vh), 96px); }
}

/* ── 10. Logo marquee (hero altı) ────────────────────────── */
.brands {
  position: relative;
  z-index: 10;
  padding-bottom: 40px;
}
.brands__inner {
  max-width: 1024px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  gap: 48px;
}
.brands__caption {
  flex: none;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--fg-50);
}
.brands__marquee {
  flex: 1;
  overflow: hidden;
  min-width: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.brands__track {
  display: flex;
  width: max-content;
}
@media (prefers-reduced-motion: no-preference) {
  .brands__track { animation: marquee 20s linear infinite; }
}
@keyframes marquee {
  from { transform: translateX(0%); }
  to { transform: translateX(-50%); }
}
.brands__list {
  display: flex;
  align-items: center;
  gap: 64px;
  padding-right: 64px;
  flex: none;
}
.brands__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  white-space: nowrap;
}
.brands__chip {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  flex: none;
}

@media (max-width: 760px) {
  .brands__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .brands__caption br { display: none; }
}

/* ── 11. İstatistik ──────────────────────────────────────── */
#istatistik {
  border-block: 1px solid var(--fg-12);
  background: rgba(255, 255, 255, 0.015);
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats__item {
  padding: clamp(20px, 3.2vh, 38px) clamp(12px, 2vw, 28px);
  border-left: 1px solid var(--fg-12);
}
.stats__item:first-child { border-left: 0; }
.stats__num-wrap {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stats__suffix {
  background-image: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stats__label {
  margin-top: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fg-50);
}

@media (max-width: 760px) {
  .stats { grid-template-columns: repeat(4, 1fr); }   /* mobilde tek şerit */
  .stats__item { padding: 16px 5px; }
  .stats__num-wrap { font-size: clamp(1.3rem, 5.4vw, 2rem); }
  .stats__label { font-size: 0.56rem; letter-spacing: 0.04em; margin-top: 5px; }
}

/* ── 12. Hizmetler — yapışkan cam deste ──────────────────── */
#hizmetler { position: relative; }

.deck {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: clamp(64px, 10vh, 120px);
}

.svc {
  position: static;        /* yapışkan/üst üste binen deste efekti yok */
  display: block;
  text-decoration: none;
  background: none;
  border-radius: 0;
}
.svc__idx { display: none; }                 /* 01/02 numaralandırma kaldırıldı */
.svc__head { justify-content: flex-end; }    /* sadece CTA, sağda */

/* ── Hizmet bölümü stil seçenekleri (?style=1|2|3) ── */
/* Stil 1 — Editorial: çizgi ayraçlı, kutusuz düz */
.deck--style1 .svc { padding: clamp(34px, 4.5vw, 60px) 0; border-top: 1px solid var(--fg-12); }
.deck--style1 .svc:first-child { border-top: none; padding-top: 4px; }

/* Stil 2 — İnce kenarlıklı modern kart: üst aksan çizgisi + hover */
.deck--style2 { gap: 22px; }
.deck--style2 .svc { position: relative; padding: clamp(26px, 3.2vw, 44px); border: 1px solid var(--fg-12); border-radius: 18px; overflow: hidden; transition: border-color 0.25s, transform 0.25s; }
.deck--style2 .svc::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.deck--style2 .svc:hover { border-color: var(--fg-20); transform: translateY(-4px); }
.deck--style2 .svc:hover::after { transform: scaleX(1); }

/* Stil 3 — Soft degrade kart: hafif glow */
.deck--style3 { gap: 22px; }
.deck--style3 .svc { padding: clamp(26px, 3.2vw, 44px); border: 1px solid var(--fg-12); border-radius: 20px; background: linear-gradient(160deg, rgba(56, 189, 248, 0.05), rgba(255, 255, 255, 0.012)); box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25); transition: transform 0.25s, box-shadow 0.3s; }
.deck--style3 .svc:hover { transform: translateY(-5px); box-shadow: 0 26px 60px rgba(0, 0, 0, 0.4); }

/* Önizleme switcher (yalnızca localhost'ta görünür) */
.style-switch { position: fixed; left: 16px; bottom: 16px; z-index: 400; display: flex; align-items: center; gap: 8px; background: rgba(13, 17, 23, 0.92); border: 1px solid var(--fg-12); padding: 8px 12px; border-radius: 12px; font-size: 0.78rem; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.style-switch span { color: var(--fg-50); }
.style-switch a { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 7px; border: 1px solid var(--fg-12); color: var(--foreground); text-decoration: none; font-weight: 600; }
.style-switch a.on { background: var(--accent); color: #06121d; border-color: var(--accent); }
.svc.liquid-glass {
  background:
    linear-gradient(rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.025)),
    var(--background);
}
.svc:hover {
  background:
    linear-gradient(rgba(56, 189, 248, 0.08), rgba(99, 102, 241, 0.04)),
    var(--background);
}
.svc:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.svc--demo { position: relative; }
.svc__demo-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #06121d;
  background: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(56, 189, 248, 0.35);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.svc__demo-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #06121d;
  animation: announce-pulse 2.2s ease-out infinite;
}
.svc__demo-badge:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(56, 189, 248, 0.45); }

.svc__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}
.svc__idx {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1;
  background-image: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.svc__cta {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg-50);
  text-decoration: none;
  transition: color 0.2s;
}
a.svc__cta:hover { color: var(--foreground); }
.svc:hover .svc__cta { color: var(--foreground); }

.svc__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}
.svc__desc {
  margin-top: 14px;
  /* Kart genişliği zaten container ile sınırlı (iç genişlik ~1030px);
     ayrıca ch sınırı koymuyoruz ki açıklama kartın sağındaki boşluğu da
     kullansın, satır sayısı azalsın. */
  max-width: none;
  color: var(--hero-sub);
  opacity: 0.8;
  font-size: 1rem;
}
.svc__tags {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.svc__tags span {
  font-size: 0.74rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid var(--fg-12);
  border-radius: 999px;
  padding: 5px 12px;
  color: var(--fg-75);
  background: rgba(255, 255, 255, 0.03);
}
@media (max-width: 640px) {
  .svc__tags {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .svc__tags span {
    min-width: 0;
    text-align: center;
    padding-inline: 6px;
    overflow-wrap: break-word;
  }
}

/* Hizmet galerisi: 3 örnek görsel (stilize SVG mockup) */
.svc__gallery {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.shot {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--fg-12);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.25s, transform 0.25s var(--ease);
}
.svc:hover .shot { border-color: var(--fg-20); }
/* Tıklanabilir galeri görseli (QR menü canlı linkleri) */
.shot-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.shot-link:hover { transform: translateY(-3px); border-color: var(--fg-20); }
.shot svg { width: 100%; height: auto; display: block; }
.shot__img {
  width: 100%;
  height: auto;          /* HTML height attribute'unu ez — yoksa aspect-ratio yok sayılır */
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
/* Dikey ekran görüntüleri (telefon): üstten kırp — başlık görünsün */
.shot__img--tall { object-position: top; }
.shot__label {
  display: block;
  padding: 8px 12px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--fg-50);
  border-top: 1px solid var(--fg-12);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 640px) {
  .svc__gallery { gap: 10px; }
  .shot__label { font-size: 0.56rem; padding: 6px 8px; letter-spacing: 0.03em; }
}

@media (max-width: 860px) {
  .svc { --offset: calc(var(--nav-h) + 8px + (var(--i) - 1) * 8px); }
}
@media (max-height: 620px) {
  .svc { position: static; }
}

/* ════════════════════════════════════════════════════════════
   HİZMET TASARIMI VARYASYONLARI  —  data-deck="v1|v2|v3"
   classic (varsayılan) = yukarıdaki yapışkan kart tasarımı.
   "Eskiye dön" => classic. Yeni denemeler ?deck=v1|v2|v3 ile açılır.
   ════════════════════════════════════════════════════════════ */

/* Ortak sıfırlama: kartsız varyasyonlarda yapışkan kart + cam dokuyu kaldır */
.deck[data-deck^="v"] .svc {
  position: static;
  top: auto;
  border-radius: 0;
  padding: 0;
  background: none;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  overflow: visible;
  transition: none;
}
/* Cam dokunun gradyan kenarlık halkasını v1 ve v3'te gizle (v2 kendi halkasını kullanır) */
.deck[data-deck="v1"] .svc.liquid-glass::before,
.deck[data-deck="v3"] .svc.liquid-glass::before { display: none; }

/* ───────────────────────────────────────────────────────────
   V1 · EDİTÖRYEL SATIR  —  kartsız, ince çizgilerle ayrılmış,
   dev indeks numaralı, iki kolonlu editöryel düzen.
   ─────────────────────────────────────────────────────────── */
.deck[data-deck="v1"] {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: clamp(48px, 8vh, 96px);
}
.deck[data-deck="v1"] .svc {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  padding: clamp(36px, 5vw, 64px) 0;
  border-top: 1px solid var(--fg-12);
  position: relative;
}
.deck[data-deck="v1"] .svc:last-child { border-bottom: 1px solid var(--fg-12); }
/* Üstte ince ilerleyen vurgu çizgisi (hover'da soldan dolar) */
.deck[data-deck="v1"] .svc::after {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  height: 1px; width: 0;
  background: var(--grad);
  transition: width 0.6s var(--ease);
}
.deck[data-deck="v1"] .svc:hover::after { width: 100%; }
/* Sol kolon: dev indeks + başlık + açıklama + etiketler */
.deck[data-deck="v1"] .svc__head {
  margin-bottom: 0;
  align-items: center;
  gap: 18px;
}
.deck[data-deck="v1"] .svc__idx {
  font-size: clamp(3.4rem, 8vw, 6.5rem);
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1px var(--fg-20);
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  transition: -webkit-text-stroke 0.3s, color 0.3s;
}
.deck[data-deck="v1"] .svc:hover .svc__idx {
  -webkit-text-stroke: 0;
  background-image: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.deck[data-deck="v1"] .svc__cta {
  margin-left: auto;
  padding: 8px 16px;
  border: 1px solid var(--fg-20);
  border-radius: 999px;
}
.deck[data-deck="v1"] .svc__title {
  margin-top: 18px;
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
}
.deck[data-deck="v1"] .svc__desc { max-width: 46ch; }
/* Sağ kolon: galeri — ilk satıra hizalı dursun */
.deck[data-deck="v1"] .svc__gallery {
  margin-top: 0;
  grid-row: 1 / span 4;
  grid-column: 2;
  align-self: start;
}
@media (max-width: 860px) {
  .deck[data-deck="v1"] .svc {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: clamp(28px, 7vw, 44px) 0;
  }
  .deck[data-deck="v1"] .svc__gallery { grid-row: auto; grid-column: 1; }
}

/* ───────────────────────────────────────────────────────────
   V2 · BENTO TECH  —  responsive bento ızgara, animasyonlu
   gradyan çerçeve, köşe aksanları, teknolojik his.
   ─────────────────────────────────────────────────────────── */
.deck[data-deck="v2"] {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: clamp(48px, 8vh, 96px);
}
/* İlk hizmeti vurgulu/geniş yap (bento ritmi) */
.deck[data-deck="v2"] .svc:first-child { grid-column: 1 / -1; }
.deck[data-deck="v2"] .svc {
  position: relative;
  padding: clamp(22px, 2.6vw, 34px);
  border-radius: 22px;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(168,85,247,0.10), transparent 55%),
    rgba(255,255,255,0.022);
  border: 1px solid var(--fg-12);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
/* Hover'da hareketli gradyan kenarlık parıltısı (cam ::before'u devral) */
.deck[data-deck="v2"] .svc.liquid-glass::before {
  display: block;
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from var(--a, 0deg), #6366f1, #a855f7, #fcd34d, #6366f1);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.deck[data-deck="v2"] .svc:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 24px 60px -28px rgba(124,58,237,0.55);
}
.deck[data-deck="v2"] .svc:hover::before { opacity: 1; animation: bento-spin 4s linear infinite; }
@keyframes bento-spin { to { --a: 360deg; } }
@property --a { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
.deck[data-deck="v2"] .svc__idx {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--fg-50);
  background: none;
  -webkit-text-fill-color: currentColor;
}
.deck[data-deck="v2"] .svc__idx::before { content: "//"; margin-right: 6px; opacity: 0.5; }
.deck[data-deck="v2"] .svc__cta {
  padding: 6px 14px;
  border: 1px solid var(--fg-20);
  border-radius: 999px;
  font-size: 0.74rem;
}
.deck[data-deck="v2"] .svc__title { font-size: clamp(1.5rem, 2.4vw, 2.1rem); }
.deck[data-deck="v2"] .svc__desc { font-size: 0.95rem; }
.deck[data-deck="v2"] .svc__gallery { gap: 10px; }
@media (max-width: 720px) {
  .deck[data-deck="v2"] { grid-template-columns: 1fr; }
  .deck[data-deck="v2"] .svc:first-child { grid-column: auto; }
}

/* ───────────────────────────────────────────────────────────
   V3 · TERMINAL / BLUEPRINT  —  konsol penceresi estetiği,
   monospace, pencere noktaları, blueprint ızgara, neon aksan.
   ─────────────────────────────────────────────────────────── */
.deck[data-deck="v3"] {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-bottom: clamp(48px, 8vh, 96px);
}
.deck[data-deck="v3"] .svc {
  border-radius: 14px;
  border: 1px solid hsl(170 60% 50% / 0.22);
  padding: 0;
  background:
    linear-gradient(hsl(190 60% 6% / 0.55), hsl(255 60% 5% / 0.55)),
    repeating-linear-gradient(0deg, transparent 0 23px, hsl(170 60% 50% / 0.05) 23px 24px),
    repeating-linear-gradient(90deg, transparent 0 23px, hsl(170 60% 50% / 0.05) 23px 24px);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.deck[data-deck="v3"] .svc:hover {
  border-color: hsl(170 70% 55% / 0.6);
  box-shadow: 0 0 0 1px hsl(170 70% 55% / 0.25), 0 22px 50px -30px hsl(170 70% 50% / 0.5);
}
/* Pencere başlık çubuğu — noktalar + dosya yolu */
.deck[data-deck="v3"] .svc__head {
  margin-bottom: 0;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-bottom: 1px solid hsl(170 60% 50% / 0.18);
  background: hsl(190 60% 8% / 0.5);
  position: relative;
}
.deck[data-deck="v3"] .svc__head::before {
  content: "";
  flex: none;
  width: 42px; height: 10px;
  background:
    radial-gradient(circle 4px at 5px 5px, #ff5f56 60%, transparent 62%),
    radial-gradient(circle 4px at 21px 5px, #ffbd2e 60%, transparent 62%),
    radial-gradient(circle 4px at 37px 5px, #27c93f 60%, transparent 62%);
}
.deck[data-deck="v3"] .svc__idx {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: hsl(170 60% 60%);
  background: none;
  -webkit-text-fill-color: currentColor;
}
.deck[data-deck="v3"] .svc__idx::before { content: "asmisoft@hatay:~/"; color: var(--fg-50); }
.deck[data-deck="v3"] .svc__cta {
  margin-left: auto;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: hsl(170 60% 60%);
}
.deck[data-deck="v3"] .svc:hover .svc__cta { color: hsl(170 80% 70%); }
/* Pencere gövdesi: başlık/açıklama/etiket/galeriye padding ver */
.deck[data-deck="v3"] .svc__title,
.deck[data-deck="v3"] .svc__desc,
.deck[data-deck="v3"] .svc__tags { padding-inline: clamp(18px, 2.4vw, 30px); }
.deck[data-deck="v3"] .svc__title {
  margin-top: clamp(20px, 2.4vw, 30px);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
}
.deck[data-deck="v3"] .svc__title::before {
  content: "> ";
  color: hsl(170 70% 55%);
}
.deck[data-deck="v3"] .svc__tags span {
  font-family: var(--font-body);
  border-color: hsl(170 60% 50% / 0.3);
  background: hsl(170 60% 50% / 0.06);
  color: hsl(170 40% 80%);
  border-radius: 6px;
  text-transform: none;
}
.deck[data-deck="v3"] .svc__tags span::before { content: "#"; opacity: 0.6; margin-right: 2px; }
.deck[data-deck="v3"] .svc__gallery {
  padding: clamp(18px, 2.4vw, 30px);
  margin-top: clamp(20px, 2.4vw, 28px);
  border-top: 1px solid hsl(170 60% 50% / 0.14);
}
.deck[data-deck="v3"] .shot { border-color: hsl(170 60% 50% / 0.25); }
.deck[data-deck="v3"] .svc:hover .shot { border-color: hsl(170 60% 50% / 0.45); }

/* ── Tasarım önizleme çubuğu (deck-switch) ───────────────────
   Geçici: varyasyon seçimi içindir, karar verince kaldırılabilir. */
.deck-switch {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border-radius: 999px;
  background: hsl(260 60% 6% / 0.82);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--fg-12);
  box-shadow: 0 12px 40px -16px rgba(0,0,0,0.7);
  font-size: 0.74rem;
  max-width: calc(100vw - 24px);
  flex-wrap: wrap;
  justify-content: center;
}
.deck-switch__label { color: var(--fg-50); padding-left: 6px; }
.deck-switch__btn {
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--fg-75);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.deck-switch__btn:hover { background: rgba(255,255,255,0.06); color: var(--foreground); }
.deck-switch__btn.is-active {
  background: var(--grad-soft);
  color: #fff;
}
@media (max-width: 560px) {
  .deck-switch__label { display: none; }
  .deck-switch { bottom: 12px; gap: 4px; }
}

/* ── 13. Referans bantları ───────────────────────────────── */
#referanslar {
  padding-bottom: clamp(64px, 10vh, 120px);
  overflow: clip; /* eğik bant taşmasın */
}

.tape-group {
  display: flex;
  flex-direction: column;
  transform: rotate(-1.2deg) scale(1.02);
}

.tape {
  overflow: hidden;
  padding-block: 18px;
}
.tape--glass {
  background: rgba(255, 255, 255, 0.03);
  border-block: 1px solid var(--fg-12);
  color: var(--foreground);
}
.tape--grad {
  background: var(--grad);
  color: #030712;
}

.tape__track { display: flex; width: max-content; }
@media (prefers-reduced-motion: no-preference) {
  .tape__track { animation: marquee 32s linear infinite; }
  .tape__track--reverse { animation-direction: reverse; }
  .tape:hover .tape__track { animation-play-state: paused; }
}

.tape__list {
  display: flex;
  align-items: center;
  flex: none;
}
.tape__list li {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  letter-spacing: -0.01em;
  padding-inline: 24px;
  white-space: nowrap;
}
.tape--glass .tape__list li:nth-child(even) {
  background-image: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tape--grad .tape__list li:nth-child(even) { opacity: 0.55; }

/* ── 14. Hakkımızda ──────────────────────────────────────── */
#hakkimizda { padding-bottom: clamp(64px, 10vh, 120px); }

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.about__copy p {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.8;
  color: var(--hero-sub);
  opacity: 0.85;
  margin-bottom: 32px;
}

.about__list { display: flex; flex-direction: column; gap: 16px; }
.about__list li {
  display: flex;
  gap: 20px;
  align-items: baseline;
  border-radius: 18px;
  padding: 22px 24px;
}
.about__idx {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  flex: none;
  background-image: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about__list h3 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
}
.about__list p { color: var(--hero-sub); opacity: 0.75; font-size: 0.98rem; }

@media (max-width: 860px) {
  .about { grid-template-columns: 1fr; }
}

/* ── 15. İletişim ────────────────────────────────────────── */
#iletisim { padding-bottom: clamp(72px, 12vh, 140px); }

.contact {
  max-width: 880px;
  margin-inline: auto;
  margin-top: clamp(24px, 4vh, 48px);
}
.contact__row {
  display: flex;
  align-items: baseline;
  gap: clamp(16px, 3vw, 40px);
  padding-block: clamp(20px, 3.5vh, 32px);
  border-top: 1px solid var(--fg-12);
}
.contact__row:last-of-type { border-bottom: 1px solid var(--fg-12); }

.contact__label {
  flex: none;
  width: clamp(130px, 22vw, 220px);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fg-50);
}
.contact__value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.15rem, 2.8vw, 1.9rem);
  letter-spacing: -0.01em;
  text-decoration: none;
  line-height: 1.25;
  transition: color 0.2s;
}
a.contact__value:hover {
  background-image: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.contact__value--plain {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: var(--hero-sub);
  opacity: 0.8;
}
.contact__arrow {
  margin-left: auto;
  font-size: 1.3rem;
  background-image: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact__cta {
  text-align: center;
  margin-top: clamp(36px, 6vh, 64px);
}

@media (max-width: 640px) {
  .contact__row { flex-direction: column; gap: 6px; }
  .contact__label { width: auto; }
  .contact__arrow { display: none; }
}

/* ── 16. Footer ──────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--fg-12);
  overflow: hidden;
}

.footer__cols {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(28px, 4vw, 48px);
  padding-block: clamp(32px, 5vh, 56px);
  border-top: 1px solid var(--fg-12);
  margin-top: clamp(24px, 4vh, 48px);
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer__col-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-75);
  margin-bottom: 10px;
}
.footer__col a {
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--fg-50);
  padding-block: 5px;
  transition: color 0.2s;
}
.footer__col a:hover { color: #fff; }

.footer__col--brand { gap: 14px; }
.footer__brand-link { display: inline-flex; }
.footer__brand-img { height: 36px; width: auto; display: block; }
.footer__tagline { font-size: 0.85rem; line-height: 1.6; color: var(--fg-50); max-width: 30ch; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--fg-12);
  color: var(--fg-75);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer__social a:hover { color: #fff; border-color: var(--fg-20); background: rgba(255, 255, 255, 0.05); }
.footer__social svg { width: 16px; height: 16px; }

@media (max-width: 760px) {
  /* 2x2: Asmisoft logosu | Hizmetler  ─  Kurumsal | İletişim */
  .footer__cols { grid-template-columns: 1fr 1fr; row-gap: 36px; }
}

.footer__base {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding-block: 20px;
  border-top: 1px solid var(--fg-12);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--fg-50);
}

/* ── 17. WhatsApp balonu ─────────────────────────────────── */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 150;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--wa);
  color: #fff;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.wa-float:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.45);
}
.wa-float:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ── 18b. Yükleme ekranı ──────────────────────────────────── */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}
.loading-screen.is-done {
  opacity: 0;
  pointer-events: none;
}
/* merkez logo + kelime grubu */
.loading-screen__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.loading-screen__logo-center {
  position: relative;
  width: clamp(72px, 11vw, 110px);
  height: clamp(72px, 11vw, 110px);
}
.loading-screen__lc-base {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.1;
  filter: grayscale(1) brightness(3);
}
.loading-screen__lc-fill {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(100% 0 0 0); /* başta tamamen gizli — alttan dolar */
}
.loading-screen__lc-fill img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.loading-screen__word {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 500;
  font-style: italic;
  color: var(--foreground);
  opacity: 0.75;
  text-align: center;
  min-width: 260px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.loading-screen__word.word-exit {
  opacity: 0;
  transform: translateY(-10px);
}
.loading-screen__word.word-enter {
  opacity: 0;
  transform: translateY(10px);
}
.loading-screen__counter {
  position: absolute;
  bottom: clamp(72px, 10vh, 96px);
  right: clamp(20px, 4vw, 36px);
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 9rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--foreground);
  font-variant-numeric: tabular-nums;
}

/* ─ Alt progress bar ────────────────────────────────────────── */
.loading-screen__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}
.loading-screen__fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: var(--grad);
  transition: width 0.06s linear;
}

/* ── 18c. Hero scroll butonu ──────────────────────────────── */
.hero__scroll-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  margin-top: clamp(20px, 4vh, 56px);
  padding: 0;
  color: var(--fg-40, hsl(40 6% 95% / 0.4));
  transition: color 0.25s var(--ease);
}
.hero__scroll-btn:hover { color: var(--fg-75); }

.hero__scroll-btn-label {
  font-size: 0.63rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--fg-50);
}

/* Üç aşağı ok — kademeli yanıp söner */
.hero__scroll-chevrons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}
.hero__scroll-chevron {
  width: 28px;
  height: 14px;
  display: block;
  opacity: 0;
  animation: chevron-pulse 1.8s ease-in-out infinite;
  animation-delay: calc(var(--ci) * 0.22s);
}
@keyframes chevron-pulse {
  0%        { opacity: 0;    transform: translateY(-4px); }
  40%, 60%  { opacity: 0.75; transform: translateY(0); }
  100%      { opacity: 0;    transform: translateY(4px); }
}
.hero__scroll-btn:hover .hero__scroll-chevron {
  animation-play-state: paused;
  opacity: 0.9;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll-chevron { animation: none; opacity: 0.4; }
}

/* Navbar koyu CTA butonu */
.btn--nav-dark {
  background: var(--foreground) !important;
  color: var(--background) !important;
  font-weight: 600;
  box-shadow: none;
}
.btn--nav-dark::before { display: none; }
.btn--nav-dark:hover {
  background: var(--fg-75) !important;
  transform: translateY(-1px);
}

/* ── 18c. Hero ek içerik ────────────────────────────────────── */
.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--fg-50);
  margin-bottom: 20px;
}

.hero__role {
  margin-top: 22px;
  font-size: clamp(1.05rem, 2.8vw, 1.45rem);
  color: var(--fg-50);
  letter-spacing: 0.01em;
}
.hero__role-word {
  font-style: italic;
  font-weight: 700;
  display: inline-block;
  background-image: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.15em;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.hero__role-word.role-exit {
  opacity: 0;
  transform: translateY(-8px);
}
.hero__role-word.role-enter {
  opacity: 0;
  transform: translateY(8px);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── 18d. Scroll göstergesi ────────────────────────────────── */
.hero__scroll-indicator {
  position: absolute;
  bottom: clamp(100px, 14vh, 140px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll-label {
  font-size: 0.65rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--fg-50);
}
.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: var(--fg-20);
  position: relative;
  overflow: hidden;
}
.hero__scroll-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--grad);
  animation: scroll-dot 1.6s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%   { transform: translateY(-100%); }
  50%  { transform: translateY(150%); }
  100% { transform: translateY(250%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll-dot { animation: none; }
}
@media (max-width: 860px) {
  .hero__scroll-indicator { display: none; }
  /* Mobil pill nav daha kısa — üst boşluğu biraz daralt ama standardı koru */
  .hero__center { padding-top: calc(var(--nav-h) + clamp(16px, 4vh, 40px)); }
}

/* ── 18. Scroll reveal sistemi (.js gerektirir) ──────────── */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
/* "wipe": soldan sağa maskeyle silinerek açılır (mask IO'yu etkilemez) */
.js [data-reveal="wipe"] {
  opacity: 1;
  transform: none;
  -webkit-mask-image: linear-gradient(90deg, #000 49.5%, transparent 50.5%);
  mask-image: linear-gradient(90deg, #000 49.5%, transparent 50.5%);
  -webkit-mask-size: 205% 100%;
  mask-size: 205% 100%;
  -webkit-mask-position: 100% 0;
  mask-position: 100% 0;
  transition: -webkit-mask-position 0.9s var(--ease), mask-position 0.9s var(--ease);
}
.js [data-reveal].revealed {
  opacity: 1;
  transform: none;
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
}
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] {
    opacity: 1;
    transform: none;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* ════════════════════════════════════════════════════════════
   Hizmetlerimiz MEGA MENÜ (masaüstü panel + mobil akordeon)
   Masaüstü ve mobil kuralları AYRI media bloklarında — sızıntı yok.
   ════════════════════════════════════════════════════════════ */
/* pill'in liquid-glass overflow:hidden'ı mega paneli kırpmasın */
.nav__pill { overflow: visible; }
.nav__dd { position: relative; }
.nav__dd-trigger { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.nav__dd-caret {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s var(--ease);
}
/* Mega panel — paylaşılan görünüm */
.nav__mega { display: flex; flex-direction: column; }
.nav__mega-grid { display: grid; }
.nav__mega-card { display: flex; align-items: center; gap: 12px; text-decoration: none; border-radius: 12px; }
.nav__mega-icon {
  flex: none; width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--fg-12); color: var(--accent-soft);
}
.nav__mega-icon svg { width: 19px; height: 19px; }
.nav__mega-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.nav__mega-title { font-weight: 600; color: #fff; }
.nav__mega-desc { font-size: 0.78rem; line-height: 1.4; color: var(--fg-50); }

/* ===== MASAÜSTÜ (≥861px): açılır mega panel ===== */
@media (min-width: 861px) {
  .nav__dd { display: inline-flex; align-items: center; margin-left: 10px; } /* logodan uzak */
  .nav__mega {
    position: absolute; top: 100%; left: 0;
    transform: translateY(8px);
    margin-top: 16px;
    width: min(580px, 90vw);
    padding: 14px;
    border-radius: 20px;
    background: rgba(18, 24, 33, 0.97);
    border: 1px solid var(--fg-12);
    -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
    z-index: 130;
  }
  .nav__mega::before { content: ""; position: absolute; top: -20px; left: 0; right: 0; height: 20px; } /* hover köprüsü */
  .nav__dd:hover .nav__mega,
  .nav__dd--open .nav__mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  .nav__dd:hover .nav__dd-caret,
  .nav__dd--open .nav__dd-caret { transform: rotate(180deg); }
  .nav__mega-grid { grid-template-columns: 1fr 1fr; gap: 4px; }
  .nav__mega-card { padding: 11px; transition: background 0.18s; }
  .nav__mega-card:hover { background: rgba(255, 255, 255, 0.05); }
  .nav__mega-title { font-size: 0.92rem; }
  .nav__mega-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 8px; padding: 14px 11px 6px; border-top: 1px solid var(--fg-12); }
  .nav__mega-foot-text { font-size: 0.8rem; color: var(--fg-50); }
  .nav__mega-foot-cta { font-size: 0.85rem; font-weight: 600; color: #fff; white-space: nowrap; text-decoration: none; padding: 8px 16px; border-radius: 999px; background: var(--grad); }
}

/* ===== MOBİL (≤860px): tam ekran menü içinde akordeon ===== */
@media (max-width: 860px) {
  .nav__links { overflow-y: auto; }
  .nav__dd { display: block; width: 100%; }
  .nav__dd-trigger { width: 100%; }
  .nav__dd-caret { border-top-width: 7px; border-left-width: 6px; border-right-width: 6px; margin-left: 8px; }
  .nav__dd--open .nav__dd-caret { transform: rotate(180deg); }
  .nav__mega { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); padding-left: 6px; }
  .nav__dd--open .nav__mega { max-height: 1400px; }            /* tam açılır */
  .nav__mega-grid { grid-template-columns: 1fr; gap: 4px; }
  .nav__mega-card { padding: 9px 0; }
  .nav__mega-icon { width: 34px; height: 34px; }
  .nav__mega-title { font-family: var(--font-display); font-size: clamp(1.035rem, 4.14vw, 1.35rem); }  /* mobilde %10 küçültüldü */
  .nav__mega-desc, .nav__mega-foot { display: none; }         /* mobilde sadeleştir */
}

/* ════════════════════════════════════════════════════════════
   Hizmet detay sayfası (hizmet.php)
   ════════════════════════════════════════════════════════════ */
.svc-page main { padding-top: clamp(96px, 14vh, 150px); padding-bottom: 80px; }
.crumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--fg-50); margin-bottom: 28px; }
.crumb a { color: var(--fg-75); text-decoration: none; }
.crumb a:hover { color: #fff; }
.crumb span[aria-hidden] { opacity: 0.4; }

/* Hero */
.svc-hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 5vw, 60px); align-items: center; margin-bottom: clamp(48px, 7vw, 90px); }
.svc-hero__num { font-family: var(--font-display); font-size: 0.82rem; letter-spacing: 0.12em; color: var(--fg-50); text-transform: uppercase; }
.svc-hero__title { font-family: var(--font-display); font-size: clamp(2.3rem, 5.5vw, 4.2rem); line-height: 1.04; letter-spacing: -0.02em; margin: 10px 0 16px; }
.svc-hero__tagline { font-size: clamp(1.1rem, 2.2vw, 1.4rem); color: #fff; font-weight: 500; margin-bottom: 18px; }
.svc-hero__intro { color: var(--hero-sub); margin-bottom: 14px; max-width: 60ch; }
.svc-hero__tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 24px; }
.svc-hero__tags span { font-size: 0.8rem; padding: 5px 12px; border: 1px solid var(--fg-12); border-radius: 999px; color: var(--fg-75); }
.svc-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.svc-hero__media { border-radius: 20px; overflow: hidden; border: 1px solid var(--fg-12); aspect-ratio: 4 / 3; }
.svc-hero__media img, .svc-hero__media video { width: 100%; height: 100%; object-fit: cover; }

/* Faydalar */
.svc-benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-bottom: clamp(48px, 7vw, 90px); }
.svc-benefit { padding: 24px; border-radius: 18px; }
.svc-benefit__check { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: rgba(56, 189, 248, 0.16); color: var(--accent-soft); margin-bottom: 14px; }
.svc-benefit__check svg { width: 20px; height: 20px; }
.svc-benefit h3 { font-size: 1.05rem; margin-bottom: 8px; }
.svc-benefit p { font-size: 0.9rem; color: var(--fg-75); line-height: 1.55; }

/* Galeri + özellikler */
.svc-body { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(20px, 3vw, 32px); align-items: start; margin-bottom: clamp(48px, 7vw, 90px); }
.svc-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.svc-features { padding: 28px; border-radius: 18px; align-self: start; position: sticky; top: 100px; }
.svc-features h2 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 16px; }
.svc-features ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.svc-features li { position: relative; padding-left: 26px; font-size: 0.92rem; color: var(--fg-75); line-height: 1.5; }
.svc-features li::before { content: ""; position: absolute; left: 0; top: 7px; width: 10px; height: 10px; border-radius: 3px; background: var(--grad); }

/* Kapanış CTA */
.svc-cta-band { text-align: center; padding: clamp(36px, 5vw, 60px); border-radius: 24px; background: linear-gradient(135deg, #1b2735, #10161f); border: 1px solid var(--fg-12); margin-bottom: clamp(40px, 6vw, 72px); }
.svc-cta-band h2 { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2.1rem); line-height: 1.2; max-width: 24ch; margin: 0 auto 22px; }

/* Diğer hizmetler */
.svc-more h2 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 16px; }
.svc-more__grid { display: flex; flex-wrap: wrap; gap: 10px; }
.svc-more__grid a { font-size: 0.9rem; padding: 10px 16px; border: 1px solid var(--fg-12); border-radius: 12px; color: var(--fg-75); text-decoration: none; transition: background 0.18s, color 0.18s; }
.svc-more__grid a:hover { background: rgba(255, 255, 255, 0.05); color: #fff; }

@media (max-width: 860px) {
  .svc-hero { grid-template-columns: 1fr; }
  .svc-hero__media { order: -1; aspect-ratio: 16 / 10; }
  .svc-body { grid-template-columns: 1fr; }
  .svc-features { position: static; }
}
@media (max-width: 520px) {
  .svc-gallery { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   Hizmetlerimiz — genel bakış sayfası (hizmetlerimiz.php)
   ════════════════════════════════════════════════════════════ */
.svcmz-hero { max-width: 62ch; margin-bottom: clamp(36px, 5vw, 56px); }
.svcmz-hero__title { font-family: var(--font-display); font-size: clamp(2.1rem, 4.6vw, 3.4rem); line-height: 1.06; letter-spacing: -0.02em; margin: 10px 0 16px; }
.svcmz-hero__sub { font-size: clamp(0.98rem, 1.4vw, 1.12rem); color: var(--hero-sub); line-height: 1.6; }

.svcmz-province { max-width: 72ch; margin-bottom: clamp(28px, 4vw, 40px); padding-bottom: clamp(28px, 4vw, 40px); border-bottom: 1px solid var(--fg-12); }
.svcmz-province__title { font-family: var(--font-display); font-size: clamp(1.7rem, 3.6vw, 2.6rem); line-height: 1.18; letter-spacing: -0.02em; margin: 10px 0 16px; }
.svcmz-province__sub { font-size: clamp(0.96rem, 1.3vw, 1.05rem); color: var(--hero-sub); line-height: 1.65; }
.svcmz-province__districts { margin-top: 14px; font-size: 0.84rem; color: var(--fg-50); line-height: 1.6; }
.svcmz-province__cta { margin-top: 22px; }

.svcmz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.2vw, 26px);
  margin-bottom: clamp(48px, 7vw, 90px);
}
.svcmz-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--fg-12);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.005));
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.svcmz-card:hover { transform: translateY(-4px); border-color: var(--fg-20); }
.svcmz-card__media { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; background: #0a0d13; }
.svcmz-card__media img,
.svcmz-card__media video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.svcmz-card:hover .svcmz-card__media img,
.svcmz-card:hover .svcmz-card__media video { transform: scale(1.06); }
.svcmz-card__law {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(9, 13, 20, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  backdrop-filter: blur(6px);
}
.svcmz-card__body { padding: clamp(18px, 2.2vw, 26px); display: flex; flex-direction: column; gap: 10px; flex: 1; }
.svcmz-card__icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.12);
  color: var(--accent-soft);
}
.svcmz-card__icon svg { width: 20px; height: 20px; }
.svcmz-card__title { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: -0.01em; }
.svcmz-card__desc { font-size: 0.9rem; color: var(--fg-75); line-height: 1.55; }
.svcmz-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.svcmz-card__tags span { font-size: 0.72rem; padding: 4px 10px; border: 1px solid var(--fg-12); border-radius: 999px; color: var(--fg-50); }

.svcmz-card__toggle { margin-top: auto; padding-top: 6px; }
.svcmz-card__toggle summary {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--accent);
  list-style: none;
}
.svcmz-card__toggle summary::-webkit-details-marker { display: none; }
.svcmz-card__toggle-ic {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid currentColor;
  position: relative;
  flex: none;
}
.svcmz-card__toggle-ic::before,
.svcmz-card__toggle-ic::after {
  content: "";
  position: absolute;
  background: currentColor;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.svcmz-card__toggle-ic::before { width: 7px; height: 1.4px; }
.svcmz-card__toggle-ic::after { width: 1.4px; height: 7px; transition: transform 0.2s var(--ease); }
.svcmz-card__toggle[open] .svcmz-card__toggle-ic::after { transform: translate(-50%, -50%) scaleY(0); }
.svcmz-card__toggle p { margin-top: 10px; font-size: 0.86rem; color: var(--fg-75); line-height: 1.55; }
.svcmz-card__hl { font-size: 0.82rem; font-weight: 600; color: var(--accent-soft); }
.svcmz-card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; font-size: 0.84rem; font-weight: 600; color: #fff; text-decoration: none; border-bottom: 1.5px solid var(--fg-20); padding-bottom: 2px; transition: border-color 0.2s; }
.svcmz-card__link:hover { border-color: #fff; }

.svcmz-regions { margin-bottom: clamp(32px, 5vw, 56px); }
.svcmz-regions__title { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 14px; color: var(--fg-75); }
.svcmz-regions__links { display: flex; flex-wrap: wrap; gap: 10px; }
.svcmz-regions__links a { font-size: 0.86rem; padding: 9px 16px; border: 1px solid var(--fg-12); border-radius: 999px; color: var(--fg-75); text-decoration: none; transition: background 0.18s, color 0.18s, border-color 0.18s; }
.svcmz-regions__links a:hover { background: rgba(255, 255, 255, 0.05); color: #fff; border-color: var(--fg-20); }

.svcmz-cta { text-align: center; padding: clamp(36px, 5vw, 60px); border-radius: 24px; background: linear-gradient(135deg, #1b2735, #10161f); border: 1px solid var(--fg-12); margin-bottom: clamp(40px, 6vw, 72px); }
.svcmz-cta h2 { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2.1rem); line-height: 1.2; max-width: 24ch; margin: 0 auto 22px; }
.svcmz-cta__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

@media (max-width: 1000px) {
  .svcmz-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .svcmz-grid { grid-template-columns: 1fr; }
}

/* ── Eşit ebatlı, modern, belirgin CTA butonları (Teklif Al + WhatsApp) ── */
.svc-cta-band__btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 54px; padding: 0 28px; min-width: 210px;
  border-radius: 14px; font-size: 1rem; font-weight: 600; letter-spacing: -0.01em;
  text-decoration: none; white-space: nowrap; cursor: pointer; border: none;
  transition: transform 0.18s var(--ease), box-shadow 0.25s var(--ease);
}
.cta-btn svg { width: 20px; height: 20px; flex: none; }
.cta-btn:hover { transform: translateY(-2px); }
.cta-btn--primary { background: linear-gradient(135deg, #38bdf8, #0ea5e9); color: #06121d; box-shadow: 0 10px 30px rgba(56, 189, 248, 0.32); }
.cta-btn--primary:hover { box-shadow: 0 14px 38px rgba(56, 189, 248, 0.48); }
.cta-btn--whatsapp { background: #25d366; color: #06281a; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.32); }
.cta-btn--whatsapp:hover { box-shadow: 0 14px 38px rgba(37, 211, 102, 0.5); }
@media (max-width: 520px) {
  .cta-btn { flex: 1 1 100%; min-width: 0; }
}

/* ════════════════════════════════════════════════════════════
   Teklif formu pop-up (modal)
   ════════════════════════════════════════════════════════════ */
.qm { position: fixed; inset: 0; z-index: 500; display: none; }
.qm.qm--open { display: block; }
.qm__overlay { position: absolute; inset: 0; background: rgba(5, 2, 14, 0.72); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); animation: qmFade 0.25s ease; }
.qm__dialog {
  position: relative; z-index: 1;
  width: min(520px, 92vw); max-height: 90vh; overflow-y: auto;
  margin: max(4vh, 24px) auto;
  background: #121821; border: 1px solid var(--fg-12);
  border-radius: 22px; padding: clamp(24px, 4vw, 38px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  animation: qmPop 0.3s var(--ease);
}
@keyframes qmFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes qmPop { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }
.qm__close { position: absolute; top: 14px; right: 16px; width: 38px; height: 38px; border-radius: 999px; border: 1px solid var(--fg-12); background: rgba(255, 255, 255, 0.04); color: var(--foreground); font-size: 1.4rem; line-height: 1; cursor: pointer; transition: background 0.2s; }
.qm__close:hover { background: rgba(255, 255, 255, 0.1); }
.qm__title { font-family: var(--font-display); font-size: clamp(1.5rem, 3.5vw, 2rem); margin-bottom: 8px; }
.qm__sub { color: var(--fg-75); font-size: 0.92rem; margin-bottom: 22px; }
.qm__form { display: flex; flex-direction: column; gap: 14px; }
.qm__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.qm__field { display: flex; flex-direction: column; gap: 6px; font-size: 0.82rem; font-weight: 500; color: var(--fg-75); }
.qm__field input, .qm__field select, .qm__field textarea {
  width: 100%; padding: 12px 14px; border-radius: 11px;
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--fg-12);
  color: var(--foreground); font: inherit; font-size: 0.95rem; outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.qm__field textarea { resize: vertical; min-height: 70px; }
.qm__field input:focus, .qm__field select:focus, .qm__field textarea:focus { border-color: var(--accent); background: rgba(255, 255, 255, 0.05); }
.qm__field select { appearance: none; -webkit-appearance: none; cursor: pointer; background-color: #161c26; }
.qm__field select option { background: #161c26; color: #e6edf3; }
.qm__err { color: #f87171; font-size: 0.78rem; font-weight: 500; margin-top: 2px; }
.qm__field input.is-invalid, .qm__field input.is-invalid:focus { border-color: #f87171; background: rgba(248, 113, 113, 0.06); }
.qm__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.qm__submit { width: 100%; margin-top: 4px; background: #0b0e14; color: #fff; border: 1px solid var(--fg-20); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4); }
.qm__submit:hover { background: #161b24; border-color: var(--accent); }
.qm__submit:disabled { opacity: 0.6; pointer-events: none; }
.qm__status { font-size: 0.88rem; min-height: 1.2em; margin: 0; }
.qm__status--ok { color: #4ade80; }
.qm__status--err { color: #f87171; }
.qm__or { display: flex; align-items: center; gap: 12px; color: var(--fg-50); font-size: 0.78rem; margin: 4px 0; }
.qm__or::before, .qm__or::after { content: ""; height: 1px; flex: 1; background: var(--fg-12); }
.qm__wa { display: flex; align-items: center; justify-content: center; gap: 9px; height: 48px; border-radius: 12px; text-decoration: none; font-weight: 600; font-size: 0.95rem; color: #06281a; background: var(--wa); transition: filter 0.2s, transform 0.18s; }
.qm__wa svg { width: 20px; height: 20px; flex: none; }
.qm__wa:hover { filter: brightness(1.06); transform: translateY(-1px); }
@media (max-width: 480px) {
  .qm__row { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   AsmiQR tanıtım showcase (QR detay sayfası) — animasyonlu
   ════════════════════════════════════════════════════════════ */
.svc-hero__media--bare { border: none; background: none; overflow: visible; aspect-ratio: auto; display: grid; place-items: center; }

.aq-show { margin-bottom: clamp(48px, 7vw, 90px); }
.aq-show__head { text-align: center; max-width: 700px; margin: 0 auto; }
.aq-show__badge { display: inline-block; font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); border: 1px solid var(--fg-12); padding: 6px 14px; border-radius: 999px; margin-bottom: 16px; }
.aq-show__title { font-family: var(--font-display); font-size: clamp(1.6rem, 3.4vw, 2.4rem); line-height: 1.15; margin-bottom: 12px; }
.aq-show__sub { color: var(--hero-sub); margin-bottom: 22px; }
.aq-show__cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.cta-btn--ghost { background: transparent; color: var(--foreground); border: 1px solid var(--fg-20); }
.cta-btn--ghost:hover { border-color: var(--accent); color: #fff; }

.aq-mock { display: flex; flex-wrap: wrap; gap: clamp(24px, 4vw, 48px); align-items: center; justify-content: center; margin: clamp(36px, 5vw, 60px) 0; }
@keyframes aqFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.aq-float { animation: aqFloat 5s ease-in-out infinite; }
.aq-float--slow { animation-duration: 6.5s; }

.aq-phone { position: relative; width: 232px; max-width: 66vw; aspect-ratio: 232 / 470; background: #0b0e14; border: 8px solid #1c2530; border-radius: 36px; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5); }
.aq-phone__notch { position: absolute; top: 9px; left: 50%; transform: translateX(-50%); width: 70px; height: 7px; border-radius: 99px; background: #1c2530; z-index: 2; }
.aq-phone__scr { position: absolute; inset: 0; overflow: hidden; border-radius: 28px; }
.aq-phone__scr img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
/* telefon ekranında dönen demo videosu (QR menü mockup'ları) */
.aq-phone__vid { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center; background: #0b0e14; }
.aq-phone__tag, .aq-browser__tag { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); font-size: 0.72rem; font-weight: 600; background: rgba(0, 0, 0, 0.65); color: #fff; padding: 5px 12px; border-radius: 99px; white-space: nowrap; z-index: 3; }

.aq-browser { position: relative; width: 440px; max-width: 92vw; background: #0b0e14; border: 1px solid var(--fg-12); border-radius: 14px; overflow: hidden; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5); }
.aq-browser__bar { display: flex; gap: 6px; padding: 10px 13px; background: #131923; }
.aq-browser__bar i { width: 9px; height: 9px; border-radius: 99px; background: var(--fg-20); }
.aq-browser__scr img { width: 100%; display: block; }
.aq-browser__tag { bottom: 14px; }

.aq-feats { display: grid; grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); gap: 16px; margin-bottom: clamp(44px, 6vw, 76px); }
.aq-feat { display: flex; flex-direction: column; padding: 15px 18px; border-radius: 16px; }
.aq-feat h3 { font-size: 1rem; margin-bottom: 5px; }
.aq-feat p { font-size: 0.84rem; color: var(--fg-75); line-height: 1.4; margin-bottom: 11px; }
/* Alt görsel şerit (bekliyor/hazır · önce-sonra · kağıt→dijital · kcal) 4 kartta da
   aynı satırda dursun: kartın en altına it, hepsine AI şeridiyle aynı yüksekliği ver. */
.aq-feat > :last-child { margin-top: auto; }
.aq-feat > .aq-flow,
.aq-feat > .aq-up,
.aq-feat > .aq-tags { min-height: 38px; align-items: center; }

.aq-flow { display: flex; gap: 6px; }
.aq-flow span { flex: 1; text-align: center; font-size: 0.7rem; padding: 7px 4px; border-radius: 8px; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--fg-12); color: var(--fg-50); animation: aqFlow 3s infinite; }
.aq-flow span:nth-child(2) { animation-delay: 1s; }
.aq-flow span:nth-child(3) { animation-delay: 2s; }
@keyframes aqFlow { 0%, 60%, 100% { background: rgba(255, 255, 255, 0.04); color: var(--fg-50); border-color: var(--fg-12); } 12%, 48% { background: var(--accent); color: #06121d; border-color: var(--accent); } }

.aq-ai { position: relative; display: flex; height: 38px; border-radius: 10px; overflow: hidden; border: 1px solid var(--fg-12); }
.aq-ai__before, .aq-ai__after { flex: 1; display: grid; place-items: center; font-size: 0.74rem; font-weight: 600; }
.aq-ai__before { background: repeating-linear-gradient(45deg, #1a2230, #1a2230 6px, #141b26 6px, #141b26 12px); color: var(--fg-50); }
.aq-ai__after { background: linear-gradient(135deg, rgba(56, 189, 248, 0.28), rgba(56, 189, 248, 0.08)); color: #fff; }
.aq-ai__scan { position: absolute; top: 0; bottom: 0; left: 0; width: 3px; background: var(--accent); box-shadow: 0 0 16px 2px var(--accent); animation: aqScan 2.6s ease-in-out infinite; }
@keyframes aqScan { 0%, 100% { left: 0; } 50% { left: calc(100% - 3px); } }

.aq-up { display: flex; align-items: center; gap: 10px; font-size: 0.76rem; }
.aq-up__paper, .aq-up__digital { flex: 1; text-align: center; padding: 9px 4px; border-radius: 8px; border: 1px solid var(--fg-12); }
.aq-up__paper { color: var(--fg-50); background: rgba(255, 255, 255, 0.03); }
.aq-up__digital { color: #06121d; background: var(--accent); border-color: var(--accent); }
.aq-up__arrow { color: var(--accent); animation: aqArrow 1.6s ease-in-out infinite; }
@keyframes aqArrow { 0%, 100% { transform: translateX(0); opacity: 0.6; } 50% { transform: translateX(4px); opacity: 1; } }

.aq-pills { display: flex; gap: 6px; }
.aq-pills span { padding: 6px 12px; border-radius: 8px; font-size: 0.74rem; font-weight: 600; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--fg-12); }
.aq-pills span:last-child { color: var(--accent); }

.aq-incl { margin-top: 18px; padding: 28px; border-radius: 18px; }
.aq-incl h2 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 16px; }
.aq-incl ul { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0 28px; }
.aq-incl li { position: relative; padding: 11px 0 11px 24px; font-size: 0.9rem; color: var(--fg-75); border-bottom: 1px solid var(--fg-12); }
.aq-incl li::before { content: ""; position: absolute; left: 0; top: 16px; width: 9px; height: 9px; border-radius: 3px; background: var(--grad); }

@media (max-width: 600px) { .aq-browser { width: 100%; } }

/* Anasayfa QR kartı — telefon çerçeveli mini galeri (yeni AsmiQR menüsü) */
.svc__phones { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: start; margin-top: 4px; }
.aq-phone--sm { width: 100%; max-width: 160px; margin: 0 auto; border-width: 6px; border-radius: 26px; aspect-ratio: 160 / 326; text-decoration: none; }
.aq-phone--sm .aq-phone__notch { width: 46px; height: 5px; top: 6px; }
.aq-phone--sm .aq-phone__scr { border-radius: 20px; }
.aq-phone--sm .aq-phone__tag { font-size: 0.62rem; bottom: 8px; padding: 3px 9px; }
@media (max-width: 560px) {
  .svc__phones { gap: 8px; }
  .aq-phone--sm .aq-phone__tag { font-size: 0.55rem; padding: 2px 6px; }
  /* dar telefonda önce/sonra etiketleri de küçülsün, taşmasın */
  .aq-phone--sm .aq-ba__tag { top: 30px; font-size: 0.44rem; padding: 2px 5px; }
  .aq-phone--sm .aq-ba__tag--b { left: 4px; }
  .aq-phone--sm .aq-ba__tag--a { right: 4px; }
}

/* Anasayfa QR — 3 katmanlı özellik kartı (en sağ slot) */
.svc__phones { align-items: center; }
.aq-stack { display: flex; flex-direction: column; gap: 12px; padding: 6px 2px; }
.aq-stack__layer { display: flex; align-items: center; gap: 10px; padding: 13px 14px; border-radius: 14px; border: 1px solid var(--fg-12); background: rgba(255, 255, 255, 0.035); box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3); font-size: 0.8rem; font-weight: 600; color: var(--foreground); }
.aq-stack__layer svg { width: 26px; height: 26px; flex: none; color: var(--accent); }
.aq-stack__l1 { transform: translateX(-5px) rotate(-1.4deg); }
.aq-stack__l2 { transform: translateX(5px) rotate(1.2deg); }
.aq-stack__l3 { transform: translateX(-3px) rotate(-0.7deg); }

/* "3 saniyede" highlight rozetleri */
.svc__hl { display: inline-flex; align-items: center; gap: 7px; margin-top: 6px; font-size: 0.85rem; font-weight: 600; color: var(--accent); }
.aq-show__hl { display: inline-flex; align-items: center; gap: 8px; margin: 0 auto 18px; font-size: 0.9rem; font-weight: 600; color: var(--accent); border: 1px solid var(--fg-12); background: rgba(56, 189, 248, 0.08); padding: 8px 16px; border-radius: 999px; }

/* ════════════════════════════════════════════════════════════
   AsmiQR özellik animasyonu (telefon ekranı) — 2 sahne döner
   ════════════════════════════════════════════════════════════ */
.aq-anim { position: absolute; inset: 0; background: #0d1117; overflow: hidden; }
.aq-anim__scene { position: absolute; inset: 0; opacity: 0; }
.aq-anim__scene--ai { opacity: 1; animation: aqSceneA 10s infinite; }
.aq-anim__scene--paper { animation: aqSceneB 10s infinite; }
@keyframes aqSceneA { 0% { opacity: 0; } 3% { opacity: 1; } 45% { opacity: 1; } 50%, 100% { opacity: 0; } }
@keyframes aqSceneB { 0%, 50% { opacity: 0; } 53% { opacity: 1; } 97% { opacity: 1; } 100% { opacity: 0; } }
.aq-anim__cap { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); font-size: 0.6rem; font-weight: 600; color: #fff; background: rgba(0, 0, 0, 0.6); padding: 4px 10px; border-radius: 99px; white-space: nowrap; z-index: 5; }
/* animasyonlu telefonda etiketi üste al (alttaki sahne yazısıyla çakışmasın) */
.aq-phone .aq-phone__tag--top { top: 14px; bottom: auto; }

/* AI yemek fotoğrafı — önce/sonra kaydırma (gerçek orijinal → AI görseli) */
.aq-ba { position: absolute; inset: 0; overflow: hidden; }
.aq-ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.aq-ba__before { position: absolute; inset: 0; animation: aqWipe 3.4s ease-in-out infinite; }
@keyframes aqWipe { 0%, 100% { clip-path: inset(0 0 0 0); } 50% { clip-path: inset(0 100% 0 0); } }
.aq-ba__line { position: absolute; top: 0; bottom: 0; width: 2px; left: 100%; background: #fff; box-shadow: 0 0 10px 1px var(--accent); z-index: 3; animation: aqLine 3.4s ease-in-out infinite; }
@keyframes aqLine { 0%, 100% { left: 100%; } 50% { left: 0%; } }
/* etiketler telefonun "AI Özellikler" rozetinin altında dursun — üst üste binmesin */
.aq-ba__tag { position: absolute; top: 40px; font-size: 0.54rem; font-weight: 700; padding: 3px 8px; border-radius: 99px; z-index: 4; }
.aq-ba__tag--b { left: 8px; background: rgba(0, 0, 0, 0.6); color: #fff; }
.aq-ba__tag--a { right: 8px; background: var(--accent); color: #06121d; }

/* Kağıt menüden dijitale */
.aq-pd { position: absolute; inset: 0; display: grid; place-items: center; background: linear-gradient(160deg, #121a26, #0d1117); }
.aq-pd__paper, .aq-pd__digital { position: absolute; width: 74%; border-radius: 10px; padding: 14px; backface-visibility: hidden; }
.aq-pd__paper { background: #f3ead6; color: #3a2f1e; box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45); transform: rotate(-2deg); animation: aqPaper 3.4s ease-in-out infinite; }
.aq-pd__paper b { display: block; text-align: center; font-size: 0.7rem; letter-spacing: 0.14em; margin-bottom: 12px; }
.aq-pd__paper i { display: block; height: 5px; border-radius: 3px; background: #cdbfa3; margin: 8px 0; }
.aq-pd__paper i:nth-child(2) { width: 88%; } .aq-pd__paper i:nth-child(3) { width: 96%; } .aq-pd__paper i:nth-child(4) { width: 72%; } .aq-pd__paper i:nth-child(5) { width: 84%; }
.aq-pd__digital { background: #161c26; border: 1px solid var(--fg-12); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5); opacity: 0; animation: aqDigital 3.4s ease-in-out infinite; }
.aq-pd__row { display: flex; align-items: center; gap: 7px; padding: 5px 0; font-size: 0.6rem; color: #e6edf3; }
.aq-pd__row em { width: 18px; height: 18px; border-radius: 5px; background: var(--accent); flex: none; }
.aq-pd__row u { text-decoration: none; flex: 1; }
.aq-pd__row s { text-decoration: none; color: var(--accent); font-weight: 700; }
@keyframes aqPaper { 0%, 32% { opacity: 1; transform: rotate(-2deg) scale(1); } 50%, 100% { opacity: 0; transform: rotateY(-40deg) scale(0.85); } }
@keyframes aqDigital { 0%, 38% { opacity: 0; transform: rotateY(40deg) scale(0.85); } 58%, 100% { opacity: 1; transform: none; } }
.aq-pd__arrow { position: absolute; z-index: 4; font-size: 1.5rem; color: var(--accent); opacity: 0; animation: aqArrowPd 3.4s ease-in-out infinite; }
@keyframes aqArrowPd { 0%, 30% { opacity: 0; transform: translateX(-4px); } 42%, 48% { opacity: 1; transform: translateX(6px); } 58%, 100% { opacity: 0; } }

/* ════════════════════════════════════════════════════════════
   Hizmetler — BENTO IZGARA (kart-deste yerine asimetrik karolar)
   ════════════════════════════════════════════════════════════ */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; grid-auto-rows: 210px; padding-bottom: clamp(64px, 10vh, 120px); }
.bento__tile { position: relative; overflow: hidden; border-radius: 20px; text-decoration: none; color: #fff; border: 1px solid var(--fg-12); display: block; grid-column: span 2; }
.bento__tile--qr       { grid-column: 1 / 4; grid-row: 1 / 3; background: linear-gradient(150deg, #13203a, #0d1117); }
.bento__tile--barkod   { grid-column: 4 / 7; grid-row: 1 / 2; }
.bento__tile--web      { grid-column: 4 / 7; grid-row: 2 / 3; }
.bento__tile--mobil    { grid-column: 1 / 3; grid-row: 3 / 4; }
.bento__tile--satis    { grid-column: 3 / 5; grid-row: 3 / 4; }
.bento__tile--eticaret { grid-column: 5 / 7; grid-row: 3 / 4; }
.bento__tile--sosyal   { grid-column: 1 / 7; grid-row: 4 / 5; }

.bento__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s var(--ease); }
.bento__tile:hover .bento__bg { transform: scale(1.06); }
.bento__shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8, 11, 16, 0.94) 6%, rgba(8, 11, 16, 0.5) 50%, rgba(8, 11, 16, 0.12)); }
.bento__body { position: absolute; inset: 0; display: flex; flex-direction: column; padding: 20px 22px; }
.bento__idx { font-family: var(--font-display); font-size: 0.8rem; color: rgba(255, 255, 255, 0.7); letter-spacing: 0.08em; }
.bento__spacer { flex: 1; }
.bento__title { font-family: var(--font-display); font-size: clamp(1.05rem, 1.8vw, 1.45rem); line-height: 1.15; margin-bottom: 6px; }
.bento__desc { font-size: 0.85rem; color: rgba(255, 255, 255, 0.82); line-height: 1.45; }
.bento__more { margin-top: 12px; font-size: 0.82rem; font-weight: 600; color: var(--accent); opacity: 0; transform: translateX(-4px); transition: opacity 0.2s, transform 0.2s; }
.bento__tile:hover .bento__more { opacity: 1; transform: none; }
.bento__badge { position: absolute; top: 18px; right: 18px; z-index: 3; font-size: 0.68rem; font-weight: 700; background: var(--accent); color: #06121d; padding: 5px 12px; border-radius: 99px; }

/* QR feature karosu — animasyonlu telefon + metin */
.bento__feat { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; padding: 26px 28px; }
.bento__feat-copy { display: flex; flex-direction: column; }
.bento__feat-phone { width: 170px; max-width: 42%; aspect-ratio: 170 / 346; align-self: center; }

@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 188px; }
  .bento__tile--qr { grid-column: 1 / 5; grid-row: 1 / 3; }
  .bento__tile--barkod { grid-column: 1 / 3; grid-row: 3 / 4; }
  .bento__tile--web { grid-column: 3 / 5; grid-row: 3 / 4; }
  .bento__tile--mobil { grid-column: 1 / 3; grid-row: 4 / 5; }
  .bento__tile--satis { grid-column: 3 / 5; grid-row: 4 / 5; }
  .bento__tile--eticaret { grid-column: 1 / 3; grid-row: 5 / 6; }
  .bento__tile--sosyal { grid-column: 3 / 5; grid-row: 5 / 6; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: 188px; }
  .bento__tile, .bento__tile--qr, .bento__tile--barkod, .bento__tile--web, .bento__tile--mobil, .bento__tile--satis, .bento__tile--eticaret, .bento__tile--sosyal { grid-column: 1 / -1; grid-row: auto; }
  .bento__tile--qr { grid-row: span 2; }
  .bento__feat { grid-template-columns: 1fr; }
  .bento__feat-phone { display: none; }
}

/* ════════════════════════════════════════════════════════════
   AsmiQR sipariş paneli animasyonu (kasiyer — sipariş düşer + zil çalar)
   ════════════════════════════════════════════════════════════ */
.aq-browser--anim .aq-browser__scr { position: relative; aspect-ratio: 16 / 11; }
.kpanel { position: absolute; inset: 0; background: linear-gradient(160deg, #0f1620, #0b1018); padding: 14px 16px; display: flex; flex-direction: column; gap: 9px; overflow: hidden; }
.kpanel__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2px; }
.kpanel__title { font-weight: 700; font-size: 0.92rem; color: #fff; }
.kpanel__bell { position: relative; color: var(--accent); display: inline-flex; transform-origin: top center; animation: kBell 3.2s ease-in-out infinite; }
.kpanel__bell svg { width: 22px; height: 22px; }
@keyframes kBell { 0%, 14%, 100% { transform: rotate(0); } 2% { transform: rotate(18deg); } 5% { transform: rotate(-15deg); } 8% { transform: rotate(10deg); } 11% { transform: rotate(-5deg); } }
.kpanel__badge { position: absolute; top: -7px; left: 15px; font-size: 0.54rem; font-weight: 700; background: #ef4444; color: #fff; padding: 2px 6px; border-radius: 99px; white-space: nowrap; animation: kBadge 3.2s ease-in-out infinite; }
@keyframes kBadge { 0% { opacity: 0; transform: scale(0.5); } 4%, 90% { opacity: 1; transform: scale(1); } 100% { opacity: 1; } }
.kpanel__order { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 5px 10px; background: #161f2b; border: 1px solid var(--fg-12); border-left: 3px solid var(--accent); border-radius: 10px; padding: 9px 12px; font-size: 0.7rem; color: #e6edf3; opacity: 0; transform: translateY(-18px); }
.kpanel__order--1 { animation: kDrop 3.2s ease-in-out infinite; }
.kpanel__order--2 { animation: kDrop 3.2s ease-in-out infinite 0.35s; }
.kpanel__order--3 { animation: kDrop 3.2s ease-in-out infinite 0.7s; }
@keyframes kDrop { 0%, 3% { opacity: 0; transform: translateY(-18px); } 12%, 88% { opacity: 1; transform: translateY(0); } 100% { opacity: 1; transform: translateY(0); } }
.kpanel__masa { font-weight: 700; color: var(--accent); }
.kpanel__txt { color: var(--fg-75); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.kpanel__price { font-weight: 700; }
.kpanel__ok { grid-column: 1 / -1; justify-self: start; background: #16a34a; color: #fff; padding: 3px 11px; border-radius: 7px; font-size: 0.6rem; font-weight: 600; }

/* ════════════════════════════════════════════════════════════
   QR detay — beyaz kartlar (fayda + özellik + dahil)
   ════════════════════════════════════════════════════════════ */
.svc-benefit, .aq-feat, .aq-incl { background: #1a2331; border: 1px solid var(--fg-12); color: var(--foreground); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32); }
.svc-benefit h3, .aq-feat h3, .aq-incl h2 { color: #ffffff; }
.svc-benefit p, .aq-feat p, .aq-incl li { color: var(--fg-75); }
.svc-benefit__check { background: rgba(56, 189, 248, 0.18); color: var(--accent); }
.aq-feat .aq-flow span { background: rgba(255, 255, 255, 0.05); border-color: var(--fg-12); color: var(--fg-50); }
.aq-feat .aq-pills span { background: rgba(255, 255, 255, 0.05); border-color: var(--fg-12); color: var(--foreground); }
.aq-feat .aq-pills span:last-child { color: var(--accent); }
.aq-feat .aq-up__paper { background: #f3ead6; color: #3a2f1e; border-color: var(--fg-12); }
.aq-incl li::before { background: var(--grad); }
/* AI Yemek Fotoğrafı kartı — Önce/Sonra kutularına gerçek before/after görselleri */
.aq-feat .aq-ai__before, .aq-feat .aq-ai__after { color: #fff; text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85); }
.aq-feat .aq-ai__before { background: url('../assets/img/asmiqr-dish.jpg') center/cover; }
.aq-feat .aq-ai__after { background: radial-gradient(ellipse 62% 74% at 50% 50%, transparent 28%, #ffffff 70%), url('../assets/img/asmiqr-dish.jpg') center/cover; }
/* Yeni Mevzuat kartı — küçük kalori & alerjen ikon belirteçleri (asmiqr.com stili) */
.aq-feat .aq-tags { display: flex; flex-wrap: wrap; gap: 5px; align-items: center; }
.aq-tag { display: inline-flex; align-items: center; gap: 4px; font-size: 0.6rem; font-weight: 700; line-height: 1; padding: 4px 7px; border-radius: 99px; }
.aq-tag--kcal { background: rgba(34, 197, 94, 0.16); color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.32); }
.aq-tag--alg { background: rgba(255, 255, 255, 0.06); border: 1px solid var(--fg-12); font-size: 0.82rem; padding: 2px 5px; }
