/* ══════════════════════════════════════════════════════════════
   ADRACTIVE — SITE.CSS
   Tüm sayfalar bu dosyayı paylaşır.
   Renk/tipografi değişikliği için sadece :root bölümüne dokun.
   ══════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════
   BAŞLIK YAZI TİPİ — ALMARENA NEUE
   ──────────────────────────────────────────────────────────────
   Almarena Neue lisanslı bir yazı tipidir (almarenafoundry.com).
   Dosyaları buraya koyun:  assets/fonts/

   VARIABLE (önerilen — tek dosya, tüm kalınlıklar):
     assets/fonts/AlmarenaNeue-Variable.woff2

   STATİK kullanacaksanız aşağıdaki blokta yorumu kaldırıp
   variable bloğunu kapatın.

   Dosyalar yokken site Archivo ile çalışmaya devam eder,
   hiçbir yer bozulmaz — font gelince otomatik devreye girer.
   ══════════════════════════════════════════════════════════════ */
@font-face {
    font-family: "Almarena Neue";
    src:
        url("/fonts/AlmarenaNeue-Variable.woff2") format("woff2-variations"),
        url("/fonts/AlmarenaNeue-Variable.woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* ── STATİK SÜRÜM (variable satın almadıysanız) ──
@font-face{font-family:'Almarena Neue';src:url('/fonts/AlmarenaNeue-Light.woff2') format('woff2');
  font-weight:300;font-style:normal;font-display:swap}
@font-face{font-family:'Almarena Neue';src:url('/fonts/AlmarenaNeue-Regular.woff2') format('woff2');
  font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:'Almarena Neue';src:url('/fonts/AlmarenaNeue-Medium.woff2') format('woff2');
  font-weight:500;font-style:normal;font-display:swap}
@font-face{font-family:'Almarena Neue';src:url('/fonts/AlmarenaNeue-SemiBold.woff2') format('woff2');
  font-weight:600;font-style:normal;font-display:swap}
@font-face{font-family:'Almarena Neue';src:url('/fonts/AlmarenaNeue-Bold.woff2') format('woff2');
  font-weight:700;font-style:normal;font-display:swap}
@font-face{font-family:'Almarena Neue';src:url('/fonts/AlmarenaNeue-ExtraBold.woff2') format('woff2');
  font-weight:800;font-style:normal;font-display:swap}
─────────────────────────────────────────────────── */

:root {
    /* ── KURUMSAL RENKLER ── */
    --accent: #00b8c1; /* AdRactive turkuaz */
    --accent-deep: #00b8c1; /* açık zeminde metin için koyu turkuaz */
    --dark: #000000; /* AdRactive siyah */

    --bg: #f1f3f3;
    --bg-2: #e5eaea;
    --ink: #000000;
    --ink-60: rgba(0, 0, 0, 0.62);
    --ink-40: rgba(0, 0, 0, 0.55); /* WCAG AA: 4.68:1 */
    --ink-14: rgba(0, 0, 0, 0.13);
    --ink-08: rgba(0, 0, 0, 0.07);
    --paper: #ffffff;

    /* Başlıklar Almarena Neue; dosya yoksa Archivo'ya düşer. */
    --f-display:
        "Almarena Neue", "Archivo", "Helvetica Neue", Arial, sans-serif;
    --f-body: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;

    /* ── KÖŞE YUVARLAKLIĞI ── tek yerden değiştir */
    --r: clamp(16px, 1.8vw, 26px); /* video + proje alanları */
    --r-sm: clamp(10px, 1.1vw, 16px); /* küçük kutular */

    --pad: clamp(20px, 4.2vw, 72px);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-io: cubic-bezier(0.65, 0.05, 0.36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    -webkit-text-size-adjust: 100%;
}
body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--f-body);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overscroll-behavior: none;
}
body.is-locked {
    overflow: hidden;
}
img,
video,
canvas {
    display: block;
    max-width: 100%;
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    font: inherit;
    color: inherit;
    background: none;
    border: 0;
    cursor: pointer;
}
::selection {
    background: var(--accent);
    color: #000;
}

/* ── KLAVYE ODAĞI ── görünür olmak zorunda (WCAG 2.4.7) */
:focus {
    outline: none;
}
:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}
.dark-block :focus-visible,
.endcta :focus-visible,
footer :focus-visible,
#menu :focus-visible {
    outline-color: var(--accent);
}
.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 300;
    background: var(--dark);
    color: var(--paper);
    padding: 12px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    transform: translateY(-200%);
    transition: transform 0.3s var(--ease);
}
.skip-link:focus {
    transform: none;
}

/* ── SMOOTH SCROLL SHELL ─────────────────────────────────────── */
#viewport {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    will-change: transform;
    z-index: 2;
}
#sizer {
    width: 100%;
    pointer-events: none;
}
html.no-smooth #viewport {
    position: static;
    transform: none !important;
}
html.no-smooth #sizer {
    display: none;
}

/* ══════════ TİPOGRAFİ ══════════ */
.eyebrow {
    font-family: var(--f-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-40);
    display: flex;
    align-items: center;
    gap: 12px;
}
.eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--accent);
    flex: none;
}

.d1 {
    font-family: var(--f-display);
    font-weight: 600;
    font-stretch: 105%;
    font-size: clamp(2.6rem, 7.6vw, 4.4rem);
    line-height: 0.95;
    letter-spacing: -0.035em;
}
.d2 {
    font-family: var(--f-display);
    font-weight: 600;
    font-stretch: 100%;
    font-size: clamp(2.1rem, 5.2vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
}
.d3 {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: clamp(1.5rem, 2.7vw, 2.5rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
}
.lead {
    font-size: clamp(1.05rem, 1.5vw, 1.4rem);
    line-height: 1.5;
    letter-spacing: -0.012em;
}
.body {
    font-size: clamp(0.98rem, 1.05vw, 1.06rem);
    line-height: 1.66;
    color: var(--ink-60);
}
.ital {
    font-style: italic;
    font-weight: 400;
    font-stretch: 88%;
}
em.ac {
    font-style: italic;
    font-weight: 400;
    font-stretch: 82%;
    color: var(--accent-deep);
}

.wrap {
    padding-inline: var(--pad);
}
.sec {
    padding-block: clamp(88px, 13vw, 120px);
    position: relative;
}
.sec.tight {
    padding-block: clamp(56px, 8vw, 110px);
}

.sec.back-image {
    background-image: url("/images/Filigran-V2@300x.png");
    background-repeat: no-repeat;
    background-position: -30% center;
    background-size: contain;
    background-size: 50%;
}
/* ══════════ PRELOADER / PERDE ══════════ */
#pre {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: var(--dark);
    color: var(--paper);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: var(--pad);
    will-change: transform;
}
#pre .pre-mark {
    overflow: hidden;
    line-height: 0;
}
#pre .pre-mark span {
    display: block;
    transform: translateY(101%);
    transition: transform 1s var(--ease);
}
#pre .pre-mark img {
    width: clamp(190px, 26vw, 340px);
    height: auto;
}
#pre.go .pre-mark span {
    transform: none;
}
#pre .pre-num {
    font-family: var(--f-display);
    font-weight: 500;
    font-stretch: 88%;
    font-size: clamp(2.2rem, 7vw, 5.2rem);
    letter-spacing: -0.03em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    opacity: 0.55;
}
#pre .pre-bar {
    position: absolute;
    left: var(--pad);
    right: var(--pad);
    bottom: calc(var(--pad) + 92px);
    height: 1px;
    background: rgba(255, 255, 255, 0.18);
}
#pre .pre-bar i {
    display: block;
    height: 100%;
    width: 0%;
    background: var(--accent);
}
#pre.done {
    transform: translateY(-100%);
    transition: transform 1.05s var(--ease-io);
}
html.pre-done #pre {
    pointer-events: none;
}
/* iç sayfalarda sayaç yok, sadece perde */
body[data-page]:not([data-page="home"]) #pre .pre-num,
body[data-page]:not([data-page="home"]) #pre .pre-bar {
    display: none;
}

/* sayfa çıkış perdesi */
#leave {
    position: fixed;
    inset: 0;
    z-index: 205;
    background: var(--dark);
    transform: translateY(100%);
    pointer-events: none;
}
#leave.on {
    transform: none;
    transition: transform 0.62s var(--ease-io);
}

/* ══════════ CURSOR ══════════ */
#cur,
#curD {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 190;
    pointer-events: none;
    border-radius: 50%;
    mix-blend-mode: difference;
}
#cur {
    width: 38px;
    height: 38px;
    margin: -19px 0 0 -19px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    transition:
        width 0.35s var(--ease),
        height 0.35s var(--ease),
        margin 0.35s var(--ease),
        background-color 0.35s var(--ease),
        opacity 0.3s;
}
#curD {
    width: 5px;
    height: 5px;
    margin: -2.5px 0 0 -2.5px;
    background: #fff;
}
#cur .cur-lab {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dark);
    opacity: 0;
    transition: opacity 0.25s;
}
body.cur-hover #cur {
    width: 78px;
    height: 78px;
    margin: -39px 0 0 -39px;
    background: #fff;
}
body.cur-hover #curD {
    opacity: 0;
}
body.cur-hover #cur .cur-lab {
    opacity: 1;
}
body.cur-link #cur {
    width: 58px;
    height: 58px;
    margin: -29px 0 0 -29px;
    background: #fff;
}
body.cur-link #curD {
    opacity: 0;
}
@media (hover: none), (pointer: coarse) {
    #cur,
    #curD {
        display: none;
    }
}

/* ══════════ NAV ══════════ */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(13px, 1.4vw, 18px) var(--pad);
    color: var(--ink);
    transition:
        transform 0.6s var(--ease),
        opacity 0.4s,
        color 0.45s var(--ease),
        background-color 0.35s var(--ease),
        box-shadow 0.35s var(--ease);
}
#nav.on-dark {
    color: var(--paper);
}
#nav.hide {
    transform: translateY(-110%);
    opacity: 0;
}

/* Sayfanın tepesinde şeffaf — hero videosunun üstünü kapatmasın.
   Aşağı inildiğinde arkasına solid zemin gelir ki içerikle karışmasın. */
#nav.solid {
    background: var(--paper);
    box-shadow:
        0 1px 0 var(--ink-14),
        0 8px 28px -22px rgba(0, 0, 0, 0.45);
}
#nav.solid.on-dark {
    background: var(--dark);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.14);
}

