/* =====================================================================
   YANITRO — tasarım sistemi
   Koyu sinematik giriş → açık zemine yumuşak geçiş.
   Display: Bricolage Grotesque · Body: Onest · Vurgu: elektrik limon (#E3FF4F)
   ===================================================================== */

@font-face {
  font-family: "Bricolage Grotesque";
  font-weight: 200 800;
  font-display: swap;
  src: url("../fonts/bricolage-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+20A0-20C0;
}
@font-face {
  font-family: "Bricolage Grotesque";
  font-weight: 200 800;
  font-display: swap;
  src: url("../fonts/bricolage-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Onest";
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/onest-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+20A0-20C0;
}
@font-face {
  font-family: "Onest";
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/onest-latin.woff2") format("woff2");
}

:root {
  --ink: #0A0D12;
  --ink-2: #10151D;
  --ink-3: #171E29;
  --lime: #E3FF4F;
  --lime-soft: rgba(227, 255, 79, 0.12);
  --mist: rgba(226, 234, 245, 0.62);
  --white: #F2F6FC;
  --hairline: rgba(226, 234, 245, 0.10);

  --sand: #F5F2EB;
  --sand-2: #EDE8DD;
  --card-l: #FDFCF9;
  --ink-on-sand: #191D16;
  --soft-on-sand: #5C6055;
  --pine: #1E4D33;
  --pine-soft: #DCEAD9;
  --line-l: #E0DACB;

  --display: "Bricolage Grotesque", Georgia, sans-serif;
  --body: "Onest", -apple-system, "Segoe UI", sans-serif;

  --wa-bg: #0B141A;
  --wa-header: #202C33;
  --wa-in: #202C33;
  --wa-out: #005C4B;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--ink);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
::selection { background: var(--lime); color: var(--ink); }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--display); letter-spacing: -0.015em; }

/* yıldız tozu / grain */
.grain {
  position: fixed; inset: 0; z-index: 2000; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

/* ============================ NAV ============================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(10, 13, 18, 0.72); backdrop-filter: blur(14px); border-color: var(--hairline); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; }
.logo {
  font-family: var(--display); font-weight: 800; font-size: 1.45rem;
  color: var(--white); text-decoration: none; letter-spacing: -0.03em;
}
.logo .dot { color: var(--lime); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a:not(.btn) {
  color: var(--mist); text-decoration: none; font-size: .9rem; font-weight: 500;
  transition: color .2s;
}
.nav-links a:not(.btn):hover { color: var(--white); }

/* nav açık zemine geçince */
.nav.on-light.scrolled { background: rgba(245, 242, 235, 0.8); border-color: var(--line-l); }
.nav.on-light .logo { color: var(--ink-on-sand); }
.nav.on-light .nav-links a:not(.btn) { color: var(--soft-on-sand); }
.nav.on-light .nav-links a:not(.btn):hover { color: var(--ink-on-sand); }

/* ============================ BUTONLAR ============================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-weight: 700; font-size: .95rem;
  padding: 14px 28px; border-radius: 100px;
  text-decoration: none; cursor: pointer; border: none;
  transition: transform .25s cubic-bezier(.2,.8,.3,1), box-shadow .25s, background .25s, color .25s;
}
.btn-lime { background: var(--lime); color: var(--ink); }
.btn-lime:hover { transform: translateY(-2px); box-shadow: 0 10px 34px rgba(227,255,79,.25); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(226,234,245,.25); }
.btn-ghost:hover { border-color: var(--white); transform: translateY(-2px); }
.btn-dark { background: var(--ink-on-sand); color: var(--sand); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(25,29,22,.3); }
.btn-big { font-size: 1.05rem; padding: 17px 36px; }
.nav .btn { padding: 10px 22px; font-size: .88rem; }

/* ============================ HERO ============================ */
.hero {
  min-height: 100svh;
  display: grid; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 24px 80px;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 900px 480px at 50% -10%, rgba(227,255,79,.07), transparent 60%),
    radial-gradient(ellipse 700px 500px at 85% 110%, rgba(30,77,51,.30), transparent 65%);
  pointer-events: none;
}

/* hero görseli: sağa yaslı, sol kenarı zemine eriyerek karışır */
.hero-art {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0; animation: heroArt 1.6s ease .2s forwards;
}
.hero-art img {
  position: absolute; top: 0; right: 0; height: 100%;
  width: min(68%, 1100px);
  object-fit: cover; object-position: 70% 22%;
  filter: hue-rotate(-8deg) saturate(1.06) brightness(1.02);
  -webkit-mask-image: linear-gradient(to left, #000 58%, transparent 97%);
  mask-image: linear-gradient(to left, #000 58%, transparent 97%);
}
.hero-art::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--ink) 0, rgba(10,13,18,0) 16%),
    linear-gradient(to right, rgba(10,13,18,.55), rgba(10,13,18,.2) 42%, transparent 58%);
}
@keyframes heroArt { to { opacity: 1; } }

