/* ====== TEMEL ====== */
:root {
    --bg-0: #050507;
    --bg-1: #0b0c10;
    --bg-2: #12131a;
    --txt: #eceff3;
    --muted: #b7bbc4;
    --accent: #ff2323;
    --line: #1e212a;
    --container: 1200px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--txt);
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    background:
        radial-gradient(60% 40% at 70% 15%, rgba(255, 35, 35, .10), transparent 60%),
        radial-gradient(40% 30% at 10% 80%, rgba(255, 255, 255, .06), transparent 60%),
        linear-gradient(180deg, var(--bg-0), var(--bg-1) 40%, var(--bg-2));
    overflow-x: hidden;
}

.container {
    width: min(var(--container), 92%);
    margin-inline: auto
}

a {
    color: inherit;
    text-decoration: none
}

/* ===== SCROLLBAR TASARIMI ===== */

/* --- Chrome, Edge, Safari --- */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #0a0c12;
  border-left: 1px solid #1c1f26;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(255,255,255,.15), rgba(255,255,255,.05));
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.08);
  transition: all .25s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--accent), rgba(255,255,255,.25));
  border-color: rgba(255,255,255,.15);
}

/* --- Firefox --- */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.25) #0a0c12;
}

/*NAVBAR----------------------------------------------------------------------------------------------------------------*/
/* ====== NAVBAR (İNCE, SABİT) ====== */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(8, 10, 14, .55);
    backdrop-filter: blur(10px)
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px
}

.brand {
    font-family: 'League Spartan', Impact, sans-serif;
    font-weight: 800;
    letter-spacing: .5px
}

.brand-logo {
    height: 80px;
    filter: contrast(2) brightness(0.9);
    padding: 6px;
}

.brand .t {
    color: var(--accent);
    margin-inline: 2px
}

.nav-links {
    display: flex;
    gap: 18px;
    align-items: center
}

.nav-links a {
    padding: .45rem .7rem;
    border: 1px solid transparent
}

.nav-links a:hover {
    border-color: #272b34
}

/* --- ortak --- */
body.no-scroll {
    overflow: hidden
}
/* Navbar sosyal medya */
.nav-social {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-right: 10px;
}

.nav-social a {
  font-size: 1.4rem;
  color: #c8ccd4;
  transition: .25s ease;
}

.nav-social a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}
/* Mobil header içindeki sosyal bar başlangıçta kapalı */
.nav-social--mobile {
  display: none;
}

/* 🔹 Mobil görünüm ayarları */
@media (max-width: 768px) {
  /* Masaüstü nav linkleri mobilde zaten gizleniyorsa sorun yok,
     ama sosyal ikonları da gizleyelim */
  .nav-links .nav-social {
    display: none;
  }

  /* Mobil header sosyal: logo ile hamburger arasında */
  .nav-social--mobile {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-left: auto;   /* logodan sonra sağ tarafa it */
    margin-right: 20px;   /* hamburgerden biraz boşluk */
  }

  .nav-social--mobile a {
    font-size: 1.3rem;
    color: #e1e4ec;
    transition: .25s ease;
  }

  .nav-social--mobile a:hover {
    color: var(--accent);
    transform: translateY(-1px);
  }
}
/* hamburger default gizli */
.hamburger {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid #262a32;
    background: #0b0c10;
    color: #fff;
    display: none;
    place-items: center;
}

/* mobil menü paneli */
.mobile-menu {
    position: fixed;
    inset: 80px 0 0 0;
    /* header yüksekliği kadar aşağıdan başla */
    background: rgba(10, 12, 18, .88);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, .06);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform .24s ease, opacity .24s ease;
    z-index: 49;
    /* header 50 idi */
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav {
    display: grid;
    gap: 10px;
    padding: 14px 0
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid #272b34;
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
}

.mobile-link.cta {
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  background: white;
  border: none;
  color: #000;
  margin-top: 8px;
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  transition: background .3s ease, transform .2s ease;
}

.mobile-link.cta i {
  font-size: 1.4rem;
  color: #000;
}

.mobile-link.cta:hover {
  background: #ff4242;
  transform: scale(1.03);
}

.mobile-social {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 25px;
}

.mobile-social a {
  font-size: 1.8rem;
  color: #ddd;
  transition: .25s ease;
}

