/* ============================================================
   MEDYAZİRVE — "Zirve Işığı" Tasarım Sistemi
   Gece göğü zemin · şafak gradyanı (menekşe→macenta→amber)
   Motifler: sırt çizgisi (ridge), eş yükselti (contour), tanecik
   Tipografi: Bricolage Grotesque · Instrument Serif (italik aksan)
              Figtree (gövde) · JetBrains Mono (veri)
   ============================================================ */

/* ---------- 1 · TOKENLAR ---------- */
:root {
  /* zemin & yüzey — derin ama NET: sis yok, katmanlar belirgin ayrışır */
  --bg:        oklch(12% 0.016 285);
  --bg-deep:   oklch(9.5% 0.014 285);
  --surface:   oklch(16.5% 0.018 285);
  --surface-2: oklch(20.5% 0.02 285);
  --line:      oklch(42% 0.02 285 / .5);
  --line-soft: oklch(42% 0.02 285 / .28);

  /* mürekkep — okunaklılık öncelik */
  --ink:   oklch(97.5% 0.004 90);
  --ink-2: oklch(81% 0.012 285);
  --ink-3: oklch(64% 0.014 285);

  /* marka renk hikâyesi */
  --brand:   oklch(66% 0.21 297);   /* menekşe — etkileşim */
  --brand-2: oklch(71% 0.2 345);    /* macenta — geçiş */
  --peak:    oklch(82% 0.155 78);   /* amber şafak — aksiyon & para */
  --peak-2:  oklch(73% 0.17 48);    /* derin turuncu */
  --frost:   oklch(83% 0.11 200);   /* buzul — veri & Pass */
  --ok:      oklch(78% 0.16 155);
  --warn:    oklch(82% 0.14 85);
  --err:     oklch(67% 0.19 25);

  --grad-dawn: linear-gradient(120deg, var(--brand) 0%, var(--brand-2) 46%, var(--peak) 100%);
  --grad-peak: linear-gradient(100deg, var(--peak-2), var(--peak));

  /* tipografi — başlıkta karakter (Schibsted), gövdede keskin okunaklılık (Geist) */
  --font-display: "Schibsted Grotesk", "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --fs-hero: clamp(2.9rem, 6.4vw, 5.4rem);
  --fs-h2: clamp(2rem, 4.3vw, 3.4rem);
  --fs-h3: clamp(1.3rem, 2vw, 1.6rem);

  /* ritim */
  --container: 1200px;
  --gutter: clamp(1.1rem, 4vw, 2rem);
  --sec-y: clamp(4.5rem, 9vw, 7.5rem);
  --r-lg: 20px; --r-md: 14px; --r-sm: 10px;

  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --shadow-1: 0 8px 30px oklch(8% .02 295 / .45);
  --shadow-2: 0 20px 60px -12px oklch(6% .02 295 / .65);

  color-scheme: dark;
}

[data-theme="light"] {
  --bg:        oklch(98.4% 0.003 95);
  --bg-deep:   oklch(95.5% 0.005 95);
  --surface:   oklch(100% 0 0);
  --surface-2: oklch(96.5% 0.004 95);
  --line:      oklch(86% 0.008 285);
  --line-soft: oklch(91% 0.006 285);
  --ink:   oklch(21% 0.02 285);
  --ink-2: oklch(43% 0.018 285);
  --ink-3: oklch(58% 0.015 285);
  --brand:   oklch(53% 0.23 297);
  --brand-2: oklch(59% 0.21 345);
  --peak:    oklch(66% 0.16 68);
  --peak-2:  oklch(61% 0.17 45);
  --frost:   oklch(54% 0.11 215);
  --shadow-1: 0 8px 30px oklch(60% .02 285 / .14);
  --shadow-2: 0 20px 60px -12px oklch(55% .03 285 / .2);
  color-scheme: light;
}

/* ---------- 2 · SIFIRLAMA & TEMEL ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* tanecik dokusu — tüm sahnenin üstünde, tıklamayı engellemez */
body::after {
  content: "";
  position: fixed; inset: 0;
  z-index: 2147483000;
  pointer-events: none;
  opacity: .028;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
[data-theme="light"] body::after { opacity: .035; }

img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: oklch(63% .23 300 / .4); }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.032em;
  text-wrap: balance;
}

/* İçerik-önce kuralı: hiçbir öğe CSS'te gizli BAŞLAMAZ.
   Giriş animasyonları başlangıç halini GSAP tween'i başlarken kendisi kurar;
   JS gecikse ya da hiç çalışmasa sayfa daima eksiksiz görünür. */

/* ---------- 3 · TİPOGRAFİ YARDIMCILARI ---------- */
.display { font-size: var(--fs-hero); font-weight: 800; letter-spacing: -0.038em; }
.h2 { font-size: var(--fs-h2); font-weight: 750; letter-spacing: -0.032em; }
.h3 { font-size: var(--fs-h3); font-weight: 680; letter-spacing: -0.02em; }

/* imza dokunuş: başlık içinde italik serif aksan kelime */
.accent-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  background: var(--grad-dawn);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  padding-inline: .04em;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-mono);
  font-size: .76rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: oklch(84% .07 300);
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px;
  background: var(--grad-dawn);
}

.lead { font-size: clamp(1.08rem, 1.5vw, 1.25rem); line-height: 1.65; color: var(--ink-2); max-width: 60ch; font-weight: 450; }
.mono { font-family: var(--font-mono); }
.muted { color: var(--ink-2); }
.tiny { font-size: .82rem; }