.brand {
    display: flex;
    align-items: center;
}
.brand img {
    height: clamp(36px, 3.6vw, 45px);
    width: auto;
    transition: opacity 0.3s;
}
.brand .logo-light {
    display: none;
}
#nav.on-dark .logo-dark {
    display: none;
}
#nav.on-dark .logo-light {
    display: block;
}
.nav-r {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 30px);
}
.nav-links {
    display: flex;
    gap: clamp(14px, 1.8vw, 28px);
    font-size: 13px;
    font-weight: 500;
}
.nav-links a {
    position: relative;
    padding-block: 4px;
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ease);
}
.nav-links a:hover::after,
.nav-links a[aria-current]::after {
    transform: scaleX(1);
    transform-origin: left;
}
.nav-cta {
    border: 1px solid currentColor;
    border-radius: 100px;
    padding: 9px 18px;
    font-size: 12px;
    font-weight: 600;
    overflow: hidden;
    position: relative;
    opacity: 0.9;
    transition: opacity 0.4s;
}
.nav-cta:hover {
    opacity: 1;
}
.nav-cta span {
    position: relative;
    z-index: 1;
    transition: color 0.45s var(--ease);
}
.nav-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: translateY(101%);
    transition: transform 0.5s var(--ease);
}
.nav-cta:hover::before {
    transform: none;
}
.nav-cta:hover span {
    color: #000;
}
.burger {
    display: none;
    width: 34px;
    height: 14px;
    position: relative;
}
.burger i {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: currentColor;
}
.burger i:nth-child(1) {
    top: 0;
}
.burger i:nth-child(2) {
    bottom: 0;
    width: 62%;
}
@media (max-width: 1180px) {
    .nav-links {
        display: none;
    }
    .burger {
        display: block;
    }
}

#menu {
    position: fixed;
    inset: 0;
    z-index: 118;
    padding-top: clamp(96px, 13vh, 150px);
    background: var(--dark);
    color: var(--paper);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: var(--pad);
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.8s var(--ease);
    pointer-events: none;
}
#menu.open {
    clip-path: inset(0 0 0 0);
    pointer-events: auto;
}
#menu a {
    font-family: var(--f-display);
    font-weight: 600;
    font-stretch: 105%;
    font-size: clamp(1.7rem, 7.6vw, 3.2rem);
    letter-spacing: -0.035em;
    line-height: 1.12;
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.6s var(--ease),
        transform 0.6s var(--ease);
}
#menu.open a {
    opacity: 1;
    transform: none;
}
#menu.open a:nth-child(1) {
    transition-delay: 0.16s;
}
#menu.open a:nth-child(2) {
    transition-delay: 0.22s;
}
#menu.open a:nth-child(3) {
    transition-delay: 0.28s;
}
#menu.open a:nth-child(4) {
    transition-delay: 0.34s;
}
#menu.open a:nth-child(5) {
    transition-delay: 0.4s;
}
#menu.open a:nth-child(6) {
    transition-delay: 0.46s;
}
#menu.open a:nth-child(7) {
    transition-delay: 0.52s;
}
#menu.open a:nth-child(8) {
    transition-delay: 0.58s;
}
/* menü grup başlığı — "Ne Yapıyoruz?" */
#menu .menu-head {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin: clamp(16px, 2.4vw, 26px) 0 6px;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.6s var(--ease) 0.2s,
        transform 0.6s var(--ease) 0.2s;
}
#menu.open .menu-head {
    opacity: 1;
    transform: none;
}
#menu a.sub {
    font-size: clamp(1.05rem, 4vw, 1.55rem);
    font-weight: 500;
    font-stretch: 100%;
    letter-spacing: -0.02em;
    padding-left: clamp(14px, 3vw, 26px);
    position: relative;
    color: rgba(255, 255, 255, 0.72);
}
#menu a.sub::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 8px;
    height: 1px;
    background: var(--accent);
}
#menu a.sub:hover {
    color: #fff;
}

/* ══════════ REVEAL ══════════ */
.rv-line {
    display: block;
    overflow: hidden;
    line-height: normal;
}
.rv-line > i {
    display: block;
    font-style: inherit;
    transform: translateY(105%);
    transition: transform 1.05s var(--ease);
}
.rv.in .rv-line > i {
    transform: none;
}
.rv.in .rv-line:nth-child(2) > i {
    transition-delay: 0.07s;
}
.rv.in .rv-line:nth-child(3) > i {
    transition-delay: 0.14s;
}
.rv.in .rv-line:nth-child(4) > i {
    transition-delay: 0.21s;
}
.rv.in .rv-line:nth-child(5) > i {
    transition-delay: 0.28s;
}

.fade {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.9s var(--ease),
        transform 0.9s var(--ease);
}
.fade.in {
    opacity: 1;
    transform: none;
}
.fade.d1x {
    transition-delay: 0.09s;
}
.fade.d2x {
    transition-delay: 0.18s;
}
.fade.d3x {
    transition-delay: 0.27s;
}
.fade.d4x {
    transition-delay: 0.36s;
}

/* ══════════ HERO (anasayfa) ══════════ */
/* Blok tabana yapışmasın — metin kısaldığı için aşağıda nefes payı bırakıldı. */
#hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 var(--pad) clamp(46px, 7.5vh, 104px);
    overflow: hidden;
    background: #000;
    color: var(--paper);
}
#gl {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* ── HERO SLIDER — sessiz, otomatik, çapraz geçişli, sonsuz döngü ── */
#heroVideo {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #000;
}
#heroVideo .hs {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s var(--ease);
    transform: scale(1.04);
}
#heroVideo .hs.on {
    opacity: 1;
}

/* sıra göstergesi */
.hero-ticks {
    position: absolute;
    z-index: 3;
    right: var(--pad);
    bottom: clamp(28px, 4vw, 52px);
    display: flex;
    gap: 7px;
    align-items: center;
}
.hero-ticks i {
    display: block;
    width: clamp(22px, 3vw, 38px);
    height: 2px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.28);
    overflow: hidden;
    position: relative;
}
.hero-ticks i::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
}
.hero-ticks i.on::after {
    transform: scaleX(1);
    transition: transform var(--tick, 7s) linear;
}
.hero-ticks i.done::after {
    transform: scaleX(1);
}
@media (max-width: 900px) {
    .hero-ticks {
        bottom: auto;
        top: clamp(78px, 11vh, 120px);
    }
}
/* metnin okunması için perde — altta güçlü, üstte hafif */
#heroVideo::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.86) 0%,
        rgba(0, 0, 0, 0.62) 28%,
        rgba(0, 0, 0, 0.34) 58%,
        rgba(0, 0, 0, 0.46) 100%
    );
}

/* hero içeriği koyu zemine göre */
#hero .hero-tag {
    color: rgba(255, 255, 255, 0.68);
}
#hero .hero-tag b {
    color: #fff;
}
#hero h1 {
    color: #fff;
}
#hero h1 em.ac {
    color: var(--accent);
}
#hero .hero-foot .body {
    color: rgba(255, 255, 255, 0.78);
}
#hero .scroll-cue {
    color: rgba(255, 255, 255, 0.62);
}
#hero .scroll-cue .bar {
    background: rgba(255, 255, 255, 0.28);
}
#hero .hero-in {
    position: relative;
    z-index: 2;
    width: 100%;
}
#hero .hero-top {
    position: absolute;
    top: clamp(104px, 13vh, 158px);
    left: var(--pad);
    right: var(--pad);
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.hero-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-60);
    max-width: min(300px, 46vw);
    line-height: 1.7;
}
.hero-tag b {
    color: var(--ink);
    font-weight: 600;
}
/* Başlık iki uzun satır — 15ch kırardı. Metin yana yayıldığı için punto büyüdü. */
#hero h1 {
    max-width: 27ch;
    font-size: clamp(2rem, 5.9vw, 5.9rem);
}

.hero-foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-top: clamp(28px, 3.6vw, 52px);
    flex-wrap: wrap;
}
.hero-foot p {
    max-width: 44ch;
}

/* ── GİRİŞ METNİ — iki paragraf yan yana ──
   Alt alta dizilince başlığın altında 9 satırlık bir metin duvarı oluşuyor ve
   video kayboluyordu. Yan yana gelince dikey ayak izi yarıya iniyor, hem başlık
   büyüyebiliyor hem de blok tabandan yukarı kalkabiliyor. */
.hero-copy {
    max-width: min(96ch, 66vw);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 2.6vw, 44px);
    padding-top: clamp(15px, 1.7vw, 23px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
/* Sütun genişliği zaten ~48 karakter; p'ye ayrıca sınır koymak satır sayısını artırırdı. */
.hero-foot .hero-copy p {
    max-width: none;
    font-size: clamp(0.88rem, 0.92vw, 0.99rem);
    line-height: 1.62;
}
/* Ayraç boşluğun tam ortasında durur ki iki sütun eşit genişlikte kalsın
   (p'ye padding vermek ikinci sütunu daraltıyordu). */
.hero-copy p + p {
    position: relative;
}
.hero-copy p + p::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    left: calc(clamp(20px, 2.6vw, 44px) / -2);
    background: rgba(255, 255, 255, 0.16);
}

@media (max-width: 900px) {
    .hero-copy {
        max-width: 100%;
        grid-template-columns: 1fr;
        gap: clamp(10px, 2vw, 15px);
    }
    .hero-copy p + p::before {
        display: none;
    }
}
.scroll-cue {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-40);
    white-space: nowrap;
}
.scroll-cue .bar {
    width: 56px;
    height: 1px;
    background: var(--ink-14);
    position: relative;
    overflow: hidden;
}
.scroll-cue .bar::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: translateX(-100%);
    animation: cue 2.4s var(--ease) infinite;
}
@keyframes cue {
    0% {
        transform: translateX(-100%);
    }
    55% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
    }
}