.mobile-social a:hover {
  color: var(--accent);
  transform: scale(1.1);
}

/* --- breakpoint --- */
@media (max-width: 900px) {
    .nav-links {
        display: none
    }

    /* masaüstü linkleri gizle */
    .hamburger {
        display: grid
    }

    /* hamburger göster */
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: .62rem .9rem;
    background: #fff;
    color: #000;
    font-weight: 800;
    border: 0
}

.btn.sm {
    padding: .45rem .7rem
}

.btn.ghost {
    background: transparent;
    border: 1px solid #2a2e38;
    color: #d3d7df
}

.btn.xl {
    padding: 1rem 1.2rem;
    font-size: 1.05rem
}

/* ==== Button fill-from-bottom ==== */
.btn,
.btn.ghost {
    position: relative;
    z-index: 0;
    overflow: hidden;

    /* sende neyse ona uy */
}

/* Baz katman (butonun normal rengi) */
.btn::before,
.btn.ghost::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: -2;
}

/* Doluşan katman (alttan üste) */
.btn::after,
.btn.ghost::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    transform-origin: bottom;
    transform: scaleY(0);
    transition: transform .35s ease;
    z-index: -1;
}

/* Renkler – primary ve ghost için ayrı taban/hover */
.btn {
    --base: #fff;
    /* mevcut tasarımdaki beyaz taban */
    --hover: var(--accent);
    /* kırmızı dolgu */
    color: #000;
    border: 0;
}

.btn::before {
    background: var(--base);
}

.btn::after {
    background: var(--hover);
}

.btn:hover,
.btn:focus-visible {
    color: #fff;
}

.btn:hover::after,
.btn:focus-visible::after {
    transform: scaleY(1);
}

/* Ghost (şeffaf taban, hover’da beyaz dolgu) */
.btn.ghost {
    --base: transparent;
    --hover: #fff;
    color: #d3d7df;
    border: 1px solid #2a2e38;
}

.btn.ghost::before {
    background: var(--base);
}

.btn.ghost::after {
    background: var(--hover);
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
    color: #000;
}

.btn.ghost:hover::after,
.btn.ghost:focus-visible::after {
    transform: scaleY(1);
}

/* Erişilebilirlik */
.btn:focus-visible,
.btn.ghost:focus-visible {
    outline: 2px solid rgba(255, 255, 255, .35);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {

    .btn::after,
    .btn.ghost::after {
        transition: none;
    }
}

/*NAVBAR----------------------------------------------------------------------------------------------------------------*/
/*LANDİNG----------------------------------------------------------------------------------------------------------------*/
/* ====== HERO ====== */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    overflow: hidden;
}

/* Arka plan görseli artık tüm ekranı kaplar */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--hero-image, none);
    background-size: cover;
    /* Genişliği tamamen kaplar */
    background-position: center center;
    background-repeat: no-repeat;
    filter: saturate(1.05) contrast(1.05);
}

/* Karartma overlay */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(rgba(5, 6, 8, 0.75),
            rgba(5, 6, 8, 0.8));
}

/* İçerik alanı geniş ekranlarda ortalansın */
.hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* yatay ortalama */
    justify-content: center;
    /* dikey ortalama */
    text-align: center;
    /* metin ortalama */
    max-width: 900px;
    margin-inline: auto;
    margin-top: 20px;
    gap: 18px;
}

/* başlık biraz nefes alsın */
.hero-copy h1 {
    line-height: 1.2;
    margin-bottom: 6px;
}

/* açıklama ortada düzgün dursun */
.hero-copy .lead {
    max-width: 700px;
    margin: 0 auto;
}

/* butonları ortala */
.hero-copy .actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.hero-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}


.hero h1 {
    font-family: 'League Spartan', Impact, sans-serif;
    font-size: clamp(36px, 7vw, 82px);
    line-height: .95;
    margin: 0
}

.hero h1 span {
    color: var(--accent)
}

.hero .lead {
    color: var(--muted);
    max-width: 640px;
    font-size: 1.05rem
}

.actions {
    display: flex;
    gap: 12px;
    margin-top: 18px
}

/* Glass kartlar (keskin hatlar; minimal radius) */
.glass {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    backdrop-filter: blur(8px);
}

