/* =====================================================================
   Odyssey OS Landing
   Tasarım sistemi doğrudan üründen (odyssey-os v1.1.28) alınmıştır.
   ===================================================================== */

:root {
  /* Ürün paleti */
  --bg:            #0a0a1f;
  --glass:         rgba(22, 22, 48, 0.62);
  --glass-strong:  rgba(18, 18, 42, 0.82);
  --glass-border:  rgba(255, 255, 255, 0.08);
  --card:          rgba(255, 255, 255, 0.04);
  --card-hover:    rgba(255, 255, 255, 0.07);
  --accent:        #6c63ff;
  --accent-light:  #8b83ff;
  --ok:            #00d68f;
  --warn:          #ffaa00;
  --danger:        #ff6b6b;
  --info:          #39c0ed;
  --ink:           #e8e8f0;
  --muted:         #9090b0;
  --line:          rgba(255, 255, 255, 0.08);

  /* Panorama açık teması (uygulamanın gerçek paleti) */
  --pan-bg:     #eef1f5;
  --pan-card:   #ffffff;
  --pan-ink:    #1c2733;
  --pan-muted:  #64748b;
  --pan-line:   #e2e8f0;
  --pan-accent: #1f6feb;
  --pan-panel:  #f7f9fc;
  --pan-ok:     #16a34a;
  --pan-warn:   #d97706;

  --r:      14px;
  --r-lg:   22px;
  --r-sm:   10px;
  --pill:   999px;

  --shadow-card: 0 24px 70px rgba(0, 0, 0, 0.45);
  --shadow-win:  0 30px 90px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.06);

  --ease: cubic-bezier(0.2, 0.8, 0.3, 1);

  --font-display: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  --font-ui:      'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --maxw: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--accent-light); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--info); }

img, svg { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }

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

::selection { background: rgba(108, 99, 255, .38); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.14); border-radius: 8px;
  border: 2px solid transparent; background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.26); background-clip: content-box; }

/* ---------------------------------------------------------------------
   Zemin · üründeki duvar kağıdının birebir aynısı
   --------------------------------------------------------------------- */
.bg-stage {
  position: fixed; inset: 0; z-index: -1; overflow: hidden;
  background: linear-gradient(140deg, #0a0a1f 0%, #12102e 40%, #1d1340 75%, #251744 100%);
}
.bg-stage .orb { position: absolute; border-radius: 50%; filter: blur(110px); }
.bg-stage .orb1 { width: 46vw; height: 46vw; background: #3b2d8f; top: -12vw; right: -8vw; opacity: .5; }
.bg-stage .orb2 { width: 38vw; height: 38vw; background: #15406b; bottom: -10vw; left: -8vw; opacity: .45; }
.bg-stage .orb3 { width: 24vw; height: 24vw; background: #5a2a7a; top: 40%; left: 34%; opacity: .3; }
.bg-stage::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 110% 90% at 50% 45%, transparent 55%, rgba(0,0,5,.5) 100%);
}

/* ---------------------------------------------------------------------
   Tipografi
   --------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #fff;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 1.6vw, 1.35rem); letter-spacing: -0.015em; }

p { text-wrap: pretty; }
.lead { font-size: clamp(1rem, 1.25vw, 1.14rem); color: var(--muted); line-height: 1.7; }
.tabnum { font-variant-numeric: tabular-nums; }

/* Bölüm etiketi: çizgi yerine ince çerçeveli chip. */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent-light);
  display: inline-flex; align-items: center;
  padding: 6px 12px;
  border: 1px solid rgba(108, 99, 255, .3);
  background: rgba(108, 99, 255, .1);
  border-radius: var(--pill);
  margin-bottom: 18px;
}

/* ---------------------------------------------------------------------
   Yerleşim
   --------------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { position: relative; padding: clamp(48px, 5.6vw, 82px) 0; }
.sec-head { max-width: 720px; margin-bottom: clamp(28px, 3.2vw, 44px); }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 + .lead { margin-top: 16px; }

.grid { display: grid; gap: 20px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }

/* ---------------------------------------------------------------------
   Butonlar
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 48px; padding: 0 24px;
  border: 1px solid transparent; border-radius: 12px;
  font-family: var(--font-ui); font-size: 15px; font-weight: 600;
  cursor: pointer; white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease),
              background .2s var(--ease), border-color .2s var(--ease);
}
.btn-lg { height: 56px; padding: 0 30px; font-size: 16px; border-radius: 14px; }
.btn-sm { height: 38px; padding: 0 16px; font-size: 13.5px; border-radius: 10px; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  box-shadow: 0 8px 28px rgba(108, 99, 255, .3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(108, 99, 255, .42); color: #fff; }

.btn-ghost {
  background: var(--card); color: var(--ink);
  border-color: var(--glass-border);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover { background: var(--card-hover); border-color: rgba(255,255,255,.18); color: #fff; transform: translateY(-2px); }

.btn:disabled { opacity: .5; cursor: default; transform: none !important; }

/* ---------------------------------------------------------------------
   Kartlar
   --------------------------------------------------------------------- */
.card {
  background: var(--card);
  border: 1px solid var(--glass-border);
  border-radius: var(--r);
  padding: 26px;
  backdrop-filter: blur(18px);
  transition: transform .28s var(--ease), background .28s var(--ease),
              border-color .28s var(--ease), box-shadow .28s var(--ease);
}
.card:hover { background: var(--card-hover); border-color: rgba(255,255,255,.16); transform: translateY(-3px); }
.card h3 { margin-bottom: 9px; }
.card p { color: var(--muted); font-size: 14.5px; line-height: 1.66; }

.card-ico {
  width: 42px; height: 42px; border-radius: 11px;
  display: grid; place-items: center;
  font-size: 19px; margin-bottom: 16px;
  background: rgba(108, 99, 255, .13);
  color: var(--accent-light);
  border: 1px solid rgba(108, 99, 255, .2);
}
.card-ico.tone-danger { background: rgba(255,107,107,.1); color: var(--danger); border-color: rgba(255,107,107,.2); }
.card-ico.tone-info   { background: rgba(57,192,237,.1);  color: var(--info);   border-color: rgba(57,192,237,.2); }
.card-ico.tone-ok     { background: rgba(0,214,143,.1);   color: var(--ok);     border-color: rgba(0,214,143,.2); }

/* Çözüm kartları · kendi renginde glow */
.card-pillar { padding: 30px; }
.card-pillar:hover { box-shadow: 0 22px 60px rgba(0,0,0,.4), 0 0 0 1px var(--glow, rgba(255,255,255,.1)); }
.card-pillar .card-ico { width: 48px; height: 48px; font-size: 22px; }
.card-pillar .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: 13.5px; font-weight: 600; }

/* ---------------------------------------------------------------------
   Nav
   --------------------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 66px;
  transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: var(--glass-strong);
  backdrop-filter: blur(24px) saturate(1.4);
  border-bottom-color: var(--glass-border);
}
.nav-in { height: 100%; display: flex; align-items: center; gap: 26px; }
.nav-logo { display: flex; align-items: center; gap: 10px; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -.02em; }
.nav-logo i { color: var(--accent-light); font-size: 20px; }
.nav-menu { display: flex; gap: 4px; margin-left: 12px; list-style: none; }
.nav-menu a {
  display: block; padding: 8px 13px; border-radius: 9px;
  color: var(--muted); font-size: 14px; font-weight: 500;
}
.nav-menu a:hover { color: var(--ink); background: var(--card); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }

.lang {
  display: flex; align-items: center;
  background: var(--card); border: 1px solid var(--glass-border);
  border-radius: var(--pill); padding: 3px; gap: 2px;
}
.lang button {
  background: none; border: 0; cursor: pointer;
  padding: 5px 12px; border-radius: var(--pill);
  font-size: 12.5px; font-weight: 600; color: var(--muted);
  transition: all .2s var(--ease);
}
.lang button.on { background: var(--accent); color: #fff; }

.nav-burger { display: none; background: none; border: 0; color: var(--ink); font-size: 22px; cursor: pointer; padding: 6px; }

.mobile-menu {
  position: fixed; top: 66px; left: 0; right: 0; z-index: 199;
  background: var(--glass-strong); backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 24px 20px;
  display: none; flex-direction: column; gap: 2px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 4px; color: var(--ink); font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 14px; }

/* ---------------------------------------------------------------------
   Hero
   --------------------------------------------------------------------- */