/* ══════════ İÇ SAYFA HERO ══════════ */
.phero {
    padding: clamp(140px, 19vh, 220px) var(--pad) clamp(40px, 6vw, 80px);
    position: relative;
}
.phero .crumb {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-40);
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: clamp(20px, 2.6vw, 34px);
}
.phero .crumb a:hover {
    color: var(--accent);
}
.phero .crumb i {
    font-style: normal;
    color: var(--ink-14);
}
.phero h1 {
    max-width: 22ch;
}
.phero .sub {
    max-width: 56ch;
    margin-top: clamp(22px, 2.6vw, 34px);
}
.phero-meta {
    display: flex;
    gap: clamp(20px, 3vw, 54px);
    flex-wrap: wrap;
    border-top: 1px solid var(--ink-14);
    margin-top: clamp(34px, 4vw, 58px);
    padding-top: 22px;
}
.phero-meta div {
    min-width: 120px;
}
.phero-meta h6 {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-40);
    margin-bottom: 7px;
}
.phero-meta p {
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.5;
}

/* ══════════ MARQUEE ══════════ */
.marq {
    border-top: 1px solid var(--ink-14);
    border-bottom: 1px solid var(--ink-14);
    overflow: hidden;
    padding-block: 16px;
    background: var(--bg);
}
.marq-in {
    display: flex;
    width: max-content;
    will-change: transform;
}
.marq-in span {
    font-family: var(--f-display);
    font-weight: 500;
    font-stretch: 88%;
    font-size: clamp(0.95rem, 1.5vw, 1.35rem);
    letter-spacing: -0.01em;
    padding-inline: clamp(18px, 2.4vw, 38px);
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.4vw, 38px);
    white-space: nowrap;
    color: var(--ink-60);
}
.marq-in span::after {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    flex: none;
}

/* ══════════ GRID YARDIMCILARI ══════════ */
.grid-2 {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr);
    gap: clamp(28px, 5vw, 90px);
    align-items: start;
}
@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 26px;
    }
}
.sticky-col {
    position: sticky;
    top: 120px;
}
html.no-sticky .sticky-col {
    position: static;
}
@media (max-width: 900px) {
    .sticky-col {
        position: static;
        top: auto;
    }
}

/* ══════════ HİZMET LİSTESİ ══════════ */
.svc-list {
    border-top: 1px solid var(--ink-14);
    margin-top: clamp(38px, 5vw, 64px);
}
.svc {
    border-bottom: 1px solid var(--ink-14);
    padding-block: clamp(22px, 2.6vw, 34px);
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) minmax(0, 1.25fr) 40px;
    gap: clamp(16px, 3vw, 44px);
    align-items: start;
    position: relative;
    transition: background-color 0.5s;
}
.svc:hover {
    background: rgba(0, 184, 193, 0.055);
}
.svc .n {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--accent);
    padding-top: 8px;
}
.svc h3 {
    font-family: var(--f-display);
    font-weight: 600;
    font-stretch: 100%;
    font-size: clamp(1.28rem, 2.1vw, 1.85rem);
    letter-spacing: -0.025em;
    line-height: 1.1;
}
.svc h3 small {
    display: block;
    font-family: var(--f-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-40);
    margin-top: 9px;
}
.svc .go {
    align-self: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--ink-14);
    display: grid;
    place-items: center;
    flex: none;
    transition:
        background-color 0.45s var(--ease),
        border-color 0.45s,
        transform 0.45s var(--ease);
}
.svc .go svg {
    width: 14px;
    height: 9px;
}
.svc:hover .go {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
    transform: translateX(5px);
}
@media (max-width: 760px) {
    .svc {
        grid-template-columns: 40px 1fr 34px;
    }
    .svc .body {
        grid-column: 2/-1;
    }
    .svc .go {
        grid-row: 1;
        grid-column: 3;
    }
    .lang {
        display: none;
    }
}

/* ══════════ VIDEO PLACEHOLDER (CMS slot) ══════════ */
.ph {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1416 0%, #16262a 42%, #000 100%);
}
.ph::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(
            48% 42% at 30% 28%,
            rgba(0, 184, 193, 0.48),
            transparent 62%
        ),
        radial-gradient(
            46% 44% at 74% 72%,
            rgba(0, 120, 132, 0.34),
            transparent 66%
        );
    filter: blur(8px);
    animation: phDrift 17s ease-in-out infinite alternate;
}
@keyframes phDrift {
    0% {
        transform: translate3d(-4%, -3%, 0) scale(1);
    }
    100% {
        transform: translate3d(5%, 4%, 0) scale(1.14);
    }
}
.ph::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 38px 38px;
}
.ph-lab {
    position: absolute;
    z-index: 2;
    left: 14px;
    top: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}
.ph-lab i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    animation: blink 1.9s ease-in-out infinite;
}
@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.25;
    }
}

/* ══════════ REEL ══════════ */
/* 16:9 oran korunur ama yüksekliği ekranı aşmaz:
   genişlik, 72vh'lik bir yüksekliğe karşılık gelen değerle sınırlanır. */
.reel {
    position: relative;
    border-radius: var(--r);
    overflow: hidden;
    background: var(--dark);
    aspect-ratio: 16/9;
    width: min(100%, calc(72vh * 16 / 9));
    max-height: 72vh;
    margin-inline: auto;
    display: grid;
    place-items: center;
    isolation: isolate;
}
@media (max-width: 760px) {
    .reel {
        width: 100%;
        max-height: none;
    }
}
.reel .ph {
    position: absolute;
    inset: 0;
}
.reel-btn {
    position: relative;
    z-index: 3;
    width: clamp(88px, 10vw, 132px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: transform 0.6s var(--ease);
}
.reel:hover .reel-btn {
    transform: scale(1.12);
}
.reel-meta {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: clamp(16px, 2vw, 28px);
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════════
   PROJE GRID — ikili yatay yerleşim
   ══════════════════════════════════════════════════════════════ */
.work-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: clamp(30px, 4vw, 58px);
}
.work {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(14px, 2vw, 34px);
    row-gap: clamp(38px, 5vw, 86px);
}
@media (max-width: 760px) {
    .work {
        grid-template-columns: 1fr;
        row-gap: 44px;
    }
}

.card {
    display: block;
    position: relative;
}
.card .frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--r);
    aspect-ratio: 16/10;
    background: var(--bg-2);
}
.card .frame .ph,
.card .frame video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.001);
    transition: transform 1.15s var(--ease);
}
.card:hover .frame .ph,
.card:hover .frame video {
    transform: scale(1.055);
}
.card .c-tags {
    margin-top: 18px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--ink-40);
}
.card .c-title {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 9px;
}
.card .c-title .arw {
    width: 0;
    overflow: hidden;
    flex: none;
    color: var(--accent);
    transition:
        width 0.55s var(--ease),
        opacity 0.4s;
    opacity: 0;
}
.card .c-title .arw svg {
    width: 34px;
    height: 14px;
    display: block;
}
.card:hover .c-title .arw {
    width: clamp(38px, 4vw, 54px);
    opacity: 1;
}
.card .c-title h4 {
    font-family: var(--f-display);
    font-weight: 600;
    font-stretch: 100%;
    font-size: clamp(1.5rem, 2.9vw, 2.4rem);
    letter-spacing: -0.03em;
    line-height: 1.05;
    transition: color 0.4s;
}
.card:hover .c-title h4 {
    color: var(--accent-deep);
}

/* proje başlığındaki firma adı — hover'da renk yer değiştirir */
.c-firm {
    font-weight: 500;
    font-stretch: 88%;
    color: var(--accent-deep);
    transition: color 0.4s;
}
.c-firm::after {
    content: "\00a0/\00a0";
    font-weight: 300;
    opacity: 0.45;
    color: var(--ink);
}
.card:hover .c-firm {
    color: var(--dark);
}
.p-firm {
    font-weight: 400;
    font-stretch: 88%;
    color: var(--accent-deep);
    letter-spacing: -0.02em;
}
.p-firm::after {
    content: "\00a0/\00a0";
    font-weight: 200;
    opacity: 0.35;
    color: var(--ink);
}
.dark-block .p-firm,
.dark-block .c-firm {
    color: var(--accent);
}

/* filtre çubuğu (projeler sayfası) */
/* filtre çubuğu — anasayfa ve projeler sayfası ortak */
.filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: clamp(30px, 4vw, 52px);
}
#homeFilters {
    margin-top: clamp(-8px, -0.5vw, 0px);
}
.filters button {
    border: 1px solid var(--ink-14);
    border-radius: 100px;
    padding: 9px 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--ink-60);
    transition: all 0.4s var(--ease);
}
.filters button:hover {
    border-color: var(--ink);
}
.filters button.on {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--paper);
}
.filters .cnt {
    opacity: 0.5;
    margin-left: 6px;
    font-variant-numeric: tabular-nums;
}

.more-row {
    display: flex;
    justify-content: center;
    margin-top: clamp(50px, 6vw, 90px);
}

/* ══════════ BUTONLAR ══════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    border-radius: 100px;
    border: 1px solid var(--ink);
    padding: 15px 26px 15px 30px;
    font-size: 13px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    flex: none;
}
.btn span {
    position: relative;
    z-index: 1;
    transition: color 0.45s var(--ease);
}
.btn .arw {
    position: relative;
    z-index: 1;
    width: 22px;
    height: 10px;
    transition:
        transform 0.5s var(--ease),
        color 0.45s var(--ease);
}
.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: translateY(101%);
    transition: transform 0.55s var(--ease);
}
.btn:hover::before {
    transform: none;
}
.btn:hover span,
.btn:hover .arw {
    color: #000;
}
.btn:hover .arw {
    transform: translateX(6px);
}
.btn.solid {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--paper);
}
.btn.big {
    padding: 19px 32px 19px 38px;
    font-size: 14.5px;
}
.btn.light {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--paper);
}
.btn.light::before {
    background: var(--accent);
}

/* ══════════ HOOK BANTLARI ══════════ */
.hook {
    border-top: 1px solid var(--ink-14);
    border-bottom: 1px solid var(--ink-14);
    padding-block: clamp(46px, 6vw, 86px);
}
.hook-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(22px, 4vw, 60px);
    flex-wrap: wrap;
}
.hook h3 {
    max-width: 20ch;
}

/* ══════════════════════════════════════════════════════════════
   KOYU BLOK (manifesto / çözüm sayfaları)
   ══════════════════════════════════════════════════════════════ */
