/* ============================================================
   TORAWASH — Kurumsal Web Sitesi
   assets/css/style.css
   Bölüm 1: Reset · Değişkenler · Temel · Header
   ============================================================ */

/* ------------------------------------------------------------
   1. RESET
   ------------------------------------------------------------ */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd,
ul, ol { margin: 0; }

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

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

[hidden] { display: none !important; }

a { color: inherit; text-decoration: none; }

button {
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

/* ------------------------------------------------------------
   2. DEĞİŞKENLER
   ------------------------------------------------------------ */
:root {
  /* Kurumsal renk paleti */
  --c-ink:        #16202E;   /* ana metin  */
  --c-ink-soft:   #55657A;   /* menü, ikincil metin */
  --c-ink-light:  #8896A8;   /* etiketler */
  --c-navy:       #0F2B45;   /* koyu lacivert — ikon zemini, buton */
  --c-navy-soft:  #17405F;   /* lacivert hover */
  --c-brand:      #16A3EF;   /* logo mavisi — vurgu */
  --c-brand-deep: #0B4C96;   /* kurumsal mavi — bağlantı vurgusu */

  --c-white:      #FFFFFF;
  --c-line:       #E5EAF0;   /* çizgi / kenarlık */
  --c-line-soft:  #EFF3F7;
  --c-surface:    #F6F8FB;   /* açık zemin */

  /* Tipografi */
  --font-sans: "Jost", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Ölçüler */
  --header-h:      92px;     /* header yüksekliği */
  --header-h-sm:   74px;     /* sayfa kaydırılınca */
  --action-h:      52px;     /* telefon kutusu + buton ortak yüksekliği */
  --container:     1440px;
  --gutter:        40px;

  --radius:        8px;
  --radius-sm:     6px;

  --ease: cubic-bezier(.25, .8, .25, 1);
}

/* ------------------------------------------------------------
   3. TEMEL
   ------------------------------------------------------------ */
body {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--c-ink);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.is-locked { overflow: hidden; }

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

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

/* ------------------------------------------------------------
   4. YARDIMCI SINIFLAR
   ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  z-index: 200;
  padding: 12px 22px;
  background: var(--c-brand-deep);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 0; }

/* ============================================================
   5. HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-line-soft);
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: transparent;
  box-shadow: 0 1px 0 var(--c-line-soft), 0 12px 28px -18px rgba(16, 39, 63, .28);
}

.site-header__inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  transition: height .3s var(--ease);
}

.site-header.is-scrolled .site-header__inner { height: var(--header-h-sm); }

/* ---------- 5.1 Logo ---------- */
.brand {
  flex: none;
  display: block;
  line-height: 0;
}

/* Logo dosyasında üstte 16px / altta 23px şeffaf boşluk var;
   optik ortalama için 2px aşağı alınıyor. */
.brand img {
  width: auto;
  height: 64px;
  transform: translateY(2px);
  transition: height .3s var(--ease);
}

.site-header.is-scrolled .brand img { height: 54px; }

/* ---------- 5.2 Ana menü ----------
   Menü, logo ile sağ blok arasındaki boşlukta ortalanır. */
.mainnav { margin-inline: auto; padding-inline: 40px; }

.mainnav__list {
  display: flex;
  align-items: center;
}

.mainnav__link {
  position: relative;
  display: block;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  white-space: nowrap;
  transition: color .25s var(--ease);
}

.mainnav__link::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 2px;
  height: 2px;
  background: var(--c-brand);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .32s var(--ease);
}

.mainnav__link:hover,
.mainnav__link:focus-visible { color: var(--c-ink); }

.mainnav__link:hover::after,
.mainnav__link:focus-visible::after { transform: scaleX(1); }

.mainnav__link.is-active { color: var(--c-ink); font-weight: 600; }
.mainnav__link.is-active::after { transform: scaleX(1); }

/* ---------- 5.2a Açılır ürün menüsü ---------- */
.mainnav__item { position: relative; }

.mainnav__link .mainnav__caret {
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-left: 4px;
  vertical-align: -2px;
  opacity: .6;
  transition: transform .3s var(--ease), opacity .25s var(--ease);
}

.has-sub:hover .mainnav__caret,
.has-sub.is-open .mainnav__caret,
.has-sub:focus-within .mainnav__caret { transform: rotate(180deg); opacity: 1; }

.subnav {
  position: absolute;
  top: calc(100% + 6px);
  left: 8px;
  z-index: 130;
  min-width: 320px;
  padding: 10px;
  border-radius: 12px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  box-shadow: 0 30px 60px -28px rgba(16, 39, 63, .45), 0 4px 14px -8px rgba(16, 39, 63, .2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s var(--ease), transform .3s var(--ease), visibility .3s;
}

/* Üst kenar ile menü arasındaki boşlukta fare kaymasın */
.subnav::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}

.has-sub:hover .subnav,
.has-sub.is-open .subnav,
.has-sub:focus-within .subnav { opacity: 1; visibility: visible; transform: none; }

.subnav li a {
  display: block;
  padding: 11px 14px;
  border-radius: 8px;
  transition: background .2s var(--ease);
}

.subnav li a:hover,
.subnav li a:focus-visible,
.subnav li a.is-current { background: var(--c-surface); }

.subnav strong {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--c-ink);
  transition: color .2s var(--ease);
}

.subnav li a:hover strong,
.subnav li a.is-current strong { color: var(--c-brand-deep); }

.subnav span {
  display: block;
  margin-top: 2px;
  font-size: 12.5px;
  color: var(--c-ink-soft);
}

/* ---------- 5.3 Sağ aksiyonlar ---------- */
.header-actions {
  display: flex;
  align-items: center;
  flex: none;
  gap: 22px;
}

/* Telefon kutusu ve katalog butonu tek bir çift olarak kurgulandı:
   aynı yükseklik, aynı köşe yarıçapı, aynı ikon ölçüsü, aynı yazı ritmi.
   Biri açık (çerçeveli), diğeri koyu (dolu) — ikisi de aynı lacivert ailesinden. */

.callbox,
.btn {
  display: flex;
  align-items: center;
  gap: 12px;
  height: var(--action-h);
  border-radius: var(--radius);
  white-space: nowrap;
}

.callbox__icon,
.btn__icon {
  flex: none;
  display: grid;
  place-items: center;
}

.callbox__icon svg { width: 17px; height: 17px; }
.btn__icon svg    { width: 19px; height: 19px; }

.callbox__text,
.btn__text { display: block; text-align: left; }

.callbox__text strong,
.btn__text strong {
  display: block;
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1.15;
}

.callbox__text small,
.btn__text small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  line-height: 1.5;
}

/* ---------- Telefon kutusu ---------- */
.callbox {
  padding-right: 20px;
  border: 1px solid var(--c-line);
  background: var(--c-white);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}

.callbox:hover { border-color: #D3DDE8; background: #FCFDFE; }

.callbox__icon {
  width: 38px;
  height: 38px;
  margin-left: 7px;
  border-radius: 50%;
  background: var(--c-navy);
  color: #fff;
  transition: background .25s var(--ease);
}

.callbox:hover .callbox__icon { background: var(--c-navy-soft); }

.callbox__text strong { color: var(--c-ink); }
.callbox__text small  { color: var(--c-ink-light); }

/* ---------- Ayraç ---------- */
.header-actions__sep {
  flex: none;
  width: 1px;
  height: 30px;
  background: var(--c-line);
}

/* ---------- Katalog butonu ---------- */
.btn { padding-inline: 24px; font-family: inherit; }

.btn--primary {
  background: var(--c-navy);
  color: #fff;
  box-shadow: 0 1px 2px rgba(15, 43, 69, .18);
  transition: background .25s var(--ease);
}

.btn--primary:hover { background: var(--c-navy-soft); }

.btn__text strong { color: #fff; }
.btn__text small  { color: rgba(255, 255, 255, .66); }

/* ---------- 5.4 Mobil menü butonu ---------- */
.navtoggle {
  display: none;
  flex: none;
  width: 46px;
  height: 46px;
  margin-left: 16px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  place-items: center;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}

.navtoggle:hover { border-color: #CFDAE6; background: var(--c-surface); }

.navtoggle__bars {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  background: var(--c-ink);
  transition: background .2s var(--ease);
}

.navtoggle__bars::before,
.navtoggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--c-ink);
  transition: transform .3s var(--ease), top .2s var(--ease);
}

.navtoggle__bars::before { top: -6px; }
.navtoggle__bars::after  { top: 6px; }

.nav-open .navtoggle__bars { background: transparent; }
.nav-open .navtoggle__bars::before { top: 0; transform: rotate(45deg); }
.nav-open .navtoggle__bars::after  { top: 0; transform: rotate(-45deg); }

/* ============================================================
   6. MOBİL MENÜ (drawer)
   ============================================================ */
.navscrim {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(16, 39, 63, .5);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}

.nav-open .navscrim { opacity: 1; visibility: visible; }

.navdrawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  width: min(340px, 88vw);
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  box-shadow: -20px 0 50px -30px rgba(16, 39, 63, .6);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform .4s var(--ease), visibility .4s;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.nav-open .navdrawer { transform: translateX(0); visibility: visible; }

.navdrawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--c-line-soft);
}

