/* ============================================================
   BIZ SAYFASI — Sol sticky video + sağ scroll içerik
   ============================================================ */
.biz {
    padding: clamp(100px, 14vh, 160px) 0 clamp(80px, 12vh, 140px);
    background: var(--bg);
    color: var(--text);
}
.biz-inner {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}
@media (min-width: 960px) {
    .biz-inner {
        grid-template-columns: minmax(280px, 1fr) minmax(0, 1.2fr);
        gap: clamp(48px, 6vw, 96px);
    }
}
.biz-sticky {
    width: 100%;
}
@media (min-width: 960px) {
    .biz-sticky {
        position: sticky;
        top: calc(var(--header-height, 80px) + 32px);
        align-self: start;
    }
}
.biz-video {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}
.biz-video__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 32px;
    overflow: hidden;
    background: #000;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.06) inset,
        0 40px 80px -30px rgba(0, 0, 0, 0.6),
        0 16px 50px -20px rgba(0, 0, 0, 0.5);
    isolation: isolate;
}
.biz-video__player {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #000;
}
.biz-video__sound {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    z-index: 2;
}
.biz-video__sound:hover {
    background: rgba(0, 0, 0, 0.78);
    border-color: rgba(255, 255, 255, 0.45);
    transform: scale(1.05);
}
.biz-video__sound:focus-visible {
    outline: 2px solid var(--accent, #fff);
    outline-offset: 2px;
}
.biz-video__icon { display: none; }
.biz-video__sound[data-state="muted"] .biz-video__icon--muted { display: block; }
.biz-video__sound[data-state="unmuted"] .biz-video__icon--unmuted { display: block; }

.biz-scroll {
    display: grid;
    gap: clamp(40px, 5vw, 72px);
    min-width: 0;
}

.biz-intro {
    display: grid;
    gap: 20px;
    padding-bottom: clamp(16px, 3vw, 32px);
    border-bottom: 1px solid var(--line, rgba(255,255,255,0.1));
}
.biz-intro .eyebrow {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-mute, rgba(255,255,255,0.6));
}
.biz-headline {
    font-size: clamp(32px, 4.5vw, 64px);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.02em;
    margin: 0;
}
.biz-headline .line { display: block; }
.biz-lead {
    font-size: clamp(16px, 1.3vw, 19px);
    color: var(--text-mute, rgba(255,255,255,0.7));
    max-width: 50ch;
    line-height: 1.55;
    margin: 0;
}

.biz-ig-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    padding: 8px 14px;
    border: 1px solid var(--line, rgba(255,255,255,0.18));
    border-radius: 999px;
    font-size: 13px;
    color: var(--text-mute, rgba(255,255,255,0.7));
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    width: max-content;
}
.biz-ig-link:hover {
    background: var(--text, #fff);
    color: var(--bg, #000);
    border-color: var(--text, #fff);
}

.biz-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
}
.biz-tile {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #0a0a0a;
    border-radius: 4px;
    transition: transform 0.25s ease, filter 0.25s ease;
}
.biz-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.biz-tile:hover {
    filter: brightness(1.08);
}
.biz-tile:hover img {
    transform: scale(1.04);
}
.biz-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.35), transparent 50%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}
.biz-tile:hover::after { opacity: 1; }

@media (max-width: 640px) {
    .biz-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 4px;
    }
}

.biz-end {
    padding: clamp(24px, 4vw, 48px) 0;
    text-align: center;
    border-top: 1px solid var(--line, rgba(255,255,255,0.08));
    margin-top: 8px;
}
.biz-end-link {
    color: var(--text-mute, rgba(255,255,255,0.6));
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}
.biz-end-link:hover {
    color: var(--text, #fff);
}

/* Sosyal medya ikonları (iletişim bölümü) */
.social-icons {
    display: inline-flex;
    gap: 14px;
    align-items: center;
    margin: 0;
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid var(--line, rgba(255,255,255,0.18));
    border-radius: 999px;
    color: var(--text, #fff);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.social-icons a svg {
    width: 26px;
    height: 26px;
}
.social-icons a:hover {
    background: var(--text, #fff);
    color: var(--bg, #000);
    border-color: var(--text, #fff);
    transform: translateY(-2px);
}

@media (max-width: 959px) {
    /* Mobilde sticky kaldır, sıralı akış */
    .biz-sticky { position: static; }
    .biz-video { max-width: 280px; }
}

/* ============================================================
   Creide — Reklam Ajansı
   Tasarım sistemi: koyu, sofistike, sinematik
   ============================================================ */

/* ---------- Neue Radial — kurumsal kimlik fontu ---------- */
@font-face {
    font-family: "Neue Radial";
    src: url("/fonts/neue-radial-a-book.ttf") format("truetype");
    font-weight: 100 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Neue Radial";
    src: url("/fonts/neue-radial-a-black.ttf") format("truetype");
    font-weight: 600 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Neue Radial Alt";
    src: url("/fonts/neue-radial-b-black.ttf") format("truetype");
    font-weight: 600 900;
    font-style: normal;
    font-display: swap;
}

/* Kurumsal kimlik: SAF SİYAH + BEYAZ.
   Aksent rengi yok; "italic accent" sınıfı sadece italik + temel renk kullanır. */
:root,
:root[data-theme="dark"] {
    --bg: #000000;
    --bg-elev: #0E0E0D;
    --bg-soft: #16161D;
    --line: rgba(255, 255, 255, 0.12);
    --line-strong: rgba(255, 255, 255, 0.28);
    --text: #FFFFFF;
    --text-mute: #A6A5A0;
    --text-dim: #6E6D68;
    --accent: #FFFFFF;        /* aksent = ana renk (sadece italik vurguda kullanılır) */
    --accent-hot: #FFFFFF;
    --header-blur-bg: rgba(0, 0, 0, 0.72);
    --shadow-glow: rgba(255, 255, 255, 0.10);
}

:root[data-theme="light"] {
    --bg: #FFFFFF;
    --bg-elev: #FAFAF9;
    --bg-soft: #F0F0EE;
    --line: rgba(29, 29, 27, 0.12);
    --line-strong: rgba(29, 29, 27, 0.30);
    --text: #1D1D1B;          /* kurumsal kimlikte stroke rengi */
    --text-mute: #6E6D68;
    --text-dim: #A6A5A0;
    --accent: #1D1D1B;
    --accent-hot: #1D1D1B;
    --header-blur-bg: rgba(255, 255, 255, 0.82);
    --shadow-glow: rgba(29, 29, 27, 0.08);
}

:root {
    --radius: 6px;
    --radius-lg: 18px;

    /* Kurumsal kimlik fontu: Neue Radial (yerel TTF dosyalarından yüklenir) */
    --font-display: "Neue Radial", "Futura", "Jost", -apple-system, sans-serif;
    --font-sans: "Neue Radial", "Futura", "Jost", -apple-system, sans-serif;

    --container: 1320px;
    --gutter: clamp(20px, 4vw, 56px);

    --ease: cubic-bezier(0.65, 0, 0.05, 1);
}

html { transition: background-color 0.3s ease, color 0.3s ease; }
body {
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Sayfa geçişleri — Chromium tabanlı tarayıcılarda yumuşak fade */
@view-transition { navigation: auto; }
::view-transition-old(root),
::view-transition-new(root) {
    animation-duration: 0.35s;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
::view-transition-old(root) { animation-name: fadeOut; }
::view-transition-new(root) { animation-name: fadeIn; }
@keyframes fadeOut { to { opacity: 0; transform: translateY(-6px); } }
@keyframes fadeIn  { from { opacity: 0; transform: translateY(8px); } }

/* Görseller: yüklenirken hafif blur, yüklenince temizlenir */
img {
    transition: filter 0.6s ease, opacity 0.6s ease;
}
img:not(.is-loaded) {
    filter: blur(14px);
    opacity: 0.6;
}
img.is-loaded {
    filter: blur(0);
    opacity: 1;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--text);
    background: var(--bg);
    line-height: 1.55;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg, video { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

.skip-link {
    position: absolute; left: -9999px; top: 12px;
    background: var(--text); color: var(--bg);
    padding: 8px 14px; border-radius: var(--radius);
    z-index: 1000;
}
.skip-link:focus { left: 12px; }

/* ---------- A11y: klavye odak göstergesi ---------- */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 3px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}
/* fare ile tıklayanda ring kaldır */
:focus:not(:focus-visible) { outline: none; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

/* ---------- Header ---------- */

.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 22px 0;
    transition: padding 0.4s var(--ease), background-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease);
    border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
    padding: 14px 0;
    background: var(--header-blur-bg);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: inline-flex !important;
    align-items: center;
    gap: 0;
    color: var(--text);
    text-decoration: none;
    line-height: 1;
}
.logo-img {
    height: 72px;
    width: auto;
    display: block;
    transition: transform 0.3s var(--ease), filter 0.3s ease;
}
.logo:hover .logo-img { transform: scale(1.03); }

/* Light mode'da PNG beyaz olduğu için ters çevir → siyah olur */
:root[data-theme="light"] .logo-img { filter: invert(1); }

/* Footer'da daha küçük */
.footer-brand .logo-img { height: 50px; }

/* Sticky header daraldıktan sonra */
.site-header.is-scrolled .logo-img { height: 50px; }

@media (max-width: 720px) {
    .logo-img { height: 53px; }
}
.logo-mark {
    width: 60px;
    height: 60px;
    color: var(--text);
    filter: drop-shadow(0 0 22px var(--shadow-glow));
    transition: transform 0.5s var(--ease), filter 0.3s ease;
    flex-shrink: 0;
    /* "c"nin sol üst köşesine doğru bindirme: sağa-yukarı çek */
    margin-right: -30px;
    margin-top: -22px;
    z-index: 1;
    position: relative;
}
.logo:hover .logo-mark { transform: rotate(30deg); }

/* logo-text: dikey blok, wordmark üstte, tagline sağa hizalı altta */
.logo-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end;
    line-height: 1;
    gap: 4px;
    position: relative;
    z-index: 2;
}
.logo-word {
    display: block;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 40px;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--text);
    margin: 0;
    padding: 0;
}

.logo-tagline {
    display: block;
    font-family: var(--font-sans);
    font-size: 12px;
    line-height: 1;
    color: var(--text-mute);
    letter-spacing: 0.05em;
    text-transform: lowercase;
    font-weight: 400;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

/* Footer'da daha makul boyutta */
.footer-brand .logo { gap: 0; padding-top: 4px; }
.footer-brand .logo-mark { width: 40px; height: 40px; margin-right: -20px; margin-top: -14px; }
.footer-brand .logo-word { font-size: 26px; }
.footer-brand .logo-tagline { font-size: 10px; }

/* Sticky header daraldıktan sonra */
.site-header.is-scrolled .logo-mark { width: 44px; height: 44px; margin-right: -22px; margin-top: -16px; }
.site-header.is-scrolled .logo-word { font-size: 30px; }
.site-header.is-scrolled .logo-tagline { display: none; }

.site-nav {
    display: flex;
    gap: 32px;
}
.site-nav a {
    font-size: 14px;
    color: var(--text-mute);
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
    position: relative;
    padding: 4px 0;
}
.site-nav a::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: currentColor;
    transition: width 0.35s var(--ease);
}
.site-nav a:hover { color: var(--text); }
.site-nav a:hover::after { width: 100%; }

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: background-color 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.cta-button:hover {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
    transform: translateY(-1px);
}
.cta-button svg { transition: transform 0.35s var(--ease); }
.cta-button:hover svg { transform: translateX(4px); }
.cta-button--small { padding: 10px 18px; }

.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.lang-switch {
    display: inline-flex;
    gap: 6px;
    font-size: 12px;
    color: var(--text-mute);
    letter-spacing: 0.05em;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    transition: border-color 0.3s ease;
}
.lang-switch:hover { border-color: var(--line-strong); }
.lang-switch .sep { opacity: 0.5; }
.lang-switch .is-active { color: var(--text); }

.theme-toggle {
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease, transform 0.3s var(--ease);
}
.theme-toggle:hover {
    border-color: var(--line-strong);
    transform: rotate(-12deg);
}
.theme-toggle svg { width: 18px; height: 18px; transition: opacity 0.25s ease, transform 0.4s var(--ease); }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: inline-block; }
:root[data-theme="light"] .theme-toggle .icon-sun { display: inline-block; }
:root[data-theme="light"] .theme-toggle .icon-moon { display: none; }

.menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    width: 44px; height: 44px;
    padding: 0;
    position: relative;
}
.menu-toggle span {
    display: block;
    position: absolute; left: 12px; right: 12px;
    height: 1px;
    background: var(--text);
    transition: transform 0.3s var(--ease), opacity 0.2s ease;
}
.menu-toggle span:nth-child(1) { top: 16px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 26px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ---------- Typography utilities ---------- */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--text-mute);
    font-weight: 500;
}
.eyebrow::before {
    content: "";
    width: 24px; height: 1px;
    background: currentColor;
}

.display {
    font-family: var(--font-display);
    font-weight: 300;
    font-style: normal;
    line-height: 0.98;
    letter-spacing: -0.025em;
    color: var(--text);
    font-feature-settings: "ss01" 1, "ss02" 1;
}

h2.section-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(40px, 6vw, 78px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    margin: 0 0 0.5em;
    color: var(--text);
}

.italic { font-style: italic; }
.accent { color: var(--accent); }
.muted { color: var(--text-mute); }

/* ---------- Hero ---------- */

.hero {
    position: relative;
    padding: clamp(160px, 20vh, 220px) 0 clamp(80px, 12vh, 140px);
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 18% 12%, rgba(255, 255, 255, 0.04), transparent 60%),
        radial-gradient(ellipse 50% 40% at 90% 90%, rgba(255, 255, 255, 0.02), transparent 60%);
    pointer-events: none;
    z-index: 0;
}
.hero-bg-mark {
    position: absolute;
    width: min(72vh, 60vw);
    height: min(72vh, 60vw);
    right: -8%;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text);
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(40px, 6vw, 72px);
}