.dark-block {
    background: var(--dark);
    color: var(--paper);
    position: relative;
    overflow: hidden;
}
.dark-block::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(
            60% 45% at 82% 8%,
            rgba(0, 184, 193, 0.2),
            transparent 62%
        ),
        radial-gradient(
            52% 42% at 6% 92%,
            rgba(0, 184, 193, 0.1),
            transparent 66%
        );
}
.dark-block .wrap {
    position: relative;
    z-index: 2;
}
.dark-block .eyebrow {
    color: rgba(255, 255, 255, 0.58);
}
.dark-block .body {
    color: rgba(255, 255, 255, 0.6);
}
.dark-block em.ac {
    color: var(--accent);
}
.man-head {
    max-width: 22ch;
}
.man-sub {
    max-width: 56ch;
    margin-top: clamp(22px, 2.6vw, 34px);
}
.man-sub strong {
    color: var(--paper);
    font-weight: 600;
}

.reasons {
    margin-top: clamp(54px, 7vw, 110px);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.reason {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) minmax(0, 1.3fr);
    gap: clamp(16px, 3vw, 48px);
    padding-block: clamp(26px, 3.4vw, 46px);
    align-items: start;
}
.reason .rn {
    font-family: var(--f-display);
    font-weight: 500;
    font-stretch: 88%;
    font-size: clamp(2.1rem, 4.4vw, 3.6rem);
    line-height: 0.9;
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.16);
    transition: color 0.6s var(--ease);
}
.reason:hover .rn {
    color: var(--accent);
}
.reason h4 {
    font-family: var(--f-display);
    font-weight: 600;
    font-stretch: 100%;
    font-size: clamp(1.25rem, 2.2vw, 1.95rem);
    letter-spacing: -0.025em;
    line-height: 1.08;
}
.reason .cost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
}
.reason .cost::before {
    content: "";
    width: 16px;
    height: 1px;
    background: var(--accent);
}
@media (max-width: 820px) {
    .reason {
        grid-template-columns: 58px 1fr;
    }
    .reason .body {
        grid-column: 2/-1;
        margin-top: 4px;
    }
}
.verdict {
    margin-top: clamp(52px, 6vw, 92px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(26px, 4vw, 72px);
    align-items: end;
}
@media (max-width: 900px) {
    .verdict {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}
.verdict .big {
    font-family: var(--f-display);
    font-weight: 600;
    font-stretch: 100%;
    font-size: clamp(1.6rem, 3.4vw, 2.9rem);
    letter-spacing: -0.03em;
    line-height: 1.08;
}

/* ══════════ DEĞER VE FAYDALAR (cozumler.html) ══════════ */
.val-head {
    display: grid;
    gap: clamp(20px, 3vw, 54px);
    margin-bottom: clamp(30px, 4vw, 58px);
}
@media (min-width: 900px) {
    .val-head {
        grid-template-columns: 0.9fr 1.1fr;
        align-items: start;
    }
}
.val-head .body {
    max-width: 58ch;
}

.val-grid {
    display: grid;
    gap: 1px;
    background: var(--ink-14);
    border: 1px solid var(--ink-14);
    border-radius: var(--r-sm);
    overflow: hidden;
    margin-top: clamp(34px, 4.5vw, 64px);
}
@media (min-width: 860px) {
    .val-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
.val {
    background: var(--bg);
    padding: clamp(22px, 2.6vw, 34px);
    transition: background-color 0.4s var(--ease);
}
.val:hover {
    background: var(--paper);
}
.val-t {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-deep);
    margin-bottom: 12px;
}
.val h4 {
    font-family: var(--f-display);
    font-weight: 600;
    font-stretch: 100%;
    font-size: clamp(1.12rem, 1.7vw, 1.42rem);
    letter-spacing: -0.025em;
    line-height: 1.15;
}
.val .body {
    margin-top: 12px;
}
.val-b {
    list-style: none;
    margin: 16px 0 0;
    padding: 16px 0 0;
    border-top: 1px solid var(--ink-14);
    display: grid;
    gap: 9px;
}
.val-b li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink-60);
}
.val-b li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 8px;
    height: 1px;
    background: var(--accent-deep);
}
.val-b strong {
    color: var(--ink);
    font-weight: 600;
}

.sol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 26px);
    margin-top: clamp(54px, 7vw, 104px);
}
@media (max-width: 820px) {
    .sol {
        grid-template-columns: 1fr;
    }
}
.sol-card {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--r);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition:
        border-color 0.5s,
        background-color 0.5s;
}
.sol-card:hover {
    border-color: rgba(0, 184, 193, 0.6);
    background: rgba(0, 184, 193, 0.06);
}
.sol-card .frame {
    aspect-ratio: 16/10;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.sol-card .frame .ph {
    position: absolute;
    inset: 0;
}
.sol-card .txt {
    padding: clamp(20px, 2.4vw, 34px);
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}
.sol-card .kk {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
}
.sol-card h4 {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: clamp(1.3rem, 2.1vw, 1.75rem);
    letter-spacing: -0.025em;
    line-height: 1.1;
}
.sol-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: auto;
    padding-top: 8px;
}
.sol-card li {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.62);
    display: flex;
    gap: 10px;
    line-height: 1.5;
}
.sol-card li::before {
    content: "→";
    color: var(--accent);
    flex: none;
}
.sol-card .more {
    margin-top: 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 9px;
}
.sol-card:hover .more {
    gap: 15px;
}
.sol-card .more {
    transition: gap 0.4s var(--ease);
}

/* ══════════ ADIM ADIM (çözüm sayfaları) ══════════ */
.steps {
    counter-reset: s;
    border-top: 1px solid var(--ink-14);
    margin-top: clamp(36px, 4.5vw, 64px);
}
.steps .step {
    border-bottom: 1px solid var(--ink-14);
    padding-block: clamp(24px, 3vw, 40px);
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr) minmax(0, 1.2fr);
    gap: clamp(16px, 3vw, 44px);
    align-items: start;
}
.steps .step .sn {
    font-family: var(--f-display);
    font-weight: 500;
    font-stretch: 88%;
    font-size: clamp(1.8rem, 3.4vw, 2.8rem);
    line-height: 0.9;
    letter-spacing: -0.03em;
    color: var(--ink-14);
}
.steps .step h4 {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: clamp(1.15rem, 1.9vw, 1.6rem);
    letter-spacing: -0.025em;
    line-height: 1.12;
}
@media (max-width: 820px) {
    .steps .step {
        grid-template-columns: 56px 1fr;
    }
    .steps .step .body {
        grid-column: 2/-1;
        margin-top: 4px;
    }
}

/* ══════════ İSTATİSTİK / FAYDA KUTULARI ══════════ */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: clamp(14px, 2vw, 28px);
    margin-top: clamp(28px, 3.4vw, 48px);
    border-top: 1px solid var(--ink-14);
    padding-top: 26px;
}
.stats .st b {
    display: block;
    font-family: var(--f-display);
    font-weight: 600;
    font-stretch: 88%;
    font-size: clamp(1.7rem, 3.2vw, 2.6rem);
    letter-spacing: -0.03em;
    line-height: 1;
}
.stats .st span {
    font-size: 11.5px;
    color: var(--ink-40);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
    margin-top: 7px;
    line-height: 1.5;
}
.dark-block .stats {
    border-color: rgba(255, 255, 255, 0.14);
}
.dark-block .stats .st span {
    color: rgba(255, 255, 255, 0.58);
}

.bul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(16px, 2.4vw, 34px);
    margin-top: clamp(30px, 4vw, 56px);
}
.bul .b {
    border-top: 1px solid var(--ink-14);
    padding-top: 20px;
}
.bul .b h5 {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 1.06rem;
    letter-spacing: -0.02em;
    margin-bottom: 9px;
}
.dark-block .bul .b {
    border-color: rgba(255, 255, 255, 0.16);
}

/* ══════════ AR DENEME ══════════ */
#artry {
    background: var(--bg-2);
    position: relative;
    overflow: hidden;
}
.try-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(30px, 5vw, 80px);
    align-items: center;
}
@media (max-width: 900px) {
    .try-grid {
        grid-template-columns: 1fr;
    }
}
.phone {
    width: min(280px, 72vw);
    aspect-ratio: 9/19;
    border-radius: 38px;
    background: var(--dark);
    padding: 9px;
    box-shadow: 0 40px 90px -30px rgba(14, 14, 12, 0.5);
    margin-inline: auto;
    position: relative;
}
.phone .scr {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    background: #111;
}
.phone .notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 78px;
    height: 20px;
    border-radius: 12px;
    background: var(--dark);
    z-index: 4;
}
.ar-ret {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 56%;
    transform: translate(-50%, -50%);
    width: 62%;
    aspect-ratio: 1.5;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    border-radius: 4px;
    animation: retPulse 3s var(--ease) infinite;
}
.ar-ret::before,
.ar-ret::after {
    content: "";
    position: absolute;
    background: var(--accent);
}
.ar-ret::before {
    left: -1.5px;
    top: -1.5px;
    width: 22px;
    height: 3px;
}
.ar-ret::after {
    left: -1.5px;
    top: -1.5px;
    width: 3px;
    height: 22px;
}
@keyframes retPulse {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.9;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.6;
    }
}
.ar-hint {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(14, 14, 12, 0.55);
    backdrop-filter: blur(6px);
    padding: 9px 16px;
    border-radius: 100px;
}

/* ══════════ FİNAL CTA ══════════ */
.endcta {
    background: var(--accent);
    color: #000;
    position: relative;
    overflow: hidden;
}
.endcta .wrap {
    position: relative;
    z-index: 2;
}
.endcta .eyebrow {
    color: rgba(0, 0, 0, 0.55);
}
.endcta .eyebrow::before {
    background: #000;
}
.end-head {
    font-family: var(--f-display);
    font-weight: 600;
    font-stretch: 105%;
    font-size: clamp(2.3rem, 7.4vw, 6.4rem);
    line-height: 0.94;
    letter-spacing: -0.04em;
    max-width: 14ch;
    color: var(--paper);
}
.end-head em {
    font-style: italic;
    font-weight: 400;
    font-stretch: 80%;
}
.end-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 34px;
    flex-wrap: wrap;
    margin-top: clamp(30px, 4vw, 58px);
}
.end-mail {
    font-family: var(--f-display);
    font-weight: 500;
    font-stretch: 88%;
    font-size: clamp(1.2rem, 2.6vw, 2.1rem);
    letter-spacing: -0.025em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.35);
    padding-bottom: 6px;
    transition: border-color 0.4s;
}
.end-mail:hover {
    border-color: #000;
}
.endcta .btn {
    border-color: #000;
    color: #000;
}
.endcta .btn::before {
    background: #000;
}
.endcta .btn:hover span,
.endcta .btn:hover .arw {
    color: var(--accent);
}

