/* ==========================================================================
   ilkandogru.com — Tasarım Sistemi
   Koyu zemin · Logo kırmızısı · Gümüş tipografi · Cam yüzeyler
   ========================================================================== */

:root {
  --bg: #07080a;
  --bg-2: #0b0c10;
  --bg-3: #101218;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.14);
  --text: #f4f5f7;
  --text-2: #c9ccd3;
  --muted: #8d939e;
  --red: #e11d2a;
  --red-2: #ff3844;
  --red-3: #ff6b74;
  --red-dark: #9c0f19;
  --red-glow: rgba(225, 29, 42, 0.45);
  --silver: linear-gradient(180deg, #ffffff 0%, #d9dce2 45%, #a3a8b3 100%);
  --font-display: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 76px;
  --container: 1240px;
  --gutter: 20px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.12; letter-spacing: -0.02em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--red); color: #fff; }
:focus-visible { outline: 2px solid var(--red-2); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.ico { width: 1.15em; height: 1.15em; flex: none; }

/* ---------- Arka plan efektleri ---------- */
.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 520px; height: 520px; pointer-events: none; z-index: 0;
  border-radius: 50%; opacity: 0; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(225, 29, 42, 0.16) 0%, rgba(225, 29, 42, 0) 62%);
  transition: opacity .6s;
}
@media (hover: hover) and (pointer: fine) { body.has-cursor .cursor-glow { opacity: 1; } }

/* ---------- Tipografi yardımcıları ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--red-2); padding: 6px 12px; border-radius: 999px;
  border: 1px solid rgba(225, 29, 42, .35); background: rgba(225, 29, 42, .08);
}
.eyebrow--light { color: #fff; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.12); }
.eyebrow .ico { width: 14px; height: 14px; }

.section-head { max-width: 760px; margin-bottom: 44px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { margin: 0 auto; }
.section-title {
  font-size: clamp(30px, 4.6vw, 52px); font-weight: 800; margin: 16px 0 14px;
  background: var(--silver); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-title em { font-style: normal; color: var(--red-2); -webkit-text-fill-color: var(--red-2); }
.section-text { color: var(--muted); font-size: clamp(15px, 1.6vw, 18px); max-width: 640px; }
.section-head--center .section-text { margin: 0 auto; }
.section { padding: clamp(72px, 10vw, 128px) 0; position: relative; }
.section--tight { padding: clamp(48px, 7vw, 88px) 0; }
.section--alt { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%); }
.section-line { position: relative; }
.section-line::before {
  content: ''; position: absolute; left: 50%; top: 0; width: min(90%, 900px); height: 1px; transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
}
.grad-text { background: var(--silver); -webkit-background-clip: text; background-clip: text; color: transparent; }
.mono { font-family: var(--font-mono); }

/* ---------- Butonlar ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px; font-weight: 600; font-size: 15px; line-height: 1;
  border: 1px solid transparent; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, border-color .3s, color .3s;
  white-space: nowrap; overflow: hidden; isolation: isolate;
}
.btn .ico { width: 18px; height: 18px; }
.btn--sm { padding: 11px 18px; font-size: 14px; }
.btn--lg { padding: 18px 32px; font-size: 16px; }
.btn--primary {
  background: linear-gradient(135deg, var(--red-2) 0%, var(--red) 55%, var(--red-dark) 100%);
  color: #fff; box-shadow: 0 8px 28px -8px var(--red-glow), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn--primary::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, rgba(255,255,255,.25), transparent 50%); opacity: 0; transition: opacity .3s;
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px var(--red-glow); }
.btn--primary:hover::after { opacity: 1; }
.btn--ghost { background: var(--surface); border-color: var(--border-2); color: var(--text); backdrop-filter: blur(8px); }
.btn--ghost:hover { background: var(--surface-2); border-color: rgba(255,255,255,.3); transform: translateY(-2px); }
.btn--white { background: #fff; color: #111; box-shadow: 0 10px 30px -10px rgba(0,0,0,.6); }
.btn--white:hover { transform: translateY(-2px); background: #f3f3f3; }
.btn--ghost-light { border-color: rgba(255,255,255,.4); color: #fff; }
.btn--ghost-light:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn--wa { background: #25d366; color: #fff; }
.btn--wa:hover { background: #1fbf5b; transform: translateY(-2px); }
.btn--block { width: 100%; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; color: var(--red-2); font-weight: 600; transition: gap .3s; }
.link-arrow:hover { gap: 14px; }

/* ---------- Navigasyon ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h);
  transition: background .4s, border-color .4s, backdrop-filter .4s, height .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled { background: rgba(7, 8, 10, .72); backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%); border-color: var(--border); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 20px; }
.nav__brand { display: inline-flex; align-items: center; }
.wordmark { display: inline-flex; align-items: baseline; gap: .18em; font-family: var(--font-display); font-size: 26px; line-height: 1; letter-spacing: -0.02em; text-transform: uppercase; white-space: nowrap; padding-top: .1em; transition: font-size .3s; }
.wordmark__a { font-weight: 900; background: var(--silver); -webkit-background-clip: text; background-clip: text; color: transparent; filter: drop-shadow(0 4px 12px rgba(0,0,0,.5)); }
.wordmark__b { font-weight: 500; color: rgba(255,255,255,.28); -webkit-text-stroke: 1px rgba(255,255,255,.4); letter-spacing: .02em; }
.nav__brand:hover .wordmark__b { color: rgba(255,255,255,.45); }
.nav__links { display: none; align-items: center; gap: 4px; }
.nav__link {
  position: relative; padding: 10px 14px; border-radius: 999px; font-size: 14.5px; font-weight: 500; color: var(--text-2);
  transition: color .3s, background .3s;
}
.nav__link:hover { color: #fff; background: var(--surface-2); }
.nav__link.is-active { color: #fff; }
.nav__link.is-active::after { content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px; border-radius: 2px; background: var(--red); }
.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__cta { display: none; }
.nav__burger { position: relative; width: 46px; height: 46px; border-radius: 14px; border: 1px solid var(--border-2); background: var(--surface); display: grid; place-items: center; z-index: 120; }
.nav__burger span { position: absolute; left: 13px; width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: transform .4s var(--ease), opacity .3s, top .3s; }
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { top: 22px; }
.nav__burger span:nth-child(3) { top: 28px; }
body.menu-open .nav__burger span:nth-child(1) { top: 22px; transform: rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
body.menu-open .nav__burger span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

@media (min-width: 1024px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }
  .wordmark { font-size: 30px; }
  .nav.is-scrolled .wordmark { font-size: 26px; }
}

/* Mobil menü */
.mmenu { position: fixed; inset: 0; z-index: 110; visibility: hidden; pointer-events: none; }
.mmenu__bg {
  position: absolute; inset: 0; background: radial-gradient(120% 100% at 100% 0%, #1a0608 0%, var(--bg) 60%);
  clip-path: circle(0% at calc(100% - 44px) 38px); transition: clip-path .7s var(--ease);
}
.mmenu__inner { position: relative; height: 100%; padding: calc(var(--nav-h) + 24px) 28px 40px; display: flex; flex-direction: column; justify-content: space-between; overflow-y: auto; }
.mmenu__links a {
  display: flex; align-items: baseline; gap: 16px; padding: 14px 0; font-family: var(--font-display); font-size: clamp(30px, 8vw, 44px); font-weight: 800;
  color: #fff; border-bottom: 1px solid var(--border); opacity: 0; transform: translateY(24px);
  transition: opacity .5s var(--ease), transform .6s var(--ease); transition-delay: calc(var(--i) * 60ms + 150ms);
}
.mmenu__links a span { font-family: var(--font-mono); font-size: 13px; font-weight: 400; color: var(--red-2); }
.mmenu__foot { opacity: 0; transform: translateY(20px); transition: opacity .5s var(--ease), transform .6s var(--ease); transition-delay: calc(var(--i) * 60ms + 150ms); padding-top: 28px; }
.mmenu__contact { display: flex; align-items: center; gap: 10px; color: var(--text-2); padding: 6px 0; font-size: 15px; }
.mmenu__contact .ico { color: var(--red-2); }
body.menu-open { overflow: hidden; }
body.menu-open .mmenu { visibility: visible; pointer-events: auto; }
body.menu-open .mmenu__bg { clip-path: circle(150% at calc(100% - 44px) 38px); }
body.menu-open .mmenu__links a, body.menu-open .mmenu__foot { opacity: 1; transform: none; }

.social { display: flex; gap: 10px; margin-top: 16px; }
.social a { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; border: 1px solid var(--border-2); background: var(--surface); color: var(--text-2); transition: all .3s; }
.social a:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-3px); }
.social .ico { width: 18px; height: 18px; }