.hero-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.hero-meta .eyebrow { margin-top: 6px; }
.hero-meta .meta-side {
    max-width: 280px;
    color: var(--text-mute);
    font-size: 13px;
    line-height: 1.6;
}

.hero-headline {
    font-size: clamp(36px, 6vw, 90px);
    font-weight: 700;
    margin: 0;
    line-height: 0.96;
    letter-spacing: -0.03em;
}
.hero-headline .line {
    display: block;
}
.hero-headline .line.italic {
    margin-top: 0.08em;
}

.hero-tail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 6vw, 80px);
    align-items: center;
    border-top: 1px solid var(--line);
    padding-top: 32px;
}
.hero-tail p {
    margin: 0;
    font-size: clamp(16px, 1.4vw, 19px);
    color: var(--text-mute);
    max-width: 52ch;
    line-height: 1.55;
}
.hero-tail p .accent-word { color: var(--text); }

.hero-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}
.hero-bottom .links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ---------- Marquee ---------- */

.marquee {
    position: relative;
    padding: 28px 0;
    border-block: 1px solid var(--line);
    overflow: hidden;
    background: var(--bg);
}
.marquee-track {
    display: flex;
    gap: 64px;
    white-space: nowrap;
    animation: marquee 38s linear infinite;
    will-change: transform;
}
.marquee-track span {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(32px, 5vw, 58px);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    gap: 64px;
}
.marquee-track span::after {
    content: "✦";
    color: var(--accent);
    font-style: normal;
    font-size: 0.6em;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---------- Section base ---------- */

section {
    position: relative;
    padding: clamp(80px, 12vh, 160px) 0;
}
.section-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 6vw, 80px);
    align-items: end;
    margin-bottom: clamp(56px, 8vw, 100px);
}
.section-head .lead {
    color: var(--text-mute);
    font-size: clamp(16px, 1.3vw, 19px);
    max-width: 48ch;
    line-height: 1.6;
}
.section-head .lead strong {
    color: var(--text);
    font-weight: 500;
}

/* ---------- Services ---------- */

.services {
    background: var(--bg);
    border-top: 1px solid var(--line);
}
.services-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
}
.service-row {
    border-bottom: 1px solid var(--line);
    position: relative;
    transition: background-color 0.45s var(--ease);
}
.service-row:hover { background: var(--line); }
.service-row-inner {
    display: grid;
    grid-template-columns: 80px minmax(220px, 1.2fr) minmax(0, 2fr) 240px;
    gap: clamp(20px, 3vw, 40px);
    align-items: center;
    padding: clamp(28px, 4vw, 44px) 0;
    transition: transform 0.55s var(--ease), padding 0.55s var(--ease);
}
.service-row:hover .service-row-inner {
    transform: translateX(8px);
}
.service-num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 14px;
    color: var(--accent);
    font-weight: 400;
}
.service-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(26px, 3.4vw, 42px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0;
}
.service-desc {
    color: var(--text-mute);
    font-size: 15px;
    line-height: 1.6;
    max-width: 56ch;
    margin: 0;
}
.service-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.service-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-mute);
    padding: 6px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
}

/* ---------- Work ---------- */

.work {
    background: var(--bg);
    border-top: 1px solid var(--line);
}
.work-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(24px, 3vw, 40px);
}
.work-card {
    grid-column: span 6;
    display: flex;
    flex-direction: column;
    gap: 18px;
    cursor: pointer;
}
.work-card.is-tall { grid-column: span 6; }
.work-card.is-wide { grid-column: span 12; }

