/* =====================================================================
   Kentsel Dönüşüm & Taahhüt — Ön Yüz Stil Dosyası
   Palet: beyaz / antrasit / koyu lacivert + blueprint çizgi mavisi
   Tipografi: Space Grotesk (başlık) · Plus Jakarta Sans (metin) · IBM Plex Mono (etiket)
   ===================================================================== */

:root {
    --ink-950: #060D18;
    --ink-900: #0A1626;
    --ink-800: #10233E;
    --anthracite: #20242B;
    --paper: #F5F7FA;
    --paper-2: #ECF0F5;
    --text: #1A2433;
    --text-dim: #5D6B80;
    --line-ink: rgba(16, 32, 58, .12);
    --bp: #5E86C4;
    --bp-soft: #BBD3F4;
    --bp-dim: rgba(140, 176, 226, .45);
    --ease: cubic-bezier(.32, .72, 0, 1);
    --font-display: "Space Grotesk", system-ui, sans-serif;
    --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
    --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--paper);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

::selection { background: var(--ink-900); color: #fff; }

:focus-visible {
    outline: 2px solid #35619E;
    outline-offset: 3px;
    border-radius: 4px;
}

img { max-width: 100%; height: auto; }

/* ---- Giriş animasyonu (IntersectionObserver ile .in eklenir) ---- */
[data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    filter: blur(6px);
    transition:
        opacity .9s var(--ease),
        transform .9s var(--ease),
        filter .9s var(--ease);
    transition-delay: var(--rd, 0s);
    will-change: transform, opacity;
}
[data-reveal].in { opacity: 1; transform: none; filter: none; }
body:not(.js) [data-reveal] { opacity: 1; transform: none; filter: none; }

/* =====================================================================
   ÜST MENÜ — yüzen cam hap
   ===================================================================== */
.site-nav {
    position: fixed;
    top: 14px;
    inset-inline: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 0 16px;
    pointer-events: none;
}

.nav-pill {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    width: 100%;
    max-width: 1180px;
    padding: 10px 10px 10px 20px;
    border-radius: 999px;
    background: rgba(7, 15, 28, .58);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    backdrop-filter: blur(18px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, .09);
    box-shadow: 0 14px 44px rgba(3, 9, 18, .38);
    transition: box-shadow .6s var(--ease), background .6s var(--ease);
}
body.scrolled .nav-pill { background: rgba(6, 13, 24, .78); }

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #fff;
    text-decoration: none;
    font: 600 15.5px/1 var(--font-display);
    letter-spacing: .01em;
    white-space: nowrap;
}
.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .22);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.brand-mark svg { width: 17px; height: 17px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}
.nav-links a {
    position: relative;
    color: rgba(240, 245, 252, .72);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: .01em;
    padding: 6px 0;
    transition: color .45s var(--ease);
    white-space: nowrap;
}
.nav-links a::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 1px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .45s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 10px;
    font: 500 11px/1 var(--font-mono);
    letter-spacing: .12em;
}
.lang-switch a {
    color: rgba(240, 245, 252, .45);
    text-decoration: none;
    padding: 4px 2px;
    transition: color .4s var(--ease);
}
.lang-switch a:hover { color: rgba(240, 245, 252, .85); }
.lang-switch a.on {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .7);
}

/* Nav CTA — hap içinde hap */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 7px 7px 7px 20px;
    background: #fff;
    color: var(--ink-900);
    border-radius: 999px;
    text-decoration: none;
    font: 600 13.5px/1 var(--font-body);
    transition: transform .5s var(--ease);
    white-space: nowrap;
}
.btn-cta:active { transform: scale(.96); }
.btn-cta:hover { color: var(--ink-950); }
.cta-ico {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(10, 22, 38, .09);
    display: grid;
    place-items: center;
    transition: transform .5s var(--ease);
}
.cta-ico svg { width: 13px; height: 13px; }
.btn-cta:hover .cta-ico { transform: translate(2px, -2px); }

/* Hamburger (mobil) */
.nav-burger {
    display: none;
    position: relative;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}
.nav-burger span {
    position: absolute;
    left: 12px;
    right: 12px;
    height: 1.6px;
    background: #fff;
    transition: transform .5s var(--ease), top .5s var(--ease);
}
.nav-burger span:nth-child(1) { top: 16px; }
.nav-burger span:nth-child(2) { top: 24px; }
body.menu-open .nav-burger span:nth-child(1) { top: 20px; transform: rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { top: 20px; transform: rotate(-45deg); }

/* Mobil tam ekran menü */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 44px;
    background: rgba(5, 11, 21, .9);
    -webkit-backdrop-filter: blur(26px);
    backdrop-filter: blur(26px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .55s var(--ease), visibility 0s .55s;
}
body.menu-open .mobile-menu {
    opacity: 1;
    visibility: visible;
    transition: opacity .55s var(--ease);
}
.mobile-menu nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.mobile-menu nav a {
    color: #fff;
    text-decoration: none;
    font: 600 clamp(26px, 6.4vw, 36px)/1.15 var(--font-display);
    letter-spacing: -.01em;
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .6s var(--ease), transform .6s var(--ease), color .4s var(--ease);
    transition-delay: 0s;
}
body.menu-open .mobile-menu nav a {
    opacity: 1;
    transform: none;
    transition-delay: calc(.08s + var(--i, 0) * 60ms);
}
.mobile-menu nav a:hover { color: var(--bp-soft); }
.mobile-menu .mm-cta {
    font-size: 17px;
    font-family: var(--font-body);
    padding: 13px 30px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 999px;
}
.mm-langs {
    display: flex;
    gap: 22px;
    font: 500 12.5px/1 var(--font-mono);
    letter-spacing: .1em;
}
.mm-langs a {
    color: rgba(240, 245, 252, .55);
    text-decoration: none;
    padding-bottom: 3px;
}
.mm-langs a.on {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .7);
}

