/* ===================================================
   Kayden Yazılım — styles.css
   Marka: Kırmızı #c5302a (tek vurgu)  ·  Antrasit #14161a  ·  Nötr gri yüzeyler
=================================================== */

:root {
  --red:       #c5302a;
  --red-dark:  #a3231d;
  /* Lacivert/mor kaldırıldı — nötr koyu antrasit olarak yeniden kullanılıyor */
  --indigo:    #2b2f38;
  --indigo-dk: #1b1e25;
  --ink:       #14161a;
  --ink-soft:  #42474f;
  --muted:     #6b7280;
  --line:      #e7e7e9;
  --bg:        #ffffff;
  --bg-alt:    #f5f5f6;
  --bg-dark:   #14161a;
  --white:     #ffffff;
  --radius:    16px;
  --radius-sm: 11px;
  --shadow-sm: 0 2px 8px rgba(20,22,26,.06);
  --shadow:    0 14px 40px rgba(20,22,26,.10);
  --shadow-lg: 0 28px 64px rgba(20,22,26,.16);
  /* Gökkuşağı degrade kaldırıldı — tek renk (marka kırmızısı) vurgu */
  --grad:      linear-gradient(135deg, #c5302a 0%, #a3231d 100%);
  --grad-soft: linear-gradient(120deg, rgba(197,48,42,.07), rgba(20,22,26,.05));
  --maxw: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink-soft);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--ink); line-height: 1.18; font-weight: 800; letter-spacing: -.02em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 15px;
  padding: 12px 22px; border-radius: 999px;
  cursor: pointer; border: none; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
  white-space: nowrap; line-height: 1;
}
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 10px 24px rgba(204,42,35,.30); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(204,42,35,.38); }
.btn-ghost { background: rgba(255,255,255,.10); color: #fff; border: 1.5px solid rgba(255,255,255,.45); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.20); transform: translateY(-2px); }
.btn-outline { background: #fff; color: var(--red); border: 1.5px solid var(--red); }
.btn-outline:hover { background: var(--red); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 28px rgba(204,42,35,.28); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, box-shadow .3s, padding .3s;
  padding: 14px 0;
}
.site-header.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: var(--shadow-sm);
  padding: 8px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  height: 44px; width: 44px; object-fit: contain; flex: 0 0 auto;
  background: #fff; border-radius: 11px; padding: 5px;
  box-shadow: 0 3px 12px rgba(0,0,0,.12); transition: height .3s, width .3s, box-shadow .3s;
}
.site-header.scrolled .brand-mark { height: 38px; width: 38px; box-shadow: none; border: 1px solid var(--line); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 21px;
  letter-spacing: -.02em; color: #fff; transition: color .3s;
}
.brand-text em {
  font-style: normal; font-weight: 600; font-size: 10px; letter-spacing: .36em;
  text-transform: uppercase; color: rgba(255,255,255,.72); margin-top: 4px; transition: color .3s;
}
.site-header.scrolled .brand-text strong { color: var(--ink); }
.site-header.scrolled .brand-text em { color: var(--muted); }

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600; font-size: 15px; color: #fff; white-space: nowrap;
  position: relative; transition: color .2s;
}
.main-nav a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--red); transition: width .25s var(--ease);
}
.main-nav a:not(.nav-cta):hover::after { width: 100%; }
.main-nav a.active::after { width: 100%; }
.site-header.scrolled .main-nav a { color: var(--ink); }
.nav-cta { color: #fff !important; }

/* ---- Açılır alt menü (dropdown) ---- */
.nav-item { position: relative; display: inline-flex; align-items: center; }
.dd-trigger { display: inline-flex; align-items: center; gap: 6px; }
.caret { font-size: 11px; transition: transform .25s var(--ease); opacity: .85; }
.nav-item:hover .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(14px);
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 8px; min-width: 256px; z-index: 120;
  opacity: 0; visibility: hidden; transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.dropdown::before { content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(10px); }
.dropdown a {
  display: block; padding: 11px 14px; border-radius: 9px;
  font-size: 14px; font-weight: 600; color: var(--ink) !important; white-space: nowrap;
}
.dropdown a::after { display: none !important; }
.dropdown a:hover { background: var(--bg-alt); color: var(--red) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 110; }
.nav-toggle span { width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: .3s; }
.site-header.scrolled .nav-toggle span { background: var(--ink); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: #fff; overflow: hidden; padding: 120px 0 90px; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(16,18,22,.95) 0%, rgba(22,24,29,.85) 45%, rgba(150,28,23,.42) 115%);
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: 48px; align-items: center; }
.hero-content { max-width: 640px; }

/* Hero sağ görsel (Netsis kartı) */
.hero-visual { position: relative; display: grid; place-items: center; min-height: 380px; }
.hero-visual .netsis-badge {
  background: #fff; border-radius: 22px; padding: 42px 38px; text-align: center;
  width: 86%; max-width: 360px; box-shadow: 0 30px 70px rgba(8,10,26,.45);
}
.hero-visual .netsis-badge img { width: 72%; margin: 0 auto 18px; }
.hero-visual .netsis-badge span { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.hero-float {
  position: absolute; background: #fff; border-radius: 16px; padding: 16px 24px;
  box-shadow: 0 18px 44px rgba(8,10,26,.30); text-align: center;
}
.hero-float .ac-num {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.6rem;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1;
}
.hero-float .ac-label { font-size: 12.5px; font-weight: 600; color: var(--muted); margin-top: 3px; }
.hero-float .ac-stars { color: #f5b301; font-size: 1.18rem; letter-spacing: 3px; line-height: 1; }
.hero-float-partner { max-width: 215px; }
.hero-float-partner .partner-main { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 13px; color: var(--ink); line-height: 1.3; }
.hero-float-partner .partner-sub { font-size: 11.5px; font-weight: 600; color: var(--muted); margin-top: 7px; padding-top: 7px; border-top: 1px solid var(--line); line-height: 1.3; }
.hero-float-1 { top: 14px; right: -4px; animation: floaty 4s ease-in-out infinite; }
.hero-float-2 { bottom: 16px; left: -8px; animation: floaty 4s ease-in-out infinite .6s; }
@keyframes floaty { 50% { transform: translateY(-10px); } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  padding: 7px 16px; border-radius: 999px; font-size: 13.5px; font-weight: 600;
  letter-spacing: .02em; margin-bottom: 26px; backdrop-filter: blur(6px);
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 4px rgba(74,222,128,.25); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(74,222,128,0); } }

.hero h1 { font-size: clamp(2.3rem, 5.4vw, 4rem); color: #fff; margin-bottom: 22px; }
.grad-text { color: #ff6a5d; }
.hero-sub { font-size: clamp(1.02rem, 1.6vw, 1.22rem); color: rgba(255,255,255,.85); max-width: 600px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 46px; }

.hero-trust span { display: block; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 14px; }
.trust-logos { display: flex; gap: 12px; flex-wrap: wrap; }
.trust-pill {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 14px;
  padding: 8px 16px; border-radius: 10px; background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18); color: #fff;
}

.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 2; line-height: 0; }
.hero-wave svg { width: 100%; height: 70px; }
.hero-wave path { fill: var(--bg); }

/* ---------- Page hero (alt sayfalar) ---------- */
.page-hero {
  position: relative; padding: 150px 0 70px; color: #fff; overflow: hidden;
  background: linear-gradient(135deg, #14161a 0%, #1d2128 55%, #2b2f38 100%);
}
.page-hero::after {
  content: ''; position: absolute; top: -140px; right: -100px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(197,48,42,.16), transparent 70%); pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.65); margin-bottom: 14px; font-family: 'Plus Jakarta Sans', sans-serif; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: #fff; }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); color: #fff; margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,.82); max-width: 640px; }

/* ---------- Stats ---------- */
.stats { background: var(--bg); padding: 18px 0 70px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat {
  text-align: center; padding: 30px 18px; border-radius: var(--radius);
  background: var(--bg); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.stat:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: 14.5px; font-weight: 600; color: var(--ink-soft); }

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.kicker {
  display: inline-block; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: .14em; color: var(--red); margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 16px; }
.section-head p { font-size: 1.06rem; color: var(--muted); }

/* ---------- Service cards ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 58px; height: 58px; border-radius: 15px; display: grid; place-items: center;
  margin-bottom: 22px;
}
.card-icon svg { width: 28px; height: 28px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-red { background: linear-gradient(135deg, var(--red), #e0543f); box-shadow: 0 8px 20px rgba(204,42,35,.30); }
.icon-indigo { background: linear-gradient(135deg, var(--indigo), #3a3f4a); box-shadow: 0 8px 20px rgba(20,22,26,.22); }
.card h3 { font-size: 1.22rem; margin-bottom: 12px; }
.card p { font-size: .98rem; color: var(--muted); }

/* ---------- Projects ---------- */
.project {
  background: var(--bg); border: 1px solid var(--line); border-radius: 22px;
  padding: 40px; box-shadow: var(--shadow); margin-bottom: 40px;
  scroll-margin-top: 100px;
}
.project-head { margin-bottom: 30px; max-width: 760px; }
.tag {
  display: inline-block; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
  font-size: 12.5px; letter-spacing: .03em; padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.tag-red { background: rgba(204,42,35,.10); color: var(--red); }
.tag-indigo { background: rgba(43,47,56,.08); color: var(--indigo); }
.project-head h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 14px; }
.project-head p { color: var(--muted); font-size: 1.02rem; }
.project-feats { margin-top: 18px; display: grid; gap: 10px; }
.project-feats li { position: relative; padding-left: 30px; color: var(--ink-soft); font-weight: 500; }
.project-feats li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 50%; background: var(--grad-soft); color: var(--red);
  display: grid; place-items: center; font-size: 12px; font-weight: 800;
}

.uretim-shot { margin: 4px 0 30px; }
.uretim-shot img { width: 100%; height: auto; display: block; }

/* ---- Üretim projeleri kart ızgarası ---- */
.uretim-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 6px; }
.ucard {
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: 15px;
  padding: 26px 24px; transition: transform .3s var(--ease), box-shadow .3s, background .3s, border-color .3s;
}
.ucard:hover { transform: translateY(-6px); box-shadow: var(--shadow); background: #fff; border-color: transparent; }
.ucard-ic { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px; }
.ucard-ic svg { width: 25px; height: 25px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ucard-chevron { background: var(--grad); box-shadow: 0 8px 20px rgba(204,42,35,.22); }
.ucard-chevron svg { width: 26px; height: 26px; stroke-width: 2.4; }
.ucard h4 { font-size: 1.1rem; color: var(--ink); margin-bottom: 8px; }
.ucard p { font-size: .94rem; color: var(--muted); }

.project-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.shot {
  border-radius: 14px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); background: #fff; position: relative;
  transition: transform .35s var(--ease), box-shadow .35s;
}
.shot-wide { grid-column: 1 / -1; }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.shot:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.shot:hover img { transform: scale(1.03); }
.shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 18px 12px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 14px;
  color: #fff; background: linear-gradient(transparent, rgba(16,18,22,.86));
}

/* ---- Projeler teaser (ana sayfa) ---- */
.proj-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.pcard {
  display: flex; flex-direction: column; background: var(--bg);
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.pcard:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: transparent; }
.pcard-img {
  aspect-ratio: 16 / 9; overflow: hidden;
  background: linear-gradient(135deg, #16181d, #2b2f38);
}
.pcard-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .55s var(--ease); }
.pcard:hover .pcard-img img { transform: scale(1.06); }

/* Uygulama (dikey ekran) kartları — telefon önizleme stili */
.pcard-app .pcard-img {
  aspect-ratio: 4 / 3;
  background: linear-gradient(150deg, #16181d 0%, #20242c 55%, #2b2f38 130%);
  position: relative;
}
.pcard-app .pcard-img::after {
  content: ''; position: absolute; top: -30%; right: -20%; width: 60%; height: 80%;
  background: radial-gradient(circle, rgba(197,48,42,.16), transparent 70%); pointer-events: none;
}
.pcard-app .pcard-img img {
  width: 100%; height: 100%; object-fit: contain; object-position: center;
  padding: 20px 0; position: relative; z-index: 1;
}
.pcard-app:hover .pcard-img img { transform: scale(1.04); }
.pcard-body { padding: 22px 26px 26px; display: flex; flex-direction: column; align-items: flex-start; }
.pcard-body .tag { margin-bottom: 12px; }
.pcard-body h3 { font-size: 1.28rem; margin-bottom: 9px; }
.pcard-body p { font-size: .97rem; color: var(--muted); margin-bottom: 16px; }
.pcard-link {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 14.5px;
  color: var(--red); display: inline-flex; align-items: center; gap: 7px; margin-top: auto;
}
.pcard-link .arr { transition: transform .25s var(--ease); }
.pcard:hover .pcard-link .arr { transform: translateX(5px); }
.proj-cta-center { text-align: center; margin-top: 44px; }

/* ---- Mobile project: phone mockups ---- */
.project-mobile {
  background: linear-gradient(135deg, #14161a 0%, #1d2128 60%, #2b2f38 100%);
  border: none; color: #fff; overflow: hidden; position: relative;
}
.project-mobile::after {
  content: ''; position: absolute; top: -120px; right: -120px; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(204,42,35,.45), transparent 70%); pointer-events: none;
}
.project-mobile .project-head h3 { color: #fff; }
.project-mobile .project-head p { color: rgba(255,255,255,.78); }
.project-mobile .project-feats li { color: rgba(255,255,255,.92); }
.project-mobile .project-feats li::before { background: rgba(255,255,255,.14); color: #fff; }
.project-mobile .tag-indigo { background: rgba(255,255,255,.14); color: #fff; }

/* Saha satış kartı — teal vurgulu varyant */
.project-saha { background: linear-gradient(135deg, #14161a 0%, #1d2128 60%, #2b2f38 120%); }
.project-saha::after { background: radial-gradient(circle, rgba(197,48,42,.16), transparent 70%); top: auto; bottom: -120px; right: -120px; }

/* ---- Promo video showcase ---- */
.video-showcase {
  display: flex; align-items: center; justify-content: flex-start; gap: 44px;
  flex-wrap: wrap; margin-top: 30px; position: relative; z-index: 1;
}
.video-showcase .phone-video { width: clamp(240px, 26vw, 340px); flex: 0 0 auto; }
.phone-video .phone-screen {
  aspect-ratio: 478 / 850; border-width: 8px;
  box-shadow: 0 26px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.05);
}
.phone-video video { width: 100%; height: 100%; object-fit: cover; display: block; background: #11152e; }
.sound-toggle {
  display: inline-flex; align-items: center; gap: 8px; margin: 16px auto 0;
  padding: 10px 20px; border-radius: 999px; cursor: pointer;
  background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.22);
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 14px;
  transition: background .2s, transform .2s;
}
.sound-toggle:hover { background: rgba(255,255,255,.26); transform: translateY(-2px); }
.vs-text { flex: 1 1 340px; max-width: 560px; }
.vs-text > p { color: rgba(255,255,255,.82); font-size: 1.06rem; margin-bottom: 20px; }
.vs-text .project-feats { margin-top: 0; }
.vs-badge {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 16px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  padding: 7px 15px; border-radius: 999px; font-size: 13px; font-weight: 600; color: #fff;
}
.vs-dot { width: 8px; height: 8px; border-radius: 50%; background: #ff5a5a; box-shadow: 0 0 0 4px rgba(255,90,90,.25); animation: pulse 2s infinite; }
.vs-text h4 { color: #fff; font-size: 1.4rem; margin-bottom: 12px; }
.vs-text p { color: rgba(255,255,255,.82); font-size: 1.02rem; }

.phones-title {
  text-align: center; color: rgba(255,255,255,.7); font-size: 13px; letter-spacing: .14em;
  text-transform: uppercase; margin-top: 48px; position: relative; z-index: 1; font-weight: 700;
}

.phones {
  display: flex; justify-content: center; align-items: flex-end; gap: 18px;
  flex-wrap: wrap; margin-top: 20px; position: relative; z-index: 1;
}
.phone { width: 168px; flex: 0 0 auto; text-align: center; transition: transform .35s var(--ease); }
.phone-center { width: 188px; }
.phone:hover { transform: translateY(-10px); }
.phone-screen {
  border: 6px solid #11152e; border-radius: 26px; overflow: hidden;
  background: #11152e; box-shadow: 0 22px 50px rgba(0,0,0,.45);
  aspect-ratio: 9 / 19.5; position: relative;
}
.phone-screen::before {
  content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 46px; height: 5px; border-radius: 3px; background: rgba(255,255,255,.25); z-index: 2;
}
.phone-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.phone figcaption {
  margin-top: 14px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
  font-size: 13.5px; color: rgba(255,255,255,.85);
}

.project-cta { text-align: center; padding-top: 14px; }
.project-cta p { font-size: 1.18rem; font-weight: 600; color: var(--ink); margin-bottom: 18px; font-family: 'Plus Jakarta Sans', sans-serif; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.about-text h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 18px; }
.about-text > p { color: var(--muted); font-size: 1.05rem; margin-bottom: 28px; }
.why-list { display: grid; gap: 16px; margin-bottom: 32px; }
.why-list li { display: flex; gap: 14px; align-items: flex-start; }
.why-ic {
  flex: 0 0 26px; width: 26px; height: 26px; border-radius: 50%;
  background: var(--grad); color: #fff; display: grid; place-items: center;
  font-size: 14px; font-weight: 800; margin-top: 2px;
}
.why-list strong { color: var(--ink); }
.about-note {
  font-size: 1rem; color: var(--ink-soft); margin-bottom: 26px;
  padding: 14px 18px; background: var(--grad-soft); border-left: 3px solid var(--red); border-radius: 10px;
}
.about-note a { color: var(--red); font-weight: 700; }
.about-note a:hover { text-decoration: underline; }

.about-visual { position: relative; min-height: 380px; display: grid; place-items: center; }
.netsis-badge {
  background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 40px;
  box-shadow: var(--shadow-lg); text-align: center; width: 80%; max-width: 360px;
}
.netsis-badge img { width: 70%; margin: 0 auto 18px; }
.netsis-badge span { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--ink); }
.about-photo {
  width: 90%; max-width: 400px; border-radius: 22px; overflow: hidden;
  border: 6px solid #fff; box-shadow: var(--shadow-lg);
}
.about-photo img { width: 100%; height: 330px; object-fit: cover; display: block; }
.about-card {
  position: absolute; background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 16px 22px; box-shadow: var(--shadow); text-align: center;
}
.about-card-1 { top: 8px; right: 0; }
.about-card-2 { bottom: 8px; left: 0; }
.ac-num {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.5rem;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ac-label { font-size: 12.5px; font-weight: 600; color: var(--muted); }

/* ---------- Technologies ---------- */
.tech-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.tech-item {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 22px 12px; text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 15px; color: var(--ink);
  box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s, color .25s;
}
.tech-item:hover { transform: translateY(-5px); box-shadow: var(--shadow); color: var(--red); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: start; }
.contact-info h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 16px; }
.contact-info > p { color: var(--muted); margin-bottom: 30px; }
.contact-list { display: grid; gap: 22px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }

/* İletişim — formsuz, ortalanmış düzen */
#iletisim .contact-grid { grid-template-columns: 1fr; }
#iletisim .contact-info { text-align: center; max-width: 1120px; margin: 0 auto; }
#iletisim .contact-info > p { margin-left: auto; margin-right: auto; max-width: 580px; }
#iletisim .contact-list {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  max-width: 1000px; margin: 40px auto 0;
}
#iletisim .contact-list li {
  flex-direction: column; align-items: center; text-align: center; gap: 16px;
  background: #fff; border: 1px solid #eef0f7; border-radius: 22px; padding: 34px 22px;
  box-shadow: 0 8px 30px rgba(20,22,26,.05);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
#iletisim .contact-list li:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(20,22,26,.12); border-color: transparent; }
#iletisim .contact-list .ci-ic {
  flex: 0 0 auto; width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(140deg, rgba(197,48,42,.10), rgba(20,22,26,.06));
  display: grid; place-items: center;
}
#iletisim .contact-list .ci-ic svg {
  width: 25px; height: 25px; fill: none; stroke: var(--red); stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
#iletisim .contact-list li > div { font-size: 14.5px; line-height: 1.75; color: var(--ink-soft); }
#iletisim .contact-list li strong { display: block; margin-bottom: 6px; font-size: 16px; color: var(--ink); }
#iletisim .contact-list li a { color: var(--ink-soft); transition: color .2s; }
#iletisim .contact-list li a:hover { color: var(--red); }
#iletisim .contact-list a[href^="tel:"] { white-space: nowrap; }
#iletisim .contact-list a[href^="mailto:"] { word-break: break-word; }
.ci-ic {
  flex: 0 0 46px; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: var(--grad-soft); font-size: 20px;
}
.contact-list strong { color: var(--ink); font-family: 'Plus Jakarta Sans', sans-serif; }
.contact-list a:hover { color: var(--red); }

.contact-form {
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
  padding: 36px; box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 7px; font-family: 'Plus Jakarta Sans', sans-serif; }
.field input, .field select, .field textarea {
  font-family: 'Inter', sans-serif; font-size: 15px; color: var(--ink);
  padding: 12px 15px; border: 1.5px solid var(--line); border-radius: 11px;
  background: var(--bg-alt); transition: border-color .2s, box-shadow .2s, background .2s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--indigo); background: #fff;
  box-shadow: 0 0 0 4px rgba(197,48,42,.12);
}
.field textarea { resize: vertical; }
.form-note { margin-top: 14px; padding: 12px 16px; border-radius: 11px; font-size: 14.5px; font-weight: 600; text-align: center; }
.form-note.ok { background: rgba(74,222,128,.14); color: #15803d; }
.form-note.err { background: rgba(204,42,35,.10); color: var(--red); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,.7); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand-logo { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.footer-mark { height: 44px; width: 44px; object-fit: contain; background: #fff; border-radius: 11px; padding: 5px; }
.footer-brand-text { display: flex; flex-direction: column; line-height: 1; }
.footer-brand-text strong { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 20px; letter-spacing: -.02em; color: #fff; }
.footer-brand-text em { font-style: normal; font-weight: 600; font-size: 10px; letter-spacing: .34em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: 4px; }
.footer-brand p { font-size: 14.5px; max-width: 300px; }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.footer-col a, .footer-col span { display: block; font-size: 14.5px; color: rgba(255,255,255,.65); margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.10); padding: 22px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 13px; color: rgba(255,255,255,.5); }

/* ---------- To-top ---------- */
.to-top {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 48px; height: 48px; border-radius: 14px; background: var(--red); color: #fff;
  display: grid; place-items: center; font-size: 22px; font-weight: 700;
  box-shadow: 0 10px 26px rgba(204,42,35,.40);
  opacity: 0; visibility: hidden; transform: translateY(14px); transition: .3s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--red-dark); transform: translateY(-3px); }

/* ---------- Lightbox ---------- */
.shot img, .phone-screen img,
.post-cover img, .post-figure img { cursor: zoom-in; transition: box-shadow .25s var(--ease), transform .25s var(--ease); }
.post-cover img:hover, .post-figure img:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(8,10,26,.16); }
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(8,10,26,.92); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 4vw;
  opacity: 0; visibility: hidden; transition: opacity .28s var(--ease);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 94vw; max-height: 86vh; width: auto; height: auto;
  border-radius: 14px; box-shadow: 0 30px 90px rgba(0,0,0,.6);
  transform: scale(.94); transition: transform .3s var(--ease); object-fit: contain;
}
.lightbox.open img { transform: scale(1); }
.lightbox-cap {
  position: absolute; bottom: 22px; left: 0; right: 0; text-align: center;
  color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 15px;
  text-shadow: 0 2px 8px rgba(0,0,0,.5); pointer-events: none;
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px; width: 46px; height: 46px;
  border: none; border-radius: 12px; background: rgba(255,255,255,.14);
  color: #fff; font-size: 26px; line-height: 1; cursor: pointer; transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.28); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border: none; border-radius: 50%;
  background: rgba(255,255,255,.14); color: #fff; font-size: 26px; cursor: pointer;
  display: grid; place-items: center; transition: background .2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,.30); }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
@media (max-width: 600px) { .lightbox-nav { width: 42px; height: 42px; } .lightbox img { max-height: 78vh; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .uretim-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-content { max-width: 720px; }
  .hero-visual { display: none; }
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  #iletisim .contact-list { grid-template-columns: repeat(2, 1fr); max-width: 520px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-visual { min-height: 320px; }
}

@media (max-width: 980px) {
  .main-nav {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(80vw, 320px);
    background: #fff; flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 26px; padding: 40px; box-shadow: -20px 0 60px rgba(20,22,26,.18);
    transform: translateX(100%); transition: transform .35s var(--ease);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { color: var(--ink) !important; font-size: 18px; white-space: normal; }

  /* Dropdown mobilde açık liste olarak */
  .nav-item { flex-direction: column; align-items: flex-start; width: 100%; }
  .caret { display: none; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: transparent; padding: 6px 0 0 14px;
    min-width: 0; border-left: 2px solid var(--line); margin: 8px 0 0 6px;
  }
  .dropdown::before { display: none; }
  .dropdown a { font-size: 15px !important; padding: 8px 0; color: var(--ink-soft) !important; white-space: normal; }
  .nav-toggle { display: flex; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  body.nav-open { overflow: hidden; }
}

@media (max-width: 760px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .proj-grid { grid-template-columns: 1fr; }
  .project { padding: 24px; }
  .project-gallery { grid-template-columns: 1fr; }
  .phones { gap: 12px; }
  .phone { width: 132px; }
  .phone-center { width: 132px; }
  .video-showcase { gap: 28px; }
  .phone-video { width: 280px; }
  .vs-text { text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .contact-form { padding: 24px; }
  .footer-bottom .container { flex-direction: column; }
}

@media (max-width: 460px) {
  .cards-grid, .tech-grid, .footer-grid, .uretim-grid { grid-template-columns: 1fr; }
  #iletisim .contact-list { grid-template-columns: 1fr; max-width: 320px; }
  .hero-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ============ Başarı Hikayesi — editoryal blog ============ */
.page-hero-date {
  display: inline-block; margin: 14px 0 4px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 14px;
  color: rgba(255,255,255,.82); letter-spacing: .02em;
}
.post { max-width: 860px; margin: 0 auto; scroll-margin-top: 90px; }
/* Birden çok hikaye — ayraç ve telefon ekran görselleri */
.story-sep { max-width: 860px; margin: 64px auto; border: none; border-top: 1px solid var(--line); }
.story-shots { display: flex; justify-content: center; align-items: flex-start; gap: 16px; flex-wrap: wrap; margin: 0 0 44px; }
.story-shots img {
  width: clamp(120px, 24vw, 190px); height: auto; border-radius: 18px;
  border: 1px solid var(--line); box-shadow: var(--shadow); cursor: zoom-in;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.story-shots img:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ---- Blog index — hikaye kartları ---- */
.story-index { display: grid; gap: 26px; max-width: 920px; margin: 0 auto; }
.story-card {
  display: grid; grid-template-columns: 330px 1fr; background: #fff;
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), border-color .2s var(--ease);
}
.story-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--ink); }
.story-card-media {
  overflow: hidden; min-height: 264px; padding: 22px;
  background: linear-gradient(155deg, #191c22 0%, #2a2e37 100%);
  display: grid; place-items: center;
}
.story-card-media img {
  max-width: 100%; max-height: 224px; width: auto; height: auto; display: block;
  object-fit: contain; border-radius: 12px; box-shadow: 0 16px 36px rgba(0,0,0,.42);
  transition: transform .4s var(--ease);
}
.story-card:hover .story-card-media img { transform: translateY(-4px); }
.story-card-body { padding: 32px 34px; display: flex; flex-direction: column; }
.story-card-cat { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.story-card h2 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); color: var(--ink); margin-bottom: 12px; line-height: 1.25; }
.story-card > p { color: var(--muted); font-size: .98rem; line-height: 1.62; margin-bottom: 22px; }
.story-card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.story-card-date { font-size: 13px; color: var(--muted); font-weight: 500; }
.story-card-link { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .92rem; color: var(--ink); display: inline-flex; align-items: center; gap: 7px; }
.story-card-link .arr { color: var(--red); transition: transform .2s var(--ease); }
.story-card:hover .story-card-link .arr { transform: translateX(4px); }
@media (max-width: 680px) {
  .story-card { grid-template-columns: 1fr; }
  .story-card-media img { min-height: 200px; }
  .story-card-body { padding: 26px 24px; }
}

/* ---- Detay hero başlığı + geri bağlantısı ---- */
.post-hero .post-eyebrow-h { display: inline-block; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; color: #ff6a5d; margin-bottom: 14px; }
.post-hero h1 { max-width: 840px; }
.post-hero-meta { margin-top: 18px; display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,.72); font-size: 14px; font-weight: 500; }
.post-hero-meta img { width: 26px; height: 26px; border-radius: 50%; }
.post-back { display: inline-flex; align-items: center; gap: 8px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 14px; color: var(--muted); margin-top: 48px; }
.post-back:hover { color: var(--red); }

/* Header */
.post-header { max-width: 760px; margin: 0 auto 36px; }
.post-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: .04em; text-transform: uppercase; color: var(--red); margin-bottom: 18px;
}
.post-title { font-size: clamp(2rem, 4.2vw, 3rem); line-height: 1.14; letter-spacing: -.01em; margin-bottom: 20px; }
.post-dek { font-size: 1.22rem; line-height: 1.6; color: var(--ink-soft); margin-bottom: 28px; }
.post-byline {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-size: .92rem; color: var(--muted); padding-top: 22px; border-top: 1px solid var(--line);
}
.byline-author { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; color: var(--ink); }
.byline-avatar { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); }
.byline-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); opacity: .6; }
.post-byline time { font-weight: 500; }

/* Cover + inline figures */
.post-cover { margin: 0 0 44px; }
.post-cover img, .post-figure img {
  width: 100%; height: auto; display: block; border-radius: 14px;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.post-cover figcaption, .post-figure figcaption {
  margin-top: 12px; font-size: .88rem; color: var(--muted); text-align: center; line-height: 1.5;
}
.post-cover, .post-figure { position: relative; }
.post-cover figcaption::after, .post-figure figcaption::after {
  content: "🔍 Büyütmek için tıklayın"; display: inline-block; margin-left: 8px;
  font-size: .8rem; color: var(--red); font-weight: 600; white-space: nowrap;
}
.post-figure { margin: 44px 0; }
/* Detay ekran görüntüsünü okuma kolonundan taşırıp daha geniş/okunaklı göster */
@media (min-width: 860px) {
  .post-figure { width: calc(100% + 140px); margin-left: -70px; margin-right: -70px; }
}

/* Reading column */
.post-body { max-width: 720px; margin: 0 auto; }
.post-body > p {
  font-size: 1.12rem; line-height: 1.78; color: var(--ink-soft); margin-bottom: 1.5em;
}
.post-body > p strong { color: var(--ink); font-weight: 700; }
.post-body h2 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  line-height: 1.25; color: var(--ink); margin: 2em 0 .7em;
}

/* Facts box */
.post-facts {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 28px;
  background: var(--bg-alt); border: 1px solid var(--line); border-left: 3px solid var(--red);
  border-radius: 12px; padding: 22px 26px; margin: 0 0 38px;
}
.post-facts div { padding: 6px 0; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: .98rem; color: var(--ink); }
.post-facts span { display: block; font-size: 11.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 3px; }

/* Pull quote */
.post-quote {
  margin: 40px 0; padding: 6px 0 6px 28px; border-left: 3px solid var(--red);
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-style: italic;
  font-size: 1.34rem; line-height: 1.45; color: var(--ink);
}

/* Tags */
.post-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line); }
.post-tags span { font-size: 13px; font-weight: 600; color: var(--muted); background: var(--bg-alt); border: 1px solid var(--line); border-radius: 999px; padding: 6px 13px; }