.work-cover {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--bg-elev);
    background-size: cover;
    background-position: center;
    isolation: isolate;
    transition: transform 0.9s var(--ease), filter 0.9s var(--ease);
}
.work-card.is-wide .work-cover { aspect-ratio: 21/9; }
.work-card:hover .work-cover {
    filter: brightness(0.92);
}
.work-cover-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: clamp(24px, 3vw, 36px);
}
.work-mark {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(48px, 6vw, 110px);
    line-height: 0.9;
    color: rgba(245, 241, 234, 0.94);
    letter-spacing: -0.03em;
    mix-blend-mode: overlay;
}
.work-badge {
    align-self: flex-start;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(245, 241, 234, 0.85);
    padding: 8px 12px;
    border: 1px solid rgba(245, 241, 234, 0.35);
    border-radius: 999px;
    backdrop-filter: blur(8px);
}

.work-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
}
.work-meta h3 {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(22px, 2.6vw, 30px);
    margin: 0;
    letter-spacing: -0.01em;
}
.work-meta .work-cat {
    color: var(--text-mute);
    font-size: 13px;
    letter-spacing: 0.02em;
}
.work-arrow {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}
.work-card:hover .work-arrow {
    background: var(--text);
    color: var(--bg);
    transform: rotate(-45deg);
}

/* cover-N sınıfları artık background-image (inline style) ile besleniyor */

/* ---------- About ---------- */

.about {
    background: var(--bg);
    border-top: 1px solid var(--line);
}
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: start;
}
.about-text p {
    font-size: clamp(18px, 1.5vw, 22px);
    line-height: 1.55;
    color: var(--text);
    margin: 0 0 1.2em;
    max-width: 38ch;
    font-weight: 300;
}
.about-text p em {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
}

.principles {
    display: grid;
    gap: 24px;
}
.principle {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 18px;
    padding: 26px 0;
    border-top: 1px solid var(--line);
}
.principle:last-child { border-bottom: 1px solid var(--line); }
.principle-num {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--accent);
    font-size: 14px;
    padding-top: 6px;
}
.principle h4 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 22px;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}
.principle p {
    margin: 0;
    color: var(--text-mute);
    font-size: 15px;
    line-height: 1.6;
}

.metrics {
    margin-top: clamp(64px, 8vw, 100px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    border-top: 1px solid var(--line);
    padding-top: clamp(40px, 5vw, 64px);
    text-align: center;
    justify-items: center;
}
.metric h5 {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(40px, 5vw, 68px);
    margin: 0 0 8px;
    letter-spacing: -0.03em;
    line-height: 1;
}
.metric h5 sup {
    font-size: 0.4em;
    color: var(--accent);
    font-style: italic;
    vertical-align: super;
    margin-left: 4px;
}
.metric p {
    margin: 0;
    color: var(--text-mute);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

/* ---------- Contact ---------- */

.contact {
    background: var(--bg);
    border-top: 1px solid var(--line);
    overflow: hidden;
}
.contact::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 80% 10%, rgba(255, 255, 255, 0.03), transparent 60%);
    pointer-events: none;
}

.contact-headline {
    font-size: clamp(58px, 9vw, 140px);
    margin: 0 0 0.4em;
    max-width: 14ch;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: start;
    position: relative;
}

.contact-form {
    display: grid;
    gap: 0;
}
.field {
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: border-color 0.3s ease;
}
.field:focus-within { border-color: var(--text); }
.field label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-mute);
}
.field input,
.field textarea,
.field select {
    background: transparent;
    border: 0;
    color: var(--text);
    font-family: inherit;
    font-size: 17px;
    padding: 6px 0;
    outline: none;
    resize: vertical;
    width: 100%;
}
.field textarea { min-height: 96px; line-height: 1.5; }
.field select { appearance: none; cursor: pointer; }
.field input::placeholder,
.field textarea::placeholder { color: var(--text-dim); }
.field .validation {
    color: #ff8a7a;
    font-size: 12px;
    min-height: 1em;
}

.contact-submit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 28px;
}
.contact-submit p {
    margin: 0;
    color: var(--text-mute);
    font-size: 13px;
    max-width: 36ch;
    line-height: 1.5;
}

.cta-button--big {
    padding: 18px 28px;
    font-size: 15px;
    border-color: var(--text);
}
.cta-button--big:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
}

.contact-side {
    border-left: 1px solid var(--line);
    padding-left: clamp(24px, 4vw, 48px);
    display: grid;
    gap: 36px;
}
.contact-side .block h5 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-mute);
    margin: 0 0 14px;
    font-weight: 500;
}
.contact-side .block p {
    margin: 0 0 4px;
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 22px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.contact-side .block p a { transition: color 0.2s ease; }
.contact-side .block p a:hover { color: var(--accent); }
.contact-side .block .note {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text-mute);
    margin-top: 6px;
}

.form-success {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--text);
    padding: 22px 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.form-success .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent-hot);
    margin-top: 8px;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

/* ---------- Case study detail ---------- */

.case-hero {
    padding: clamp(120px, 16vh, 180px) 0 clamp(40px, 6vh, 80px);
    position: relative;
}
.case-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-mute);
    font-size: 13px;
    letter-spacing: 0.02em;
    margin-bottom: 56px;
    transition: color 0.2s ease;
}
.case-back:hover { color: var(--text); }
.case-back svg { transition: transform 0.3s var(--ease); }
.case-back:hover svg { transform: translateX(-4px); }

.case-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: end;
    padding-bottom: clamp(48px, 6vw, 80px);
}
.case-title {
    font-size: clamp(56px, 8vw, 110px);
    line-height: 0.98;
    margin: 14px 0 12px;
    letter-spacing: -0.025em;
    font-weight: 300;
}
.case-tagline {
    font-size: clamp(20px, 2vw, 26px);
    margin: 0;
    max-width: 22ch;
    line-height: 1.2;
}
.case-lede p {
    margin: 0 0 24px;
    font-size: clamp(16px, 1.3vw, 19px);
    color: var(--text-mute);
    line-height: 1.6;
    max-width: 50ch;
}
.case-services {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.case-cover-wrap { margin-top: 12px; }
.case-cover-large { aspect-ratio: 21/9; border-radius: var(--radius-lg); }

/* Hero görsel */
.case-hero-image {
    margin: clamp(40px, 5vw, 64px) auto 0;
    max-width: var(--container);
    padding: 0 var(--gutter);
}
.case-hero-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

/* Info bar */
.case-info {
    padding: clamp(56px, 7vw, 88px) 0 clamp(40px, 5vw, 60px);
    border-bottom: 1px solid var(--line);
}
.case-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) 2fr;
    gap: clamp(24px, 3vw, 40px);
}
.case-info-block h5 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-mute);
    margin: 0 0 10px;
    font-weight: 500;
}
.case-info-block p {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--text);
}
.case-info-block--wide .case-services { margin-top: 0; }

/* Wide gallery (büyük tek görsel) */
.case-gallery-wide {
    padding: clamp(60px, 8vw, 110px) 0;
}
.case-gallery-wide figure { margin: 0; }
.case-gallery-wide img {
    width: 100%;
    border-radius: var(--radius-lg);
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}
.case-gallery-wide figcaption {
    margin-top: 16px;
    color: var(--text-mute);
    font-size: 13px;
    letter-spacing: 0.01em;
}

/* Process grid */
.case-process {
    padding: clamp(80px, 10vw, 140px) 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(24px, 3vw, 40px);
}
.process-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px 0;
    border-top: 1px solid var(--line);
}
.process-num {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--accent);
    font-size: 14px;
    letter-spacing: 0.05em;
}
.process-card h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(20px, 1.6vw, 24px);
    margin: 0 0 4px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.process-card p {
    margin: 0;
    color: var(--text-mute);
    font-size: 14px;
    line-height: 1.6;
}

/* Pair gallery (iki sütun) */
.case-gallery-pair {
    padding: clamp(60px, 8vw, 110px) 0;
}
.case-gallery-pair-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 3vw, 40px);
}
.case-gallery-pair figure { margin: 0; }
.case-gallery-pair img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    display: block;
}
.case-gallery-pair figcaption {
    margin-top: 14px;
    color: var(--text-mute);
    font-size: 13px;
    letter-spacing: 0.01em;
}