.glass::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid #21242d;
    pointer-events: none;
    transition: border-color 0.2s ease;
}

.glass:hover::before {
    border-color: var(--muted);
}

.card {
    padding: 16px 16px 14px;
}

.card i {
    font-size: 26px;
    color: var(--accent)
}

.card h3 {
    margin: .4rem 0 .2rem 0;
    font-weight: 800
}

.card p {
    margin: .2rem 0;
    color: #c5c9d1
}

.hero-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

/* ====== STRIP ====== */
.strip {
    padding: 30px 0
}

.strip-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin: 0;
    padding: 0
}

.strip-list li {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid var(--line);
    background: #0a0c12
}

/* ====== CTA ====== */
.cta {
    padding: 60px 0;
    text-align: center
}

.cta h2 {
    font-family: 'League Spartan', Impact, sans-serif;
    font-size: clamp(28px, 4.6vw, 42px);
    margin: .2rem 0 1rem
}

/*LANDİNG----------------------------------------------------------------------------------------------------------------*/
/*FOOTER----------------------------------------------------------------------------------------------------------------*/
.footer {
    border-top: 1px solid rgba(255, 255, 255, .06);
    background: #0a0c12;
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap
}

.footer-brand img {
    height: 50px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 0 transparent)
}

.copy {
    color: #aeb3bc
}

.copy .designer {
    color: #fff;
    font-weight: 700;
    border-bottom: 1px dotted rgba(255, 255, 255, .35)
}

.copy .designer:hover {
    opacity: .9
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px
}

.soc {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid #242833;
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
    color: #d7dae1;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.soc:hover {
    transform: translateY(-2px);
    border-color: #353a45;
}

.soc i {
    font-size: 20px
}

/* Mobil yığılma */
@media (max-width: 700px) {
    .footer-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 0 22px
    }

    .footer-social {
        gap: 8px
    }
}

/*FOOTER----------------------------------------------------------------------------------------------------------------*/
/* Fade-in (basit) */
.fade {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease
}

.fade.in {
    opacity: 1;
    transform: none
}

/* Mobil */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr
    }

    .hero-cards {
        grid-template-columns: 1fr
    }

    .strip-list {
        grid-template-columns: 1fr 1fr
    }
}

/*MAİN HAKKIMIZDA--------------------------------------------------------------------------------------------------------*/
.about {
    padding: 90px 0;
    background: linear-gradient(180deg, rgba(10, 12, 16, 1) 0%, rgba(5, 6, 8, 1) 100%);
}

.about-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 900px;
    margin-inline: auto;
}

.about-text h2 {
    font-family: 'League Spartan', Impact, sans-serif;
    font-size: clamp(28px, 4.5vw, 42px);
    margin-bottom: 16px;
}

.about-text p {
    color: #b7bbc4;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.about-text .btn.ghost {
    border: 1px solid #fff3;
    color: #fff;
    font-weight: 700;
}

.about-text .btn.ghost:hover {
    background: #fff;
    color: #000;
}

/*MAİN HAKKIMIZDA--------------------------------------------------------------------------------------------------------*/
/*MAİN HİZMETLER--------------------------------------------------------------------------------------------------------*/
.services {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0c10 0%, #07080b 100%);
}

.services-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.services-head h2 {
    font-family: 'League Spartan', Impact, sans-serif;
    font-size: clamp(26px, 4vw, 38px);
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

/* glass kart + hover */
.svc {
    position: relative;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid #20242c;
    background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .02));
    backdrop-filter: blur(8px);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.svc i {
    font-size: 26px;
    color: var(--accent);
    transition: transform .18s ease
}

.svc h3 {
    margin: .45rem 0 .25rem 0;
    font-weight: 800
}

.svc p {
    color: #b9bec7;
    margin: 0
}

.svc:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .35);
    border-color: #2b303a;
}

.svc:hover i {
    transform: translateY(-2px)
}

