/* ============================================================
   Ana Sayfa — Dark + Orange Hero
   ============================================================ */
:root {
    --bg:        #0a0806;
    /* Tema renkleri — panelden override edilir (varsayılan: turuncu) */
    --accent:        #ff7a1a;
    --accent-2:      #ff9d4d;
    --accent-deep:   #f5760f;
    --accent-rgb:      255,122,26;
    --accent-2-rgb:    255,157,77;
    --accent-deep-rgb: 245,118,15;
    --orange:    var(--accent);
    --orange-2:  var(--accent-2);
    --cream:     #ffe9d6;
    --text:      #f3ede6;
    --muted:     #b9a99a;
    --line:      rgba(255,255,255,.10);
    --heading-font: 'Archivo Black', sans-serif; /* panelden override edilir */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Archivo', system-ui, sans-serif;
    color: var(--text);
    min-height: 100vh; overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    /* Tek parça, kesintisiz zemin — turuncu ışık tüm sayfada sürekli */
    background-color: var(--bg);
    background-image: radial-gradient(46% 40% at 6% 52%, rgba(var(--accent-rgb),.26), transparent 62%);
    background-repeat: no-repeat;
    background-attachment: fixed;
}
a { text-decoration: none; color: inherit; }

/* ---------- Header ---------- */
.site-header {
    position: fixed; inset: 0 0 auto 0; z-index: 60;
    display: flex; align-items: center; justify-content: space-between;
    height: 90px; padding: 0 40px;            /* sabit yükseklik — logo büyüse de bar büyümez */
    /* Buzlu cam sabit bar — içerik altından temizce geçsin */
    background: rgba(10,8,6,.55);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
    backdrop-filter: blur(14px) saturate(120%);
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.logo { flex-shrink: 0; }
.logo {
    font-family: var(--heading-font); font-size: 1.7rem; letter-spacing: -.05em; color: var(--cream);
    display: inline-flex; align-items: center;
}
.logo span { color: var(--orange); }
.logo-img { height: 96px; width: auto; max-width: 340px; object-fit: contain; display: block; }
.logo-svg { display: inline-flex; align-items: center; height: 96px; }
.logo-svg svg { height: 100%; width: auto; display: block; }

.top-nav { display: flex; gap: 8px; }
.top-link {
    position: relative; padding: 10px 18px; border-radius: 100px;
    font-weight: 700; font-size: .82rem; letter-spacing: .08em; color: var(--cream);
    transition: color .25s;
}
/* Üst menü — sade hover animasyonu (alt çizgi büyür) */
.top-link::after {
    content: ''; position: absolute; left: 50%; bottom: 4px; transform: translateX(-50%);
    width: 0; height: 2px; background: var(--orange); border-radius: 2px; transition: width .28s ease;
}
.top-link:hover { color: var(--orange-2); }
.top-link:hover::after { width: 22px; }

.header-right { display: flex; align-items: center; gap: 14px; }
.owt-badge {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 10px 18px; border: 1px solid var(--line); border-radius: 100px;
    font-size: .82rem; font-weight: 600; color: var(--cream);
    background: rgba(20,14,10,.5); backdrop-filter: blur(8px);
}
.owt-dot {
    width: 9px; height: 9px; border-radius: 50%; background: #3ddc84;
    box-shadow: 0 0 0 0 rgba(61,220,132,.6); animation: pulse 1.8s infinite;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(61,220,132,.55); }
    70%  { box-shadow: 0 0 0 8px rgba(61,220,132,0); }
    100% { box-shadow: 0 0 0 0 rgba(61,220,132,0); }
}
/* ---------- Dil değiştirici (TR/EN) ---------- */
.lang-switch { position: relative; }
.lang-btn {
    background: none; border: 1px solid var(--line); color: var(--cream);
    font-family: inherit; font-weight: 600; font-size: .85rem; cursor: pointer;
    padding: 9px 16px; border-radius: 100px; display: inline-flex; align-items: center; gap: 7px;
    transition: color .2s, border-color .2s;
}
.lang-btn:hover { color: var(--orange); border-color: var(--orange); }
.lang-caret { font-size: .7rem; opacity: .8; }
.lang-menu {
    position: absolute; top: calc(100% + 8px); right: 0; min-width: 160px;
    background: rgba(18,14,11,.96); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    border: 1px solid var(--line); border-radius: 12px; padding: 6px;
    display: none; flex-direction: column; z-index: 200;
    box-shadow: 0 20px 44px -18px rgba(0,0,0,.8);
}
.lang-menu.open { display: flex; }
.lang-menu a {
    padding: 11px 14px; border-radius: 8px; color: var(--cream); font-size: .92rem; font-weight: 500;
    cursor: pointer; transition: background .15s, color .15s; display: flex; align-items: center; gap: 9px;
}
.lang-menu a:hover { background: rgba(var(--accent-rgb),.15); color: var(--orange); }
.lang-menu a.active { color: var(--orange); background: rgba(var(--accent-rgb),.1); }