.navdrawer__head img { height: 42px; width: auto; }

.navdrawer__close {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  color: var(--c-ink-soft);
  transition: background .25s var(--ease), color .25s var(--ease);
}

.navdrawer__close:hover { background: var(--c-surface); color: var(--c-ink); }
.navdrawer__close svg { width: 18px; height: 18px; }

.navdrawer__nav { padding: 10px 24px; }

.navdrawer__nav a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid var(--c-line-soft);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  transition: color .2s var(--ease), padding-left .25s var(--ease);
}

.navdrawer__nav a:hover { color: var(--c-brand-deep); padding-left: 6px; }
.navdrawer__nav a.is-active { color: var(--c-ink); font-weight: 600; }
.navdrawer__nav li:last-child a { border-bottom: 0; }

/* ---------- Çekmecede açılır ürün grubu ---------- */
.navdrawer__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px solid var(--c-line-soft);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-align: left;
  color: var(--c-ink-soft);
  transition: color .2s var(--ease);
}

.navdrawer__toggle.is-active { color: var(--c-ink); font-weight: 600; }
.navdrawer__toggle svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.navdrawer__toggle[aria-expanded="true"] { color: var(--c-ink); }
.navdrawer__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.navdrawer__sub {
  padding: 6px 0 10px 14px;
  border-bottom: 1px solid var(--c-line-soft);
  border-left: 2px solid var(--c-line);
  margin: 0 0 4px 2px;
}

.navdrawer__nav .navdrawer__sub a {
  padding: 10px 0 10px 12px;
  border-bottom: 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.navdrawer__nav .navdrawer__sub a.is-current { color: var(--c-brand-deep); font-weight: 600; }

.navdrawer__foot {
  margin-top: auto;
  display: grid;
  gap: 12px;
  padding: 24px;
  border-top: 1px solid var(--c-line-soft);
}

.navdrawer__foot .callbox,
.navdrawer__foot .btn { justify-content: flex-start; }

/* ============================================================
   7. DUYARLI DÜZEN
   ============================================================ */
/* Beş maddeli menü: geniş masaüstünün altında kademeli sıkışır */
@media (max-width: 1500px) {
  .mainnav { padding-inline: 16px; }
  .mainnav__link { padding: 10px 12px; font-size: 13px; letter-spacing: .05em; }
  .mainnav__link::after { left: 12px; right: 12px; }
  .header-actions { gap: 14px; padding-left: 0; }
  .btn { padding-inline: 18px; }
}

@media (max-width: 1400px) {
  /* Telefon kutusu yalnızca ikon, katalog butonu tek satır */
  .callbox { width: var(--action-h); padding-right: 0; border: 0; background: none; }
  .callbox__text { display: none; }
  .callbox__icon { width: var(--action-h); height: var(--action-h); margin-left: 0; }
  .header-actions .btn__text small { display: none; }
  .header-actions .btn__text strong { font-size: 15px; }
}

@media (max-width: 1300px) {
  :root { --gutter: 28px; }

  .mainnav,
  .header-actions__sep { display: none; }

  /* Menü gizlenince sağ blok kenara yaslanır */
  .header-actions { margin-left: auto; }

  .navtoggle { display: grid; }
}

@media (max-width: 720px) {
  :root { --header-h: 78px; --header-h-sm: 68px; --action-h: 46px; --gutter: 20px; }

  .brand img { height: 52px; }
  .site-header.is-scrolled .brand img { height: 46px; }

  /* Telefon kutusu: sadece ikon */
  .callbox { width: var(--action-h); padding-right: 0; border: 0; background: none; }
  .callbox__text { display: none; }
  .callbox__icon { width: var(--action-h); height: var(--action-h); margin-left: 0; }

  /* Header butonu: tek satır */
  .header-actions .btn { padding-inline: 16px; gap: 9px; }
  .header-actions .btn__text small { display: none; }
  .header-actions .btn__text strong { font-size: 14.5px; }

  .header-actions { gap: 8px; padding-left: 12px; }
  .navtoggle { width: var(--action-h); height: var(--action-h); margin-left: 0; }
}

@media (max-width: 480px) {
  .header-actions .btn { width: var(--action-h); padding-inline: 0; justify-content: center; }
  .header-actions .btn__text { display: none; }
}

/* Çekmece içindeki ikili her zaman tam haliyle görünür */
.navdrawer__foot .callbox {
  width: auto;
  padding-right: 20px;
  border: 1px solid var(--c-line);
  background: var(--c-white);
}
.navdrawer__foot .callbox__icon { width: 38px; height: 38px; margin-left: 7px; }
.navdrawer__foot .btn { width: auto; padding-inline: 22px; justify-content: flex-start; }
.navdrawer__foot .callbox__text,
.navdrawer__foot .btn__text,
.navdrawer__foot .btn__text small { display: block; }
.navdrawer__foot .btn__text strong { font-size: 16.5px; }

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

/* ============================================================
   8. HERO — Sinematik sahne
   Sol: karanlık sahne + dev tipografi. Sağ: tam yükseklikte video /
   görsel; sol-üst-alt kenarları düz gradyanlarla karanlığa erir.
   Işık süpürmesi ve gren.
   ============================================================ */
.hero {
  --hero-x: 66%;                       /* ortalanan medyanın yatay konumu */
  --hero-ink: #050E1A;

  position: relative;
  isolation: isolate;
  min-height: 560px;
  height: calc(100svh - var(--header-h));   /* header + hero = tam ekran */
  overflow: hidden;
  color: #fff;
  background: linear-gradient(180deg, #081B2F 0%, #06152A 45%, var(--hero-ink) 100%);
}

/* ---------- 8.1 Medya sahnesi ---------- */
.hero__stage { position: absolute; inset: 0; z-index: 2; }

/* Sarmalayıcı sağa yaslıdır ve içeriğine göre daralır (shrink-wrap);
   yatay maske sarmalayıcıda, dikey maske medyanın kendisinde.
   Böylece video "yuvarlak içinde" değil, sağdan taşan bir sahne gibi durur. */
.hero__media {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s var(--ease), visibility 1.2s;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .55) 24%, #000 46%);
          mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .55) 24%, #000 46%);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

.hero__media.is-active { opacity: 1; visibility: visible; }

.hero__media video,
.hero__media img {
  display: block;
  height: 90%;
  width: auto;
  max-width: none;
  transform: scale(1.06);
  transform-origin: 60% 50%;
  transition: transform 9s linear;
  filter: brightness(.94) contrast(1.05);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 84%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 84%, transparent 100%);
}

.hero__media.is-active video,
.hero__media.is-active img { transform: scale(1); }

/* Geniş fotoğraf: sahnenin tamamını kaplar */
.hero__media--wide { left: 0; }

.hero__media--wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
  -webkit-mask-image: none;
          mask-image: none;
}

/* ---------- 8.3 Derecelendirme, süpürme, gren ---------- */
.hero__grade {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: #0B2B4E;
  mix-blend-mode: multiply;
  opacity: .22;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 14, 26, .82) 0%, rgba(5, 14, 26, .5) 30%, rgba(5, 14, 26, 0) 52%),
    linear-gradient(to top, rgba(5, 14, 26, .9) 0%, rgba(5, 14, 26, 0) 34%),
    linear-gradient(to bottom, rgba(5, 14, 26, .55) 0%, rgba(5, 14, 26, 0) 22%);
}

.hero__sweep {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.hero__sweep::before {
  content: "";
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: 0;
  width: 34%;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, .18) 48%, rgba(120, 200, 255, .1) 52%, transparent 100%);
  mix-blend-mode: screen;
  transform: translateX(-140%) skewX(-12deg);
  opacity: 0;
}

.hero__sweep.is-on::before { animation: heroSweep 1.7s var(--ease) forwards; }

@keyframes heroSweep {
  0%   { transform: translateX(-140%) skewX(-12deg); opacity: 0; }
  12%  { opacity: 1; }
  100% { transform: translateX(420%) skewX(-12deg); opacity: 0; }
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: .06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ---------- 8.4 Metin ---------- */
.hero__inner {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-top: 40px;
  padding-bottom: clamp(48px, 8vh, 90px);
}

.hero__copies { display: grid; }

.hero__copy {
  grid-area: 1 / 1;
  max-width: 62%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .6s var(--ease), visibility .6s;
}

.hero__copy.is-active { opacity: 1; visibility: visible; pointer-events: auto; }

/* Dev başlık — satırlar maskeyle açılır; kısa ekranlarda yüksekliğe göre küçülür */
.hero__title {
  font-size: clamp(2.5rem, min(5vw, 10svh), 5.2rem);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.035em;
  color: #fff;
}

.hero__title .line { display: block; overflow: hidden; padding-bottom: .06em; margin-bottom: -.06em; }

.hero__title .line > span {
  display: block;
  transform: translateY(112%);
  transition: transform 1.05s cubic-bezier(.2, .75, .15, 1);
}

.hero__copy.is-active .line:nth-child(1) > span { transform: none; transition-delay: .32s; }
.hero__copy.is-active .line:nth-child(2) > span { transform: none; transition-delay: .44s; }

.hero__title em {
  font-style: normal;
  color: var(--c-brand);
}

.hero__text {
  max-width: 46ch;
  margin-top: 26px;
  font-size: 17px;
  line-height: 1.72;
  color: rgba(255, 255, 255, .68);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s var(--ease) .62s, transform .9s var(--ease) .62s;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s var(--ease) .76s, transform .9s var(--ease) .76s;
}

.hero__copy.is-active .hero__text,
.hero__copy.is-active .hero__cta { opacity: 1; transform: none; }

/* Hero butonları */
.btn--light,
.btn--ghost {
  height: 56px;
  padding-inline: 28px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .005em;
}

.btn--light { background: #fff; color: var(--c-navy); }
.btn--light:hover { background: #E4F1FB; }

.btn--ghost {
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28);
  transition: background .25s var(--ease), box-shadow .25s var(--ease);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, .07);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .55);
}

