/* =========================================================================
   Aydınex Bilişim Teknolojileri — site.css
   Tasarım dili: "Aydınlık" — gece zemin, bakır ışık, prizma spektrumu
   ========================================================================= */

/* ---------- 1. Tokens ---------------------------------------------------- */
:root {
  /* Zemin */
  --bg:            #040410;
  --bg-2:          #07071a;
  --surface:       #0a0a1c;
  --surface-2:     #0e1024;
  --surface-3:     #12142c;
  --navy:          #1d283f;

  /* Çizgi */
  --line:          rgba(255, 255, 255, .08);
  --line-soft:     rgba(255, 255, 255, .05);
  --line-strong:   rgba(255, 255, 255, .16);

  /* Metin */
  --ink:           #ffffff;
  --ink-2:         #bababa;
  --ink-3:         #8b8b9c;
  --ink-4:         #5d5d70;

  /* Vurgu — bakır */
  --copper:        #cc7b1d;
  --copper-lt:     #f5b461;
  --copper-dk:     #8a4f12;
  --copper-glow:   rgba(204, 123, 29, .35);

  /* İkincil — spektrum */
  --violet:        #6e5bff;
  --azure:         #4c8dff;

  --grad-copper:   linear-gradient(100deg, var(--copper) 0%, var(--copper-lt) 100%);
  --grad-spectrum: linear-gradient(100deg, var(--copper) 0%, #e0653f 45%, var(--violet) 100%);
  --grad-panel:    linear-gradient(180deg, rgba(255,255,255,.045) 0%, rgba(255,255,255,.012) 100%);

  /* Tipografi */
  --font:          'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --mono:          'Roboto Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* Ölçü */
  --shell:         1240px;
  --shell-wide:    1400px;
  --gutter:        clamp(20px, 5vw, 48px);
  --sec-y:         clamp(72px, 9vw, 132px);
  --r-sm:          10px;
  --r:             16px;
  --r-lg:          24px;
  --r-pill:        999px;

  /* Hareket */
  --ease:          cubic-bezier(.22, .61, .36, 1);
  --ease-out:      cubic-bezier(.16, 1, .3, 1);
  --dur:           .55s;

  --header-h:      82px;
}

/* ---------- 2. Reset ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  background: var(--bg);
  color: var(--ink-2);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img, svg, canvas, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
::selection { background: var(--copper); color: #04040f; }

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

.skip {
  position: fixed;
  top: 12px;
  left: 50%;
  translate: -50% -180%;
  z-index: 200;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  background: var(--copper);
  color: #140a02;
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: translate .3s var(--ease);
}
.skip:focus { translate: -50% 0; }

::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: #06060f; }
::-webkit-scrollbar-thumb {
  background: #232335;
  border: 3px solid #06060f;
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover { background: var(--copper-dk); }

/* ---------- 3. Tipografi ------------------------------------------------- */
h1, h2, h3, h4, h5 {
  color: var(--ink);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.d1 { font-size: clamp(2.6rem, 6.2vw, 4.6rem); font-weight: 600; }
.d2 { font-size: clamp(2.1rem, 4.4vw, 3.3rem); }
.d3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); letter-spacing: -.02em; }
.d4 { font-size: clamp(1.15rem, 1.6vw, 1.35rem); letter-spacing: -.01em; line-height: 1.3; }

.lead {
  font-size: clamp(1.02rem, 1.35vw, 1.15rem);
  color: var(--ink-2);
  line-height: 1.75;
  max-width: 62ch;
}
.muted  { color: var(--ink-3); }
.small  { font-size: .875rem; line-height: 1.65; }
.tiny   { font-size: .78rem; line-height: 1.6; }

.grad-text {
  background: var(--grad-copper);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad-text--spectrum { background-image: var(--grad-spectrum); }

/* Etiket (eyebrow) — ince çizgi + mono yazı */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--copper-lt);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: '';
  width: clamp(34px, 6vw, 64px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper));
  flex: none;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: '';
  width: clamp(34px, 6vw, 64px);
  height: 1px;
  background: linear-gradient(90deg, var(--copper), transparent);
  flex: none;
}