/* mobil kırılımlar */
@media (max-width: 1000px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/*MAİN HİZMETLER--------------------------------------------------------------------------------------------------------*/
/*MAİN KANITLAR--------------------------------------------------------------------------------------------------------*/
/* ===== KANITLAR ===== */
.proof {
    padding: 80px 0;
    background: linear-gradient(180deg, #07080b 0, #0a0c10 100%)
}

.proof-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px
}

.proof-head h2 {
    font-family: 'League Spartan', Impact, sans-serif;
    font-size: clamp(26px, 4vw, 38px);
    margin: 0
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.proof-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid #20242c;
    background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .02));
    backdrop-filter: blur(6px);
    display: block;
    aspect-ratio: 16/10;
    /* sabit oran; mobilde güzel */
}

.proof-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease, filter .35s ease;
}

.proof-item .badge {
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: .85rem;
    padding: 6px 10px;
    border-radius: 10px;
    border: 1px solid #20242c;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(6px);
}

.proof-item .overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: end start;
    padding: 14px;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, .65));
    opacity: 0;
    transition: opacity .25s ease;
}

.proof-item .overlay i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    opacity: .0;
    transition: opacity .25s ease, transform .25s ease;
}

.proof-item .overlay h3 {
    margin: 0;
    font-weight: 800
}

.proof-item .overlay p {
    margin: 2px 0 0 0;
    color: #c2c7cf;
    font-size: .95rem
}

/* Hover */
.proof-item:hover img {
    transform: scale(1.05);
    filter: brightness(.9)
}

.proof-item:hover .overlay {
    opacity: 1
}

.proof-item:hover .overlay i {
    opacity: .9;
    transform: translate(-50%, -50%) scale(1.04)
}

/* --- Lightbox PATCH --- */
/* ===== Lightbox ===== */
.lb {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(0, 0, 0, .72);
    backdrop-filter: blur(3px);
}

.lb img.lb-img {
    max-width: min(1100px, 95vw);
    max-height: 80vh;
    display: block;
    border-radius: 14px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
    opacity: 0;
    transition: opacity .18s ease;
}

.lb.ready img.lb-img {
    opacity: 1;
}

.lb-caption {
    margin-top: 10px;
    color: #e3e6ee;
    text-align: center;
    font-weight: 600
}

.lb-close {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: grid;
    place-items: center;
    border-radius: 12px;
    border: 1px solid #2b303a;
    background: #0b0d12;
    color: #fff;
    z-index: 10000;
}

/* hidden geldiğinde gerçekten gizle (bizim display'i geçersiz kıl) */
.lb[hidden] { display: none !important; }


/* Responsive */
@media (max-width: 1000px) {
    .proof-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 600px) {
    .proof-grid {
        grid-template-columns: 1fr
    }
}

/*MAİN KANITLAR--------------------------------------------------------------------------------------------------------*/

/*HAKKIMIZDA--------------------------------------------------------------------------------------------------------*/
/* ===== HAKKIMIZDA (ABOUT) ===== */

/* --- Sayfa başlığı / HERO (görsel + karartma) --- */
.page-hero{
  padding: 90px 0 56px;
  border-bottom:1px solid rgba(255,255,255,.06);
  position:relative;
  text-align:center;

  /* 1) Alttaki koyu gradyan  2) Üstüne görsel (var ile gelir) */
  background-image:
    linear-gradient(180deg, rgba(8, 10, 14, 0.495), rgba(8, 10, 14, 0)),
    var(--about-hero, none);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  /* Fallback arka plan (görsel yoksa) */
  background-color:#0a0c10;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--about-hero, none);
    /* ör: style="--about-hero:url('./about-hero.jpg')" */
    background-size: cover;
    background-position: center;
    filter: saturate(1.05) contrast(1.05);
    transform: scale(1.02);
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(60% 40% at 70% 20%, rgba(255, 35, 35, .10), transparent 60%),
        linear-gradient(180deg, rgba(8, 10, 14, .65), rgba(8, 10, 14, 0));
}

.page-hero-inner {
    text-align: center
}

.page-hero h1 {
    font-family: 'League Spartan', Impact, sans-serif;
    font-size: clamp(32px, 6vw, 56px);
    margin: 0 0 8px 0;
    font-weight: 500;
    letter-spacing: .2px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .35);
}

.page-hero p {
    color: #c7cbd4;
    margin: 0
}

.page-hero .accent {
    font-weight: 500
}

/* --- Kısa hikâye --- */
.about-block {
    padding: 36px 0 10px
}