.sec-head { max-width: 720px; margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.sec-head .h2 { margin: .65rem 0 .8rem; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head.split { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.sec-head.split > div { max-width: 640px; }

/* ---------- 4 · YERLEŞİM ---------- */
.container { width: min(var(--container), 100% - var(--gutter) * 2); margin-inline: auto; }
.container.wide { --container: 1320px; }
.section { padding-block: var(--sec-y); position: relative; }
.section.tight { padding-block: calc(var(--sec-y) * .6); }

.grid { display: grid; gap: 1.4rem; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1023px) { .cols-4 { grid-template-columns: repeat(2, 1fr); } .cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px) { .cols-4, .cols-3, .cols-2 { grid-template-columns: 1fr; } }

/* ---------- 5 · YÜZEY & EFEKTLER ---------- */
.glass {
  background: color-mix(in oklab, var(--surface) 74%, transparent);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 oklch(100% 0 0 / .05);
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: inset 0 1px 0 oklch(100% 0 0 / .04);
}

/* gradyan çerçeve (1px şafak kenarı) */
.g-border { position: relative; border: 1px solid transparent !important; background-clip: padding-box; }
.g-border::before {
  content: ""; position: absolute; inset: -1px;
  border-radius: inherit; padding: 1px;
  background: var(--grad-dawn);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
  opacity: .8;
}

/* ufuktan sızan tek ışık */
.horizon { position: relative; }
.horizon::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(58% 42% at 50% 112%, oklch(80% .15 75 / .13), transparent 70%),
              radial-gradient(70% 50% at 50% 118%, oklch(63% .23 300 / .12), transparent 72%);
}
.horizon.top::before {
  background: radial-gradient(58% 42% at 50% -14%, oklch(63% .23 300 / .16), transparent 70%),
              radial-gradient(46% 34% at 72% -10%, oklch(70% .21 345 / .1), transparent 72%);
}

/* eş yükselti deseni */
.contours { position: relative; }
.contours::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='560' height='560' viewBox='0 0 560 560' fill='none'%3E%3Cg stroke='%23ffffff' stroke-opacity='.05'%3E%3Cellipse cx='280' cy='300' rx='90' ry='60'/%3E%3Cellipse cx='280' cy='300' rx='160' ry='110'/%3E%3Cellipse cx='280' cy='300' rx='230' ry='165'/%3E%3Cellipse cx='280' cy='300' rx='300' ry='225'/%3E%3Cellipse cx='280' cy='300' rx='370' ry='290'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 560px 560px;
  -webkit-mask-image: radial-gradient(72% 62% at 50% 42%, #000, transparent 78%);
  mask-image: radial-gradient(72% 62% at 50% 42%, #000, transparent 78%);
}
[data-theme="light"] .contours::after { filter: invert(1); opacity: .8; }

/* sırt çizgisi ayracı */
.ridge-divider { position: relative; height: 84px; margin-block: -42px; z-index: 1; pointer-events: none; }
.ridge-divider svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ---------- 6 · BUTONLAR ---------- */
.btn {
  --btn-h: 48px;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  height: var(--btn-h); padding-inline: 1.35rem;
  border-radius: 12px;
  font-weight: 600; font-size: .96rem; letter-spacing: -.005em;
  border: 1px solid var(--line);
  color: var(--ink);
  background: color-mix(in oklab, var(--surface) 80%, transparent);
  transition: transform .25s var(--ease-spring), background .2s, border-color .2s, box-shadow .25s, filter .2s;
  position: relative; overflow: hidden;
  white-space: nowrap;
  -webkit-user-select: none; user-select: none;
}
.btn:hover { background: var(--surface-2); border-color: oklch(45% .04 295 / .6); transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(.985); }
.btn.lg { --btn-h: 56px; padding-inline: 1.8rem; font-size: 1.02rem; border-radius: 14px; }
.btn.sm { --btn-h: 38px; padding-inline: .95rem; font-size: .85rem; border-radius: 10px; }
.btn.icon { padding-inline: 0; width: var(--btn-h); }
.btn.block { width: 100%; }

.btn-brand {
  background: var(--brand); border-color: transparent; color: oklch(98% .01 300);
  box-shadow: 0 6px 22px -6px oklch(63% .23 300 / .55);
}
.btn-brand:hover { background: oklch(67% .23 300); box-shadow: 0 10px 30px -6px oklch(63% .23 300 / .7); }

.btn-peak {
  background: var(--grad-peak); border-color: transparent;
  color: oklch(17% .05 60); font-weight: 750;
  box-shadow: 0 6px 24px -6px oklch(75% .16 60 / .5);
}
.btn-peak:hover {
  /* .btn:hover'ın koyu zemin kuralını ez — gradyan ve okunaklılık korunur */
  background: var(--grad-peak);
  border-color: transparent;
  color: oklch(17% .05 60);
  filter: brightness(1.08);
  box-shadow: 0 12px 34px -8px oklch(75% .16 60 / .65);
}

/* ışık süpürmesi */
.btn-peak::after, .btn-brand::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -70%; width: 45%;
  background: linear-gradient(100deg, transparent, oklch(100% 0 0 / .38), transparent);
  transform: skewX(-18deg);
  transition: left .6s var(--ease-out);
}
.btn-peak:hover::after, .btn-brand:hover::after { left: 125%; }

.btn-ghost { background: transparent; }
.btn-danger { border-color: oklch(65% .2 25 / .5); color: oklch(78% .12 25); }
.btn-danger:hover { background: oklch(65% .2 25 / .12); }

/* ---------- 7 · ROZET & ÇİP ---------- */
.chip {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .28rem .75rem; border-radius: 999px;
  font-size: .76rem; font-weight: 600; letter-spacing: .02em;
  border: 1px solid var(--line);
  background: color-mix(in oklab, var(--surface-2) 70%, transparent);
  color: var(--ink-2);
}
.chip.mono { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em; }
.chip-peak { border-color: oklch(80% .15 75 / .4); color: var(--peak); background: oklch(80% .15 75 / .1); }
.chip-brand { border-color: oklch(63% .23 300 / .4); color: oklch(78% .14 300); background: oklch(63% .23 300 / .12); }
.chip-frost { border-color: oklch(82% .12 195 / .4); color: var(--frost); background: oklch(82% .12 195 / .1); }
.chip-ok { border-color: oklch(75% .17 155 / .4); color: var(--ok); background: oklch(75% .17 155 / .1); }
.chip-err { border-color: oklch(65% .2 25 / .4); color: oklch(78% .12 25); background: oklch(65% .2 25 / .1); }

.availability { display: inline-flex; align-items: center; gap: .45rem; font-size: .85rem; color: var(--ink-2); }
.availability::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 12px var(--ok); }

/* ---------- 8 · ÜST NAVİGASYON ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background .3s, border-color .3s, box-shadow .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-color: var(--line-soft);
}
.nav-inner {
  display: flex; align-items: center; gap: 1.5rem;
  height: 74px; transition: height .3s var(--ease-out);
}
.site-header.scrolled .nav-inner { height: 62px; }

.logo { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 800; font-size: 1.22rem; letter-spacing: -.02em; }
.logo svg { width: 30px; height: 30px; }
.logo b { background: var(--grad-dawn); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 800; }

.nav-links { display: flex; align-items: center; gap: .35rem; margin-inline: auto; }
.nav-links a {
  padding: .5rem .85rem; border-radius: 10px;
  font-size: .95rem; font-weight: 530; color: var(--ink-2);
  letter-spacing: -.01em;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--ink); background: oklch(100% 0 0 / .05); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active { position: relative; }
.nav-links a.active::after { content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .2rem; height: 2px; border-radius: 2px; background: var(--grad-dawn); }

.nav-actions { display: flex; align-items: center; gap: .5rem; margin-left: auto; }
.nav-icon-btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 11px;
  border: 1px solid transparent; color: var(--ink-2);
  transition: background .2s, color .2s, border-color .2s;
}
.nav-icon-btn:hover { background: oklch(100% 0 0 / .06); color: var(--ink); }
.cart-count {
  position: absolute; top: 2px; right: 0;
  min-width: 18px; height: 18px; padding-inline: 5px;
  border-radius: 999px;
  background: var(--grad-peak); color: oklch(17% .05 60);
  font-family: var(--font-mono); font-size: .66rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transform: scale(0); transition: transform .3s var(--ease-spring);
}
.cart-count.has { transform: scale(1); }
.cart-count.pop { animation: pop .45s var(--ease-spring); }
@keyframes pop { 40% { transform: scale(1.45); } 100% { transform: scale(1); } }

.nav-burger { display: none; }

/* mobil menü */
.mobile-menu {
  position: fixed; inset: 0; z-index: 950;
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a.mm-link {
  font-family: var(--font-display); font-size: clamp(1.8rem, 7vw, 2.6rem); font-weight: 700;
  padding: .45rem 0; color: var(--ink);
  display: flex; align-items: baseline; gap: 1rem;
  transform: translateY(24px); opacity: 0;
  transition: transform .5s var(--ease-out), opacity .5s;
}
.mobile-menu.open a.mm-link { transform: none; opacity: 1; }
.mobile-menu a.mm-link .idx { font-family: var(--font-mono); font-size: .8rem; color: var(--ink-3); }
.mm-footer { position: absolute; bottom: 2rem; left: var(--gutter); right: var(--gutter); display: flex; gap: .75rem; }
.mm-close { position: absolute; top: 1.1rem; right: var(--gutter); }

@media (max-width: 1023px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
}

/* ---------- 9 · HERO ---------- */
.hero {
  position: relative;
  min-height: min(94vh, 980px);
  display: flex; align-items: center;
  padding-top: 120px; padding-bottom: 90px;
  overflow: clip;
}
.hero-sky { position: absolute; inset: 0; z-index: -3; }
.hero-sky::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(52% 44% at 78% 4%, oklch(63% .23 300 / .2), transparent 68%),
    radial-gradient(40% 34% at 12% 16%, oklch(70% .21 345 / .1), transparent 70%),
    radial-gradient(64% 40% at 50% 106%, oklch(80% .15 75 / .16), transparent 70%),
    var(--bg);
}
/* nefes alan aurora */
.hero-aurora {
  position: absolute; inset: -20% -10%; z-index: -2; pointer-events: none;
  background:
    radial-gradient(34% 28% at 30% 32%, oklch(63% .23 300 / .17), transparent 70%),
    radial-gradient(30% 26% at 68% 24%, oklch(70% .21 345 / .13), transparent 70%),
    radial-gradient(26% 22% at 52% 60%, oklch(82% .12 195 / .07), transparent 70%);
  filter: blur(46px);
  animation: aurora 16s ease-in-out infinite alternate;
}
@keyframes aurora {
  0%   { transform: translate3d(-2%, 0, 0) scale(1); }
  50%  { transform: translate3d(2%, 3%, 0) scale(1.06); }
  100% { transform: translate3d(-1%, -2%, 0) scale(1.02); }
}
/* imleç feneri */
.hero-torch {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(340px circle at var(--tx, 70%) var(--ty, 40%), oklch(70% .18 320 / .1), transparent 72%);
}

.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
/* satır maskesi: başlık satırları perde arkasından yükselir */
.hl { display: block; overflow: clip; padding-block: .06em; margin-block: -.06em; }
.hl-in { display: inline-block; will-change: transform; }
.hero-copy .display { margin: 1.1rem 0 1.2rem; }
.hero-ctas { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.8rem; }
.hero-proof { display: flex; align-items: center; gap: 1.3rem; flex-wrap: wrap; margin-top: 2.1rem; color: var(--ink-2); font-size: .9rem; }
.hero-proof .stars { color: var(--peak); letter-spacing: .12em; }
.hero-proof .sep { width: 1px; height: 18px; background: var(--line); }

/* hero ürün yelpazesi */
.hero-stage { position: relative; min-height: 460px; perspective: 1200px; }
.hero-stage .float-card {
  position: absolute; width: min(300px, 72%);
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--surface); border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
  will-change: transform;
}
.hero-stage .float-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.hero-stage .fc-body { padding: .85rem 1rem 1rem; display: flex; justify-content: space-between; align-items: center; gap: .8rem; }
.hero-stage .fc-body b { font-size: .9rem; font-weight: 650; line-height: 1.25; }
.hero-stage .fc-price { font-family: var(--font-mono); color: var(--peak); font-weight: 600; font-size: .92rem; white-space: nowrap; }
.hero-stage .fc-1 { top: 4%; right: 4%; z-index: 3; transform: rotate(2.5deg); }
.hero-stage .fc-2 { top: 30%; left: 0; z-index: 2; transform: rotate(-4deg) scale(.92); opacity: .96; }
.hero-stage .fc-3 { bottom: 0; right: 12%; z-index: 1; transform: rotate(5deg) scale(.85); opacity: .85; }