/* ---------- 4. Yerleşim -------------------------------------------------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.shell--wide { max-width: var(--shell-wide); }

.section { padding-block: var(--sec-y); position: relative; }
.section--tight { padding-block: clamp(52px, 6vw, 84px); }
.section--alt { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%); }

.sec-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head p { margin-top: 18px; }
.sec-head--center p { margin-inline: auto; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.grid { display: grid; gap: clamp(16px, 1.8vw, 24px); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.hr {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, var(--line-strong) 20%, var(--line-strong) 80%, transparent);
}

/* ---------- 5. Arkaplan dokusu ------------------------------------------ */
.bg-fx {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.bg-fx__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 85% 60% at 50% 0%, #000 15%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 85% 60% at 50% 0%, #000 15%, transparent 78%);
}
.bg-fx__noise {
  position: absolute;
  inset: 0;
  opacity: .04;
  mix-blend-mode: overlay;
  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='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}
.bg-fx__aura {
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .2;
}
.bg-fx__aura--a { top: -420px; right: -220px; background: radial-gradient(circle, var(--copper) 0%, transparent 66%); }
.bg-fx__aura--b { top: 46%; left: -420px; background: radial-gradient(circle, var(--violet) 0%, transparent 66%); opacity: .12; }

.page { position: relative; z-index: 1; }

/* ---------- 6. Butonlar -------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  font-family: var(--mono);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .35s var(--ease), background-color .3s, color .3s, border-color .3s, box-shadow .4s;
}
.btn svg { width: 15px; height: 15px; flex: none; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: scale(.975); }

.btn--primary {
  background: #fff;
  color: #04040f;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .9), 0 0 34px rgba(255, 255, 255, .18);
}
.btn--primary:hover {
  box-shadow: 0 0 0 1px var(--copper-lt), 0 0 44px var(--copper-glow);
  background: var(--copper-lt);
}

.btn--copper {
  background: var(--grad-copper);
  color: #170c02;
  box-shadow: 0 10px 34px rgba(204, 123, 29, .26);
}
.btn--copper:hover { box-shadow: 0 14px 44px rgba(204, 123, 29, .42); filter: brightness(1.06); }

.btn--ghost {
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: rgba(255, 255, 255, .02);
}
.btn--ghost:hover { border-color: var(--copper); color: var(--copper-lt); background: rgba(204, 123, 29, .07); }

.btn--sm { padding: 11px 20px; font-size: .72rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--copper-lt);
  transition: gap .3s var(--ease), color .3s;
}
.link-arrow svg { width: 14px; height: 14px; }
.link-arrow:hover { gap: 15px; color: #fff; }

/* ---------- 7. Header ---------------------------------------------------- */
.scrollbar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--grad-copper);
  z-index: 120;
  transition: width .1s linear;
}

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: height .4s var(--ease), background-color .4s, border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.header.is-stuck {
  height: 66px;
  background: rgba(4, 4, 16, .82);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom-color: var(--line);
}
.header__inner {
  width: 100%;
  max-width: var(--shell-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand__mark { width: 38px; height: 38px; flex: none; transition: transform .5s var(--ease); }
.brand:hover .brand__mark { transform: rotate(-8deg) scale(1.06); }
.brand__txt { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: #fff;
}
.brand__sub {
  font-family: var(--mono);
  font-size: .5rem;
  letter-spacing: .21em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 5px;
}

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }
.nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 15px;
  font-size: .92rem;
  font-weight: 400;
  color: var(--ink-2);
  border-radius: var(--r-pill);
  transition: color .3s, background-color .3s;
}
.nav__link:hover, .nav__item:hover > .nav__link { color: #fff; background: rgba(255, 255, 255, .05); }
.nav__link.is-active { color: #fff; }
.nav__link.is-active::after {
  content: '';
  position: absolute;
  left: 15px; right: 15px;
  bottom: 2px;
  height: 1.5px;
  background: var(--grad-copper);
  border-radius: 2px;
}
.nav__caret { width: 10px; height: 10px; transition: transform .3s var(--ease); opacity: .6; }
.nav__item:hover .nav__caret { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  translate: -50% 0;
  width: 620px;
  padding: 12px;
  background: rgba(9, 9, 22, .96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: 0 32px 70px rgba(0, 0, 0, .6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.nav__item:hover .dropdown, .nav__item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown__link {
  display: flex;
  gap: 13px;
  padding: 14px;
  border-radius: var(--r);
  border: 1px solid transparent;
  transition: background-color .3s, border-color .3s;
}
.dropdown__link:hover { background: rgba(255, 255, 255, .04); border-color: var(--line); }
.dropdown__ico {
  width: 38px; height: 38px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(204, 123, 29, .1);
  border: 1px solid rgba(204, 123, 29, .22);
  color: var(--copper-lt);
}
.dropdown__ico svg { width: 18px; height: 18px; }
.dropdown__t { color: #fff; font-size: .95rem; font-weight: 500; line-height: 1.3; }
.dropdown__d { font-size: .78rem; color: var(--ink-3); line-height: 1.5; margin-top: 4px; }

.header__cta { flex: none; }
.burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  flex: none;
  position: relative;
}
.burger span {
  position: absolute;
  left: 12px;
  width: 18px; height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform .4s var(--ease), opacity .3s;
}
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 27px; width: 12px; }
body.nav-open .burger span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); width: 18px; }

/* Mobil çekmece */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(4, 4, 16, .97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: calc(var(--header-h) + 24px) var(--gutter) 40px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
}
body.nav-open .drawer { opacity: 1; visibility: visible; }
.drawer__link {
  display: block;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 1.25rem;
  color: #fff;
  font-weight: 500;
  opacity: 0;
  transform: translateY(14px);
}
body.nav-open .drawer__link {
  animation: drawerIn .5s var(--ease-out) forwards;
  animation-delay: calc(var(--i, 0) * .05s + .1s);
}
@keyframes drawerIn { to { opacity: 1; transform: none; } }
.drawer__sub {
  display: block;
  padding: 12px 0 12px 18px;
  border-left: 1px solid var(--line);
  margin-left: 2px;
  font-size: .95rem;
  color: var(--ink-2);
}
.drawer__sub:hover { color: var(--copper-lt); }
.drawer .btn { margin-top: 28px; }

/* ---------- 8. Hero ------------------------------------------------------ */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(48px, 8vw, 96px));
  padding-bottom: clamp(60px, 8vw, 110px);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero h1 { margin-bottom: 26px; }
.hero__sub { margin-bottom: 38px; max-width: 54ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 52px);
  margin-top: clamp(44px, 6vw, 68px);
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.hero__stat b {
  display: block;
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1;
}
.hero__stat span {
  display: block;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* 3D sahne kabı */
.stage {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 510px;
  margin-inline: auto;
}
.stage__glow {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(204, 123, 29, .34) 0%, rgba(110, 91, 255, .13) 42%, transparent 68%);
  filter: blur(46px);
  animation: breathe 7s ease-in-out infinite;
}
@keyframes breathe { 0%, 100% { transform: scale(1); opacity: .85; } 50% { transform: scale(1.09); opacity: 1; } }
.stage__ring {
  position: absolute;
  inset: 4%;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.stage__ring::after {
  content: '';
  position: absolute;
  inset: 11%;
  border: 1px dashed rgba(255, 255, 255, .07);
  border-radius: 50%;
  animation: spin 44s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.stage__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.stage__fallback {
  position: absolute;
  inset: 14%;
  display: grid;
  place-items: center;
}
.stage__fallback svg { width: 100%; height: 100%; filter: drop-shadow(0 20px 48px rgba(204, 123, 29, .3)); }
.stage.is-live .stage__fallback { display: none; }

/* Teknoloji şeridi */
.marquee {
  position: relative;
  overflow: hidden;
  padding-block: 26px;
  border-block: 1px solid var(--line);
  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; width: max-content; animation: slide 42s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.marquee__row { display: flex; align-items: center; }
.marquee__item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-inline: clamp(24px, 3.4vw, 46px);
  font-family: var(--mono);
  font-size: .84rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
  white-space: nowrap;
  transition: color .3s;
}
.marquee__item:hover { color: var(--copper-lt); }
.marquee__item::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--copper);
  opacity: .7;
  flex: none;
}

/* ---------- 9. Kartlar --------------------------------------------------- */
.card {
  position: relative;
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--grad-panel);
  overflow: hidden;
  transition: border-color .45s var(--ease), transform .45s var(--ease), background-color .45s;
}
.card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  opacity: 0;
  transition: opacity .45s;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 0%), rgba(204, 123, 29, .16), transparent 62%);
  pointer-events: none;
}
.card:hover { border-color: rgba(204, 123, 29, .34); transform: translateY(-5px); }
.card:hover::before { opacity: 1; }
.card > * { position: relative; }