.hero { padding-top: 132px; padding-bottom: 40px; text-align: center; }
.hero .lead { max-width: 660px; margin: 20px auto 0; }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

.hero-badges {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  margin-top: 26px;
}
.hero-badges span {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em;
  color: var(--muted);
  background: var(--card); border: 1px solid var(--glass-border);
  padding: 6px 12px; border-radius: var(--pill);
}

/* Güven şeridi */
.trust {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  margin-top: 8px;
}
.trust div { padding: 26px 12px; text-align: center; position: relative; }
.trust div + div::before {
  content: ''; position: absolute; left: 0; top: 22%; bottom: 22%;
  width: 1px; background: var(--line);
}
.trust b {
  display: block; font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700;
  color: var(--accent-light); line-height: 1; letter-spacing: -.03em;
}
.trust small {
  display: block; margin-top: 9px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); line-height: 1.5;
}

/* =====================================================================
   MASAÜSTÜ MOCKUP  (üründeki kabuğun CSS ile yeniden çizimi)
   Sabit 1200×750 sahne, JS ile ölçeklenir.
   ===================================================================== */
.os-frame { margin-top: 46px; position: relative; }
.os-frame::before {
  content: ''; position: absolute; left: 8%; right: 8%; top: 12%; bottom: -6%;
  background: radial-gradient(ellipse at center, rgba(108,99,255,.32), transparent 68%);
  filter: blur(70px); z-index: 0;
}
.os-scaler { position: relative; z-index: 1; overflow: hidden; border-radius: var(--r-lg); }

.os {
  width: 1200px; height: 750px;
  transform-origin: top left;
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: var(--shadow-win);
  font-size: 13px; text-align: left;
  user-select: none;
}

/* Duvar kağıdı · nebula benzeri çok katmanlı gradient (harici görsel yok) */
.os-wall {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 42% 38% at 44% 46%, rgba(64,196,214,.42), transparent 62%),
    radial-gradient(ellipse 30% 26% at 62% 30%, rgba(232,140,72,.34), transparent 66%),
    radial-gradient(ellipse 26% 30% at 26% 22%, rgba(196,104,58,.24), transparent 68%),
    radial-gradient(ellipse 34% 30% at 74% 68%, rgba(88,54,150,.4), transparent 66%),
    radial-gradient(ellipse 50% 44% at 50% 52%, rgba(30,74,124,.5), transparent 70%),
    linear-gradient(150deg, #070a18 0%, #0b1226 42%, #120d24 74%, #070912 100%);
}
.os-wall::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(1.4px 1.4px at 12% 18%, rgba(255,255,255,.85), transparent),
    radial-gradient(1.2px 1.2px at 28% 62%, rgba(255,255,255,.6), transparent),
    radial-gradient(1.6px 1.6px at 44% 28%, rgba(255,255,255,.75), transparent),
    radial-gradient(1.1px 1.1px at 58% 74%, rgba(255,255,255,.55), transparent),
    radial-gradient(1.5px 1.5px at 72% 22%, rgba(255,255,255,.7), transparent),
    radial-gradient(1.2px 1.2px at 84% 58%, rgba(255,255,255,.6), transparent),
    radial-gradient(1.3px 1.3px at 34% 86%, rgba(255,255,255,.5), transparent),
    radial-gradient(1.1px 1.1px at 66% 92%, rgba(255,255,255,.45), transparent),
    radial-gradient(1.4px 1.4px at 92% 36%, rgba(255,255,255,.6), transparent),
    radial-gradient(1.2px 1.2px at 8% 78%, rgba(255,255,255,.5), transparent);
}

