/* ==========================================================================
   UniPass Kurumsal Web Sitesi — beyaz/kurumsal tema
   Aksan rengi UniPass ürününden alındı (#25D366 / #128C7E).
   ========================================================================== */

:root {
  --green1: #1FB759;   /* beyaz zeminde daha okunur, ürünün yeşilinin koyu tonu */
  --green2: #128C7E;
  --green-soft: #E8F8EE;
  --green-line: rgba(31, 183, 89, 0.22);

  --ink: #0E1B24;       /* başlıklar */
  --body: #46606E;      /* gövde metni */
  --mute: #7C93A0;      /* ikincil */

  --bg: #FFFFFF;
  --bg-soft: #F5F8F9;   /* alternatif bölüm zemini */
  --bg-tint: #F0F6F4;
  --card: #FFFFFF;
  --border: #E6ECEE;
  --border-strong: #D6E0E3;

  --shadow-sm: 0 1px 3px rgba(14, 27, 36, 0.06);
  --shadow: 0 8px 30px rgba(14, 27, 36, 0.08);
  --shadow-lg: 0 20px 50px rgba(14, 27, 36, 0.12);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --maxw: 1200px;
  --radius: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ============================ Header ============================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: baseline; gap: 1px; }
.brand-logo {
  width: 36px; height: 36px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green1), var(--green2));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px; font-weight: 800;
  box-shadow: 0 4px 14px rgba(31, 183, 89, 0.30);
}
.brand-name { font-size: 18px; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.brand-sub { font-size: 10.5px; color: var(--mute); font-weight: 600; letter-spacing: 0.02em; }
/* UNIPASS logo — U-mark (SVG), harflerle aynı boyda ve bitişik → tek kelime "UNIPASS" */
.brand-mark { display: inline-flex; align-self: baseline; }
.brand-mark .mark-svg { display: block; height: 0.72em; width: auto; }
.brand-word { font-size: 25px; font-weight: 800; letter-spacing: -0.03em; color: #0E5A2C; line-height: 1; }
/* ikon em'i wordmark boyutuna bağlanır ki cap-height ile eşit olsun */
.brand-mark { font-size: 25px; }
.footer .brand-word, .footer .brand-mark { font-size: 20px; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--body);
  transition: color 0.15s;
}
.nav a:hover { color: var(--green1); }
.nav a.on { color: var(--green1); }
/* İngilizce şimdilik kapalı — dil butonunu gizle */
#lang-btn { display: none !important; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 15px;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.18s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green1), var(--green2));
  color: #fff;
  box-shadow: 0 6px 18px rgba(31, 183, 89, 0.28);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(31, 183, 89, 0.34); }
.btn-ghost {
  background: #fff;
  border-color: var(--border-strong);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--green1); color: var(--green1); }