.btn__arrow { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ---------- 8.5 Kontroller (sağ alt) ---------- */
.hero__controls {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(36px, 6vh, 64px);
  z-index: 6;
  display: flex;
  align-items: flex-end;
  gap: 28px;
}

.hero__count {
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.hero__count b {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -.03em;
  color: #fff;
}

.hero__count span {
  font-size: 13px;
  letter-spacing: .16em;
  color: rgba(255, 255, 255, .45);
}

.hero__track {
  position: relative;
  width: 150px;
  height: 2px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, .16);
  overflow: hidden;
}

.hero__track i {
  position: absolute;
  inset: 0;
  background: var(--c-brand);
  transform: scaleX(0);
  transform-origin: left center;
}

.hero__track i.is-running { animation: heroBar var(--hero-dur, 7000ms) linear forwards; }

@keyframes heroBar { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hero__arrows { display: flex; gap: 8px; }

.hero__arrow {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .26);
  transition: background .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}

.hero__arrow:hover {
  background: rgba(255, 255, 255, .1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .6);
  transform: translateY(-2px);
}

.hero__arrow svg { width: 18px; height: 18px; }

/* ---------- 8.6 Duyarlı ---------- */
/* Kısa masaüstü ekranlar: dikeyde sıkıştır */
@media (min-width: 1101px) and (max-height: 760px) {
  .hero__text { margin-top: 16px; font-size: 16px; }
  .hero__cta  { margin-top: 24px; }
  .btn--light, .btn--ghost { height: 50px; }
  .hero__controls { bottom: 32px; }
  .hero__count b { font-size: 36px; }
}

@media (max-width: 1280px) {
  .hero { --hero-x: 68%; }
  .hero__copy { max-width: 66%; }
}

@media (max-width: 1100px) {
  .hero {
    --hero-x: 50%;
    height: auto;
    min-height: 0;
    max-height: none;
  }

  /* Medya üstte, sabit oranlı bir blok olarak */
  .hero__stage {
    position: relative;
    height: clamp(340px, 78vw, 540px);
  }

  /* Mobilde medya ortalanır; iki yandan yumuşak erir */
  .hero__media {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
  }

  .hero__media video,
  .hero__media img { height: 94%; }

  .hero__media--wide { left: 0; transform: none; -webkit-mask-image: none; mask-image: none; }

  .hero__vignette {
    background:
      linear-gradient(to top, rgba(5, 14, 26, 1) 0%, rgba(5, 14, 26, 0) 40%),
      linear-gradient(to bottom, rgba(5, 14, 26, .6) 0%, rgba(5, 14, 26, 0) 18%);
  }

  .hero__inner {
    height: auto;
    justify-content: flex-start;
    margin-top: -8px;
    padding-top: 0;
    padding-bottom: 28px;
    transform: none;
  }

  .hero__copy { max-width: 620px; }

  .hero__controls {
    position: relative;
    right: auto;
    bottom: auto;
    padding: 0 var(--gutter) 48px;
  }
}

@media (max-width: 560px) {
  .hero__stage { height: clamp(260px, 82vw, 420px); }
  .hero__title { font-size: clamp(2.5rem, 11.5vw, 3.4rem); }
  .hero__text { font-size: 16px; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .hero__count b { font-size: 36px; }
  .hero__track { width: auto; flex: 1; }
  .hero__controls { gap: 18px; padding-bottom: 44px; }
  .hero__arrow { width: 46px; height: 46px; }
}

/* ============================================================
   9. ÇÖZÜMLER — üçlü bölüm
   Slider'ın hemen altında; başlıksız. Çerçevesiz, alçak kartlar:
   keskin köşeli 16:10 görsel, başlık + ok rozeti, iki satır metin.
   ============================================================ */
.trio {
  padding: clamp(32px, 4vw, 56px) 0 28px;
  background: var(--c-white);
}

.trio__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 32px);
}

/* ---------- Kart (tamamı bağlantı) ---------- */
.tcard {
  display: block;
  color: inherit;
}

.tcard__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 4px;
  background: #EEF2F6;
}

.tcard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
}

.tcard:hover .tcard__media img { transform: scale(1.05); }

/* Ürün çekimi: beyaz zemin gri stüdyoya karışır, ürün bütünüyle görünür */
.tcard__media--product img {
  object-fit: contain;
  padding: 6% 12% 3%;
  mix-blend-mode: multiply;
}

/* Panel ekran görüntüsü: sol üstten ekran gibi kırpılır */
.tcard__media--screen { background: #F3F6F9; }
.tcard__media--screen img {
  object-position: left top;
  padding: 6% 0 0 6%;
  border-top-left-radius: 6px;
  box-shadow: -1px -1px 0 rgba(16, 39, 63, .06);
}

/* Görsel üstünde ince marka çizgisi — hover'da soldan sağa dolar */
.tcard__media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--c-brand);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .5s var(--ease);
}

.tcard:hover .tcard__media::after { transform: scaleX(1); }

.tcard__body { padding-top: 18px; }

.tcard__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.tcard__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.02em;
  color: var(--c-ink);
  transition: color .25s var(--ease);
}

.tcard:hover .tcard__title { color: var(--c-brand-deep); }

.tcard__go {
  flex: none;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--c-navy);
  box-shadow: inset 0 0 0 1px var(--c-line);
  transition: background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}

.tcard__go svg { width: 16px; height: 16px; }

.tcard:hover .tcard__go {
  background: var(--c-navy);
  color: #fff;
  box-shadow: inset 0 0 0 1px var(--c-navy);
  transform: translateX(3px);
}

.tcard__text {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-ink-soft);
}

@media (max-width: 1100px) {
  .trio__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .trio__grid { grid-template-columns: 1fr; gap: 28px; }
  .tcard__title { font-size: 19px; }
}

/* ============================================================
   9b. OTOMASYON VE YAZILIM — koyu vitrin
   Sol: başlık + dört özellik + CTA. Sağ: hafif perspektifli panel
   çerçevesi ve üstünde yüzen üç "canlı" kart. Altta entegrasyon
   rozetleri. Görünüme girince kademeli olarak belirir.
   ============================================================ */
.soft {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: clamp(28px, 4vw, 56px);
  padding: clamp(72px, 8vw, 120px) 0 clamp(40px, 5vw, 64px);
  color: #fff;
  background: linear-gradient(160deg, #0F2B45 0%, #0A1F36 55%, #071829 100%);
}

.soft__glow {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(48% 60% at 78% 42%, rgba(22, 163, 239, .28), transparent 70%),
    radial-gradient(30% 40% at 12% 90%, rgba(22, 163, 239, .12), transparent 70%);
}

.soft__dots {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .13) 1px, transparent 1.4px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(70% 80% at 60% 50%, #000 20%, transparent 100%);
          mask-image: radial-gradient(70% 80% at 60% 50%, #000 20%, transparent 100%);
  opacity: .55;
}

.soft__inner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
}

/* ---------- Sol blok ---------- */
.soft__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border-radius: 100px;
  background: rgba(22, 163, 239, .14);
  box-shadow: inset 0 0 0 1px rgba(22, 163, 239, .32);
  color: #7FD0FF;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.soft__kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-brand);
  box-shadow: 0 0 0 4px rgba(22, 163, 239, .22);
}

.soft__title {
  margin-top: 20px;
  font-size: clamp(2.1rem, 3.6vw, 3.4rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.032em;
}

.soft__title em { font-style: normal; color: var(--c-brand); }

.soft__text {
  max-width: 46ch;
  margin-top: 18px;
  font-size: 16.5px;
  line-height: 1.72;
  color: rgba(255, 255, 255, .7);
}

.soft__feats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.soft__feats li {
  padding: 18px 18px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .09);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}

.soft__feats li:hover {
  background: rgba(255, 255, 255, .07);
  box-shadow: inset 0 0 0 1px rgba(22, 163, 239, .4);
}

.soft__ico {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(22, 163, 239, .16);
  color: #7FD0FF;
}

.soft__ico svg { width: 18px; height: 18px; }

.soft__feats strong {
  display: block;
  margin-top: 14px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.3;
}

.soft__feats li > span:last-child {
  display: block;
  margin-top: 4px;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .58);
}

.soft__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* ---------- Sağ blok: panel çerçevesi ---------- */
.soft__visual {
  position: relative;
  padding: 24px 0 56px 0;
}