.card__ico {
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(150deg, rgba(204, 123, 29, .18), rgba(204, 123, 29, .04));
  border: 1px solid rgba(204, 123, 29, .26);
  color: var(--copper-lt);
  margin-bottom: 24px;
  transition: transform .45s var(--ease), box-shadow .45s;
}
.card__ico svg { width: 24px; height: 24px; }
.card:hover .card__ico { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(204, 123, 29, .22); }
.card h3 { margin-bottom: 12px; }
.card p { font-size: .93rem; color: var(--ink-3); line-height: 1.72; }
.card__foot { margin-top: 26px; }

.card__num {
  position: absolute;
  top: 22px; right: 26px;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .1em;
  color: var(--ink-4);
}

/* Hizmet kartı — bento */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(16px, 1.8vw, 22px); }
.bento > * { grid-column: span 6; }
.bento > .is-wide { grid-column: span 12; }

.svc {
  display: flex;
  flex-direction: column;
  min-height: 290px;
}
.svc__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 26px; }
.tag {
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .02);
  transition: color .3s, border-color .3s;
}
.card:hover .tag { border-color: rgba(204, 123, 29, .2); }

/* Özellik satırı */
.feat {
  display: flex;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-soft);
}
.feat:last-child { border-bottom: 0; }
.feat__ico {
  width: 42px; height: 42px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  color: var(--copper-lt);
  background: rgba(255, 255, 255, .02);
}
.feat__ico svg { width: 19px; height: 19px; }
.feat h4 { font-size: 1.02rem; margin-bottom: 7px; font-weight: 500; }
.feat p { font-size: .9rem; color: var(--ink-3); }