/* Closing CTA */
.post-cta {
  max-width: 760px; margin: 56px auto 0; text-align: center;
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: 18px; padding: 44px 32px;
}
.post-cta h3 { font-size: clamp(1.3rem, 2.6vw, 1.7rem); margin-bottom: 12px; }
.post-cta p { color: var(--muted); font-size: 1.05rem; margin-bottom: 24px; }

@media (max-width: 720px) {
  .post-facts { grid-template-columns: 1fr; }
  .post-body > p { font-size: 1.06rem; }
}

/* ============================================================
   Logo Netsis Ürünleri — kurumsal düzen (.page-erp)
============================================================ */
.page-erp .page-hero { padding-bottom: 60px; }
.erp-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12.5px; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase; color: #fff;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px; padding: 7px 15px; margin-bottom: 20px;
}
.erp-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(204,42,35,.25); }

/* Bölüm başlığı — sola hizalı kurumsal varyant */
.erp-head { max-width: 720px; margin: 0 0 40px; }
.erp-head .kicker { margin-bottom: 14px; }
.erp-head h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin-bottom: 14px; }
.erp-head p { color: var(--muted); font-size: 1.05rem; }

/* Intro: iki kolon (metin + bilgi kutusu) */
.erp-intro { display: grid; grid-template-columns: 1.25fr .85fr; gap: 50px; align-items: start; }
.erp-intro h2 { font-size: clamp(1.55rem, 3vw, 2.1rem); margin-bottom: 18px; }
.erp-intro p { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.1em; }
.erp-intro p strong { color: var(--ink); font-weight: 700; }
.erp-facts { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 30px; }
.erp-facts h3 { font-size: 12px; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 6px; }
.erp-fact { display: flex; gap: 14px; padding: 16px 0; border-top: 1px solid var(--line); }
.erp-facts h3 + .erp-fact { border-top: none; }
.erp-fact-ic { flex: none; width: 22px; height: 22px; color: var(--red); margin-top: 2px; }
.erp-fact-ic svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.erp-fact-tx b { display: block; color: var(--ink); font-family: 'Plus Jakarta Sans', sans-serif; font-size: .98rem; margin-bottom: 2px; }
.erp-fact-tx span { display: block; font-size: .9rem; color: var(--muted); line-height: 1.5; }