/* Pull quote */
.case-quote {
    padding: clamp(80px, 10vw, 140px) 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.case-quote blockquote {
    margin: 0;
    max-width: 24ch;
    margin-inline: auto;
    text-align: center;
    position: relative;
}
.case-quote .quote-mark {
    width: 36px;
    height: 36px;
    color: var(--accent);
    opacity: 0.7;
    margin: 0 auto 24px;
    display: block;
}
.case-quote blockquote p {
    font-family: var(--font-display);
    font-weight: 400;
    font-style: italic;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.18;
    margin: 0 0 32px;
    color: var(--text);
    max-width: none;
    letter-spacing: -0.02em;
}
.case-quote blockquote footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.case-quote .quote-name {
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    color: var(--text);
}
.case-quote .quote-role {
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 12px;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

/* Metrics, sonuç bölümü */
.case-metrics {
    padding: clamp(80px, 10vw, 140px) 0;
    border-bottom: 1px solid var(--line);
}

/* Credits / ekip */
.case-credits {
    padding: clamp(80px, 10vw, 140px) 0;
    border-bottom: 1px solid var(--line);
}
.credits-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
}
.credits-list li {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(20px, 3vw, 48px);
    padding: 22px 0;
    border-top: 1px solid var(--line);
    align-items: baseline;
}
.credits-list li:last-child { border-bottom: 1px solid var(--line); }
.credit-role {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-mute);
}
.credit-names {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(20px, 1.6vw, 24px);
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--text);
}

@media (max-width: 980px) {
    .case-info-grid { grid-template-columns: repeat(2, 1fr); }
    .case-info-block--wide { grid-column: 1 / -1; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .case-gallery-pair-grid { grid-template-columns: 1fr; }
    .credits-list li { grid-template-columns: 1fr; gap: 6px; }
}

@media (max-width: 600px) {
    .case-info-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
}

.case-body {
    padding: clamp(60px, 9vw, 120px) 0;
    border-top: 1px solid var(--line);
}
.case-sections {
    display: grid;
    gap: clamp(48px, 5vw, 72px);
    margin-bottom: clamp(64px, 8vw, 100px);
}
.case-section {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: clamp(20px, 3vw, 48px);
    align-items: start;
    border-top: 1px solid var(--line);
    padding-top: clamp(28px, 4vw, 44px);
}
.case-section-num {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--accent);
    font-size: 14px;
    padding-top: 4px;
}
.case-section-text h2 {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.05;
    margin: 0 0 18px;
    letter-spacing: -0.02em;
}
.case-section-text p {
    margin: 0;
    color: var(--text-mute);
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.6;
    max-width: 58ch;
}

.case-next {
    border-top: 1px solid var(--line);
    padding: clamp(60px, 9vw, 110px) 0;
}
.case-next-link {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
    column-gap: 32px;
    align-items: center;
    padding: clamp(28px, 4vw, 48px) 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: padding 0.4s var(--ease);
}
.case-next-link:hover { padding-left: 16px; }
.case-next-link .eyebrow { grid-column: 1; grid-row: 1; }
.case-next-link h3 {
    grid-column: 1; grid-row: 2;
    font-size: clamp(40px, 6vw, 80px);
    margin: 8px 0 0;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.025em;
}
.case-next-link p {
    grid-column: 1; grid-row: 3;
    margin: 8px 0 0;
    font-size: 14px;
}
.case-next-arrow {
    grid-column: 2;
    grid-row: 1 / 4;
    width: 64px; height: 64px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}
.case-next-link:hover .case-next-arrow {
    background: var(--text);
    color: var(--bg);
    transform: rotate(-45deg);
}

@media (max-width: 980px) {
    .case-hero-grid { grid-template-columns: 1fr; }
    .case-section { grid-template-columns: 50px 1fr; }
}

/* ---------- Team sayfası ---------- */

.team-hero {
    padding: clamp(140px, 18vh, 200px) 0 clamp(60px, 8vw, 100px);
    position: relative;
}
.team-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: end;
}
.team-headline {
    font-size: clamp(52px, 8vw, 110px);
    margin: 14px 0 0;
    line-height: 0.98;
    letter-spacing: -0.025em;
}

.team-grid-section {
    padding-bottom: clamp(80px, 10vw, 140px);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(28px, 3vw, 48px);
}

.member-card {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.member-photo {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--bg-elev);
}
.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.9s var(--ease), filter 0.9s var(--ease);
    filter: grayscale(0.1);
}
.member-card:hover .member-photo img {
    transform: scale(1.03);
    filter: grayscale(0);
}
.member-role-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    padding: 8px 14px;
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #F5F1EA;
    border-radius: 999px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    border: 1px solid rgba(245, 241, 234, 0.18);
}

.member-head h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(26px, 2.6vw, 34px);
    margin: 0 0 6px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--text);
}
.member-role {
    margin: 0;
    color: var(--text-mute);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.member-bio {
    margin: 0;
    color: var(--text-mute);
    font-size: 15px;
    line-height: 1.65;
}

.member-highlights {
    list-style: none;
    margin: 4px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--line);
    padding-top: 16px;
}
.member-highlights li {
    color: var(--text);
    font-size: 13px;
    letter-spacing: 0.01em;
    position: relative;
    padding-left: 18px;
}
.member-highlights li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.member-quote {
    margin: 4px 0 0;
    padding: 0;
    border-top: 1px solid var(--line);
    padding-top: 16px;
}
.member-quote p {
    margin: 0;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 17px;
    line-height: 1.4;
    color: var(--text);
    letter-spacing: -0.005em;
}

.team-cta {
    padding: clamp(80px, 10vw, 140px) 0;
    border-top: 1px solid var(--line);
}
.team-cta-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: end;
}
.team-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.team-cta-actions p { max-width: 40ch; margin: 0; font-size: 14px; line-height: 1.6; }
.team-cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 980px) {
    .team-hero-grid,
    .team-cta-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .team-grid { grid-template-columns: 1fr; }
}

/* ---------- Header: logo cluster + availability ---------- */

.logo-cluster {
    display: inline-flex;
    align-items: center;
    gap: 18px;
}
.availability {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px 7px 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-size: 12px;
    color: var(--text-mute);
    letter-spacing: 0.01em;
    transition: border-color 0.3s ease, color 0.3s ease;
}
.availability:hover {
    border-color: var(--line-strong);
    color: var(--text);
}
.avail-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-hot);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
    animation: availPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes availPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.55; }
}

/* ---------- Marquee --- clients variant ---------- */
.marquee--clients .marquee-label {
    position: absolute;
    left: var(--gutter);
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg);
    padding-right: 24px;
    color: var(--text-mute);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    z-index: 2;
}
.marquee--clients { padding-left: 180px; }
.marquee--clients .marquee-track span::after {
    content: "✦";
    color: var(--accent);
    font-style: normal;
    font-size: 0.55em;
}

/* ---------- Awards ---------- */

.awards {
    margin-top: clamp(56px, 7vw, 88px);
    padding-top: clamp(40px, 5vw, 64px);
    border-top: 1px solid var(--line);
}
.awards-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-mute);
    margin: 0 0 24px;
    font-weight: 500;
}
.awards-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.awards-list li {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: clamp(16px, 2vw, 32px);
    padding: 16px 0;
    border-top: 1px solid var(--line);
    align-items: baseline;
}
.awards-list li:last-child { border-bottom: 1px solid var(--line); }
.award-year {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--accent);
    font-size: 14px;
}
.award-name {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(17px, 1.4vw, 21px);
    color: var(--text);
    letter-spacing: -0.005em;
}
.award-tier {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-mute);
}

/* ---------- Case detail sticky side nav ---------- */

.case-sidenav {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 14px;
    pointer-events: auto;
}
.case-sidenav a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    color: var(--text-mute);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    padding: 4px;
    transition: color 0.25s ease;
}
.case-sidenav a::before {
    content: attr(data-label);
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.3s ease, transform 0.3s var(--ease);
    white-space: nowrap;
}
.case-sidenav a:hover { color: var(--text); }
.case-sidenav a:hover::before {
    opacity: 1;
    transform: translateX(0);
}
.case-sidenav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid currentColor;
    transition: background-color 0.25s ease, transform 0.25s ease;
    flex-shrink: 0;
}
.case-sidenav a:hover .case-sidenav-dot {
    background: currentColor;
    transform: scale(1.2);
}

@media (max-width: 1080px) {
    .case-sidenav { display: none; }
}

/* ---------- Insights ---------- */

.insights-hero {
    padding: clamp(140px, 18vh, 200px) 0 clamp(60px, 8vw, 100px);
}
.insights-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: end;
}
.insights-headline {
    font-size: clamp(52px, 8vw, 110px);
    margin: 14px 0 0;
    line-height: 0.98;
    letter-spacing: -0.025em;
}