/* =====================================================================
   HERO — kendini çizen blueprint
   ===================================================================== */
.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(1100px 760px at 76% 14%, #10233E 0%, transparent 62%),
        linear-gradient(178deg, var(--ink-900) 0%, var(--ink-950) 100%);
    padding: 150px 0 130px;
}

.hero-bp {
    position: absolute;
    inset-inline-end: -7%;
    bottom: -9%;
    width: min(900px, 78vw);
    opacity: .4;
    pointer-events: none;
    transition: transform .8s var(--ease);
    will-change: transform;
}
[dir="rtl"] .hero-bp { transform: scaleX(-1); }

.bp-svg { width: 100%; height: auto; display: block; }
.bp-grid line {
    stroke: rgba(126, 166, 220, .10);
    stroke-width: .6;
    opacity: 0;
    animation: bpFade 2.4s var(--ease) .2s forwards;
}
.bp-draw line,
.bp-draw rect,
.bp-draw polyline,
.bp-draw circle {
    stroke: var(--bp);
    stroke-width: 1.15;
    fill: none;
    stroke-dasharray: 2400;
    stroke-dashoffset: 2400;
    animation: bpDraw 2.6s var(--ease) forwards;
    animation-delay: calc(.35s + var(--d, 0s));
}
.bp-dims line { stroke-width: .9; }
.bp-labels text {
    font: 500 13px var(--font-mono);
    letter-spacing: .12em;
    fill: var(--bp-dim);
    opacity: 0;
    animation: bpFade 1.4s var(--ease) 2.1s forwards;
}
.bp-axis-labels text { font-size: 12px; animation-delay: 2.5s; }

@keyframes bpDraw { to { stroke-dashoffset: 0; } }
@keyframes bpFade { to { opacity: 1; } }

.hero-inner { position: relative; z-index: 2; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    font: 500 11.5px/1.5 var(--font-mono);
    letter-spacing: .26em;
    text-transform: uppercase;
    color: rgba(226, 236, 249, .62);
    margin-bottom: 26px;
}
.eb-tick {
    width: 30px;
    height: 8px;
    border-bottom: 1px solid var(--bp-dim);
    border-left: 1px solid var(--bp-dim);
    border-right: 1px solid var(--bp-dim);
    transform: translateY(-3px);
    flex-shrink: 0;
}

.hero-title {
    font: 600 clamp(1.55rem, 3.7vw, 3rem)/1.16 var(--font-display);
    letter-spacing: -.01em;
    margin: 0 0 26px;
    max-width: 24ch;
}
.ht-em { color: var(--bp-soft); }

/* =====================================================================
   HERO EKLERİ — style.css dosyasında ".ht-em { color: var(--bp-soft); }"
   satırının hemen ALTINA yapıştırın
   ===================================================================== */

/* Kırmızı üst slogan */
.ht-red {
    display: block;
    color: #E4503A;
    font-size: 1em;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    margin-bottom: 0;
}

/* Hero görseli (panelden hero_image ayarı doluysa) */
.hero.has-visual .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: center;
}

.hero-visual { position: relative; }

.hv-frame {
    display: block;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 1.65rem;
    padding: 8px;
    box-shadow: 0 44px 90px -50px rgba(3, 9, 18, .8);
}
.hv-frame img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 1.2rem;
    display: block;
}

/* Blueprint köşe işaretleri — tasarım diline uyum */
.hero-visual::before,
.hero-visual::after {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    border: 1px solid var(--bp-dim);
    pointer-events: none;
}
.hero-visual::before { top: -10px; inset-inline-start: -10px; border-right: 0; border-bottom: 0; }
.hero-visual::after  { bottom: -10px; inset-inline-end: -10px; border-left: 0; border-top: 0; }

@media (max-width: 991.98px) {
    .hero.has-visual .hero-inner { grid-template-columns: 1fr; }
    .hv-frame img { aspect-ratio: 16 / 10; }
}

.ht-red {
    display: block;
    color: #E4503A;
    font-size: 1em;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    margin-bottom: 0;
}

