/* ==========================================================================
   Dijinika — site.css  (tek stil dosyası)
   Izgara: 8px taban. Kapsayıcı: 1200px + yan boşluk. Tüm bölümler .wrap kullanır.
   ========================================================================== */

:root {
  --bg: #06080f;
  --bg-2: #090c16;
  --card: #0c101b;
  --card-2: #0f1424;
  --line: rgba(255, 255, 255, .08);
  --line-2: rgba(255, 255, 255, .14);
  --line-3: rgba(255, 255, 255, .24);
  --text: #eef1f7;
  --text-2: #c9cfdc;
  --muted: #9aa3b7;
  --faint: #667089;
  --accent: #5b8cff;
  --accent-hi: #9dbaff;
  --accent-2: #46e1ff;
  --ok: #3ddc97;
  --warn: #ffb547;
  --bad: #ff6b6b;
  --paper: #f2f3f6;
  --ink: #0a1020;
  --ink-muted: #545e75;
  --ink-line: rgba(10, 16, 32, .1);
  --grad: linear-gradient(95deg, #a9c2ff 0%, #5b8cff 48%, #46e1ff 100%);
  --grad-ink: linear-gradient(95deg, #2f5bff 0%, #0d9bd4 100%);

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --wrap: 1200px;
  --gut: clamp(20px, 4vw, 40px);
  --sec: clamp(72px, 8.5vw, 124px);
  --nav: 80px;

  --f: 'Geist', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --fm: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --fs: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --sec-bg: var(--bg);
}

/* ── Temel ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav) + 24px); }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font: 400 17px/1.6 var(--f); letter-spacing: -.005em;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg, canvas { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p, figure, dl, dd { margin: 0; }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: rgba(91, 140, 255, .35); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

.ic { width: 1em; height: 1em; flex: none; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.wrap { width: 100%; max-width: calc(var(--wrap) + var(--gut) * 2); margin-inline: auto; padding-inline: var(--gut); }
.sr { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: fixed; top: 12px; left: 12px; z-index: 100; padding: 10px 16px; border-radius: 999px; background: #fff; color: var(--ink); font-weight: 500; transform: translateY(-200%); transition: transform .2s; }
.skip:focus { transform: none; }
.mono { font-family: var(--fm); font-size: 12px; line-height: 1.4; letter-spacing: .02em; color: var(--muted); }
.muted { color: var(--faint); }

/* ── Tipografi ─────────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 24px;
  font: 400 12px/1 var(--fm); letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); flex: none; }
.h1 { font-size: clamp(44px, 6.4vw, 88px); line-height: 1; letter-spacing: -.04em; font-weight: 600; }
.h2 { font-size: clamp(36px, 4.6vw, 64px); line-height: 1.02; letter-spacing: -.035em; font-weight: 600; }
.h3 { font-size: clamp(24px, 2.4vw, 32px); line-height: 1.15; letter-spacing: -.025em; font-weight: 600; }
.h4 { font-size: 18px; line-height: 1.3; letter-spacing: -.01em; font-weight: 600; }
.lead { margin-top: 24px; max-width: 56ch; font-size: clamp(17px, 1.3vw, 19px); line-height: 1.6; color: var(--muted); }
.serif {
  font-family: var(--fs); font-style: italic; font-weight: 400; font-size: 1.1em; line-height: .9; letter-spacing: -.01em;
  padding-right: .06em; margin-right: -.02em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ulink { color: var(--text); text-decoration: underline; text-decoration-color: var(--line-3); text-underline-offset: 4px; transition: text-decoration-color .2s; }
.ulink:hover { text-decoration-color: var(--accent); }

/* ── Butonlar ──────────────────────────────────────────────────────────── */
.btn {
  --h: 48px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: var(--h); padding: 0 22px; border-radius: 999px; border: 1px solid transparent;
  font: 500 15px/1 var(--f); letter-spacing: -.005em; white-space: nowrap; cursor: pointer;
  transition: background-color .25s, border-color .25s, color .25s, box-shadow .35s var(--ease), transform .35s var(--ease);
}
.btn .ic { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.btn:hover .ic { transform: translateX(3px); }
.btn:active { transform: scale(.98); }
.btn--sm { --h: 40px; padding: 0 16px; font-size: 14px; }
.btn--sm .ic { width: 16px; height: 16px; }
.btn--lg { --h: 56px; padding: 0 28px; font-size: 16px; }
.btn--light { background: #fff; color: #070a12; }
.btn--light:hover { box-shadow: 0 10px 40px -8px rgba(91, 140, 255, .55); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: #7099ff; box-shadow: 0 10px 40px -8px rgba(91, 140, 255, .7); }
.btn--ghost { background: rgba(255, 255, 255, .02); border-color: var(--line-2); color: var(--text); }
.btn--ghost:hover { background: rgba(255, 255, 255, .06); border-color: var(--line-3); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { box-shadow: 0 10px 40px -10px rgba(10, 16, 32, .5); }
.btn[disabled] { opacity: .6; pointer-events: none; }

/* ── Üst menü ──────────────────────────────────────────────────────────── */
.nav { position: fixed; inset: 0 0 auto; z-index: 50; height: var(--nav); border-bottom: 1px solid transparent; transition: background-color .3s, border-color .3s; }
.nav.is-scrolled, .menu-open .nav { background: rgba(6, 8, 15, .78); -webkit-backdrop-filter: saturate(1.4) blur(16px); backdrop-filter: saturate(1.4) blur(16px); border-bottom-color: var(--line); }
.nav__in { position: relative; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__logo { display: block; }
.nav__logo img { height: 50px; width: auto; }
.nav__links { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.nav__links ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 4px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, .02); }
.nav__links a { display: block; padding: 8px 16px; border-radius: 999px; font-size: 14px; line-height: 1.4; color: var(--muted); transition: color .2s, background-color .2s; }
.nav__links a:hover { color: var(--text); }
.nav__links a[aria-current] { color: var(--text); background: rgba(255, 255, 255, .08); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__burger { display: none; position: relative; width: 40px; height: 40px; padding: 0; border-radius: 50%; border: 1px solid var(--line-2); background: rgba(255, 255, 255, .02); cursor: pointer; }
.nav__burger span { position: absolute; left: 12px; right: 12px; height: 1.5px; border-radius: 2px; background: var(--text); transition: transform .35s var(--ease); }
.nav__burger span:first-child { top: 15px; }
.nav__burger span:last-child { top: 23px; }
.menu-open .nav__burger span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-open .nav__burger span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mmenu { position: fixed; inset: 0; z-index: 40; display: flex; flex-direction: column; justify-content: space-between; padding: calc(var(--nav) + 32px) var(--gut) 32px; background: var(--bg); opacity: 0; transition: opacity .3s; }
.mmenu[hidden] { display: none; }
.mmenu.is-open { opacity: 1; }
.mmenu ul { list-style: none; margin: 0; padding: 0; }
.mmenu li { border-bottom: 1px solid var(--line); }
.mmenu li a { display: flex; align-items: baseline; gap: 16px; padding: 18px 0; font-size: clamp(30px, 8vw, 44px); font-weight: 600; letter-spacing: -.035em; line-height: 1.1; }
.mmenu li .mono { color: var(--faint); }
.mmenu__foot { display: grid; gap: 16px; }
.mmenu__foot .btn { width: 100%; }
.mmenu__mail { text-align: center; color: var(--muted); font-size: 15px; }
.menu-open { overflow: hidden; }

/* ── Bölümler ──────────────────────────────────────────────────────────── */
.sec { position: relative; padding-block: var(--sec); background: var(--sec-bg); }
.sec--tight { padding-block: clamp(48px, 6vw, 80px); }
.sec--flush { padding-top: 0; }
.sec--alt { --sec-bg: var(--bg-2); border-block: 1px solid var(--line); }
.sec--paper { --sec-bg: var(--paper); color: var(--ink); }
.sec--paper .eyebrow, .sec--paper .lead { color: var(--ink-muted); }
.sec--paper .eyebrow::before { background: #2f5bff; box-shadow: none; }
.sec--paper .serif { background-image: var(--grad-ink); }
.sec--paper ::selection { background: rgba(47, 91, 255, .2); color: var(--ink); }

.shead { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 24px 64px; align-items: end; margin-bottom: clamp(40px, 5vw, 72px); }
.shead .lead { margin: 0; max-width: 46ch; padding-bottom: 6px; }
.shead--solo { grid-template-columns: minmax(0, 1fr); }
.sec__more { display: flex; justify-content: center; margin-top: 48px; }

.card { position: relative; padding: clamp(24px, 3vw, 40px); border-radius: var(--r-lg); background: var(--card); border: 1px solid var(--line); }
.tile { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: rgba(91, 140, 255, .1); border: 1px solid rgba(91, 140, 255, .24); color: var(--accent-hi); }
.tile .ic { width: 22px; height: 22px; }
.tile--lg { width: 56px; height: 56px; border-radius: 16px; }
.tile--lg .ic { width: 26px; height: 26px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0; padding: 0; }
.tags li { padding: 5px 10px; border-radius: 999px; border: 1px solid var(--line-2); font-size: 12px; line-height: 1.3; color: var(--muted); }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; list-style: none; margin: 0; padding: 0; }
.checks li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; line-height: 1.5; color: var(--muted); }
.checks .ic { width: 18px; height: 18px; margin-top: 2px; color: var(--ok); }
.checks--lg { grid-template-columns: 1fr; gap: 16px; }
.checks--lg li { font-size: 17px; line-height: 1.6; color: var(--text-2); }
.checks--lg .ic { margin-top: 4px; }
.tlink { display: inline-flex; align-items: center; gap: 8px; margin-top: 32px; padding-bottom: 4px; border-bottom: 1px solid var(--line-3); font-weight: 500; color: var(--text); transition: border-color .25s; }
.tlink .ic { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.tlink:hover { border-color: var(--accent); }
.tlink:hover .ic { transform: translateX(3px); }

/* ── Hero (anasayfa) ───────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; padding: calc(var(--nav) + clamp(48px, 7vw, 96px)) 0 clamp(56px, 6vw, 80px); }
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px; background-position: center top;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 70% 30%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 60% at 70% 30%, #000 20%, transparent 75%);
  opacity: .55;
}
.hero__glow { position: absolute; width: 900px; height: 900px; right: -220px; top: -360px; background: radial-gradient(circle, rgba(91, 140, 255, .22), rgba(70, 225, 255, .06) 45%, transparent 70%); }
.hero__in { position: relative; display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(24px, 4vw, 64px); align-items: center; }
.hero__h1 { font-size: clamp(48px, 5.9vw, 86px); line-height: 1; letter-spacing: -.045em; font-weight: 600; }
.hero__line > span { white-space: nowrap; }
.hero__kicker { display: flex; width: max-content; max-width: 100%; margin-bottom: 32px; line-height: 1.4; }
.hero__line { display: block; overflow: hidden; padding: 0 .08em .08em 0; margin-bottom: -.08em; }
.hero__line > span { display: inline-block; }
.js .hero__line > span { transform: translateY(110%); animation: rise 1.1s var(--ease) .1s forwards; }
.js .hero__line + .hero__line > span { animation-delay: .22s; }
.hero__lead { max-width: 50ch; margin-top: 32px; }
.hero__form { max-width: 560px; margin-top: 40px; }
.hero__alt { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px 16px; margin-top: 16px; padding: 0 8px 0 23px; }
.hero__alt a { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: var(--text); }
.hero__alt a .ic { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.hero__alt a:hover .ic { transform: translateX(3px); }
.js .hero__lead, .js .hero__form { opacity: 0; animation: fade 1s var(--ease) .45s forwards; }
.js .hero__form { animation-delay: .6s; }

.hero__art { position: relative; width: 100%; max-width: 520px; aspect-ratio: 1; justify-self: end; }
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.fchip {
  position: absolute; display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px;
  border-radius: 12px; border: 1px solid var(--line-2); background: rgba(12, 16, 27, .72);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); box-shadow: 0 16px 40px -12px rgba(0, 0, 0, .6);
  font-size: 13px; line-height: 1; color: var(--muted); white-space: nowrap;
}
.fchip b { color: var(--text); font-weight: 600; }
.js .fchip { opacity: 0; animation: fade .8s var(--ease) forwards, float 7s ease-in-out infinite; }
.fchip--1 { top: 10%; left: -2%; }
.fchip--2 { top: 46%; right: 0; }
.fchip--3 { bottom: 10%; left: 8%; }
.js .fchip--1 { animation-delay: 1.6s, 1.6s; }
.js .fchip--2 { animation-delay: 1.9s, -2.3s; }
.js .fchip--3 { animation-delay: 2.2s, -4.6s; }
.led { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 10px var(--ok); }

.hero__stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: clamp(56px, 7vw, 96px); border-top: 1px solid var(--line); }
.hero__stats > div { display: flex; flex-direction: column-reverse; justify-content: flex-end; gap: 8px; padding: 28px 24px 0; border-left: 1px solid var(--line); }
.hero__stats > div:first-child { padding-left: 0; border-left: 0; }
.hero__stats dd { font-size: clamp(32px, 3.4vw, 48px); line-height: 1; font-weight: 600; letter-spacing: -.04em; }
.hero__stats dt { font-size: 14px; line-height: 1.4; color: var(--muted); }
.hero__stats dt span { display: block; margin-top: 2px; font: 400 12px/1.4 var(--fm); color: var(--faint); }

/* ── Logo şeridi ───────────────────────────────────────────────────────── */
.logos { border-block: 1px solid var(--line); padding: 28px 0; }
.logos__in { display: flex; align-items: center; gap: 40px; }
.logos__t { flex: none; width: 160px; color: var(--faint); }
.logos__track { position: relative; flex: 1; min-width: 0; display: flex; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.logos__track ul { flex: none; display: flex; align-items: center; gap: 64px; padding-right: 64px; list-style: none; margin: 0; animation: marquee 38s linear infinite; }
.logos__track:hover ul { animation-play-state: paused; }
.logos__track img { height: 30px; width: auto; max-width: 140px; object-fit: contain; filter: brightness(0) invert(1); opacity: .5; transition: opacity .3s; }
.logos__track li:hover img { opacity: .95; }

/* ── Bento hizmetler ───────────────────────────────────────────────────── */
.bento { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 16px; }
.bento__c {
  position: relative; isolation: isolate; overflow: hidden; grid-column: span 3;
  display: flex; flex-direction: column; gap: 24px; padding: 28px;
  border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--card);
  transition: border-color .3s, transform .5s var(--ease);
}
.bento__c::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(91, 140, 255, .13), transparent 60%); opacity: 0; transition: opacity .35s; }
.bento__c:hover { border-color: var(--line-3); }
.bento__c:hover::before { opacity: 1; }
.bento__c--seo { grid-column: span 6; grid-row: span 2; }
.bento__c--ads { grid-column: span 6; }
.bento__c--wide { grid-column: span 6; }
.bento__head { display: flex; align-items: center; justify-content: space-between; }
.bento__go { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-2); color: var(--muted); transition: color .3s, border-color .3s, transform .45s var(--ease); }
.bento__go .ic { width: 16px; height: 16px; }
.bento__c:hover .bento__go { color: var(--text); border-color: var(--line-3); transform: rotate(45deg); }
.bento__head + .bento__body { margin-top: 40px; }
.bento__k { margin-bottom: 12px; color: var(--accent-hi); }
.bento__body h3 { margin-bottom: 8px; font-size: 22px; line-height: 1.2; letter-spacing: -.02em; font-weight: 600; }
.bento__body p:not(.bento__k) { font-size: 15px; line-height: 1.55; color: var(--muted); }
.bento__c--seo .bento__body h3 { font-size: clamp(24px, 2.2vw, 30px); }
.bento__c--wide { flex-direction: row; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; background: linear-gradient(120deg, rgba(91, 140, 255, .1), transparent 60%), var(--card); }
.bento__c--wide .bento__head { width: 100%; }
.bento__c--wide .bento__body { flex: 1 1 300px; }
.bento__c--wide .btn { flex: none; }

.viz { position: relative; flex: 1; min-height: 220px; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; border-radius: var(--r); border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, 0)); overflow: hidden; }
.viz__chart { position: absolute; left: 20px; right: 20px; top: 20px; bottom: 52px; width: calc(100% - 40px); height: calc(100% - 72px); overflow: visible; }
.viz__grid path { stroke: rgba(255, 255, 255, .06); stroke-width: 1; vector-effect: non-scaling-stroke; fill: none; }
.viz__line { fill: none; stroke-width: 2.5; vector-effect: non-scaling-stroke; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 2.2s var(--ease) .3s; }
.viz__area { opacity: 0; transition: opacity 1.2s ease 1.4s; }
.is-in .viz__line { stroke-dashoffset: 0; }
.is-in .viz__area { opacity: 1; }
.viz__serp { position: absolute; top: 20px; left: 20px; display: grid; gap: 6px; width: min(220px, 60%); }
.serp { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 10px; border: 1px solid rgba(91, 140, 255, .45); background: rgba(12, 16, 27, .85); }
.serp--dim { border-color: var(--line); opacity: .55; }
.serp__rank { color: var(--text); }
.serp__lines { flex: 1; display: grid; gap: 4px; }
.serp__lines i { display: block; height: 4px; border-radius: 2px; background: rgba(255, 255, 255, .16); }
.serp__lines i:first-child { width: 90%; background: rgba(157, 186, 255, .55); }
.serp__lines i:last-child { width: 60%; }
.serp__you { padding: 2px 6px; border-radius: 6px; background: var(--accent); color: #fff; font-size: 10px; }
.js .serp { opacity: 0; transform: translateY(6px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .is-in .serp { opacity: 1; transform: none; }
.js .is-in .serp--dim { opacity: .55; }
.js .is-in .serp:nth-child(2) { transition-delay: .15s; }
.js .is-in .serp:nth-child(3) { transition-delay: .3s; }
.viz__meta { position: relative; display: flex; justify-content: space-between; align-items: center; }
.viz__meta .up { color: var(--ok); }
.viz--ads { min-height: 120px; flex: none; }
.bars { display: flex; align-items: flex-end; gap: 8px; height: 64px; margin-bottom: 16px; }
.bars i { flex: 1; height: calc(var(--h) * 100%); border-radius: 6px 6px 2px 2px; background: linear-gradient(180deg, rgba(91, 140, 255, .7), rgba(91, 140, 255, .15)); transform-origin: bottom; }
.js .bars i { transform: scaleY(0); transition: transform 1s var(--ease); }
.js .is-in .bars i { transform: none; }
.bars i:nth-child(2) { transition-delay: .08s; } .bars i:nth-child(3) { transition-delay: .16s; } .bars i:nth-child(4) { transition-delay: .24s; } .bars i:nth-child(5) { transition-delay: .32s; }
.bars i:nth-child(6) { transition-delay: .4s; background: linear-gradient(180deg, var(--ok), rgba(61, 220, 151, .15)); }

/* ── SEO röntgeni ──────────────────────────────────────────────────────── */
.sec--xray { overflow: hidden; }
.sec--xray::before { content: ""; position: absolute; left: 50%; top: 40%; width: 1100px; height: 700px; transform: translate(-30%, -50%); background: radial-gradient(ellipse, rgba(91, 140, 255, .12), transparent 65%); pointer-events: none; }
.xsec { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.xsec .h2, .tool .h1 { font-size: clamp(36px, 4vw, 56px); line-height: 1.05; }
.xsec__list { display: grid; gap: 14px; list-style: none; margin: 40px 0 0; padding: 0; }
.xsec__list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text-2); }
.xsec__list .ic { width: 18px; height: 18px; color: var(--ok); }

.xpanel { position: relative; overflow: hidden; border-radius: var(--r-lg); border: 1px solid var(--line-2); background: linear-gradient(180deg, #0e1323, #0a0e19); box-shadow: 0 50px 120px -50px rgba(91, 140, 255, .45), inset 0 1px 0 rgba(255, 255, 255, .06); }
.xpanel__bar { display: flex; align-items: center; gap: 8px; height: 44px; padding: 0 20px; border-bottom: 1px solid var(--line); }
.xpanel__bar i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, .12); }
.xpanel__bar .mono { margin-left: 12px; color: var(--faint); }
.xpanel__body { padding: clamp(20px, 3vw, 32px); }
.xpanel__idle { display: flex; align-items: center; gap: 20px; margin-top: 24px; padding: 20px; border-radius: var(--r); border: 1px dashed var(--line-2); font-size: 14px; line-height: 1.5; color: var(--muted); }
.xpanel__idle[hidden] { display: none; }

.xform__field { display: flex; align-items: center; height: 60px; padding: 6px 6px 6px 22px; border-radius: 999px; border: 1px solid var(--line-2); background: rgba(255, 255, 255, .04); transition: border-color .25s, box-shadow .25s, background-color .25s; }
.xform__field:focus-within { border-color: rgba(91, 140, 255, .65); background: rgba(91, 140, 255, .05); box-shadow: 0 0 0 4px rgba(91, 140, 255, .14); }
.xform__pre { flex: none; font-size: 15px; letter-spacing: 0; color: var(--faint); }
.xform input { flex: 1; min-width: 0; height: 100%; padding: 0 12px 0 2px; border: 0; outline: 0; background: none; font: 500 16px/1 var(--f); color: var(--text); }
.xform input::placeholder { color: var(--faint); font-weight: 400; }
.xform .btn { flex: none; }
.xform--big .xform__field { height: 64px; padding-left: 24px; }
.xform--big .btn { --h: 52px; }
.xform.is-bad .xform__field { border-color: var(--bad); box-shadow: 0 0 0 4px rgba(255, 107, 107, .12); }

.ring { position: relative; flex: none; width: 128px; height: 128px; border-radius: 50%; }
.ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring circle { fill: none; stroke-width: 8; }
.ring .bg { stroke: rgba(255, 255, 255, .08); }
.ring .fg { stroke: var(--c, var(--accent)); stroke-linecap: round; stroke-dasharray: 326.73; stroke-dashoffset: 326.73; transition: stroke-dashoffset 1.6s var(--ease); }
.xres .ring { box-shadow: 0 0 48px -16px var(--c, var(--accent)); }
.ring__v { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; }
.ring__v b { font-size: 38px; line-height: 1; font-weight: 600; letter-spacing: -.04em; }
.ring__v span { margin-top: 4px; }
.ring--idle { width: 64px; height: 64px; }
.ring--idle circle { stroke: var(--line-2); stroke-width: 4; stroke-dasharray: 4 6; }
.ring--idle .mono { position: absolute; inset: 0; display: grid; place-items: center; }

.xout { margin-top: 24px; }
.xout[hidden] { display: none; }
.xlog { padding: 18px 20px; border-radius: var(--r); border: 1px solid var(--line); background: #070a13; font: 400 13px/1.9 var(--fm); color: var(--muted); }
.xlog div { opacity: 0; animation: fade .3s forwards; }
.xlog .ok { color: var(--ok); }
.xlog .caret::after { content: "▍"; margin-left: 4px; color: var(--accent-hi); animation: blink 1s steps(1) infinite; }
.xerr { display: flex; gap: 12px; align-items: flex-start; padding: 18px 20px; border-radius: var(--r); border: 1px solid rgba(255, 107, 107, .35); background: rgba(255, 107, 107, .06); font-size: 15px; color: var(--text-2); }
.xerr .ic { width: 20px; height: 20px; margin-top: 2px; color: var(--bad); }

.xres { display: grid; gap: 24px; }
.xres__top { display: flex; align-items: center; gap: 24px; padding: 20px; border-radius: var(--r); border: 1px solid var(--line); background: rgba(255, 255, 255, .025); }
.xres__meta { min-width: 0; }
.xres__grade { font-size: 22px; font-weight: 600; letter-spacing: -.02em; }
.xres__url { display: block; margin-top: 4px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.xres__sum { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.pill { display: inline-flex; align-items: center; gap: 6px; height: 28px; padding: 0 10px; border-radius: 999px; border: 1px solid var(--line-2); font-size: 12px; color: var(--text-2); }
.pill i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.pill--ok { color: var(--ok); } .pill--warn { color: var(--warn); } .pill--bad { color: var(--bad); }
.xgroup h4 { margin-bottom: 4px; font: 400 12px/1.4 var(--fm); letter-spacing: .12em; text-transform: uppercase; color: var(--faint); }
.xitem { display: grid; grid-template-columns: 20px minmax(0, 1fr) auto; gap: 4px 12px; align-items: start; padding: 14px 0; border-top: 1px solid var(--line); opacity: 0; animation: fade .4s var(--ease) forwards; }
.xitem .ic { width: 18px; height: 18px; margin-top: 2px; }
.xitem--ok .ic { color: var(--ok); } .xitem--warn .ic { color: var(--warn); } .xitem--bad .ic { color: var(--bad); }
.xitem b { font-size: 15px; font-weight: 500; line-height: 1.4; }
.xitem p { grid-column: 2 / -1; font-size: 13px; line-height: 1.5; color: var(--muted); }
.xitem .mono { max-width: 180px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; text-align: right; line-height: 21px; }
.xres__cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding: 20px; border-radius: var(--r); border: 1px solid rgba(91, 140, 255, .35); background: linear-gradient(120deg, rgba(91, 140, 255, .14), rgba(91, 140, 255, .03)); }
.xres__cta p { max-width: 36ch; font-size: 15px; line-height: 1.5; }
.xres__cta p b { display: block; margin-bottom: 2px; }

/* ── Vakalar ───────────────────────────────────────────────────────────── */
.cases { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.cases--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.case { display: flex; flex-direction: column; gap: 20px; padding: 28px; border-radius: var(--r-lg); border: 1px solid var(--ink-line); background: #fff; color: var(--ink); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.case:hover { transform: translateY(-4px); box-shadow: 0 40px 80px -40px rgba(10, 16, 32, .35); }
.case__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; height: 40px; }
.case__top .mono { color: var(--ink-muted); text-align: right; }
.case__logo { display: flex; align-items: center; height: 40px; }
.case__logo img { height: 100%; width: auto; max-width: 140px; object-fit: contain; object-position: left center; }
.case__logo--lg { height: 64px; padding: 12px 16px; border-radius: 14px; background: #fff; }
.case__logo--lg img { max-width: 160px; }
.case__metric { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 12px; padding: 20px 0; border-block: 1px solid var(--ink-line); }
.case__num { font-size: clamp(48px, 5vw, 72px); line-height: 1; font-weight: 600; letter-spacing: -.05em; background: var(--grad-ink); -webkit-background-clip: text; background-clip: text; color: transparent; }
.case__lbl { font-size: 14px; color: var(--ink-muted); }
.case__title { font-size: 19px; line-height: 1.35; letter-spacing: -.015em; font-weight: 600; }
.case .tags li { border-color: var(--ink-line); color: var(--ink-muted); }
.case__more { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; font-size: 15px; font-weight: 500; }
.case__more .ic { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.case:hover .case__more .ic { transform: translateX(4px); }

/* ── Süreç ─────────────────────────────────────────────────────────────── */
.steps { position: relative; display: grid; grid-template-columns: repeat(var(--n), minmax(0, 1fr)); list-style: none; margin: 0; padding: 0; }
.steps::before, .steps::after { content: ""; position: absolute; left: 0; right: 0; top: 16px; height: 1px; background: var(--line-2); }
.steps::after { background: linear-gradient(90deg, var(--accent), var(--accent-2)); transform: scaleX(0); transform-origin: left; transition: transform 1.8s var(--ease) .2s; }
.steps.is-in::after { transform: scaleX(1); }
.step { position: relative; padding-right: 24px; }
.step__n { position: relative; z-index: 1; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line-2); background: var(--sec-bg); color: var(--muted); font-size: 11px; transition: border-color .4s, color .4s, box-shadow .4s; transition-delay: calc(var(--d, 0) * 350ms + 300ms); }
.steps.is-in .step__n { border-color: var(--accent); color: var(--text); box-shadow: 0 0 0 4px var(--sec-bg), 0 0 20px rgba(91, 140, 255, .5); }
.step__t { margin: 28px 0 8px; font-size: 20px; line-height: 1.3; letter-spacing: -.015em; font-weight: 600; }
.step p { max-width: 30ch; font-size: 15px; line-height: 1.55; color: var(--muted); }

/* ── İlkeler ───────────────────────────────────────────────────────────── */
.principles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.principles li { padding: 32px 32px 40px; border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); }
.principles li:nth-child(3n + 1) { padding-left: 0; border-left: 0; }
.principles li:nth-child(3n) { padding-right: 0; }
.principles .mono { color: var(--accent-hi); }
.principles h3 { margin: 20px 0 10px; font-size: 20px; line-height: 1.3; letter-spacing: -.015em; font-weight: 600; }
.principles p { font-size: 15px; line-height: 1.6; color: var(--muted); }

/* ── İletişim ──────────────────────────────────────────────────────────── */
.contact { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
.contact--page { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 16px; }
.contact__copy { position: sticky; top: calc(var(--nav) + 32px); }
.contact__side { display: grid; gap: 16px; }
.nsteps { display: grid; gap: 20px; list-style: none; margin: 40px 0 0; padding: 0; }
.nsteps li { display: grid; grid-template-columns: 32px minmax(0, 1fr); gap: 16px; }
.nsteps .mono { padding-top: 3px; color: var(--accent-hi); }
.nsteps b { font-size: 16px; font-weight: 600; }
.nsteps p { margin-top: 4px; font-size: 14px; line-height: 1.55; color: var(--muted); }
.card--info .nsteps { margin-top: 20px; }
.clines { display: grid; gap: 12px; list-style: none; margin: 40px 0 0; padding: 24px 0 0; border-top: 1px solid var(--line); }
.clines li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text-2); }
.clines .ic { width: 18px; height: 18px; color: var(--muted); }
.clines a:hover { color: var(--text); }
.card--form { background: linear-gradient(180deg, #0e1323, #0b0f1b); border-color: var(--line-2); }
.card--info .h4 { margin-bottom: 4px; }
.info { display: grid; margin-top: 12px; }
.info > div { display: grid; gap: 6px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.info > div:last-child { border-bottom: 0; padding-bottom: 0; }
.info dt { display: flex; align-items: center; gap: 8px; font: 400 12px/1.4 var(--fm); letter-spacing: .08em; text-transform: uppercase; color: var(--faint); }
.info dt .ic { width: 16px; height: 16px; }
.info dd { font-size: 15px; line-height: 1.55; color: var(--text-2); }
.info a:hover { color: var(--text); }

.form { display: grid; gap: 20px; }
.label { display: block; margin-bottom: 8px; font-size: 13px; font-weight: 500; line-height: 1.4; color: var(--text); }
.form fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.form legend { padding: 0; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; }
.chip input { position: absolute; inset: 0; margin: 0; opacity: 0; cursor: pointer; }
.chip span { display: inline-flex; align-items: center; height: 36px; padding: 0 14px; border-radius: 999px; border: 1px solid var(--line-2); font-size: 13px; color: var(--muted); transition: background-color .2s, border-color .2s, color .2s; pointer-events: none; }
.chip:hover span { border-color: var(--line-3); color: var(--text); }
.chip input:checked + span { background: rgba(91, 140, 255, .16); border-color: rgba(91, 140, 255, .6); color: #fff; }
.chip input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }
.form__row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; }
.fld input, .fld textarea, .select select {
  width: 100%; height: 48px; padding: 0 16px; border-radius: 12px; border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, .03); font-size: 15px; color: var(--text); outline: 0;
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.fld textarea { height: auto; min-height: 136px; padding: 14px 16px; line-height: 1.55; resize: vertical; }
.fld input::placeholder, .fld textarea::placeholder { color: var(--faint); }
.fld input:focus, .fld textarea:focus, .select select:focus { border-color: rgba(91, 140, 255, .65); background: rgba(91, 140, 255, .04); box-shadow: 0 0 0 4px rgba(91, 140, 255, .14); }
.fld.is-bad input, .fld.is-bad textarea { border-color: var(--bad); }
.select { position: relative; }
.select select { appearance: none; -webkit-appearance: none; padding-right: 44px; cursor: pointer; }
.select::after { content: ""; position: absolute; right: 18px; top: 50%; width: 8px; height: 8px; margin-top: -6px; border-right: 1.5px solid var(--muted); border-bottom: 1.5px solid var(--muted); transform: rotate(45deg); pointer-events: none; }
.select option { background: #0c101b; color: var(--text); }
.form__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-top: 4px; }
.form__note { color: var(--faint); }
.form__status { font-size: 14px; line-height: 1.5; }
.form__status:empty { display: none; }
.form__status.is-err { color: var(--bad); }
.form-ok { padding: 40px 8px; text-align: center; outline: 0; }
.form-ok[hidden] { display: none; }
.form-ok__icon { display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 24px; border-radius: 50%; background: rgba(61, 220, 151, .12); border: 1px solid rgba(61, 220, 151, .4); color: var(--ok); }
.form-ok__icon .ic { width: 28px; height: 28px; stroke-width: 2.25; }
.form-ok h3 { font-size: 24px; letter-spacing: -.02em; }
.form-ok p { max-width: 40ch; margin: 12px auto 0; color: var(--muted); }
.form-ok strong { color: var(--text); font-weight: 500; }
.form-ok__alt { font-size: 14px; }
.form-ok__alt a { color: var(--text); text-decoration: underline; text-decoration-color: var(--line-3); text-underline-offset: 3px; }

/* ── Sayfa başlığı ─────────────────────────────────────────────────────── */
.phero { position: relative; overflow: hidden; padding: calc(var(--nav) + clamp(40px, 5vw, 72px)) 0 clamp(56px, 7vw, 96px); }
.phero__bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(760px 420px at 88% -12%, rgba(91, 140, 255, .2), transparent 70%); }
.phero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px; background-position: center top; opacity: .5;
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 90% 0%, #000 10%, transparent 70%);
  mask-image: radial-gradient(ellipse 60% 80% at 90% 0%, #000 10%, transparent 70%);
}
.phero .wrap { position: relative; }
.phero__lead { max-width: 60ch; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0 0 48px; padding: 0; font-size: 13px; line-height: 1.4; color: var(--faint); }
.crumbs li + li::before { content: "/"; margin-right: 8px; color: var(--line-3); }
.crumbs a { transition: color .2s; }
.crumbs a:hover { color: var(--text); }
.crumbs [aria-current] { color: var(--muted); }
.jump { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 40px 0 0; padding: 0; }
.jump a { display: inline-flex; align-items: center; height: 36px; padding: 0 14px; border-radius: 999px; border: 1px solid var(--line-2); font-size: 13px; color: var(--muted); transition: color .2s, border-color .2s, background-color .2s; }
.jump a:hover { color: var(--text); border-color: var(--line-3); background: rgba(255, 255, 255, .04); }

/* ── Hizmet satırları ──────────────────────────────────────────────────── */
.svc:first-child { border-top: 1px solid var(--line); }
.svc:last-child { border-bottom: 0; }
.svc { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(24px, 5vw, 80px); padding: clamp(48px, 6vw, 80px) 0; border-bottom: 1px solid var(--line); scroll-margin-top: var(--nav); }
.svc__side { position: sticky; top: calc(var(--nav) + 32px); align-self: start; display: grid; gap: 20px; justify-items: start; }
.svc__n { color: var(--faint); }
.svc__t { font-size: clamp(28px, 3vw, 40px); line-height: 1.08; letter-spacing: -.03em; font-weight: 600; }
.svc__k { margin-top: -8px; color: var(--accent-hi); }
.svc__d { max-width: 60ch; margin-bottom: 32px; font-size: 18px; line-height: 1.65; color: var(--text-2); }

/* ── Paketler ──────────────────────────────────────────────────────────── */
.pkgs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.pkg { position: relative; display: flex; flex-direction: column; padding: 32px; border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--card); }
.pkg--hot { border-color: rgba(91, 140, 255, .5); background: radial-gradient(520px 260px at 50% 0%, rgba(91, 140, 255, .2), transparent), var(--card); box-shadow: 0 40px 100px -50px rgba(91, 140, 255, .6); }
.pkg__badge { position: absolute; top: 38px; right: 32px; color: var(--accent-hi); }
.pkg__t { font-size: 28px; line-height: 1.2; letter-spacing: -.025em; font-weight: 600; }
.pkg__n { min-height: 3.1em; margin: 8px 0 28px; font-size: 15px; line-height: 1.55; color: var(--muted); }
.pkg .checks { grid-template-columns: 1fr; margin-bottom: 32px; padding-top: 28px; border-top: 1px solid var(--line); }
.pkg .btn { width: 100%; margin-top: auto; }

/* ── SSS ───────────────────────────────────────────────────────────────── */
.faqwrap { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
.faqwrap > div:first-child { position: sticky; top: calc(var(--nav) + 32px); }
.faq { border-top: 1px solid var(--line); }
.faq__i { border-bottom: 1px solid var(--line); }
.faq__i summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 0; list-style: none; cursor: pointer; font-size: 18px; font-weight: 500; line-height: 1.4; letter-spacing: -.01em; }
.faq__i summary::-webkit-details-marker { display: none; }
.faq__ic { display: grid; place-items: center; flex: none; width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line-2); color: var(--muted); transition: transform .35s var(--ease), color .2s, border-color .2s; }
.faq__ic .ic { width: 16px; height: 16px; }
.faq__i summary:hover .faq__ic { color: var(--text); border-color: var(--line-3); }
.faq__i[open] .faq__ic { transform: rotate(45deg); color: var(--text); }
.faq__a p { padding: 0 56px 24px 0; line-height: 1.7; color: var(--muted); }

/* ── CTA bandı ─────────────────────────────────────────────────────────── */
.cta { position: relative; overflow: hidden; isolation: isolate; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 32px 64px; align-items: end; padding: clamp(32px, 5vw, 72px); border-radius: var(--r-xl); border: 1px solid var(--line-2); background: linear-gradient(135deg, #10172f, #0a0e1a 70%); }
.cta__glow { position: absolute; z-index: -1; right: -12%; top: -70%; width: 720px; height: 720px; background: radial-gradient(circle, rgba(91, 140, 255, .38), transparent 60%); pointer-events: none; }
.cta .h2 { max-width: 17ch; font-size: clamp(32px, 4vw, 56px); }
.cta__actions { display: grid; gap: 12px; }

/* ── Rakam kutuları ────────────────────────────────────────────────────── */
.kpis { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; overflow: hidden; border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--line); }
.kpis > div { display: flex; flex-direction: column-reverse; justify-content: flex-end; gap: 10px; padding: 28px 32px; background: var(--card); }
.kpis dd { font-size: clamp(36px, 4vw, 52px); line-height: 1; font-weight: 600; letter-spacing: -.045em; }
.kpis dd small { font-size: .42em; font-weight: 500; letter-spacing: 0; color: var(--muted); }
.kpis dt { font-size: 14px; line-height: 1.4; color: var(--muted); }
.kpis--case dd { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ── Referanslar & sektörler ───────────────────────────────────────────── */
.refs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.ref { display: flex; flex-direction: column; padding: 28px; border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--card); }
.ref__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; height: 40px; }
.ref__logo img { height: 32px; width: auto; max-width: 130px; object-fit: contain; object-position: left center; filter: brightness(0) invert(1); opacity: .85; }
.ref__name { margin: 24px 0 8px; font-size: 20px; line-height: 1.3; letter-spacing: -.015em; font-weight: 600; }
.ref__name span { display: block; margin-top: 2px; font-size: 13px; font-weight: 400; letter-spacing: 0; color: var(--faint); }
.ref > p { margin-bottom: 24px; font-size: 15px; line-height: 1.6; color: var(--muted); }
.ref__metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.ref__metrics div { display: flex; flex-direction: column-reverse; justify-content: flex-end; gap: 6px; }
.ref__metrics dd { font-size: 28px; line-height: 1; font-weight: 600; letter-spacing: -.035em; }
.ref__metrics dt { font-size: 13px; color: var(--muted); }
.sectors { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; list-style: none; margin: 0; padding: 0; }
.sectors li { display: flex; flex-direction: column; padding: 28px; border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--card); }
.sectors .mono { color: var(--accent-hi); }
.sectors b { margin-top: 40px; font-size: 26px; line-height: 1.1; letter-spacing: -.03em; font-weight: 600; }
.sectors li > span:last-child { margin-top: 8px; font-size: 14px; color: var(--muted); }

/* ── Vaka listesi ──────────────────────────────────────────────────────── */
.srows { display: grid; gap: 16px; }
.srow { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: clamp(24px, 4vw, 64px); padding: clamp(28px, 4vw, 48px); border-radius: var(--r-xl); border: 1px solid var(--line); background: var(--card); }
.srow__head { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.srow__t { margin-bottom: 12px; font-size: clamp(24px, 2.6vw, 34px); line-height: 1.15; letter-spacing: -.03em; font-weight: 600; }
.srow__t a { transition: color .2s; }
.srow__t a:hover { color: var(--accent-hi); }
.srow__main > p { max-width: 60ch; color: var(--muted); }
.srow .tlink { margin-top: 28px; }
.mgrid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.mgrid div { display: flex; flex-direction: column; gap: 6px; }
.mgrid dd { font-size: 28px; line-height: 1; font-weight: 600; letter-spacing: -.035em; }
.mgrid dt { font-size: 13px; line-height: 1.4; color: var(--muted); }

/* ── Vaka detay ────────────────────────────────────────────────────────── */
.chead { display: flex; align-items: center; gap: 20px; margin-bottom: 32px; }
.chead .eyebrow { margin: 0; }
.h1--case { max-width: 20ch; font-size: clamp(36px, 4.8vw, 64px); line-height: 1.05; letter-spacing: -.035em; }
.cmeta { display: grid; grid-template-columns: repeat(4, auto); justify-content: start; gap: 16px 56px; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line); }
.cmeta div { display: grid; gap: 6px; }
.cmeta dt { font: 400 12px/1.4 var(--fm); letter-spacing: .08em; text-transform: uppercase; color: var(--faint); }
.cmeta dd { font-size: 15px; line-height: 1.5; }
.article { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 9fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
.article__toc { position: sticky; top: calc(var(--nav) + 32px); }
.article__toc .mono { color: var(--faint); }
.article__toc ol { display: grid; gap: 2px; list-style: none; margin: 16px 0 0; padding: 0; border-left: 1px solid var(--line); }
.article__toc a { display: block; margin-left: -1px; padding: 6px 0 6px 16px; border-left: 1px solid transparent; font-size: 14px; color: var(--muted); transition: color .2s, border-color .2s; }
.article__toc a:hover { color: var(--text); }
.article__toc a.is-on { color: var(--text); border-left-color: var(--accent); }
.article__body { max-width: 780px; }
.ablock { padding-bottom: 56px; margin-bottom: 56px; border-bottom: 1px solid var(--line); scroll-margin-top: calc(var(--nav) + 32px); }
.ablock:last-child { margin-bottom: 0; }
.ablock .eyebrow { margin-bottom: 16px; }
.ablock .h3 { margin-bottom: 20px; }
.ablock > p:not(.eyebrow) { font-size: 18px; line-height: 1.75; color: var(--text-2); }
.ablock--result { padding: clamp(28px, 4vw, 44px); border: 1px solid rgba(61, 220, 151, .3); border-radius: var(--r-lg); background: radial-gradient(640px 220px at 0 0, rgba(61, 220, 151, .1), transparent), var(--card); }
.ablock--result .eyebrow::before { background: var(--ok); box-shadow: 0 0 12px var(--ok); }
.tline { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; list-style: none; margin: 0; padding: 0; }
.tline li { display: flex; flex-direction: column; gap: 8px; padding: 20px; border-radius: var(--r); border: 1px solid var(--line); background: var(--card); }
.tline .mono { color: var(--accent-hi); }
.tline b { font-size: 16px; line-height: 1.3; font-weight: 600; }
.tline p { font-size: 14px; line-height: 1.5; color: var(--muted); }

/* ── Araç sayfası ──────────────────────────────────────────────────────── */
.tool { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
.cgroups { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.cgroup { padding: 28px; border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--card); }
.cgroup .mono { color: var(--accent-hi); }
.cgroup h3 { margin: 24px 0 16px; font-size: 20px; line-height: 1.3; letter-spacing: -.015em; font-weight: 600; }
.cgroup ul { display: grid; gap: 10px; list-style: none; margin: 0; padding: 0; }
.cgroup li { position: relative; padding-left: 18px; font-size: 14px; line-height: 1.5; color: var(--muted); }
.cgroup li::before { content: ""; position: absolute; left: 0; top: .72em; width: 8px; height: 1px; background: var(--accent); }

/* ── Fatura ────────────────────────────────────────────────────────────── */
.billing { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; align-items: start; }
.billing .h4 { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.billing .h4 .ic { width: 20px; height: 20px; color: var(--accent-hi); }
.kv { display: grid; gap: 6px; padding: 16px 0; border-top: 1px solid var(--line); }
.kv dt { font: 400 12px/1.4 var(--fm); letter-spacing: .08em; text-transform: uppercase; color: var(--faint); }
.kv dd { display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 15px; line-height: 1.5; }
.kv dd .mono { font-size: 15px; letter-spacing: .04em; color: var(--text); }
.copy { display: inline-flex; flex: none; align-items: center; gap: 6px; height: 32px; padding: 0 12px; border-radius: 999px; border: 1px solid var(--line-2); background: none; font-size: 12px; font-weight: 500; color: var(--muted); cursor: pointer; transition: color .2s, border-color .2s; }
.copy .ic { width: 14px; height: 14px; }
.copy:hover { color: var(--text); border-color: var(--line-3); }
.copy.is-done { color: var(--ok); border-color: rgba(61, 220, 151, .45); }
.qr { display: flex; align-items: center; gap: 20px; margin-top: 8px; padding-top: 20px; border-top: 1px solid var(--line); }
.qr img { width: 120px; height: 120px; padding: 6px; border-radius: 12px; background: #fff; }
.qr figcaption { font-size: 14px; line-height: 1.5; color: var(--muted); }
.billing__note { grid-column: 1 / -1; margin-top: 8px; color: var(--faint); }
.billing__note a { color: var(--text-2); }

/* ── Metin sayfası ─────────────────────────────────────────────────────── */
.prose { max-width: 780px; }
.prose h2 { margin: 48px 0 12px; font-size: 22px; line-height: 1.3; letter-spacing: -.015em; font-weight: 600; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 16px; line-height: 1.75; color: var(--text-2); }
.prose a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.prose .mono { margin-top: 40px; }

/* ── 404 ───────────────────────────────────────────────────────────────── */
.nf { position: relative; display: grid; align-items: center; min-height: 100svh; padding: calc(var(--nav) + 40px) 0 80px; }
.nf__in { position: relative; }
.nf__code { margin-bottom: 24px; font-size: 14px; color: var(--accent-hi); }
.nf__links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }

/* ── Alt bilgi ─────────────────────────────────────────────────────────── */
.foot { position: relative; overflow: hidden; padding-top: clamp(64px, 8vw, 104px); border-top: 1px solid var(--line); background: var(--bg); }
.foot__grid { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr) minmax(0, 1fr) minmax(0, 1.2fr); gap: 40px; }
.foot__brand img { height: 50px; width: auto; }
.foot__brand p { max-width: 36ch; margin: 24px 0; font-size: 15px; line-height: 1.6; color: var(--muted); }
.foot__soc { display: flex; gap: 8px; }
.foot__soc a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-2); color: var(--muted); transition: color .2s, border-color .2s; }
.foot__soc a:hover { color: var(--text); border-color: var(--line-3); }
.foot__soc .ic { width: 18px; height: 18px; }
.foot__h { margin-bottom: 20px; font: 400 12px/1.4 var(--fm); letter-spacing: .14em; text-transform: uppercase; color: var(--faint); }
.foot ul { display: grid; gap: 10px; list-style: none; margin: 0; padding: 0; }
.foot ul li { font-size: 15px; line-height: 1.6; }
.foot ul a { color: var(--muted); transition: color .2s; }
.foot ul a:hover { color: var(--text); }
.foot__contact li { color: var(--muted); }
.foot__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 16px; margin-top: 72px; padding: 24px 0; border-top: 1px solid var(--line); font-size: 13px; color: var(--faint); }
.foot__bottom .mono { color: var(--faint); }
.foot__word {
  width: min(100%, 1320px); aspect-ratio: 1920 / 614; margin: 24px auto -3%; pointer-events: none;
  background: linear-gradient(180deg, rgba(157, 186, 255, .2), rgba(157, 186, 255, 0) 80%);
  -webkit-mask: url(/img/logolar/beyaz-logo.svg) center / contain no-repeat; mask: url(/img/logolar/beyaz-logo.svg) center / contain no-repeat;
}

/* ── Hareket ───────────────────────────────────────────────────────────── */
.js .rv { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: calc(var(--d, 0) * 90ms); }
.js .rv.is-in { opacity: 1; transform: none; }
@keyframes rise { to { transform: none; } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -8px; } }
@keyframes marquee { to { transform: translateX(-100%); } }
@keyframes blink { 50% { opacity: 0; } }
@keyframes spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; transition-delay: 0s !important; }
  .js .rv, .js .hero__line > span, .js .hero__lead, .js .hero__form, .js .fchip { opacity: 1; transform: none; }
  .logos__track ul { animation: none; }
}