/* ---------- HERO ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding: calc(var(--nav-h) + 40px) 0 60px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
}
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; will-change: transform; animation: float 14s ease-in-out infinite; }
.orb--red { width: 520px; height: 520px; background: radial-gradient(circle, rgba(225,29,42,.55), transparent 65%); top: -140px; right: -120px; }
.orb--red2 { width: 360px; height: 360px; background: radial-gradient(circle, rgba(255,56,68,.35), transparent 65%); bottom: -60px; left: -100px; animation-delay: -6s; }
.orb--white { width: 420px; height: 420px; background: radial-gradient(circle, rgba(255,255,255,.08), transparent 65%); top: 30%; left: 30%; animation-delay: -3s; }
@keyframes float { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-30px, 30px) scale(1.06); } }

.hero__inner { position: relative; z-index: 2; display: grid; gap: 48px; align-items: center; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--red-2); font-weight: 600; font-size: 15px; letter-spacing: .01em; margin-bottom: 22px; }
.hero__eyebrow .ico { width: 22px; height: 22px; }
.hero__title { font-size: clamp(56px, 12vw, 128px); font-weight: 900; line-height: .96; padding-top: .08em; letter-spacing: -0.03em; text-transform: uppercase; }
.hero__title .t1 { display: block; padding-top: .14em; margin-top: -.1em; background: var(--silver); -webkit-background-clip: text; background-clip: text; color: transparent; filter: drop-shadow(0 10px 30px rgba(0,0,0,.5)); }
.hero__title .t2 { display: block; font-weight: 500; color: rgba(255,255,255,.28); -webkit-text-stroke: 1px rgba(255,255,255,.35); letter-spacing: .02em; }
.hero__roles { display: flex; align-items: center; gap: 12px; margin: 22px 0 0; font-family: var(--font-display); font-size: clamp(18px, 2.6vw, 28px); font-weight: 700; min-height: 1.4em; }
.hero__roles .hash { color: var(--red-2); }
.hero__roles .typed { color: #fff; }
.hero__roles--fixed { margin-top: 6px; }
.caret--static { animation: none !important; }
.hero__roles .caret { width: 3px; height: 1.1em; background: var(--red-2); animation: blink 1s steps(2) infinite; border-radius: 2px; }
@keyframes blink { 50% { opacity: 0; } }
.hero__text { color: var(--text-2); font-size: clamp(16px, 1.7vw, 18.5px); max-width: 620px; margin: 22px 0 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.hero__tags span { font-family: var(--font-mono); font-size: 12.5px; padding: 6px 12px; border-radius: 8px; border: 1px solid var(--border); background: var(--surface); color: var(--muted); }
.hero__tags span:hover { border-color: var(--red); color: #fff; }

/* Hero — sağ görsel: kod kartı */
.hero__visual { position: relative; display: none; }
.code-card {
  position: relative; border-radius: var(--radius-lg); border: 1px solid var(--border-2);
  background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  backdrop-filter: blur(20px); box-shadow: 0 40px 90px -30px rgba(0,0,0,.8), inset 0 1px 0 rgba(255,255,255,.12);
  overflow: hidden; transform-style: preserve-3d; transition: transform .5s var(--ease);
}
.code-card__bar { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--border); }
.code-card__bar i { width: 11px; height: 11px; border-radius: 50%; background: #3a3d45; }
.code-card__bar i:nth-child(1) { background: #ff5f57; } .code-card__bar i:nth-child(2) { background: #febc2e; } .code-card__bar i:nth-child(3) { background: #28c840; }
.code-card__bar span { margin-left: auto; font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.code-card pre { margin: 0; padding: 22px 24px; font-family: var(--font-mono); font-size: 13.5px; line-height: 1.75; color: #cfd3db; overflow: hidden; white-space: pre; }
.code-card .k { color: #ff7a85; } .code-card .f { color: #7cd4ff; } .code-card .s { color: #a8e6a1; } .code-card .c { color: #6b7280; } .code-card .v { color: #e7c98a; }
.code-card__line { position: absolute; left: 0; right: 0; height: 60px; background: linear-gradient(180deg, transparent, rgba(225,29,42,.10), transparent); animation: scan 5s linear infinite; pointer-events: none; }
@keyframes scan { 0% { top: -60px; } 100% { top: 110%; } }
.float-chip {
  position: absolute; display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 16px;
  border: 1px solid var(--border-2); background: rgba(12,13,17,.85); backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.9); font-size: 13.5px; font-weight: 600; animation: bob 6s ease-in-out infinite;
}
.float-chip .ico { width: 20px; height: 20px; color: var(--red-2); }
.float-chip b { display: block; font-family: var(--font-display); font-size: 17px; line-height: 1; }
.float-chip small { display: block; color: var(--muted); font-weight: 400; font-size: 12px; margin-top: 3px; }
.float-chip--1 { top: -26px; right: -18px; animation-delay: -1s; }
.float-chip--2 { bottom: 36px; left: -34px; animation-delay: -3s; }
.float-chip--3 { top: 45%; right: -40px; animation-delay: -5s; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.hero__scroll { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 2; display: none; flex-direction: column; align-items: center; gap: 8px; color: var(--muted); font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; }
.hero__scroll i { width: 1px; height: 46px; background: linear-gradient(180deg, var(--red-2), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: 1.15fr .85fr; gap: 60px; }
  .hero__visual { display: block; }
  .hero__scroll { display: flex; }
  .hero { padding-top: calc(var(--nav-h) + 20px); }
}

/* Stats */
.stats { position: relative; z-index: 3; margin-top: -10px; }
.stats__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: var(--border); }
.stat { background: var(--bg-2); padding: 26px 22px; position: relative; overflow: hidden; }
.stat::before { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 80% at 0% 0%, rgba(225,29,42,.12), transparent 70%); opacity: 0; transition: opacity .4s; }
.stat:hover::before { opacity: 1; }
.stat__num { font-family: var(--font-display); font-size: clamp(34px, 5vw, 52px); font-weight: 800; line-height: 1; background: var(--silver); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__num sup { font-size: .5em; color: var(--red-2); -webkit-text-fill-color: var(--red-2); vertical-align: top; margin-left: 2px; }
.stat__label { margin-top: 8px; color: var(--muted); font-size: 14px; font-weight: 500; }
@media (min-width: 768px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } .stat { padding: 32px 28px; } }

/* ---------- Marquee (çözüm ortakları) ---------- */
.marquee-section { padding: 56px 0 0; }
.marquee-label { text-align: center; font-family: var(--font-mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 26px; }
.marquee { position: relative; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; gap: 14px; width: max-content; animation: marquee 48s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: flex; align-items: center; justify-content: center; height: 78px; padding: 0 30px; min-width: 190px;
  border-radius: 16px; border: 1px solid var(--border); background: var(--surface); transition: border-color .3s, background .3s;
}
.marquee__item img { height: 34px; width: auto; max-width: 140px; object-fit: contain; filter: grayscale(1) brightness(1.7) contrast(.9); opacity: .55; transition: filter .3s, opacity .3s; }
.marquee__item:hover { border-color: var(--border-2); background: var(--surface-2); }
.marquee__item:hover img { filter: none; opacity: 1; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Hizmetler (Bento) ---------- */
.bento { display: grid; gap: 16px; grid-template-columns: 1fr; }
.card {
  position: relative; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface);
  padding: 28px; overflow: hidden; transition: transform .45s var(--ease), border-color .35s, box-shadow .45s var(--ease);
  --mx: 50%; --my: 50%;
}
.card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .4s;
  background: radial-gradient(420px circle at var(--mx) var(--my), rgba(225,29,42,.14), transparent 45%);
}
.card::after {
  content: ''; position: absolute; inset: -1px; border-radius: inherit; pointer-events: none; opacity: 0; transition: opacity .4s;
  background: radial-gradient(300px circle at var(--mx) var(--my), rgba(255,255,255,.28), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; padding: 1px;
}
.card:hover { transform: translateY(-4px); border-color: var(--border-2); box-shadow: 0 30px 60px -30px rgba(0,0,0,.8); }
.card:hover::before, .card:hover::after { opacity: 1; }
.card__icon {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(225,29,42,.22), rgba(225,29,42,.06)); border: 1px solid rgba(225,29,42,.3); color: var(--red-2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}
.card__icon .ico { width: 26px; height: 26px; }
.card__title { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: #fff; }
.card__text { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.card__more { display: inline-flex; align-items: center; gap: 8px; color: var(--red-2); font-weight: 600; font-size: 14px; margin-top: auto; transition: gap .3s; }
.card:hover .card__more { gap: 14px; }
.card--feature { background: linear-gradient(160deg, rgba(225,29,42,.16), rgba(225,29,42,.03) 60%, transparent); border-color: rgba(225,29,42,.28); display: flex; flex-direction: column; }
.card--feature .card__icon { background: linear-gradient(135deg, var(--red-2), var(--red-dark)); color: #fff; border-color: transparent; box-shadow: 0 10px 30px -10px var(--red-glow); }
.card--feature .card__title { font-size: 24px; }
.card--feature .card__text { font-size: 15.5px; color: var(--text-2); }
.card__badge { position: absolute; top: 20px; right: 20px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--red-2); padding: 5px 10px; border-radius: 999px; border: 1px solid rgba(225,29,42,.4); background: rgba(225,29,42,.1); }
.card__num { position: absolute; right: 22px; bottom: 14px; font-family: var(--font-display); font-size: 64px; font-weight: 900; color: rgba(255,255,255,.04); line-height: 1; pointer-events: none; }
.card__feats { display: flex; flex-wrap: wrap; gap: 6px; margin: 4px 0 20px; }
.card__feats span { font-size: 12.5px; padding: 5px 10px; border-radius: 8px; background: rgba(255,255,255,.06); border: 1px solid var(--border); color: var(--text-2); }
.card--link { display: flex; flex-direction: column; }

@media (min-width: 640px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .bento { grid-template-columns: repeat(4, 1fr); }
  .bento .card--feature { grid-column: span 2; }
}
.services-more { text-align: center; margin-top: 40px; }

/* Hizmetler sayfası — liste grid */
.services-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Hakkımda önizleme ---------- */
.about { display: grid; gap: 40px; align-items: center; }
.about__visual { position: relative; }
.profile-card {
  position: relative; border-radius: var(--radius-lg); border: 1px solid var(--border-2); overflow: hidden;
  background: linear-gradient(160deg, #15171d, #0b0c10); padding: 34px 28px; box-shadow: 0 40px 90px -40px rgba(0,0,0,.9), inset 0 1px 0 rgba(255,255,255,.1);
}
.profile-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(70% 50% at 100% 0%, rgba(225,29,42,.28), transparent 70%); }
.profile-card__mono { position: relative; width: 96px; height: 96px; border-radius: 28px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 900; font-size: 36px; background: linear-gradient(135deg, var(--red-2), var(--red-dark)); box-shadow: 0 20px 40px -14px var(--red-glow); margin-bottom: 22px; }
.profile-card__name { position: relative; font-size: 28px; font-weight: 800; color: #fff; }
.wordmark--card { font-size: clamp(34px, 4.5vw, 44px); padding-top: .14em; margin-bottom: 14px; display: flex; flex-wrap: wrap; gap: .18em; }
.profile-card__role span { display: block; font-family: var(--font-display); font-size: 17px; font-weight: 500; color: var(--text-2); line-height: 1.4; }
.profile-card__role span b { color: #fff; font-weight: 800; }
.profile-card__meta b sup { font-size: .55em; color: var(--red-2); vertical-align: top; margin-left: 1px; }
.profile-card__role { position: relative; margin: 0 0 22px; }
.title-bars { position: relative; display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.title-bars span {
  display: inline-flex; align-items: center; gap: 10px; padding: 9px 18px; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 14px;
  background: linear-gradient(90deg, var(--red-dark), var(--red)); clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%); width: fit-content;
}
.title-bars span:nth-child(2) { margin-left: 14px; } .title-bars span:nth-child(3) { margin-left: 28px; }
.profile-card__meta { position: relative; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.profile-card__meta div { padding: 12px 14px; border-radius: 12px; background: rgba(255,255,255,.05); border: 1px solid var(--border); }
.profile-card__meta b { display: block; font-family: var(--font-display); font-size: 20px; color: #fff; line-height: 1.1; }
.profile-card__meta small { color: var(--muted); font-size: 12px; }
.about__content .section-head { margin-bottom: 22px; }
.about__lead { font-size: clamp(17px, 1.8vw, 20px); color: var(--text); font-weight: 500; margin-bottom: 18px; }
.about__text { color: var(--muted); }
.about__text p { margin-bottom: 14px; }
.about__text strong { color: var(--text-2); }
.about__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.quote { position: relative; margin: 26px 0 0; padding: 22px 24px 22px 30px; border-left: 3px solid var(--red); border-radius: 0 16px 16px 0; background: var(--surface); font-style: italic; color: var(--text-2); font-size: 16px; }
.quote .ico { position: absolute; top: 14px; right: 16px; width: 26px; height: 26px; color: rgba(225,29,42,.35); }
@media (min-width: 1024px) { .about { grid-template-columns: .85fr 1.15fr; gap: 72px; } }

/* Skill chips */
.skills { display: grid; gap: 22px; }
.skill-group h4 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--red-2); font-family: var(--font-mono); font-weight: 500; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.skill-group h4::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { padding: 8px 14px; border-radius: 10px; border: 1px solid var(--border); background: var(--surface); font-size: 14px; color: var(--text-2); font-weight: 500; transition: all .3s; }
.chip:hover { border-color: var(--red); color: #fff; background: rgba(225,29,42,.1); transform: translateY(-2px); }
@media (min-width: 768px) { .skills { grid-template-columns: repeat(2, 1fr); gap: 28px 40px; } }

/* ---------- Süreç ---------- */
.process { display: grid; gap: 14px; counter-reset: step; }
.step { position: relative; padding: 28px 26px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); overflow: hidden; transition: transform .4s var(--ease), border-color .3s; }
.step:hover { transform: translateY(-4px); border-color: var(--border-2); }
.step::before { counter-increment: step; content: '0' counter(step); position: absolute; top: 16px; right: 20px; font-family: var(--font-display); font-size: 48px; font-weight: 900; color: rgba(255,255,255,.05); line-height: 1; }
.step__icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: rgba(225,29,42,.12); border: 1px solid rgba(225,29,42,.3); color: var(--red-2); margin-bottom: 18px; }
.step__icon .ico { width: 22px; height: 22px; }
.step h3 { font-size: 19px; color: #fff; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14.5px; margin: 0; }
@media (min-width: 640px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .process { grid-template-columns: repeat(4, 1fr); position: relative; }
  .process::before { content: ''; position: absolute; top: 52px; left: 8%; right: 8%; height: 1px; background: linear-gradient(90deg, transparent, rgba(225,29,42,.5), rgba(225,29,42,.5), transparent); }
}

/* ---------- Uygulamalar ---------- */
.apps { display: grid; gap: 18px; }
.app-card {
  --c: var(--red); position: relative; border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden;
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.015)); padding: 28px; display: flex; flex-direction: column;
  transition: transform .45s var(--ease), border-color .35s, box-shadow .45s;
}
.app-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(70% 55% at 100% 0%, color-mix(in srgb, var(--c) 28%, transparent), transparent 70%); opacity: .8; transition: opacity .4s; }
.app-card:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--c) 60%, transparent); box-shadow: 0 40px 70px -40px color-mix(in srgb, var(--c) 60%, transparent); }
.app-card:hover::before { opacity: 1; }
.app-card__head { position: relative; display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.app-card__icon { width: 74px; height: 74px; border-radius: 20px; overflow: hidden; flex: none; box-shadow: 0 16px 34px -12px rgba(0,0,0,.8), 0 0 0 1px rgba(255,255,255,.1); }
.app-card__icon img { width: 100%; height: 100%; object-fit: cover; }
.app-card__head h3 { font-size: 21px; color: #fff; }
.app-card__head small { display: block; color: var(--muted); font-family: var(--font-mono); font-size: 12px; margin-top: 4px; }
.app-card__tag { position: relative; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.app-card__desc { position: relative; color: var(--muted); font-size: 14.5px; margin-bottom: 18px; }
.app-card__feats { position: relative; display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }
.app-card__feats span { font-size: 12.5px; padding: 5px 10px; border-radius: 8px; background: rgba(255,255,255,.06); border: 1px solid var(--border); color: var(--text-2); }
.app-card__foot { position: relative; margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.play-btn { display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px 10px 12px; border-radius: 12px; background: #000; border: 1px solid rgba(255,255,255,.18); color: #fff; transition: transform .3s, border-color .3s; }
.play-btn:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.4); }
.play-btn svg { width: 26px; height: 26px; }
.play-btn small { display: block; font-size: 9.5px; letter-spacing: .06em; text-transform: uppercase; color: #bbb; line-height: 1; }
.play-btn b { display: block; font-size: 15px; font-weight: 600; line-height: 1.15; }
.app-card__cat { font-size: 12.5px; color: var(--muted); display: inline-flex; align-items: center; gap: 6px; }
.app-card__cat i { width: 8px; height: 8px; border-radius: 50%; background: var(--c); box-shadow: 0 0 12px var(--c); }
@media (min-width: 900px) { .apps { grid-template-columns: repeat(3, 1fr); } }

/* Uygulamalar sayfası — telefon mockup */
.app-hero { display: grid; gap: 30px; align-items: center; }
.phone { position: relative; width: 240px; margin: 0 auto; aspect-ratio: 9 / 19; border-radius: 36px; background: #0c0d11; border: 2px solid rgba(255,255,255,.14); box-shadow: 0 50px 100px -40px rgba(0,0,0,.9), inset 0 0 0 6px #000; overflow: hidden; }
.phone::before { content: ''; position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 80px; height: 22px; border-radius: 999px; background: #000; z-index: 3; }
.phone__screen { position: absolute; inset: 6px; border-radius: 30px; overflow: hidden; display: grid; place-items: center; background: radial-gradient(80% 60% at 50% 0%, color-mix(in srgb, var(--c) 45%, #0c0d11), #0c0d11 70%); }
.phone__screen img { width: 40%; border-radius: 22%; box-shadow: 0 20px 40px -10px rgba(0,0,0,.8); }
.phone__screen b { position: absolute; bottom: 20%; font-family: var(--font-display); font-size: 15px; color: #fff; }
@media (min-width: 900px) { .app-hero { grid-template-columns: 300px 1fr; gap: 60px; } }

/* ---------- Neden ben ---------- */
.why { display: grid; gap: 14px; }
.why__item { display: flex; gap: 18px; padding: 24px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); transition: transform .4s var(--ease), border-color .3s, background .3s; }
.why__item:hover { transform: translateY(-4px); border-color: var(--border-2); background: var(--surface-2); }
.why__icon { flex: none; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: linear-gradient(135deg, var(--red-2), var(--red-dark)); color: #fff; box-shadow: 0 10px 24px -10px var(--red-glow); }
.why__icon .ico { width: 21px; height: 21px; }
.why__item h3 { font-size: 17px; color: #fff; margin-bottom: 6px; }
.why__item p { color: var(--muted); font-size: 14.5px; margin: 0; }
@media (min-width: 640px) { .why { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Referanslar ---------- */
.filters { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 34px; }
.filter { padding: 9px 16px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface); color: var(--text-2); font-size: 14px; font-weight: 500; transition: all .3s; }
.filter:hover { border-color: var(--border-2); color: #fff; }
.filter.is-active { background: var(--red); border-color: var(--red); color: #fff; box-shadow: 0 8px 22px -8px var(--red-glow); }
.filter b { font-weight: 500; opacity: .6; margin-left: 4px; font-family: var(--font-mono); font-size: 12px; }
.refs { display: grid; gap: 10px; grid-template-columns: repeat(2, 1fr); }
.ref {
  position: relative; display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-radius: 14px;
  border: 1px solid var(--border); background: var(--surface); transition: transform .35s var(--ease), border-color .3s, background .3s, opacity .3s;
  overflow: hidden;
}
.ref::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--red); transform: scaleY(0); transition: transform .3s var(--ease); transform-origin: bottom; }
.ref:hover { transform: translateY(-3px); border-color: var(--border-2); background: var(--surface-2); }
.ref:hover::before { transform: scaleY(1); }
.ref__mono { flex: none; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 14px; color: #fff; background: linear-gradient(135deg, #2a2d36, #15171d); border: 1px solid var(--border-2); }
.ref:nth-child(5n+1) .ref__mono { background: linear-gradient(135deg, var(--red), var(--red-dark)); border-color: transparent; }
.ref__name { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.25; }
.ref__cat { display: block; font-size: 11.5px; color: var(--muted); margin-top: 3px; }
.ref.is-hidden { display: none; }
@media (min-width: 640px) { .refs { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .refs { grid-template-columns: repeat(4, 1fr); gap: 12px; } }
@media (min-width: 1200px) { .refs { grid-template-columns: repeat(5, 1fr); } }
.refs-more { text-align: center; margin-top: 36px; }
.refs-empty { text-align: center; color: var(--muted); padding: 40px 0; display: none; }

/* Referans marquee (anasayfa) */
.ref-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); margin-top: 8px; }
.ref-marquee__track { display: flex; gap: 10px; width: max-content; animation: marquee 90s linear infinite; padding: 6px 0; }
.ref-marquee--rev .ref-marquee__track { animation-direction: reverse; animation-duration: 105s; }
.ref-marquee:hover .ref-marquee__track { animation-play-state: paused; }
.ref-pill { display: inline-flex; align-items: center; gap: 10px; padding: 11px 20px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface); font-size: 14px; font-weight: 600; color: var(--text-2); white-space: nowrap; }
.ref-pill i { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; font-style: normal; font-family: var(--font-display); font-size: 11px; font-weight: 800; background: linear-gradient(135deg, #2a2d36, #15171d); border: 1px solid var(--border-2); color: #fff; }
.ref-pill:nth-child(4n+1) i { background: linear-gradient(135deg, var(--red), var(--red-dark)); border-color: transparent; }

/* ---------- CTA ---------- */
.cta { padding: 0 0 clamp(72px, 10vw, 120px); }
.cta__box { position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: clamp(44px, 7vw, 84px) clamp(24px, 5vw, 72px); background: linear-gradient(135deg, #b8121d 0%, var(--red) 40%, #7d0b13 100%); box-shadow: 0 50px 100px -50px var(--red-glow); }
.cta__glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; right: -200px; top: -300px; background: radial-gradient(circle, rgba(255,255,255,.28), transparent 60%); pointer-events: none; }
.cta__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 48px 48px; mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000, transparent); -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000, transparent); pointer-events: none; }
.cta__content { position: relative; max-width: 720px; }
.cta__title { font-size: clamp(30px, 5vw, 54px); font-weight: 800; color: #fff; margin: 18px 0 14px; letter-spacing: -0.025em; }
.cta__text { color: rgba(255,255,255,.85); font-size: clamp(15px, 1.7vw, 18px); max-width: 600px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); background: var(--bg-2); padding: 64px 0 28px; position: relative; }
.footer__top { display: grid; gap: 36px; margin-bottom: 44px; }
.footer__brand img { width: 240px; height: auto; margin-bottom: 18px; }
.footer__brand p { color: var(--muted); font-size: 14.5px; max-width: 360px; }
.footer__col h4 { font-size: 15px; color: #fff; margin-bottom: 16px; }
.footer__col li { margin-bottom: 9px; }
.footer__col a, .footer__col span { color: var(--muted); font-size: 14.5px; transition: color .3s; display: inline-flex; align-items: center; gap: 9px; }
.footer__col a:hover { color: #fff; }
.footer__contact .ico { width: 16px; height: 16px; color: var(--red-2); }
.footer__bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; flex-direction: column; gap: 8px; color: var(--muted); font-size: 13.5px; }
.footer__bottom p { margin: 0; }
.footer__bottom strong { color: var(--text-2); }
.footer__made { display: inline-flex; align-items: center; gap: 8px; }
.footer__made .ico { color: var(--red-2); }
.footer__made a { color: var(--text-2); }
@media (min-width: 768px) { .footer__top { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; } .footer__bottom { flex-direction: row; justify-content: space-between; } }

/* Yüzen butonlar */
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 14px 34px -10px rgba(37,211,102,.7); transition: transform .3s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float .ico { width: 30px; height: 30px; }
.wa-float__pulse { position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366; animation: pulse 2s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.7); opacity: 0; } }
.to-top { position: fixed; right: 22px; bottom: 90px; z-index: 90; width: 46px; height: 46px; border-radius: 14px; border: 1px solid var(--border-2); background: rgba(12,13,17,.8); backdrop-filter: blur(10px); color: #fff; display: grid; place-items: center; opacity: 0; transform: translateY(10px); pointer-events: none; transition: all .3s; }
.to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--red); border-color: var(--red); }

/* ---------- Sayfa başlığı (iç sayfalar) ---------- */
.page-hero { position: relative; padding: calc(var(--nav-h) + clamp(48px, 8vw, 90px)) 0 clamp(40px, 6vw, 70px); overflow: hidden; }
.page-hero .orb--red { top: -260px; right: -160px; opacity: .4; }
.page-hero .hero__grid { opacity: .7; }
.page-hero__inner { position: relative; z-index: 2; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12.5px; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb i { color: var(--red-2); font-style: normal; }
.page-title { font-size: clamp(38px, 7vw, 74px); font-weight: 900; letter-spacing: -0.03em; background: var(--silver); -webkit-background-clip: text; background-clip: text; color: transparent; }
.page-lead { color: var(--muted); font-size: clamp(16px, 1.8vw, 19px); max-width: 700px; margin-top: 16px; }

/* ---------- Hizmet detay ---------- */
.service-layout { display: grid; gap: 40px; }
.prose { color: var(--text-2); font-size: clamp(16px, 1.6vw, 17.5px); line-height: 1.8; }
.prose p { margin-bottom: 1.2em; }
.prose strong { color: #fff; font-weight: 600; }
.prose h2, .prose h3 { color: #fff; margin: 1.6em 0 .6em; font-size: clamp(22px, 2.6vw, 28px); }
.feature-list { display: grid; gap: 10px; grid-template-columns: 1fr; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--border); background: var(--surface); font-size: 14.5px; color: var(--text-2); }
.feature-list .ico { flex: none; width: 20px; height: 20px; color: var(--red-2); margin-top: 1px; }
@media (min-width: 640px) { .feature-list { grid-template-columns: repeat(2, 1fr); } }
.side-card { border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); padding: 26px; }
.side-card h3 { font-size: 17px; color: #fff; margin-bottom: 14px; }
.side-card + .side-card { margin-top: 16px; }
.side-card .btn { width: 100%; }
.side-card .btn + .btn { margin-top: 10px; }
.side-list li { border-bottom: 1px solid var(--border); }
.side-list li:last-child { border-bottom: 0; }
.side-list a { display: flex; align-items: center; gap: 12px; padding: 11px 0; color: var(--text-2); font-size: 14.5px; transition: color .3s, padding-left .3s; }
.side-list a:hover, .side-list a.is-current { color: #fff; padding-left: 6px; }
.side-list a.is-current { color: var(--red-2); }
.side-list .ico { width: 18px; height: 18px; color: var(--red-2); }
.demo-box { padding: 16px; border-radius: 12px; background: rgba(0,0,0,.35); border: 1px dashed var(--border-2); font-family: var(--font-mono); font-size: 13px; color: var(--text-2); }
.demo-box b { color: #fff; }
.service-hero-icon { width: 76px; height: 76px; border-radius: 22px; display: grid; place-items: center; background: linear-gradient(135deg, var(--red-2), var(--red-dark)); color: #fff; box-shadow: 0 20px 40px -14px var(--red-glow); margin-bottom: 22px; }
.service-hero-icon .ico { width: 36px; height: 36px; }
@media (min-width: 1024px) { .service-layout { grid-template-columns: 1fr 340px; gap: 64px; align-items: start; } .service-side { position: sticky; top: calc(var(--nav-h) + 20px); } }

/* ---------- Timeline (Hakkımda / CV) ---------- */
.timeline { position: relative; padding-left: 28px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(180deg, var(--red), rgba(225,29,42,.08)); border-radius: 2px; }
.tl-item { position: relative; padding: 0 0 34px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ''; position: absolute; left: -25px; top: 8px; width: 12px; height: 12px; border-radius: 50%; background: var(--bg); border: 3px solid var(--red); box-shadow: 0 0 0 5px rgba(225,29,42,.15); }
.tl-item__period { font-family: var(--font-mono); font-size: 12.5px; color: var(--red-2); letter-spacing: .06em; margin-bottom: 8px; }
.tl-item h3 { font-size: 20px; color: #fff; margin-bottom: 4px; }
.tl-item__company { color: var(--text-2); font-weight: 500; font-size: 15px; margin-bottom: 12px; }
.tl-item ul { display: grid; gap: 6px; }
.tl-item li { position: relative; padding-left: 18px; color: var(--muted); font-size: 14.5px; }
.tl-item li::before { content: ''; position: absolute; left: 0; top: 10px; width: 8px; height: 2px; background: var(--red-2); }
.tl-item p { color: var(--muted); font-size: 14.5px; margin: 0; }
.two-col { display: grid; gap: 40px; }
@media (min-width: 1024px) { .two-col { grid-template-columns: 1.2fr .8fr; gap: 72px; } }

.mini-list { display: grid; gap: 10px; }
.mini-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px; border-radius: 14px; border: 1px solid var(--border); background: var(--surface); transition: border-color .3s, transform .3s; }
.mini-item:hover { border-color: var(--border-2); transform: translateX(4px); }
.mini-item__year { flex: none; font-family: var(--font-mono); font-size: 12px; color: var(--red-2); padding: 6px 9px; border-radius: 8px; background: rgba(225,29,42,.1); border: 1px solid rgba(225,29,42,.3); }
.mini-item b { display: block; color: #fff; font-size: 14.5px; font-weight: 600; }
.mini-item small { color: var(--muted); font-size: 13px; }

/* ---------- İletişim ---------- */
.contact { display: grid; gap: 40px; }
.contact-info { display: grid; gap: 12px; }
.info-card { display: flex; gap: 16px; align-items: center; padding: 20px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); transition: transform .35s var(--ease), border-color .3s; }
.info-card:hover { transform: translateY(-3px); border-color: var(--border-2); }
.info-card__icon { flex: none; width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(225,29,42,.25), rgba(225,29,42,.06)); border: 1px solid rgba(225,29,42,.3); color: var(--red-2); }
.info-card__icon .ico { width: 22px; height: 22px; }
.info-card small { display: block; color: var(--muted); font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; font-family: var(--font-mono); }
.info-card b { display: block; color: #fff; font-size: 16px; font-weight: 600; margin-top: 2px; word-break: break-word; }
.form-card { border-radius: var(--radius-lg); border: 1px solid var(--border-2); background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); padding: clamp(24px, 4vw, 40px); position: relative; overflow: hidden; }
.form-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 40% at 100% 0%, rgba(225,29,42,.15), transparent 70%); pointer-events: none; }
.form-card h3 { position: relative; font-size: 24px; color: #fff; margin-bottom: 6px; }
.form-card > p { position: relative; color: var(--muted); font-size: 14.5px; margin-bottom: 24px; }
.form { position: relative; display: grid; gap: 14px; }
.form__row { display: grid; gap: 14px; }
@media (min-width: 640px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field { position: relative; }
.field label { display: block; font-size: 13px; font-weight: 500; color: var(--text-2); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--border-2); background: rgba(0,0,0,.35); color: #fff;
  font: inherit; font-size: 15px; transition: border-color .3s, box-shadow .3s; -webkit-appearance: none; appearance: none;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='m4 6 4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field select option { background: #15171d; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 0; border-color: var(--red); box-shadow: 0 0 0 4px rgba(225,29,42,.15); }
.field input::placeholder, .field textarea::placeholder { color: #666b76; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form__msg { display: none; padding: 14px 16px; border-radius: 12px; font-size: 14.5px; }
.form__msg.ok { display: block; background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.4); color: #86efac; }
.form__msg.err { display: block; background: rgba(225,29,42,.12); border: 1px solid rgba(225,29,42,.4); color: #fca5a5; }
.btn.is-loading { pointer-events: none; opacity: .7; }
@media (min-width: 1024px) { .contact { grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; } }

/* ---------- CV sayfası ---------- */
.cv-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.cv-grid { display: grid; gap: 40px; }
@media (min-width: 1024px) { .cv-grid { grid-template-columns: 1fr 340px; gap: 64px; } }
.cv-side { display: grid; gap: 16px; align-content: start; }
@media (min-width: 1024px) { .cv-side { position: sticky; top: calc(var(--nav-h) + 20px); } }
.cv-section + .cv-section { margin-top: 56px; }
.cv-section__head { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.cv-section__head span { font-family: var(--font-mono); font-size: 13px; color: var(--red-2); }
.cv-section__head h2 { font-size: clamp(22px, 3vw, 30px); color: #fff; }
.cv-section__head::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ---------- 404 ---------- */
.notfound { min-height: 80svh; display: grid; place-items: center; text-align: center; padding: calc(var(--nav-h) + 40px) 0 60px; }
.notfound h1 { font-size: clamp(90px, 20vw, 200px); font-weight: 900; line-height: 1; background: var(--silver); -webkit-background-clip: text; background-clip: text; color: transparent; }
.notfound p { color: var(--muted); font-size: 18px; margin: 10px 0 28px; }

/* ---------- Reveal animasyonları ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .8s var(--ease); }
.reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .12s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .19s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .26s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .33s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .40s; }
.reveal-stagger.is-visible > *:nth-child(n+7) { transition-delay: .46s; }
.hero .reveal-hero > * { opacity: 0; transform: translateY(30px); animation: heroIn 1s var(--ease) forwards; }
.hero .reveal-hero > *:nth-child(1) { animation-delay: .1s; } .hero .reveal-hero > *:nth-child(2) { animation-delay: .2s; } .hero .reveal-hero > *:nth-child(3) { animation-delay: .32s; }
.hero .reveal-hero > *:nth-child(4) { animation-delay: .44s; } .hero .reveal-hero > *:nth-child(5) { animation-delay: .56s; } .hero .reveal-hero > *:nth-child(6) { animation-delay: .68s; }
.hero__visual { opacity: 0; animation: heroIn 1.2s var(--ease) .5s forwards; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

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

/* Yazdırma (CV) */
@media print {
  .nav, .mmenu, .wa-float, .to-top, .cta, .footer, .noise, .cursor-glow, .cv-actions, .orb, .hero__grid { display: none !important; }
  body { background: #fff; color: #111; }
  .page-title, .section-title, .grad-text { -webkit-text-fill-color: #111; color: #111; background: none; }
  .tl-item h3, .cv-section__head h2, .mini-item b, .side-card h3 { color: #111; }
  .page-hero { padding-top: 20px; }
}
/* ==========================================================================
   DEMO SAYFALARI & EK BİLEŞENLER
   ========================================================================== */
.demo-grid { display: grid; gap: 18px; }
.demo-card { position: relative; display: flex; flex-direction: column; border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--surface); overflow: hidden; transition: transform .45s var(--ease), border-color .35s, box-shadow .45s; }
.demo-card:hover { transform: translateY(-6px); border-color: rgba(225,29,42,.5); box-shadow: 0 40px 80px -40px var(--red-glow); }
.demo-card__visual { position: relative; height: 210px; display: grid; place-items: center; background: radial-gradient(80% 70% at 50% 100%, rgba(225,29,42,.22), transparent 70%), linear-gradient(180deg, #14161c, #0c0d11); border-bottom: 1px solid var(--border); overflow: hidden; }
.demo-card__visual::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 24px 24px; }
.demo-card__body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.demo-card__body .card__more { margin-top: auto; }
.demo-card:hover .card__more { gap: 14px; }
.demo-card__num { position: absolute; top: 16px; right: 20px; font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,.5); padding: 5px 10px; border-radius: 999px; border: 1px solid var(--border-2); background: rgba(0,0,0,.4); }
@media (min-width: 900px) { .demo-grid { grid-template-columns: repeat(3, 1fr); } }

/* mini mockup'lar (demo merkez) */
.mock-tables { position: relative; display: grid; grid-template-columns: repeat(3, 56px); gap: 8px; transform: perspective(600px) rotateX(18deg); }
.mock-tables span { height: 44px; border-radius: 10px; display: grid; place-items: center; font-family: var(--font-mono); font-size: 12px; font-weight: 600; background: rgba(255,255,255,.08); border: 1px solid var(--border-2); color: var(--text-2); }
.mock-tables span.busy { background: rgba(225,29,42,.35); border-color: rgba(225,29,42,.7); color: #fff; }
.mock-tables span.paid { background: rgba(34,197,94,.25); border-color: rgba(34,197,94,.6); color: #fff; }
.mock-pos { position: relative; width: 84%; border-radius: 12px; background: rgba(0,0,0,.5); border: 1px solid var(--border-2); overflow: hidden; font-size: 12px; }
.mock-pos__row { display: grid; grid-template-columns: 1fr 1fr auto; gap: 10px; padding: 9px 12px; border-bottom: 1px solid var(--border); }
.mock-pos__row b { font-family: var(--font-mono); font-weight: 400; color: var(--muted); font-size: 11px; }
.mock-pos__row span { color: var(--text-2); }
.mock-pos__row em, .mock-pos__total em { font-style: normal; font-family: var(--font-mono); color: #fff; }
.mock-pos__total { display: flex; justify-content: space-between; padding: 10px 12px; background: rgba(225,29,42,.2); font-weight: 700; color: #fff; }
.mock-phone { position: relative; width: 120px; padding: 12px 10px; border-radius: 20px; background: #0a0b0e; border: 2px solid var(--border-2); box-shadow: 0 20px 40px -14px rgba(0,0,0,.9); display: grid; gap: 7px; transform: rotate(-6deg) translateY(10px); }
.mock-phone__bar { height: 22px; border-radius: 6px; background: linear-gradient(90deg, var(--red), var(--red-dark)); }
.mock-phone__item { display: flex; align-items: center; gap: 6px; font-size: 9px; }
.mock-phone__item i { width: 18px; height: 18px; border-radius: 5px; background: rgba(255,255,255,.15); flex: none; }
.mock-phone__item span { flex: 1; height: 6px; border-radius: 3px; background: rgba(255,255,255,.18); }
.mock-phone__item em { font-style: normal; font-family: var(--font-mono); color: #fff; font-size: 9px; }
.mock-qr { height: 36px; border-radius: 6px; background: repeating-linear-gradient(90deg, #fff 0 4px, transparent 4px 8px), repeating-linear-gradient(0deg, #fff 0 4px, transparent 4px 8px); opacity: .45; }

.demo-note { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 36px; padding: 22px 24px; border-radius: var(--radius); border: 1px solid var(--border-2); background: linear-gradient(120deg, rgba(225,29,42,.12), transparent 60%); }
.demo-note > .ico { width: 34px; height: 34px; color: var(--red-2); flex: none; }
.demo-note div { flex: 1; min-width: 240px; color: var(--muted); font-size: 15px; }
.demo-note b { color: #fff; display: block; margin-bottom: 2px; }

/* Büyük ekran mockup */
.screen { border-radius: 18px; border: 1px solid var(--border-2); background: #0c0d11; box-shadow: 0 50px 100px -50px rgba(0,0,0,.95), inset 0 1px 0 rgba(255,255,255,.08); overflow: hidden; }
.screen__bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-bottom: 1px solid var(--border); background: #111318; font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.screen__bar i { width: 10px; height: 10px; border-radius: 50%; background: #3a3d45; }
.screen__bar i:nth-child(1) { background: #ff5f57; } .screen__bar i:nth-child(2) { background: #febc2e; } .screen__bar i:nth-child(3) { background: #28c840; }
.screen__bar span { margin-left: 8px; color: var(--text-2); }
.screen__bar em { margin-left: auto; font-style: normal; display: none; }
@media (min-width: 640px) { .screen__bar em { display: block; } }
.screen__body--pos { display: grid; gap: 0; }
@media (min-width: 900px) { .screen__body--pos { grid-template-columns: minmax(0, 1fr) 340px; } }
.screen__body--pos > * { min-width: 0; }
.pos-tables, .pos-sale { min-width: 0; }
.pos-table { min-width: 0; }
.screen-caption { text-align: center; color: var(--muted); font-size: 13px; margin-top: 14px; }

.pos-tables { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 18px; }
@media (min-width: 640px) { .pos-tables { padding: 22px; } }
.pos-table { aspect-ratio: 1.3; border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; background: rgba(255,255,255,.05); border: 1px solid var(--border); transition: transform .3s; }
.pos-table:hover { transform: scale(1.04); }
.pos-table b { font-family: var(--font-display); font-size: 18px; color: var(--text-2); }
.pos-table small { font-family: var(--font-mono); font-size: 11px; color: var(--muted); }
.pos-table.busy { background: rgba(225,29,42,.22); border-color: rgba(225,29,42,.55); } .pos-table.busy b, .pos-table.busy small { color: #fff; }
.pos-table.bill { background: rgba(245,158,11,.18); border-color: rgba(245,158,11,.5); } .pos-table.bill b, .pos-table.bill small { color: #fde68a; }
.pos-ticket { border-top: 1px solid var(--border); background: #101218; padding: 18px; display: flex; flex-direction: column; }
@media (min-width: 900px) { .pos-ticket { border-top: 0; border-left: 1px solid var(--border); } }
.pos-ticket__head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.pos-ticket__head b { font-family: var(--font-display); font-size: 18px; color: #fff; }
.pos-ticket__head span { font-size: 12px; color: var(--muted); }
.pos-ticket__lines { display: grid; gap: 7px; font-size: 13.5px; color: var(--text-2); }
.pos-ticket__lines > div { display: flex; justify-content: space-between; gap: 10px; min-width: 0; }
.pos-ticket__lines > div span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pos-ticket__lines em, .pos-ticket__total em { white-space: nowrap; flex: none; }
.pos-ticket__lines em { font-style: normal; font-family: var(--font-mono); color: #fff; }
.pos-ticket__lines .note { color: var(--red-2); font-size: 12px; font-style: italic; padding-left: 12px; }
.pos-ticket__total { display: flex; justify-content: space-between; margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--border-2); font-family: var(--font-display); font-weight: 800; font-size: 20px; color: #fff; }
.pos-ticket__total em { font-style: normal; color: var(--red-2); }
.pos-ticket__btns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 16px; }
.pos-ticket__btns span { padding: 11px; border-radius: 10px; text-align: center; font-size: 13px; font-weight: 600; background: rgba(255,255,255,.07); border: 1px solid var(--border-2); color: var(--text-2); }
.pos-ticket__btns .b-red { background: linear-gradient(135deg, var(--red-2), var(--red-dark)); color: #fff; border-color: transparent; grid-column: span 2; }
.pos-sale { padding: 18px; display: flex; flex-direction: column; gap: 14px; }
.pos-search { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 10px; background: rgba(0,0,0,.4); border: 1px solid var(--border-2); color: var(--muted); font-size: 13.5px; }
.pos-search .ico { color: var(--red-2); }
.pos-search span { flex: 1; }
.pos-search em { font-style: normal; font-family: var(--font-mono); font-size: 11px; padding: 3px 7px; border-radius: 6px; border: 1px solid var(--border-2); }
.pos-lines { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.pos-lines th { text-align: left; font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); padding: 6px 8px; border-bottom: 1px solid var(--border); font-weight: 500; }
.pos-lines td { padding: 10px 8px; border-bottom: 1px solid var(--border); color: var(--text-2); vertical-align: middle; }
.pos-lines td b { display: block; color: #fff; font-weight: 600; }
.pos-lines td small { font-family: var(--font-mono); font-size: 11px; color: var(--muted); }
.pos-lines td:last-child { font-family: var(--font-mono); color: #fff; text-align: right; }
.pos-lines th:last-child { text-align: right; }
@media (max-width: 640px) { .pos-lines th:nth-child(3), .pos-lines td:nth-child(3) { display: none; } }

/* Demo giriş kutusu */
.demo-login { display: grid; gap: 22px; padding: clamp(22px, 4vw, 36px); border-radius: var(--radius-lg); border: 1px solid rgba(225,29,42,.35); background: linear-gradient(135deg, rgba(225,29,42,.16), rgba(225,29,42,.03) 60%); }
@media (min-width: 900px) { .demo-login { grid-template-columns: 1.2fr .8fr; align-items: center; } }
.demo-login__box { display: grid; gap: 10px; padding: 18px; border-radius: 16px; background: rgba(0,0,0,.45); border: 1px solid var(--border-2); }
.demo-cred { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 10px 14px; border-radius: 10px; background: rgba(255,255,255,.04); border: 1px dashed var(--border-2); }
.demo-cred small { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.demo-cred b { font-family: var(--font-mono); color: #fff; font-weight: 600; word-break: break-all; text-align: right; }

/* SSS */
.faq { display: grid; gap: 8px; }
.faq__item { border-radius: 14px; border: 1px solid var(--border); background: var(--surface); overflow: hidden; }
.faq__item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px 18px; font-weight: 600; color: #fff; font-size: 15px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .ico { color: var(--red-2); transition: transform .3s; flex: none; }
.faq__item[open] summary .ico { transform: rotate(45deg); }
.faq__item p { margin: 0; padding: 0 18px 16px; color: var(--muted); font-size: 14.5px; }

/* Demo navigasyon */
.demo-nav { display: grid; gap: 12px; }
@media (min-width: 640px) { .demo-nav { grid-template-columns: 1fr 1fr; } }
.demo-nav__item { display: flex; align-items: center; gap: 14px; padding: 18px 20px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); transition: transform .35s var(--ease), border-color .3s; }
.demo-nav__item:hover { transform: translateY(-3px); border-color: var(--red); }
.demo-nav__item > .ico:first-child { width: 26px; height: 26px; color: var(--red-2); }
.demo-nav__item span { flex: 1; }
.demo-nav__item small { display: block; font-family: var(--font-mono); font-size: 11px; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.demo-nav__item b { color: #fff; font-size: 15px; }
.demo-nav__item > .ico:last-child { color: var(--muted); }

/* QR menü örnekleri */
.qr-grid { display: grid; gap: 10px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .qr-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .qr-grid { grid-template-columns: repeat(3, 1fr); } }
.qr-card { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 14px; border: 1px solid var(--border); background: var(--surface); transition: transform .35s var(--ease), border-color .3s, background .3s; }
.qr-card:hover { transform: translateY(-3px); border-color: var(--red); background: var(--surface-2); }
.qr-card__mono { flex: none; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 14px; color: #fff; background: linear-gradient(135deg, var(--red), var(--red-dark)); }
.qr-card__body { flex: 1; min-width: 0; }
.qr-card__body b { display: block; color: #fff; font-size: 14.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.qr-card__body small { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.qr-card > .ico { color: var(--muted); transition: color .3s, transform .3s; }
.qr-card:hover > .ico { color: var(--red-2); transform: translateX(4px); }

/* Telefon içinde menü mockup */
.phone--menu { width: 260px; }
.phone__screen--menu { display: block; background: #0f1015; padding: 34px 12px 12px; overflow: hidden; }
.phone__screen--menu b { position: static; font-size: inherit; }
.qm-cover { padding: 14px; border-radius: 14px; background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; margin-bottom: 10px; }
.qm-cover b { display: block; font-family: var(--font-display); font-size: 15px; }
.qm-cover small { font-size: 10px; opacity: .85; }
.qm-cats { display: flex; gap: 6px; overflow: hidden; margin-bottom: 10px; }
.qm-cats span { flex: none; font-size: 10px; padding: 5px 9px; border-radius: 999px; border: 1px solid var(--border-2); color: var(--muted); }
.qm-cats span.on { background: #fff; color: #111; border-color: #fff; font-weight: 600; }
.qm-item { display: flex; align-items: center; gap: 9px; padding: 8px; border-radius: 10px; background: rgba(255,255,255,.05); margin-bottom: 7px; }
.qm-item i { width: 40px; height: 40px; border-radius: 9px; flex: none; }
.qm-item div { flex: 1; min-width: 0; }
.qm-item b { display: block; font-size: 11.5px; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.qm-item small { font-size: 9.5px; color: var(--muted); }
.qm-item em { font-style: normal; font-family: var(--font-mono); font-size: 11px; color: var(--red-2); font-weight: 600; }
.qm-btn { position: absolute; left: 12px; right: 12px; bottom: 12px; display: flex; align-items: center; justify-content: center; gap: 6px; padding: 10px; border-radius: 10px; background: #fff; color: #111; font-size: 12px; font-weight: 700; }
.qm-btn .ico { width: 14px; height: 14px; }

/* Mobil menü demo linki */
.mmenu__demo { color: var(--red-2) !important; }
.mmenu__demo .ico { width: 24px; height: 24px; align-self: center; }

/* Kişiye özel yazılım bandı (anasayfa) */
.custom { position: relative; border-radius: var(--radius-lg); border: 1px solid var(--border-2); overflow: hidden; background: linear-gradient(135deg, #14161c, #0b0c10); padding: clamp(28px, 5vw, 56px); display: grid; gap: 32px; align-items: center; }
.custom::before { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 80% at 100% 50%, rgba(225,29,42,.22), transparent 70%); pointer-events: none; }
.custom > * { position: relative; }
.custom__code { font-family: var(--font-mono); font-size: 13px; line-height: 1.8; color: #cfd3db; padding: 20px 22px; border-radius: 16px; background: rgba(0,0,0,.5); border: 1px solid var(--border-2); overflow: auto; white-space: pre; margin: 0; }
.custom__code .k { color: #ff7a85; } .custom__code .f { color: #7cd4ff; } .custom__code .s { color: #a8e6a1; } .custom__code .c { color: #6b7280; }
.custom__list { display: grid; gap: 10px; margin-top: 22px; }
.custom__list li { display: flex; gap: 10px; align-items: flex-start; color: var(--text-2); font-size: 15px; }
.custom__list .ico { color: var(--red-2); flex: none; margin-top: 3px; }
@media (min-width: 1024px) { .custom { grid-template-columns: 1.1fr .9fr; gap: 56px; } }

/* ---------- İletişim (formsuz) ---------- */
.contact-cards { display: grid; gap: 16px; }
@media (min-width: 900px) { .contact-cards { grid-template-columns: repeat(3, 1fr); } }
.contact-card { position: relative; display: flex; flex-direction: column; padding: 28px; border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--surface); overflow: hidden; transition: transform .45s var(--ease), border-color .35s, box-shadow .45s; }
.contact-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(70% 55% at 100% 0%, rgba(225,29,42,.16), transparent 70%); opacity: 0; transition: opacity .4s; }
.contact-card:hover { transform: translateY(-6px); border-color: var(--border-2); box-shadow: 0 40px 70px -40px rgba(0,0,0,.9); }
.contact-card:hover::before { opacity: 1; }
.contact-card > * { position: relative; }
.contact-card__icon { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(135deg, var(--red-2), var(--red-dark)); color: #fff; box-shadow: 0 14px 30px -12px var(--red-glow); margin-bottom: 20px; }
.contact-card__icon .ico { width: 26px; height: 26px; }
.contact-card small { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.contact-card b { display: block; font-family: var(--font-display); font-size: 22px; color: #fff; margin: 6px 0 10px; word-break: break-word; }
.contact-card p { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; flex: 1; }
.contact-card--wa { border-color: rgba(37,211,102,.35); background: linear-gradient(160deg, rgba(37,211,102,.12), rgba(37,211,102,.02) 60%); }
.contact-card--wa .contact-card__icon { background: #25d366; box-shadow: 0 14px 30px -12px rgba(37,211,102,.7); }
.contact-card--wa::before { background: radial-gradient(70% 55% at 100% 0%, rgba(37,211,102,.2), transparent 70%); }
.contact-card--wa .card__more { color: #5eea8f; }
.quick-grid { display: grid; gap: 10px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .quick-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .quick-grid { grid-template-columns: repeat(3, 1fr); } }
.quick-item { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 14px; border: 1px solid var(--border); background: var(--surface); color: var(--text); font-weight: 600; transition: transform .35s var(--ease), border-color .3s, background .3s; }
.quick-item:hover { transform: translateY(-3px); border-color: #25d366; background: rgba(37,211,102,.08); }
.quick-item > .ico:first-child { width: 22px; height: 22px; color: var(--red-2); }
.quick-item span { flex: 1; }
.quick-item > .ico:last-child { color: var(--muted); }
.contact-bottom { display: grid; gap: 40px; }
@media (min-width: 1024px) { .contact-bottom { grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: start; } }
.ico--play { fill: none; stroke: none; }
.social .ico--play { width: 18px; height: 18px; }
/* Hizmet panelleri (demo sayfaları) */
.side-panels { display: grid; gap: 16px; }
@media (min-width: 900px) { .side-panels { grid-template-columns: 1fr 1.4fr; align-items: start; } }
.side-panels .side-card + .side-card { margin-top: 0; }
.side-panels .side-list { columns: 1; }
@media (min-width: 640px) { .side-panels .side-list { columns: 2; column-gap: 28px; } .side-panels .side-list li { break-inside: avoid; } }

/* Mobil taşma düzeltmeleri */
.wordmark--card { white-space: normal; }
.about > *, .two-col > *, .contact-bottom > *, .service-layout > *, .cv-grid > * { min-width: 0; }
.qr-grid { grid-template-columns: minmax(0, 1fr); }
@media (min-width: 560px) { .qr-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 900px) { .qr-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.qr-card { min-width: 0; }
.refs, .why, .bento, .services-grid, .apps, .demo-grid, .process, .contact-cards, .quick-grid, .feature-list, .skills, .stats__grid { grid-auto-columns: minmax(0, 1fr); }
.refs > *, .why > *, .bento > *, .services-grid > *, .apps > *, .demo-grid > *, .process > *, .contact-cards > *, .quick-grid > *, .feature-list > *, .skills > * { min-width: 0; }

/* CV referans istatistikleri */
.cv-refstats { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 10px; margin-bottom: 18px; color: var(--muted); font-size: 14px; }
.cv-refstats span { padding: 7px 12px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface); white-space: nowrap; }
.cv-refstats b { color: #fff; font-family: var(--font-display); font-size: 15px; }
.cv-refstats b::after { content: ''; }
.cv-refstats .link-arrow { margin-left: 4px; }

/* Profil kartı: dekoratif katman tıklamayı engellemesin */
.profile-card::before { pointer-events: none; }
.profile-card .social { position: relative; z-index: 1; }

/* Kaydır göstergesi yalnızca yüksek ekranlarda */
@media (max-height: 940px) { .hero__scroll { display: none !important; } }
@media (min-width: 1024px) { .hero { padding-bottom: 96px; } }