.insights-list-section { padding-bottom: clamp(80px, 10vw, 140px); }
.insights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--line);
}
.insights-list li { border-bottom: 1px solid var(--line); }
.insight-row {
    display: grid;
    grid-template-columns: 180px 1fr auto;
    gap: clamp(20px, 3vw, 48px);
    padding: clamp(24px, 3.5vw, 40px) 0;
    align-items: center;
    transition: padding 0.5s var(--ease);
}
.insight-row:hover { padding-left: 12px; }
.insight-row-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--text-mute);
}
.insight-date {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 16px;
    color: var(--accent);
}
.insight-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-mute);
}
.insight-row-text h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(24px, 2.4vw, 36px);
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin: 0 0 8px;
    color: var(--text);
}
.insight-row-text p {
    color: var(--text-mute);
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 8px;
    max-width: 52ch;
}
.insight-author {
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.02em;
}
.insight-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
    flex-shrink: 0;
}
.insight-row:hover .insight-arrow {
    background: var(--text);
    color: var(--bg);
    transform: rotate(-45deg);
}

/* ---------- Article (insight detail) ---------- */

.article-hero {
    padding: clamp(140px, 18vh, 200px) 0 clamp(40px, 5vw, 64px);
}
.article-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    color: var(--text-mute);
    font-size: 13px;
    margin-bottom: 28px;
}
.article-meta-dot { opacity: 0.4; }
.article-title {
    font-size: clamp(40px, 6vw, 86px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    margin: 0 0 20px;
    max-width: 18ch;
}
.article-subtitle {
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.3;
    margin: 0 0 32px;
    max-width: 32ch;
}
.article-author {
    color: var(--text-mute);
    font-size: 14px;
    margin: 0;
}

.article-body { padding: clamp(40px, 6vw, 80px) 0 clamp(80px, 10vw, 140px); }
.prose {
    max-width: 68ch;
    margin: 0 auto;
    color: var(--text);
}
.prose h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(26px, 2.4vw, 32px);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 2em 0 0.5em;
    color: var(--text);
}
.prose h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(22px, 1.8vw, 26px);
    margin: 1.6em 0 0.5em;
    color: var(--text);
}
.prose p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-mute);
    margin: 0 0 1.2em;
}
.prose p strong { color: var(--text); }
.prose ul, .prose ol {
    margin: 0 0 1.2em;
    padding-left: 1.4em;
    color: var(--text-mute);
}
.prose li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 6px;
}
.prose blockquote {
    border-left: 2px solid var(--accent);
    padding-left: 24px;
    margin: 1.6em 0;
    font-family: var(--font-display);
    font-style: italic;
    color: var(--text);
    font-size: 22px;
    line-height: 1.4;
}
.prose a {
    color: var(--text);
    border-bottom: 1px solid var(--line-strong);
    transition: border-color 0.2s ease;
}
.prose a:hover { border-color: var(--accent); }

.article-more { padding: clamp(80px, 10vw, 140px) 0; border-top: 1px solid var(--line); }
.article-more .insights-list { border-top: 1px solid var(--line); }

/* ---------- Process page ---------- */

.process-page-hero {
    padding: clamp(140px, 18vh, 200px) 0 clamp(60px, 8vw, 100px);
}
.process-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: end;
}
.process-headline {
    font-size: clamp(52px, 8vw, 110px);
    margin: 14px 0 0;
    line-height: 0.98;
    letter-spacing: -0.025em;
}

.process-phases { padding-bottom: clamp(80px, 10vw, 140px); }
.phases-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.phase {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: clamp(32px, 4vw, 64px);
    padding: clamp(44px, 6vw, 72px) 0;
    border-bottom: 1px solid var(--line);
}
.phase-meta { display: flex; flex-direction: column; gap: 16px; }
.phase-num {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--accent);
    font-size: 28px;
}
.phase-duration {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-mute);
}
.phase-name {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin: 0 0 14px;
}
.phase-lead {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(20px, 1.7vw, 24px);
    line-height: 1.3;
    margin: 0 0 24px;
    max-width: 40ch;
}
.phase-text {
    color: var(--text-mute);
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 24px;
    max-width: 60ch;
}
.phase-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 24px;
}
.phase-items li {
    color: var(--text);
    font-size: 14px;
    position: relative;
    padding-left: 18px;
}
.phase-items li::before {
    content: "—";
    color: var(--accent);
    position: absolute;
    left: 0;
}

.process-cta { padding: clamp(80px, 10vw, 140px) 0; border-top: 1px solid var(--line); }

/* ---------- Manifesto / Yapmadıklarımız ---------- */

.manifesto-hero {
    padding: clamp(140px, 18vh, 200px) 0 clamp(60px, 8vw, 100px);
}
.manifesto-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: end;
}
.manifesto-headline {
    font-size: clamp(52px, 8vw, 110px);
    margin: 14px 0 0;
    line-height: 0.98;
    letter-spacing: -0.025em;
}

.manifesto-rules { padding-bottom: clamp(80px, 10vw, 140px); }
.rules-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--line);
}
.rule {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: clamp(20px, 3vw, 48px);
    padding: clamp(32px, 4vw, 52px) 0;
    border-bottom: 1px solid var(--line);
    align-items: baseline;
}
.rule-num {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--accent);
    font-size: 28px;
}
.rule-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
    color: var(--text);
}
.rule-body {
    color: var(--text-mute);
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
    max-width: 64ch;
}

/* ---------- NotFound ---------- */

.notfound {
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
}
.notfound-inner { max-width: 760px; }
.notfound-headline {
    font-size: clamp(48px, 8vw, 110px);
    margin: 14px 0 24px;
    line-height: 0.98;
    letter-spacing: -0.025em;
}
.notfound-lead {
    max-width: 50ch;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}
.notfound-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ---------- Responsive: yeni sayfalar ---------- */

@media (max-width: 980px) {
    .insights-hero-grid,
    .process-hero-grid,
    .manifesto-hero-grid { grid-template-columns: 1fr; }
    .phase { grid-template-columns: 1fr; }
    .phase-items { grid-template-columns: 1fr; }
    .insight-row { grid-template-columns: 1fr; gap: 8px; }
    .insight-row-meta { flex-direction: row; gap: 12px; align-items: center; }
    .awards-list li { grid-template-columns: 60px 1fr auto; }
    .marquee--clients { padding-left: var(--gutter); }
    .marquee--clients .marquee-label { display: none; }
}

/* ---------- Cmd+K paleti ---------- */

.kbar {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 12vh 16px;
}
.kbar[hidden] { display: none; }
.kbar-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.55);
    backdrop-filter: blur(8px) saturate(110%);
    -webkit-backdrop-filter: blur(8px) saturate(110%);
    animation: kbarFade 0.18s ease both;
}
@keyframes kbarFade { from { opacity: 0; } to { opacity: 1; } }
.kbar-panel {
    position: relative;
    width: 100%;
    max-width: 620px;
    background: var(--bg-elev);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    animation: kbarPop 0.22s var(--ease) both;
}
@keyframes kbarPop {
    from { opacity: 0; transform: translateY(-8px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.kbar-input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
    color: var(--text-mute);
}
.kbar-input-wrap input {
    flex: 1;
    background: transparent;
    border: 0;
    outline: 0;
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 16px;
    padding: 4px 0;
}
.kbar-input-wrap input::placeholder { color: var(--text-dim); }
.kbar-esc {
    font-family: var(--font-sans);
    font-size: 10px;
    color: var(--text-mute);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 3px 6px;
    background: transparent;
    letter-spacing: 0.1em;
}
.kbar-list {
    list-style: none;
    margin: 0;
    padding: 8px 0 6px;
    max-height: 60vh;
    overflow-y: auto;
}
.kbar-group-label {
    padding: 12px 18px 6px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-dim);
}
.kbar-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 18px;
    cursor: pointer;
    color: var(--text);
    transition: background-color 0.12s ease;
}
.kbar-item.is-active { background: var(--line); }
.kbar-item-label { font-size: 15px; }
.kbar-item-hint { font-size: 12px; color: var(--text-mute); text-align: right; }
.kbar-empty {
    padding: 24px 18px;
    color: var(--text-mute);
    font-size: 14px;
    text-align: center;
}
.kbar-footer {
    display: flex;
    gap: 18px;
    padding: 12px 18px;
    border-top: 1px solid var(--line);
    font-size: 11px;
    color: var(--text-mute);
}
.kbar-footer kbd {
    font-family: var(--font-sans);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 3px;
    padding: 1px 5px;
    margin-right: 4px;
    font-size: 10px;
    color: var(--text);
}

/* ---------- Toast ---------- */

.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translate(-50%, 16px);
    z-index: 999;
    background: var(--bg-elev);
    color: var(--text);
    border: 1px solid var(--line-strong);
    padding: 14px 22px;
    border-radius: 999px;
    font-size: 14px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.35s var(--ease);
}
.toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}
.toast[hidden] { display: none; }

/* ---------- Easter egg: party (Konami) ---------- */

body.party {
    animation: partyHue 4s linear infinite;
}
@keyframes partyHue {
    0%, 100% { filter: none; }
    25% { filter: hue-rotate(45deg) saturate(1.2); }
    50% { filter: hue-rotate(180deg) saturate(1.4); }
    75% { filter: hue-rotate(270deg) saturate(1.2); }
}