/* hero alt sırt çizgisi */
.hero-ridge { position: absolute; left: 0; right: 0; bottom: -2px; z-index: 0; pointer-events: none; }
.hero-ridge svg { width: 100%; height: clamp(70px, 12vw, 150px); }
.hero-ridge .ridge-fill { fill: var(--bg-deep); }
.hero-ridge .ridge-stroke { stroke: url(#ridgeGrad); }

.scroll-hint {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .3em; color: var(--ink-3);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.scroll-hint::after { content: ""; width: 1px; height: 34px; background: linear-gradient(var(--ink-3), transparent); animation: drip 1.8s ease-in-out infinite; }
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

@media (max-width: 1023px) {
  .hero { min-height: 0; padding-top: 108px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stage { min-height: 380px; margin-top: 1rem; }
}
@media (max-width: 639px) {
  .hero-stage { min-height: 330px; }
  .hero-stage .fc-2 { display: none; }
  .hero-stage .fc-1 { right: 0; width: 78%; }
  .hero-stage .fc-3 { right: auto; left: 0; bottom: 2%; width: 62%; }
  .scroll-hint { display: none; }
}

/* ---------- 10 · MARQUEE ---------- */
.marquee-band { border-block: 1px solid var(--line-soft); background: color-mix(in oklab, var(--bg-deep) 65%, transparent); overflow: hidden; }
.marquee { display: flex; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; flex-shrink: 0; align-items: center; gap: 2.6rem; padding: 1.05rem 1.3rem; animation: marquee var(--mq-dur, 34s) linear infinite; }
.marquee.reverse .marquee-track { animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-100%); } }
.mq-item { display: inline-flex; align-items: center; gap: .7rem; font-family: var(--font-mono); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); white-space: nowrap; }
.mq-item .spark { color: var(--peak); font-size: .9rem; }

/* ---------- 11 · KATEGORİ BENTO ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 132px; gap: 1rem; }
.bento-cell {
  --hue: 300;
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 1.35rem;
  display: flex; flex-direction: column; justify-content: flex-end; gap: .3rem;
  transition: transform .35s var(--ease-out), border-color .3s, box-shadow .35s;
  isolation: isolate;
}
.bento-cell::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(90% 90% at 85% 110%, oklch(60% .2 var(--hue) / .22), transparent 70%);
  opacity: .65; transition: opacity .35s;
}
.bento-cell::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400' fill='none'%3E%3Cg stroke='%23ffffff' stroke-opacity='.07'%3E%3Cellipse cx='330' cy='330' rx='70' ry='48'/%3E%3Cellipse cx='330' cy='330' rx='130' ry='92'/%3E%3Cellipse cx='330' cy='330' rx='195' ry='140'/%3E%3Cellipse cx='330' cy='330' rx='260' ry='190'/%3E%3C/g%3E%3C/svg%3E");
  background-position: bottom right; background-repeat: no-repeat;
  opacity: 0; transition: opacity .4s;
}
.bento-cell:hover { transform: translateY(-4px); border-color: oklch(60% .18 var(--hue) / .5); box-shadow: 0 18px 44px -18px oklch(60% .2 var(--hue) / .4); }
.bento-cell:hover::before { opacity: 1; }
.bento-cell:hover::after { opacity: 1; }
.bento-cell.span-3x2 { grid-column: span 3; grid-row: span 2; }
.bento-cell.span-2 { grid-column: span 2; }
.bento-cell.span-3 { grid-column: span 3; }
.bento-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: oklch(60% .2 var(--hue) / .16);
  color: oklch(80% .14 var(--hue));
  margin-bottom: auto;
}
.bento-icon svg { width: 22px; height: 22px; }
.bento-cell h3 { font-size: 1.12rem; display: flex; align-items: center; gap: .5rem; }
.bento-cell h3 .arrow { transition: transform .3s var(--ease-out); color: oklch(80% .14 var(--hue)); }
.bento-cell:hover h3 .arrow { transform: translateX(5px); }
.bento-count { font-family: var(--font-mono); font-size: .74rem; color: var(--ink-3); letter-spacing: .1em; }
.bento-desc { font-size: .87rem; color: var(--ink-2); display: none; }
.bento-cell.span-3x2 .bento-desc { display: block; max-width: 40ch; }
.bento-cell.span-3x2 h3 { font-size: 1.45rem; }
@media (max-width: 1023px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .bento-cell.span-3x2 { grid-column: span 2; grid-row: span 1; }
  .bento-cell.span-2, .bento-cell.span-3 { grid-column: span 1; }
}
@media (max-width: 639px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-cell { min-height: 130px; }
  .bento-cell.span-3x2 { grid-column: span 1; }
}

/* ---------- 12 · ÜRÜN KARTI (vitrin okunaklılığı) ---------- */
.p-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(262px, 1fr)); gap: 1.3rem; }
.p-card {
  --mx: 50%; --my: 50%;
  position: relative;
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .3s var(--ease-out), border-color .3s, box-shadow .35s;
  transform-style: preserve-3d;
  isolation: isolate;
}
.p-card:hover { border-color: oklch(50% .1 300 / .55); box-shadow: var(--shadow-2); }
html.fine-pointer .p-card.tilt:hover { transform: perspective(900px) rotateX(var(--rx, 0)) rotateY(var(--ry, 0)) translateY(-4px); }
.p-card::after { /* imleci izleyen parlama */
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx) var(--my), oklch(100% 0 0 / .07), transparent 45%);
  opacity: 0; transition: opacity .3s;
}
.p-card:hover::after { opacity: 1; }