/* ══════════ SONRAKİ SAYFA ══════════ */
.nextpage {
    border-top: 1px solid var(--ink-14);
    padding-block: clamp(46px, 6vw, 86px);
}
.nextpage a {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.nextpage .lbl {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-40);
}
.nextpage h3 {
    font-family: var(--f-display);
    font-weight: 600;
    font-stretch: 105%;
    font-size: clamp(1.8rem, 5vw, 3.6rem);
    letter-spacing: -0.035em;
    line-height: 1;
    transition: color 0.4s;
}
.nextpage a:hover h3 {
    color: var(--accent);
}

/* ══════════ FOOTER ══════════ */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.62);
    padding-block: clamp(48px, 6vw, 84px);
}
.f-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 1fr));
    gap: clamp(26px, 4vw, 60px);
}
@media (max-width: 820px) {
    .f-grid {
        grid-template-columns: 1fr 1fr;
    }
    .f-grid .f-brand {
        grid-column: 1/-1;
    }
}
.f-brand .mk img {
    width: clamp(180px, 20vw, 240px);
    height: auto;
}
.f-col h5 {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 16px;
}
.f-col a,
.f-col p {
    display: block;
    font-size: 14px;
    line-height: 2;
    transition: color 0.3s;
}
.f-col a:hover {
    color: var(--accent);
}
.f-bot {
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    margin-top: clamp(38px, 5vw, 64px);
    padding-top: 22px;
    font-size: 11.5px;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.38);
}

/* ══════════════════════════════════════════════════════════════
   GÖRSEL TABANLI PROJELER — render serileri
   ══════════════════════════════════════════════════════════════ */
/* beyaz/şeffaf zeminli ürün render'ları kırpılmasın */
/* Şeffaf PNG render'ların zemini.
   --tint-card : proje kartları (anasayfa + projeler sayfası) → açık gri
   --tint-1    : galeri ve lightbox → beyaz
   Not: .card .frame varsayılanı siyah olduğu için kart kuralı
   .card .frame.frame--contain ile yazılıyor — özgüllük kazansın diye. */
:root {
    --tint-card: #eaeced;
    --tint-1: #ffffff;
    --tint-2: #ffffff;
    --tint-3: #ffffff;
}
.card .frame.frame--contain {
    background: var(--tint-card);
}

/* Render görselleri kaynakta 16:10 tuvale ortalanıyor (bkz. OKU-BENI).
   Bu yüzden burada dolgu yok — kutuyu tam dolduruyorlar, taşma olmuyor. */
.frame--contain {
    background: var(--tint-1);
}
.frame--contain img,
.frame--contain video {
    object-fit: contain !important;
    padding: 0;
}
.card:hover .frame--contain img {
    transform: scale(1.03);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 30px);
}
@media (max-width: 760px) {
    .gallery {
        grid-template-columns: 1fr;
    }
}
.gal-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--r);
    background: var(--bg-2);
    aspect-ratio: 16/10;
}
/* Baştan itibaren ikili yapı — ilk karenin tam genişlik olması kaldırıldı,
   böylece render sayfaları en üstte kocaman tek görselle açılmıyor. */
.gal-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease);
}
.gal-item:hover img {
    transform: scale(1.04);
}
.gal-item figcaption {
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0;
    padding: clamp(12px, 1.6vw, 22px);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55);
}
/* galeri kareleri de beyaz */
.gal-item.frame--contain {
    background: #fff;
}
.gal-item.frame--contain img {
    object-fit: contain;
    padding: 0;
}
.gal-item.frame--contain figcaption {
    color: var(--ink-40);
    text-shadow: none;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95), transparent);
    left: 0;
    right: 0;
    padding-top: 34px;
}

/* reel / detay videosu çerçeveyi doldursun */
.reel video,
.reel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.reel .reel-btn,
.reel .ph,
.reel .reel-meta {
    transition: opacity 0.5s var(--ease);
}
.reel.playing .reel-btn,
.reel.playing .ph,
.reel.playing .reel-meta {
    opacity: 0;
    pointer-events: none;
}
/* kontrollü (detay) video kırpılmasın */
.reel video[controls] {
    object-fit: contain;
    background: #000;
    z-index: 4;
}

/* ══════════════════════════════════════════════════════════════
   CANLI 3D / AR — <model-viewer>
   ══════════════════════════════════════════════════════════════ */
model-viewer {
    width: 100%;
    height: 100%;
    display: block;
    background: transparent;
    --poster-color: transparent;
    --progress-bar-color: var(--accent);
    --progress-bar-height: 2px;
    --progress-mask: transparent;
}
model-viewer::part(default-progress-bar) {
    background: var(--accent);
}

/* hero'daki makine — sağ üstte, başlıkla çakışmadan */
#heroModel {
    position: absolute;
    z-index: 1;
    pointer-events: auto;
    right: -2%;
    top: 5%;
    width: min(64%, 1000px);
    height: 74%;
}
#heroModel model-viewer {
    --poster-color: transparent;
}
@media (max-width: 900px) {
    #heroModel {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        top: 15%;
        width: 118%;
        height: 42%;
    }
}
.mv-hint {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: clamp(96px, 13vh, 150px);
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
    pointer-events: none;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-40);
    opacity: 0;
    transition: opacity 0.8s var(--ease) 0.6s;
}
.mv-hint.on {
    opacity: 1;
}
.mv-hint svg {
    width: 15px;
    height: 15px;
}
@media (max-width: 900px) {
    .mv-hint {
        bottom: auto;
        top: clamp(74px, 10vh, 110px);
    }
}

/* AR sahnesi — büyük etkileşimli görüntüleyici */
/* AR sahnesi — zemin sayfayla aynı, yalnızca ince bir çerçeve.
   ANASAYFA: geniş ve etkileyici.  İÇ SAYFA (.ar-stage--page): daha ölçülü. */
.ar-stage {
    position: relative;
    border-radius: var(--r);
    overflow: hidden;
    background: var(--bg);
    border: 1px solid var(--ink-14);
    aspect-ratio: 4/3;
}
@media (max-width: 760px) {
    .ar-stage {
        aspect-ratio: 1/1;
    }
}

/* iç sayfadaki demo paneli — bölümü ezmesin, ama küçük de kalmasın */
.ar-stage--page {
    max-width: 940px;
    margin-inline: auto;
    aspect-ratio: 16/10;
    max-height: min(64vh, 560px);
}
@media (max-width: 760px) {
    .ar-stage--page {
        aspect-ratio: 4/3;
        max-height: none;
    }
}
.ar-stage model-viewer {
    position: absolute;
    inset: 0;
}
.ar-pick {
    position: absolute;
    z-index: 4;
    left: clamp(12px, 1.6vw, 20px);
    top: clamp(12px, 1.6vw, 20px);
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.ar-pick button {
    border: 1px solid var(--ink-14);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    padding: 8px 15px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--ink-60);
    transition: all 0.35s var(--ease);
}
.ar-pick button:hover {
    border-color: var(--ink);
}
.ar-pick button.on {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--paper);
}
.ar-go {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: clamp(14px, 2vw, 24px);
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 11px;
    white-space: nowrap;
    background: var(--accent);
    color: #000;
    border-radius: 100px;
    padding: 15px 26px;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 14px 34px -12px rgba(0, 184, 193, 0.75);
    transition:
        transform 0.4s var(--ease),
        box-shadow 0.4s var(--ease);
}
.ar-go:hover {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 20px 42px -12px rgba(0, 184, 193, 0.85);
}
.ar-go svg {
    width: 17px;
    height: 17px;
    flex: none;
}
.ar-note {
    position: absolute;
    z-index: 4;
    right: clamp(12px, 1.6vw, 20px);
    bottom: clamp(14px, 2vw, 24px);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-40);
}
@media (max-width: 620px) {
    .ar-note {
        display: none;
    }
}
/* AR desteklenmeyen cihazda buton yerine bilgi */
.ar-stage:not([data-ar="1"]) .ar-go .ar-go-t2 {
    display: none;
}

/* model yüklenemediğinde — boş kutu yerine açıklama */
.mv-fail {
    position: absolute;
    inset: 0;
    z-index: 6;
    display: grid;
    place-items: center;
    text-align: center;
    padding: clamp(20px, 3vw, 40px);
    background: var(--bg);
}
.dark-block .mv-fail,
#heroModel .mv-fail {
    background: transparent;
}
.mv-fail .in {
    max-width: 34ch;
}
.mv-fail svg {
    width: 30px;
    height: 30px;
    color: var(--accent);
    margin: 0 auto 16px;
}
.mv-fail h6 {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 1.02rem;
    letter-spacing: -0.02em;
    margin-bottom: 9px;
}
.mv-fail p {
    font-size: 13px;
    line-height: 1.65;
    color: var(--ink-60);
}
.mv-fail code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 12px;
    background: rgba(0, 0, 0, 0.06);
    padding: 2px 7px;
    border-radius: 5px;
}
#heroModel .mv-fail {
    display: none;
} /* hero'da sessizce geç */

/* proje detayında canlı 3D */
.p3d {
    position: relative;
    border-radius: var(--r);
    overflow: hidden;
    aspect-ratio: 16/10;
    max-height: min(60vh, 520px);
    max-width: 940px;
    margin-inline: auto;
    background: var(--bg);
    border: 1px solid var(--ink-14);
}
.p3d model-viewer {
    position: absolute;
    inset: 0;
}

/* ══════════════════════════════════════════════════════════════
   BÖLÜM GEÇİŞİ
   Scroll ilerledikçe zemin açıktan siyaha döner.
   Tipografi: aynı cümlede iki zıt kesim — ince/geniş ile kalın/dar.
   ══════════════════════════════════════════════════════════════ */
#chapter {
    position: relative;
    min-height: 132svh;
    background: var(--bg);
    overflow: clip;
}
#chapter .ch-stick {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100svh;
    display: grid;
    place-items: center;
    text-align: center;
    padding-inline: var(--pad);
}
html.no-sticky #chapter .ch-stick {
    position: static;
}

/* arkada dolaşan yumuşak turkuaz ışık — rakam yerine */
#chapter .ch-glow {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(120vw, 1400px);
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(0, 184, 193, 0.2) 0%,
        rgba(0, 184, 193, 0.07) 38%,
        transparent 66%
    );
    opacity: 0;
    transition: opacity 1.2s var(--ease);
}
#chapter.lit .ch-glow {
    opacity: 1;
}

