/* =================================================================
   QUVION LABS — "ajans" teması
   Modern, koyu dijital ajans görünümü. Mor→camgöbeği gradient aksan,
   camsı kartlar, ışıma efektleri. Tüm sınıf adları diğer temalarla
   uyumlu (header/footer/sayfa şablonları paylaşılır).
   ================================================================= */

:root {
    --bg:        #0a0b14;
    --bg-soft:   #0f1120;
    --bg-card:   #141627;
    --bg-card-2: #181b2e;
    --line:      rgba(255,255,255,.08);
    --line-2:    rgba(255,255,255,.14);
    --text:      #eef0fb;
    --muted:     #9aa0c0;
    --muted-2:   #6f7596;

    --accent:    #7c6cff;   /* mor */
    --accent-2:  #22d3ee;   /* camgöbeği */
    --accent-3:  #ff5fa2;   /* pembe vurgu */
    --grad:      linear-gradient(115deg, #7c6cff 0%, #22d3ee 100%);
    --grad-soft: linear-gradient(115deg, rgba(124,108,255,.16), rgba(34,211,238,.10));

    --radius:    18px;
    --radius-sm: 12px;
    --shadow:    0 24px 60px -24px rgba(5,6,15,.85);
    --maxw:      1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* dekoratif arka plan ışımaları */
body::before {
    content: "";
    position: fixed; inset: 0;
    background:
        radial-gradient(720px 480px at 12% -8%, rgba(124,108,255,.20), transparent 60%),
        radial-gradient(680px 460px at 100% 0%, rgba(34,211,238,.14), transparent 55%);
    pointer-events: none; z-index: 0;
}
.site-header, .site-main, .site-footer { position: relative; z-index: 1; }

h1,h2,h3,h4 { font-family: 'Space Grotesk', 'Inter', sans-serif; font-weight: 700; line-height: 1.15; letter-spacing: -.02em; margin: 0 0 .5em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin: 0 0 1rem; }
.muted { color: var(--muted); }
.text-center { text-align: center; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* gradient text yardımcı */
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ===================== BUTONLAR ===================== */
.btn {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 13px 26px; border-radius: 999px;
    font-weight: 600; font-size: .95rem; cursor: pointer; border: 0;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s;
    white-space: nowrap;
}
.btn-accent {
    background: var(--grad); color: #0a0b14;
    box-shadow: 0 12px 30px -10px rgba(124,108,255,.6);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(34,211,238,.6); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--accent); color: #fff; transform: translateY(-2px); }
.btn-light { background: #fff; color: #0a0b14; }
.btn-light:hover { transform: translateY(-2px); }
.btn-wa { background: #25d366; color: #07210f; }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(37,211,102,.6); }

/* ===================== TOPBAR ===================== */
.topbar { background: rgba(255,255,255,.02); border-bottom: 1px solid var(--line); font-size: .85rem; color: var(--muted); }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; min-height: 42px; gap: 16px; flex-wrap: wrap; }
.topbar a { color: var(--muted); }
.topbar a:hover { color: #fff; }
.topbar-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-right { display: flex; gap: 18px; }
.topbar .ico { opacity: .8; }

/* ===================== HEADER / NAV ===================== */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(10,11,20,.72);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 20px; }
.logo img { max-height: 44px; width: auto; }
.logo-text { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.45rem; letter-spacing: -.02em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav > a, .nav-item > a { padding: 10px 14px; border-radius: 10px; font-weight: 500; color: var(--muted); font-size: .96rem; transition: color .2s, background .2s; }
.site-nav > a:hover, .nav-item > a:hover { color: #fff; background: rgba(255,255,255,.05); }
.site-nav > a.active, .nav-item > a.active { color: #fff; }
.nav-cta { margin-left: 10px; color: #0a0b14 !important; background: var(--grad); }
.nav-cta:hover { background: var(--grad) !important; transform: translateY(-2px); }

/* basit açılır menü */
.nav-item { position: relative; }
.nav-dropdown {
    position: absolute; top: 100%; left: 0; min-width: 260px;
    background: var(--bg-card); border: 1px solid var(--line); border-radius: 14px;
    padding: 8px; box-shadow: var(--shadow);
    display: flex; flex-direction: column; gap: 2px;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: all .2s ease; z-index: 50;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(6px); }
.nav-dropdown a { padding: 10px 14px; border-radius: 9px; color: var(--muted); font-size: .92rem; }
.nav-dropdown a:hover { background: var(--grad-soft); color: #fff; }

/* mega menü (kategori varsa) */
.nav-mega { position: relative; }
.nav-mega::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 16px; }
.mega {
    position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
    width: min(860px, 92vw); background: var(--bg-card); border: 1px solid var(--line);
    border-radius: 18px; box-shadow: var(--shadow); padding: 14px;
    opacity: 0; visibility: hidden; transition: all .22s ease; z-index: 60;
}
.nav-mega:hover .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-cats { display: grid; grid-template-columns: 300px 1fr; gap: 8px; min-height: 230px; position: relative; }
.mega-cat { position: static; }
.mega-cat-label { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; border-radius: 11px; color: var(--muted); font-weight: 600; cursor: pointer; }
.mega-cat.active .mega-cat-label { background: var(--grad-soft); color: #fff; }
.mega-cat .chev { opacity: .5; }
.mega-sub { position: absolute; left: 300px; top: 0; right: 0; bottom: 0; padding: 14px 16px; border-left: 1px solid var(--line); overflow-y: auto; display: none; }
.mega-cat.active .mega-sub { display: block; }
.mega-sub::-webkit-scrollbar { width: 8px; }
.mega-sub::-webkit-scrollbar-thumb { background: rgba(124,108,255,.4); border-radius: 8px; }
.mega-sub { scrollbar-width: thin; scrollbar-color: rgba(124,108,255,.4) transparent; }
.mega-sub-title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; color: var(--accent-2); font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.mega-sub a { display: block; padding: 9px 12px; border-radius: 9px; color: var(--muted); font-size: .92rem; }
.mega-sub a:hover { background: rgba(255,255,255,.05); color: #fff; }

/* mobil menü */
.nav-toggle { display: none; }
.nav-toggle-btn { display: none; font-size: 1.6rem; cursor: pointer; color: #fff; }

/* ===================== HERO ===================== */
.hero { position: relative; padding: 120px 0 110px; overflow: hidden; }
.hero-glow { position: absolute; width: 720px; height: 720px; right: -160px; top: -260px; background: radial-gradient(circle, rgba(124,108,255,.30), transparent 60%); filter: blur(20px); pointer-events: none; }
.hero.has-photo { background-size: cover; background-position: center; }
.hero.has-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(10,11,20,.94), rgba(10,11,20,.7)); }
.hero-inner { position: relative; z-index: 2; max-width: 820px; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
    border-radius: 999px; border: 1px solid var(--line-2); background: rgba(255,255,255,.03);
    font-size: .85rem; color: var(--muted); margin-bottom: 26px; font-weight: 500;
}
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); margin-bottom: 22px; }
.hero-text { font-size: 1.2rem; color: var(--muted); max-width: 620px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { list-style: none; padding: 0; margin: 0; display: flex; gap: 26px; flex-wrap: wrap; color: var(--muted); font-size: .94rem; }
.hero-trust li { display: flex; align-items: center; gap: 8px; }

/* ===================== SAYAÇLAR ===================== */
.stats-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.015); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 48px 0; }
.stat { text-align: center; }
.stat-num { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { color: var(--muted); font-size: .95rem; margin-top: 6px; }
/* hakkimizda istatistik kartı */
.stat-card { text-align: center; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 20px; }
.stat-card .num { font-family: 'Space Grotesk', sans-serif; font-size: 2.4rem; font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-card .lbl { color: var(--muted); margin-top: 6px; }

/* ===================== SECTION ===================== */
.section { padding: 92px 0; }
.section.alt { background: var(--bg-soft); }
.section-head { max-width: 680px; margin: 0 auto 54px; text-align: center; }
.section-head h2, .section-title { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.06rem; }
.section-title { text-align: center; margin-bottom: 40px; }
.eyebrow { display: inline-block; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 14px; }

/* ===================== HİZMET KARTLARI ===================== */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.svc-card {
    position: relative; background: var(--bg-card); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 30px 24px; overflow: hidden;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.svc-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--grad); opacity: 0; transition: opacity .25s; }
.svc-card:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--shadow); }
.svc-card:hover::before { opacity: 1; }
.svc-ico { width: 54px; height: 54px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; border-radius: 14px; background: var(--grad-soft); border: 1px solid var(--line); margin-bottom: 18px; }
.svc-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.svc-desc { color: var(--muted); font-size: .94rem; margin-bottom: 16px; }
.svc-link { color: var(--accent-2); font-weight: 600; font-size: .9rem; }
.svc-link:hover { color: #fff; }

/* ===================== HAKKIMIZDA (ana sayfa) ===================== */
.about-sec .about-grid, .about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.about-visual { position: relative; }
.about-visual img { border-radius: var(--radius); border: 1px solid var(--line); }
.about-mark { aspect-ratio: 4/3; border-radius: var(--radius); background: var(--grad-soft); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.about-badge { position: absolute; right: -16px; bottom: -16px; background: var(--bg-card); border: 1px solid var(--line-2); border-radius: 16px; padding: 16px 22px; box-shadow: var(--shadow); text-align: center; }
.about-badge strong { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 1.7rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.about-badge span { color: var(--muted); font-size: .82rem; }
.about-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
.about-text > p { color: var(--muted); margin-bottom: 22px; }
.check-list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 32px; color: var(--text); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--grad); color: #0a0b14; font-size: .78rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }

/* ===================== NEDEN BİZ ===================== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 28px; transition: transform .25s, border-color .25s; }
.why-card:hover { transform: translateY(-6px); border-color: var(--line-2); }
.why-ico { font-size: 2rem; width: 64px; height: 64px; border-radius: 16px; background: var(--grad-soft); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.why-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.why-card p { color: var(--muted); margin: 0; }

/* feature-grid (hakkimizda) — why ile aynı dil */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 28px; transition: transform .25s, border-color .25s; }
.feature-card:hover { transform: translateY(-6px); border-color: var(--line-2); }
.f-ico { font-size: 2rem; width: 64px; height: 64px; border-radius: 16px; background: var(--grad-soft); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.feature-card p { color: var(--muted); margin: 0; }

/* ===================== PROJELER ===================== */
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.proj-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--line); background: var(--bg-card); }
.proj-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.proj-card:hover img { transform: scale(1.06); }
.proj-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; background: var(--grad-soft); }
.proj-over { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; background: linear-gradient(to top, rgba(10,11,20,.92) 8%, transparent 70%); }
.proj-tag { align-self: flex-start; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; padding: 5px 12px; border-radius: 999px; background: var(--grad); color: #0a0b14; font-weight: 700; margin-bottom: 10px; }
.proj-over h3 { font-size: 1.2rem; margin-bottom: 6px; }
.proj-over p { color: var(--muted); font-size: .9rem; margin: 0; }

/* ===================== YORUMLAR ===================== */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tst-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; }
.tst-stars { color: #ffd166; letter-spacing: 2px; margin-bottom: 14px; }
.tst-card blockquote { margin: 0 0 22px; font-size: 1.02rem; color: var(--text); line-height: 1.7; }
.tst-card figcaption { display: flex; align-items: center; gap: 14px; }
.tst-ava { width: 46px; height: 46px; border-radius: 50%; background: var(--grad); color: #0a0b14; display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: 'Space Grotesk', sans-serif; }
.tst-card figcaption strong { display: block; font-size: .96rem; }
.tst-card figcaption small { color: var(--muted); }

/* ===================== SSS ===================== */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 20px 24px; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--accent-2); font-size: 1.4rem; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 24px 22px; color: var(--muted); }

/* ===================== CTA ===================== */
.cta-band { position: relative; overflow: hidden; background: var(--grad); margin: 0; }
.cta-glow { position: absolute; width: 600px; height: 600px; left: 30%; top: -300px; background: radial-gradient(circle, rgba(255,255,255,.25), transparent 60%); }
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 70px 0; flex-wrap: wrap; }
.cta-inner h2 { color: #0a0b14; font-size: clamp(1.7rem, 3.5vw, 2.6rem); margin-bottom: 10px; }
.cta-inner p { color: rgba(10,11,20,.78); margin: 0; max-width: 520px; font-weight: 500; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-band .btn-accent { background: #0a0b14; color: #fff; box-shadow: none; }
.cta-band .btn-ghost { border-color: rgba(10,11,20,.4); color: #0a0b14; }
.cta-band .btn-ghost:hover { background: rgba(10,11,20,.1); border-color: #0a0b14; color: #0a0b14; }
/* hakkimizda/uygulamalar .cta kutusu */
.cta { background: var(--grad); border-radius: var(--radius); padding: 60px 40px; text-align: center; }
.cta h2 { color: #0a0b14; }
.cta p { color: rgba(10,11,20,.78); font-weight: 500; }
.cta .cta-actions { justify-content: center; margin-top: 24px; }

/* ===================== İÇ SAYFA HERO ===================== */
.page-hero { padding: 80px 0 60px; border-bottom: 1px solid var(--line); background: radial-gradient(700px 300px at 80% -20%, rgba(124,108,255,.18), transparent 60%); }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
.page-hero p { color: var(--muted); max-width: 680px; font-size: 1.05rem; }
.crumb { font-size: .86rem; color: var(--muted); margin-bottom: 16px; }
.crumb a { color: var(--accent-2); }
.page-ico { font-size: 2.4rem; margin-bottom: 12px; }

/* ===================== HİZMET DETAY ===================== */
.svc-detail { display: grid; grid-template-columns: 1fr 340px; gap: 44px; align-items: start; }
.prose { color: var(--text); line-height: 1.85; }
.prose img { border-radius: var(--radius); margin-bottom: 24px; border: 1px solid var(--line); }
.prose h2 { font-size: 1.6rem; margin: 32px 0 14px; }
.prose h3 { font-size: 1.25rem; margin: 26px 0 12px; }
.prose p { color: var(--muted); }
.prose .lead { font-size: 1.15rem; color: var(--text); }
.prose ul, .prose ol { color: var(--muted); padding-left: 0; list-style: none; display: grid; gap: 12px; margin: 18px 0; }
.prose ul li { position: relative; padding-left: 30px; }
.prose ul li::before { content: "✓"; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 50%; background: var(--grad); color: #0a0b14; font-size: .72rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.prose ol.surec { counter-reset: adim; }
.prose ol.surec li { position: relative; padding-left: 52px; min-height: 36px; padding-top: 4px; }
.prose ol.surec li::before { counter-increment: adim; content: counter(adim); position: absolute; left: 0; top: 0; width: 36px; height: 36px; border-radius: 11px; background: var(--grad-soft); border: 1px solid var(--line-2); color: var(--accent-2); font-family: 'Space Grotesk', sans-serif; font-weight: 700; display: flex; align-items: center; justify-content: center; }

.svc-aside .box { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; position: sticky; top: 100px; }
.svc-aside h4 { font-size: .95rem; }

/* ===================== ÖNCE/SONRA + GALERİ ===================== */
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.ba-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.ba-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.ba-img { position: relative; aspect-ratio: 4/3; }
.ba-img img { width: 100%; height: 100%; object-fit: cover; }
.ba-img .ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--grad-soft); font-size: 2rem; }
.ba-badge { position: absolute; top: 10px; left: 10px; font-size: .72rem; padding: 4px 10px; border-radius: 999px; font-weight: 600; }
.ba-badge.before { background: rgba(0,0,0,.6); color: #fff; }
.ba-badge.after { background: var(--grad); color: #0a0b14; }
.ba-body { padding: 22px 24px; }
.ba-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.ba-body p { color: var(--muted); margin: 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { position: relative; aspect-ratio: 1/1; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item .ph { display: flex; align-items: center; justify-content: center; background: var(--grad-soft); font-size: 2rem; }
.gallery-item .caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px; font-size: .85rem; background: linear-gradient(to top, rgba(10,11,20,.9), transparent); }

/* ===================== BLOG ===================== */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .25s, border-color .25s; }
.post-card:hover { transform: translateY(-6px); border-color: var(--line-2); }
.post-card .cover { aspect-ratio: 16/9; background: var(--grad-soft); overflow: hidden; }
.post-card .cover img { width: 100%; height: 100%; object-fit: cover; }
.post-card .body { padding: 22px 24px; }
.post-card .body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.post-card .date { color: var(--muted-2); font-size: .85rem; }
.post-detail { max-width: 820px; margin: 0 auto; padding: 70px 24px; }
.post-detail h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 14px 0; }
.post-detail .cover-full { border-radius: var(--radius); margin: 24px 0; border: 1px solid var(--line); }
.post-detail .content { color: var(--muted); line-height: 1.85; }
.post-detail .content h2, .post-detail .content h3 { color: var(--text); margin-top: 28px; }

/* ===================== İLETİŞİM ===================== */
.about-split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; }
.info-list .ico { width: 46px; height: 46px; flex: none; border-radius: 13px; background: var(--grad-soft); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.info-list strong { display: block; margin-bottom: 2px; }
.info-list a, .info-list span span { color: var(--muted); }
.info-list a:hover { color: var(--accent-2); }
.form-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 32px; }
.form-card label { display: block; font-size: .88rem; font-weight: 600; margin: 16px 0 7px; }
.form-card input, .form-card textarea {
    width: 100%; padding: 13px 16px; background: var(--bg); border: 1px solid var(--line-2);
    border-radius: 11px; color: var(--text); font-family: inherit; font-size: .95rem; transition: border-color .2s;
}
.form-card input:focus, .form-card textarea:focus { outline: none; border-color: var(--accent); }
.form-card textarea { min-height: 130px; resize: vertical; }
.notice { padding: 14px 18px; border-radius: 11px; margin-bottom: 16px; font-size: .92rem; }
.notice-success { background: rgba(37,211,102,.12); border: 1px solid rgba(37,211,102,.4); color: #74e8a0; }
.notice-error { background: rgba(255,95,162,.12); border: 1px solid rgba(255,95,162,.4); color: #ff9ec4; }
.ph { background: var(--grad-soft); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--muted); }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--bg-soft); border-top: 1px solid var(--line); padding-top: 70px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 50px; }
.footer-logo img { max-height: 44px; margin-bottom: 16px; }
.footer-logo span { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.4rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.footer-about p { color: var(--muted); font-size: .94rem; margin: 16px 0; }
.footer-social { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-social a { font-size: .85rem; color: var(--muted); padding: 7px 14px; border: 1px solid var(--line); border-radius: 999px; transition: all .2s; }
.footer-social a:hover { border-color: var(--accent); color: #fff; }
.footer-col h4 { font-size: 1rem; margin-bottom: 18px; }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-links a, .footer-contact a { color: var(--muted); font-size: .92rem; }
.footer-links a:hover, .footer-contact a:hover { color: var(--accent-2); }
.footer-contact li { display: flex; gap: 10px; color: var(--muted); font-size: .92rem; }
.footer-contact .ico { opacity: .7; }
.footer-bottom { border-top: 1px solid var(--line); }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; gap: 16px; flex-wrap: wrap; color: var(--muted-2); font-size: .85rem; }
.footer-credit { display: flex; align-items: center; gap: 8px; color: var(--muted); }
.footer-credit img { max-height: 22px; opacity: .8; }

/* whatsapp float */
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 200; background: #25d366; color: #07210f; padding: 14px 22px; border-radius: 999px; font-weight: 600; box-shadow: 0 14px 30px -10px rgba(37,211,102,.6); transition: transform .2s; }
.whatsapp-float:hover { transform: translateY(-3px); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .svc-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .svc-detail { grid-template-columns: 1fr; }
    .svc-aside .box { position: static; }
}
@media (max-width: 860px) {
    .nav-toggle-btn { display: block; }
    .site-nav { position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch; gap: 4px; background: var(--bg-card); border-bottom: 1px solid var(--line); padding: 16px; max-height: calc(100vh - 76px); overflow-y: auto; transform: translateY(-120%); transition: transform .3s ease; }
    .nav-toggle:checked ~ .site-nav { transform: translateY(0); }
    .nav-dropdown, .mega { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; width: auto; background: transparent; border: 0; padding: 0 0 0 14px; }
    .mega-cats { grid-template-columns: 1fr; min-height: 0; }
    .mega-sub { position: static; display: block; border: 0; padding: 0 0 0 12px; }
    .nav-cta { margin: 8px 0 0; justify-content: center; }
    .stats-grid, .why-grid, .feature-grid, .proj-grid, .tst-grid, .post-grid, .gallery-grid, .ba-grid { grid-template-columns: 1fr 1fr; }
    .about-grid, .about-split { grid-template-columns: 1fr; gap: 36px; }
    .about-badge { right: 16px; }
}
@media (max-width: 560px) {
    .svc-grid, .stats-grid, .why-grid, .feature-grid, .proj-grid, .tst-grid, .post-grid, .gallery-grid, .ba-grid { grid-template-columns: 1fr; }
    .hero { padding: 80px 0 70px; }
    .section { padding: 64px 0; }
    .topbar { display: none; }
    .cta-inner { flex-direction: column; align-items: flex-start; }
}