/* Ürün aileleri */
.erp-family + .erp-family { margin-top: 46px; }
.erp-family-head { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px 14px; margin-bottom: 24px; padding-bottom: 14px; border-bottom: 2px solid var(--ink); }
.erp-family-head h3 { font-size: 1.35rem; }
.erp-family-head span { font-size: .92rem; color: var(--muted); font-weight: 500; }
.erp-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.erp-card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: 14px; padding: 26px 26px 24px;
  transition: border-color .2s var(--ease), box-shadow .25s var(--ease), transform .2s var(--ease);
}
.erp-card:hover { border-color: var(--ink); box-shadow: var(--shadow); transform: translateY(-4px); }
.erp-card-seg {
  align-self: flex-start; font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--red); background: rgba(204,42,35,.07); border-radius: 6px; padding: 5px 9px; margin-bottom: 16px;
}
.erp-card h4 { font-size: 1.16rem; margin-bottom: 10px; }
.erp-card p { font-size: .94rem; color: var(--muted); line-height: 1.62; margin-bottom: 22px; flex: 1; }
.erp-card-link {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .9rem; color: var(--ink);
  display: inline-flex; align-items: center; gap: 7px; align-self: flex-start;
}
.erp-card-link .arr { color: var(--red); transition: transform .2s var(--ease); }
.erp-card:hover .erp-card-link .arr { transform: translateX(4px); }