#chapter .ch-in {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
}

/* üst etiket + iki yana uzayan çizgi */
#chapter .ch-kicker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: clamp(26px, 3.6vw, 46px);
}
#chapter .ch-kicker::before,
#chapter .ch-kicker::after {
    content: "";
    height: 1px;
    width: clamp(28px, 7vw, 110px);
    background: currentColor;
    opacity: 0.5;
    transform: scaleX(0);
    transition: transform 1s var(--ease) 0.1s;
}
#chapter .ch-kicker::before {
    transform-origin: right;
}
#chapter .ch-kicker::after {
    transform-origin: left;
}
#chapter.lit .ch-kicker::before,
#chapter.lit .ch-kicker::after {
    transform: scaleX(1);
}

/* ── ANA CÜMLE — iki zıt kesim ── */
#chapter h2 {
    font-family: var(--f-display);
    line-height: 0.92;
    margin: 0;
}
#chapter .ch-a {
    display: block;
    font-weight: 200;
    font-stretch: 112%;
    font-size: clamp(1.55rem, 4.5vw, 3.7rem);
    letter-spacing: -0.02em;
}
#chapter .ch-b {
    display: block;
    margin-top: 0.06em;
    font-weight: 700;
    font-stretch: 78%;
    font-size: clamp(3.1rem, 11.6vw, 10rem);
    letter-spacing: -0.045em;
    text-transform: uppercase;
}
#chapter .ch-b em {
    font-style: normal;
    color: var(--accent);
}

/* alt açıklama — iki kısa satır, geniş harf aralığı */
#chapter .ch-sub {
    margin-top: clamp(26px, 3.4vw, 46px);
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    font-family: var(--f-body);
    font-size: clamp(0.86rem, 1.32vw, 1.02rem);
    letter-spacing: 0.02em;
    line-height: 1.5;
    opacity: 0.62;
}
@media (min-width: 760px) {
    #chapter .ch-sub {
        flex-direction: row;
        gap: 0;
        justify-content: center;
    }
    #chapter .ch-sub span + span {
        padding-left: 18px;
        margin-left: 18px;
        border-left: 1px solid currentColor;
    }
}

#chapter .ch-line {
    width: 1px;
    height: clamp(34px, 5.4vh, 64px);
    margin: clamp(30px, 3.6vw, 52px) auto 0;
    background: currentColor;
    opacity: 0.28;
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 1.1s var(--ease) 0.25s;
}
#chapter.lit .ch-line {
    transform: scaleY(1);
}

/* ══════════════════════════════════════════════════════════════
   HİZMET BÖLÜMLERİ — AR ve VR'a ayrı ayrı tam alan
   ══════════════════════════════════════════════════════════════ */
.svc-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(30px, 5vw, 86px);
    align-items: center;
}
@media (max-width: 960px) {
    .svc-hero {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}
.svc-hero.flip > *:first-child {
    order: 2;
}
@media (max-width: 960px) {
    .svc-hero.flip > *:first-child {
        order: 0;
    }
}
.svc-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    border: 1px solid currentColor;
    padding: 7px 16px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.75;
    margin-bottom: clamp(20px, 2.6vw, 32px);
}
.svc-badge b {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
}

.flow {
    counter-reset: f;
    margin-top: clamp(30px, 4vw, 52px);
    display: grid;
    gap: 2px;
}
.flow .f {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: clamp(14px, 2vw, 26px);
    align-items: start;
    padding: clamp(16px, 2vw, 24px) 0;
    border-top: 1px solid var(--ink-14);
    transition: border-color 0.4s;
}
.dark-block .flow .f {
    border-color: rgba(255, 255, 255, 0.16);
}
.flow .f:last-child {
    border-bottom: 1px solid var(--ink-14);
}
.dark-block .flow .f:last-child {
    border-bottom-color: rgba(255, 255, 255, 0.16);
}
.flow .f i {
    font-style: normal;
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--accent);
    padding-top: 5px;
}
.flow .f h5 {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: clamp(1.02rem, 1.5vw, 1.2rem);
    letter-spacing: -0.018em;
    margin-bottom: 5px;
}

/* kaynak dipnotu */
.src {
    margin-top: clamp(30px, 4vw, 52px);
    padding-top: 18px;
    border-top: 1px solid var(--ink-14);
    font-size: 11.5px;
    line-height: 1.9;
    color: var(--ink-40);
}
.dark-block .src {
    border-color: rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.5);
}
.src a {
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s;
}
.src a:hover {
    color: var(--accent);
}
.src b {
    font-weight: 600;
    color: inherit;
}

/* ══════════════════════════════════════════════════════════════
   LIGHTBOX — galeri görselinin tam sürümü
   Dikey eksende taşmaz: görsel en fazla 74vh, üstte/altta nefes payı var.
   ══════════════════════════════════════════════════════════════ */
#lb {
    position: fixed;
    inset: 0;
    z-index: 220;
    display: none;
    align-items: center;
    justify-content: center;
    padding: clamp(52px, 7vh, 90px) clamp(16px, 4vw, 64px);
    background: rgba(0, 0, 0, 0.86);
    backdrop-filter: blur(14px);
    opacity: 0;
    transition: opacity 0.35s var(--ease);
}
#lb.open {
    display: flex;
}
#lb.shown {
    opacity: 1;
}

#lb .lb-fig {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: min(1500px, 100%);
    max-height: 100%;
    margin: 0;
}
#lb .lb-wrap {
    background: var(--tint-1);
    border-radius: var(--r);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 74vh;
    transform: scale(0.97);
    opacity: 0;
    transition:
        transform 0.45s var(--ease),
        opacity 0.35s var(--ease);
}
#lb.shown .lb-wrap {
    transform: none;
    opacity: 1;
}
#lb img {
    display: block;
    max-width: 100%;
    max-height: 74vh;
    width: auto;
    height: auto;
    object-fit: contain;
}
/* koyu ortam render'ları zemin rengini görmesin */
#lb .lb-wrap.opaque {
    background: var(--bg-2);
}

#lb figcaption {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13.5px;
    line-height: 1.5;
    text-align: center;
    max-width: 60ch;
    letter-spacing: 0.01em;
}
#lb .lb-count {
    color: rgba(255, 255, 255, 0.42);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-variant-numeric: tabular-nums;
}

#lb .lb-x {
    position: absolute;
    top: clamp(14px, 2.4vh, 26px);
    right: clamp(14px, 3vw, 34px);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.26);
    color: #fff;
    display: grid;
    place-items: center;
    transition: all 0.35s var(--ease);
}
#lb .lb-x:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}
#lb .lb-x svg {
    width: 16px;
    height: 16px;
}

#lb .lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.26);
    color: #fff;
    display: grid;
    place-items: center;
    transition: all 0.35s var(--ease);
}
#lb .lb-nav:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}
#lb .lb-nav svg {
    width: 18px;
    height: 12px;
}
#lb .lb-prev {
    left: clamp(10px, 2vw, 28px);
}
#lb .lb-next {
    right: clamp(10px, 2vw, 28px);
}
#lb .lb-prev svg {
    transform: rotate(180deg);
}
#lb[data-single="1"] .lb-nav,
#lb[data-single="1"] .lb-count {
    display: none;
}
@media (max-width: 640px) {
    #lb .lb-nav {
        top: auto;
        bottom: clamp(12px, 3vh, 24px);
        transform: none;
        width: 44px;
        height: 44px;
    }
    #lb .lb-prev {
        left: 22%;
    }
    #lb .lb-next {
        right: 22%;
    }
    #lb img,
    #lb .lb-wrap {
        max-height: 64vh;
    }
}

/* galeri karesi tıklanabilir olduğunu belli etsin */
.gal-item {
    cursor: zoom-in;
}
.gal-item:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 4px;
}

/* ══════════════════════════════════════════════════════════════
   ALMARENA NEUE DÜZELTMELERİ
   ──────────────────────────────────────────────────────────────
   Archivo'nun bir GENİŞLİK ekseni var (font-stretch: 78%…118%) ve
   sitenin başlık kontrastı buna dayanıyordu. Almarena Neue'nun
   eksenleri Kalınlık / Display / İtalik — genişlik ekseni YOK,
   yani font-stretch değerleri sessizce çalışmaz.

   Aşağıdaki blok o kontrastı harf aralığı ve puntoyla yeniden
   kuruyor. Sadece font gerçekten yüklendiğinde devreye girer
   (site.js <html> etiketine .f-almarena sınıfını ekler), bu yüzden
   font dosyaları gelene kadar mevcut görünüm hiç değişmez.
   ══════════════════════════════════════════════════════════════ */
html.f-almarena {
    font-synthesis: none;
}

html.f-almarena .d1,
html.f-almarena .d2,
html.f-almarena .d3,
html.f-almarena #menu a,
html.f-almarena #menu a.sub,
html.f-almarena .marq-in span,
html.f-almarena .svc h3,
html.f-almarena .card .c-title h4,
html.f-almarena .c-firm,
html.f-almarena .p-firm,
html.f-almarena .reason .rn,
html.f-almarena .reason h4,
html.f-almarena .verdict .big,
html.f-almarena .sol-card h4,
html.f-almarena .steps .step .sn,
html.f-almarena .steps .step h4,
html.f-almarena .stats .st b,
html.f-almarena .bul .b h5,
html.f-almarena .end-head,
html.f-almarena .end-mail,
html.f-almarena .nextpage h3,
html.f-almarena #pre .pre-num,
html.f-almarena #chapter .ch-a,
html.f-almarena #chapter .ch-b,
html.f-almarena .ital,
html.f-almarena em.ac,
html.f-almarena .end-head em {
    font-stretch: normal;
    font-optical-sizing: auto;
}

/* Bölüm geçişi — sitenin en büyük tipografik kontrastı.
   ch-a eskiden %112 genişletilmişti → daralınca punto biraz büyüyor.
   ch-b eskiden %78 sıkıştırılmıştı → açılınca ~%28 genişler, punto düşüyor. */
html.f-almarena #chapter .ch-a {
    font-weight: 200;
    letter-spacing: 0.004em;
    font-size: clamp(1.7rem, 5vw, 4.1rem);
}
html.f-almarena #chapter .ch-b {
    font-weight: 800;
    letter-spacing: -0.05em;
    font-size: clamp(2.45rem, 9.1vw, 7.9rem);
}