.soft__frame {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #0C1E33;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .1),
    0 60px 100px -40px rgba(0, 0, 0, .75),
    0 30px 60px -30px rgba(22, 163, 239, .35);
  transform: perspective(1400px) rotateY(-7deg) rotateX(2deg);
  transform-origin: 70% 50%;
  transition: transform 1.2s var(--ease);
}

.soft__visual:hover .soft__frame { transform: perspective(1400px) rotateY(-3deg) rotateX(1deg); }

.soft__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #102845;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.soft__bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
}

.soft__bar span {
  margin-left: 10px;
  padding: 4px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .06);
  font-size: 11.5px;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .5);
}

.soft__frame img { width: 100%; height: auto; }

/* ---------- Yüzen kartlar ---------- */
.soft__card {
  position: absolute;
  z-index: 2;
  padding: 16px 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .97);
  color: var(--c-ink);
  box-shadow: 0 30px 60px -28px rgba(0, 0, 0, .7), 0 0 0 1px rgba(16, 39, 63, .06);
  backdrop-filter: blur(8px);
  animation: softFloat 7s ease-in-out infinite;
}

.soft__card-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-ink-light);
}

.soft__card--kpi {
  left: -28px;
  bottom: 8px;
  min-width: 200px;
  animation-delay: -2s;
}

.soft__card--kpi > strong {
  display: block;
  margin-top: 6px;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1;
}

.soft__card--kpi small { font-size: 13px; font-weight: 500; color: var(--c-ink-soft); letter-spacing: 0; }

.soft__trend {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 8px;
  padding: 3px 8px 3px 5px;
  border-radius: 100px;
  background: rgba(28, 138, 78, .12);
  font-size: 12px;
  font-weight: 600;
  color: #1C8A4E;
}

.soft__trend svg { width: 12px; height: 12px; }

.soft__bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 38px;
  margin-top: 14px;
}

.soft__bars i {
  flex: 1;
  height: var(--h);
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(180deg, var(--c-brand), var(--c-brand-deep));
  transform-origin: bottom;
  transform: scaleY(0);
}

.soft__bars i:last-child { background: linear-gradient(180deg, #4FC3FF, var(--c-brand)); }

.is-in .soft__bars i { animation: softBar .8s var(--ease) forwards; }
.is-in .soft__bars i:nth-child(1) { animation-delay: .5s; }
.is-in .soft__bars i:nth-child(2) { animation-delay: .58s; }
.is-in .soft__bars i:nth-child(3) { animation-delay: .66s; }
.is-in .soft__bars i:nth-child(4) { animation-delay: .74s; }
.is-in .soft__bars i:nth-child(5) { animation-delay: .82s; }
.is-in .soft__bars i:nth-child(6) { animation-delay: .9s; }
.is-in .soft__bars i:nth-child(7) { animation-delay: .98s; }

@keyframes softBar { to { transform: scaleY(1); } }

.soft__card--alert {
  top: 0;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 22px;
  animation-delay: -4.5s;
}

.soft__card--alert strong { display: block; font-size: 14px; font-weight: 600; letter-spacing: -.01em; }
.soft__card--alert span:last-child { display: block; margin-top: 2px; font-size: 12.5px; color: var(--c-ink-soft); }

.soft__pulse {
  position: relative;
  flex: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #E5484D;
}

.soft__pulse::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(229, 72, 77, .55);
  animation: softPing 1.8s cubic-bezier(.2, .7, .3, 1) infinite;
}

@keyframes softPing {
  0%   { transform: scale(.5); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.soft__card--price {
  right: 6%;
  bottom: -6px;
  animation-delay: -1s;
}

.soft__card--price > strong { display: block; margin-top: 6px; font-size: 17px; font-weight: 600; letter-spacing: -.02em; }
.soft__card--price > span:last-child { display: block; margin-top: 3px; font-size: 12.5px; color: #1C8A4E; font-weight: 500; }

@keyframes softFloat {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -8px; }
}

/* ---------- Alt şerit: entegrasyonlar ---------- */
.soft__foot {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: clamp(56px, 7vw, 96px);
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.soft__foot-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}

.soft__pills { display: flex; flex-wrap: wrap; gap: 8px; }

.soft__pills li {
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
  transition: background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}

.soft__pills li:hover {
  color: #fff;
  background: rgba(22, 163, 239, .16);
  box-shadow: inset 0 0 0 1px rgba(22, 163, 239, .5);
}

/* "Size özel geliştirelim" — şeridin sağ ucunda, iletişim formuna gider */
.soft__custom {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  padding: 8px 8px 8px 16px;
  border-radius: 100px;
  background: rgba(22, 163, 239, .1);
  box-shadow: inset 0 0 0 1px rgba(22, 163, 239, .3);
  transition: background .25s var(--ease), box-shadow .25s var(--ease);
}

.soft__custom:hover {
  background: rgba(22, 163, 239, .18);
  box-shadow: inset 0 0 0 1px rgba(22, 163, 239, .6);
}

.soft__custom-hint {
  font-size: 13px;
  color: rgba(255, 255, 255, .62);
  white-space: nowrap;
}

.soft__custom strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 16px;
  border-radius: 100px;
  background: var(--c-brand);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: background .25s var(--ease);
}

.soft__custom:hover strong { background: #2FB1F7; }
.soft__custom .btn__arrow { width: 15px; height: 15px; }
.soft__custom:hover .btn__arrow { transform: translateX(3px); }

/* ---------- Kademeli belirme ---------- */
[data-anim] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

[data-anim].is-in { opacity: 1; transform: none; }

.soft__feats li {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s var(--ease) var(--d, 0s), transform .7s var(--ease) var(--d, 0s), background .3s var(--ease), box-shadow .3s var(--ease);
}

.is-in .soft__feats li { opacity: 1; transform: none; }

.soft__card { opacity: 0; scale: .92; transition: opacity .8s var(--ease), scale .8s var(--ease); }
.is-in .soft__card--alert { opacity: 1; scale: 1; transition-delay: .55s; }
.is-in .soft__card--kpi   { opacity: 1; scale: 1; transition-delay: .7s; }
.is-in .soft__card--price { opacity: 1; scale: 1; transition-delay: .85s; }

@media (prefers-reduced-motion: reduce) {
  [data-anim], .soft__feats li, .soft__card { opacity: 1; transform: none; scale: 1; }
  .soft__card, .soft__pulse::after { animation: none; }
  .soft__bars i { transform: none; }
  .soft__frame { transform: none; }
}

/* ---------- Duyarlı ---------- */
@media (max-width: 1100px) {
  .soft__inner { grid-template-columns: 1fr; gap: 48px; }
  .soft__visual { max-width: 720px; padding: 20px 0 0; }
  .soft__frame { transform: none; }
  .soft__visual:hover .soft__frame { transform: none; }
  .soft__card--kpi { left: -8px; bottom: -22px; }
  .soft__card--alert { right: -8px; top: -4px; }
  .soft__card--price { display: none; }
}

@media (max-width: 640px) {
  .soft { padding-top: 64px; }
  .soft__feats { grid-template-columns: 1fr; gap: 10px; }
  .soft__cta .btn { width: 100%; justify-content: center; }
  /* Mobil: çerçeve ve kartlar dikey akışta, eşit aralıklı */
  .soft__visual { display: flex; flex-direction: column; gap: 14px; padding: 12px 0 0; }
  .soft__frame { order: 0; border-radius: 8px; }
  .soft__card--alert,
  .soft__card--kpi { position: static; width: 100%; margin: 0; animation: none; }
  .soft__card--alert { order: 1; }
  .soft__card--kpi   { order: 2; }
  .soft__bars { max-width: 220px; }

  /* Özel geliştirme çağrısı mobilde tam genişlik, iki satır */
  .soft__custom { width: 100%; margin-left: 0; flex-direction: column; align-items: flex-start; gap: 10px; padding: 14px 14px 14px 16px; border-radius: 12px; }
  .soft__custom strong { width: 100%; justify-content: center; }
}

/* ============================================================
   10. TORAWASH NEDİR — video solda, açıklama sağda
   ============================================================ */
.about {
  padding: clamp(40px, 5vw, 72px) 0 clamp(72px, 8vw, 120px);
  background: var(--c-white);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

/* ---------- Video ---------- */
.about__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--c-line);
  background: #F4F5F6;
}

.about__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Metin ---------- */

.about__title {
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -.025em;
  color: var(--c-ink);
}

.about__title em { font-style: normal; color: var(--c-brand); }

.about__text {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-ink-soft);
}

.about__text + .about__text { margin-top: 12px; }





@media (max-width: 1000px) {
  .about__grid { grid-template-columns: 1fr; gap: 32px; }
  .about__media { aspect-ratio: 16 / 9; }
}


/* ============================================================
   11. TERMİNALLER — iki cihaz paneli
   ============================================================ */
.devices {
  padding: clamp(64px, 8vw, 112px) 0 clamp(72px, 8vw, 120px);
  background: var(--c-surface);
  border-top: 1px solid var(--c-line-soft);
}

.devices__head { margin-bottom: clamp(28px, 3.5vw, 44px); }

.devices__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 32px);
}