.p-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-deep); }
.p-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.p-card:hover .p-media img { transform: scale(1.045); }
.p-badges { position: absolute; top: .8rem; left: .8rem; right: .8rem; display: flex; justify-content: space-between; gap: .5rem; z-index: 2; }
.p-media .chip { -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); background: oklch(14% .02 295 / .6); }

.p-body { display: flex; flex-direction: column; gap: .5rem; padding: 1.05rem 1.15rem 1.2rem; flex: 1; }
.p-cat { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); }
.p-title { font-family: var(--font-display); font-size: 1.12rem; font-weight: 620; line-height: 1.32; letter-spacing: -.018em;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.64em; }
.p-card a.p-link::before { content: ""; position: absolute; inset: 0; z-index: 1; }
.p-rating { display: flex; align-items: center; gap: .45rem; font-size: .82rem; color: var(--ink-2); }
.p-rating .stars { color: var(--peak); letter-spacing: .1em; font-size: .8rem; }
.p-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: .6rem; padding-top: .55rem; }
.price-wrap { display: flex; flex-direction: column; line-height: 1.15; }
.price { font-family: var(--font-mono); font-weight: 600; font-size: 1.14rem; letter-spacing: -.02em; color: var(--peak); }
.price.free { color: var(--ok); }
.price-old { font-family: var(--font-mono); font-size: .78rem; color: var(--ink-3); text-decoration: line-through; }
.add-btn {
  position: relative; z-index: 2;
  width: 44px; height: 44px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); color: var(--ink-2);
  transition: all .25s var(--ease-spring);
}
.add-btn:hover { background: var(--grad-peak); color: oklch(17% .05 60); border-color: transparent; transform: scale(1.07); box-shadow: 0 8px 20px -6px oklch(75% .16 60 / .5); }
.add-btn svg { width: 19px; height: 19px; }
.add-btn.loading { pointer-events: none; opacity: .6; }

/* sekme filtresi */
.tab-pills { display: flex; gap: .4rem; flex-wrap: wrap; }
.tab-pill {
  padding: .5rem 1.05rem; border-radius: 999px; font-size: .88rem; font-weight: 600;
  color: var(--ink-2); border: 1px solid transparent;
  transition: all .2s;
}
.tab-pill:hover { color: var(--ink); background: oklch(100% 0 0 / .05); }
.tab-pill.active { color: var(--ink); border-color: var(--line); background: var(--surface-2); }

/* ---------- 13 · FİYAT KARTLARI (hizmet paketleri) ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; gap: 1.1rem; padding: 1.9rem 1.7rem; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line); transition: transform .3s var(--ease-out), box-shadow .3s; }
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); }
.price-card.featured { background: color-mix(in oklab, var(--surface) 88%, oklch(63% .23 300 / .35)); }
.price-card .pc-tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); }
.pc-name { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; }
.pc-price { font-family: var(--font-mono); font-size: 2.15rem; font-weight: 650; letter-spacing: -.03em; }
.pc-price small { font-size: .85rem; color: var(--ink-3); font-weight: 400; }
.pc-features { display: flex; flex-direction: column; gap: .6rem; padding: 0; margin: 0; list-style: none; font-size: .93rem; color: var(--ink-2); }
.pc-features li { display: flex; gap: .6rem; align-items: flex-start; }
.pc-features li::before { content: "✦"; color: var(--peak); font-size: .8rem; margin-top: .18em; }
.price-card .btn { margin-top: auto; }
@media (max-width: 1023px) { .pricing { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

/* ---------- 14 · ZİRVE PASS BANDI ---------- */
.pass-band {
  position: relative; overflow: hidden;
  border-radius: calc(var(--r-lg) + 6px);
  border: 1px solid oklch(82% .12 195 / .3);
  background:
    radial-gradient(70% 90% at 12% 0%, oklch(82% .12 195 / .13), transparent 60%),
    radial-gradient(60% 80% at 90% 110%, oklch(63% .23 300 / .16), transparent 65%),
    var(--surface);
  padding: clamp(1.8rem, 5vw, 3.2rem);
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: center;
}
.pass-band .infinity { font-family: var(--font-serif); font-style: italic; color: var(--frost); }
.pass-mini { display: flex; flex-direction: column; gap: .8rem; }
.pass-mini .row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .9rem 1.1rem; border-radius: var(--r-md); border: 1px solid var(--line); background: color-mix(in oklab, var(--bg) 55%, transparent); }
.pass-mini .row b { font-size: .95rem; }
.pass-mini .row .mono { color: var(--frost); font-weight: 600; }
@media (max-width: 1023px) { .pass-band { grid-template-columns: 1fr; } }

/* ---------- 14b · YOL SEÇİCİ (anasayfa yönlendirme kartları) ---------- */
.paths { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.path-card {
  --hue: 300;
  display: flex; align-items: center; gap: 1rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--surface);
  transition: transform .3s var(--ease-out), border-color .25s, box-shadow .3s;
}
.path-card:hover { transform: translateY(-3px); border-color: oklch(62% .18 var(--hue) / .6); box-shadow: 0 16px 40px -16px oklch(62% .2 var(--hue) / .35); }
.path-ico {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 13px;
  display: grid; place-items: center; font-size: 1.35rem;
  background: oklch(62% .2 var(--hue) / .15);
}
.path-body b { display: block; font-family: var(--font-display); font-size: 1.04rem; font-weight: 680; letter-spacing: -.015em; }
.path-body p { font-size: .86rem; color: var(--ink-2); margin-top: .15rem; line-height: 1.45; }
.path-arrow { margin-left: auto; color: oklch(75% .14 var(--hue)); font-size: 1.2rem; transition: transform .3s var(--ease-out); }
.path-card:hover .path-arrow { transform: translateX(5px); }
@media (max-width: 1023px) { .paths { grid-template-columns: 1fr; } }