/* ---------- Work filters ---------- */

.work-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: clamp(40px, 5vw, 64px);
    padding-bottom: clamp(28px, 3vw, 40px);
    border-bottom: 1px solid var(--line);
}
.work-filters-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-mute);
    margin-right: 8px;
}
.work-filters-divider {
    color: var(--text-dim);
    margin: 0 6px;
}
.filter-pill {
    border: 1px solid var(--line);
    background: transparent;
    color: var(--text-mute);
    font-family: var(--font-sans);
    font-size: 13px;
    padding: 7px 14px;
    border-radius: 999px;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}
.filter-pill:hover {
    border-color: var(--line-strong);
    color: var(--text);
}
.filter-pill.is-active {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

/* ---------- Press / Resources ---------- */

.press-hero {
    padding: clamp(140px, 18vh, 200px) 0 clamp(60px, 8vw, 100px);
}
.press-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: end;
}
.press-headline {
    font-size: clamp(52px, 8vw, 110px);
    margin: 14px 0 0;
    line-height: 0.98;
    letter-spacing: -0.025em;
}
.section-subtitle {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-mute);
    margin: 0 0 24px;
    font-weight: 500;
}
.link-underline {
    border-bottom: 1px solid var(--line-strong);
    transition: border-color 0.2s ease, color 0.2s ease;
}
.link-underline:hover { border-color: var(--accent); color: var(--accent); }

.press-facts { padding: 0 0 clamp(60px, 8vw, 100px); }
.facts-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
}
.facts-list li {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 24px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    align-items: baseline;
}
.fact-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-mute);
}
.fact-value {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(18px, 1.6vw, 22px);
    color: var(--text);
    letter-spacing: -0.005em;
}

.press-downloads { padding-bottom: clamp(80px, 10vw, 140px); }
.downloads-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
}
.downloads-list li { border-bottom: 1px solid var(--line); }
.download-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 22px 0;
    transition: padding 0.4s var(--ease);
}
.download-row:hover { padding-left: 12px; }
.download-row h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(20px, 1.8vw, 24px);
    margin: 0 0 6px;
    color: var(--text);
    letter-spacing: -0.005em;
}
.download-row p {
    margin: 0;
    color: var(--text-mute);
    font-size: 13px;
    letter-spacing: 0.02em;
}
.download-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.download-row:hover .download-arrow {
    background: var(--text);
    color: var(--bg);
    transform: translateY(2px);
}
.press-disclaimer {
    margin-top: 32px;
    color: var(--text-mute);
    font-size: 13px;
    line-height: 1.6;
    max-width: 56ch;
}

.resources-list { list-style: none; margin: 0; padding: 0; }
.resource-card {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    padding: clamp(24px, 3vw, 36px) 0;
    border-bottom: 1px solid var(--line);
}
.resources-list > li:first-child .resource-card { border-top: 1px solid var(--line); }
.resource-text h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(20px, 1.8vw, 24px);
    margin: 0 0 8px;
    color: var(--text);
    letter-spacing: -0.005em;
}
.resource-text p {
    margin: 0 0 10px;
    color: var(--text-mute);
    font-size: 14px;
    line-height: 1.55;
    max-width: 56ch;
}
.resource-meta {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-dim);
}

/* ---------- 3-step form ---------- */

.step-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
}
.step-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    color: var(--text-mute);
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.step-dot.is-active {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
}
.step-line {
    flex: 0 0 28px;
    height: 1px;
    background: var(--line);
}
.form-step {
    border: 0;
    padding: 0;
    margin: 0;
    display: none;
    animation: stepIn 0.35s var(--ease);
}
.form-step.is-current { display: block; }
@keyframes stepIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.step-legend {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 16px;
    padding: 0;
}
.step-num {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--accent);
    font-size: 14px;
}
.step-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(22px, 2vw, 26px);
    color: var(--text);
    letter-spacing: -0.005em;
}
.step-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.field input.has-error,
.field textarea.has-error {
    border-bottom-color: #ff8a7a !important;
}

/* ---------- Pricing ---------- */

.pricing-hero { padding: clamp(140px, 18vh, 200px) 0 clamp(60px, 8vw, 100px); }
.pricing-tiers { padding-bottom: clamp(80px, 10vw, 140px); }
.tier-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 2.5vw, 32px);
}
.tier-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: clamp(28px, 3vw, 40px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--bg-elev);
    transition: border-color 0.3s ease, transform 0.5s var(--ease);
}
.tier-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.tier-head h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(22px, 2vw, 28px);
    margin: 0 0 14px;
    color: var(--text);
    letter-spacing: -0.005em;
}
.tier-price-row { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.tier-price {
    font-family: var(--font-display);
    font-size: clamp(34px, 3.5vw, 48px);
    color: var(--accent);
    letter-spacing: -0.02em;
}
.tier-suffix {
    color: var(--text-mute);
    font-size: 14px;
}
.tier-duration {
    display: inline-block;
    margin-top: 8px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-mute);
}
.tier-body {
    margin: 0;
    color: var(--text-mute);
    font-size: 15px;
    line-height: 1.6;
}
.tier-includes {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    padding-top: 16px;
    display: grid;
    gap: 8px;
    flex: 1;
}
.tier-includes li {
    font-size: 14px;
    color: var(--text);
    position: relative;
    padding-left: 18px;
}
.tier-includes li::before {
    content: "—";
    color: var(--accent);
    position: absolute;
    left: 0;
}

.pricing-faq { padding-bottom: clamp(80px, 10vw, 140px); }
.faq-list { margin: 0; padding: 0; border-top: 1px solid var(--line); }
.faq-item {
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}
.faq-item dt {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(18px, 1.6vw, 22px);
    color: var(--text);
    margin: 0 0 10px;
    letter-spacing: -0.005em;
}
.faq-item dd {
    margin: 0;
    color: var(--text-mute);
    font-size: 15px;
    line-height: 1.6;
    max-width: 70ch;
}

/* ---------- Results ---------- */

.results-hero { padding: clamp(140px, 18vh, 200px) 0 clamp(40px, 5vw, 80px); }
.results-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: end;
}
.results-headline {
    font-size: clamp(52px, 8vw, 110px);
    margin: 14px 0 0;
    line-height: 0.98;
    letter-spacing: -0.025em;
}

.results-bigstats { padding-bottom: clamp(60px, 8vw, 100px); }
.bigstats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 2.5vw, 32px);
}
.bigstat-card {
    padding: clamp(24px, 2.5vw, 36px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--bg-elev);
}
.bigstat-value {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--text);
    margin: 0 0 12px;
}
.bigstat-label {
    margin: 0 0 6px;
    color: var(--text);
    font-size: 14px;
}
.bigstat-hint {
    color: var(--text-mute);
    font-size: 12px;
    letter-spacing: 0.02em;
}

.results-table-section { padding-bottom: clamp(80px, 10vw, 140px); }
.results-table-wrap { overflow-x: auto; }
.results-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.results-table th,
.results-table td {
    text-align: left;
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
}
.results-table thead th {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-mute);
    font-weight: 500;
    border-bottom-color: var(--line-strong);
}
.results-table tbody th {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 16px;
    color: var(--text);
    letter-spacing: -0.005em;
}
.results-table td.muted-cell { color: var(--text-mute); }
.results-disclaimer {
    margin-top: 24px;
    color: var(--text-mute);
    font-size: 13px;
    line-height: 1.65;
    max-width: 80ch;
}

/* ---------- Sector ---------- */

.sector-hero { padding: clamp(120px, 16vh, 180px) 0 clamp(50px, 6vw, 80px); }
.sector-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: end;
}
.sector-headline {
    font-size: clamp(48px, 7vw, 96px);
    margin: 14px 0 0;
    line-height: 0.98;
    letter-spacing: -0.025em;
}

.sector-playbook { padding: clamp(60px, 8vw, 100px) 0; border-top: 1px solid var(--line); }
.playbook-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.playbook-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: clamp(20px, 3vw, 48px);
    padding: clamp(28px, 3.5vw, 44px) 0;
    border-bottom: 1px solid var(--line);
    align-items: baseline;
}
.playbook-num {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--accent);
    font-size: 24px;
}
.playbook-item h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(22px, 2.4vw, 32px);
    margin: 0 0 12px;
    color: var(--text);
    letter-spacing: -0.015em;
}
.playbook-item p {
    color: var(--text-mute);
    font-size: 15px;
    line-height: 1.65;
    max-width: 64ch;
    margin: 0;
}