/* --- Menü çubuğu --- */
.os-mb {
  position: absolute; top: 0; left: 0; right: 0; height: 38px; z-index: 40;
  display: flex; align-items: center; gap: 12px; padding: 0 14px;
  background: rgba(10,10,26,.72); backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.os-mb .brandmark { display: flex; align-items: center; gap: 8px; }
.os-mb .brandmark > i { color: var(--accent-light); font-size: 15px; }
.mb-brand { display: flex; flex-direction: column; line-height: 1; }
.mb-brand b { font-size: 13px; font-weight: 700; color: #fff; letter-spacing: -.01em; }
.mb-brand small { font-size: 7px; letter-spacing: .22em; color: var(--muted); margin-top: 2px; }
.os-mb .spacer { flex: 1; }
.mb-user { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--ink); }
.mb-av {
  width: 21px; height: 21px; border-radius: 50%;
  background: linear-gradient(135deg, #16b981, #0d8a60);
  display: grid; place-items: center; font-size: 10px; font-weight: 700; color: #fff;
}
.mb-role {
  font-size: 8.5px; font-weight: 700; letter-spacing: .07em;
  color: #ffb454; background: rgba(255,170,0,.13);
  border: 1px solid rgba(255,170,0,.28);
  padding: 2px 6px; border-radius: 5px;
}
.mb-ver { font-size: 10px; color: var(--muted); }
.mb-clock { text-align: right; line-height: 1.15; }
.mb-clock b { display: block; font-size: 13px; font-weight: 600; color: #fff; font-variant-numeric: tabular-nums; }
.mb-clock small { display: block; font-size: 9px; color: var(--muted); }
.os-mb .logout { color: var(--muted); font-size: 14px; }

/* --- Masaüstü alanı --- */
.os-desk { position: absolute; top: 38px; left: 0; right: 0; bottom: 0; }

/* Masaüstü ikonları */
.desk-icons { position: absolute; top: 16px; left: 16px; display: flex; flex-direction: column; gap: 8px; }
.desk-ico { width: 92px; padding: 8px 4px; border-radius: 10px; text-align: center; transition: background .18s; }
.desk-ico:hover { background: rgba(255,255,255,.08); }
.desk-ico .glyph { font-size: 31px; line-height: 1; position: relative; display: inline-block; }
.desk-ico .glyph .bdg {
  position: absolute; right: -5px; bottom: -2px;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--ok); color: #052; font-size: 8px;
  display: grid; place-items: center; border: 2px solid #0e1424;
}
.desk-ico span {
  display: block; margin-top: 5px; font-size: 10.5px; color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,.85); line-height: 1.28;
}

/* Widget kolonu */
.os-widgets {
  position: absolute; top: 14px; right: 14px; width: 236px;
  display: flex; flex-direction: column; gap: 10px;
}
.wg {
  background: rgba(20,20,44,.66); backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 13px; padding: 12px 13px;
}
.wg-h {
  display: flex; align-items: center; gap: 6px; margin-bottom: 9px;
  font-size: 9px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.wg-clock { font-size: 30px; font-weight: 700; color: #fff; line-height: 1; font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.wg-date { font-size: 10.5px; color: var(--muted); margin-top: 5px; }
.wg-sub { font-size: 11px; color: var(--muted); }
.bar { height: 5px; border-radius: 4px; background: rgba(255,255,255,.09); overflow: hidden; margin: 8px 0 5px; }
.bar i { display: block; height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--accent), var(--accent-light)); }
.wg-row { display: flex; align-items: center; gap: 7px; padding: 3px 0; font-size: 11px; }
.wg-row .av { width: 18px; height: 18px; border-radius: 50%; display: grid; place-items: center; font-size: 8.5px; font-weight: 700; color: #fff; }
.wg-row .dot { width: 6px; height: 6px; border-radius: 50%; margin-left: auto; }
.wg-row .dot.on { background: var(--ok); box-shadow: 0 0 0 2.5px rgba(0,214,143,.18); }
.wg-row .dot.off { background: #4a4a68; }
.wg-input {
  display: flex; gap: 5px; margin-top: 8px;
}
.wg-input span {
  flex: 1; background: rgba(0,0,0,.28); border: 1px solid rgba(255,255,255,.08);
  border-radius: 7px; padding: 5px 8px; font-size: 10px; color: #6a6a88;
}
.wg-input i {
  width: 26px; display: grid; place-items: center;
  background: var(--accent); border-radius: 7px; color: #fff; font-size: 11px;
}
.cal-h { display: flex; align-items: center; justify-content: space-between; font-size: 10.5px; color: #fff; font-weight: 600; margin-bottom: 7px; }
.cal-h i { color: var(--muted); font-size: 10px; }
.cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; text-align: center; }
.cal b { font-size: 8px; color: var(--muted); font-weight: 600; padding: 2px 0; }
.cal span { font-size: 9.5px; color: var(--ink); padding: 3px 0; border-radius: 5px; font-variant-numeric: tabular-nums; }
.cal span.mut { color: #4d4d6a; }
.cal span.today { background: var(--accent); color: #fff; font-weight: 700; }

/* --- Dock --- */
.os-dock {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); z-index: 45;
  display: flex; gap: 9px; padding: 9px 12px;
  background: rgba(18,18,42,.72); backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 19px;
}
.dock-i {
  position: relative; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; font-size: 20px; color: #fff;
  cursor: pointer; border: 0;
  transition: transform .22s var(--ease), filter .22s var(--ease);
}
.dock-i:hover { transform: translateY(-7px) scale(1.08); filter: brightness(1.14); }
.dock-i .dot {
  position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: #fff; opacity: 0;
  transition: opacity .2s;
}
.dock-i.open .dot { opacity: .9; }
.dock-i .upd {
  position: absolute; top: -3px; right: -3px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--danger); border: 2px solid #17173a;
}

/* --- Pencereler --- */
.os-windows { position: absolute; inset: 0; z-index: 30; }
.oswin {
  position: absolute;
  background: rgba(18,18,42,.9); backdrop-filter: blur(26px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 13px; overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.6);
  animation: winIn .34s var(--ease);
  display: flex; flex-direction: column;
}
.oswin.focused { border-color: rgba(255,255,255,.2); }
.oswin.closing { animation: winOut .2s var(--ease) forwards; }
@keyframes winIn  { from { opacity: 0; transform: scale(.955) translateY(10px); } }
@keyframes winOut { to   { opacity: 0; transform: scale(.965) translateY(6px); } }

.oswin-tb {
  height: 34px; flex: 0 0 auto;
  display: flex; align-items: center; gap: 8px; padding: 0 11px;
  background: rgba(255,255,255,.035);
  border-bottom: 1px solid rgba(255,255,255,.07);
  cursor: grab;
}
.oswin-tb:active { cursor: grabbing; }
.tl { display: flex; gap: 6px; margin-right: 3px; }
.tl button {
  width: 11px; height: 11px; border-radius: 50%; border: 0; cursor: pointer; padding: 0;
  display: grid; place-items: center; font-size: 7px; color: rgba(0,0,0,.5);
}
.tl .c { background: #ff5f57; }
.tl .m { background: #febc2e; }
.oswin-tb > i { font-size: 12px; color: var(--muted); }
.oswin-tb .t { font-size: 12px; font-weight: 600; color: #fff; }
.oswin-body { flex: 1; overflow: hidden; padding: 14px; }
.oswin-body.nopad { padding: 0; }

/* Pencere içi mini bileşenler */
.mini-kpis { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; margin-bottom: 11px; }
.mini-kpi { background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.07); border-radius: 9px; padding: 9px 11px; }
.mini-kpi small { font-size: 9px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.mini-kpi b { display: block; font-size: 19px; font-weight: 700; color: #fff; margin-top: 3px; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.mini-kpi i { font-style: normal; font-size: 10px; color: var(--ok); }
.mini-bars { display: flex; align-items: flex-end; gap: 6px; height: 78px; padding-top: 6px; }
.mini-bars span { flex: 1; border-radius: 3px 3px 0 0; background: linear-gradient(180deg, var(--accent-light), var(--accent)); }
.mini-list { display: flex; flex-direction: column; gap: 6px; }
.mini-row {
  display: flex; align-items: center; gap: 8px; font-size: 11.5px; color: var(--ink);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px; padding: 8px 10px;
}
.mini-row .av { width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; font-size: 9px; font-weight: 700; color: #fff; }
.mini-row .dot { width: 6px; height: 6px; border-radius: 50%; margin-left: auto; }
.mini-note { color: var(--muted); font-size: 11px; }

.hint {
  position: absolute; left: 50%; bottom: 74px; transform: translateX(-50%); z-index: 46;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .05em;
  color: rgba(255,255,255,.62);
  background: rgba(10,10,26,.62); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  padding: 6px 13px; border-radius: var(--pill);
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.hint.gone { opacity: 0; }

/* Dar ekran: sağdaki widget kolonu düşer, kalan alan büyür (bkz. fitAll) */
.os.compact .os-widgets { display: none; }
.os.compact .os-dock { left: 430px; }
.os.compact .hint { left: 430px; }
.os.compact .os-mb { right: 340px; }   /* menü çubuğu görünür alanda kalsın */

/* =====================================================================
   PANORAMA · açık temalı ada
   ===================================================================== */
.pan-island {
  background: var(--pan-bg);
  border-radius: 26px;
  padding: clamp(38px, 5vw, 66px) 0;
  color: var(--pan-ink);
  box-shadow: 0 40px 120px rgba(0,0,0,.5);
  margin: 0 auto;
}
.pan-island h2 { color: #0f1b28; }
.pan-island .lead { color: var(--pan-muted); }
.pan-island .eyebrow {
  color: var(--pan-accent);
  border-color: rgba(31, 111, 235, .26);
  background: rgba(31, 111, 235, .07);
}

.pan-card {
  background: var(--pan-card); border: 1px solid var(--pan-line);
  border-radius: 12px; padding: 20px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.pan-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(15,23,42,.1); }
.pan-card .ico { color: var(--pan-accent); font-size: 19px; margin-bottom: 11px; display: block; }
.pan-card h3 { color: var(--pan-ink); font-size: 15.5px; margin-bottom: 6px; }
.pan-card p { color: var(--pan-muted); font-size: 13.5px; line-height: 1.6; }

.pan-note {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border: 1px solid var(--pan-line); border-left: 3px solid var(--pan-ok);
  border-radius: 12px; padding: 18px 22px; margin-top: 26px;
}
.pan-note i { color: var(--pan-ok); font-size: 20px; margin-top: 2px; }
.pan-note b { display: block; color: var(--pan-ink); font-size: 14.5px; margin-bottom: 4px; }
.pan-note p { color: var(--pan-muted); font-size: 13.5px; line-height: 1.6; }

/* --- Panorama uygulama mockup'ı --- */
.pan-scaler { overflow: hidden; border-radius: 13px; box-shadow: 0 30px 80px rgba(15,23,42,.28); }
.pan-app {
  width: 1160px; height: 660px; transform-origin: top left;
  background: var(--pan-card); border: 1px solid #cfd8e3; border-radius: 13px;
  overflow: hidden; display: flex; flex-direction: column;
  font-size: 12.5px; color: var(--pan-ink); text-align: left; user-select: none;
}
.pan-tb {
  height: 34px; flex: 0 0 auto; display: flex; align-items: center; gap: 8px; padding: 0 11px;
  background: #e7ebf1; border-bottom: 1px solid #d6dde6;
}
.pan-tb .t { font-size: 12px; font-weight: 600; color: #33414f; }
.pan-tb > i { color: #7b3fe4; font-size: 12px; }

.pan-hd {
  flex: 0 0 auto; display: flex; align-items: center; gap: 9px;
  padding: 9px 12px; background: #fff; border-bottom: 1px solid var(--pan-line);
}
.pan-logo { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; letter-spacing: -.01em; }
/* Uygulamanın renkli mini sütun-grafik glifi */
.pan-glyph { display: flex; align-items: flex-end; gap: 1.5px; height: 15px; }
.pan-glyph i { width: 3.5px; border-radius: 1px; display: block; }
.pan-glyph i:nth-child(1) { height: 56%; background: #dc2626; }
.pan-glyph i:nth-child(2) { height: 100%; background: #1f6feb; }
.pan-glyph i:nth-child(3) { height: 74%; background: #16a34a; }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--pan-panel); border: 1px solid var(--pan-line);
  border-radius: var(--pill); padding: 5px 11px; font-size: 11.5px;
  color: #33414f; font-weight: 500;
}
.chip .g { width: 7px; height: 7px; border-radius: 50%; background: var(--pan-ok); box-shadow: 0 0 0 2.5px rgba(22,163,74,.16); }

.psel, .pminisel {
  background: #fff; border: 1px solid #cfd8e3; border-radius: 7px;
  font-size: 11.5px; color: #475569; position: relative;
  display: inline-flex; align-items: center;
}
.psel { padding: 6px 28px 6px 11px; min-width: 260px; }
.pminisel { padding: 5px 24px 5px 9px; min-width: 62px; }
.psel::after, .pminisel::after {
  content: ''; position: absolute; right: 9px; top: 50%;
  width: 6px; height: 6px; margin-top: -4px;
  border-right: 1.5px solid #94a3b8; border-bottom: 1.5px solid #94a3b8;
  transform: rotate(45deg);
}

.pbtn {
  display: inline-flex; align-items: center; gap: 5px;
  border: 1px solid #cfd8e3; background: #fff; border-radius: 7px;
  padding: 6px 11px; font-size: 11.5px; color: #33414f; white-space: nowrap;
}
.pbtn.primary { background: var(--pan-accent); border-color: var(--pan-accent); color: #fff; font-weight: 600; }
.pbtn.ai { background: #fff; border-color: #cfd8e3; color: #33414f; font-weight: 500; }
.pbtn.ai .sp { color: #7b3fe4; }
.pbtn .cv { font-size: 8px; color: #94a3b8; }

/* Panel katlama ikonu (üründeki ▣ düğmesi) */
.ptog {
  width: 22px; height: 20px; flex: 0 0 auto;
  border: 1px solid #cfd8e3; border-radius: 5px; background: #fff;
  position: relative;
}
.ptog::before {
  content: ''; position: absolute; top: 3px; bottom: 3px; left: 3px;
  width: 5px; border-radius: 2px; background: #94a3b8;
}
.ptog.r::before { left: auto; right: 3px; }

.tgl { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; color: var(--pan-muted); }
.tgl .sw {
  width: 31px; height: 17px; border-radius: 9px; background: #cbd5e1;
  position: relative; flex: 0 0 auto;
}
.tgl .sw::after {
  content: ''; position: absolute; top: 2px; left: 2px;
  width: 13px; height: 13px; border-radius: 50%; background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.2);
}

.pan-main { flex: 1; display: flex; min-height: 0; }
.pan-left { width: 258px; flex: 0 0 auto; border-right: 1px solid var(--pan-line); background: var(--pan-panel); display: flex; flex-direction: column; }
.pan-tabs { display: flex; border-bottom: 1px solid var(--pan-line); }
.pan-tabs button { flex: 1; border: 0; background: none; padding: 9px 0; font-size: 12px; color: var(--pan-muted); font-weight: 500; border-bottom: 2px solid transparent; }
.pan-tabs button.on { color: var(--pan-accent); border-bottom-color: var(--pan-accent); font-weight: 600; }
.pan-tabs .ic { flex: 0 0 34px; color: var(--pan-muted); display: grid; place-items: center; font-size: 12px; }

.pan-search { padding: 8px; border-bottom: 1px solid var(--pan-line); display: flex; gap: 5px; }
.pan-search .inp {
  flex: 1; background: #fff; border: 1px solid #cfd8e3; border-radius: 7px;
  padding: 6px 9px; font-size: 11.5px; color: #94a3b8;
}
.pan-search .cog {
  flex: 0 0 26px; display: grid; place-items: center;
  background: #fff; border: 1px solid #cfd8e3; border-radius: 7px;
  color: #94a3b8; font-size: 10px;
}

.tree { flex: 1; overflow: hidden; padding: 0 0 5px; position: relative; }
/* Ağacın sağında ürünle aynı ince kaydırma göstergesi */
.tree::after {
  content: ''; position: absolute; top: 8px; right: 3px;
  width: 4px; height: 120px; border-radius: 3px; background: #cbd5e1;
}
.tree-db {
  display: flex; align-items: center; gap: 7px; padding: 8px 11px;
  font-weight: 700; font-size: 12px; color: var(--pan-ink);
}
.tree-db i { color: #64748b; font-size: 11px; }

/* Şema satırı: tam genişlik açık gri bant (üründeki görünüm) */
.tree-sch {
  display: flex; align-items: center; gap: 7px; padding: 6px 11px;
  background: #e9edf3; border-top: 1px solid #dde3ec; border-bottom: 1px solid #dde3ec;
  color: #33414f; font-weight: 600; font-size: 11.5px;
}
.tree-sch i { color: #8b98a8; font-size: 11px; }
.tree-sch em { margin-left: auto; font-style: normal; font-size: 10px; color: #94a3b8; font-weight: 500; }

.tree-t {
  display: flex; align-items: center; gap: 7px; padding: 5px 11px 5px 20px;
  font-size: 11.5px; color: #33414f;
}
.tree-t:hover { background: #eef3fa; }
.tree-t .cv { font-size: 7px; color: #94a3b8; flex: 0 0 auto; }
.tree-t em { margin-left: auto; font-style: normal; font-size: 10px; color: #94a3b8; font-variant-numeric: tabular-nums; }
.tree-t .vw {
  font-size: 8.5px; background: #f3ecff; border: 1px solid #ddd0ff; color: #6122c9;
  border-radius: 4px; padding: 1px 5px; margin-left: auto; font-weight: 600;
}
.tree-t .eye { color: #c3cdd9; font-size: 11px; flex: 0 0 auto; }

.pan-center { flex: 1; display: flex; flex-direction: column; min-width: 0; background: var(--pan-bg); }
.pan-ctop {
  display: flex; align-items: center; gap: 9px; padding: 9px 13px;
  background: #fff; border-bottom: 1px solid var(--pan-line);
}
.pan-ctop .tt { font-weight: 700; font-size: 13px; }
.pan-ctop .ss { color: var(--pan-muted); font-size: 11.5px; }
.pan-canvas { flex: 1; padding: 14px; display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 148px; gap: 12px; align-content: start; }
.tile {
  background: #fff; border: 1px solid var(--pan-line); border-radius: 10px;
  padding: 11px 13px; display: flex; flex-direction: column; overflow: hidden;
}
.tile .th { font-size: 11.5px; font-weight: 600; color: #33414f; margin-bottom: 8px; }
.tile.wide { grid-column: span 2; }

.pan-right { width: 214px; flex: 0 0 auto; border-left: 1px solid var(--pan-line); background: #fff; padding: 11px; }
.pan-right .rh { font-size: 9.5px; letter-spacing: .09em; text-transform: uppercase; color: var(--pan-muted); font-weight: 700; margin-bottom: 10px; }
.well { border: 1.5px dashed #cfd8e3; border-radius: 8px; padding: 8px; margin-bottom: 9px; min-height: 46px; background: var(--pan-panel); }
.well .wl { font-size: 9.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--pan-muted); font-weight: 700; margin-bottom: 5px; }
.wchip {
  display: flex; align-items: center; gap: 5px; background: #fff;
  border: 1px solid #cfd8e3; border-radius: 6px; padding: 4px 7px;
  font-size: 10.5px; color: #33414f; margin-bottom: 4px;
}
.wchip .x { margin-left: auto; color: #b6c2d1; }

/* Grafik tipi seçici */
.ct-row { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 22px; }
.ct {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  background: #fff; border: 1px solid var(--pan-line); border-radius: 10px;
  padding: 9px 12px; cursor: pointer; min-width: 68px;
  transition: all .2s var(--ease);
}
.ct svg { width: 21px; height: 21px; color: var(--pan-muted); }
.ct span { font-size: 10.5px; color: var(--pan-muted); font-weight: 500; }
.ct:hover { border-color: #b9c9de; transform: translateY(-2px); }
.ct.on { border-color: var(--pan-accent); background: #eff5ff; box-shadow: 0 0 0 1px var(--pan-accent); }
.ct.on svg, .ct.on span { color: var(--pan-accent); }
.ct.on span { font-weight: 700; }

.ct-stage {
  background: #fff; border: 1px solid var(--pan-line); border-radius: 12px;
  padding: 20px 22px; min-height: 340px;
  display: flex; flex-direction: column;
}
.ct-stage .cth { display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px; }
.ct-stage .cth b { font-size: 15px; color: var(--pan-ink); }
.ct-stage .cth span { font-size: 12px; color: var(--pan-muted); }
.ct-view { flex: 1; min-height: 238px; max-height: 300px; display: flex; align-items: center; justify-content: center; }
.ct-view > svg { max-height: 300px; }
.ct-view.fade { animation: ctFade .35s var(--ease); }
@keyframes ctFade { from { opacity: 0; transform: translateY(8px); } }

.ct-table { width: 100%; border-collapse: collapse; font-size: 12.5px; }
.ct-table th { text-align: left; color: var(--pan-muted); font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; padding: 7px 10px; border-bottom: 1px solid var(--pan-line); }
.ct-table td { padding: 7px 10px; border-bottom: 1px solid #f1f5f9; color: var(--pan-ink); }
.ct-table td:last-child, .ct-table th:last-child { text-align: right; font-variant-numeric: tabular-nums; }

.ct-kpi { text-align: center; }
.ct-kpi b { display: block; font-family: var(--font-display); font-size: 76px; font-weight: 700; letter-spacing: -.04em; color: var(--pan-ink); line-height: 1; font-variant-numeric: tabular-nums; }
.ct-kpi span { display: block; margin-top: 12px; font-size: 14px; color: var(--pan-muted); }
.ct-kpi em { font-style: normal; color: var(--pan-ok); font-weight: 600; }

.ct-pie { display: flex; align-items: center; gap: 34px; flex-wrap: wrap; justify-content: center; }
.ct-donut { width: 210px; height: 210px; border-radius: 50%; position: relative; }
.ct-donut.hole::after { content: ''; position: absolute; inset: 27%; background: #fff; border-radius: 50%; }
.ct-leg { display: flex; flex-direction: column; gap: 7px; font-size: 12.5px; }
.ct-leg div { display: flex; align-items: center; gap: 8px; color: var(--pan-ink); }
.ct-leg i { width: 11px; height: 11px; border-radius: 3px; display: block; }
.ct-leg em { font-style: normal; color: var(--pan-muted); margin-left: 5px; font-variant-numeric: tabular-nums; }

/* =====================================================================
   AI DEMO
   ===================================================================== */
.ai-shell {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--r-lg); padding: clamp(20px, 3vw, 34px);
  backdrop-filter: blur(20px); position: relative;
  box-shadow: var(--shadow-card);
}
.ai-tag {
  position: absolute; top: 14px; right: 16px;
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); opacity: .6;
}
.ai-bar {
  display: flex; align-items: center; gap: 11px;
  background: rgba(8,8,22,.6); border: 1px solid rgba(255,255,255,.11);
  border-radius: 13px; padding: 13px 16px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.ai-bar:focus-within { border-color: rgba(108,99,255,.55); box-shadow: 0 0 0 4px rgba(108,99,255,.13); }
.ai-bar i { color: var(--accent-light); font-size: 17px; }
.ai-bar input { flex: 1; background: none; border: 0; outline: none; font-size: 15px; color: var(--ink); }
.ai-bar input::placeholder { color: #5d5d80; }
.ai-bar button { flex: 0 0 auto; }

.ai-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 13px; }
.ai-chips button {
  background: var(--card); border: 1px solid var(--glass-border);
  border-radius: var(--pill); padding: 7px 14px;
  font-size: 12.5px; color: var(--muted); cursor: pointer;
  transition: all .2s var(--ease);
}
.ai-chips button:hover { background: var(--card-hover); color: var(--ink); border-color: rgba(255,255,255,.18); }

.ai-out { margin-top: 22px; }
.ai-ask {
  align-self: flex-end; max-width: 78%; margin-left: auto;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff; border-radius: 14px 14px 4px 14px;
  padding: 10px 15px; font-size: 14px; width: fit-content;
  animation: rise .22s var(--ease);
}
@keyframes rise { from { opacity: 0; transform: translateY(9px); } }

.ai-steps { margin-top: 16px; display: flex; flex-direction: column; gap: 7px; }
.ai-step {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12px; color: var(--muted);
  animation: rise .2s var(--ease);
}
.ai-step .bullet {
  width: 15px; height: 15px; border-radius: 50%; flex: 0 0 auto;
  border: 1.5px solid rgba(255,255,255,.22);
  display: grid; place-items: center; font-size: 8px;
  transition: all .18s var(--ease);
}
.ai-step.done { color: var(--ink); }
.ai-step.done .bullet { background: var(--ok); border-color: var(--ok); color: #052; }
.ai-step.run .bullet { border-color: var(--accent-light); border-right-color: transparent; animation: spin .5s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.ai-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 20px; }
.ai-tile {
  background: rgba(255,255,255,.05); border: 1px solid var(--glass-border);
  border-radius: 12px; padding: 13px 14px; min-height: 118px;
  display: flex; flex-direction: column;
  opacity: 0;
  animation: tileIn .3s var(--ease) forwards;
}
/* Bitiş karesi AÇIK yazılmalı: aksi hâlde `forwards` taban stile (opacity:0)
   döner ve kartlar görünmez kalır. */
@keyframes tileIn { from { opacity: 0; transform: translateY(8px) scale(.985); } to { opacity: 1; transform: none; } }
.ai-tile .tt { font-size: 10.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); margin-bottom: 9px; font-weight: 600; }
.ai-tile .big { font-family: var(--font-display); font-size: 27px; font-weight: 700; color: #fff; letter-spacing: -.03em; line-height: 1; font-variant-numeric: tabular-nums; }
.ai-tile .sub { font-size: 11px; color: var(--ok); margin-top: 5px; }
.ai-tile .bars { display: flex; align-items: flex-end; gap: 4px; height: 56px; margin-top: auto; }
.ai-tile .bars span { flex: 1; border-radius: 2px 2px 0 0; background: linear-gradient(180deg, var(--accent-light), rgba(108,99,255,.4)); }
.ai-tile .rows { display: flex; flex-direction: column; gap: 5px; margin-top: auto; }
.ai-tile .rows div { display: flex; justify-content: space-between; font-size: 11px; color: var(--ink); }
.ai-tile .rows div span { color: var(--muted); font-variant-numeric: tabular-nums; }
.ai-tile .ring { width: 62px; height: 62px; border-radius: 50%; margin: auto; position: relative; }
.ai-tile .ring::after { content: ''; position: absolute; inset: 30%; background: #14142e; border-radius: 50%; }

.ai-done {
  display: flex; align-items: center; gap: 12px; margin-top: 18px;
  font-size: 13px; color: var(--muted);
  animation: rise .22s var(--ease);
}
.ai-done .ok { color: var(--ok); }
.ai-done button {
  margin-left: auto; background: var(--card); border: 1px solid var(--glass-border);
  border-radius: 9px; padding: 6px 13px; font-size: 12.5px; color: var(--ink); cursor: pointer;
}
.ai-done button:hover { background: var(--card-hover); }

.ai-caps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 26px; }
.ai-cap { display: flex; gap: 11px; align-items: flex-start; }
.ai-cap i { color: var(--accent-light); font-size: 16px; margin-top: 2px; }
.ai-cap b { display: block; font-size: 13.5px; color: var(--ink); margin-bottom: 2px; }
.ai-cap span { font-size: 12.5px; color: var(--muted); line-height: 1.55; }

/* =====================================================================
   SUPER AGENT
   ===================================================================== */
.sa-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 34px; align-items: start; }

.sa-form { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--r-lg); padding: 26px; backdrop-filter: blur(20px); }
.sa-fld { margin-bottom: 18px; }
.sa-fld:last-child { margin-bottom: 0; }
.sa-lbl { display: block; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 9px; }
.sa-name {
  width: 100%; background: rgba(8,8,22,.55); border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: 10px 13px; font-size: 14px; color: var(--ink); outline: none;
}
.sa-name:focus { border-color: rgba(108,99,255,.5); }
.sa-opts { display: flex; flex-wrap: wrap; gap: 8px; }
.sa-opt {
  background: var(--card); border: 1px solid var(--glass-border);
  border-radius: 10px; padding: 9px 14px; font-size: 13px;
  color: var(--muted); cursor: pointer; transition: all .2s var(--ease);
}
.sa-opt:hover { background: var(--card-hover); color: var(--ink); }
.sa-opt.on { background: rgba(108,99,255,.16); border-color: rgba(108,99,255,.55); color: #fff; font-weight: 600; }
.sa-opt.on.ch-wa { background: rgba(0,214,143,.14); border-color: rgba(0,214,143,.5); }
.sa-opt.on.ch-ml { background: rgba(57,192,237,.14); border-color: rgba(57,192,237,.5); }
.sa-opt.on.ch-sm { background: rgba(255,170,0,.14); border-color: rgba(255,170,0,.5); }

/* Telefon */
.sa-phone-wrap { position: sticky; top: 96px; }
.sa-tabs { display: flex; gap: 6px; margin-bottom: 14px; justify-content: center; }
.sa-tabs button {
  background: var(--card); border: 1px solid var(--glass-border); border-radius: var(--pill);
  padding: 6px 14px; font-size: 12px; color: var(--muted); cursor: pointer;
}
.sa-tabs button.on { background: var(--accent); border-color: var(--accent); color: #fff; font-weight: 600; }

.phone {
  width: 300px; margin: 0 auto; border-radius: 34px; padding: 11px;
  background: linear-gradient(160deg, #23233f, #101024);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 34px 80px rgba(0,0,0,.6);
}
.phone-screen { border-radius: 25px; overflow: hidden; height: 436px; display: flex; flex-direction: column; background: #0b141a; }
.phone-notch { height: 20px; display: grid; place-items: center; }
.phone-notch::after { content: ''; width: 74px; height: 5px; border-radius: 4px; background: rgba(255,255,255,.2); }

/* WhatsApp görünümü */
.wa-top { background: #1f2c33; padding: 10px 13px; display: flex; align-items: center; gap: 9px; flex: 0 0 auto; }
.wa-top .av { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-light)); display: grid; place-items: center; color: #fff; font-size: 14px; }
.wa-top b { font-size: 13px; color: #e9edef; display: block; }
.wa-top small { font-size: 10.5px; color: #8696a0; }
.wa-body {
  flex: 1; padding: 14px 11px; overflow: hidden;
  background: #0b141a;
  background-image: radial-gradient(rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 16px 16px;
}
.wa-msg {
  background: #005c4b; border-radius: 9px 2px 9px 9px; padding: 9px 11px;
  font-size: 12.5px; color: #e9edef; line-height: 1.6;
  box-shadow: 0 1px 2px rgba(0,0,0,.3); word-break: break-word;
}
.wa-msg .t { display: flex; align-items: center; justify-content: flex-end; gap: 4px; font-size: 10px; color: #a5c9bd; margin-top: 6px; }
.wa-msg .t i { color: #53bdeb; }

/* E-posta görünümü · üründeki nodemailer HTML şablonunun birebir karşılığı:
   mavi gradient başlık + beyaz pre-wrap gövde + gri dipnot */
.ml-top { background: #16213a; padding: 11px 13px; flex: 0 0 auto; border-bottom: 1px solid rgba(255,255,255,.07); }
.ml-top b { font-size: 13px; color: #fff; }
.ml-body { flex: 1; padding: 13px 11px; background: #eef1f5; overflow: hidden; }
.ml-hd {
  background: linear-gradient(90deg, #0ea5e9, #1d4ed8);
  color: #fff; border-radius: 10px 10px 0 0;
  padding: 11px 13px; font-size: 12.5px; font-weight: 700;
}
.ml-card {
  background: #fff; border: 1px solid #e2e8f0; border-top: none;
  border-radius: 0 0 10px 10px; padding: 13px;
  white-space: pre-wrap; line-height: 1.6; color: #1c2733; font-size: 11.5px;
}
.ml-foot { color: #94a3b8; font-size: 9.5px; padding: 9px 3px 0; line-height: 1.5; }

/* SMS görünümü */
.sm-top { background: #1a1a2e; padding: 11px 13px; text-align: center; flex: 0 0 auto; border-bottom: 1px solid rgba(255,255,255,.07); }
.sm-top b { font-size: 13px; color: #fff; }
.sm-body { flex: 1; padding: 15px 13px; background: #0d0d1c; }
.sm-msg { background: #262640; border-radius: 15px 15px 15px 4px; padding: 11px 13px; font-size: 12.5px; color: #e4e4f0; line-height: 1.55; white-space: pre-line; }
.sm-meta { font-size: 10px; color: #6f6f92; margin-top: 7px; padding-left: 4px; }

.sa-feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; }

/* =====================================================================
   BENTO · çalışma ortamı
   ===================================================================== */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
.bento .card { display: flex; flex-direction: column; }
.b-2x1 { grid-column: span 2; }

/* Şifreli paylaşım kartı: metin solda, indirme kartı sağda (dikey boşluk yaratmasın) */
.share-split { display: grid; grid-template-columns: 1fr 196px; gap: 22px; align-items: center; height: 100%; }
.share-split > div:first-child { align-self: center; }

.demo-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 20px; }
.demo-ico { text-align: center; }
.demo-ico .g { font-size: 30px; line-height: 1; }
.demo-ico span { display: block; font-size: 10px; color: var(--muted); margin-top: 6px; }

.share-card {
  background: rgba(8,8,22,.5); border: 1px solid var(--glass-border);
  border-radius: 12px; padding: 18px 16px; text-align: center;
}
.share-card .ic { font-size: 26px; }
.share-card b { display: block; font-size: 13px; margin: 7px 0 3px; color: #fff; }
.share-card small { font-size: 11px; color: var(--muted); }
.share-card .fake-input {
  margin-top: 12px; background: rgba(0,0,0,.35); border: 1px solid var(--glass-border);
  border-radius: 8px; padding: 8px 11px; font-size: 12px; color: #5d5d80; text-align: left;
}
.share-card .fake-btn {
  margin-top: 8px; background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 8px; padding: 9px; font-size: 12.5px; font-weight: 600; color: #fff;
}
.share-card .meta { margin-top: 10px; font-size: 10px; color: var(--muted); }

/* =====================================================================
   KURULUM
   ===================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; position: relative; }
.step { text-align: center; padding: 30px 22px; }
.step .n {
  width: 44px; height: 44px; border-radius: 50%; margin: 0 auto 16px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 18px; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  box-shadow: 0 8px 24px rgba(108,99,255,.32);
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14px; }

.upd-card { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; margin-top: 26px; padding: 32px; }
.upd-card ul { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.upd-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--muted); }
.upd-card li i { color: var(--ok); margin-top: 3px; font-size: 14px; }

/* Ayarlar mockup */
.set-mock {
  background: rgba(18,18,42,.9); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.5);
  font-size: 12px;
}
.set-tb { height: 32px; display: flex; align-items: center; gap: 8px; padding: 0 11px; background: rgba(255,255,255,.035); border-bottom: 1px solid rgba(255,255,255,.07); }
.set-tb .t { font-size: 11.5px; font-weight: 600; color: #fff; }
.set-body { display: flex; min-height: 236px; }
.set-side { width: 132px; flex: 0 0 auto; padding: 9px; border-right: 1px solid rgba(255,255,255,.07); display: flex; flex-direction: column; gap: 3px; }
.set-side div { display: flex; align-items: center; gap: 7px; padding: 7px 9px; border-radius: 8px; font-size: 11.5px; color: var(--muted); }
.set-side div.on { background: linear-gradient(135deg, var(--accent), var(--accent-light)); color: #fff; font-weight: 600; }
.set-side div .bdg { margin-left: auto; width: 6px; height: 6px; border-radius: 50%; background: var(--danger); }
.set-main { flex: 1; padding: 14px; }
.set-h { display: flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.set-h i { color: var(--accent-light); }
.set-p { font-size: 11px; color: var(--muted); line-height: 1.55; margin-bottom: 12px; }
.upd-row {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.07);
  border-radius: 9px; margin-bottom: 8px;
}
.upd-row i.lead-ic { font-size: 16px; color: var(--accent-light); }
.upd-row b { display: block; font-size: 12px; color: #fff; }
.upd-row small { display: block; font-size: 10.5px; color: var(--muted); }
.upd-row .go { margin-left: auto; background: linear-gradient(135deg, var(--accent), var(--accent-light)); border-radius: 7px; padding: 5px 12px; font-size: 11px; font-weight: 600; color: #fff; }
.upd-row .okmark { margin-left: auto; font-size: 11px; color: var(--ok); }

/* =====================================================================
   GENİŞLETİLEBİLİRLİK
   ===================================================================== */
.ext-card { padding: 30px; }
.ext-dock {
  display: flex; gap: 10px; justify-content: center;
  background: rgba(10,10,26,.5); border: 1px solid var(--glass-border);
  border-radius: 18px; padding: 12px 14px;
}
.ext-dock .ed {
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center; color: #fff; font-size: 21px;
  position: relative; flex: 0 0 auto;
}
.ext-dock .ed.new {
  box-shadow: 0 0 0 2px var(--accent-light), 0 10px 26px rgba(108,99,255,.4);
  animation: edPop 2.6s var(--ease) infinite;
}
.ext-dock .ed.new::after {
  content: ''; position: absolute; top: -4px; right: -4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--ok); border: 2px solid #14142e;
}
@keyframes edPop {
  0%, 62%, 100% { transform: none; }
  70% { transform: translateY(-7px); }
  80% { transform: none; }
}
.ext-cap { text-align: center; margin-top: 14px; font-size: 13px; color: var(--muted); }
.ext-cap b { color: #fff; font-weight: 600; }
.ext-list { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 11px; }
.ext-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--muted); }
.ext-list li i { color: var(--ok); margin-top: 3px; font-size: 14px; }

/* =====================================================================
   REFERANSLAR
   ===================================================================== */
/* Logolar farklı kaynaklardan geliyor (kimi koyu, kimi beyaz zeminli).
   Açık renkli çipe oturtmak hepsinin doğru okunmasını garanti eder. */
.refs { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.ref {
  flex: 0 0 auto; width: calc((100% - 70px) / 6);
  background: #f2f4f8; border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; height: 84px;
  display: grid; place-items: center; padding: 16px;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.ref img {
  max-height: 46px; max-width: 100%; object-fit: contain;
  filter: grayscale(1); opacity: .58;
  transition: filter .28s var(--ease), opacity .28s var(--ease);
}
.ref:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(0,0,0,.35); }
.ref:hover img { filter: none; opacity: 1; }

/* =====================================================================
   GÜVENLİK / SSS / FORM / FOOTER
   ===================================================================== */
.faq { max-width: 820px; margin: 0 auto; }
.faq-i { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; gap: 16px; text-align: left;
  padding: 22px 4px; font-size: 16px; font-weight: 600; color: var(--ink);
  font-family: var(--font-ui);
}
.faq-q:hover { color: #fff; }
.faq-q i { margin-left: auto; color: var(--accent-light); transition: transform .3s var(--ease); font-size: 15px; }
.faq-i.open .faq-q i { transform: rotate(180deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .34s var(--ease); }
.faq-i.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { color: var(--muted); font-size: 14.5px; line-height: 1.7; padding: 0 4px 22px; }

.cta-wrap {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 26px; padding: clamp(30px, 4vw, 52px);
  backdrop-filter: blur(22px); box-shadow: var(--shadow-card);
  position: relative; overflow: hidden;
}
.cta-wrap::before {
  content: ''; position: absolute; top: -55%; left: 50%; transform: translateX(-50%);
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(108,99,255,.2), transparent 68%);
  pointer-events: none;
}
.cta-wrap > * { position: relative; }

#demoForm, .form-ok { max-width: 760px; margin-left: auto; margin-right: auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.fld.full { grid-column: 1 / -1; }
.fld label { display: block; font-size: 12px; font-weight: 600; color: var(--muted); margin-bottom: 7px; letter-spacing: .02em; }
.fld input, .fld select, .fld textarea {
  width: 100%; background: rgba(8,8,22,.55);
  border: 1px solid rgba(255,255,255,.1); border-radius: 11px;
  padding: 12px 14px; font-size: 14.5px; color: var(--ink); outline: none;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.fld textarea { resize: vertical; min-height: 92px; }
.fld input::placeholder, .fld textarea::placeholder { color: #5d5d80; }
.fld input:focus, .fld select:focus, .fld textarea:focus {
  border-color: rgba(108,99,255,.55); box-shadow: 0 0 0 4px rgba(108,99,255,.12);
}
.fld select { appearance: none; cursor: pointer; }
.fld select.empty { color: #5d5d80; }
.fld select option { background: #14142e; color: var(--ink); }
.fld.sel { position: relative; }
.fld.sel::after {
  content: ''; position: absolute; right: 16px; bottom: 20px;
  width: 8px; height: 8px; pointer-events: none;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  transform: rotate(45deg) translateY(-2px);
}
.form-foot { margin-top: 22px; text-align: center; }
.form-foot .btn { width: 100%; }
.form-foot small { display: block; margin-top: 14px; font-size: 13px; color: var(--muted); }

.form-ok {
  display: none; text-align: center; padding: 34px 20px;
}
.form-ok.show { display: block; animation: rise .4s var(--ease); }
.form-ok i { font-size: 42px; color: var(--ok); }
.form-ok b { display: block; font-family: var(--font-display); font-size: 21px; color: #fff; margin: 14px 0 7px; }
.form-ok p { color: var(--muted); font-size: 14px; }

.footer { border-top: 1px solid var(--line); padding: 54px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 30px; }
.footer h6 { font-size: 11px; letter-spacing: .11em; text-transform: uppercase; color: var(--muted); margin-bottom: 15px; font-weight: 700; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer ul a { color: var(--ink); font-size: 13.5px; opacity: .8; }
.footer ul a:hover { opacity: 1; color: var(--accent-light); }
.footer-brand p { font-size: 13.5px; color: var(--muted); margin-top: 12px; max-width: 260px; line-height: 1.65; }
.footer-bot {
  margin-top: 42px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--muted);
}
.footer-bot .soc { margin-left: auto; display: flex; gap: 9px; }
.footer-bot .soc a {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--card); border: 1px solid var(--glass-border);
  display: grid; place-items: center; color: var(--muted); font-size: 15px;
}
.footer-bot .soc a:hover { background: var(--card-hover); color: var(--ink); }

/* =====================================================================
   Reveal
   ===================================================================== */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.rv.in { opacity: 1; transform: none; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1180px) {
  .sa-grid { grid-template-columns: 1fr; }
  .sa-phone-wrap { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .ref { width: calc((100% - 42px) / 4); }
  .ai-tiles { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-menu { display: none; }
  .nav-burger { display: block; }
  .g3, .g4 { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .b-2x1 { grid-column: span 2; }
  .share-split { grid-template-columns: 1fr 196px; }
  .steps { grid-template-columns: 1fr; }
  .upd-card { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .ai-caps, .sa-feats { grid-template-columns: 1fr; }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .trust div:nth-child(3)::before, .trust div:nth-child(1)::before { display: none; }
  .trust div:nth-child(1), .trust div:nth-child(2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 620px) {
  .wrap { padding: 0 18px; }
  .g2, .g3, .g4, .bento { grid-template-columns: 1fr; }
  .b-2x1 { grid-column: auto; }
  .share-split { grid-template-columns: 1fr; gap: 16px; }
  .ref { width: calc((100% - 14px) / 2); height: 74px; }
  .ai-tiles { grid-template-columns: 1fr; }
  .hero { padding-top: 108px; }
  .hero-cta .btn { width: 100%; }
  .ct-pie { gap: 20px; }
  .ct-donut { width: 168px; height: 168px; }
  .phone { width: 268px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

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

@media print {
  .nav, .os-frame, .mobile-menu { display: none; }
}

/* =====================================================================
   MİNİ PANORAMA · hero masaüstündeki pencerenin içeriği
   Alttaki büyük mockup'ın küçültülmüş, açık temalı hâli.
   ===================================================================== */
.mpan {
  height: 100%; display: flex; flex-direction: column;
  background: var(--pan-bg); color: var(--pan-ink);
  font-size: 10.5px; text-align: left;
}
.mpan-hd {
  flex: 0 0 auto; display: flex; align-items: center; gap: 7px;
  padding: 7px 9px; background: #fff; border-bottom: 1px solid var(--pan-line);
}
.mpan-logo { display: flex; align-items: center; gap: 6px; font-weight: 700; font-size: 11.5px; }
.mpan-logo .pan-glyph { height: 12px; }
.mpan-logo .pan-glyph i { width: 3px; }
.mpan-chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--pan-panel); border: 1px solid var(--pan-line);
  border-radius: var(--pill); padding: 3px 8px; font-size: 9.5px; color: #33414f;
}
.mpan-chip i { width: 6px; height: 6px; border-radius: 50%; background: var(--pan-ok); display: block; }
.mpan-hd .sp { flex: 1; }
.mpan-btn {
  border: 1px solid #cfd8e3; background: #fff; border-radius: 6px;
  padding: 4px 9px; font-size: 9.5px; color: #33414f; white-space: nowrap;
}
.mpan-btn.primary { background: var(--pan-accent); border-color: var(--pan-accent); color: #fff; font-weight: 600; }
.mpan-btn .sp2 { color: #7b3fe4; }

.mpan-main { flex: 1; display: flex; min-height: 0; }

.mpan-left {
  width: 132px; flex: 0 0 auto; background: var(--pan-panel);
  border-right: 1px solid var(--pan-line); display: flex; flex-direction: column;
}
.mpan-tabs { display: flex; border-bottom: 1px solid var(--pan-line); }
.mpan-tabs b, .mpan-tabs span {
  flex: 1; text-align: center; padding: 5px 0; font-size: 9.5px;
  border-bottom: 2px solid transparent; font-weight: 500; color: var(--pan-muted);
}
.mpan-tabs b { color: var(--pan-accent); border-bottom-color: var(--pan-accent); font-weight: 700; }
.mpan-search {
  margin: 5px; background: #fff; border: 1px solid #cfd8e3; border-radius: 5px;
  padding: 4px 6px; font-size: 9px; color: #94a3b8;
}
.mpan-tree { flex: 1; overflow: hidden; }
.mpan-tree .db { display: flex; align-items: center; gap: 5px; padding: 4px 8px; font-weight: 700; font-size: 9.5px; }
.mpan-tree .db i { color: #64748b; font-size: 9px; }
.mpan-tree .sch {
  display: flex; align-items: center; gap: 5px; padding: 4px 8px;
  background: #e9edf3; border-top: 1px solid #dde3ec; border-bottom: 1px solid #dde3ec;
  font-weight: 600; font-size: 9.5px; color: #33414f;
}
.mpan-tree .sch i { color: #8b98a8; font-size: 9px; }
.mpan-tree .sch em { margin-left: auto; font-style: normal; color: #94a3b8; font-size: 8.5px; font-weight: 500; }
.mpan-tree .t { display: flex; align-items: center; gap: 5px; padding: 3px 8px 3px 16px; font-size: 9.5px; color: #33414f; }
.mpan-tree .t em { margin-left: auto; font-style: normal; color: #94a3b8; font-size: 8.5px; font-variant-numeric: tabular-nums; }
.mpan-tree .t .vw { margin-left: auto; font-size: 7.5px; background: #f3ecff; border: 1px solid #ddd0ff; color: #6122c9; border-radius: 3px; padding: 0 4px; font-weight: 600; }

.mpan-canvas { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.mpan-top {
  flex: 0 0 auto; display: flex; align-items: center; gap: 6px;
  padding: 6px 10px; background: #fff; border-bottom: 1px solid var(--pan-line);
  font-weight: 700; font-size: 10.5px;
}
.mpan-top span { color: var(--pan-muted); font-weight: 400; }
.mpan-top .add {
  margin-left: auto; background: var(--pan-accent); color: #fff;
  border-radius: 5px; padding: 3px 8px; font-size: 9px; font-weight: 600;
}
.mpan-grid {
  flex: 1; padding: 8px; display: grid; gap: 8px;
  grid-template-columns: repeat(3, 1fr); grid-template-rows: auto 1fr;
  min-height: 0;
}
.mtile {
  background: #fff; border: 1px solid var(--pan-line); border-radius: 7px;
  padding: 7px 9px; display: flex; flex-direction: column; overflow: hidden; min-height: 0;
}
.mtile .th { font-size: 8.5px; font-weight: 600; color: #64748b; margin-bottom: 5px; letter-spacing: .02em; }
.mtile .kpi { font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: -.03em; color: var(--pan-ink); line-height: 1; }
.mtile .up { font-size: 9px; color: var(--pan-ok); margin-top: 3px; }
.mtile.wide2 { grid-column: span 2; }
.mtile svg { width: 100%; flex: 1; min-height: 0; }
.mtile .donut {
  width: 54px; height: 54px; border-radius: 50%; margin: auto; position: relative;
  background: conic-gradient(#1f6feb 0 42%, #16a34a 42% 68%, #d97706 68% 86%, #7c3aed 86% 100%);
}
.mtile .donut::after { content: ''; position: absolute; inset: 30%; background: #fff; border-radius: 50%; }
.mtile .rows { display: flex; flex-direction: column; gap: 4px; margin-top: auto; }
.mtile .rows div { display: flex; align-items: center; gap: 6px; font-size: 9px; color: #33414f; }
.mtile .rows .bar2 { flex: 1; height: 6px; background: #e2e8f0; border-radius: 3px; overflow: hidden; }
.mtile .rows .bar2 i { display: block; height: 100%; background: var(--pan-accent); }
.mtile .rows .vv { font-variant-numeric: tabular-nums; color: #64748b; min-width: 22px; text-align: right; }

/* =====================================================================
   TELEFON ÖNİZLEME · kanal başına ayrı uygulama arayüzü
   ===================================================================== */
.phone { transition: box-shadow .35s var(--ease); }
.phone.ch-wa { box-shadow: 0 34px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(37,211,102,.35), 0 0 60px rgba(37,211,102,.16); }
.phone.ch-ml { box-shadow: 0 34px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(57,192,237,.35), 0 0 60px rgba(57,192,237,.16); }
.phone.ch-sm { box-shadow: 0 34px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,170,0,.32), 0 0 60px rgba(255,170,0,.14); }
.phone-screen > * { animation: rise .28s var(--ease); }

/* Ortak durum çubuğu */
.ph-status {
  flex: 0 0 auto; display: flex; align-items: center; justify-content: space-between;
  padding: 7px 15px 5px; font-size: 10.5px; font-weight: 600;
}
.ph-status .ic { display: flex; gap: 4px; font-size: 9.5px; }
.ch-wa .ph-status { background: #1f2c33; color: #e9edef; }
.ch-ml .ph-status { background: #ffffff; color: #1c2733; }
.ch-sm .ph-status { background: #0d0d1c; color: #e4e4f0; }

/* --- WhatsApp --- */
.wa-top {
  background: #1f2c33; padding: 8px 12px 10px; display: flex; align-items: center; gap: 9px;
  flex: 0 0 auto; color: #aebac1; font-size: 14px;
}
.wa-top .back { font-size: 15px; }
.wa-top .av {
  width: 30px; height: 30px; border-radius: 50%; flex: 0 0 auto;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: grid; place-items: center; color: #fff; font-size: 14px;
}
.wa-top .who { flex: 1; min-width: 0; }
.wa-top .who b { font-size: 13px; color: #e9edef; display: block; line-height: 1.2; }
.wa-top .who small { font-size: 10.5px; color: #8696a0; }
.wa-day {
  text-align: center; margin-bottom: 10px;
  font-size: 9.5px; letter-spacing: .06em; color: #8696a0;
}
.wa-bar {
  flex: 0 0 auto; display: flex; align-items: center; gap: 8px; padding: 8px 11px;
  background: #1f2c33;
}
.wa-bar span {
  flex: 1; background: #2a3942; border-radius: var(--pill);
  padding: 7px 12px; font-size: 11px; color: #8696a0;
}
.wa-bar i { color: #8696a0; font-size: 15px; }
.wa-msg .sep { color: #7fbfae; padding: 0 1px; }

/* --- E-posta --- */
.ml-top {
  background: #fff; padding: 9px 13px; flex: 0 0 auto;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid #e2e8f0; color: #64748b; font-size: 14px;
}
.ml-top b { flex: 1; font-size: 13.5px; color: #1c2733; }
.ml-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.ml-meta .av {
  width: 28px; height: 28px; border-radius: 50%; flex: 0 0 auto;
  background: linear-gradient(135deg, #0ea5e9, #1d4ed8);
  display: grid; place-items: center; color: #fff; font-size: 13px;
}
.ml-meta b { display: block; font-size: 11.5px; color: #1c2733; }
.ml-meta small { font-size: 9.5px; color: #94a3b8; }
.ml-meta .tm { margin-left: auto; font-size: 9.5px; color: #94a3b8; }

/* --- SMS --- */
.sm-top {
  background: #16162b; padding: 8px 12px; flex: 0 0 auto;
  display: flex; align-items: center; gap: 10px; color: #8b8bb0; font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.sm-top .who { flex: 1; display: flex; align-items: center; gap: 8px; }
.sm-top .who .av {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, #ffaa00, #d97706);
  display: grid; place-items: center; color: #2a1c00; font-size: 11px; font-weight: 700;
}
.sm-top .who b { font-size: 12.5px; color: #fff; }
.sm-day { text-align: center; font-size: 9.5px; color: #6f6f92; margin-bottom: 10px; letter-spacing: .05em; }
.sm-bar {
  flex: 0 0 auto; display: flex; align-items: center; gap: 8px; padding: 8px 11px;
  background: #16162b;
}
.sm-bar span {
  flex: 1; background: #23233d; border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--pill); padding: 6px 12px; font-size: 11px; color: #6f6f92;
}
.sm-bar i { color: #ffaa00; font-size: 17px; }