.hero-text {
    font-size: clamp(15.5px, 1.4vw, 17.5px);
    line-height: 1.7;
    color: rgba(228, 237, 248, .74);
    max-width: 560px;
    margin: 0 0 42px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.hs-line {
    width: 1px;
    height: 42px;
    background: linear-gradient(rgba(255,255,255,0), rgba(255,255,255,.6));
    animation: scrollPulse 2.4s var(--ease) infinite;
    transform-origin: top;
}
.hs-text {
    font: 500 10.5px/1 var(--font-mono);
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(228, 237, 248, .55);
}
@keyframes scrollPulse {
    0%, 100% { transform: scaleY(.35); opacity: .4; }
    50% { transform: scaleY(1); opacity: 1; }
}

/* =====================================================================
   HAP BUTONLAR — iç içe ok dairesi
   ===================================================================== */
.btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 8px 8px 8px 26px;
    border-radius: 999px;
    text-decoration: none;
    font: 600 15px/1 var(--font-body);
    border: 0;
    cursor: pointer;
    transition: transform .5s var(--ease), background-color .5s var(--ease), color .5s var(--ease);
}
.btn-pill:active { transform: scale(.965); }

.pill-ico {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: transform .5s var(--ease);
    flex-shrink: 0;
}
.pill-ico svg { width: 15px; height: 15px; }
.btn-pill:hover .pill-ico { transform: translate(3px, -2px) scale(1.04); }
[dir="rtl"] .btn-pill:hover .pill-ico { transform: translate(-3px, -2px) scale(1.04); }

.btn-light-solid { background: #fff; color: var(--ink-900); }
.btn-light-solid:hover { color: var(--ink-950); }
.btn-light-solid .pill-ico { background: rgba(10, 22, 38, .09); color: var(--ink-900); }

.btn-ink { background: var(--ink-900); color: #fff; }
.btn-ink:hover { background: var(--ink-950); color: #fff; }
.btn-ink .pill-ico { background: rgba(255, 255, 255, .14); color: #fff; }

.btn-ghost {
    padding: 15px 28px;
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    background: transparent;
}
.btn-ghost:hover { background: rgba(255, 255, 255, .08); color: #fff; }

/* =====================================================================
   BÖLÜM ORTAK — ölçü çizgisi başlıklar
   ===================================================================== */
.sec { padding: clamp(90px, 11vw, 150px) 0; }
.sec-paper { background: var(--paper); }
.sec-ink {
    background: linear-gradient(180deg, var(--ink-900) 0%, var(--ink-950) 100%);
    color: #fff;
}
.sec-refs { background: var(--paper-2); padding: 76px 0; }
.sec-cta { background: var(--paper); padding-top: 0; }

.dim-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 26px;
    color: var(--text-dim);
}
.dim-head::before,
.dim-head::after {
    content: "";
    height: 9px;
    border-bottom: 1px solid currentColor;
    border-left: 1px solid currentColor;
    border-right: 1px solid currentColor;
    opacity: .38;
    transform: translateY(-4px);
}
.dim-head::before { width: 36px; flex-shrink: 0; }
.dim-head::after { flex: 1; }
.dim-label {
    font: 500 11px/1 var(--font-mono);
    letter-spacing: .3em;
    text-transform: uppercase;
    white-space: nowrap;
}
.dim-light { color: rgba(226, 236, 249, .5); }

.sec-title {
    font: 600 clamp(1.9rem, 3.4vw, 3rem)/1.14 var(--font-display);
    letter-spacing: -.017em;
    color: var(--ink-900);
    margin: 0 0 18px;
    max-width: 22ch;
}
.sec-title-light { color: #fff; }

.sec-lead {
    font-size: 16.5px;
    line-height: 1.75;
    color: var(--text-dim);
    max-width: 620px;
    margin: 0;
}
.sec-lead-light { color: rgba(228, 237, 248, .68); }

/* İstatistikler */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
    margin-top: 78px;
    padding-top: 44px;
    border-top: 1px solid var(--line-ink);
}
.stat { display: flex; flex-direction: column; }
.stat-num,
.stat-plus {
    font: 600 clamp(2.5rem, 5vw, 3.9rem)/1 var(--font-display);
    letter-spacing: -.02em;
    color: var(--ink-900);
    display: inline;
}
.stat-num { display: inline-block; }
.stat-plus { color: var(--bp); }
.stat-label {
    margin-top: 12px;
    font: 500 11px/1.5 var(--font-mono);
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--text-dim);
}

/* =====================================================================
   HİZMETLER — asimetrik bento (çift çerçeve kartlar)
   ===================================================================== */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
    margin-top: 48px;
}
.svc-card { grid-column: span 4; }
.svc-card:nth-child(1) { grid-column: span 5; }
.svc-card:nth-child(2) { grid-column: span 4; }
.svc-card:nth-child(3) { grid-column: span 3; }
.svc-card:nth-child(4) { grid-column: span 3; }
.svc-card:nth-child(5) { grid-column: span 4; }
.svc-card:nth-child(6) { grid-column: span 5; }

.svc-card {
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 1.65rem;
    padding: 7px;
    transition: transform .6s var(--ease), border-color .6s var(--ease);
}
.svc-card:hover {
    transform: translateY(-5px);
    border-color: rgba(187, 211, 244, .28);
}
.svc-inner {
    height: 100%;
    background: linear-gradient(165deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .015));
    border-radius: 1.2rem;
    padding: 30px 28px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .09);
}
.svc-ico {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(187, 211, 244, .26);
    display: grid;
    place-items: center;
    color: var(--bp-soft);
    transition: transform .6s var(--ease);
}
.svc-ico svg { width: 25px; height: 25px; }
.svc-card:hover .svc-ico { transform: translateY(-2px) scale(1.05); }
.svc-title {
    font: 600 18px/1.3 var(--font-display);
    color: #fff;
    margin: 20px 0 9px;
}
.svc-text {
    font-size: 14.5px;
    line-height: 1.68;
    color: rgba(228, 237, 248, .6);
    margin: 0;
}