/* ---------- 15 · ADIMLAR ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; counter-reset: step; position: relative; }
.step { position: relative; padding: 1.5rem 1.35rem; border-radius: var(--r-lg); border: 1px solid var(--line-soft); background: color-mix(in oklab, var(--surface) 55%, transparent); }
.step-idx { font-family: var(--font-mono); font-size: .78rem; color: var(--peak); letter-spacing: .18em; }
.step h3 { font-size: 1.06rem; margin: .55rem 0 .4rem; }
.step p { font-size: .9rem; color: var(--ink-2); }
.step::after { /* bağlantı çizgisi */
  content: ""; position: absolute; top: 2.15rem; right: -1.2rem; width: 1.2rem; height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
}
.step:last-child::after { display: none; }
@media (max-width: 1023px) { .steps { grid-template-columns: repeat(2, 1fr); } .step:nth-child(2)::after { display: none; } }
@media (max-width: 639px) { .steps { grid-template-columns: 1fr; } .step::after { display: none; } }

/* ---------- 16 · VİDEO / EĞİTİM VİTRİNİ ---------- */
.reel { display: grid; grid-auto-flow: column; grid-auto-columns: min(340px, 78vw); gap: 1.1rem; overflow-x: auto; padding-bottom: 1rem; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--line) transparent; }
.reel::-webkit-scrollbar { height: 6px; }
.reel::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.reel-card { scroll-snap-align: start; position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: var(--surface); transition: transform .3s var(--ease-out), box-shadow .3s; }
.reel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.reel-media { position: relative; aspect-ratio: 16 / 9; background: var(--bg-deep); }
.reel-media img { width: 100%; height: 100%; object-fit: cover; }
.reel-play { position: absolute; inset: 0; display: grid; place-items: center; }
.reel-play span { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: oklch(14% .02 295 / .62); border: 1px solid oklch(100% 0 0 / .25); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); color: #fff; transition: transform .3s var(--ease-spring), background .2s; }
.reel-card:hover .reel-play span { transform: scale(1.12); background: var(--brand); }
.reel-dur { position: absolute; right: .7rem; bottom: .7rem; font-family: var(--font-mono); font-size: .7rem; background: oklch(10% .02 295 / .8); color: #fff; padding: .18rem .5rem; border-radius: 6px; }
.reel-body { padding: 1rem 1.1rem 1.15rem; display: flex; flex-direction: column; gap: .35rem; }
.reel-body b { font-size: .98rem; line-height: 1.35; }

/* ---------- 17 · SAYILAR ---------- */
.stats-band { position: relative; overflow: hidden; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stat-num { font-family: var(--font-mono); font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 650; letter-spacing: -.04em; background: var(--grad-dawn); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { font-size: .86rem; color: var(--ink-2); margin-top: .3rem; }
.stats-ridge-bg { position: absolute; inset: auto 0 0 0; height: 62%; z-index: -1; opacity: .35; pointer-events: none; }
@media (max-width: 767px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 1.8rem 1rem; } }

/* ---------- 18 · MÜŞTERİ SESLERİ ---------- */
.t-rows { display: flex; flex-direction: column; gap: 1rem; }
.t-card {
  width: 350px; flex-shrink: 0;
  padding: 1.25rem 1.35rem; border-radius: var(--r-lg);
  background: var(--surface); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: .7rem;
}
.t-card p { font-size: .92rem; color: var(--ink-2); line-height: 1.55; }
.t-who { display: flex; align-items: center; gap: .75rem; margin-top: auto; }
.t-ava { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: .85rem; color: #fff; background: linear-gradient(135deg, oklch(60% .2 var(--hue, 300)), oklch(45% .16 var(--hue, 300))); }
.t-who b { font-size: .88rem; display: block; line-height: 1.2; }
.t-who small { color: var(--ink-3); font-size: .76rem; }
.t-stars { color: var(--peak); font-size: .78rem; letter-spacing: .12em; }

/* ---------- 19 · SSS ---------- */
.faq { display: flex; flex-direction: column; gap: .7rem; max-width: 780px; margin-inline: auto; }
.faq details { border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface); overflow: clip; transition: border-color .25s; }
.faq details[open] { border-color: oklch(63% .23 300 / .4); }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.05rem 1.25rem; font-weight: 620; font-size: .98rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .fx { flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--ink-2); font-size: 1rem; transition: transform .3s var(--ease-out), background .2s, color .2s; }
.faq details[open] summary .fx { transform: rotate(45deg); background: var(--brand); border-color: transparent; color: #fff; }
.faq .faq-a { padding: 0 1.25rem 1.15rem; color: var(--ink-2); font-size: .93rem; }

/* ---------- 20 · FİNAL CTA ---------- */
.cta-final { position: relative; text-align: center; overflow: clip; }
.cta-final .display { font-size: clamp(2.3rem, 5.5vw, 4.2rem); }
.cta-final .lead { margin: 1.1rem auto 0; }
.cta-final .hero-ctas { justify-content: center; }

/* ---------- 21 · FOOTER ---------- */
.site-footer { position: relative; background: var(--bg-deep); border-top: 1px solid var(--line-soft); margin-top: var(--sec-y); }
.footer-ridge { position: absolute; top: -1px; left: 0; right: 0; transform: translateY(-99%); pointer-events: none; }
.footer-ridge svg { width: 100%; height: clamp(40px, 7vw, 80px); display: block; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2.5rem; padding-block: clamp(2.8rem, 6vw, 4.5rem) 2.2rem; }
.footer-brand p { color: var(--ink-2); font-size: .92rem; margin-top: .9rem; max-width: 34ch; }
.f-col h4 { font-size: .82rem; font-family: var(--font-mono); font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 1rem; }
.f-col a { display: block; padding: .3rem 0; color: var(--ink-2); font-size: .93rem; transition: color .2s, transform .2s; }
.f-col a:hover { color: var(--ink); transform: translateX(3px); }
.newsletter { display: flex; gap: .5rem; margin-top: 1.1rem; }
.newsletter input { flex: 1; min-width: 0; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-block: 1.4rem; border-top: 1px solid var(--line-soft); font-size: .82rem; color: var(--ink-3); }
.pay-badges { display: flex; gap: .5rem; align-items: center; }
.pay-badges .pb { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; border: 1px solid var(--line); border-radius: 7px; padding: .25rem .55rem; color: var(--ink-3); }
@media (max-width: 1023px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 639px) { .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; } }

/* ---------- 22 · FORMLAR ---------- */
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.05rem; }
.field > label { font-size: .84rem; font-weight: 600; color: var(--ink-2); }
.input, select.input, textarea.input {
  width: 100%; padding: .78rem .95rem;
  background: color-mix(in oklab, var(--bg-deep) 72%, transparent);
  border: 1px solid var(--line); border-radius: var(--r-sm);
  color: var(--ink); font-size: .95rem;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.input::placeholder { color: var(--ink-3); }
.input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px oklch(63% .23 300 / .22); background: var(--bg-deep); }
textarea.input { resize: vertical; min-height: 120px; }
select.input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .9rem center; padding-right: 2.4rem; }
.field-error { color: oklch(78% .12 25); font-size: .8rem; margin-top: .35rem; }
.checkline { display: flex; gap: .6rem; align-items: flex-start; font-size: .88rem; color: var(--ink-2); cursor: pointer; }
.checkline input { margin-top: .22em; accent-color: var(--brand); width: 16px; height: 16px; flex-shrink: 0; }
.checkline a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- 23 · FLASH / TOAST ---------- */
.toast-zone { position: fixed; top: 84px; right: 1.1rem; z-index: 1200; display: flex; flex-direction: column; gap: .6rem; width: min(380px, calc(100vw - 2.2rem)); }
.toast {
  display: flex; gap: .8rem; align-items: flex-start;
  padding: .95rem 1.05rem; border-radius: var(--r-md);
  background: color-mix(in oklab, var(--surface) 88%, transparent);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid var(--line); border-left: 3px solid var(--brand);
  box-shadow: var(--shadow-1);
  font-size: .9rem;
  animation: toast-in .45s var(--ease-spring);
}
.toast.success { border-left-color: var(--ok); }
.toast.error { border-left-color: var(--err); }
.toast.info { border-left-color: var(--frost); }
.toast .t-close { margin-left: auto; color: var(--ink-3); }
@keyframes toast-in { from { transform: translateX(30px); opacity: 0; } }
.toast.leaving { transition: all .3s; transform: translateX(30px); opacity: 0; }