.device {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 12px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}

.device:hover {
  transform: translateY(-4px);
  border-color: #D5DEE8;
  box-shadow: 0 36px 60px -36px rgba(16, 39, 63, .4);
}

/* ---------- Görsel sahnesi: gradyan stüdyo + ince ızgara ---------- */
.device__media {
  position: relative;
  isolation: isolate;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    radial-gradient(55% 45% at 50% 100%, rgba(16, 39, 63, .14), transparent 72%),
    radial-gradient(60% 60% at 20% 0%, rgba(22, 163, 239, .12), transparent 60%),
    linear-gradient(180deg, #F1F5F9 0%, #E7EDF3 100%);
}

.device__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 39, 63, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 39, 63, .05) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(70% 70% at 50% 50%, #000 30%, transparent 100%);
          mask-image: radial-gradient(70% 70% at 50% 50%, #000 30%, transparent 100%);
  pointer-events: none;
}

.device__media img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8% 12% 0;
  mix-blend-mode: multiply;
  transition: transform .8s var(--ease);
}

.device:hover .device__media img { transform: translateY(-6px) scale(1.02); }

/* Konum etiketi (Markette / Peronda) */
.device__tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--c-line);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  backdrop-filter: blur(6px);
}

.device__tag i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-brand);
  box-shadow: 0 0 0 3px rgba(22, 163, 239, .2);
}

/* ---------- Gövde ---------- */
.device__body {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 26px clamp(22px, 2.6vw, 34px) clamp(24px, 2.6vw, 30px);
}

.device__num {
  position: absolute;
  top: 22px;
  right: clamp(22px, 2.6vw, 34px);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--c-ink-light);
}

.device__title {
  padding-right: 48px;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--c-ink);
}

.device__title a { transition: color .25s var(--ease); }
.device__title a:hover { color: var(--c-brand-deep); }

.device__text {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.68;
  color: var(--c-ink-soft);
}

/* Özellikler: ikonlu 2×2 ızgara */
.device__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.device__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--c-surface);
  border: 1px solid var(--c-line-soft);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}

.device__list li:hover { background: #fff; border-color: #D5DEE8; }

.device__list svg {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--c-brand-deep);
}

.device__list strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -.01em;
  color: var(--c-ink);
}

.device__list span {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: var(--c-ink-soft);
}

.device__list span strong { margin-bottom: 2px; }

/* Detay bağlantısı */
.device__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 22px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--c-brand-deep);
}

.device__more svg {
  width: 30px;
  height: 30px;
  padding: 7px;
  border-radius: 50%;
  color: var(--c-navy);
  box-shadow: inset 0 0 0 1px var(--c-line);
  transition: background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}

.device:hover .device__more svg,
.device__more:hover svg {
  background: var(--c-navy);
  color: #fff;
  box-shadow: inset 0 0 0 1px var(--c-navy);
  transform: translateX(3px);
}

@media (max-width: 800px) {
  .devices__grid { grid-template-columns: 1fr; }
  .device__media { aspect-ratio: 4 / 3; }
}

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

/* ============================================================
   11b. TEK BARKOD — en büyük fark
   Sol: başlık, karşılaştırma satırları, CTA. Sağ: tek fişten
   su ve köpüğe giden çizgili animasyonlu şema.
   ============================================================ */
.onebar {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 120px) 0;
  background: var(--c-white);
}

.onebar::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(50% 60% at 82% 50%, rgba(22, 163, 239, .09), transparent 70%);
}

.onebar__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
}

.onebar__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border-radius: 100px;
  background: rgba(22, 163, 239, .1);
  color: var(--c-brand-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.onebar__kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-brand);
  box-shadow: 0 0 0 4px rgba(22, 163, 239, .18);
}

.onebar__title {
  margin-top: 20px;
  font-size: clamp(2.1rem, 3.6vw, 3.4rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.032em;
  color: var(--c-ink);
}

.onebar__title em { font-style: normal; color: var(--c-brand); }

.onebar__text {
  max-width: 50ch;
  margin-top: 18px;
  font-size: 16.5px;
  line-height: 1.72;
  color: var(--c-ink-soft);
}

/* Karşılaştırma satırları */
.onebar__compare { display: grid; gap: 10px; margin-top: 28px; }

.onebar__row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  grid-template-areas: "label chips" "label note";
  column-gap: 16px;
  row-gap: 4px;
  align-items: center;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid var(--c-line);
  background: var(--c-surface);
}

.onebar__row--new {
  border-color: rgba(22, 163, 239, .4);
  background: linear-gradient(90deg, rgba(22, 163, 239, .08), rgba(22, 163, 239, .02));
}

.onebar__label {
  grid-area: label;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-ink-light);
}

.onebar__row--new .onebar__label { color: var(--c-brand-deep); }

.onebar__chips {
  grid-area: chips;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.onebar__chips i {
  padding: 5px 11px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--c-line);
  font-style: normal;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--c-ink);
}

.onebar__row--old .onebar__chips i { color: var(--c-ink-soft); text-decoration: line-through; text-decoration-color: rgba(229, 72, 77, .6); }

.onebar__chips i.is-brand {
  background: var(--c-navy);
  border-color: var(--c-navy);
  color: #fff;
  font-weight: 600;
}

.onebar__chips b { font-size: 15px; font-weight: 500; color: var(--c-ink-light); padding: 0 2px; }

.onebar__note { grid-area: note; font-size: 12.5px; color: var(--c-ink-soft); }
.onebar__row--new .onebar__note { color: #1C8A4E; font-weight: 500; }

.onebar__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.onebar__cta .btn { display: inline-flex; }

/* ---------- Sağ: fiş → su + köpük şeması ---------- */
.onebar__visual {
  display: grid;
  grid-template-columns: minmax(200px, 250px) clamp(60px, 8vw, 110px) minmax(0, 1fr);
  align-items: center;
  justify-content: center;
}

.ticket {
  position: relative;
  padding: 22px 22px 26px;
  border-radius: 6px;
  background: #fff;
  color: var(--c-ink);
  box-shadow:
    0 0 0 1px var(--c-line),
    0 30px 50px -30px rgba(16, 39, 63, .45);
  transform: rotate(-3deg);
  transition: transform .8s var(--ease);
}

/* Fişin alt kenarındaki zımba dişleri */
.ticket::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 8px;
  background: radial-gradient(circle at 6px 0, transparent 5px, #fff 5.5px) 0 0 / 12px 8px repeat-x;
  filter: drop-shadow(0 1px 0 var(--c-line));
}

.onebar__visual:hover .ticket { transform: rotate(-1deg); }

.ticket__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--c-line);
}

.ticket__head img { width: auto; height: 26px; }
.ticket__head span { font-size: 11px; letter-spacing: .1em; color: var(--c-ink-light); }

.ticket__rows { padding: 12px 0 6px; }

.ticket__rows div {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14.5px;
  font-weight: 500;
}

.ticket__rows div span:last-child { color: var(--c-ink-soft); font-weight: 400; }

.ticket__code {
  height: 54px;
  margin-top: 10px;
  background: repeating-linear-gradient(90deg,
    var(--c-ink) 0 2px, transparent 2px 4px,
    var(--c-ink) 4px 5px, transparent 5px 8px,
    var(--c-ink) 8px 11px, transparent 11px 13px,
    var(--c-ink) 13px 14px, transparent 14px 18px,
    var(--c-ink) 18px 20px, transparent 20px 21px);
}

.ticket__num {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-align: center;
  color: var(--c-ink-soft);
}

.onebar__lines {
  width: 100%;
  height: 260px;
  overflow: visible;
}

.onebar__lines path {
  fill: none;
  stroke: var(--c-brand);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
}

.is-in .onebar__lines path { animation: onebarDraw 1.1s var(--ease) forwards; }
.is-in .onebar__lines path:nth-child(2) { animation-delay: .2s; }

@keyframes onebarDraw { to { stroke-dashoffset: 0; } }

.onebar__outs { display: grid; gap: clamp(28px, 4vw, 56px); }