/* ── Duyarlı düzen ─────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .bento { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .bento__c { grid-column: span 3; }
  .bento__c--seo, .bento__c--ads, .bento__c--wide { grid-column: span 6; grid-row: auto; }
  .cgroups, .sectors { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .foot__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px 40px; }
  .fchip--2 { right: 0; }
}

@media (max-width: 900px) {
  :root { --nav: 68px; }
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .hero__in { grid-template-columns: 1fr; }
  .hero__art { order: -1; justify-self: center; width: min(100%, 360px); margin: -24px 0 8px; }
  .hero__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 32px; }
  .hero__stats > div:nth-child(odd) { padding-left: 0; border-left: 0; }
  .shead, .xsec, .contact, .contact--page, .faqwrap, .tool, .article, .svc, .srow, .cta { grid-template-columns: minmax(0, 1fr); }
  .shead .lead { padding-bottom: 0; }
  .contact__copy, .faqwrap > div:first-child, .svc__side { position: static; }
  .article__toc { display: none; }
  .cases, .cases--2, .refs, .pkgs { grid-template-columns: minmax(0, 1fr); }
  .case__num { font-size: 56px; }
  .kpis, .mgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .principles { grid-template-columns: minmax(0, 1fr); }
  .principles li, .principles li:nth-child(3n + 1), .principles li:nth-child(3n) { padding: 28px 0; border-left: 0; }
  .steps { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .steps::before, .steps::after { left: 16px; right: auto; top: 0; bottom: 0; width: 1px; height: auto; }
  .steps::after { transform: scaleY(0); transform-origin: top; background: linear-gradient(180deg, var(--accent), var(--accent-2)); }
  .steps.is-in::after { transform: scaleY(1); }
  .step { padding: 0 0 0 56px; }
  .step__n { position: absolute; left: 0; top: -4px; }
  .step__t { margin-top: 0; }
  .step p { max-width: none; }
  .cta__actions { grid-auto-flow: row; }
  .billing { grid-template-columns: minmax(0, 1fr); }
  .cmeta { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 24px; }
  .logos__in { flex-direction: column; align-items: stretch; gap: 20px; }
  .logos__t { width: auto; text-align: center; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .nav__cta .btn { display: none; }
  .hero__h1 { font-size: clamp(38px, 11vw, 52px); }
  .hero__line > span { white-space: normal; }
  .hero__kicker { width: auto; font-size: 11px; letter-spacing: .08em; }
  .hero__alt { flex-direction: column; align-items: flex-start; padding: 0 8px; }
  .fchip { font-size: 12px; padding: 8px 10px; }
  .xform__field, .xform--big .xform__field { flex-wrap: wrap; height: auto; padding: 6px; border-radius: 22px; }
  .xform__pre { display: none; }
  .xform input { flex: 1 1 100%; height: 48px; padding: 0 14px; }
  .xform .btn { flex: 1 1 100%; }
  .xres__top { flex-direction: column; align-items: flex-start; }
  .xitem { grid-template-columns: 20px minmax(0, 1fr); }
  .xitem .mono { grid-column: 2; text-align: left; max-width: none; }
  .bento { grid-template-columns: minmax(0, 1fr); }
  .bento__c, .bento__c--seo, .bento__c--ads, .bento__c--wide { grid-column: auto; min-height: 0; }
  .bento__c--wide .btn { width: 100%; }
  .viz { min-height: 240px; }
  .viz--ads { min-height: 0; }
  .bento__head + .bento__body { margin-top: 8px; }
  .form__row, .checks { grid-template-columns: minmax(0, 1fr); }
  .form__foot .btn { width: 100%; }
  .cgroups, .sectors { grid-template-columns: minmax(0, 1fr); }
  .tline { grid-template-columns: minmax(0, 1fr); }
  .foot__grid { grid-template-columns: minmax(0, 1fr); }
  .kv dd { flex-wrap: wrap; }
  .qr { flex-direction: column; align-items: flex-start; }
  .faq__a p { padding-right: 0; }
  .xres .ring { width: 112px; height: 112px; }
}