/* Kontrol listesi */
.checks { display: grid; gap: 13px; }
.checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .93rem;
  color: var(--ink-2);
}
.checks li::before {
  content: '';
  width: 19px; height: 19px;
  flex: none;
  margin-top: 4px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f5b461' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat,
    rgba(204, 123, 29, .13);
  border: 1px solid rgba(204, 123, 29, .28);
}

/* ---------- 10. Süreç adımları ------------------------------------------ */
.steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.steps::before {
  content: '';
  position: absolute;
  top: 27px; left: 6%; right: 6%;
  height: 1px;
  background: var(--line);
}
.steps__fill {
  position: absolute;
  top: 27px; left: 6%;
  height: 1px;
  width: 0;
  background: var(--grad-copper);
  box-shadow: 0 0 12px var(--copper-glow);
  transition: width 1.4s var(--ease-out);
}
.step { position: relative; padding: 0 clamp(10px, 1.6vw, 22px); text-align: center; }
.step__dot {
  width: 54px; height: 54px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  font-family: var(--mono);
  font-size: .84rem;
  color: var(--ink-3);
  position: relative;
  z-index: 1;
  transition: border-color .5s, color .5s, box-shadow .5s, background-color .5s;
}
.step.is-on .step__dot {
  border-color: var(--copper);
  color: var(--copper-lt);
  background: rgba(204, 123, 29, .1);
  box-shadow: 0 0 0 6px rgba(204, 123, 29, .08), 0 0 28px var(--copper-glow);
}
.step h4 { font-size: 1.05rem; margin-bottom: 10px; font-weight: 500; }
.step p { font-size: .87rem; color: var(--ink-3); }