.sector-cases { padding: clamp(80px, 10vw, 140px) 0; border-top: 1px solid var(--line); }
.sector-pricing { padding: clamp(60px, 8vw, 100px) 0; border-top: 1px solid var(--line); }
.sector-pricing-grid {
    display: grid;
    grid-template-columns: 1.5fr auto;
    gap: clamp(32px, 4vw, 64px);
    align-items: center;
}
.sector-price-from {
    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 64px);
    color: var(--accent);
    letter-spacing: -0.025em;
    margin: 6px 0 16px;
}
.sector-price-from sup {
    font-size: 0.4em;
    color: var(--text-mute);
    margin-left: 4px;
    font-style: italic;
}

/* ---------- Brief Wizard ---------- */

.brief-hero { padding: clamp(140px, 18vh, 200px) 0 clamp(40px, 5vw, 80px); }
.brief-wizard { padding-bottom: clamp(80px, 10vw, 140px); }
.brief-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(32px, 4vw, 60px);
    align-items: start;
}
.brief-form { display: grid; gap: 24px; }
.brief-q {
    border: 0;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--line);
    padding-top: 20px;
}
.brief-q legend {
    padding: 0;
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.brief-hint {
    margin: 0 0 10px;
    color: var(--text-mute);
    font-size: 13px;
}
.brief-q textarea,
.brief-q input {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    font-family: inherit;
    font-size: 16px;
    padding: 10px 0;
    outline: 0;
    resize: vertical;
}
.brief-q textarea:focus,
.brief-q input:focus { border-bottom-color: var(--text); }
.brief-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.brief-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.brief-preview {
    position: sticky;
    top: 100px;
    padding: 20px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    max-height: 70vh;
    overflow-y: auto;
}
.brief-preview-title {
    margin: 0 0 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-mute);
    font-weight: 500;
}
.brief-output {
    margin: 0;
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 12px;
    line-height: 1.55;
    color: var(--text);
    white-space: pre-wrap;
    word-break: break-word;
}

/* ---------- Report ---------- */

.report-hero { padding: clamp(140px, 18vh, 200px) 0 clamp(40px, 5vw, 80px); }
.report-stats { padding-bottom: clamp(80px, 10vw, 120px); }
.report-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2.5vw, 32px);
}
.report-stat-card {
    padding: clamp(24px, 2.5vw, 36px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--bg-elev);
}

.report-pie { padding: clamp(60px, 8vw, 100px) 0; border-top: 1px solid var(--line); }
.pie-bars { display: grid; gap: 18px; max-width: 720px; }
.pie-row { display: grid; gap: 6px; }
.pie-row-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}
.pie-cat { color: var(--text); }
.pie-share { color: var(--text-mute); font-variant-numeric: tabular-nums; }
.pie-bar {
    height: 6px;
    background: var(--line);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}
.pie-bar::after {
    content: "";
    position: absolute;
    inset: 0;
    width: var(--bar-fill);
    background: var(--bar-color);
    transition: width 1.2s var(--ease);
}

.report-learnings { padding: clamp(80px, 10vw, 140px) 0; border-top: 1px solid var(--line); }
.learnings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 3vw, 40px);
}
.learning-card {
    padding: clamp(24px, 2.5vw, 36px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--bg-elev);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.learning-author {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
}
.learning-line {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(20px, 1.8vw, 26px);
    line-height: 1.3;
    margin: 0;
    color: var(--text);
    letter-spacing: -0.005em;
}
.learning-body {
    margin: 0;
    color: var(--text-mute);
    font-size: 14px;
    line-height: 1.65;
}

.report-next { padding: clamp(80px, 10vw, 140px) 0; border-top: 1px solid var(--line); }
.report-next-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}
.report-next-list li {
    display: flex;
    gap: 14px;
    color: var(--text);
    font-size: clamp(18px, 1.6vw, 22px);
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: -0.005em;
    border-bottom: 1px solid var(--line);
    padding-bottom: 14px;
}
.next-mark { color: var(--accent); flex-shrink: 0; }

/* ---------- Availability ---------- */

.availability-list-section { padding-bottom: clamp(80px, 10vw, 140px); }
.availability-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.availability-row {
    display: grid;
    grid-template-columns: 200px 160px 200px 1fr;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    align-items: baseline;
}
.avail-month {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(20px, 1.8vw, 26px);
    color: var(--text);
    letter-spacing: -0.005em;
}
.avail-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    letter-spacing: 0.02em;
}
.avail-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}
.avail-status.is-open    { color: var(--accent-hot); }
.avail-status.is-open .avail-status-dot { background: var(--accent-hot); box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18); }
.avail-status.is-limited { color: var(--accent); }
.avail-status.is-limited .avail-status-dot { background: var(--accent); }
.avail-status.is-full    { color: var(--text-mute); }
.avail-status.is-full .avail-status-dot { background: var(--text-mute); }
.avail-count { font-size: 14px; color: var(--text); }
.avail-note { font-size: 14px; line-height: 1.5; }

/* ---------- Responsive: yeni sayfalar ---------- */

@media (max-width: 980px) {
    .tier-grid { grid-template-columns: 1fr; }
    .bigstats-grid { grid-template-columns: repeat(2, 1fr); }
    .results-hero-grid,
    .sector-hero-grid,
    .sector-pricing-grid { grid-template-columns: 1fr; }
    .brief-grid { grid-template-columns: 1fr; }
    .brief-preview { position: static; max-height: none; }
    .brief-row { grid-template-columns: 1fr; }
    .report-stats-grid { grid-template-columns: 1fr 1fr; }
    .learnings-grid { grid-template-columns: 1fr; }
    .availability-row { grid-template-columns: 1fr; gap: 6px; }
    .playbook-item { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .bigstats-grid { grid-template-columns: 1fr; }
    .report-stats-grid { grid-template-columns: 1fr; }
}

/* ---------- Hero stats strip ---------- */

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2vw, 28px);
    padding: clamp(28px, 4vw, 44px) 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin: clamp(20px, 3vw, 36px) 0;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.hero-stat-value {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(28px, 3.4vw, 48px);
    line-height: 1;
    color: var(--text);
    letter-spacing: -0.02em;
}
.hero-stat-value sup {
    font-size: 0.45em;
    color: var(--accent);
    font-style: italic;
    margin-left: 2px;
}
.hero-stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-mute);
}

.hero-bottom .cta-primary {
    margin-bottom: 12px;
}
.hero-secondary-link {
    color: var(--text-mute);
    font-size: 14px;
    display: inline-block;
    transition: color 0.2s ease;
    border-bottom: 1px solid var(--line);
    padding-bottom: 2px;
}
.hero-secondary-link:hover { color: var(--text); border-color: var(--text); }

/* ---------- Testimonials ---------- */

.testimonials {
    padding: clamp(80px, 12vh, 140px) 0;
    border-top: 1px solid var(--line);
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2.5vw, 36px);
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: clamp(24px, 2.5vw, 36px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--bg-elev);
    transition: border-color 0.3s ease, transform 0.5s var(--ease);
    color: var(--text);
}
.testimonial-card:hover {
    border-color: var(--line-strong);
    transform: translateY(-3px);
}
.testimonial-card .quote-mark {
    width: 26px;
    height: 26px;
    color: var(--accent);
    opacity: 0.6;
}
.testimonial-body {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(17px, 1.4vw, 21px);
    line-height: 1.4;
    color: var(--text);
    margin: 0;
    flex: 1;
    letter-spacing: -0.005em;
}
.testimonial-footer {
    border-top: 1px solid var(--line);
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.testimonial-author {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}
.testimonial-role {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-mute);
}

/* ---------- ⌘K hint button in header ---------- */

.kbar-hint {
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 5px;
    color: var(--text-mute);
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.05em;
    padding: 3px 7px;
    margin-left: 8px;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
}
.kbar-hint:hover { border-color: var(--line-strong); color: var(--text); }

/* ---------- Mobile nav (full sitemap panel) ---------- */

.mobile-nav {
    position: fixed;
    inset: 0;
    padding-top: 90px;
    z-index: 95;
    background: var(--bg);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--line);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 24px var(--gutter, 24px) 16px;
    display: grid;
    gap: 4px;
}
.mobile-nav-list a {
    display: block;
    color: var(--text);
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: -0.01em;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
}
.mobile-nav-list a:active { opacity: 0.6; }
.mobile-nav-cta {
    padding: 12px var(--gutter, 24px) 8px;
}
.mobile-nav-cta .cta-button { width: 100%; justify-content: center; }
.mobile-nav-social {
    padding: 20px var(--gutter, 24px) 40px;
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: auto;
}
.mobile-nav-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line, rgba(255,255,255,0.18));
    border-radius: 999px;
    color: var(--text, #fff);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.mobile-nav-social a:active {
    background: var(--text, #fff);
    color: var(--bg, #000);
}

/* ---------- Case TL;DR ---------- */

.case-tldr {
    padding: clamp(40px, 5vw, 60px) 0 0;
}
.tldr-card {
    border: 1px solid var(--line);
    background: var(--bg-elev);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 3vw, 36px);
    display: flex;
    gap: clamp(20px, 3vw, 40px);
    align-items: flex-start;
    flex-wrap: wrap;
}
.tldr-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-mute);
    flex-shrink: 0;
    padding-top: 4px;
}
.tldr-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
    flex: 1;
    min-width: 280px;
}
.tldr-list li {
    color: var(--text);
    font-size: 15px;
    line-height: 1.55;
}
.tldr-key {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--accent);
    margin-right: 6px;
}