.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 1160px; margin: 0 auto;
  text-align: left;
}
.hero .hero-inner h1 { max-width: 14ch; }
.hero .hero-inner p { margin: 0 0 42px; max-width: 33rem; }
.hero .hero-inner .hero-cta { justify-content: flex-start; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--mist); border: 1px solid var(--hairline);
  padding: 8px 18px; border-radius: 100px; margin-bottom: 34px;
  background: rgba(226,234,245,.03);
}
.hero-eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime); animation: heartbeat 2.4s infinite;
}
@keyframes heartbeat { 0%,100% { box-shadow: 0 0 0 0 rgba(227,255,79,.45);} 50% { box-shadow: 0 0 0 8px rgba(227,255,79,0);} }
.hero h1 {
  font-size: clamp(2.5rem, 5.6vw, 4.4rem);
  font-weight: 700; line-height: 1.12; margin-bottom: 26px;
}
.hero h1 .lime { color: var(--lime); }
.hero p {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--mist);
  max-width: 40rem; margin: 0 auto 42px; font-weight: 300;
}
.hero p b { color: var(--white); font-weight: 600; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scrollhint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  color: var(--mist); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scrollhint::after {
  content: ""; width: 1px; height: 42px;
  background: linear-gradient(var(--lime), transparent);
  animation: drip 1.8s infinite;
}
@keyframes drip { from { transform: scaleY(0); transform-origin: top; } 55% { transform: scaleY(1); } to { opacity: 0; transform: scaleY(1); } }

/* .reveal — sayfa açılış animasyonu */
.reveal { opacity: 0; transform: translateY(26px); animation: reveal .8s cubic-bezier(.2,.8,.2,1) forwards; }
.reveal.d1 { animation-delay: .12s; } .reveal.d2 { animation-delay: .24s; }
.reveal.d3 { animation-delay: .36s; } .reveal.d4 { animation-delay: .5s; }
@keyframes reveal { to { opacity: 1; transform: none; } }

/* ============================ SAHNELER (ortak) ============================ */
.scene { position: relative; }
.scene .stage {
  height: 100svh; display: flex; align-items: center; overflow: hidden;
  position: relative;
}
.stage-grid {
  display: grid; grid-template-columns: minmax(300px, 1fr) auto;
  align-items: center; gap: clamp(24px, 6vw, 110px);
  width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px;
}
.captions { position: relative; min-height: 240px; }
.caption { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; opacity: 0; visibility: hidden; }
.caption h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 700; line-height: 1.18; white-space: pre-line; margin-bottom: 16px; }
.caption h2 .lm { color: var(--lime); }
.caption p { color: var(--mist); font-size: 1.02rem; max-width: 30rem; font-weight: 300; }
.scene-tag {
  position: absolute; top: 92px; left: 50%; transform: translateX(-50%);
  font-size: .76rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--mist); display: flex; align-items: center; gap: 10px; white-space: nowrap;
}
.scene-tag i { font-style: normal; color: var(--lime); }