/* ---------- 11. İstatistik ---------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--grad-panel);
}
.stat {
  padding: clamp(30px, 3.6vw, 46px) clamp(20px, 2.4vw, 34px);
  border-right: 1px solid var(--line);
  text-align: center;
}
.stat:last-child { border-right: 0; }
.stat b {
  display: block;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.03em;
  background: var(--grad-copper);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span {
  display: block;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ---------- 12. Referans karuseli --------------------------------------- */
.quotes { position: relative; }
.quotes__viewport { overflow: hidden; }
.quotes__track { display: flex; transition: transform .7s var(--ease-out); }
.quote {
  flex: 0 0 100%;
  padding: clamp(30px, 4vw, 54px);
  text-align: center;
}
.quote__mark {
  font-size: 3.4rem;
  line-height: 1;
  color: var(--copper);
  opacity: .32;
  font-family: Georgia, serif;
  margin-bottom: 12px;
}
.quote p {
  font-size: clamp(1.05rem, 1.9vw, 1.42rem);
  color: #fff;
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: -.012em;
  max-width: 46ch;
  margin-inline: auto;
}
.quote__by {
  margin-top: 26px;
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--copper-lt);
}
.quote__by span { display: block; color: var(--ink-4); margin-top: 6px; letter-spacing: .1em; }
.quotes__dots { display: flex; justify-content: center; gap: 9px; margin-top: 18px; }
.quotes__dots button {
  width: 26px; height: 3px;
  border-radius: 3px;
  background: var(--line-strong);
  transition: background-color .35s, width .35s var(--ease);
}
.quotes__dots button.is-on { background: var(--copper); width: 42px; }

/* ---------- 13. SSS ------------------------------------------------------ */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 26px 4px;
  text-align: left;
  color: #fff;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  font-weight: 500;
  letter-spacing: -.01em;
  transition: color .3s;
}
.faq__q:hover { color: var(--copper-lt); }
.faq__sign {
  margin-left: auto;
  width: 32px; height: 32px;
  flex: none;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  position: relative;
  transition: border-color .35s, background-color .35s, transform .4s var(--ease);
}
.faq__sign::before, .faq__sign::after {
  content: '';
  position: absolute;
  inset: 50% 9px auto;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .4s var(--ease), opacity .3s;
}
.faq__sign::after { transform: rotate(90deg); }
.faq__item.is-open .faq__sign { border-color: var(--copper); background: rgba(204, 123, 29, .12); transform: rotate(180deg); }
.faq__item.is-open .faq__sign::after { opacity: 0; }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s var(--ease); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding: 0 60px 28px 4px; color: var(--ink-3); font-size: .95rem; max-width: 78ch; }

/* ---------- 14. Blog ----------------------------------------------------- */
.post { display: flex; flex-direction: column; height: 100%; }
.post__cover {
  aspect-ratio: 16 / 9;
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 22px;
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--line);
}
.post__cover svg { width: 100%; height: 100%; }
.post__meta {
  display: flex;
  gap: 14px;
  align-items: center;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 13px;
}
.post__meta em { color: var(--copper-lt); font-style: normal; }
.post h3 { font-size: 1.12rem; line-height: 1.35; margin-bottom: 11px; font-weight: 500; transition: color .3s; }
.post:hover h3 { color: var(--copper-lt); }
.post p { font-size: .9rem; color: var(--ink-3); }
.post .link-arrow { margin-top: auto; padding-top: 22px; }