.onebar__out {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-areas: "ico title" "ico sub";
  column-gap: 14px;
  align-items: center;
  padding: 14px 18px 14px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--c-line);
  box-shadow: 0 24px 40px -30px rgba(16, 39, 63, .35);
  opacity: 0;
  transform: translateX(14px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.is-in .onebar__out { opacity: 1; transform: none; }
.is-in .onebar__out:nth-child(1) { transition-delay: .8s; }
.is-in .onebar__out:nth-child(2) { transition-delay: 1s; }

.onebar__out-ico {
  grid-area: ico;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(22, 163, 239, .12);
  color: var(--c-brand-deep);
}

.onebar__out-ico svg { width: 22px; height: 22px; }
.onebar__out strong { grid-area: title; font-size: 16px; font-weight: 600; letter-spacing: -.01em; color: var(--c-ink); }
.onebar__out > span:last-child { grid-area: sub; font-size: 12.5px; color: var(--c-ink-soft); }

@media (prefers-reduced-motion: reduce) {
  .onebar__lines path { stroke-dashoffset: 0; animation: none; }
  .onebar__out { opacity: 1; transform: none; }
}

@media (max-width: 1000px) {
  .onebar__grid { grid-template-columns: 1fr; gap: 48px; }
  .onebar__visual { max-width: 640px; }
}

@media (max-width: 560px) {
  .onebar__visual { grid-template-columns: 1fr; gap: 18px; }
  .onebar__lines { display: none; }
  .ticket { transform: none; max-width: 300px; margin: 0 auto; }
  .onebar__visual:hover .ticket { transform: none; }
  .onebar__outs { grid-template-columns: 1fr 1fr; gap: 12px; }
  .onebar__out { grid-template-columns: 1fr; grid-template-areas: "ico" "title" "sub"; row-gap: 4px; }
  .onebar__row { grid-template-columns: 1fr; grid-template-areas: "label" "chips" "note"; }
  .onebar__cta .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   12. İLETİŞİM FORMU — koyu lacivert kapanış bölümü
   ============================================================ */
.contact {
  position: relative;
  padding: clamp(72px, 8vw, 120px) 0;
  color: #fff;
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(22, 163, 239, .16), transparent 60%),
    linear-gradient(160deg, #0F2B45 0%, #0A1F36 60%, #071829 100%);
  overflow: hidden;
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: start;
}

/* ---------- Sol: tanıtım + iletişim bilgileri ---------- */
.contact__intro { padding-top: 8px; }

.contact__title {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.028em;
  color: #fff;
}

.contact__title em { font-style: normal; color: var(--c-brand); }

.contact__text {
  max-width: 44ch;
  margin-top: 18px;
  font-size: 16.5px;
  line-height: 1.72;
  color: rgba(255, 255, 255, .7);
}

.contact__info { margin-top: 36px; }

.contact__info li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.contact__info li:last-child { border-bottom: 1px solid rgba(255, 255, 255, .1); }

.contact__ico {
  flex: none;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--c-brand);
  background: rgba(255, 255, 255, .06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
}

.contact__ico svg { width: 18px; height: 18px; }

.contact__info strong {
  display: block;
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: .005em;
  color: #fff;
}

.contact__info strong a { transition: color .25s var(--ease); }
.contact__info strong a:hover { color: var(--c-brand); }

.contact__info small {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
}

/* ---------- Sağ: form kartı ---------- */
.contact__form {
  padding: clamp(24px, 3vw, 40px);
  border-radius: 6px;
  background: var(--c-white);
  color: var(--c-ink);
  box-shadow: 0 40px 80px -48px rgba(0, 0, 0, .6);
}

.form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
}

.field { display: block; margin-bottom: 18px; }

.field__label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--c-ink-soft);
}

.field__label i,
.check i { font-style: normal; color: var(--c-brand); }

.field input,
.field select,
.field textarea {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: 1px solid var(--c-line);
  border-radius: 4px;
  background: #FAFBFC;
  font: inherit;
  font-size: 15px;
  color: var(--c-ink);
  transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}

.field textarea {
  height: auto;
  min-height: 120px;
  padding: 14px 16px;
  resize: vertical;
  line-height: 1.6;
}

.field input::placeholder,
.field textarea::placeholder { color: #A3AFBF; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-brand);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(22, 163, 239, .16);
}

.field.is-error input,
.field.is-error select,
.field.is-error textarea { border-color: #E5484D; background: #FFF8F8; }

.field__select { position: relative; display: block; }

.field__select select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
  cursor: pointer;
}

.field__select::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.6px solid var(--c-ink-soft);
  border-bottom: 1.6px solid var(--c-ink-soft);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 4px 0 22px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--c-ink-soft);
  cursor: pointer;
}

.check input {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--c-brand-deep);
  cursor: pointer;
}

.check.is-error span { color: #C8383D; }

.form__foot {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.form__submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 54px;
  padding: 0 26px 0 28px;
  border-radius: 4px;
  background: var(--c-navy);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .005em;
  transition: background .25s var(--ease), transform .25s var(--ease), opacity .25s var(--ease);
}

.form__submit:hover { background: var(--c-navy-soft); }
.form__submit:disabled { opacity: .6; cursor: default; }
.form__submit .btn__arrow { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.form__submit:hover .btn__arrow { transform: translateX(3px); }

.form__msg { font-size: 14px; line-height: 1.5; color: var(--c-ink-soft); }
.form__msg.is-ok { color: #1C8A4E; }
.form__msg.is-error { color: #C8383D; }

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

@media (max-width: 560px) {
  .form__row { grid-template-columns: 1fr; }
  .form__submit { width: 100%; justify-content: center; }
}

/* ============================================================
   13. FOOTER
   ============================================================ */
.footer {
  background: var(--c-surface);
  border-top: 1px solid var(--c-line);
  color: var(--c-ink);
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 64px);
  padding: clamp(56px, 6vw, 80px) 0 clamp(40px, 5vw, 56px);
}

.footer__brand img { width: auto; height: 54px; transform: translateY(2px); }

.footer__brand p {
  max-width: 40ch;
  margin-top: 18px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--c-ink-soft);
}

.footer__social {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.footer__social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--c-ink-soft);
  border: 1px solid var(--c-line);
  background: var(--c-white);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}

.footer__social a:hover { background: var(--c-navy); border-color: var(--c-navy); color: #fff; }
.footer__social svg { width: 17px; height: 17px; }

.footer__col h4 {
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-ink);
}

.footer__col li { margin-bottom: 10px; }

.footer__col li a {
  font-size: 15px;
  color: var(--c-ink-soft);
  transition: color .25s var(--ease);
}

.footer__col li a:hover { color: var(--c-brand-deep); }

.footer__contact li { margin-bottom: 14px; }

.footer__contact li a {
  display: block;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--c-ink);
}

.footer__contact li span {
  display: block;
  margin-top: 1px;
  font-size: 13px;
  color: var(--c-ink-light);
}

.footer__contact li .footer__addr {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--c-ink);
}

.footer__contact .footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-size: 14.5px;
  color: var(--c-brand-deep);
}

.footer__cta svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.footer__cta:hover svg { transform: translateX(3px); }

/* ---------- Alt çubuk ---------- */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
  flex-wrap: wrap;
  padding: 22px 0 26px;
  border-top: 1px solid var(--c-line);
  font-size: 13px;
  color: var(--c-ink-light);
}

.footer__legal { display: flex; gap: 22px; flex-wrap: wrap; }

.footer__legal a { color: var(--c-ink-soft); transition: color .25s var(--ease); }
.footer__legal a:hover { color: var(--c-brand-deep); }

.footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 10px;
  border-radius: 100px;
  border: 1px solid var(--c-line);
  background: var(--c-white);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--c-ink-soft);
}

.footer__badge svg { width: 15px; height: 15px; color: var(--c-brand); }

@media (max-width: 1000px) {
  .footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   14. ÜRÜN DETAY SAYFASI — tüm ürün sayfalarında ortak şablon
   ============================================================ */

/* ---------- 14.1 Ürün hero ---------- */
.pd-hero {
  padding: clamp(24px, 3vw, 40px) 0 clamp(32px, 4vw, 56px);
  background: linear-gradient(180deg, #F6F8FB 0%, #FFFFFF 42%);
}

.crumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(20px, 3vw, 36px);
  font-size: 13px;
  color: var(--c-ink-light);
}

.crumbs a { color: var(--c-ink-soft); transition: color .25s var(--ease); }
.crumbs a:hover { color: var(--c-brand-deep); }
.crumbs svg { width: 12px; height: 12px; color: #B4BFCC; }
.crumbs span[aria-current] { color: var(--c-ink); font-weight: 500; }

.pd-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

/* Metin, sahnenin üst kenarına yakın başlar */
.pd-hero__grid > div:first-child { padding-top: clamp(8px, 2vw, 28px); }

.pd-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border-radius: 100px;
  background: rgba(22, 163, 239, .1);
  color: var(--c-brand-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pd-hero__kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-brand);
}

.pd-hero__title {
  margin-top: 18px;
  font-size: clamp(2.5rem, 4.6vw, 4.3rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.034em;
  color: var(--c-ink);
}

.pd-hero__title em { font-style: normal; color: var(--c-brand); }

.pd-hero__lead {
  max-width: 50ch;
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.72;
  color: var(--c-ink-soft);
}

.pd-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.pd-hero__cta .btn { display: inline-flex; }

.btn--outline {
  padding-inline: 22px;
  color: var(--c-navy);
  box-shadow: inset 0 0 0 1px var(--c-line);
  font-size: 15px;
  font-weight: 600;
  transition: box-shadow .25s var(--ease), background .25s var(--ease);
}

.btn--outline:hover { background: var(--c-surface); box-shadow: inset 0 0 0 1px #CBD5E1; }

/* Stüdyo sahnesi: gri gradyan zemin, zemin gölgesi, ince ızgara dokusu */
.pd-hero__media {
  position: relative;
  aspect-ratio: 5 / 4;
  max-height: 640px;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(55% 40% at 50% 96%, rgba(16, 39, 63, .16), transparent 72%),
    radial-gradient(70% 60% at 30% 0%, rgba(255, 255, 255, .9), transparent 60%),
    linear-gradient(180deg, #F1F4F8 0%, #E6EBF1 100%);
}

.pd-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 39, 63, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 39, 63, .045) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(70% 70% at 50% 50%, #000 30%, transparent 100%);
          mask-image: radial-gradient(70% 70% at 50% 50%, #000 30%, transparent 100%);
  pointer-events: none;
}

.pd-hero__media img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 7% 8% 4%;
  mix-blend-mode: multiply;
}

/* Öne çıkan değerler — sahnenin alt kenarına binen beyaz kart */
.pd-facts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: -44px;
  margin-inline: clamp(0px, 3vw, 40px);
  border-radius: 8px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  box-shadow: 0 30px 60px -36px rgba(16, 39, 63, .35);
}

.pd-facts li {
  padding: 22px 26px;
  border-right: 1px solid var(--c-line);
}

.pd-facts li:last-child { border-right: 0; }

.pd-facts strong {
  display: block;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--c-ink);
}

.pd-facts strong em { font-style: normal; color: var(--c-brand); }

.pd-facts span {
  display: block;
  margin-top: 6px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--c-ink-soft);
}