/* Modüller — sade çizgili grid */
.erp-mods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.erp-mod { background: #fff; padding: 26px 22px; transition: background .2s; }
.erp-mod:hover { background: var(--bg-alt); }
.erp-mod-no { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12.5px; font-weight: 800; color: var(--red); letter-spacing: .04em; margin-bottom: 10px; }
.erp-mod h4 { font-size: 1.02rem; margin-bottom: 6px; }
.erp-mod p { font-size: .87rem; color: var(--muted); line-height: 1.55; }

/* Faydalar — sola hizalı satırlar */
.erp-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 42px; }
.erp-benefit { display: flex; gap: 16px; }
.erp-benefit-ic { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--bg-alt); border: 1px solid var(--line); display: grid; place-items: center; color: var(--red); }
.erp-benefit-ic svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.erp-benefit h4 { font-size: 1.04rem; margin-bottom: 5px; }
.erp-benefit p { font-size: .91rem; color: var(--muted); line-height: 1.58; }

/* Süreç adımları */
.erp-steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; }
.erp-step { position: relative; padding: 0 14px; text-align: center; }
.erp-step-no { width: 46px; height: 46px; margin: 0 auto 16px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1rem; position: relative; z-index: 1; }
.erp-step h4 { font-size: .98rem; margin-bottom: 5px; }
.erp-step p { font-size: .84rem; color: var(--muted); line-height: 1.5; }
.erp-step:not(:last-child)::after { content: ""; position: absolute; top: 23px; left: 50%; width: 100%; height: 2px; background: var(--line); z-index: 0; }