/* Makale gövdesi */
.article { max-width: 760px; margin-inline: auto; }
.article > * + * { margin-top: 22px; }
.article h2 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); margin-top: 52px; }
.article h3 { font-size: clamp(1.1rem, 1.7vw, 1.28rem); margin-top: 38px; font-weight: 500; }
.article p { color: var(--ink-2); font-size: 1.02rem; line-height: 1.82; }
.article ul, .article ol { display: grid; gap: 11px; padding-left: 4px; }
.article ul li { display: flex; gap: 12px; color: var(--ink-2); font-size: 1rem; }
.article ul li::before { content: '—'; color: var(--copper); flex: none; }
.article ol { counter-reset: n; }
.article ol li { display: flex; gap: 14px; counter-increment: n; color: var(--ink-2); }
.article ol li::before {
  content: counter(n, decimal-leading-zero);
  font-family: var(--mono);
  font-size: .8rem;
  color: var(--copper-lt);
  flex: none;
  padding-top: 3px;
}
.article strong { color: #fff; font-weight: 500; }
.article a:not(.btn) { color: var(--copper-lt); text-decoration: underline; text-underline-offset: 3px; }
.article blockquote {
  border-left: 2px solid var(--copper);
  padding: 6px 0 6px 26px;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 300;
}
.article code {
  font-family: var(--mono);
  font-size: .84em;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line);
  padding: 2px 7px;
  border-radius: 6px;
  color: var(--copper-lt);
}
.article pre {
  background: #08081a;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px;
  overflow-x: auto;
  font-family: var(--mono);
  font-size: .82rem;
  line-height: 1.75;
  color: var(--ink-2);
}
.article pre code { background: none; border: 0; padding: 0; color: inherit; }
.article table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.article th, .article td { padding: 13px 16px; border: 1px solid var(--line); text-align: left; }
.article th { background: rgba(255, 255, 255, .035); color: #fff; font-weight: 500; }

.toc {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px 26px;
  background: var(--grad-panel);
}
.toc b { display: block; color: #fff; font-size: .9rem; margin-bottom: 14px; }
.toc a { display: block; padding: 6px 0; font-size: .9rem; color: var(--ink-3); transition: color .3s, padding-left .3s; }
.toc a:hover { color: var(--copper-lt); padding-left: 6px; }

/* ---------- 15. CTA bandı ------------------------------------------------ */
.cta {
  position: relative;
  border: 1px solid var(--line);
  border-radius: clamp(20px, 3vw, 32px);
  padding: clamp(44px, 6.5vw, 88px) clamp(26px, 5vw, 68px);
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
}
.cta::before {
  content: '';
  position: absolute;
  top: -55%; left: 50%;
  translate: -50% 0;
  width: 760px; height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204, 123, 29, .3) 0%, transparent 62%);
  filter: blur(70px);
  pointer-events: none;
}
.cta > * { position: relative; }
.cta p { margin: 20px auto 36px; max-width: 58ch; }
.cta__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ---------- 16. Sayfa başlığı (iç sayfalar) ----------------------------- */
.phero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(52px, 7vw, 92px));
  padding-bottom: clamp(40px, 5vw, 64px);
  overflow: hidden;
}
.phero__inner { max-width: 860px; position: relative; z-index: 1; }
.phero h1 { margin-bottom: 22px; }
.phero__orn {
  position: absolute;
  top: 8%;
  right: -60px;
  width: clamp(260px, 34vw, 460px);
  aspect-ratio: 1;
  pointer-events: none;
  opacity: .5;
}
.phero__orn svg { width: 100%; height: 100%; animation: floaty 11s ease-in-out infinite; }
@keyframes floaty { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-18px) rotate(4deg); } }

/* İç sayfa 3B sahnesi */
.phero__scene {
  position: absolute;
  top: 6%;
  right: clamp(-70px, -3vw, 0px);
  width: clamp(280px, 36vw, 470px);
  aspect-ratio: 1;
  pointer-events: none;
}
.phero__scene canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.phero__scene::before {
  content: '';
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 91, 255, .28) 0%, rgba(204, 123, 29, .14) 45%, transparent 70%);
  filter: blur(46px);
  animation: breathe 8s ease-in-out infinite;
}
.phero__scene .fallback { position: absolute; inset: 14%; opacity: .45; }
.phero__scene.is-live .fallback { display: none; }