/* ---------- 14.2 Bölüm başlığı (ortak) ---------- */
.pd-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
  gap: clamp(20px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(32px, 4vw, 52px);
}

.pd-head h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.028em;
  color: var(--c-ink);
}

.pd-head h2 em { font-style: normal; color: var(--c-brand); }

.pd-head p {
  max-width: 46ch;
  font-size: 16px;
  line-height: 1.72;
  color: var(--c-ink-soft);
}

/* ---------- 14.3 360° sahnesi — ana sayfa hero'suyla aynı kurgu ---------- */
.pd-video {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  height: clamp(560px, 72vh, 760px);
  overflow: hidden;
  color: #fff;
  background: linear-gradient(180deg, #081B2F 0%, #06152A 45%, #050E1A 100%);
}

/* Video sağa yaslı, tam yükseklik; sol kenarı karanlığa erir */
.pd-video__media {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .55) 24%, #000 46%);
          mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .55) 24%, #000 46%);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

.pd-video__media video {
  display: block;
  height: 90%;
  width: auto;
  max-width: none;
  filter: brightness(.94) contrast(1.05);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 84%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 84%, transparent 100%);
}

.pd-video__grade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: #0B2B4E;
  mix-blend-mode: multiply;
  opacity: .22;
}

.pd-video__vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 14, 26, .85) 0%, rgba(5, 14, 26, .5) 30%, rgba(5, 14, 26, 0) 52%),
    linear-gradient(to top, rgba(5, 14, 26, .8) 0%, rgba(5, 14, 26, 0) 30%),
    linear-gradient(to bottom, rgba(5, 14, 26, .5) 0%, rgba(5, 14, 26, 0) 22%);
}

.pd-video__inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.pd-video__inner h2 {
  max-width: 12ch;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.032em;
  color: #fff;
}

.pd-video__inner h2 em { font-style: normal; color: var(--c-brand); }

.pd-video__inner p {
  max-width: 44ch;
  margin-top: 20px;
  font-size: 16.5px;
  line-height: 1.72;
  color: rgba(255, 255, 255, .7);
}



/* ---------- 14.1c İletişim sayfası: bilgi kartları + harita ---------- */
.cpage { padding-bottom: clamp(40px, 5vw, 64px); }

.cpage__head { max-width: 720px; }

.cinfo {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
  margin-top: clamp(36px, 4.5vw, 56px);
}

.cinfo__item {
  padding: 26px 24px 24px;
  border-radius: 8px;
  border: 1px solid var(--c-line);
  background: var(--c-white);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

.cinfo__item:hover {
  transform: translateY(-4px);
  border-color: #D5DEE8;
  box-shadow: 0 28px 48px -36px rgba(16, 39, 63, .45);
}

.cinfo__ico {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--c-navy);
  color: #fff;
}

.cinfo__ico svg { width: 19px; height: 19px; }

.cinfo__label {
  display: block;
  margin-top: 20px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-ink-light);
}

.cinfo__value {
  display: block;
  margin-top: 8px;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.25;
  color: var(--c-ink);
  transition: color .25s var(--ease);
}

.cinfo__value--sm { font-size: 16px; font-weight: 500; letter-spacing: -.01em; line-height: 1.5; }

a.cinfo__value:hover { color: var(--c-brand-deep); }

.cinfo__note {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--c-ink-soft);
}

.cmap { padding: 0 0 clamp(64px, 8vw, 104px); background: var(--c-white); }

.cmap__frame {
  position: relative;
  aspect-ratio: 21 / 9;
  max-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--c-line);
  background: #EEF2F6;
}

.cmap__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(.92);
}

.cmap__pin {
  position: absolute;
  left: 22px;
  bottom: 22px;
  max-width: 340px;
  padding: 18px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--c-line);
  box-shadow: 0 24px 40px -28px rgba(16, 39, 63, .5);
  backdrop-filter: blur(6px);
}

.cmap__pin strong { display: block; font-size: 16px; font-weight: 600; color: var(--c-ink); }
.cmap__pin span   { display: block; margin-top: 4px; font-size: 13.5px; line-height: 1.5; color: var(--c-ink-soft); }
.cmap__pin em     { display: inline-block; margin-top: 10px; font-style: normal; font-size: 13.5px; font-weight: 600; color: var(--c-brand-deep); }

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

@media (max-width: 600px) {
  .cinfo { grid-template-columns: 1fr; }
  .cmap__frame { aspect-ratio: 4 / 3; max-height: none; }
  .cmap__pin { left: 12px; right: 12px; bottom: 12px; max-width: none; }
}

/* ---------- 14.1b Çağrı merkezi kartı (teknik servis) ---------- */
.svc-card {
  align-self: center;
  padding: clamp(28px, 3vw, 40px);
  border-radius: 8px;
  color: #fff;
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(22, 163, 239, .18), transparent 60%),
    linear-gradient(160deg, #0F2B45 0%, #0A1F36 60%, #071829 100%);
  box-shadow: 0 40px 70px -40px rgba(15, 43, 69, .6);
}

.svc-card__label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--c-brand);
}

.svc-card__phone {
  display: block;
  margin-top: 12px;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1;
  color: #fff;
  transition: color .25s var(--ease);
}

.svc-card__phone:hover { color: var(--c-brand); }

.svc-card__hours {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
}

.svc-card__list { margin-top: 26px; border-top: 1px solid rgba(255, 255, 255, .12); }

.svc-card__list li { padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.svc-card__list li:last-child { border-bottom: 0; }

.svc-card__list strong { display: block; font-size: 15.5px; font-weight: 600; color: #fff; }
.svc-card__list span { display: block; margin-top: 2px; font-size: 13.5px; line-height: 1.5; color: rgba(255, 255, 255, .58); }

@media (max-width: 1000px) { .svc-card { order: 0; } }

/* ---------- 14.2a Fotoğraf sahnesi (peron sayfası) ---------- */
.pd-hero__media--photo::before { display: none; }
.pd-hero__media--photo img {
  object-fit: cover;
  object-position: 62% 50%;
  padding: 0;
  mix-blend-mode: normal;
}

/* ---------- 14.2b Ekran görüntüsü çerçevesi (yazılım sayfası) ---------- */
.pd-hero__media--screen { display: grid; place-items: center; padding: 6%; }
.pd-hero__media--screen::before { display: none; }

.screenframe {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--c-line);
  box-shadow: 0 40px 70px -40px rgba(16, 39, 63, .45);
}

.screenframe__bar {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--c-line-soft);
  background: #F6F8FB;
}

.screenframe__bar i { width: 9px; height: 9px; border-radius: 50%; background: #D6DEE7; }

.screenframe img {
  width: 100%;
  height: auto;
  padding: 0;
  mix-blend-mode: normal;
}

/* ---------- 14.3c Nasıl çalışır — üç adım ---------- */
.flow { padding: clamp(64px, 8vw, 112px) 0; background: var(--c-surface); }

.flow__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  counter-reset: none;
}

.flow__steps li {
  position: relative;
  padding: 28px 26px 30px;
  border-radius: 6px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
}

.flow__num {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--c-navy);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
}

.flow__steps h3 {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.018em;
  color: var(--c-ink);
}

.flow__steps p {
  margin-top: 8px;
  font-size: 14.5px;
  line-height: 1.68;
  color: var(--c-ink-soft);
}

/* ---------- 14.3c1 Mozaik galeri (sahadan kareler) ---------- */
.mosaic { padding: 0 0 clamp(64px, 8vw, 112px); background: var(--c-white); }

.mosaic__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(180px, 20vw, 300px);
  gap: clamp(10px, 1.2vw, 16px);
}

.mosaic__item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #E6EBF1;
}

.mosaic__item--lg   { grid-column: span 2; grid-row: span 2; }
.mosaic__item--tall { grid-row: span 2; }

.mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  transition: transform 1s var(--ease);
}

.mosaic__item:hover img { transform: scale(1.05); }



@media (max-width: 900px) {
  .mosaic__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: clamp(160px, 34vw, 260px); }
  .mosaic__item--lg { grid-column: span 2; }
}