/* CTA — kutulu kurumsal görünüm */
.page-erp .project-cta {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); max-width: 820px; margin: 0 auto; padding: 50px 40px;
}
.page-erp .project-cta h3 { font-size: clamp(1.4rem, 2.8vw, 2rem); margin-bottom: 12px; }
.page-erp .project-cta p { font-weight: 500; color: var(--muted); font-size: 1.05rem; }

@media (max-width: 960px) {
  .erp-intro { grid-template-columns: 1fr; gap: 34px; }
  .erp-cards { grid-template-columns: repeat(2, 1fr); }
  .erp-mods { grid-template-columns: repeat(2, 1fr); }
  .erp-benefits { grid-template-columns: repeat(2, 1fr); gap: 26px 32px; }
  .erp-steps { grid-template-columns: repeat(3, 1fr); gap: 30px 0; }
  .erp-step:nth-child(3)::after { display: none; }
}
@media (max-width: 560px) {
  .erp-cards, .erp-mods, .erp-benefits { grid-template-columns: 1fr; }
  .erp-steps { grid-template-columns: repeat(2, 1fr); }
  .erp-step::after { display: none; }
}

/* ---------- Mobil Raporlama — tanıtım afişi ---------- */
.mobil-promo { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; margin-bottom: 48px; }
.mobil-slogan {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; text-transform: uppercase;
  line-height: 1.06; letter-spacing: -.01em; font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  color: #fff; margin-bottom: 18px;
}
.mobil-slogan em { font-style: normal; color: var(--red); }
.mobil-promo-text p { color: rgba(255,255,255,.78); font-size: 1.06rem; max-width: 440px; }
.mobil-promo-img { margin: 0; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); max-width: 360px; justify-self: center; }
.mobil-promo-img img { width: 100%; display: block; }
@media (max-width: 760px) {
  .mobil-promo { grid-template-columns: 1fr; gap: 26px; }
  .mobil-promo-img { max-width: 300px; }
}