/* Paket kartı */
.plan { display: flex; flex-direction: column; }
.plan.is-featured {
  border-color: rgba(204, 123, 29, .38);
  background: linear-gradient(180deg, rgba(204, 123, 29, .09), rgba(255, 255, 255, .012));
}
.plan__badge {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: #170c02;
  background: var(--grad-copper);
  padding: 5px 11px;
  border-radius: var(--r-pill);
}
.plan__price { margin: 22px 0 4px; }
.plan__price b {
  font-size: 1.55rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: -.02em;
}
.plan .checks { margin: 22px 0 30px; }
.plan .checks li { font-size: .89rem; }
.plan .btn { margin-top: auto; }

.crumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 24px;
}
.crumbs a:hover { color: var(--copper-lt); }
.crumbs span { opacity: .5; }

/* ---------- 17. Form ----------------------------------------------------- */
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 9px; }
.field label {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.field label span { color: var(--copper); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 15px 17px;
  background: rgba(255, 255, 255, .028);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: #fff;
  font-size: .95rem;
  transition: border-color .3s, background-color .3s, box-shadow .3s;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238b8b9c' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
  padding-right: 42px;
  cursor: pointer;
}
.field select option { background: #0c0c1e; color: #fff; }
.field textarea { resize: vertical; min-height: 132px; line-height: 1.65; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-4); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--copper);
  background: rgba(204, 123, 29, .05);
  box-shadow: 0 0 0 3px rgba(204, 123, 29, .1);
}
.field.has-error input, .field.has-error textarea, .field.has-error select { border-color: #e0653f; }
.field__err { font-size: .78rem; color: #ff8f6b; display: none; }
.field.has-error .field__err { display: block; }

.check-line { display: flex; gap: 12px; align-items: flex-start; font-size: .84rem; color: var(--ink-3); }
.check-line input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--copper); flex: none; }
.check-line a { color: var(--copper-lt); text-decoration: underline; text-underline-offset: 2px; }

.form__note {
  display: none;
  padding: 15px 18px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(204, 123, 29, .32);
  background: rgba(204, 123, 29, .08);
  color: var(--copper-lt);
  font-size: .88rem;
}
.form__note.is-on { display: block; }

/* İletişim bilgi bloğu */
.info-row { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line-soft); }
.info-row:last-child { border-bottom: 0; }
.info-row__ico {
  width: 40px; height: 40px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 11px;
  border: 1px solid var(--line);
  color: var(--copper-lt);
}
.info-row__ico svg { width: 18px; height: 18px; }
.info-row b { display: block; font-family: var(--mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 6px; font-weight: 400; }
.info-row a, .info-row p { color: #fff; font-size: .97rem; }
.info-row a:hover { color: var(--copper-lt); }

/* ---------- 18. Footer --------------------------------------------------- */
.footer {
  position: relative;
  border-top: 1px solid var(--line);
  padding-top: clamp(56px, 7vw, 88px);
  background: linear-gradient(180deg, transparent, rgba(29, 40, 63, .18));
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.25fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(44px, 5vw, 64px);
}
.footer__about p { font-size: .9rem; color: var(--ink-3); margin: 20px 0 24px; max-width: 34ch; }
.footer h5 {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-4);
  font-weight: 500;
  margin-bottom: 20px;
}
.footer__list { display: grid; gap: 12px; }
.footer__list a { font-size: .92rem; color: var(--ink-2); transition: color .3s, padding-left .3s; }
.footer__list a:hover { color: var(--copper-lt); padding-left: 5px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--ink-3);
  transition: color .3s, border-color .3s, background-color .3s, transform .3s var(--ease);
}
.socials a:hover { color: var(--copper-lt); border-color: var(--copper); background: rgba(204, 123, 29, .08); transform: translateY(-3px); }
.socials svg { width: 17px; height: 17px; }
.footer__bar {
  border-top: 1px solid var(--line);
  padding-block: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  align-items: center;
  font-size: .82rem;
  color: var(--ink-4);
}
.footer__bar nav { margin-left: auto; display: flex; flex-wrap: wrap; gap: 22px; }
.footer__bar a:hover { color: var(--copper-lt); }
.credit {
  color: var(--ink-2);
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  padding-bottom: 1px;
  transition: color .3s, border-color .3s;
}
.credit:hover { color: var(--copper-lt); border-bottom-color: var(--copper); }