/* %88'lik dar etiketler açıldığı için taşma riski olanların puntosu kırpıldı */
html.f-almarena .end-mail {
    font-size: clamp(1.1rem, 2.3vw, 1.85rem);
}
html.f-almarena .stats .st b {
    font-size: clamp(1.55rem, 2.9vw, 2.35rem);
}
html.f-almarena .marq-in span {
    font-size: clamp(0.9rem, 1.36vw, 1.2rem);
}
html.f-almarena .c-firm,
html.f-almarena .p-firm {
    letter-spacing: -0.025em;
}

/* İtalik vurgular — Almarena'nın gerçek italiği var, sahte eğim kapalı */
html.f-almarena .ital,
html.f-almarena em.ac,
html.f-almarena .end-head em {
    font-style: italic;
    letter-spacing: -0.03em;
}

/* ── DISPLAY EKSENİ (opsiyonel) ──
   Almarena Neue'nun üçüncü ekseni "Display": büyük puntoda kontrastı
   ve karakteri artırır. Ekseninin dört harfli etiketini font dosyanızı
   aldığınızda doğrulayın (muhtemelen DISP), sonra aşağıdaki satırların
   yorumunu kaldırın — en iri başlıklar belirgin biçimde keskinleşir.

html.f-almarena .d1,
html.f-almarena .end-head,
html.f-almarena #chapter .ch-b{ font-variation-settings:'DISP' 100; }
─────────────────────────────────────────────────────── */

/* ── menü içi yasal bağlantılar — minimal ── */
.menu-legal {
    margin-top: clamp(26px, 4vh, 44px);
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
}
.menu-legal a {
    font-family: var(--f-body) !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    letter-spacing: 0.04em !important;
    color: rgba(255, 255, 255, 0.5) !important;
    text-transform: none !important;
    padding: 0 !important;
    transform: none !important;
    opacity: 1 !important;
}
.menu-legal a:hover {
    color: rgba(255, 255, 255, 0.85) !important;
}
.menu-legal a::before {
    display: none !important;
}

/* ── footer alt şeridindeki yasal bağlantılar ── */
.f-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px;
}
.f-legal a {
    opacity: 0.62;
    transition: opacity 0.35s;
}
.f-legal a:hover {
    opacity: 1;
}

/* footer artık 4 sütun */
@media (min-width: 900px) {
    .f-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

/* ══════════════════════════════════════════════════════════════
   HAKKIMIZDA (#hakkimizda) — Ne Yapıyoruz sayfası içinde koyu blok
   ══════════════════════════════════════════════════════════════ */
.ab-head {
    display: grid;
    gap: clamp(22px, 3.4vw, 58px);
}
@media (min-width: 940px) {
    .ab-head {
        grid-template-columns: 0.95fr 1.05fr;
        align-items: end;
    }
}
.ab-head .body {
    color: rgba(255, 255, 255, 0.62);
    max-width: 54ch;
}

.ab-body {
    display: grid;
    /*gap: clamp(26px, 3.6vw, 60px);*/
    margin-top: clamp(40px, 5vw, 78px);
    padding-top: clamp(30px, 3.6vw, 50px);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}
@media (min-width: 940px) {
    .ab-body {
        grid-template-columns: 1fr 1fr;
    }
}
.ab-col h3,
.ab-vision h3 {
    font-family: var(--f-display);
    font-weight: 600;
    font-stretch: 100%;
    font-size: clamp(1.15rem, 1.9vw, 1.6rem);
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 14px;
}
.ab-col .body,
.ab-vision .body {
    color: rgba(255, 255, 255, 0.66);
    max-width: 60ch;
}
.ab-col .body strong,
.ab-vision .body strong {
    color: var(--paper);
    font-weight: 600;
}

.ab-figs {
    display: grid;
    gap: 1px;
    background: rgba(255, 255, 255, 0.14);
    border-block: 1px solid rgba(255, 255, 255, 0.14);
    align-self: start;
    padding: 40px;
}
.ab-f {
    padding: clamp(16px, 2vw, 24px) 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: clamp(16px, 2.2vw, 30px);
    align-items: baseline;
}
.ab-f b {
    font-family: var(--f-display);
    font-weight: 600;
    font-stretch: 88%;
    font-size: clamp(2rem, 3.6vw, 3.1rem);
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--accent);
}
.ab-f span {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.62);
}

.ab-vision {
    display: grid;
    gap: clamp(24px, 3.4vw, 56px);
    margin-top: clamp(38px, 4.6vw, 70px);
    padding-top: clamp(30px, 3.6vw, 50px);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}
@media (min-width: 940px) {
    .ab-vision {
        grid-template-columns: 1.1fr 0.9fr;
    }
}
.ab-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
    align-self: center;
}
.ab-list li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.ab-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.ab-list span {
    font-family: var(--f-display);
    font-weight: 500;
    font-stretch: 88%;
    font-size: 13px;
    letter-spacing: 0.06em;
    color: var(--accent);
    padding-top: 3px;
}
.ab-list p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
}

.ab-close {
    margin-top: clamp(40px, 5vw, 80px);
    font-family: var(--f-display);
    font-weight: 600;
    font-stretch: 100%;
    letter-spacing: -0.028em;
    line-height: 1.14;
    font-size: clamp(1.25rem, 2.5vw, 2.15rem);
    max-width: 30ch;
}

/* ══════════ REFERANSLAR ══════════ */
.ref-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: clamp(22px, 3vw, 40px);
}
.ref-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--ink-14);
    border: 1px solid var(--ink-14);
    border-radius: var(--r-sm);
    overflow: hidden;
}
@media (min-width: 640px) {
    .ref-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
.ref {
    background: var(--bg);
    display: grid;
    place-items: center;
    padding: clamp(20px, 2.8vw, 36px) clamp(14px, 2vw, 26px);
    min-height: clamp(90px, 10vw, 130px);
    transition: background-color 0.4s var(--ease);
}
.ref:hover {
    background: var(--paper);
}
.ref img {
    width: 100%;
    max-width: clamp(110px, 13vw, 160px);
    height: auto;
    opacity: 0.42;
    filter: grayscale(1);
    transition:
        opacity 0.4s var(--ease),
        filter 0.4s var(--ease);
}
.ref:hover img {
    opacity: 1;
    filter: none;
}

/* ══════════════════════════════════════════════════════════════
   BLOG — liste kartları ve yazı gövdesi
   ══════════════════════════════════════════════════════════════ */
.posts {
    display: grid;
    gap: 1px;
    background: var(--ink-14);
    border-block: 1px solid var(--ink-14);
}
@media (min-width: 820px) {
    .posts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 1240px) {
    .posts {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
.pc {
    background: var(--bg);
    display: flex;
    flex-direction: column;
    padding: clamp(24px, 2.8vw, 38px);
    transition: background-color 0.45s var(--ease);
}
.pc:hover {
    background: var(--paper);
}
.pc-cat {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-deep);
    margin-bottom: 16px;
}
.pc h3 {
    font-family: var(--f-display);
    font-weight: 600;
    font-stretch: 100%;
    font-size: clamp(1.14rem, 1.85vw, 1.5rem);
    letter-spacing: -0.025em;
    line-height: 1.18;
    transition: color 0.4s var(--ease);
}
.pc:hover h3 {
    color: var(--accent-deep);
}
.pc .body {
    margin-top: 13px;
    font-size: 14.5px;
    line-height: 1.62;
}
.pc-meta {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: auto;
    padding-top: 22px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-40);
}
.pc-meta i {
    font-style: normal;
    opacity: 0.5;
}
.pc-meta .go {
    margin-left: auto;
}

.phero--post h1 {
    max-width: 24ch;
}
.post-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: clamp(24px, 3vw, 38px);
    padding-top: 20px;
    border-top: 1px solid var(--ink-14);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-40);
}
.post-meta i {
    font-style: normal;
    opacity: 0.5;
}

/* ── yazı gövdesi ── */
.post {
    max-width: 70ch;
    margin-inline: auto;
    padding-block: clamp(30px, 4vw, 60px) clamp(50px, 7vw, 110px);
}
.post h2 {
    font-family: var(--f-display);
    font-weight: 600;
    font-stretch: 100%;
    font-size: clamp(1.32rem, 2.3vw, 1.95rem);
    letter-spacing: -0.028em;
    line-height: 1.16;
    margin-top: clamp(38px, 4.4vw, 64px);
    margin-bottom: 16px;
}
.post h2:first-child {
    margin-top: 0;
}
.post h3 {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: clamp(1.05rem, 1.6vw, 1.28rem);
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-top: clamp(26px, 3vw, 40px);
    margin-bottom: 11px;
}
.post p {
    font-size: clamp(1rem, 1.08vw, 1.09rem);
    line-height: 1.78;
    color: var(--ink-60);
    margin-bottom: 15px;
}
.post p strong {
    color: var(--ink);
    font-weight: 600;
}
.post p em {
    font-style: italic;
}
.post ul,
.post ol {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 11px;
}
.post li {
    position: relative;
    padding-left: 26px;
    font-size: clamp(0.97rem, 1.04vw, 1.05rem);
    line-height: 1.7;
    color: var(--ink-60);
}
.post li strong {
    color: var(--ink);
    font-weight: 600;
}
.post ul li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 0.72em;
    width: 11px;
    height: 1px;
    background: var(--accent-deep);
}
.post ol.post-ol {
    counter-reset: po;
}
.post ol.post-ol li {
    counter-increment: po;
    padding-left: 34px;
}
.post ol.post-ol li::before {
    content: counter(po, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0.14em;
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--accent-deep);
}
.post code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.88em;
    background: var(--ink-08);
    padding: 2px 6px;
    border-radius: 4px;
}

/* ══════════════════════════════════════════════════════════════
   İLETİŞİM — form ve bilgi kartları
   ══════════════════════════════════════════════════════════════ */
.ct-grid {
    display: grid;
    gap: clamp(34px, 4.5vw, 72px);
}
@media (min-width: 960px) {
    .ct-grid {
        grid-template-columns: 1.15fr 0.85fr;
        align-items: start;
    }
}