/* ---------- 24 · SEPET ÇEKMECESİ ---------- */
.drawer-backdrop { position: fixed; inset: 0; z-index: 990; background: oklch(8% .02 295 / .6); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.drawer-backdrop.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1000;
  width: min(430px, 94vw);
  background: var(--bg);
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column;
  transform: translateX(103%);
  transition: transform .45s var(--ease-out);
  box-shadow: -30px 0 80px oklch(5% .02 295 / .5);
}
.cart-drawer.open { transform: none; }
.cd-head { display: flex; align-items: center; justify-content: space-between; padding: 1.15rem 1.3rem; border-bottom: 1px solid var(--line-soft); }
.cd-head b { font-family: var(--font-display); font-size: 1.08rem; }
.cd-items { flex: 1; overflow-y: auto; padding: 1rem 1.3rem; display: flex; flex-direction: column; gap: 1rem; }
.cd-item { display: grid; grid-template-columns: 72px 1fr auto; gap: .85rem; align-items: center; }
.cd-item img { width: 72px; aspect-ratio: 4/3; object-fit: cover; border-radius: 10px; border: 1px solid var(--line-soft); }
.cd-item .ci-title { font-size: .88rem; font-weight: 620; line-height: 1.3; }
.cd-item .ci-plan { font-size: .74rem; color: var(--ink-3); }
.cd-item .ci-price { font-family: var(--font-mono); font-size: .85rem; color: var(--peak); }
.ci-right { display: flex; flex-direction: column; align-items: flex-end; gap: .4rem; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 9px; overflow: hidden; }
.qty button { width: 28px; height: 28px; display: grid; place-items: center; color: var(--ink-2); transition: background .15s; }
.qty button:hover { background: var(--surface-2); color: var(--ink); }
.qty b { min-width: 30px; text-align: center; font-family: var(--font-mono); font-size: .82rem; font-weight: 500; }
.ci-remove { color: var(--ink-3); font-size: .74rem; transition: color .2s; }
.ci-remove:hover { color: oklch(78% .12 25); }
.cd-empty { margin: auto; text-align: center; color: var(--ink-2); display: flex; flex-direction: column; align-items: center; gap: .9rem; padding: 2rem; }
.cd-foot { border-top: 1px solid var(--line-soft); padding: 1.15rem 1.3rem 1.3rem; display: flex; flex-direction: column; gap: .8rem; }
.cd-total { display: flex; justify-content: space-between; align-items: baseline; }
.cd-total b { font-family: var(--font-mono); font-size: 1.2rem; color: var(--peak); }