/* ---------- 19. Çerez bandı --------------------------------------------- */
.cookie {
  position: fixed;
  left: 50%;
  bottom: 22px;
  translate: -50% 0;
  z-index: 110;
  width: min(940px, calc(100vw - 36px));
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  background: rgba(9, 9, 22, .95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  box-shadow: 0 26px 60px rgba(0, 0, 0, .55);
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  transition: opacity .5s var(--ease), transform .5s var(--ease), visibility .5s;
}
.cookie.is-on { opacity: 1; transform: none; visibility: visible; }
.cookie p { font-size: .84rem; color: var(--ink-3); }
.cookie p a { color: var(--copper-lt); text-decoration: underline; text-underline-offset: 2px; }
.cookie__actions { display: flex; gap: 10px; flex: none; }

/* ---------- 20. Yukarı çık ---------------------------------------------- */
.totop {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 90;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(9, 9, 22, .82);
  backdrop-filter: blur(10px);
  color: var(--ink-2);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .4s, transform .4s var(--ease), color .3s, border-color .3s;
}
.totop.is-on { opacity: 1; transform: none; pointer-events: auto; }
.totop:hover { color: var(--copper-lt); border-color: var(--copper); }
.totop svg { width: 17px; height: 17px; }

/* ---------- 21. Görünürlük animasyonu ----------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
  transition-delay: calc(var(--d, 0) * 80ms);
  will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal='fade'] { transform: none; }
[data-reveal='left'] { transform: translateX(-30px); }
[data-reveal='right'] { transform: translateX(30px); }
[data-reveal='zoom'] { transform: scale(.95); }

.split-line { display: block; overflow: hidden; }
.split-line > span {
  display: block;
  transform: translateY(105%);
  transition: transform 1s var(--ease-out);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.is-in .split-line > span, .split-line.is-in > span { transform: none; }

/* ---------- 22. Duyarlılık ---------------------------------------------- */
@media (max-width: 1080px) {
  .nav, .header__cta { display: none; }
  .burger { display: block; margin-left: auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__about { grid-column: span 2; }
}

@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { order: 1; }
  .stage { order: 0; max-width: 380px; margin-bottom: 12px; }
  .split { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .bento > * { grid-column: span 12; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .steps::before, .steps__fill { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .phero__orn { opacity: .22; right: -110px; }
  .phero__scene { top: -2%; right: -120px; width: clamp(240px, 56vw, 340px); opacity: .55; }
  .faq__a p { padding-right: 20px; }
}

@media (max-width: 620px) {
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .steps { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__about { grid-column: span 1; }
  .footer__bar nav { margin-left: 0; gap: 16px; }
  .cookie { flex-direction: column; align-items: stretch; text-align: left; }
  .cookie__actions { justify-content: stretch; }
  .cookie__actions .btn { flex: 1; }
  .hero__actions .btn { width: 100%; }
  .quote { padding-inline: 6px; }
  .article pre { font-size: .74rem; }
}

/* ---------- 23. Hareket azaltma ----------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .split-line > span { transform: none !important; }
}

/* ---------- 24. Yazdırma ------------------------------------------------- */
@media print {
  .header, .footer, .cookie, .totop, .bg-fx, .stage, .scrollbar { display: none !important; }
  body { background: #fff; color: #000; }
  .page { padding-top: 0; }
  h1, h2, h3, h4 { color: #000; }
}