/* Google Translate arayüzünü gizle (bizim menümüz kontrol ediyor) */
.goog-te-banner-frame, .goog-te-banner-frame.skiptranslate { display: none !important; }
#google_translate_element, .goog-te-gadget { display: none !important; }
.goog-tooltip, #goog-gt-tt, .goog-te-balloon-frame { display: none !important; }
body { top: 0 !important; }
font { background: transparent !important; box-shadow: none !important; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; overflow: hidden; }

/* Işık katmanları */
.glow { position: absolute; z-index: 0; pointer-events: none; }
/* Sol turuncu ışık artık gövde (body) zemininde — kesinti olmasın diye */
.glow-left { display: none; }
.glow-ring {
    right: -60px; top: 50%; transform: translateY(-50%);
    width: 720px; height: 720px;
    background: radial-gradient(closest-side, rgba(var(--accent-rgb),.35), transparent 72%);
    filter: blur(10px);
}

.hero-grid {
    position: relative; z-index: 2;
    max-width: 1400px; margin: 0 auto; min-height: 100vh;
    display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 40px;
    padding: 120px 40px 140px;
}

/* SOL */
.hero-left { max-width: 640px; }
.hero-title { font-family: var(--heading-font); line-height: .92; letter-spacing: -.02em; }
.title-static {
    display: block; font-size: clamp(3rem, 8vw, 6.4rem); color: var(--cream);
    text-shadow: 0 4px 40px rgba(var(--accent-rgb),.15);
}
.title-type { display: flex; align-items: center; min-height: 1.05em; }
#typed {
    font-family: var(--heading-font); font-size: clamp(3rem, 8vw, 6.4rem);
    background: linear-gradient(180deg,
        color-mix(in srgb, var(--accent) 6%, #fff) 30%,
        color-mix(in srgb, var(--accent) 45%, #fff));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
/* Yanıp sönen çubuk (chat imleci gibi) */
.caret {
    display: inline-block; width: 5px; align-self: stretch; min-height: 1em;
    margin-left: 8px; background: var(--cream); border-radius: 2px;
    animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.hero-desc {
    margin-top: 34px; max-width: 560px;
    font-size: 1rem; line-height: 1.9; color: var(--muted); font-weight: 400;
}

/* SAĞ: Halka + dönen yazı */
.hero-right { position: relative; display: grid; place-items: center; }
.ring-wrap { position: relative; width: min(70vh, 540px); aspect-ratio: 1; }
.ring-core {
    position: absolute; inset: 12%; border-radius: 50%;
    background: radial-gradient(circle at 50% 45%, var(--accent), var(--accent-deep) 55%, var(--accent-deep) 100%);
    box-shadow: 0 0 120px 20px rgba(var(--accent-deep-rgb),.45), inset 0 0 80px rgba(120,40,0,.5);
}
.ring-text {
    position: absolute; inset: -4%; width: 108%; height: 108%; z-index: 5;
    animation: spin 26s linear infinite; transform-origin: center;
}
.ring-text text {
    fill: var(--cream); font-family: var(--heading-font);
    font-size: 24px; letter-spacing: 3px; text-transform: uppercase;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Halkanın önüne konan opsiyonel görsel — büyük ve alta yaslı (halka alttan görünmesin) */
.ring-image {
    position: absolute; inset: -4%; z-index: 2;
    width: 108%; height: 108%;
    object-fit: contain; object-position: center bottom;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,.5));
}
/* Ön katman: sadece kol/el kesimi — yazının ÜSTÜNDE kalır (derinlik efekti) */
.ring-fg {
    position: absolute; inset: -4%; z-index: 6;
    width: 108%; height: 108%;
    object-fit: contain; object-position: center bottom;
    pointer-events: none;
}

/* ---------- Alt Menü Barı (dock) ---------- */
.pill-nav {
    position: fixed; z-index: 40; bottom: 0; left: 50%;
    transform: translateX(-50%);
    display: flex; align-items: center; gap: 6px;
    padding: 12px 22px 16px;
    /* Buzlu cam: yarı saydam + üstte tema renginde hafif ton */
    background: linear-gradient(180deg, rgba(var(--accent-rgb),.16) 0%, rgba(18,15,12,.44) 58%, rgba(10,9,8,.5) 100%);
    -webkit-backdrop-filter: blur(18px) saturate(125%);
    backdrop-filter: blur(18px) saturate(125%);
    border-top: 1px solid rgba(255,255,255,.16);
    border-radius: 46px 46px 0 0;
    box-shadow: 0 -8px 34px -12px rgba(0,0,0,.5);
    overflow: hidden;
    animation: dockUp .6s cubic-bezier(.22,1,.36,1) both;
}
@keyframes dockUp { from { transform: translate(-50%, 100%); } to { transform: translate(-50%, 0); } }

.pill-link {
    position: relative; padding: 9px 22px;
    font-weight: 600; font-size: .95rem; color: #efe7de;
    display: flex; align-items: center; isolation: isolate;
    transition: color .3s ease, text-shadow .3s ease;
}
/* Hover'da beliren küçük turuncu ışık (kalıcı değil) */
.pill-link::after {
    content: ''; position: absolute; z-index: -1;
    left: 50%; bottom: -6px; transform: translateX(-50%);
    width: 78%; height: 26px;
    background: radial-gradient(ellipse at center, rgba(var(--accent-rgb),.7), transparent 70%);
    filter: blur(6px); opacity: 0;
    transition: opacity .3s ease, bottom .3s ease;
    pointer-events: none;
}
/* Hover: yazıya ışık + hafif turuncu alt ışık */
.pill-link:hover {
    color: #fff;
    text-shadow: 0 0 16px rgba(255,205,160,.9), 0 0 5px rgba(255,255,255,.55);
}
.pill-link:hover::after { opacity: .8; bottom: -3px; }
/* Aktif (Home) altında kalıcı turuncu ışık — 2. görseldeki gibi */
.pill-link.active { color: #fff; }
.pill-link.active::after { opacity: 1; bottom: -3px; }

/* ---------- Hizmetler (numaralı liste) ---------- */
.services { padding: 60px 40px 120px; max-width: 1500px; margin: 0 auto; }
.srv-head {
    text-align: center; font-family: var(--services-font); font-weight: 400;
    font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.05; margin-bottom: 60px;
    color: rgba(255,255,255,.85);
}
.srv-head strong { font-weight: 800; color: #fff; }
.srv-head-post { color: rgba(255,255,255,.75); }

.srv-list { display: flex; flex-direction: column; }
.srv-item { border-top: 1px solid rgba(255,255,255,.12); }
.srv-list .srv-item:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.srv-row {
    width: 100%; background: none; border: 0; cursor: pointer; font-family: inherit; text-align: left;
    position: relative; display: grid;
    grid-template-columns: 120px 1fr 56px; align-items: center; gap: 20px;
    padding: 26px 8px;
    transition: padding-left .35s ease, background .35s ease;
}
.srv-num {
    font-family: var(--services-font); font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 600;
    color: rgba(255,255,255,.28); transition: color .3s;
}
.srv-title {
    font-family: var(--services-font); font-size: clamp(1.5rem, 3vw, 2.6rem); font-weight: 400;
    color: rgba(255,255,255,.45); transition: color .3s;
}
.srv-title strong { font-weight: 800; color: #fff; }
.srv-arrow { font-size: clamp(2rem, 3vw, 2.9rem); color: rgba(255,255,255,.35); justify-self: end; transition: transform .35s ease, color .3s; }

/* Accent (tema renkli) satırlar */
.srv-item.accent .srv-num { color: rgba(var(--accent-rgb),.32); }
.srv-item.accent .srv-title { color: rgba(255,255,255,.48); }
.srv-item.accent .srv-title strong { color: rgba(var(--accent-rgb),.72); }

/* Hover: satır aydınlanır, sola kayar */
.srv-row:hover { padding-left: 26px; background: linear-gradient(90deg, rgba(var(--accent-rgb),.10), transparent 45%); }
.srv-row:hover .srv-num, .srv-item.open .srv-num { color: var(--orange); }
.srv-row:hover .srv-title, .srv-item.open .srv-title { color: #fff; }
.srv-row:hover .srv-title strong, .srv-item.open .srv-title strong { color: var(--orange); }
.srv-row:hover .srv-arrow { transform: translate(5px, -5px); color: var(--orange); }

/* Açık durumda ok döner + panel açılır */
.srv-item.open .srv-arrow { transform: rotate(90deg); color: var(--orange); }
.srv-item.open .srv-row { background: linear-gradient(90deg, rgba(var(--accent-rgb),.10), transparent 45%); padding-left: 26px; }
.srv-panel { max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(.4,0,.2,1); }
.srv-panel-inner { font-family: 'Archivo', system-ui, 'Segoe UI', sans-serif; padding: 0 56px 30px 120px; color: rgba(255,255,255,.62); font-size: clamp(1rem, 1.4vw, 1.12rem); line-height: 1.75; max-width: 920px; }
.srv-empty { color: rgba(255,255,255,.32); font-style: italic; }

/* ---------- Portföy ---------- */
.portfolio { padding: 40px 40px 130px; max-width: 1360px; margin: 0 auto; }
.portfolio .srv-head { margin-bottom: 40px; }

/* Filtre butonları */
.pf-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 55px; }
.pf-filter {
    position: relative; overflow: hidden;
    padding: 12px 26px; border-radius: 100px; cursor: pointer;
    font-family: 'Archivo', sans-serif; font-weight: 600; font-size: .95rem; color: #cfc7bf;
    background: linear-gradient(180deg, rgba(52,47,42,.55), rgba(16,14,12,.75));
    border: 1px solid rgba(255,255,255,.10);
    transition: color .3s, border-color .3s, transform .3s;
}
.pf-filter::after {
    content: ''; position: absolute; left: 50%; bottom: -16px; transform: translateX(-50%);
    width: 75%; height: 34px; border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(var(--accent-2-rgb),.95), transparent 70%);
    filter: blur(6px); opacity: 0; transition: opacity .3s ease;
}
.pf-filter:hover { color: #fff; border-color: rgba(var(--accent-rgb),.5); }
.pf-filter:hover::after { opacity: 1; }
.pf-filter.active { color: #fff; border-color: rgba(var(--accent-rgb),.45); }

/* Grid + kartlar */
.pf-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.pf-card { display: block; border-radius: 18px; opacity: 1; transition: transform .4s ease, opacity .4s ease; }
.pf-card:hover { color: inherit; }
.pf-card.hide { display: none; }
.pf-thumb {
    position: relative; aspect-ratio: 16/10; border-radius: 16px; overflow: hidden;
    background-size: contain; background-position: center; background-repeat: no-repeat;
    filter: grayscale(1) contrast(1.02); transition: filter .5s ease, transform .5s ease;
    display: grid; place-items: center;
    border: 1px solid rgba(255,255,255,.08);
}
.pf-card:hover .pf-thumb { filter: grayscale(0); transform: scale(1.015); }
.pf-thumb-label { font-family: var(--heading-font); font-weight: 800; font-size: 1.6rem; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .05em; padding: 0 20px; text-align: center; }

.pf-info {
    position: relative; z-index: 2;
    display: flex; align-items: center; gap: 16px;
    margin: -52px 14px 0; padding: 16px 20px;   /* kapak görselinin altına doğru yukarı çıkar */
    border-radius: 16px; border: 1px solid rgba(var(--accent-rgb),.22);
    background: linear-gradient(100deg, rgba(var(--accent-rgb),.28), rgba(16,12,10,.92) 58%);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    box-shadow: 0 16px 34px -14px rgba(0,0,0,.7);
    transition: border-color .3s, background .3s, transform .3s ease;
}
.pf-card:hover .pf-info { transform: translateY(-4px); }
.pf-card:hover .pf-info { border-color: rgba(var(--accent-rgb),.4); }
.pf-logo {
    width: 58px; height: 58px; flex-shrink: 0; border-radius: 12px;
    background-size: cover; background-position: center;
    display: grid; place-items: center; font-family: var(--heading-font); font-weight: 800;
    font-size: 1.5rem; color: #fff; background-color: #2a2622; border: 1px solid rgba(255,255,255,.12);
}
.pf-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.pf-meta h3 { font-family: var(--heading-font); font-size: 1.05rem; font-weight: 800; color: var(--orange); text-transform: uppercase; letter-spacing: .01em; }
.pf-cat { font-size: .9rem; color: #e8e2da; }
.pf-platform { font-size: .82rem; color: #8b8479; }

/* Show More butonu */
.pf-more-wrap { text-align: center; margin-top: 60px; }
.pf-more {
    display: inline-block; text-align: center;
    font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 1.02rem; letter-spacing: .015em;
    color: #2b1400; padding: 17px 54px; border: 0; border-radius: 100px; cursor: pointer;
    background: linear-gradient(180deg, var(--accent-2) 0%, var(--accent) 55%, var(--accent-deep) 100%);
    box-shadow:
        0 0 30px -2px rgba(var(--accent-rgb),.32),          /* hafif dış glow (kısık) */
        0 10px 24px -8px rgba(var(--accent-deep-rgb),.42),        /* zemine düşen gölge */
        inset 0 1px 0 rgba(255,255,255,.5),          /* üstte cam parıltısı */
        inset 0 -2px 7px rgba(150,50,0,.25);         /* altta derinlik */
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}
/* Hover: degrade hafif aydınlanır, glow ölçülü büyür */
.pf-more:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, var(--accent-2) 0%, var(--accent-2) 55%, var(--accent-deep) 100%);
    box-shadow:
        0 0 44px 0 rgba(var(--accent-2-rgb),.42),
        0 14px 30px -8px rgba(var(--accent-deep-rgb),.48),
        inset 0 1px 0 rgba(255,255,255,.6),
        inset 0 -2px 7px rgba(150,50,0,.22);
}
.pf-more:active { transform: translateY(0); }

/* ---------- İletişim ---------- */
.contact { padding: 40px 40px 130px; max-width: 1280px; margin: 0 auto; }
.ct-head { text-align: center; margin-bottom: 60px; }
.ct-eyebrow { display: block; letter-spacing: .4em; font-size: .8rem; font-weight: 600; color: var(--orange); margin-bottom: 14px; }
.ct-title {
    position: relative; display: inline-block;
    font-family: var(--heading-font); font-weight: 800; text-transform: uppercase;
    font-size: clamp(3rem, 11vw, 8rem); line-height: .9; letter-spacing: -.02em;
    color: var(--accent);
    text-shadow: 0 0 30px rgba(var(--accent-rgb),.6), 0 0 70px rgba(var(--accent-deep-rgb),.35);
    animation: ctGlow 3.2s ease-in-out infinite;
}
/* Arkada hafif outline eko (farklılık) */
.ct-title::before {
    content: attr(data-text); position: absolute; left: 50%; top: -28%; transform: translateX(-50%);
    color: transparent; -webkit-text-stroke: 1.5px rgba(var(--accent-rgb),.28); z-index: -1; white-space: nowrap;
}
@keyframes ctGlow {
    0%, 100% { text-shadow: 0 0 26px rgba(var(--accent-rgb),.5), 0 0 60px rgba(var(--accent-deep-rgb),.28); }
    50%      { text-shadow: 0 0 40px rgba(var(--accent-2-rgb),.75), 0 0 90px rgba(var(--accent-deep-rgb),.45); }
}

.ct-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 26px; align-items: start; }

/* Form */
.ct-form { display: flex; flex-direction: column; gap: 16px; }
.ct-form input, .ct-form textarea {
    width: 100%; background: linear-gradient(180deg, rgba(38,34,30,.55), rgba(16,14,12,.75));
    border: 1px solid rgba(255,255,255,.08); border-radius: 14px;
    padding: 20px 22px; color: #f3ede6; font-family: 'Archivo', sans-serif; font-size: 1rem;
    transition: border-color .25s, box-shadow .25s, background .25s;
}
.ct-form input::placeholder, .ct-form textarea::placeholder { color: #9a938a; }
.ct-form input:focus, .ct-form textarea:focus {
    outline: none; border-color: rgba(var(--accent-rgb),.6);
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb),.14);
    background: linear-gradient(180deg, rgba(46,40,34,.6), rgba(20,17,14,.8));
}
.ct-form textarea { resize: vertical; min-height: 120px; }
.ct-hp { position: absolute; left: -9999px; opacity: 0; }
.ct-alert { padding: 14px 18px; border-radius: 12px; font-size: .95rem; }
.ct-alert.ok { background: rgba(74,222,128,.12); border: 1px solid rgba(74,222,128,.4); color: #86efac; }
.ct-alert.err { background: rgba(248,113,113,.12); border: 1px solid rgba(248,113,113,.4); color: #fca5a5; }

.ct-send {
    margin-top: 4px; padding: 20px; border: 0; border-radius: 14px; cursor: pointer;
    font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: .06em; color: #2b1400;
    background: linear-gradient(180deg, var(--accent-2) 0%, var(--accent) 55%, var(--accent-deep) 100%);
    box-shadow: 0 0 30px -4px rgba(var(--accent-rgb),.4), inset 0 1px 0 rgba(255,255,255,.45), inset 0 -2px 7px rgba(150,50,0,.22);
    transition: transform .3s, box-shadow .3s, background .3s;
}
.ct-send:hover { transform: translateY(-2px); background: linear-gradient(180deg, var(--accent-2), var(--accent-2)); box-shadow: 0 0 46px 0 rgba(var(--accent-2-rgb),.5), inset 0 1px 0 rgba(255,255,255,.6); }
.ct-send:active { transform: translateY(0); }

/* Bilgi kartları */
.ct-cards { display: flex; flex-direction: column; gap: 20px; }
.ct-card {
    display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 16px; row-gap: 2px;
    padding: 24px; border-radius: 16px; border: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(150deg, rgba(34,30,26,.6), rgba(14,12,10,.75));
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.ct-card:hover { transform: translateY(-4px); border-color: rgba(var(--accent-rgb),.45); box-shadow: 0 18px 40px -18px rgba(var(--accent-rgb),.4); }
.ct-icon {
    grid-row: 1 / 3; width: 62px; height: 62px; border-radius: 14px; display: grid; place-items: center;
    background: linear-gradient(180deg, rgba(50,44,38,.7), rgba(20,17,14,.9)); border: 1px solid rgba(255,255,255,.1);
    color: #efe7de; transition: color .3s, border-color .3s;
    margin-bottom: 6px;
}
.ct-icon svg { width: 30px; height: 30px; }
.ct-card:hover .ct-icon { color: var(--orange); border-color: rgba(var(--accent-rgb),.4); }
.ct-label { align-self: end; font-size: .9rem; color: #9a938a; }
.ct-value { font-family: var(--heading-font); font-weight: 700; font-size: 1.15rem; color: #fff; word-break: break-word; }

/* ---------- Sosyal medya butonları ---------- */
.socials { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-top: 70px; }
.social-btn {
    display: inline-flex; align-items: center; gap: 16px;
    padding: 20px 34px 20px 20px; min-width: 230px; border-radius: 16px;
    background: linear-gradient(150deg, rgba(34,30,26,.65), rgba(12,11,9,.85));
    border: 1px solid rgba(255,255,255,.08);
    color: #efe7de; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, color .3s ease;
}
.social-btn:hover {
    transform: translateY(-4px); color: #fff;
    border-color: rgba(var(--accent-rgb),.45);
    box-shadow: 0 18px 40px -18px rgba(var(--accent-rgb),.5);
}
.social-ic {
    width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px; display: grid; place-items: center;
    background: rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.08); color: #fff;
    transition: color .3s, border-color .3s;
}
.social-ic svg { width: 22px; height: 22px; }
.social-btn:hover .social-ic { color: var(--orange); border-color: rgba(var(--accent-rgb),.4); }
.social-name { font-family: var(--heading-font); font-weight: 700; font-size: 1rem; letter-spacing: .06em; text-transform: uppercase; }

/* ---------- Works / Portföy sayfası ---------- */
.works-body {
    background-image:
        radial-gradient(46% 55% at 100% 16%, rgba(var(--accent-rgb),.24), transparent 60%),
        radial-gradient(40% 50% at 0% 74%, rgba(var(--accent-rgb),.14), transparent 60%);
    background-attachment: fixed; background-repeat: no-repeat;
}
.works-body .portfolio { padding-top: 130px; }   /* sabit header için boşluk */

/* Giriş yükleyicisi (intro halka) — kısa süre oynar, sonra kaybolur */
.works-loader {
    position: fixed; inset: 0; z-index: 100; display: grid; place-items: center;
    background-color: #050403; background-size: cover; background-position: center;
    animation: loaderOut 2.8s ease forwards;
}
/* Görselin üstüne koyu + turuncu katman (halka okunur kalsın) */
.works-loader::before {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background: radial-gradient(42% 52% at 50% 46%, rgba(var(--accent-rgb),.3), transparent 66%), rgba(5,4,3,.5);
}
.works-loader .ring-wrap { position: relative; z-index: 1; width: min(62vh, 480px); }
.intro-ring { animation: introIn 1.1s cubic-bezier(.2,.85,.25,1) both; }
@keyframes introIn {
    0%   { opacity: 0; transform: scale(.55); filter: blur(6px); }
    100% { opacity: 1; transform: scale(1);   filter: blur(0); }
}
@keyframes loaderOut {
    0%, 66% { opacity: 1; visibility: visible; }
    100%    { opacity: 0; visibility: hidden; }
}

/* ---------- Kampanyalar ---------- */
.cmp-sub { text-align: center; color: var(--muted); font-size: 1.05rem; margin: -30px auto 50px; }
.cmp-empty { text-align: center; color: var(--muted); padding: 60px 0; font-size: 1.1rem; }
.cmp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.cmp-card {
    display: flex; flex-direction: column; border-radius: 18px; overflow: hidden;
    background: linear-gradient(160deg, rgba(30,26,22,.7), rgba(12,11,9,.85));
    border: 1px solid rgba(255,255,255,.08);
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.cmp-card:hover { transform: translateY(-6px); border-color: rgba(var(--accent-rgb),.45); box-shadow: 0 26px 50px -22px rgba(var(--accent-rgb),.45); }
.cmp-banner {
    position: relative; aspect-ratio: 16/9; background-size: cover; background-position: center;
    display: flex; align-items: flex-start; padding: 16px;
}
.cmp-badge {
    background: linear-gradient(180deg, var(--accent-2), var(--accent));
    color: #1a0d03; font-weight: 800; font-size: .8rem; letter-spacing: .04em;
    padding: 7px 16px; border-radius: 100px; text-transform: uppercase;
    box-shadow: 0 6px 18px -6px rgba(var(--accent-rgb),.6);
}
.cmp-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; gap: 10px; }
.cmp-body h3 { font-family: var(--heading-font); font-size: 1.35rem; font-weight: 800; }
.cmp-desc { color: var(--muted); font-size: .95rem; line-height: 1.6; flex: 1; }
.cmp-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
.cmp-until { font-size: .82rem; color: var(--accent-2); font-weight: 600; }
.cmp-cta {
    display: inline-block; padding: 11px 24px; border-radius: 100px; font-weight: 700; font-size: .92rem; color: #1a0d03;
    background: linear-gradient(180deg, var(--accent-2), var(--accent));
    box-shadow: 0 0 26px -6px rgba(var(--accent-rgb),.5), inset 0 1px 0 rgba(255,255,255,.4);
    transition: transform .25s ease, box-shadow .25s ease;
}
.cmp-cta:hover { transform: translateY(-2px); box-shadow: 0 0 40px -4px rgba(var(--accent-rgb),.7), inset 0 1px 0 rgba(255,255,255,.5); }

/* ---------- Proje detay sayfası ---------- */
.pd-wrap { max-width: 1240px; margin: 0 auto; padding: 130px 40px 100px; }
.pd-back { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-weight: 600; font-size: .9rem; letter-spacing: .04em; margin-bottom: 34px; transition: color .2s, transform .2s; }
.pd-back:hover { color: var(--orange); transform: translateX(-3px); }

.pd-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; margin-bottom: 40px; }
.pd-title { font-family: var(--heading-font); font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 800; color: #fff; }
.pd-meta { display: flex; align-items: center; gap: 12px; margin: 16px 0 18px; }
.pd-cat { background: #fff; color: #0a0806; font-weight: 700; font-size: .82rem; padding: 6px 16px; border-radius: 100px; }
.pd-dot { color: var(--muted); }
.pd-year { color: var(--muted); font-weight: 600; }
.pd-desc { color: var(--muted); font-size: 1.02rem; max-width: 620px; line-height: 1.7; }
.pd-live {
    flex-shrink: 0; display: inline-block; padding: 15px 30px; border-radius: 100px; font-weight: 700; font-size: .95rem;
    color: var(--cream); border: 1px solid var(--line); background: rgba(30,24,18,.5); transition: .25s;
}
.pd-live:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

.pd-body { display: grid; grid-template-columns: 1fr 340px; gap: 26px; align-items: start; }
.pd-image {
    aspect-ratio: 16/10; border-radius: 18px; background-size: cover; background-position: center;
    border: 1px solid rgba(255,255,255,.08); display: grid; place-items: center; overflow: hidden;
}
.pd-image-label { font-family: var(--heading-font); font-weight: 800; font-size: 2rem; color: rgba(255,255,255,.3); text-transform: uppercase; }
.pd-img { width: 100%; display: block; border-radius: 18px; border: 1px solid rgba(255,255,255,.08); cursor: zoom-in; object-fit: contain; }

/* Lightbox */
.pd-lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.93); z-index: 9999; place-items: center; cursor: zoom-out; }
.pd-lightbox.open { display: grid; }
.pd-lightbox > img { max-width: 92vw; max-height: 92vh; object-fit: contain; border-radius: 10px; cursor: default; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.pd-lb-close { position: absolute; top: 18px; right: 22px; background: rgba(255,255,255,.12); border: none; color: #fff; width: 42px; height: 42px; border-radius: 50%; font-size: 1.1rem; cursor: pointer; transition: background .2s; }
.pd-lb-close:hover { background: rgba(255,255,255,.28); }

.pd-side { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 110px; }
.pd-card { background: linear-gradient(160deg, rgba(28,24,20,.7), rgba(12,11,9,.85)); border: 1px solid rgba(255,255,255,.08); border-radius: 18px; padding: 26px; display: flex; flex-direction: column; gap: 20px; }
.pd-logo { width: 96px; height: 96px; border-radius: 16px; background-size: cover; background-position: center; border: 1px solid var(--line); align-self: flex-start; }
.pd-field { display: flex; flex-direction: column; gap: 5px; }
.pd-label { font-size: .72rem; letter-spacing: .12em; color: var(--muted); font-weight: 600; }
.pd-value { font-family: var(--heading-font); font-weight: 700; font-size: 1.05rem; color: #fff; }
.pd-url { color: #4ea1ff; font-size: .92rem; word-break: break-all; }
.pd-url:hover { text-decoration: underline; }

.pd-react { display: flex; gap: 12px; background: linear-gradient(160deg, rgba(28,24,20,.7), rgba(12,11,9,.85)); border: 1px solid rgba(255,255,255,.08); border-radius: 18px; padding: 18px; justify-content: space-around; }
.pd-emoji { display: flex; flex-direction: column; align-items: center; gap: 4px; background: none; border: 0; cursor: pointer; color: var(--muted); font-family: inherit; transition: transform .2s; }
.pd-emoji span { width: 48px; height: 48px; display: grid; place-items: center; font-size: 1.5rem; border-radius: 50%; background: var(--card-2, #1c1c28); border: 1px solid var(--line); transition: transform .2s, border-color .2s; }
.pd-emoji b { font-size: .9rem; color: var(--muted); }
.pd-emoji:hover { transform: translateY(-3px); }
.pd-emoji:hover span { border-color: rgba(var(--accent-rgb),.5); }
.pd-emoji.active span { border-color: var(--orange); box-shadow: 0 0 16px -4px rgba(var(--accent-rgb),.6); }
.pd-emoji.active b { color: var(--orange); }

@media (max-width: 900px) {
    .pd-wrap { padding: 120px 20px 80px; }
    .pd-head { flex-direction: column; }
    .pd-body { grid-template-columns: 1fr; }
    .pd-side { position: static; }
}

/* ---------- Reveal (kaydırınca beliren) ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }
/* Hizmet satırları: soldan sıralı açılım */
.reveal-srv { transform: translateX(-45px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); }
.reveal-srv.visible { transform: none; }

/* ---------- Büyük CTA (LET'S WORK ...) ---------- */
.cta-work { background: transparent; padding: 130px 24px; display: flex; justify-content: center; }
.cta-inner { text-align: center; line-height: .98; }
.cta-line {
    font-family: var(--heading-font); font-weight: 800; text-transform: uppercase;
    font-size: clamp(2.4rem, 8.5vw, 6.6rem); letter-spacing: -.01em;
    display: flex; justify-content: center; align-items: center; gap: .18em; flex-wrap: nowrap;
    background: linear-gradient(180deg,
        color-mix(in srgb, var(--accent) 10%, #fff) 0%,
        color-mix(in srgb, var(--accent) 45%, #fff) 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
/* Ortadaki açılıp kapanan kapsül */
.work-pill {
    display: inline-block; position: relative;
    width: 2.3em; height: .62em; flex-shrink: 0; align-self: center;
}
.work-pill i {
    position: absolute; inset: 0; border-radius: 100px;
    background: linear-gradient(180deg,
        color-mix(in srgb, var(--accent) 8%, #fff),
        color-mix(in srgb, var(--accent) 42%, #fff));
    box-shadow: inset 0 2px 6px rgba(255,255,255,.6);
    transform: scaleX(0); transform-origin: center;
    animation: pillOpen 3.4s cubic-bezier(.65,0,.35,1) infinite;
}
@keyframes pillOpen {
    0%   { transform: scaleX(0); }
    35%  { transform: scaleX(1); }
    75%  { transform: scaleX(1); }
    100% { transform: scaleX(0); }
}

/* ---------- Kayan Şerit (Marquee) ---------- */
.marquee {
    position: relative; overflow: hidden;
    background: transparent;      /* sayfa arka planıyla kaynaşsın */
    padding: 30px 0;
    /* İnce üst/alt çerçeve çizgileri */
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.marquee-track {
    display: flex; align-items: center; gap: 44px; width: max-content;
    animation: mqScroll 32s linear infinite;
}
@keyframes mqScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.mq-item {
    font-family: var(--marquee-font); text-transform: uppercase;
    font-size: clamp(1.6rem, 3.6vw, 2.8rem); font-weight: 700;
    letter-spacing: .01em; white-space: nowrap;
    color: rgba(255,255,255,.38);   /* devamı soluk gri */
}
.mq-item strong { color: #ffffff; font-weight: 800; }  /* ilk kelime parlak BEYAZ */

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; text-align: left; padding-top: 130px; }
    .hero-right { margin-top: 20px; }
    .ring-wrap { width: min(70vw, 340px); }
    .top-nav { display: none; }
    .pf-grid { grid-template-columns: 1fr; }
    .ct-grid { grid-template-columns: 1fr; }
    .portfolio, .services, .contact { padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 560px) {
    .site-header { padding: 16px 20px; }
    .owt-badge { display: none; }
    .hero-grid { padding: 120px 20px 150px; }
    .pill-link { padding: 11px 16px; font-size: .85rem; }
    .hero-desc { font-size: .95rem; }
    .srv-row { grid-template-columns: 54px 1fr 34px; gap: 12px; padding: 20px 4px; }
    .srv-panel-inner { padding: 0 8px 24px 4px; }
}