/* Açık zeminde hizmet kartı (hizmetler sayfası) */
.svc-card-paper {
    background: rgba(16, 32, 58, .035);
    border-color: var(--line-ink);
}
.svc-card-paper:hover { border-color: rgba(16, 32, 58, .26); }
.svc-card-paper .svc-inner {
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 20px 46px -32px rgba(16, 32, 58, .3);
}
.svc-card-paper .svc-title { color: var(--ink-900); }
.svc-card-paper .svc-text { color: var(--text-dim); }

/* =====================================================================
   PROJE KARTLARI
   ===================================================================== */
.prj-row { margin-top: 44px; }

.prj-shell {
    background: rgba(16, 32, 58, .035);
    border: 1px solid var(--line-ink);
    border-radius: 1.6rem;
    padding: 8px;
    transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.prj-card:hover .prj-shell {
    transform: translateY(-6px);
    box-shadow: 0 34px 70px -40px rgba(16, 32, 58, .38);
}
.prj-media {
    position: relative;
    border-radius: 1.15rem;
    overflow: hidden;
    aspect-ratio: 16 / 11;
    background: var(--ink-900);
}
.prj-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.1s var(--ease);
}
.prj-card:hover .prj-media img { transform: scale(1.04); }
.prj-status {
    position: absolute;
    top: 12px;
    inset-inline-start: 12px;
    font: 500 10.5px/1 var(--font-mono);
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(8, 17, 31, .8);
    color: #fff;
}
.prj-status.is-done { background: rgba(255, 255, 255, .92); color: var(--ink-900); }

.prj-body { padding: 20px 16px 13px; background: #fff; margin-top: 8px; border-radius: 1.15rem; }
.prj-title {
    font: 600 19px/1.3 var(--font-display);
    color: var(--ink-900);
    margin: 0;
}
.prj-loc {
    font: 500 11px/1.5 var(--font-mono);
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin: 7px 0 16px;
}
.prj-meta {
    display: flex;
    gap: 26px;
    padding-top: 14px;
    border-top: 1px dashed rgba(16, 32, 58, .18);
}
.prj-meta span {
    display: flex;
    flex-direction: column;
    font: 500 10px/1.5 var(--font-mono);
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-dim);
}
.prj-meta em {
    font: 600 16.5px/1.2 var(--font-display);
    font-style: normal;
    letter-spacing: 0;
    color: var(--ink-900);
    margin-bottom: 4px;
    text-transform: none;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ink-900);
    text-decoration: none;
    font: 600 12px/1 var(--font-mono);
    letter-spacing: .2em;
    text-transform: uppercase;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(16, 32, 58, .3);
    transition: border-color .5s var(--ease);
}
.link-arrow svg { width: 14px; height: 14px; transition: transform .5s var(--ease); }
.link-arrow:hover { color: var(--ink-950); border-color: var(--ink-900); }
.link-arrow:hover svg { transform: translateX(3px); }
[dir="rtl"] .link-arrow svg { transform: scaleX(-1); }
[dir="rtl"] .link-arrow:hover svg { transform: scaleX(-1) translateX(3px); }

/* =====================================================================
   REFERANSLAR
   ===================================================================== */
.ref-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px 46px;
    margin-top: 30px;
}
.ref-logo { display: inline-flex; }
.ref-logo img {
    height: 40px;
    width: auto;
    opacity: .5;
    filter: grayscale(1);
    transition: opacity .5s var(--ease), filter .5s var(--ease), transform .5s var(--ease);
}
.ref-logo:hover img { opacity: 1; filter: none; transform: translateY(-2px); }

.ref-card {
    background: #fff;
    border: 1px solid var(--line-ink);
    border-radius: 1.25rem;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    height: 100%;
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.ref-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -34px rgba(16, 32, 58, .3); }
.ref-card img { height: 38px; width: auto; }
.ref-name {
    font: 500 11px/1.4 var(--font-mono);
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-dim);
    text-align: center;
}

/* =====================================================================
   CTA BANDI
   ===================================================================== */