/* ============================ TELEFON ============================ */
.phone {
  /* Yükseklik asla (ekran - 170px)'i aşmaz: üstte sabit menü + sahne etiketi
     varken telefonun tepesi hiçbir ekranda kesilmez. */
  width: min(330px, 78vw, calc((100svh - 170px) / 2));
  aspect-ratio: 330 / 660;
  background: #0e0f11;
  border-radius: 44px; padding: 11px;
  box-shadow:
    0 0 0 1.5px rgba(226,234,245,.12),
    0 44px 110px rgba(0,0,0,.6),
    0 0 90px rgba(227,255,79,.05);
  position: relative; z-index: 2;
  will-change: transform;
}
.phone .notch {
  position: absolute; top: 21px; left: 50%; transform: translateX(-50%);
  width: 88px; height: 22px; border-radius: 12px; background: #0e0f11; z-index: 5;
}
.phone .screen {
  width: 100%; height: 100%; border-radius: 34px; overflow: hidden;
  display: flex; flex-direction: column; position: relative;
}
/* iOS durum çubuğu: saat + sinyal/wifi/pil — gerçekçilik için her ekranda */
.ph-status {
  position: absolute; top: 0; left: 0; right: 0; height: 44px;
  padding: 15px 20px 0; display: flex; justify-content: space-between;
  align-items: center; z-index: 6; pointer-events: none;
  color: #e9edef; font-size: .63rem; font-weight: 650; letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
}
.ph-status svg { width: 42px; height: 11px; display: block; }