.narrow {
    width: min(900px, 92%);
    margin-inline: auto
}

.about-block .lead {
    color: #cbd0d9;
    line-height: 1.7;
    text-align: center;
    font-weight: 400;
}

.about-block .lead strong {
    font-weight: 500
}

/* --- Değerler (3 cam kart) --- */
.about-values {
    padding: 28px 0
}

.values-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, 1fr);
}

.val {
    padding: 18px;
    border: 1px solid #20242c;
    background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .02));
    backdrop-filter: blur(8px);
    border-radius: 14px;
}

.val i {
    font-size: 26px;
    color: var(--accent)
}

.val h3 {
    margin: .4rem 0 .25rem 0;
    font-weight: 500
}

.val p {
    color: #b9bec7;
    margin: 0;
    font-weight: 400
}

/* --- Neler yapıyoruz + KPI --- */
.about-what {
    padding: 40px 0 20px
}

.what-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: 1.3fr .7fr;
}

/* Liste */
.what-list {
    padding: 18px;
    border: 1px solid #20242c;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .015));
    border-radius: 14px;
}

.what-list h2 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px 0;
    font-family: 'League Spartan', Impact, sans-serif;
    font-size: clamp(22px, 3.6vw, 30px);
    font-weight: 500;
}

.what-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px
}

.what-list li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    color: #c5cad3;
    font-weight: 400;
}

.what-list li i {
    color: var(--accent);
    margin-top: 2px
}

.what-list b,
.what-list strong {
    font-weight: 500
}

/* KPI kutuları */
.kpis {
    display: grid;
    gap: 10px;
    padding: 14px;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid #20242c;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .015));
}

.kpi {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 6px;
    background: #0a0c12;
    border: 1px solid #232630;
    border-radius: 12px;
}

.kpi .num {
    font-weight: 500;
    font-size: clamp(20px, 4.5vw, 28px);
    letter-spacing: .3px
}

.kpi .lbl {
    color: #b8bec8;
    font-size: .95rem;
    font-weight: 500
}

/* --- CTA --- */
.about-cta {
    padding: 50px 0 80px;
    text-align: center
}

.about-cta .cta-inner {
    width: min(800px, 92%);
    margin-inline: auto
}

.about-cta h2 {
    font-family: 'League Spartan', Impact, sans-serif;
    font-size: clamp(26px, 5vw, 40px);
    margin: .2rem 0 .6rem;
    font-weight: 500;
}

.about-cta p {
    color: #b7bbc4;
    margin: 0 0 16px 0
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .what-grid {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 74px 0 46px;
    }
}


/*HAKKIMIZDA--------------------------------------------------------------------------------------------------------*/
/*HİZMETLER--------------------------------------------------------------------------------------------------------*/
/* ===== HİZMETLER SAYFASI ===== */

/* Hero görseli: about ile aynı mantık; farklı var kullanıyoruz */
.page-hero{
  text-align:center;
}
.page-hero{
  /* halihazırdaki page-hero kuralların varsa onları kullanıyoruz;
     sadece görsel değişkeni için ikinci layer ekliyoruz */
  background-image:
    linear-gradient(180deg, rgba(8,10,14,.70), rgba(8,10,14,.88) 40%, rgba(8, 10, 14, 0)),
    var(--services-hero, var(--about-hero, none));
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

/* Hizmet grid */
.svc-page{ padding:32px 0 18px; }
.svc-grid{
  display:grid; gap:14px;
  grid-template-columns: repeat(3, 1fr);
}
.svc-card{
  border:1px solid #20242c;
  background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.02));
  backdrop-filter: blur(8px);
  border-radius:16px;
  padding:16px 16px 14px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.svc-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  border-color:#2b303a;
}
.svc-card header{
  display:flex; align-items:center; gap:10px; margin:0 0 8px 0;
}
.svc-card header i{ font-size:26px; color:var(--accent) }
.svc-card header h2{
  margin:0; font-size:clamp(18px,2.8vw,20px); font-weight:700;
}
.svc-card ul{
  list-style:none; margin:0; padding:0; display:grid; gap:6px;
}
.svc-card li{
  display:flex; align-items:flex-start; gap:8px; color:#c5cad3; font-weight:400;
}
.svc-card li::before{
  content:""; width:6px; height:6px; border-radius:50%;
  background:rgba(255,255,255,.35); margin-top:.55rem;
}