.frm {
    display: grid;
    gap: clamp(16px, 1.9vw, 22px);
}
.fr2 {
    display: grid;
    gap: clamp(16px, 1.9vw, 22px);
}
@media (min-width: 560px) {
    .fr2 {
        grid-template-columns: 1fr 1fr;
    }
}
.fld {
    display: grid;
    gap: 7px;
}
.fld label {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--ink-40);
}
.fld label b {
    color: var(--accent-deep);
}
.fld input,
.fld textarea,
.fld select {
    font-family: var(--f-body);
    font-size: 15px;
    line-height: 1.5;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--ink-14);
    border-radius: var(--r-sm);
    padding: 13px 15px;
    width: 100%;
    transition:
        border-color 0.3s var(--ease),
        box-shadow 0.3s var(--ease);
}
.fld textarea {
    resize: vertical;
    min-height: 120px;
}
.fld select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23000' stroke-width='1.4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 40px;
}
.fld input::placeholder,
.fld textarea::placeholder {
    color: rgba(0, 0, 0, 0.34);
}
.fld input:focus,
.fld textarea:focus,
.fld select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 184, 193, 0.16);
}
.fld.bad input,
.fld.bad textarea {
    border-color: #c8372d;
}
.err {
    font-size: 12.5px;
    line-height: 1.4;
    color: #c8372d;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition:
        max-height 0.3s var(--ease),
        opacity 0.3s;
}
.err.on {
    max-height: 44px;
    opacity: 1;
}
.hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
}

.chk {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    cursor: pointer;
    margin-top: 4px;
}
.chk input {
    width: 19px;
    height: 19px;
    margin-top: 2px;
    accent-color: var(--accent-deep);
    flex: none;
}
.chk span {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--ink-60);
}
.chk a {
    text-decoration: underline;
    text-underline-offset: 3px;
    color: var(--accent-deep);
}
.chk b {
    color: var(--accent-deep);
}

.frm .btn.big {
    justify-self: start;
    margin-top: 6px;
}
.frm-note {
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--ink-40);
    max-width: 52ch;
}
.frm-note b {
    color: var(--accent-deep);
}
.frm-ok {
    border: 1px solid var(--accent);
    background: rgba(0, 184, 193, 0.08);
    border-radius: var(--r-sm);
    padding: 15px 18px;
    font-size: 14.5px;
    line-height: 1.6;
}
.frm-ok b {
    font-weight: 600;
}

.ct-info {
    display: grid;
    gap: 1px;
    background: var(--ink-14);
    border: 1px solid var(--ink-14);
    border-radius: var(--r-sm);
    overflow: hidden;
    align-self: anchor-center;
}
.ct-card {
    background: var(--bg);
    padding: clamp(20px, 2.4vw, 30px);
}
.ct-card h3 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-40);
    margin-bottom: 14px;
}
.ct-card .body {
    font-size: 14.5px;
    line-height: 1.7;
}
.ct-big {
    display: block;
    font-family: var(--f-display);
    font-weight: 500;
    font-stretch: 88%;
    font-size: clamp(1.05rem, 1.9vw, 1.4rem);
    letter-spacing: -0.02em;
    line-height: 1.4;
    transition: color 0.35s var(--ease);
}
.ct-big:hover {
    color: var(--accent-deep);
}
.ct-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 11px;
}
.ct-steps li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 13px;
    align-items: start;
}
.ct-steps span {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--accent-deep);
    padding-top: 3px;
}
.ct-steps p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-60);
}

/* ══════════ ÇEREZ BİLDİRİMİ ══════════ */
.ck {
    position: fixed;
    left: var(--pad);
    right: var(--pad);
    bottom: clamp(14px, 2.4vh, 26px);
    z-index: 130;
    max-width: 640px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 26px);
    flex-wrap: wrap;
    background: var(--dark);
    color: var(--paper);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--r-sm);
    padding: clamp(14px, 1.8vw, 20px) clamp(16px, 2vw, 24px);
    box-shadow: 0 18px 50px -24px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 0.5s var(--ease),
        transform 0.5s var(--ease);
}
.ck.on {
    opacity: 1;
    transform: none;
}
.ck p {
    flex: 1 1 260px;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
}
.ck p b {
    color: var(--paper);
    font-weight: 600;
}
.ck p a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.ck-btn {
    flex: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    background: none;
    color: var(--paper);
    cursor: pointer;
    padding: 9px 20px;
    font-family: var(--f-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    transition:
        background-color 0.35s var(--ease),
        color 0.35s var(--ease);
}
.ck-btn:hover {
    background: var(--paper);
    color: var(--dark);
}
.ck-btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* ══════════ YASAL SAYFALAR ══════════ */
.phero--legal h1 {
    max-width: 18ch;
}
.post.legal {
    max-width: 74ch;
}
.post.legal h2 {
    font-size: clamp(1.15rem, 1.9vw, 1.5rem);
    margin-top: clamp(32px, 3.8vw, 52px);
}
.post.legal h3 {
    font-size: clamp(1rem, 1.4vw, 1.13rem);
    margin-top: clamp(22px, 2.6vw, 32px);
}
.post.legal p,
.post.legal li {
    font-size: 15px;
    line-height: 1.75;
}
.post.legal a {
    color: var(--accent-deep);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ══════════════════════════════════════════════════════════════
   DİL SEÇİCİ — header'da bayrak + kısaltma
   ══════════════════════════════════════════════════════════════ */
.lang {
    position: relative;
    flex: none;
}
.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid currentColor;
    border-radius: 100px;
    background: none;
    color: inherit;
    padding: 6px 11px 6px 8px;
    cursor: pointer;
    font-family: var(--f-body);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    opacity: 0.85;
    transition: opacity 0.35s var(--ease);
}
.lang-btn:hover,
.lang-btn[aria-expanded="true"] {
    opacity: 1;
}
.lang-btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}
.lang-btn img {
    width: 19px;
    height: 13px;
    border-radius: 2px;
    display: block;
    flex: none;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.14);
}
.lang-btn .cv {
    width: 9px;
    height: 9px;
    flex: none;
    transition: transform 0.35s var(--ease);
}
.lang-btn[aria-expanded="true"] .cv {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 10;
    min-width: 186px;
    background: var(--paper);
    border: 1px solid var(--ink-14);
    border-radius: var(--r-sm);
    box-shadow: 0 22px 60px -28px rgba(0, 0, 0, 0.5);
    padding: 6px;
    display: grid;
    gap: 1px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
        opacity 0.3s var(--ease),
        transform 0.3s var(--ease),
        visibility 0.3s;
}
.lang.on .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
}
.lang-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 11px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    transition: background-color 0.25s var(--ease);
}
.lang-menu a:hover {
    background: var(--bg-2);
}
.lang-menu a[aria-current] {
    background: var(--bg-2);
    font-weight: 600;
}
.lang-menu a img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    flex: none;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.14);
}
.lang-menu a b {
    margin-inline-start: auto;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--ink-40);
}
@media (max-width: 1180px) {
    .lang-menu {
        right: auto;
        inset-inline-end: 0;
    }
}

/* menü içinde (burger) dil satırı */
#menu .lang-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: clamp(22px, 3.4vh, 38px);
}
#menu .lang-row a {
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 100px;
    padding: 7px 13px !important;
    font-family: var(--f-body) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em !important;
    text-transform: none !important;
    color: rgba(255, 255, 255, 0.78) !important;
    transform: none !important;
    opacity: 1 !important;
}
#menu .lang-row a[aria-current] {
    border-color: var(--accent);
    color: var(--paper) !important;
}
#menu .lang-row a::before {
    display: none !important;
}
#menu .lang-row img {
    width: 18px;
    height: 12px;
    border-radius: 2px;
}

/* ══════════════════════════════════════════════════════════════
   SAĞDAN SOLA (ARAPÇA)
   Yön bağımlı bütün değerler mantıksal özelliklere çevrildi;
   yalnızca yönü sabit olanlar burada ters çevriliyor.
   ══════════════════════════════════════════════════════════════ */
[dir="rtl"] .arw,
[dir="rtl"] .go svg,
[dir="rtl"] .pc-meta .go {
    transform: scaleX(-1);
}
[dir="rtl"] .c-title .arw {
    transform: scaleX(-1);
}
[dir="rtl"] .nav-links a::after {
    transform-origin: left;
}
[dir="rtl"] .nav-links a:hover::after,
[dir="rtl"] .nav-links a[aria-current]::after {
    transform-origin: right;
}
[dir="rtl"] .hero-tag[style*="right"] {
    text-align: left !important;
}
[dir="rtl"] .lang-menu {
    right: auto;
    left: 0;
}
[dir="rtl"] .lang-menu a b {
    margin-inline-start: auto;
}
[dir="rtl"] .scroll-cue .bar::after {
    animation-direction: reverse;
}
[dir="rtl"] .post li {
    padding-left: 0;
    padding-right: 26px;
}
[dir="rtl"] .post ul li::before {
    left: auto;
    right: 2px;
}
[dir="rtl"] .post ol.post-ol li {
    padding-left: 0;
    padding-right: 34px;
}
[dir="rtl"] .post ol.post-ol li::before {
    left: auto;
    right: 0;
}
[dir="rtl"] .val-b li {
    padding-left: 0;
    padding-right: 18px;
}
[dir="rtl"] .val-b li::before {
    left: auto;
    right: 0;
}
[dir="rtl"] .ab-list li,
[dir="rtl"] .ct-steps li,
[dir="rtl"] .tco-i {
    direction: rtl;
}
[dir="rtl"] .menu-legal,
[dir="rtl"] .f-legal {
    direction: rtl;
}
[dir="rtl"] .crumb {
    direction: rtl;
}
[dir="rtl"] #menu a.sub {
    padding-left: 0;
    padding-inline-start: clamp(14px, 3vw, 26px);
}
[dir="rtl"] #menu a.sub::before {
    left: auto;
    right: 0;
}
[dir="rtl"] .marq-in {
    direction: ltr;
}
[dir="rtl"] .fld select {
    background-position: left 15px center;
    padding-right: 15px;
    padding-left: 40px;
}
[dir="rtl"] .chk {
    direction: rtl;
}
[dir="rtl"] .ck {
    direction: rtl;
}
[dir="rtl"] .fi {
    transform: scaleX(-1);
}

/* ══════════ REDUCED MOTION ══════════ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
    .rv-line > i {
        transform: none !important;
    }
    .fade {
        opacity: 1 !important;
        transform: none !important;
    }
}

.end-cta {
    border-top: solid 1px var(--ink-14);
}