/* ---- WhatsApp ekranı (koyu tema) ---- */
.wa-screen { background: var(--wa-bg); }
.wa-screen::before {
  content: ""; position: absolute; inset: 0; opacity: .06; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='90' height='90' viewBox='0 0 90 90' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23aebac1' stroke-width='1'%3E%3Ccircle cx='16' cy='18' r='5'/%3E%3Cpath d='M60 12l8 8m0-8l-8 8'/%3E%3Crect x='34' y='40' width='12' height='9' rx='2'/%3E%3Cpath d='M70 58c4-6 12-4 12 2s-8 8-12 2z'/%3E%3Cpath d='M12 66l6 10h-12z'/%3E%3Ccircle cx='58' cy='80' r='4'/%3E%3C/g%3E%3C/svg%3E");
}
.wa-header {
  background: var(--wa-header); padding: 46px 14px 12px;
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
  position: relative; z-index: 2;
}
.wa-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, #2a3942, #3b4a54);
  display: grid; place-items: center; color: #aebac1;
  font-family: var(--display); font-weight: 700; font-size: .85rem;
}
.wa-name { font-weight: 600; font-size: .88rem; color: #e9edef; line-height: 1.2; }
.wa-status { font-size: .68rem; color: #8696a0; }
.wa-status b { color: #4ac959; font-weight: 600; }
.wa-icons { margin-left: auto; color: #8696a0; font-size: .8rem; letter-spacing: 4px; }
.wa-chat {
  flex: 1; min-height: 0; padding: 14px 10px 12px;
  position: relative; z-index: 1;
  overflow: hidden;
}
/* WhatsApp alt çubuğu: mesaj alanı + mikrofon düğmesi */
.wa-composer {
  flex-shrink: 0; display: flex; align-items: center; gap: 8px;
  padding: 6px 9px 16px; position: relative; z-index: 2;
}
.wa-field {
  flex: 1; display: flex; align-items: center; gap: 9px;
  background: var(--wa-header); border-radius: 100px; padding: 9px 13px;
  color: #8696a0; font-size: .78rem;
}
.wa-field svg { width: 17px; height: 17px; flex-shrink: 0; }
.wa-field span { flex: 1; }
.wa-send {
  width: 38px; height: 38px; border-radius: 50%; background: #00A884;
  display: grid; place-items: center; flex-shrink: 0;
}
.wa-send svg { width: 18px; height: 18px; }
.wa-msg {
  max-width: 84%; padding: 7px 10px 8px;
  border-radius: 9px; font-size: .8rem; line-height: 1.42;
  color: #e9edef; white-space: pre-line;
  box-shadow: 0 1px 1px rgba(0,0,0,.3);
  visibility: hidden; opacity: 0;
}
.wa-msg.in  { background: var(--wa-in); align-self: flex-start; border-top-left-radius: 2px; }
.wa-msg.out { background: var(--wa-out); align-self: flex-end; border-top-right-radius: 2px; }
.wa-msg .t { display: block; font-size: .6rem; color: rgba(233,237,239,.5); text-align: right; margin-top: 3px; }
.wa-msg .t .tick { color: #53bdeb; }

/* ---- Voice / arama ekranı ---- */
.call-screen { background: linear-gradient(180deg, #10151d 0%, #0a0d12 100%); }
.call-face {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; padding: 64px 20px 30px;
}
.call-face.incoming { justify-content: space-between; }
.call-avatar {
  width: 92px; height: 92px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #2b3a2e, #16211a);
  border: 1px solid rgba(227,255,79,.25);
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 800; font-size: 2rem; color: var(--lime);
  box-shadow: 0 0 60px rgba(227,255,79,.12);
}
.call-name { font-family: var(--display); font-weight: 700; font-size: 1.25rem; margin-top: 18px; color: var(--white); }
.call-sub { color: var(--mist); font-size: .82rem; margin-top: 5px; letter-spacing: .04em; }
.call-sub.blink { animation: blinker 1.6s infinite; }
@keyframes blinker { 50% { opacity: .35; } }
.call-actions { display: flex; gap: 64px; margin-bottom: 12px; }
.call-btn {
  width: 62px; height: 62px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.5rem;
}
.call-btn.no { background: #E5484D; }
.call-btn.yes { background: #30A46C; animation: wobble 1.4s infinite; }
@keyframes wobble { 0%,100% { transform: none; } 20% { transform: rotate(-12deg) scale(1.06); } 40% { transform: rotate(10deg); } 60% { transform: rotate(-6deg); } }

.call-face.active { justify-content: flex-start; opacity: 0; visibility: hidden; padding-bottom: 20px; }
.call-timer { font-variant-numeric: tabular-nums; color: var(--mist); font-size: .82rem; margin-top: 4px; }
.waveform { display: flex; align-items: center; gap: 3.5px; height: 40px; margin: 16px 0 12px; }

/* iPhone tarzı görüşme kontrolleri */
.call-controls { margin-top: auto; width: 100%; display: flex; flex-direction: column; align-items: center; gap: 14px; padding-top: 12px; }
.cc-row { display: flex; gap: 30px; }
.cc { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.cc .cc-btn {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(226,234,245,.10); color: rgba(226,234,245,.85);
  display: grid; place-items: center;
}
.cc .cc-btn svg { width: 22px; height: 22px; }
.cc.on .cc-btn { background: var(--white); color: var(--ink); }
.cc .cc-label { font-size: .58rem; color: rgba(226,234,245,.55); letter-spacing: .02em; }
.cc-end {
  width: 56px; height: 56px; border-radius: 50%; background: #E5484D;
  display: grid; place-items: center;
}
.cc-end svg { width: 26px; height: 26px; }
.waveform i {
  width: 3.5px; border-radius: 3px; background: var(--lime); height: 12%;
  animation: wave 1.15s ease-in-out infinite;
}
@keyframes wave { 0%,100% { height: 14%; opacity: .55; } 50% { height: var(--h, 70%); opacity: 1; } }
.transcript { width: 100%; flex: 1; min-height: 0; overflow: hidden; padding: 0 6px; }
.tr-flow { display: flex; flex-direction: column; gap: 9px; will-change: transform; }
.tr-line {
  font-size: .8rem; line-height: 1.45; color: rgba(226,234,245,.38);
  padding-left: 12px; border-left: 2px solid rgba(226,234,245,.12);
  visibility: hidden; opacity: 0;
  transition: color .3s;
}
.tr-line .who { display: block; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(226,234,245,.3); margin-bottom: 1px; }
.tr-line.on { color: var(--white); border-left-color: var(--lime); }
.tr-line.on .who { color: var(--lime); }

/* ============================ KÖPRÜ (koyu→açık) ============================ */
.bridge {
  height: 46vh;
  background: linear-gradient(180deg, var(--ink) 0%, #3c4136 55%, var(--sand) 100%);
  position: relative;
}
.bridge::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(245,242,235,.25), transparent 70%);
}

/* ============================ AÇIK BÖLGE ============================ */
.light-zone { background: var(--sand); color: var(--ink-on-sand); }
.light-zone section { padding: 110px 0; }
.sec-eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--pine); margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
}
.sec-eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--pine); }
.light-zone h2.sec-title {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem); font-weight: 700; line-height: 1.16;
  max-width: 26ch; margin-bottom: 18px;
}
.sec-lead { color: var(--soft-on-sand); font-size: 1.06rem; max-width: 42rem; font-weight: 300; }
.sec-lead b { color: var(--ink-on-sand); font-weight: 600; }

/* ---- panel bölümü ---- */
.panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: center; margin-top: 20px; }
.panel-points { list-style: none; margin-top: 30px; display: grid; gap: 18px; }
.panel-points li { display: flex; gap: 14px; align-items: flex-start; font-size: .98rem; color: var(--soft-on-sand); }
.panel-points li b { color: var(--ink-on-sand); font-weight: 600; }
.panel-points .pin {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px;
  background: var(--pine-soft); color: var(--pine);
  display: grid; place-items: center; font-size: .8rem; font-weight: 800;
}
.mini-panel {
  background: #FFFFFF; border: 1px solid var(--line-l); border-radius: 22px;
  padding: 24px; box-shadow: 0 24px 54px rgba(25,29,22,.10);
  /* Döndürme yok: eğik kart bazı ekranlarda yazıyı bulanıklaştırıyordu */
}
.mini-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.mini-head .shop { font-family: var(--display); font-weight: 700; font-size: 1.02rem; }
.mini-badge { font-size: .68rem; font-weight: 800; color: var(--pine); background: var(--pine-soft); padding: 4px 12px; border-radius: 100px; }
.mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
.mini-stat { background: var(--sand); border-radius: 14px; padding: 12px 8px 10px; text-align: center; }
.mini-stat .v { font-family: var(--display); font-weight: 800; font-size: 1.3rem; }
.mini-stat .k { font-size: .7rem; color: #4A4E44; font-weight: 600; }
.mini-order {
  border: 1px solid var(--line-l); border-left: 4px solid #C9A227;
  border-radius: 12px; padding: 12px 14px; margin-bottom: 8px;
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  background: #fff;
}
.mini-order .who { font-weight: 700; font-size: .88rem; }
.mini-order .what { font-size: .78rem; color: #4A4E44; }
.mini-order .sum { font-family: var(--display); font-weight: 800; font-size: .95rem; white-space: nowrap; }
.mini-order.ok { border-left-color: var(--pine); }
.mini-note { font-size: .72rem; color: var(--soft-on-sand); text-align: center; margin-top: 12px; }

/* ---- sektörler ---- */
.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 50px; }
.sector {
  background: var(--card-l); border: 1px solid var(--line-l); border-radius: 20px;
  padding: 26px 24px 22px; cursor: pointer; position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.sector:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(25,29,22,.08); border-color: #cfc8b6; }
.sector .s-ico {
  width: 46px; height: 46px; border-radius: 14px; margin-bottom: 16px;
  background: var(--pine-soft); color: var(--pine);
  display: grid; place-items: center;
}
.sector .s-ico svg { width: 24px; height: 24px; }
.sector h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.sector .s-tag { font-size: .62rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); background: var(--lime); padding: 3px 10px; border-radius: 100px; }
.sector p { font-size: .88rem; color: var(--soft-on-sand); }
.sector .s-more {
  font-size: .8rem; font-weight: 700; margin-top: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pine); color: #fff; padding: 10px 18px; border-radius: 100px;
  transition: background .25s, transform .25s, box-shadow .25s;
}
.sector .s-more svg { width: 15px; height: 15px; }
.sector .s-more::after { content: "→"; transition: transform .3s; }
.sector:hover .s-more { background: #163B27; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(30,77,51,.25); }
.sector:hover .s-more::after { transform: translateX(4px); }

/* ---- örnek konuşma penceresi (telefon çerçeveli) ---- */
.xmodal { position: fixed; inset: 0; z-index: 500; display: none; align-items: center; justify-content: center; padding: 16px; }
.xmodal.show { display: flex; }
.xm-back { position: absolute; inset: 0; background: rgba(10,13,18,.72); backdrop-filter: blur(10px); }
.xm-box { position: relative; display: flex; flex-direction: column; align-items: center; gap: 14px; animation: xmIn .35s cubic-bezier(.2,.8,.2,1); }
@keyframes xmIn { from { opacity: 0; transform: translateY(26px) scale(.96); } }
.xm-tabs { display: flex; gap: 5px; background: rgba(226,234,245,.09); border: 1px solid rgba(226,234,245,.16); padding: 5px; border-radius: 100px; }
.xm-tab {
  border: none; cursor: pointer; font-family: var(--body); font-weight: 700; font-size: .84rem;
  padding: 9px 20px; border-radius: 100px; background: transparent; color: var(--mist);
  transition: background .25s, color .25s; display: inline-flex; align-items: center; gap: 8px;
}
.xm-tab svg { width: 15px; height: 15px; }
.xm-tab.on { background: var(--lime); color: var(--ink); }
.xm-close {
  position: absolute; top: 46px; right: -54px; width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(226,234,245,.3); background: rgba(10,13,18,.55); color: var(--white);
  cursor: pointer; display: grid; place-items: center; transition: border-color .2s, transform .2s;
}
.xm-close:hover { border-color: var(--white); transform: rotate(90deg); }
.xm-phone {
  width: min(330px, 88vw, calc((100svh - 200px) / 2));
  will-change: auto;
}
/* İçerik ne kadar uzun olursa olsun telefon oranı bozulmasın:
   ekran, çerçeveye mutlak sabitlenir; uzun konuşma içeride kaydırılır. */
.xm-phone .screen { position: absolute; inset: 11px; width: auto; height: auto; }
.xm-phone .wa-chat { overflow-y: auto; min-height: 0; }
.xm-phone .wa-msg { visibility: visible; opacity: 1; }
.xm-phone .wa-flow { display: flex; flex-direction: column; gap: 8px; }
.xm-phone .call-face.active { opacity: 1; visibility: visible; position: relative; height: 100%; padding-top: 44px; }
.xm-phone .transcript { overflow-y: auto; }
.xm-phone .tr-line { visibility: visible; opacity: 1; color: rgba(226,234,245,.82); }
.xm-phone .tr-line .who { color: rgba(226,234,245,.45); }
.xm-phone .tr-line.ai-line { border-left-color: rgba(227,255,79,.55); }
.xm-phone .tr-line.ai-line .who { color: var(--lime); }

/* ---- nasıl çalışır ---- */
.steps { margin-top: 50px; border-top: 1px solid var(--line-l); }
.step { display: grid; grid-template-columns: 100px 1fr; gap: 26px; padding: 36px 0; border-bottom: 1px solid var(--line-l); align-items: start; }
.step .n { font-family: var(--display); font-weight: 800; font-size: 2.8rem; color: transparent; -webkit-text-stroke: 1.5px var(--pine); line-height: 1; }
.step h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--soft-on-sand); max-width: 46rem; font-size: .98rem; }

/* ---- paketler ---- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 50px; align-items: stretch; }
.plan {
  background: var(--card-l); border: 1px solid var(--line-l); border-radius: 24px;
  padding: 34px 30px; display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.plan:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(25,29,22,.09); }
.plan.hot { background: var(--ink); color: var(--white); border-color: var(--ink); position: relative; }
.plan .p-name { font-family: var(--display); font-weight: 700; font-size: 1.3rem; margin-bottom: 4px; }
.plan .p-for { font-size: .84rem; color: var(--soft-on-sand); margin-bottom: 22px; }
.plan.hot .p-for { color: var(--mist); }
.plan ul { list-style: none; display: grid; gap: 11px; margin-bottom: 28px; }
.plan li { font-size: .9rem; display: flex; gap: 10px; align-items: baseline; color: var(--soft-on-sand); }
.plan.hot li { color: rgba(226,234,245,.75); }
.plan li::before { content: "✓"; font-weight: 800; color: var(--pine); }
.plan.hot li::before { color: var(--lime); }
.plan .p-cta { margin-top: auto; text-align: center; }
.plan .p-price { font-size: .84rem; color: var(--soft-on-sand); margin-bottom: 14px; text-align: center; font-style: italic; }
.plan.hot .p-price { color: var(--mist); }
.hot-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--lime); color: var(--ink); font-size: .68rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; padding: 6px 16px; border-radius: 100px;
}

/* ---- 4 soru ---- */
.qgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 50px; }
.qcard { background: var(--card-l); border: 1px solid var(--line-l); border-radius: 20px; padding: 30px 28px; }
.qcard .qn { font-family: var(--display); font-weight: 800; font-size: .95rem; color: var(--pine); margin-bottom: 12px; }
.qcard h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.qcard p { font-size: .92rem; color: var(--soft-on-sand); }

/* ---- demo CTA ---- */
.demo-wrap {
  background: var(--ink); border-radius: 32px; overflow: hidden; position: relative;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px;
  padding: clamp(36px, 5vw, 70px);
  color: var(--white);
}
.demo-wrap::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 500px 300px at 15% 0%, rgba(227,255,79,.1), transparent 60%);
}
.demo-wrap h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 700; line-height: 1.12; margin-bottom: 14px; position: relative; }
.demo-wrap h2 .lm { color: var(--lime); }
.demo-wrap .d-lead { color: var(--mist); font-size: 1rem; max-width: 30rem; margin-bottom: 30px; font-weight: 300; }
.demo-form { position: relative; display: grid; gap: 12px; align-content: start; }
.demo-form label { font-size: .78rem; font-weight: 600; color: var(--mist); letter-spacing: .04em; }
.demo-form input, .demo-form select {
  width: 100%; background: rgba(226,234,245,.06); border: 1px solid var(--hairline);
  color: var(--white); border-radius: 12px; padding: 13px 16px;
  font-family: var(--body); font-size: .95rem; outline: none;
  transition: border-color .2s;
}
.demo-form input:focus, .demo-form select:focus { border-color: var(--lime); }
.demo-form select option { color: var(--ink); }
.kvkk { display: flex; gap: 10px; align-items: flex-start; font-size: .74rem; color: var(--mist); }
.kvkk input { width: auto; margin-top: 3px; accent-color: var(--lime); }
.form-note { font-size: .76rem; color: var(--mist); }
.hp { position: absolute; left: -5000px; opacity: 0; pointer-events: none; }