/* ============================================================
   Ana sayfa — kurumsal rafine (.page-corp)
   İçerik aynı kalır; yalnızca görsel dil sakinleştirilir:
   degrade ikon/metinler ve abartılı hover'lar ölçülü hale gelir.
============================================================ */
/* Servis kartları — degrade üst şerit yerine sade, ince çizgili */
.page-corp .card::before { display: none; }
.page-corp .card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--ink); }
.page-corp .card-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: var(--bg-alt); border: 1px solid var(--line); box-shadow: none;
}
.page-corp .card-icon svg { width: 24px; height: 24px; stroke-width: 1.9; }
.page-corp .icon-red,
.page-corp .icon-indigo { background: var(--bg-alt); box-shadow: none; }
.page-corp .icon-red svg { stroke: var(--red); }
.page-corp .icon-indigo svg { stroke: var(--indigo); }

/* İstatistikler — degrade metin yerine ciddi mürekkep tonu */
.page-corp .stat:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.page-corp .stat-num {
  background: none; -webkit-background-clip: border-box; background-clip: border-box;
  color: var(--ink); -webkit-text-fill-color: var(--ink);
}

/* Neden Kayden — degrade rozet yerine sade kırmızı onay */
.page-corp .why-ic { background: rgba(204,42,35,.10); color: var(--red); border-radius: 8px; }

/* Proje kartları — hover sakinleştir */
.page-corp .pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--ink); }

/* ---- Projeler sayfası — kurumsal sadeleştirme ---- */
/* Renkli ışıma orblarını kaldır, koyu bölümleri sakin lacivirte indir */
.page-corp .project-mobile::after,
.page-corp .project-saha::after { display: none; }
.page-corp .project-mobile,
.page-corp .project-saha { background: linear-gradient(165deg, #14161a 0%, #20242c 100%); }
/* Üretim kart ikonları — gökkuşağı gradyan yerine sade kırmızı */
.page-corp .ucard-chevron { background: var(--red); box-shadow: none; }
.page-corp .ucard:hover { transform: translateY(-4px); }
/* Görsel hover yakınlaştırmasını kaldır (daha ölçülü) */
.page-corp .shot:hover { transform: translateY(-3px); }
.page-corp .shot:hover img { transform: none; }
/* Ses butonu — sade çizgi */
.page-corp .sound-toggle { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.30); }