/* ---------- 14.3c2 Kontrol listesi (gelişmiş otomasyon) ---------- */
.checklist { padding: clamp(64px, 8vw, 112px) 0; background: var(--c-white); border-top: 1px solid var(--c-line-soft); }

.checklist__grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  column-gap: clamp(24px, 5vw, 80px);
  row-gap: 0;
  align-items: start;
}

.checklist__side { position: sticky; top: calc(var(--header-h-sm) + 24px); }

.checklist__side h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.028em;
  color: var(--c-ink);
}

.checklist__side h2 em { font-style: normal; color: var(--c-brand); }

.checklist__side p {
  max-width: 40ch;
  margin-top: 16px;
  font-size: 15.5px;
  line-height: 1.72;
  color: var(--c-ink-soft);
}

.checklist__list li {
  position: relative;
  padding: 16px 0 16px 38px;
  border-bottom: 1px solid var(--c-line-soft);
}

.checklist__list li:first-child { border-top: 1px solid var(--c-line-soft); }

.checklist__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(22, 163, 239, .12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B4C96' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 12.5 4 4 8-9'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.checklist__list strong {
  display: block;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -.012em;
  line-height: 1.4;
  color: var(--c-ink);
}

.checklist__list strong sup { color: var(--c-brand); font-size: .7em; }

.checklist__list span {
  display: block;
  margin-top: 3px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-ink-soft);
}

.checklist__note {
  grid-column: 2;
  margin-top: 14px;
  font-size: 13px;
  color: var(--c-ink-light);
}

.checklist__note sup { color: var(--c-brand); }

@media (max-width: 900px) {
  .checklist__grid { grid-template-columns: 1fr; }
  .checklist__side { position: static; }
  .checklist__note { grid-column: 1; }
}

/* ---------- 14.3d Açıklayıcı metin ---------- */
.seo { padding: clamp(64px, 8vw, 104px) 0; background: var(--c-white); }

.seo__grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: start;
}

.seo h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.028em;
  color: var(--c-ink);
}

.seo h2 em { font-style: normal; color: var(--c-brand); }

.seo__text p {
  font-size: 16px;
  line-height: 1.78;
  color: var(--c-ink-soft);
}

.seo__text p + p { margin-top: 16px; }

@media (max-width: 900px) {
  .flow__steps { grid-template-columns: 1fr; }
  .seo__grid { grid-template-columns: 1fr; }
}

/* ---------- 14.3b Uygulama ekranları (el terminali vb.) ---------- */
.pd-screens { padding: clamp(24px, 3vw, 40px) 0 0; background: var(--c-white); }

.pd-screens__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 28px);
}

.screen {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 6px;
  background: #F3F6F9;
}

.screen__media {
  position: relative;
  isolation: isolate;               /* multiply, bu kutunun kendi zeminine karşı çalışır */
  aspect-ratio: 4 / 4.2;
  overflow: hidden;
  background:
    radial-gradient(60% 50% at 50% 100%, rgba(16, 39, 63, .09), transparent 70%),
    #F3F6F9;
}

.screen__media img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8% 12% 0;
  mix-blend-mode: multiply;
  transition: transform .8s var(--ease);
}

.screen:hover .screen__media img { transform: translateY(-4px); }

.screen figcaption { padding: 22px 24px 26px; }

.screen__step {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--c-brand-deep);
}

.screen h3 {
  margin-top: 8px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.018em;
  color: var(--c-ink);
}

.screen p {
  margin-top: 6px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--c-ink-soft);
}

@media (max-width: 900px) { .pd-screens__grid { grid-template-columns: 1fr; } }

/* ---------- 14.4 Özellik kartları ---------- */
.pd-features { padding: clamp(64px, 8vw, 112px) 0; background: var(--c-white); }

.pd-features__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.feat {
  padding: 28px 26px 30px;
  border-radius: 6px;
  border: 1px solid var(--c-line);
  background: var(--c-white);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

.feat:hover {
  transform: translateY(-4px);
  border-color: #D5DEE8;
  box-shadow: 0 28px 48px -36px rgba(16, 39, 63, .45);
}

.feat__ico {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(22, 163, 239, .1);
  color: var(--c-brand-deep);
}

.feat__ico svg { width: 22px; height: 22px; }

.feat h3 {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.018em;
  line-height: 1.25;
  color: var(--c-ink);
}

.feat p {
  margin-top: 8px;
  font-size: 14.5px;
  line-height: 1.68;
  color: var(--c-ink-soft);
}

/* ---------- 14.5 Teknik özellikler ---------- */
.pd-specs { padding: clamp(64px, 8vw, 112px) 0; background: var(--c-surface); }

.pd-specs__grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

.pd-specs__side h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.028em;
  color: var(--c-ink);
}

.pd-specs__side p {
  max-width: 40ch;
  margin-top: 16px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--c-ink-soft);
}

.pd-specs__side .btn { display: inline-flex; margin-top: 26px; }

.spec-table {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--c-line);
  background: var(--c-white);
}

.spec-table div {
  display: grid;
  grid-template-columns: minmax(0, .38fr) minmax(0, .62fr);
  gap: 20px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--c-line-soft);
}

.spec-table div:last-child { border-bottom: 0; }

.spec-table dt {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-ink-light);
  padding-top: 2px;
}

.spec-table dd {
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-ink);
}

/* ---------- 14.6 Ödeme yöntemleri ---------- */
.pd-pay { padding: clamp(64px, 8vw, 112px) 0; background: var(--c-white); }

.pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 12px;
}

.pay {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 6px;
  border: 1px solid var(--c-line);
  background: var(--c-white);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--c-ink);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}

.pay:hover { border-color: #CBD5E1; background: var(--c-surface); }

.pay svg {
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--c-brand-deep);
}

/* ---------- 14.7 CTA bandı ---------- */
.pd-cta {
  padding: clamp(56px, 7vw, 88px) 0;
  color: #fff;
  background: linear-gradient(160deg, #0F2B45 0%, #0A1F36 60%, #071829 100%);
}

.pd-cta__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.pd-cta h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.028em;
}

.pd-cta h2 em { font-style: normal; color: var(--c-brand); }

.pd-cta p { margin-top: 8px; font-size: 15.5px; color: rgba(255, 255, 255, .68); }

.pd-cta__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.pd-cta__btns .btn { display: inline-flex; }

/* ---------- 14.8 Duyarlı ---------- */
@media (max-width: 1000px) {
  .pd-hero__grid { grid-template-columns: 1fr; }
  .pd-hero__media { order: -1; aspect-ratio: 4 / 3; max-height: 460px; }
  .pd-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 32px; margin-inline: 0; }
  .pd-facts li { border-right: 0; border-bottom: 1px solid var(--c-line); }
  .pd-facts li:nth-child(odd) { border-right: 1px solid var(--c-line); }
  .pd-facts li:nth-last-child(-n+2) { border-bottom: 0; }
  .pd-head { grid-template-columns: 1fr; align-items: start; }
  .pd-features__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pd-specs__grid { grid-template-columns: 1fr; }

  /* Mobil: video üstte ortalı bir blok, metin altta */
  .pd-video { height: auto; min-height: 0; }
  .pd-video__media {
    position: relative;
    right: auto;
    justify-content: center;
    height: clamp(320px, 70vw, 520px);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
  }
  .pd-video__media video { height: 94%; }
  .pd-video__vignette {
    background:
      linear-gradient(to top, rgba(5, 14, 26, 1) 0%, rgba(5, 14, 26, 0) 40%),
      linear-gradient(to bottom, rgba(5, 14, 26, .5) 0%, rgba(5, 14, 26, 0) 18%);
  }
  .pd-video__inner { height: auto; margin-top: -16px; padding-bottom: clamp(48px, 7vw, 72px); }
}

@media (max-width: 600px) {
  .pd-facts { grid-template-columns: 1fr; }
  .pd-facts li,
  .pd-facts li:nth-child(odd) { padding: 18px 22px; border-right: 0; border-bottom: 1px solid var(--c-line); }
  .pd-facts li:last-child { border-bottom: 0; }
  .pd-features__grid { grid-template-columns: 1fr; }
  .pd-hero__cta .btn, .pd-cta__btns .btn { width: 100%; justify-content: center; }
  .spec-table div { grid-template-columns: 1fr; gap: 4px; }
}

/* ============================================================
   8.7 HERO — mobil: görsel, altındaki metin alanına gradyanla erir
   ============================================================ */
@media (max-width: 1100px) {
  .hero__stage::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 60%;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(5, 14, 26, 0) 0%, rgba(5, 14, 26, .45) 40%, rgba(5, 14, 26, .92) 78%, var(--hero-ink) 100%);
  }
  .hero__media video,
  .hero__media img {
    -webkit-mask-image: none;
            mask-image: none;
  }
  .hero__media--wide img { object-position: 62% 42%; }
  .hero__vignette {
    background: linear-gradient(to bottom, rgba(5, 14, 26, .55) 0%, rgba(5, 14, 26, 0) 22%);
  }
  .hero__inner { margin-top: clamp(-120px, -14vw, -64px); }
  .hero__stage { height: clamp(360px, 84vw, 560px); }
}