/* ---- SSS ---- */
.faq-list { margin-top: 44px; max-width: 780px; }
.faq-item { border-bottom: 1px solid var(--line-l); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 40px 22px 0;
  font-weight: 600; font-size: 1.02rem; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-family: var(--display); font-size: 1.5rem; font-weight: 400; color: var(--pine);
  transition: transform .3s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item .faq-a { padding: 0 0 24px; color: var(--soft-on-sand); font-size: .95rem; max-width: 60rem; }

/* ---- footer ---- */
.footer { background: var(--ink); color: var(--mist); padding: 60px 0 40px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; }
.footer .logo { font-size: 1.6rem; }
.footer .tagline { font-size: .85rem; margin-top: 8px; max-width: 26rem; font-weight: 300; }
.footer .fine { font-size: .74rem; opacity: .6; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 900px) {
  /* hero: görsel üstte solgun fon, yazı altta ortalı */
  .hero { align-items: end; padding-bottom: 110px; }
  .hero-art img {
    width: 100%; height: 62svh;
    object-position: 62% 12%;
    -webkit-mask-image: linear-gradient(to bottom, #000 40%, transparent 96%);
    mask-image: linear-gradient(to bottom, #000 40%, transparent 96%);
  }
  .hero-art::after {
    background: linear-gradient(to top, var(--ink) 6%, rgba(10,13,18,.25) 60%, rgba(10,13,18,.15));
  }
  .hero .hero-inner { text-align: center; }
  .hero .hero-inner h1 { max-width: none; }
  .hero .hero-inner p { margin: 0 auto 42px; }
  .hero .hero-inner .hero-cta { justify-content: center; }

  /* Sahneler mobilde de PIN'li akar (konuşma kaydırdıkça gelir). Tek ekrana
     sığma düzeni: etiket menünün ALTINDA → yan yazı sabit yükseklikte (JS en
     uzun yazıya göre ölçer) → telefon MASAÜSTÜ TASARIMININ AYNISI, zoom ile
     HER PARÇASIYLA orantılı küçülür (ölçeği JS hesaplar: --phz). İç öğeler
     asla ayrı ayrı sıkışmaz/taşamaz — bütün telefon tek parça ölçeklenir. */
  .scene-tag { top: 96px; }
  .stage-grid { grid-template-columns: 1fr; gap: 12px; justify-items: center; text-align: center; padding-top: 122px; }
  .captions { min-height: 150px; width: 100%; order: -1; } /* gerçek yüksekliği JS yazar */
  .caption { align-items: center; justify-content: flex-start; }
  .caption h2 { font-size: 1.22rem; margin-bottom: 8px; }
  .caption p { font-size: .82rem; margin: 0 auto; }
  .phone { width: 330px; zoom: var(--phz, 0.72); }
  .xm-phone { width: 330px; zoom: var(--xmz, 0.8); }
  /* telefon arkasında yumuşak lime ışıltısı — sahneye derinlik katar */
  .scene .phone {
    box-shadow:
      0 0 0 1.5px rgba(226,234,245,.14),
      0 30px 70px rgba(0,0,0,.6),
      0 0 110px rgba(227,255,79,.09);
  }
  .scene .stage::before {
    content: ""; position: absolute; left: 50%; bottom: 2%;
    width: 120vw; height: 52svh; transform: translateX(-50%);
    background: radial-gradient(50% 55% at 50% 60%, rgba(227,255,79,.07), transparent 70%);
    pointer-events: none;
  }
  /* sahnedeki çağrı ekranı mobilde kompakt: döküm penceresine garanti yer kalır */
  .scene .call-face { padding: 38px 16px 14px; }
  .scene .call-face.active .call-avatar { width: 42px !important; height: 42px !important; font-size: .95rem !important; }
  .scene .call-face.active .call-name { font-size: .85rem !important; margin-top: 6px !important; }
  .scene .waveform { height: 26px; margin: 8px 0; }
  .scene .transcript { min-height: 92px; }
  .scene .call-controls { gap: 8px; padding-top: 8px; }
  .scene .cc-row { gap: 20px; }
  .scene .cc .cc-btn { width: 38px; height: 38px; }
  .scene .cc .cc-btn svg { width: 16px; height: 16px; }
  .scene .cc .cc-label { font-size: .52rem; }
  .scene .cc-end { width: 42px; height: 42px; }
  .scene .cc-end svg { width: 20px; height: 20px; }
  .scene .tr-line { font-size: .72rem; }
  /* Kart bölümleri mobilde paketler gibi yana kaydırmalı: sektörler, adımlar, sorular */
  .plans, .sector-grid, .qgrid, .steps {
    display: grid; grid-template-columns: none; grid-auto-flow: column;
    grid-auto-columns: min(76vw, 300px);
    overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    gap: 14px; margin-top: 34px; align-items: stretch;
    margin-inline: -24px; padding: 20px 24px 12px; /* rozet + kenar nefesi */
    scrollbar-width: none;
  }
  .plans::-webkit-scrollbar, .sector-grid::-webkit-scrollbar,
  .qgrid::-webkit-scrollbar, .steps::-webkit-scrollbar { display: none; }
  .plan, .sector, .qcard, .step { scroll-snap-align: center; }
  .plan { padding: 26px 22px; }
  /* adımlar karuselde kart görünümüne geçer */
  .steps { border-top: none; }
  .step {
    display: block; padding: 26px 22px; border: 1px solid var(--line-l);
    border-radius: 20px; background: var(--card-l);
  }
  .step .n { font-size: 2rem; margin-bottom: 10px; }
  .panel-grid { grid-template-columns: 1fr; }
  .demo-wrap { grid-template-columns: 1fr; }
  .nav-links a:not(.btn) { display: none; }
  .light-zone section { padding: 70px 0; }
  .xm-close { top: -50px; right: 0; }
}

/* animasyon istemeyen kullanıcı */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01s !important; transition-duration: .01s !important; }
}