.cta-band {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ink-800), var(--ink-950) 78%);
    border-radius: 2rem;
    padding: clamp(42px, 6vw, 74px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 38px;
    flex-wrap: wrap;
    color: #fff;
}
.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(126, 166, 220, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(126, 166, 220, .07) 1px, transparent 1px);
    background-size: 54px 54px;
    pointer-events: none;
}
.cta-copy { position: relative; max-width: 640px; }
.cta-title {
    font: 600 clamp(1.55rem, 2.7vw, 2.25rem)/1.25 var(--font-display);
    letter-spacing: -.015em;
    margin: 0 0 12px;
}
.cta-text { color: rgba(228, 237, 248, .7); margin: 0; font-size: 15.5px; }
.cta-band .btn-pill { position: relative; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer {
    background: var(--ink-950);
    color: rgba(228, 237, 248, .72);
    padding: 90px 0 34px;
}
.brand-footer { margin-bottom: 20px; }
.footer-desc {
    font-size: 14.5px;
    line-height: 1.72;
    color: rgba(228, 237, 248, .55);
    max-width: 320px;
    margin: 0 0 22px;
}
.footer-social { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-social a {
    color: rgba(228, 237, 248, .6);
    text-decoration: none;
    font: 500 12px/1 var(--font-mono);
    letter-spacing: .1em;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    padding-bottom: 3px;
    transition: color .4s var(--ease), border-color .4s var(--ease);
}
.footer-social a:hover { color: #fff; border-color: rgba(255, 255, 255, .6); }

.footer-head {
    font: 500 11px/1 var(--font-mono);
    letter-spacing: .26em;
    text-transform: uppercase;
    color: rgba(228, 237, 248, .42);
    margin: 6px 0 20px;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
    color: rgba(228, 237, 248, .72);
    text-decoration: none;
    font-size: 14.5px;
    transition: color .4s var(--ease);
}
.footer-links a:hover { color: #fff; }

.footer-contact { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; font-size: 14.5px; }
.footer-contact li { display: flex; gap: 16px; align-items: baseline; }
.footer-contact span {
    font: 500 10px/1.6 var(--font-mono);
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(228, 237, 248, .4);
    min-width: 96px;
    flex-shrink: 0;
}
.footer-contact a { color: rgba(228, 237, 248, .82); text-decoration: none; }
.footer-contact a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 66px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: 12.5px;
    color: rgba(228, 237, 248, .45);
}
.footer-dim {
    width: 130px;
    height: 9px;
    border-bottom: 1px solid rgba(126, 166, 220, .4);
    border-left: 1px solid rgba(126, 166, 220, .4);
    border-right: 1px solid rgba(126, 166, 220, .4);
}

/* =====================================================================
   İÇ SAYFA BAŞLIĞI
   ===================================================================== */
.page-head {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(900px 560px at 80% 0%, #10233E 0%, transparent 60%),
        linear-gradient(178deg, var(--ink-900), var(--ink-950));
    color: #fff;
    padding: 180px 0 92px;
}
.ph-bp {
    position: absolute;
    inset-inline-end: -14%;
    top: -12%;
    width: 640px;
    opacity: .16;
    pointer-events: none;
}
[dir="rtl"] .ph-bp { transform: scaleX(-1); }
.page-head .container-xl { position: relative; z-index: 2; }
.ph-title {
    font: 600 clamp(2.15rem, 4.6vw, 3.7rem)/1.08 var(--font-display);
    letter-spacing: -.02em;
    margin: 0;
    max-width: 18ch;
}
.ph-lead {
    margin: 18px 0 0;
    font-size: 16.5px;
    line-height: 1.7;
    color: rgba(228, 237, 248, .72);
    max-width: 620px;
}

/* =====================================================================
   METİN İÇERİĞİ (prose)
   ===================================================================== */
.prose { max-width: 800px; font-size: 16.5px; line-height: 1.8; color: #2A3546; }
.prose-intro { margin-bottom: 52px; }
.prose h2 {
    font: 600 27px/1.25 var(--font-display);
    letter-spacing: -.015em;
    color: var(--ink-900);
    margin: 44px 0 15px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font: 600 21px/1.3 var(--font-display); color: var(--ink-900); margin: 34px 0 12px; }
.prose p { margin: 0 0 18px; }
.prose ul, .prose ol { padding-inline-start: 22px; margin: 0 0 18px; }
.prose li { margin-bottom: 8px; }
.prose a { color: #234B82; text-underline-offset: 3px; }
.prose strong { color: var(--ink-900); }

/* =====================================================================
   SSS
   ===================================================================== */
.faq-list { max-width: 840px; }
.faq-item {
    background: #fff;
    border: 1px solid var(--line-ink);
    border-radius: 1.15rem;
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color .4s var(--ease);
}
.faq-item[open] { border-color: rgba(16, 32, 58, .3); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 21px 26px;
    font: 600 16px/1.4 var(--font-body);
    color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.faq-item summary i::before,
.faq-item summary i::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 1.4px;
    background: var(--ink-900);
    transform: translate(-50%, -50%);
    transition: transform .5s var(--ease);
}
.faq-item summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] summary i::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-answer {
    padding: 0 26px 24px;
    color: var(--text-dim);
    font-size: 15.5px;
    line-height: 1.75;
}

/* =====================================================================
   İLETİŞİM
   ===================================================================== */
.contact-card {
    background: #fff;
    border: 1px solid var(--line-ink);
    border-radius: 1.5rem;
    padding: 34px 32px;
}
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li {
    display: flex;
    gap: 18px;
    align-items: baseline;
    padding: 14px 0;
    border-bottom: 1px dashed rgba(16, 32, 58, .14);
    font-size: 15px;
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list span {
    font: 500 10.5px/1.7 var(--font-mono);
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--text-dim);
    min-width: 112px;
    flex-shrink: 0;
}
.contact-list a { color: var(--ink-900); text-decoration: none; font-weight: 500; }
.contact-list a:hover { text-decoration: underline; text-underline-offset: 3px; }

.map-frame {
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--line-ink);
    background: var(--paper-2);
}
.map-frame iframe { width: 100%; height: 430px; display: block; border: 0; }

/* =====================================================================
   TEKLİF FORMU
   ===================================================================== */
.form-shell {
    background: rgba(16, 32, 58, .045);
    border: 1px solid rgba(16, 32, 58, .08);
    border-radius: 1.9rem;
    padding: 10px;
}
.form-core {
    background: #fff;
    border-radius: 1.4rem;
    padding: clamp(26px, 4.5vw, 48px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 34px 76px -46px rgba(16, 32, 58, .34);
}
.form-label {
    font: 500 11px/1 var(--font-mono);
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 9px;
}
.form-control {
    border: 1px solid rgba(16, 32, 58, .16);
    border-radius: .95rem;
    padding: 13px 16px;
    font-size: 15px;
    background: var(--paper);
    color: var(--text);
    transition: border-color .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease);
}
.form-control:focus {
    border-color: var(--ink-800);
    box-shadow: 0 0 0 4px rgba(24, 61, 108, .12);
    background: #fff;
    color: var(--text);
}
.form-control::placeholder { color: #9AA6B7; }

.form-alert {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    border-radius: 1.15rem;
    padding: 17px 21px;
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 24px;
}
.form-alert svg { width: 21px; height: 21px; flex-shrink: 0; margin-top: 1px; }
.form-alert.is-ok { background: #EAF5EE; color: #1E5B38; border: 1px solid #CBE5D4; }
.form-alert.is-err { background: #FBEDEC; color: #8C2F28; border: 1px solid #F0D2CF; }

/* Bot tuzağı — ekran dışı */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* =====================================================================
   HATA SAYFALARI
   ===================================================================== */
.err-wrap {
    min-height: 72vh;
    display: flex;
    align-items: center;
    padding: 170px 0 110px;
}
.err-code {
    font: 500 13px/1 var(--font-mono);
    letter-spacing: .42em;
    color: var(--text-dim);
    margin-bottom: 16px;
}
.err-title {
    font: 600 clamp(2rem, 4.4vw, 3.2rem)/1.1 var(--font-display);
    letter-spacing: -.02em;
    color: var(--ink-900);
    margin-bottom: 14px;
}
.err-text { color: var(--text-dim); font-size: 16px; margin-bottom: 34px; }

/* =====================================================================
   DUYARLILIK
   ===================================================================== */
@media (max-width: 1199.98px) {
    .nav-links { gap: 18px; }
}

@media (max-width: 991.98px) {
    .nav-links, .lang-switch { display: none; }
    .nav-burger { display: block; }
    .nav-pill { max-width: 640px; }

    .svc-card,
    .svc-card:nth-child(1),
    .svc-card:nth-child(2),
    .svc-card:nth-child(3),
    .svc-card:nth-child(4),
    .svc-card:nth-child(5),
    .svc-card:nth-child(6) { grid-column: span 6; }

    .hero-bp { opacity: .22; width: 120%; inset-inline-end: -32%; bottom: -6%; }
    .stats { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}

@media (max-width: 767.98px) {
    .btn-cta { display: none; }
    .brand-text { font-size: 14px; max-width: 46vw; overflow: hidden; text-overflow: ellipsis; }

    .hero { padding: 130px 0 110px; }
    .hero-actions .btn-pill { width: 100%; justify-content: space-between; }
    .hero-actions .btn-ghost { justify-content: center; }

    .svc-card,
    .svc-card:nth-child(1),
    .svc-card:nth-child(2),
    .svc-card:nth-child(3),
    .svc-card:nth-child(4),
    .svc-card:nth-child(5),
    .svc-card:nth-child(6) { grid-column: span 12; }

    .stats { grid-template-columns: 1fr; gap: 30px; }
    .cta-band { padding: 36px 26px; }
    .cta-band .btn-pill { width: 100%; justify-content: space-between; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .page-head { padding: 150px 0 70px; }
}

/* =====================================================================
   HAREKET AZALTMA
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    [data-reveal] { opacity: 1; transform: none; filter: none; transition: none; }
    .bp-grid line, .bp-labels text { animation: none; opacity: 1; }
    .bp-draw line, .bp-draw rect, .bp-draw polyline, .bp-draw circle {
        animation: none;
        stroke-dasharray: none;
        stroke-dashoffset: 0;
    }
    .hs-line { animation: none; }
    .hero-bp { transition: none; }
    * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* =====================================================================
   FAZ 3 — Projeler açılır menü, kart bağlantısı ve proje detay sayfası
   ===================================================================== */

/* Liste kartı artık bağlantı */
.prj-shell { display: block; text-decoration: none; color: inherit; }
.prj-more {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 12px; font: 600 12.5px/1 var(--font-display);
    color: var(--ink-900); letter-spacing: .02em;
}
.prj-more svg { width: 15px; height: 15px; transition: transform .45s var(--ease); }
.prj-card:hover .prj-more svg { transform: translateX(3px); }

/* Üst menü açılır (Projeler) */
.nav-dd { position: relative; display: inline-flex; }
.nav-dd-toggle {
    display: inline-flex; align-items: center; gap: 6px;
    color: rgba(240, 245, 252, .72); text-decoration: none;
    font-size: 13.5px; font-weight: 500; padding: 6px 0;
    transition: color .45s var(--ease); white-space: nowrap; cursor: pointer;
}
.nav-dd-toggle:hover, .nav-dd-toggle.active, .nav-dd:hover .nav-dd-toggle { color: #fff; }
.dd-caret { width: 10px; height: 6px; transition: transform .45s var(--ease); }
.nav-dd:hover .dd-caret { transform: rotate(180deg); }
.nav-dd-menu {
    position: absolute; top: calc(100% + 14px); inset-inline-start: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 224px; background: #fff; border: 1px solid var(--line-ink);
    border-radius: 1rem; padding: 8px;
    box-shadow: 0 30px 60px -30px rgba(6, 13, 24, .5);
    display: flex; flex-direction: column; gap: 2px;
    opacity: 0; visibility: hidden;
    transition: opacity .35s var(--ease), transform .35s var(--ease), visibility 0s .35s;
    z-index: 60;
}
.nav-dd-menu::before { content: ""; position: absolute; top: -14px; inset-inline: 0; height: 14px; }
.nav-dd:hover .nav-dd-menu, .nav-dd:focus-within .nav-dd-menu {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
    transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.nav-dd-menu a {
    display: block; padding: 10px 12px; border-radius: .6rem;
    color: var(--ink-800); text-decoration: none; font-size: 13.5px; font-weight: 500;
    transition: background .3s var(--ease), color .3s var(--ease);
}
.nav-dd-menu a::after { display: none; }
.nav-dd-menu a:hover, .nav-dd-menu a.active { background: var(--paper-2); color: var(--ink-950); }

/* Mobil menü: grup başlığı + alt bağlantı */
.mobile-menu .mm-group {
    display: block; margin-top: 10px;
    font: 600 11px/1 var(--font-display); letter-spacing: .18em;
    text-transform: uppercase; opacity: .45;
}
.mobile-menu .mm-sub { padding-inline-start: 18px; }

/* Proje detay sayfası */
.prjd-back { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--ink-800); font: 600 13px/1 var(--font-display); margin-bottom: 22px; }
.prjd-back svg { width: 16px; height: 16px; }
.prjd-back:hover { color: var(--ink-950); }
.prjd-top { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.prjd-top .prj-status { position: static; }
.prjd-loc { color: var(--text); font-size: 14.5px; font-weight: 500; }
.prjd-stats { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.prjd-stat { background: rgba(16, 32, 58, .04); border: 1px solid var(--line-ink); border-radius: 1rem; padding: 14px 20px; min-width: 132px; }
.prjd-stat em { display: block; font: 600 24px/1 var(--font-display); color: var(--ink-900); font-style: normal; }
.prjd-stat span { font-size: 12px; color: var(--text); opacity: .7; }
.prjd-grid { margin-bottom: 20px; }
.prjd-cover { margin: 0 0 24px; border-radius: 1.4rem; overflow: hidden; border: 1px solid var(--line-ink); }
.prjd-cover img { width: 100%; height: auto; display: block; }
.prjd-prose { max-width: none; }
.prjd-side-card { background: #fff; border: 1px solid var(--line-ink); border-radius: 1.2rem; padding: 20px; margin-bottom: 18px; box-shadow: 0 24px 50px -40px rgba(16, 32, 58, .3); }
.prjd-side-title { margin: 0 0 12px; }
.prjd-map { border-radius: .9rem; overflow: hidden; aspect-ratio: 4/3; }
.prjd-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.prjd-cta-card p { margin: 0 0 14px; color: var(--text); font-size: 14.5px; }
.prjd-gallery-wrap { margin-top: 26px; }
.prjd-gallery-title { margin: 0 0 18px; }
.prjd-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.prjd-shot { display: block; border-radius: 1rem; overflow: hidden; border: 1px solid var(--line-ink); aspect-ratio: 4/3; }
.prjd-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.prjd-shot:hover img { transform: scale(1.05); }

/* Panelden yüklenen logo (üst menü + alt bilgi) */
.brand-logo { height: 34px; width: auto; max-width: 220px; object-fit: contain; display: block; }
.brand-footer .brand-logo { height: 42px; }
@media (max-width: 767.98px) { .brand-logo { height: 30px; } }

/* Quill editör çıktısı (liste/hizalama) ön yüzde düzgün görünsün */
.prose .ql-align-center { text-align: center; }
.prose .ql-align-right { text-align: right; }
.prose .ql-align-justify { text-align: justify; }
.prose ol { padding-left: 1.4em; }
.prose ol li[data-list="bullet"] { list-style-type: disc; }
.prose ol li[data-list="ordered"] { list-style-type: decimal; }
.prose .ql-ui { display: none; }

/* ==== ÜST MENÜ LOGOSU — 100px, menü zemini büyümeden bağımsız taşar ==== */
.site-nav .brand-logo {
    height: 100px;
    max-width: 300px;
    margin: -33px 0;   /* 100px'in fazlasını iptal eder, pill aynı boyda kalır */
}

@media (max-width: 767.98px) {
    .site-nav .brand-logo {
        height: 64px;
        margin: -17px 0;
        max-width: 46vw;
    }
}

/* ==== MENÜ ZEMİNİ LOGONUN ALTINA UZANMASIN ==== */
.site-nav { --logo-alan: 250px; } /* Çubuğun başlama noktası — logona göre bu sayıyı ayarla */

.nav-pill,
body.scrolled .nav-pill {
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-color: transparent;
    box-shadow: none;
}
.nav-pill { position: relative; }

/* Cam zemin — logodan sonra başlar, sağa kadar uzanır */
.nav-pill::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: var(--logo-alan);
    border-radius: 999px;
    background: rgba(7, 15, 28, .58);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    backdrop-filter: blur(18px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, .09);
    box-shadow: 0 14px 44px rgba(3, 9, 18, .38);
    z-index: -1;
    pointer-events: none;
}
body.scrolled .nav-pill::before { background: rgba(6, 13, 24, .78); }

/* Mobil/tablet: linkler zaten gizli, sadece hamburger kalıyor —
   onun kendi yuvarlağı var, ekstra cam çubuğa gerek yok */
@media (max-width: 991.98px) {
    .nav-pill::before { display: none; }
}

/* ==== KAYDIRINCA ÜSTTE 100px KOYU BANT ==== */
.site-nav::before {
    content: "";
    position: absolute;
    top: -14px;              /* menü 14px aşağıdan başlıyor; bant en tepeden başlasın */
    left: 0;
    right: 0;
    height: 100px;
    background: rgb(10, 22, 38);
    box-shadow: 0 14px 34px rgba(3, 9, 18, .35);
    opacity: 0;
    transition: opacity .5s var(--ease);
    z-index: -1;
    pointer-events: none;
}
body.scrolled .site-nav::before { opacity: 1; }

/* ==== WHATSAPP BALONU ==== */
.wa-fab {
    position: fixed;
    bottom: 24px;
    inset-inline-end: 24px;
    z-index: 850;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 14px 34px rgba(3, 9, 18, .35);
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.wa-fab svg { width: 30px; height: 30px; }
.wa-fab:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 44px rgba(3, 9, 18, .42);
    color: #fff;
}
.wa-fab:active { transform: scale(.94); }

.wa-fab::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    z-index: -1;
    animation: waPulse 2.6s var(--ease) infinite;
}
@keyframes waPulse {
    0%   { transform: scale(1);    opacity: .45; }
    70%  { transform: scale(1.55); opacity: 0; }
    100% { transform: scale(1.55); opacity: 0; }
}

@media (max-width: 767.98px) {
    .wa-fab { width: 52px; height: 52px; bottom: 18px; inset-inline-end: 18px; }
    .wa-fab svg { width: 27px; height: 27px; }
}
/* ==========================================================
   BLOG — app.css sonuna eklenecek.
   Kartlar .prj-card yapısını kullanıyor; burada sadece
   tarih satırı, özet metni ve sayfalama tanımlı.
   ========================================================== */

/* Kart içindeki yayın tarihi — .prj-loc ile aynı dil */
.blg-date {
    font: 500 11px/1.5 var(--font-mono);
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin: 0 0 8px;
}

/* Kart özeti — gövde metni, mono DEĞİL */
.blg-excerpt {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--text-dim);
    margin: 10px 0 0;
}

/* ---- Sayfalama ---- */
.blg-pager {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 64px;
}

.blg-pg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border: 1px solid var(--line-ink);
    border-radius: 999px;
    background: #fff;
    color: var(--ink-900);
    font: 600 13.5px/1 var(--font-display);
    text-decoration: none;
    transition: border-color .5s var(--ease), transform .5s var(--ease);
}

.blg-pg:hover {
    border-color: rgba(16, 32, 58, .34);
    transform: translateY(-2px);
}

.blg-pg.is-current {
    background: var(--ink-900);
    border-color: var(--ink-900);
    color: #fff;
    cursor: default;
    transform: none;
}

.blg-pg-arrow { padding: 0; }
.blg-pg-arrow svg { width: 15px; height: 15px; }
[dir="rtl"] .blg-pg-arrow svg { transform: scaleX(-1); }

.blg-pg:focus-visible {
    outline: 2px solid #35619E;
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .blg-pg { transition: none; }
    .blg-pg:hover { transform: none; }
}