/* ---------- 25 · BREADCRUMB / SAYFA BAŞLIĞI ---------- */
.page-head { padding: 128px 0 40px; }
.page-head.horizon.top { overflow: visible; }
.breadcrumb { display: flex; align-items: center; gap: .55rem; flex-wrap: wrap; font-size: .82rem; color: var(--ink-3); margin-bottom: 1rem; }
.breadcrumb a { color: var(--ink-2); transition: color .2s; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { opacity: .5; }

/* ---------- 26 · KATALOG ---------- */
.catalog-layout { display: grid; grid-template-columns: 258px 1fr; gap: 2.2rem; align-items: start; }
.filter-rail { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 1.4rem; }
.filter-group { border: 1px solid var(--line-soft); border-radius: var(--r-md); padding: 1.1rem 1.15rem; background: color-mix(in oklab, var(--surface) 50%, transparent); }
.filter-group h4 { font-size: .78rem; font-family: var(--font-mono); letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .8rem; font-weight: 500; }
.filter-link { display: flex; justify-content: space-between; align-items: center; padding: .38rem .5rem; margin-inline: -.5rem; border-radius: 8px; font-size: .9rem; color: var(--ink-2); transition: all .15s; }
.filter-link:hover { color: var(--ink); background: oklch(100% 0 0 / .04); }
.filter-link.active { color: var(--ink); background: oklch(63% .23 300 / .14); }
.filter-link .cnt { font-family: var(--font-mono); font-size: .7rem; color: var(--ink-3); }
.catalog-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.catalog-top .found { font-size: .9rem; color: var(--ink-2); }
.catalog-top .found b { color: var(--ink); }
.sort-select { width: auto; padding-block: .55rem; font-size: .88rem; }
@media (max-width: 1023px) { .catalog-layout { grid-template-columns: 1fr; } .filter-rail { position: static; flex-direction: row; flex-wrap: wrap; } .filter-group { flex: 1 1 240px; } }

/* boş durum */
.empty-state { text-align: center; padding: 4rem 1rem; color: var(--ink-2); display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.empty-state svg { opacity: .5; }

/* pager */
.pager { display: flex; gap: .4rem; justify-content: center; margin-top: 2.4rem; flex-wrap: wrap; }
.pager-btn { min-width: 40px; height: 40px; padding-inline: .6rem; display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; border: 1px solid var(--line); font-family: var(--font-mono); font-size: .85rem; color: var(--ink-2); transition: all .2s; }
a.pager-btn:hover { color: var(--ink); border-color: var(--brand); }
.pager-btn.is-active { background: var(--brand); border-color: transparent; color: #fff; }
.pager-dots { align-self: center; color: var(--ink-3); }

/* ---------- 27 · ÜRÜN DETAY ---------- */
.product-layout { display: grid; grid-template-columns: minmax(0, 1fr) 400px; gap: 2.4rem; align-items: start; }
.pd-media { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: var(--bg-deep); }
.pd-media .main-visual { aspect-ratio: 16 / 10; width: 100%; object-fit: cover; }
.pd-media iframe { aspect-ratio: 16 / 9; width: 100%; border: 0; }
.pd-thumbs { display: flex; gap: .6rem; margin-top: .7rem; overflow-x: auto; padding-bottom: .3rem; }
.pd-thumbs button { flex-shrink: 0; width: 92px; border-radius: 10px; overflow: hidden; border: 2px solid transparent; transition: border-color .2s; padding: 0; }
.pd-thumbs button.active { border-color: var(--brand); }
.pd-thumbs img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.pd-thumbs .vthumb { position: relative; }
.pd-thumbs .vthumb::after { content: "▶"; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: .9rem; background: oklch(10% .02 295 / .45); }

/* satın alma kutusu */
.buy-box { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 1.05rem; padding: 1.5rem 1.45rem; border-radius: var(--r-lg); }
.buy-box .bb-meta { display: flex; gap: .45rem; flex-wrap: wrap; }
.plan-picker { display: flex; flex-direction: column; gap: .55rem; }
.plan-opt { position: relative; display: block; cursor: pointer; }
.plan-opt input { position: absolute; opacity: 0; }
.plan-opt .po-card { display: flex; align-items: center; justify-content: space-between; gap: .8rem; padding: .85rem 1rem; border: 1px solid var(--line); border-radius: var(--r-sm); transition: all .2s; }
.plan-opt .po-name { font-size: .92rem; font-weight: 620; display: flex; align-items: center; gap: .5rem; }
.plan-opt .po-sub { font-size: .74rem; color: var(--ink-3); }
.plan-opt .po-price { font-family: var(--font-mono); font-size: .95rem; color: var(--peak); font-weight: 600; white-space: nowrap; }
.plan-opt input:checked + .po-card { border-color: var(--brand); background: oklch(63% .23 300 / .1); box-shadow: 0 0 0 1px var(--brand); }
.plan-opt:hover .po-card { border-color: oklch(50% .1 300 / .6); }

.bb-price-row { display: flex; align-items: baseline; gap: .7rem; flex-wrap: wrap; }
.bb-price { font-family: var(--font-mono); font-size: 2rem; font-weight: 650; letter-spacing: -.03em; color: var(--peak); }
.bb-old { font-family: var(--font-mono); color: var(--ink-3); text-decoration: line-through; }
.bb-save { font-size: .76rem; }
.bb-actions { display: flex; flex-direction: column; gap: .6rem; }
.bb-trust { display: flex; flex-direction: column; gap: .45rem; font-size: .84rem; color: var(--ink-2); border-top: 1px solid var(--line-soft); padding-top: 1rem; }
.bb-trust span { display: flex; gap: .55rem; align-items: center; }
.bb-trust svg { width: 15px; height: 15px; color: var(--ok); flex-shrink: 0; }
.bb-pass-hint { display: flex; gap: .6rem; align-items: center; padding: .75rem .9rem; border-radius: var(--r-sm); border: 1px dashed oklch(82% .12 195 / .45); background: oklch(82% .12 195 / .07); font-size: .84rem; color: var(--frost); }

/* sekmeler */
.pd-tabs { margin-top: 2.6rem; }
.tab-bar { display: flex; gap: .3rem; border-bottom: 1px solid var(--line); overflow-x: auto; }
.tab-btn { padding: .8rem 1.15rem; font-size: .93rem; font-weight: 600; color: var(--ink-2); border-bottom: 2px solid transparent; margin-bottom: -1px; white-space: nowrap; transition: color .2s; }
.tab-btn:hover { color: var(--ink); }
.tab-btn.active { color: var(--ink); border-color: var(--brand); }
.tab-panel { padding-top: 1.7rem; display: none; }
.tab-panel.active { display: block; }

/* zengin içerik */
.rich { color: var(--ink-2); font-size: .98rem; max-width: 74ch; }
.rich h2, .rich h3 { color: var(--ink); margin: 1.6em 0 .55em; }
.rich h2 { font-size: 1.45rem; } .rich h3 { font-size: 1.15rem; }
.rich p { margin: .8em 0; }
.rich ul, .rich ol { margin: .8em 0; padding-left: 1.3em; display: flex; flex-direction: column; gap: .35em; }
.rich li::marker { color: var(--peak); }
.rich strong { color: var(--ink); }
.rich a { color: oklch(76% .15 300); text-decoration: underline; text-underline-offset: 3px; }
.rich img { border-radius: var(--r-md); border: 1px solid var(--line); margin: 1.2em 0; }
.rich blockquote { border-left: 3px solid var(--brand); padding: .4em 0 .4em 1.1em; margin: 1.1em 0; font-style: italic; }
.rich iframe { width: 100%; aspect-ratio: 16/9; border-radius: var(--r-md); border: 1px solid var(--line); margin: 1.2em 0; }

/* müfredat */
.curriculum { display: flex; flex-direction: column; gap: .5rem; }
.cur-item { display: flex; align-items: center; gap: .9rem; padding: .8rem 1rem; border: 1px solid var(--line-soft); border-radius: var(--r-sm); background: color-mix(in oklab, var(--surface) 55%, transparent); transition: border-color .2s, background .2s; }
.cur-item.playable { cursor: pointer; }
.cur-item.playable:hover { border-color: var(--brand); background: oklch(63% .23 300 / .08); }
.cur-icon { width: 34px; height: 34px; flex-shrink: 0; border-radius: 9px; display: grid; place-items: center; background: var(--surface-2); color: var(--ink-2); font-size: .8rem; }
.cur-item.playable .cur-icon { background: oklch(63% .23 300 / .18); color: oklch(80% .13 300); }
.cur-title { font-size: .92rem; font-weight: 570; flex: 1; }
.cur-meta { font-family: var(--font-mono); font-size: .74rem; color: var(--ink-3); display: flex; gap: .8rem; align-items: center; }

/* yorumlar */
.review-summary { display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; margin-bottom: 1.6rem; }
.rs-score { text-align: center; }
.rs-score .num { font-family: var(--font-mono); font-size: 3rem; font-weight: 650; line-height: 1; }
.rs-bars { flex: 1; min-width: 220px; display: flex; flex-direction: column; gap: .35rem; }
.rs-bar { display: grid; grid-template-columns: 14px 1fr 34px; gap: .6rem; align-items: center; font-family: var(--font-mono); font-size: .74rem; color: var(--ink-3); }
.rs-bar .track { height: 6px; border-radius: 3px; background: var(--surface-2); overflow: hidden; }
.rs-bar .fill { height: 100%; border-radius: 3px; background: var(--grad-peak); }
.review-item { padding: 1.15rem 0; border-top: 1px solid var(--line-soft); display: flex; flex-direction: column; gap: .45rem; }
.review-item .r-head { display: flex; align-items: center; gap: .8rem; }
.review-item p { color: var(--ink-2); font-size: .93rem; }

/* ---------- 28 · SEPET & ÖDEME SAYFALARI ---------- */
.cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 2.2rem; align-items: start; }
.cart-table { display: flex; flex-direction: column; }
.cart-row { display: grid; grid-template-columns: 96px minmax(0,1fr) auto auto; gap: 1.1rem; align-items: center; padding: 1.15rem 0; border-bottom: 1px solid var(--line-soft); }
.cart-row img { width: 96px; aspect-ratio: 4/3; object-fit: cover; border-radius: 10px; border: 1px solid var(--line-soft); }
.cart-row .cr-title { font-weight: 620; font-size: .97rem; }
.cart-row .cr-plan { font-size: .78rem; color: var(--ink-3); margin-top: .15rem; }
.cart-row .cr-line { font-family: var(--font-mono); font-weight: 600; color: var(--peak); white-space: nowrap; }
.summary-card { position: sticky; top: 96px; padding: 1.5rem 1.45rem; display: flex; flex-direction: column; gap: .85rem; border-radius: var(--r-lg); }
.sum-row { display: flex; justify-content: space-between; font-size: .92rem; color: var(--ink-2); }
.sum-row.total { border-top: 1px solid var(--line-soft); padding-top: .85rem; color: var(--ink); font-weight: 650; }
.sum-row.total b { font-family: var(--font-mono); font-size: 1.3rem; color: var(--peak); }
.coupon-row { display: flex; gap: .5rem; }
.coupon-row .input { flex: 1; min-width: 0; text-transform: uppercase; font-family: var(--font-mono); font-size: .85rem; }
@media (max-width: 1023px) { .cart-layout, .product-layout { grid-template-columns: 1fr; } .buy-box, .summary-card { position: static; } }
@media (max-width: 639px) { .cart-row { grid-template-columns: 76px 1fr; } .cart-row .cr-line { grid-column: 2; justify-self: end; } .cart-row .qty { grid-column: 2; justify-self: start; } }

/* ödeme yöntemi kartları */
.pay-methods { display: flex; flex-direction: column; gap: .6rem; }
.pay-opt { position: relative; display: block; cursor: pointer; }
.pay-opt input { position: absolute; opacity: 0; }
.pay-opt .po-box { display: flex; gap: .95rem; align-items: flex-start; padding: 1.05rem 1.15rem; border: 1px solid var(--line); border-radius: var(--r-md); transition: all .2s; }
.pay-opt input:checked + .po-box { border-color: var(--brand); background: oklch(63% .23 300 / .09); box-shadow: 0 0 0 1px var(--brand); }
.pay-opt .po-ic { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: var(--surface-2); flex-shrink: 0; }
.pay-opt b { display: block; font-size: .95rem; }
.pay-opt small { color: var(--ink-2); font-size: .82rem; }

/* PayTR iframe sayfası */
.paytr-frame-wrap { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: #fff; min-height: 520px; }
.order-strip { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: 1rem 1.25rem; border-radius: var(--r-md); margin-bottom: 1.3rem; }
.order-strip .mono b { color: var(--peak); }

/* sonuç sayfası */
.result-hero { text-align: center; padding-block: 3rem 1rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.result-ic { width: 84px; height: 84px; border-radius: 50%; display: grid; place-items: center; }
.result-ic.ok { background: oklch(75% .17 155 / .14); color: var(--ok); box-shadow: 0 0 60px oklch(75% .17 155 / .3); }
.result-ic.wait { background: oklch(80% .15 85 / .14); color: var(--warn); }
.result-ic.fail { background: oklch(65% .2 25 / .14); color: oklch(78% .12 25); }
.dl-list { display: flex; flex-direction: column; gap: .6rem; max-width: 620px; margin: 1.5rem auto 0; text-align: left; }
.dl-item { display: flex; align-items: center; gap: 1rem; padding: .95rem 1.1rem; border-radius: var(--r-md); border: 1px solid var(--line); background: var(--surface); }
.dl-item .di-name { flex: 1; font-weight: 600; font-size: .93rem; }
.dl-item .di-meta { font-family: var(--font-mono); font-size: .72rem; color: var(--ink-3); }

/* ---------- 29 · KİMLİK SAYFALARI ---------- */
.auth-wrap { min-height: 100vh; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.auth-side { position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; padding: 2.6rem; background: var(--bg-deep); }
.auth-side .quote { font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 2.1rem); font-weight: 700; max-width: 18ch; line-height: 1.25; }
.auth-form-col { display: flex; align-items: center; justify-content: center; padding: 5.5rem var(--gutter) 3rem; }
.auth-card { width: min(420px, 100%); }
.auth-card h1 { font-size: 1.7rem; margin-bottom: .4rem; }
.auth-card .sub { color: var(--ink-2); font-size: .93rem; margin-bottom: 1.8rem; }
.auth-alt { text-align: center; font-size: .88rem; color: var(--ink-2); margin-top: 1.4rem; }
.auth-alt a { color: oklch(78% .14 300); font-weight: 600; }
@media (max-width: 1023px) { .auth-wrap { grid-template-columns: 1fr; } .auth-side { display: none; } }

/* ---------- 30 · HESAP ALANI ---------- */
.account-layout { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 2.2rem; align-items: start; }
.acc-nav { position: sticky; top: 96px; display: flex; flex-direction: column; gap: .25rem; }
.acc-link { display: flex; align-items: center; gap: .7rem; padding: .68rem .9rem; border-radius: 11px; font-size: .92rem; font-weight: 560; color: var(--ink-2); transition: all .18s; }
.acc-link svg { width: 17px; height: 17px; opacity: .8; }
.acc-link:hover { color: var(--ink); background: oklch(100% 0 0 / .05); }
.acc-link.active { color: var(--ink); background: oklch(63% .23 300 / .14); }
.acc-panel { min-width: 0; }
.acc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.6rem; }
.acc-stat { padding: 1.15rem 1.25rem; border-radius: var(--r-md); }
.acc-stat .num { font-family: var(--font-mono); font-size: 1.6rem; font-weight: 650; }
.acc-stat .lbl { font-size: .8rem; color: var(--ink-2); }
@media (max-width: 1023px) { .account-layout { grid-template-columns: 1fr; } .acc-nav { position: static; flex-direction: row; overflow-x: auto; padding-bottom: .4rem; } .acc-link { white-space: nowrap; } .acc-cards { grid-template-columns: 1fr; } }

/* liste tablosu (vitrin tarafı) */
.list-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.list-table th { text-align: left; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; color: var(--ink-3); padding: .7rem .9rem; border-bottom: 1px solid var(--line); }
.list-table td { padding: .95rem .9rem; border-bottom: 1px solid var(--line-soft); vertical-align: middle; }
.list-table tr:hover td { background: oklch(100% 0 0 / .025); }
.list-table .mono { font-size: .84rem; }
.table-scroll { overflow-x: auto; }

/* durum rozetleri */
.status { display: inline-flex; align-items: center; gap: .4rem; padding: .22rem .65rem; border-radius: 999px; font-size: .74rem; font-weight: 650; }
.status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.status.paid, .status.active, .status.approved, .status.completed, .status.sold { color: var(--ok); background: oklch(75% .17 155 / .12); }
.status.pending, .status.processing, .status.callback, .status.calling { color: var(--warn); background: oklch(80% .15 85 / .12); }
.status.failed, .status.cancelled, .status.refunded, .status.rejected, .status.banned, .status.suspended, .status.expired, .status.revoked { color: oklch(78% .12 25); background: oklch(65% .2 25 / .12); }
.status.new, .status.assigned { color: var(--frost); background: oklch(82% .12 195 / .12); }
.status.draft, .status.archived, .status.hidden, .status.no_answer, .status.invalid, .status.paused { color: var(--ink-3); background: oklch(50% .02 290 / .15); }

/* ---------- 31 · HATA SAYFALARI ---------- */
.error-page { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 1.1rem; padding: 8rem var(--gutter) 4rem; }
.error-code { font-family: var(--font-mono); font-size: clamp(4rem, 12vw, 8rem); font-weight: 650; letter-spacing: -.05em; background: var(--grad-dawn); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }

/* ---------- 32 · YARDIMCILAR ---------- */
.flex { display: flex; } .items-center { align-items: center; } .justify-between { justify-content: space-between; }
.gap-1 { gap: .5rem; } .gap-2 { gap: 1rem; } .wrap { flex-wrap: wrap; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.6rem; } .mt-4 { margin-top: 2.4rem; }
.mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.6rem; }
.text-center { text-align: center; }
.divider { height: 1px; background: var(--line-soft); border: 0; margin-block: 1.2rem; }
.hide-mobile { display: initial; } .only-mobile { display: none; }
@media (max-width: 767px) { .hide-mobile { display: none !important; } .only-mobile { display: initial; } }

/* ---------- 33 · HAREKET AZALTMA ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  html.js [data-reveal], html.js [data-reveal-child] > * { opacity: 1 !important; transform: none !important; filter: none !important; }
}

/* ---------- 34 · YAZDIRMA ---------- */
@media print {
  .site-header, .site-footer, .cart-drawer, .toast-zone, body::after { display: none !important; }
  body { background: #fff; color: #000; }
}