/* ============================ Hero ============================ */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(46% 60% at 82% 0%, rgba(31, 183, 89, 0.10), transparent 70%),
    linear-gradient(180deg, #FFFFFF 0%, #F6FBF8 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 84px 28px 90px;  /* yatay 28px .wrap ile aynı hizada kalsın */
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 13px;
  border-radius: 100px;
  background: var(--green-soft);
  border: 1px solid var(--green-line);
  color: var(--green2);
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 22px;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green1);
}
.hero h1 {
  font-size: 52px;
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: var(--ink);
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--green1), var(--green2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .lead {
  font-size: 18px;
  color: var(--body);
  max-width: 560px;
  margin-top: 22px;
}
.hero-cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 40px;
  margin-top: 42px;
  max-width: 470px;
}
.stat-num { font-size: 28px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.stat-num span { color: var(--green1); }
.stat-label { font-size: 12.5px; color: var(--mute); margin-top: 1px; }

/* Hero görsel: modül listesi kartı */
.hero-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  position: relative;
}
.hero-panel-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 12px 12px;
}
.hero-panel-bar i { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.hero-panel-bar .t { margin-left: 10px; font-size: 12px; color: var(--mute); font-weight: 600; }
.hero-panel-list { display: flex; flex-direction: column; gap: 2px; }
.hpi {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 12px;
  border-radius: 15px;
  transition: background 0.15s;
}
.hpi:hover { background: var(--bg-soft); }
.hpi.on { background: var(--green-soft); }
.hpi-ic {
  width: 34px; height: 34px; border-radius: 12px;
  background: var(--bg-tint);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hpi.on .hpi-ic { background: #fff; }
.hpi-tx b { display: block; font-size: 13px; color: var(--ink); font-weight: 700; }
.hpi-tx span { font-size: 11px; color: var(--mute); }
.hpi-badge { margin-left: auto; font-size: 10px; font-weight: 800; color: var(--mute); }

/* ============================ Bölümler ============================ */
.section { padding: 82px 0; }
.section.soft { background: var(--bg-soft); }
.section-head { max-width: 720px; margin: 0 auto; text-align: center; }
.section-head.left { margin: 0; text-align: left; }
.section-eyebrow {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green1);
}
.section-title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-top: 10px;
}
.section-desc {
  font-size: 17px;
  color: var(--body);
  margin-top: 14px;
}

/* ============================ Modül grid ============================ */
.mod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.mod-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: all 0.25s var(--ease);
  display: flex;
  flex-direction: column;
}
.mod-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--green-line);
}
.mod-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.mod-icon {
  width: 48px; height: 48px;
  border-radius: 18px;
  background: var(--green-soft);
  border: 1px solid var(--green-line);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mod-num {
  margin-left: auto;
  font-size: 13px; font-weight: 800;
  color: #C3D2D7; letter-spacing: 0.05em;
}
.mod-card h3 { font-size: 17px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.mod-card .mod-sub { font-size: 12.5px; color: var(--green1); font-weight: 700; margin-top: 2px; }
.mod-card p { font-size: 14px; color: var(--body); margin-top: 10px; flex: 1; }
.mod-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.mod-tag {
  font-size: 11px; font-weight: 600;
  color: var(--body);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px 9px;
}
.mod-more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px;
  font-size: 13.5px; font-weight: 700;
  color: var(--green1);
}
.mod-more svg { transition: transform 0.2s var(--ease); }
.mod-card:hover .mod-more svg { transform: translateX(3px); }

/* ============================ Öne çıkanlar ============================ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.feat {
  padding: 26px 22px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
}
.feat-ico {
  width: 44px; height: 44px; border-radius: 16px;
  background: var(--green-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feat h4 { font-size: 16px; font-weight: 800; color: var(--ink); }
.feat p { font-size: 14px; color: var(--body); margin-top: 7px; }

/* ============================ Mimari ============================ */
.arch {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.arch-col {
  padding: 30px 24px;
  border-right: 1px solid var(--border);
  position: relative;
}
.arch-col:last-child { border-right: none; }
.arch-ico {
  width: 46px; height: 46px; border-radius: 16px;
  background: var(--green-soft); border: 1px solid var(--green-line);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.arch-step {
  font-size: 12px; font-weight: 800; color: #C3D2D7;
  letter-spacing: 0.1em;
}
.arch-col h4 { font-size: 16px; font-weight: 800; color: var(--ink); margin-top: 6px; }
.arch-col p { font-size: 13.5px; color: var(--body); margin-top: 8px; }

/* ============================ CTA şerit ============================ */
.cta-band {
  margin: 0 auto;
  max-width: var(--maxw);
  border-radius: 30px;
  background: linear-gradient(120deg, var(--green2), var(--green1));
  color: #fff;
  padding: 56px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; }
.cta-band p { font-size: 16px; opacity: 0.92; margin-top: 12px; }
.cta-band .btn-white {
  background: #fff; color: var(--green2);
  margin-top: 26px;
}
.cta-band .btn-white:hover { transform: translateY(-1px); }

/* ============================ Yerleşke maketi (3B izometrik) ============================ */
.campus-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 48px;
}
.campus-map {
  background: linear-gradient(160deg, #F3FBF6 0%, #EAF4F7 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 14px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.campus-map svg { width: 100%; height: auto; display: block; }
.campus-tag {
  position: absolute; top: 16px; left: 16px;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  border-radius: 100px; padding: 5px 12px;
  font-size: 12px; font-weight: 700; color: var(--ink);
  backdrop-filter: blur(6px);
}
.campus-tag .live { width: 7px; height: 7px; border-radius: 50%; background: var(--green1); box-shadow: 0 0 0 3px rgba(31,183,89,0.2); animation: cpulse 1.8s infinite; }
@keyframes cpulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.campus-legend {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 10px;
}
.zone {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 13px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s var(--ease), box-shadow 0.15s;
}
.zone:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.zone:hover { background: var(--bg-soft); }
.zone-n {
  width: 26px; height: 26px; border-radius: 11px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green1), var(--green2));
  color: #fff; font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 8px rgba(31,183,89,0.3);
}
.zone-tx { flex: 1; min-width: 0; }
.zone-tx b { display: block; font-size: 14px; font-weight: 700; color: var(--ink); }
.zone-tx small { font-size: 12px; color: var(--mute); }
.zone-stat {
  font-size: 10.5px; font-weight: 700; color: var(--green2);
  background: var(--green-soft); border: 1px solid var(--green-line);
  padding: 4px 9px; border-radius: 10px; white-space: nowrap; flex-shrink: 0;
}

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

/* ============================ Ürün vitrini (app screenshot) ============================ */
.showcase { padding-top: 20px; }
.shot-scroll { margin-top: 48px; overflow-x: auto; padding-bottom: 8px; }
.shot {
  --sc-green: #25D366;
  --sc-green2: #128C7E;
  --sc-soft: #E9Faef;
  --sc-ink: #0E1B24;
  --sc-body: #46606E;
  --sc-mute: #7C93A0;
  --sc-border: #ECF0F1;
  --sc-line: #E6ECEE;
  min-width: 940px;
  max-width: 1160px;
  margin: 0 auto;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
/* --- Vitrin light/dark ikiye bölme (sağ yarı dark) --- */
.shot-split { position: relative; min-width: 940px; max-width: 1160px; margin: 0 auto; }
.shot-split .shot { min-width: 0; max-width: none; width: 100%; margin: 0; }
.shot-split .shot.sc-dark { position: absolute; inset: 0; clip-path: inset(0 0 0 50%); pointer-events: none; transition: clip-path .5s ease; }
.shot-split-line { position: absolute; top: -6px; bottom: -6px; left: 50%; width: 0; border-left: 2px dashed var(--green1); transform: translateX(-1px); z-index: 6; pointer-events: none; transition: opacity .4s ease; }
/* hover bölgeleri: sol yarıya gelince tümü light, sağ yarıya gelince tümü dark */
.shot-hover { position: absolute; top: 0; bottom: 0; width: 50%; z-index: 5; }
.shot-hover-left { left: 0; }
.shot-hover-right { right: 0; }
.shot-hover-right:hover ~ .shot.sc-dark { clip-path: inset(0 0 0 0%); }
.shot-hover-left:hover  ~ .shot.sc-dark { clip-path: inset(0 0 0 100%); }
.shot-hover-left:hover  ~ .shot-split-line,
.shot-hover-right:hover ~ .shot-split-line { opacity: 0; }
/* dark tema — sağ yarıdaki kopya */
.shot.sc-dark {
  background: #0E1B24; border-color: #1C2A33;
  --sc-ink: #EAF1F5; --sc-body: #A6B6C1; --sc-mute: #6E828F;
  --sc-border: #22323C; --sc-line: #22323C; --sc-soft: rgba(37,211,102,0.16);
}
.shot.sc-dark .shot-chrome { background: #0B141B; border-bottom-color: #1C2A33; }
.shot.sc-dark .shot-url { background: #0E1B24; border-color: #22323C; }
.shot.sc-dark .shot-body { background: #0A1219; }
.shot.sc-dark .sc-sb { background: #0E1B24; border-right-color: #1C2A33; }
.shot.sc-dark .sc-card, .shot.sc-dark .sc-stat { background: #14222B; border-color: #213039; }
.shot.sc-dark .sc-btn.ghost { background: #14222B; border-color: #26363F; }
.shot.sc-dark .sc-search { background: #0A1219; border-color: #22323C; }
.shot.sc-dark .sc-field .v { background: #0A1219; border-color: #22323C; }
.shot.sc-dark .sc-bar { background: #22323C; }
.shot.sc-dark .sc-toggle { background: linear-gradient(90deg, #0E2A25, #123040); }
.shot.sc-dark .sc-toggle::after { content: "☾"; right: auto; left: 2px; background: #0E1B24; color: #DDEFEA; box-shadow: 0 1px 3px rgba(0,0,0,.4); }

/* Tarayıcı bar */
.shot-chrome {
  height: 40px;
  display: flex; align-items: center; gap: 8px;
  padding: 0 16px;
  background: #F5F8F9;
  border-bottom: 1px solid var(--sc-line);
}
.shot-chrome i { width: 11px; height: 11px; border-radius: 50%; }
.shot-url {
  margin-left: 14px;
  font-size: 11.5px; color: var(--sc-mute); font-weight: 600;
  background: #fff; border: 1px solid var(--sc-line);
  padding: 4px 14px; border-radius: 10px;
}
.shot-body { display: flex; background: #EEF2F3; }

/* --- app sidebar --- */
.sc-sb { width: 210px; flex-shrink: 0; background: #fff; border-right: 1px solid var(--sc-border); padding-bottom: 8px; }
.sc-brand { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-bottom: 1px solid var(--sc-border); }
.sc-logo { width: 30px; height: 30px; border-radius: 12px; background: linear-gradient(135deg, var(--sc-green), var(--sc-green2)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 15px; }
.sc-brand b { font-size: 14px; color: var(--sc-ink); display: block; line-height: 1.2; }
.sc-brand span { font-size: 9.5px; color: var(--sc-mute); }
.sc-nav { padding: 8px 0; }
.sc-item { display: flex; align-items: center; gap: 10px; padding: 8px 16px; color: var(--sc-body); position: relative; }
.sc-item svg { width: 17px; height: 17px; flex-shrink: 0; }
.sc-item b { font-size: 12.5px; font-weight: 600; display: block; line-height: 1.25; }
.sc-item small { font-size: 9.5px; color: var(--sc-mute); }
.sc-item.on { color: var(--sc-green); background: rgba(37,211,102,0.09); }
.sc-item.on::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 3px; height: 22px; border-radius: 0 3px 3px 0; background: var(--sc-green); }
.sc-item .chev { margin-left: auto; color: var(--sc-mute); font-size: 10px; }
.sc-sub { display: flex; align-items: center; gap: 9px; padding: 6px 16px 6px 44px; font-size: 12px; color: var(--sc-mute); }
.sc-sub .dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: .5; }
.sc-sub.on { color: var(--sc-green); font-weight: 700; }
.sc-sub.on .dot { opacity: 1; }
.sc-sbfoot { display: flex; align-items: center; justify-content: space-between; padding: 10px 16px; border-top: 1px solid var(--sc-border); margin-top: 6px; }
.sc-sbfoot .tema { font-size: 11px; color: var(--sc-mute); font-weight: 600; }
.sc-toggle { width: 40px; height: 22px; border-radius: 15px; background: linear-gradient(90deg,#D5F5E3,#EAF7F0); position: relative; }
.sc-toggle::after { content: "☀"; position: absolute; right: 2px; top: 1px; width: 19px; height: 19px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; font-size: 11px; box-shadow: 0 1px 3px rgba(0,0,0,.15); }
.sc-admin { display: flex; align-items: center; gap: 9px; padding: 8px 16px; }
.sc-admin .av { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--sc-green), var(--sc-green2)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }
.sc-admin b { font-size: 12.5px; color: var(--sc-ink); }

/* --- app main --- */
.sc-main { flex: 1; min-width: 0; padding: 20px 22px; }
.sc-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.sc-head h3 { font-size: 22px; font-weight: 800; color: var(--sc-ink); letter-spacing: -0.02em; }
.sc-head p { font-size: 12.5px; color: var(--sc-body); margin-top: 3px; }
.sc-head-btns { display: flex; gap: 10px; flex-shrink: 0; }
.sc-btn { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; padding: 8px 14px; border-radius: 12px; }
.sc-btn.ghost { background: #fff; border: 1px solid var(--sc-line); color: var(--sc-ink); }
.sc-btn.primary { background: linear-gradient(135deg, var(--sc-green), var(--sc-green2)); color: #fff; }

.sc-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 16px; }
.sc-stat { background: #fff; border: 1px solid var(--sc-border); border-radius: 18px; padding: 14px 16px; }
.sc-stat-top { display: flex; align-items: center; gap: 9px; margin-bottom: 8px; }
.sc-stat-ic { width: 30px; height: 30px; border-radius: 11px; background: var(--sc-soft); display: flex; align-items: center; justify-content: center; }
.sc-stat-ic svg { width: 16px; height: 16px; }
.sc-stat-label { font-size: 10px; font-weight: 700; letter-spacing: .06em; color: var(--sc-mute); }
.sc-stat-num { font-size: 30px; font-weight: 800; color: var(--sc-ink); line-height: 1; }
.sc-stat-sub { font-size: 10.5px; color: var(--sc-mute); margin-top: 6px; }
.sc-stat-sub.g { color: var(--sc-green); font-weight: 600; }
.sc-stat-sub.r { color: #E5533D; font-weight: 600; }

.sc-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.sc-card { background: #fff; border: 1px solid var(--sc-border); border-radius: 18px; padding: 16px; }
.sc-card-h { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.sc-card-h b { font-size: 15px; font-weight: 800; color: var(--sc-ink); }
.sc-card-h span { font-size: 11px; color: var(--sc-mute); }
.sc-chips { display: flex; gap: 7px; margin-bottom: 11px; }
.sc-chip { font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 26px; border: 1px solid var(--sc-line); color: var(--sc-body); }
.sc-chip.on { background: var(--sc-green); color: #fff; border-color: var(--sc-green); }
.sc-search { display: flex; align-items: center; gap: 8px; background: #F5F8F9; border: 1px solid var(--sc-line); border-radius: 12px; padding: 8px 12px; font-size: 12px; color: var(--sc-mute); margin-bottom: 10px; }
.sc-row { display: flex; align-items: center; gap: 11px; padding: 9px 10px; border-radius: 14px; }
.sc-row.on { background: rgba(37,211,102,0.07); border: 1px solid rgba(37,211,102,0.25); }
.sc-av { width: 34px; height: 34px; border-radius: 12px; background: linear-gradient(135deg, var(--sc-green), var(--sc-green2)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.sc-row-tx { flex: 1; min-width: 0; }
.sc-row-tx b { font-size: 13px; color: var(--sc-ink); display: block; }
.sc-row.on .sc-row-tx b { color: var(--sc-green); }
.sc-row-tx small { font-size: 11px; color: var(--sc-mute); }
.sc-badge { font-size: 10px; font-weight: 700; color: var(--sc-green); background: var(--sc-soft); padding: 3px 8px; border-radius: 9px; }
.sc-emp { font-size: 10.5px; color: var(--sc-mute); font-weight: 600; margin-left: 6px; }

/* detay panel */
.sc-det-h { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.sc-av.lg { width: 52px; height: 52px; border-radius: 16px; font-size: 17px; }
.sc-det-name { display: flex; align-items: center; gap: 8px; }
.sc-det-name b { font-size: 17px; font-weight: 800; color: var(--sc-ink); }
.sc-live { font-size: 11px; color: var(--sc-green); font-weight: 700; display: inline-flex; align-items: center; gap: 5px; }
.sc-live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--sc-green); }
.sc-det-role { font-size: 12.5px; color: var(--sc-body); margin-top: 2px; }
.sc-det-meta { font-size: 11px; color: var(--sc-mute); margin-top: 2px; }
.sc-det-actions { margin-left: auto; display: flex; gap: 8px; }
.sc-fields { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.sc-field label { font-size: 9.5px; font-weight: 700; letter-spacing: .06em; color: var(--sc-mute); display: block; margin-bottom: 5px; }
.sc-field .v { font-size: 12.5px; color: var(--sc-ink); font-weight: 600; background: #F5F8F9; border: 1px solid var(--sc-line); border-radius: 11px; padding: 8px 11px; }
.sc-sec-t { font-size: 11px; font-weight: 700; letter-spacing: .06em; color: var(--sc-mute); margin: 14px 0 8px; }
.sc-empty { font-size: 12.5px; color: var(--sc-body); }
.sc-divider { height: 1px; background: var(--sc-line); margin: 12px 0; }

/* ============================ Footer ============================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 46px 0 40px;
  background: var(--bg-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr 0.9fr 0.9fr;
  gap: 32px;
}
.footer h5 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mute); margin-bottom: 14px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
/* Ofislerimiz — linksiz şehir listesi */
.foot-offices li { font-size: 14px; color: var(--body); font-weight: 600; }

/* ===== Entegrasyon markaları (anasayfa + entegrasyonlar sayfası) ===== */
.hw-note {
  display: flex; align-items: center; gap: 16px;
  background: var(--green-soft); border: 1px solid var(--green-line);
  border-radius: 22px; padding: 20px 24px; margin-bottom: 34px;
}
.hw-note > svg { flex: 0 0 auto; }
.hw-note b { display: block; font-size: 16px; color: var(--ink); font-weight: 800; margin-bottom: 3px; }
.hw-note span { font-size: 14px; color: var(--body); }
/* masonry: kartlar sıkı paketlensin — biri biter, diğeri başlar */
.mp-cap-grid.vendors-grid { display: block; column-count: 2; column-gap: 18px; }
.vendors-grid .mp-cap { break-inside: avoid; -webkit-column-break-inside: avoid; width: 100%; margin: 0 0 18px; display: inline-block; }
@media (max-width: 600px) { .mp-cap-grid.vendors-grid { column-count: 1; } }
.vendor-card h4 { margin-bottom: 13px; }
.vendor-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.vendor-tags .mp-tag {
  font-size: 12px; font-weight: 600; color: var(--body);
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 11px; padding: 5px 11px;
}

/* ===== Marka kayan şerit (hero altı) ===== */
.brand-strip { padding: 26px 0 30px; background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.brand-strip-label { text-align: center; font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); margin-bottom: 18px; }
.brand-marquee { position: relative; overflow: hidden; }
.brand-marquee::before, .brand-marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none; }
.brand-marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-soft), rgba(245,248,249,0)); }
.brand-marquee::after { right: 0; background: linear-gradient(270deg, var(--bg-soft), rgba(245,248,249,0)); }
.brand-marquee-track { display: flex; width: max-content; animation: bm-scroll 55s linear infinite; }
.brand-marquee:hover .brand-marquee-track { animation-play-state: paused; }
.bm-item {
  flex: 0 0 auto; margin-right: 14px; white-space: nowrap;
  font-size: 14px; font-weight: 700; color: var(--body);
  background: #fff; border: 1px solid var(--border); border-radius: 100px; padding: 9px 18px;
}
@keyframes bm-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .brand-marquee-track { animation: none; } }
/* footer modül listesi — tüm modüller, iki sütun */
#foot-modules { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 24px; }
.footer ul a { font-size: 14px; color: var(--body); }
.footer ul a:hover { color: var(--green1); }
.footer .muted { font-size: 13px; color: var(--mute); margin-top: 12px; max-width: 320px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 36px; padding-top: 22px;
  font-size: 13px; color: var(--mute);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}

/* ============================ Responsive ============================ */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .mod-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .arch { grid-template-columns: 1fr 1fr; }
  .arch-col:nth-child(2) { border-right: none; }
}
@media (max-width: 720px) {
  .nav { display: none; }
  .hero h1 { font-size: 38px; }
  .section-title { font-size: 28px; }
}
@media (max-width: 560px) {
  .mod-grid, .feat-grid, .arch, .footer-grid { grid-template-columns: 1fr; }
  .arch-col { border-right: none; border-bottom: 1px solid var(--border); }
}

/* ============================ Menü: Modüller açılır (hover) ============================ */
.nav-dd { position: relative; }
.nav-dd-trigger {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 14.5px; font-weight: 600; color: var(--body); cursor: pointer;
}
.nav-dd:hover .nav-dd-trigger { color: var(--green1); }
.nav-caret { font-size: 11px; transition: transform 0.2s var(--ease); color: var(--mute); }
.nav-dd:hover .nav-caret { transform: rotate(180deg); color: var(--green1); }
.nav-dd-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  width: 560px; padding: 10px;
  background: #fff; border: 1px solid var(--border); border-radius: 22px;
  box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0.18s;
  z-index: 60;
}
.nav-dd::before { /* hover köprüsü (menüye giderken kapanmasın) */
  content: ""; position: absolute; top: 100%; left: -20px; right: -20px; height: 16px;
}
.nav-dd:hover .nav-dd-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(8px);
}
.nav-dd-item {
  display: flex; align-items: center; gap: 11px;
  padding: 9px 11px; border-radius: 15px;
  transition: background 0.14s;
}
.nav-dd-item:hover { background: var(--bg-soft); }
.nav-dd-ic {
  width: 34px; height: 34px; border-radius: 12px; flex-shrink: 0;
  background: var(--green-soft); border: 1px solid var(--green-line);
  display: flex; align-items: center; justify-content: center;
}
.nav-dd-tx { min-width: 0; }
.nav-dd-tx b { display: block; font-size: 13px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.nav-dd-tx span { font-size: 11px; color: var(--mute); }
@media (max-width: 720px) { .nav-dd-menu { display: none; } }

/* ============================ Modül sayfası ============================ */
.mp-hero { padding: 34px 0 20px; }
.mp-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--green1); margin-bottom: 18px;
}
.mp-back:hover { gap: 9px; }
/* banner: yalnızca kullanıcının görseli — üzerine hiçbir şey konmaz */
.mp-banner {
  border-radius: 28px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-lg);
  background: var(--bg-soft);
  line-height: 0;
}
.mp-banner > img { width: 100%; height: auto; display: block; }
/* başlık bloğu — banner'ın ALTINDA, beyaz zeminde */
.mp-head-block { padding: 30px 2px 2px; max-width: 780px; }
.mp-badge2 {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--green-soft); border: 1px solid var(--green-line);
  color: var(--green2); font-size: 12.5px; font-weight: 700;
  padding: 6px 13px; border-radius: 100px; margin-bottom: 16px;
}
.mp-badge2 .mp-badge-ic { display: flex; }
.mp-head-block h1 { font-size: clamp(30px, 4vw, 46px); line-height: 1.06; letter-spacing: -0.03em; color: var(--ink); font-weight: 800; }
.mp-head-block .mp-sub2 { font-size: 15px; color: var(--green1); font-weight: 700; margin-top: 8px; }
.mp-head-block p { font-size: clamp(15px, 1.3vw, 17px); color: var(--body); margin-top: 14px; }
.mp-tags2 { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.mp-tags2 .mp-tag {
  font-size: 11.5px; font-weight: 600; color: var(--body);
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 11px; padding: 5px 11px;
}

/* yetenekler */
.mp-cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 46px; }
.mp-cap {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 22px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.mp-cap:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--green-line); }
.mp-cap-ic {
  width: 42px; height: 42px; border-radius: 16px; margin-bottom: 15px;
  background: var(--green-soft); border: 1px solid var(--green-line);
  display: flex; align-items: center; justify-content: center;
}
.mp-cap h4 { font-size: 16px; font-weight: 800; color: var(--ink); }
.mp-cap p { font-size: 13.5px; color: var(--body); margin-top: 7px; }

/* diğer modüller şeridi */
.mp-rel { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 40px; }
.mp-rel-card {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 14px 15px;
  transition: transform 0.18s var(--ease), box-shadow 0.18s, border-color 0.18s;
}
.mp-rel-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--green-line); }
.mp-rel-ic { width: 38px; height: 38px; border-radius: 14px; background: var(--green-soft); border: 1px solid var(--green-line); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mp-rel-tx b { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink); }
.mp-rel-tx span { font-size: 11.5px; color: var(--mute); }

/* showcase içi ek: basit tablo + analitik + rozetler (modüle göre) */
.sc-tbl { width: 100%; border-collapse: collapse; }
.sc-tbl th { text-align: left; font-size: 10px; font-weight: 700; letter-spacing: .05em; color: var(--sc-mute); padding: 6px 10px; border-bottom: 1px solid var(--sc-line); }
.sc-tbl td { font-size: 12px; color: var(--sc-ink); padding: 9px 10px; border-bottom: 1px solid var(--sc-border); }
.sc-tbl tr:last-child td { border-bottom: none; }
.sc-pill { font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 26px; }
.sc-pill.g { color: var(--sc-green); background: var(--sc-soft); }
.sc-pill.y { color: #B7791F; background: #FEF3D6; }
.sc-pill.r { color: #E5533D; background: #FCE7E3; }
.sc-pill.b { color: #1E7FBF; background: #E3F1FB; }
.sc-bar { height: 8px; border-radius: 8px; background: #EEF3F4; overflow: hidden; }
.sc-bar > i { display: block; height: 100%; border-radius: 8px; background: linear-gradient(90deg, var(--sc-green), var(--sc-green2)); }
.sc-mini { display: flex; align-items: flex-end; gap: 5px; height: 90px; padding: 6px 2px; }
.sc-mini > i { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, var(--sc-green), #7fe0a6); opacity: .9; }

@media (max-width: 1000px) {
  .mp-cap-grid { grid-template-columns: 1fr 1fr; }
  .mp-rel { grid-template-columns: 1fr 1fr; }
  .mp-banner { aspect-ratio: auto; }
}
@media (max-width: 560px) {
  .mp-cap-grid, .mp-rel { grid-template-columns: 1fr; }
}

/* ============ Modül mobil ekranları — iPhone mockup ============ */
.mob-scroll { display: flex; gap: 34px; justify-content: center; flex-wrap: wrap; padding: 6px 0 4px; }
@media (max-width: 900px) {
  .mob-scroll { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding: 6px 4px 16px; -webkit-overflow-scrolling: touch; }
}
.phone {
  flex: 0 0 250px; width: 250px; height: 534px;
  background: #ffffff;
  border-radius: 46px; padding: 11px; position: relative;
  box-shadow: 0 36px 70px -30px rgba(14, 27, 36, 0.28), inset 0 0 0 1px rgba(14, 27, 36, 0.10);
}
.phone-screen {
  position: relative; height: 100%; border-radius: 36px; overflow: hidden;
  background: #F4FAF6; display: flex; flex-direction: column;
  box-shadow: inset 0 0 0 1px rgba(14, 27, 36, 0.06);
}
.ms-island { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 78px; height: 21px; background: #0E1B24; border-radius: 16px; z-index: 6; }
.ms-status { display: flex; justify-content: space-between; align-items: center; padding: 13px 22px 8px; font-size: 12px; font-weight: 700; color: var(--ink); }
.ms-status-r { display: inline-flex; align-items: center; gap: 6px; font-size: 10px; }
.ms-batt { width: 22px; height: 11px; border: 1.5px solid var(--ink); border-radius: 3px; position: relative; }
.ms-batt::before { content: ""; position: absolute; top: 1.5px; left: 1.5px; bottom: 1.5px; width: 72%; background: var(--ink); border-radius: 1px; }
.ms-batt::after { content: ""; position: absolute; right: -3px; top: 3px; width: 2px; height: 5px; background: var(--ink); border-radius: 0 2px 2px 0; }
.ms-head { display: flex; align-items: center; justify-content: space-between; padding: 4px 18px 12px; }
.ms-head.sm { padding-top: 6px; }
.ms-hi { font-size: 11px; color: var(--mute); font-weight: 600; }
.ms-title { font-size: 17px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.ms-ava { width: 38px; height: 38px; border-radius: 16px; background: var(--green-soft); display: grid; place-items: center; }
.ms-ava.sm { width: 32px; height: 32px; border-radius: 14px; background: #EDF3F1; }
.ms-scrollbody { flex: 1; overflow: hidden; padding: 0 14px 8px; display: flex; flex-direction: column; gap: 11px; }
.ms-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.ms-kpi { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 11px 12px; }
.ms-kpi-ic { width: 26px; height: 26px; border-radius: 11px; background: var(--green-soft); display: grid; place-items: center; margin-bottom: 7px; }
.ms-kpi-num { font-size: 19px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.ms-kpi-lb { font-size: 9px; color: var(--mute); font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; margin-top: 1px; }
.ms-card { background: #fff; border: 1px solid var(--border); border-radius: 22px; padding: 13px; }
.ms-card-h { font-size: 12px; font-weight: 800; color: var(--ink); margin-bottom: 10px; }
.ms-barrow { display: flex; align-items: center; gap: 8px; font-size: 10.5px; color: var(--body); margin-bottom: 9px; }
.ms-barrow:last-child { margin-bottom: 0; }
.ms-barrow > span:first-child { width: 62px; flex: 0 0 62px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ms-bartrack { flex: 1; height: 7px; background: #EDF3F0; border-radius: 8px; overflow: hidden; }
.ms-bartrack > i { display: block; height: 100%; background: linear-gradient(90deg, var(--green1), var(--green2)); border-radius: 8px; }
.ms-donutcard { display: flex; align-items: center; gap: 16px; }
.ms-donut { position: relative; width: 92px; height: 92px; border-radius: 50%; background: conic-gradient(var(--green1) 0 64%, #E3EFE8 64% 100%); flex: 0 0 92px; }
.ms-donut-c { position: absolute; inset: 13px; background: #fff; border-radius: 50%; display: grid; place-items: center; font-size: 16px; font-weight: 800; color: var(--ink); }
.ms-legend { display: flex; flex-direction: column; gap: 9px; font-size: 11.5px; color: var(--body); font-weight: 600; }
.ms-legend div { display: flex; align-items: center; gap: 8px; }
.ms-legend i { width: 10px; height: 10px; border-radius: 3px; display: inline-block; }
.ms-chips { display: flex; gap: 7px; margin-bottom: 2px; }
.ms-chip { font-size: 11px; font-weight: 700; color: var(--mute); background: #EDF3F1; border-radius: 100px; padding: 5px 11px; }
.ms-chip.on { background: var(--green1); color: #fff; }
.ms-list { display: flex; flex-direction: column; gap: 8px; }
.ms-li { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 9px 11px; }
.ms-li-av { width: 30px; height: 30px; border-radius: 12px; background: var(--green-soft); display: grid; place-items: center; flex: 0 0 30px; }
.ms-li-tx { flex: 1; min-width: 0; }
.ms-li-tx b { display: block; font-size: 12px; font-weight: 700; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ms-li-tx small { font-size: 10.5px; color: var(--mute); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.ms-pill { font-size: 9.5px; font-weight: 700; padding: 3px 8px; border-radius: 100px; white-space: nowrap; flex: none; }
.ms-pill.g { background: #E6F7EC; color: #12873F; }
.ms-pill.y { background: #FEF4E2; color: #B7791F; }
.ms-pill.r { background: #FDEBEB; color: #C0392B; }
.ms-pill.b { background: #EAF0F6; color: #45566A; }
.ms-feed { padding: 4px 6px; }
.ms-feeditem { display: flex; align-items: center; gap: 10px; padding: 9px 6px; border-bottom: 1px solid var(--border); }
.ms-feeditem:last-child { border-bottom: 0; }
.ms-dot { width: 9px; height: 9px; border-radius: 50%; flex: 0 0 9px; }
.ms-dot.g { background: var(--green1); } .ms-dot.y { background: #E6A417; } .ms-dot.r { background: #D0463B; } .ms-dot.b { background: #7A8A99; }
.ms-field { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 9px 2px; border-bottom: 1px solid var(--border); font-size: 11.5px; }
.ms-field:last-child { border-bottom: 0; }
.ms-field label { color: var(--mute); font-weight: 600; }
.ms-field div { color: var(--ink); font-weight: 700; text-align: right; }
.ms-qr { width: 92px; height: 92px; margin: 0 auto 12px; display: grid; grid-template-columns: repeat(5, 1fr); grid-template-rows: repeat(5, 1fr); gap: 3px; padding: 9px; border: 1px solid var(--border); border-radius: 16px; }
.ms-qr span { border-radius: 2px; }
.ms-empty { text-align: center; color: var(--mute); font-size: 12px; padding: 34px 0; }
/* yüzen radiuslu tab bar — WhatsApp/UniPass app tarzı */
.ms-tab { display: flex; align-items: center; justify-content: space-around; margin: 6px 14px 16px; padding: 9px 12px; background: #fff; border: 1px solid var(--border); border-radius: 32px; box-shadow: 0 12px 26px -12px rgba(14, 27, 36, 0.28); }
.ms-tab-i { display: inline-flex; }
.ms-tab-plus { width: 44px; height: 44px; border-radius: 22px; background: linear-gradient(135deg, var(--green1), var(--green2)); display: grid; place-items: center; margin-top: -14px; box-shadow: 0 10px 20px -6px rgba(31, 183, 89, 0.6); }