/* Responsive */
@media (max-width: 1100px){
  .svc-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px){
  .svc-grid{ grid-template-columns: 1fr; }
}

/*HİZMETLER--------------------------------------------------------------------------------------------------------*/
/*REFERANSLAR--------------------------------------------------------------------------------------------------------*/
/* ===== REFERANSLAR ===== */
.refs{ padding:26px 0 60px; }
.refs-grid{
  display:grid; gap:14px;
  grid-template-columns:repeat(3,1fr);
}
.ref-card{
  position:relative; display:block; overflow:hidden;
  aspect-ratio: 16/10;
  border-radius:16px; border:1px solid #20242c;
  background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255, 255, 255, 0));
  backdrop-filter:blur(6px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ref-card img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  transition: transform .35s ease, filter .35s ease;
}
.ref-card .badge{
  position:absolute; left:10px; top:10px;
  font-size:.85rem; padding:6px 10px; border-radius:10px;
  border:1px solid #20242c; background:rgba(0,0,0,.45); color:#e8ecf4;
  backdrop-filter:blur(6px);
}
.ref-card .meta{
  position:absolute; left:0; right:0; bottom:0; padding:12px 14px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.75));
}
.ref-card .meta h3{ margin:0; font-weight:800 }
.ref-card .meta p{ margin:2px 0 0 0; color:#c2c7cf; font-size:.95rem }

.ref-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  border-color:#2b303a;
}
.ref-card:hover img{ transform:scale(1.05); filter:brightness(.92) }

/* responsive */
@media (max-width: 1100px){ .refs-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width: 620px){ .refs-grid{ grid-template-columns:1fr; } }

/*REFERANSLAR--------------------------------------------------------------------------------------------------------*/
/*İLETİŞİM--------------------------------------------------------------------------------------------------------*/
/* ===== İLETİŞİM ===== */
.contact-cards{ padding:28px 0 8px; }
.contact-grid{
  display:grid; gap:14px;
  grid-template-columns: repeat(4,1fr);
}
.contact-card{
  display:flex; flex-direction:column; gap:6px;
  padding:16px; border:1px solid #20242c; border-radius:16px;
  background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.02));
  backdrop-filter: blur(8px);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  color:inherit; text-decoration:none;
}
.contact-card i{ font-size:26px; color:var(--accent); }
.contact-card h3{ margin:2px 0 2px 0; font-weight:700; }
.contact-card p{ margin:0; color:#c5cad3; }
.contact-card:hover{
  transform: translateY(-3px);
  border-color:#2b303a; box-shadow:0 12px 36px rgba(0,0,0,.35);
}

/* Harita */
.contact-map{ padding:18px 0 60px; }
.map-embed{ border:1px solid #20242c; border-radius:16px; overflow:hidden; }
.map-embed iframe{ width:100%; height:360px; display:block; border:0 }

/* Responsive */
@media (max-width:1100px){ .contact-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:680px){ .contact-grid{ grid-template-columns:1fr; } }

/*İLETİŞİM--------------------------------------------------------------------------------------------------------*/


.blog-list {
  padding: 50px 0 80px;
}

.blog-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.blog-card {
  overflow: hidden;
  border-radius: 10px;
  transition: .3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card .thumb img {
  width: 100%;
  max-height: 250px;
  display: block;
  object-fit: cover;
}

.blog-body {
  padding: 16px 18px;
}

.blog-body h3 {
  margin: 0 0 6px 0;
  font-size: 1.1rem;
}

.blog-body p {
  margin: 0 0 12px 0;
  color: #bfc4d0;
  font-size: .95rem;
}

.blog-card .read {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}
/* BLOG COVER GÖRSELİ GENEL */
.post-cover {
  margin: 18px 0 24px;
}

.post-cover img {
  display: block;
  width: 900px;       /* ekran neyse o kadar */
  max-width: 100%;    /* sağa sola taşma yok */
  max-height: 400px;      /* oranı koru, sıkıştırma yok */
  border-radius: 12px;
  object-fit: cover;
}

@media (max-width: 600px) {
  .post-cover img {
    max-height: 260px;
    object-fit: cover;
  }
}