/* ---------- Footer 4 sütun responsive ---------- */

.footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
}

@media (max-width: 980px) {
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .testimonial-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .tldr-card { flex-direction: column; }
}

@media (max-width: 720px) {
    .kbar-hint { display: none; }
    .site-nav { display: none; }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 24px 0;
    }
    .hero-stat-value { font-size: 28px; }
    .hero-stat-label { font-size: 10px; letter-spacing: 0.14em; }

    .container { padding-left: 20px; padding-right: 20px; }

    .hero-meta { flex-direction: column; }
    .hero-meta .meta-side { margin-top: 12px; max-width: 100%; }
    .hero { padding-top: 110px; }

    .section-head { gap: 16px; }
    .lead { font-size: 15px; }

    .work-filters { gap: 6px; }
    .filter-pill { font-size: 12px; padding: 6px 10px; }
    .work-filters-label { width: 100%; margin-bottom: 4px; }

    .marquee--clients { padding-left: 20px; }
    .marquee-track span { font-size: 26px; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { font-size: 11px; }

    .mobile-nav-list a { font-size: 24px; }

    /* Brief preview mobile: sticky kapansın */
    .brief-preview { position: static !important; max-height: none !important; }

    /* Case-info tek sütun */
    .case-info-grid { grid-template-columns: 1fr; }

    /* Results table - daha sıkı padding */
    .results-table th, .results-table td { padding: 10px 6px; font-size: 12px; }
}

/* ---------- Sectors index ---------- */

.sectors-list-section { padding-bottom: clamp(80px, 10vw, 140px); }
.sectors-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--line);
}
.sectors-list li { border-bottom: 1px solid var(--line); }
.sector-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: clamp(20px, 3vw, 48px);
    padding: clamp(28px, 4vw, 56px) 0;
    transition: padding 0.5s var(--ease);
    color: var(--text);
}
.sector-row:hover { padding-left: 16px; }
.sector-row-text h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(28px, 3.6vw, 48px);
    margin: 0 0 8px;
    color: var(--text);
    letter-spacing: -0.02em;
}
.sector-row-tagline {
    font-family: var(--font-display);
    font-size: clamp(18px, 1.8vw, 24px);
    margin: 0 0 14px;
    line-height: 1.3;
}
.sector-row-lede {
    color: var(--text-mute);
    font-size: 15px;
    line-height: 1.6;
    max-width: 70ch;
    margin: 0 0 12px;
}
.sector-row-meta {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent);
}
.sector-row-arrow {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
    flex-shrink: 0;
}
.sector-row:hover .sector-row-arrow {
    background: var(--text);
    color: var(--bg);
    transform: rotate(-45deg);
}

/* ---------- Careers ---------- */

.careers-openings { padding-bottom: clamp(60px, 8vw, 100px); }
.openings-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.openings-list li { border-bottom: 1px solid var(--line); }
.opening-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: clamp(24px, 3vw, 48px);
    padding: clamp(24px, 3vw, 40px) 0;
}
.opening-row h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(22px, 2.2vw, 30px);
    margin: 0 0 6px;
    color: var(--text);
    letter-spacing: -0.01em;
}
.opening-meta {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-mute);
    margin: 0 0 12px;
}
.opening-body {
    color: var(--text-mute);
    font-size: 15px;
    line-height: 1.6;
    max-width: 64ch;
    margin: 0 0 14px;
}
.opening-tags { display: flex; gap: 8px; flex-wrap: wrap; }

.careers-perks { padding: clamp(60px, 8vw, 100px) 0; border-top: 1px solid var(--line); }
.perks-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2.5vw, 32px);
}
.perk-item {
    padding: clamp(20px, 2vw, 28px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--bg-elev);
}
.perk-item h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 19px;
    margin: 0 0 8px;
    color: var(--text);
    letter-spacing: -0.005em;
}
.perk-item p {
    margin: 0;
    color: var(--text-mute);
    font-size: 14px;
    line-height: 1.6;
}

/* ---------- Footer newsletter signup ---------- */

.footer-news { margin-top: 20px; max-width: 320px; }
.footer-news-label {
    display: block;
    font-size: 13px;
    color: var(--text);
    margin-bottom: 10px;
    font-family: var(--font-display);
    font-style: italic;
    letter-spacing: -0.005em;
}
.footer-news-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line-strong);
    padding-bottom: 6px;
    gap: 8px;
    transition: border-color 0.2s ease;
}
.footer-news-row:focus-within { border-color: var(--accent); }
.footer-news-row input {
    flex: 1;
    background: transparent;
    border: 0;
    outline: 0;
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 14px;
    padding: 6px 0;
}
.footer-news-row input::placeholder { color: var(--text-dim); }
.footer-news-row input.has-error { color: #ff8a7a; }
.footer-news-row button {
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 999px;
    width: 32px;
    height: 32px;
    color: var(--text);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.footer-news-row button:hover { background: var(--text); color: var(--bg); }
.footer-news-note { font-size: 11px; margin-top: 8px; line-height: 1.4; }

/* ---------- Brief progress bar ---------- */

.brief-progress {
    --p: 0%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}
.brief-progress-bar {
    height: 4px;
    border-radius: 2px;
    background: var(--line);
    overflow: hidden;
    position: relative;
}
.brief-progress-bar::after {
    content: "";
    position: absolute;
    inset: 0;
    width: var(--p);
    background: var(--accent);
    transition: width 0.35s var(--ease);
}
.brief-progress-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-mute);
}

/* ---------- Footer bottom orta hücre ---------- */

.footer-bottom-mid {
    text-align: center;
    color: var(--text-mute);
    font-size: 11px;
}

@media (max-width: 720px) {
    .footer-bottom-mid { text-align: left; }
    .perks-list { grid-template-columns: 1fr; }
    .opening-row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */

.site-footer {
    background: var(--bg);
    border-top: 1px solid var(--line);
    padding-top: clamp(60px, 8vw, 90px);
    padding-bottom: 28px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: clamp(32px, 4vw, 64px);
    margin-bottom: 64px;
}
.footer-brand { display: grid; gap: 18px; align-content: start; }
.footer-line {
    color: var(--text-mute);
    margin: 0;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 17px;
    max-width: 24ch;
    line-height: 1.4;
}
.footer-col h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-mute);
    margin: 0 0 18px;
    font-weight: 500;
}
.footer-col p, .footer-col ul { margin: 0; color: var(--text); font-size: 15px; }
.footer-col ul { padding: 0; list-style: none; display: grid; gap: 8px; }
.footer-col a { transition: color 0.2s ease; }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 16px;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.04em;
}

/* ---------- Animations ---------- */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-stagger.is-visible > * {
    opacity: 1;
    transform: translateY(0);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }
    .marquee-track { animation: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
    .hero-tail,
    .section-head,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .metrics { grid-template-columns: repeat(2, 1fr); }

    .service-row-inner {
        grid-template-columns: 50px 1fr;
        row-gap: 12px;
    }
    .service-desc, .service-tags { grid-column: 2; }
    .service-tags { justify-content: flex-start; }

    .work-card,
    .work-card.is-tall { grid-column: span 12; }

    .contact-side {
        border-left: 0;
        padding-left: 0;
        border-top: 1px solid var(--line);
        padding-top: 36px;
    }
}

@media (max-width: 720px) {
    .site-nav { display: none; }
    .cta-button { display: none; }
    .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }

    .logo { font-size: 30px; gap: 10px; }
    .logo-mark { width: 38px; height: 38px; }
    .site-header.is-scrolled .logo { font-size: 24px; }
    .site-header.is-scrolled .logo-mark { width: 30px; height: 30px; }

    .site-nav.is-open {
        display: flex;
        position: fixed;
        inset: 76px 0 0 0;
        background: var(--bg);
        flex-direction: column;
        gap: 0;
        padding: 24px var(--gutter);
        border-top: 1px solid var(--line);
    }
    .site-nav.is-open a {
        font-family: var(--font-display);
        font-size: 32px;
        color: var(--text);
        padding: 16px 0;
        border-bottom: 1px solid var(--line);
    }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { grid-template-columns: 1fr; gap: 8px; text-align: left; }

    .hero-meta { flex-direction: column; }
    .hero-meta .meta-side { max-width: 100%; }
}
