/* =================================================================
   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:        #0b0b0b;
    --bg-soft:   #111111;
    --bg-card:   #161616;
    --bg-card-2: #1c1c1c;
    --line:      rgba(255,255,255,.09);
    --line-2:    rgba(255,255,255,.16);
    --text:      #f2f0ec;
    --muted:     #a7a29a;
    --muted-2:   #767068;

    --accent:    #F59E0B;   /* amber */
    --accent-2:  #f7b733;   /* açık amber */
    --accent-3:  #d98806;   /* koyu amber */
    --grad:      linear-gradient(115deg, #F59E0B 0%, #f7b733 100%);
    --grad-soft: linear-gradient(115deg, rgba(245,158,11,.16), rgba(247,183,51,.08));

    --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(245,158,11,.20), transparent 60%),
        radial-gradient(680px 460px at 100% 0%, rgba(247,183,51,.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: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.15; letter-spacing: -.005em; margin: 0 0 .5em; }
.italik-accent { font-style: italic; color: var(--accent); font-weight: 600; }
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: #161616;
    box-shadow: 0 12px 30px -10px rgba(245,158,11,.6);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(247,183,51,.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: #161616; }
.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; white-space: nowrap; }
.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: #161616 !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) */
/* Mega menü: header altında tam genişlik panel (referans görünüm) */
.nav-chev { font-style: normal; font-size: .8em; opacity: .6; margin-left: 2px; }
.nav-mega::after { content: ""; position: fixed; left: 0; right: 0; top: 56px; height: 22px;
    display: none; }
.nav-mega:hover::after { display: block; }
.mega {
    position: fixed; top: 76px; left: 0; right: 0; transform: translateY(10px);
    background: #0c0c0c; border-bottom: 1px solid var(--line-2);
    box-shadow: 0 40px 60px -30px rgba(0,0,0,.8);
    padding: 38px 0 46px; max-height: calc(100vh - 76px); overflow-y: auto;
    opacity: 0; visibility: hidden; transition: all .22s ease; z-index: 60;
}
.nav-mega:hover .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mm-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 38px 30px; align-items: start; }
.mm-col { display: flex; flex-direction: column; gap: 34px; }
.mm-group .mf-badge { margin-bottom: 8px; }
.mm-title { display: block; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .84rem;
    text-transform: uppercase; letter-spacing: .05em; color: #fff; margin-bottom: 14px; }
.mm-title:hover { color: var(--accent); }
.mm-links { display: grid; gap: 2px; }
.mm-links a { display: block; padding: 7px 0; color: var(--muted); font-size: .93rem; transition: color .16s, padding-left .16s; }
.mm-links a:hover { color: var(--accent); padding-left: 5px; }

/* Header: beyaz telefon kapsülü */
.nav-phone { display: inline-flex; align-items: center; gap: 9px; margin-left: 12px;
    background: #fff; color: #17181c !important; font-weight: 600; font-size: .92rem;
    padding: 10px 20px; border-radius: 999px; transition: all .2s; white-space: nowrap; }
.nav-phone svg { color: var(--accent-3); }
.nav-phone:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -12px rgba(255,255,255,.35); }

/* 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(245,158,11,.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)); }
/* Hareketli hero: yavaş zoom'lu görsel katmanı + radyal karartma (referans site davranışı) */
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center;
    opacity: .85; animation: heroZoom 20s ease-in-out infinite alternate; will-change: transform; }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.12); } }
.hero-veil { position: absolute; inset: 0;
    background: radial-gradient(circle at 42% 38%, rgba(8,8,8,.28) 0%, rgba(8,8,8,.62) 55%, rgba(11,11,11,.92) 100%); }
.hero-foto .hero-eyebrow { background: rgba(0,0,0,.55); backdrop-filter: blur(5px); }
.hero-foto .hero-text { color: #e4dfd7; }
.hero-foto h1, .hero-foto .hero-text { text-shadow: 0 3px 12px rgba(0,0,0,.45); }
@media (prefers-reduced-motion: reduce) { .hero-bg { animation: none; } }
.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; color: var(--accent); }
.svc-ico svg { width: 26px; height: 26px; }
.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: #161616; 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; color: var(--accent); }
.why-ico svg { width: 30px; height: 30px; }
.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; color: var(--accent); }
.f-ico svg { width: 30px; height: 30px; }
.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: #161616; 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: #161616; 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: #161616; 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: #161616; }
.cta-band .btn-ghost:hover { background: rgba(10,11,20,.1); border-color: #161616; color: #161616; }
/* hakkimizda/uygulamalar .cta kutusu */
.cta { background: var(--grad); border-radius: var(--radius); padding: 60px 40px; text-align: center; }
.cta h2 { color: #161616; }
.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(245,158,11,.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; color: var(--accent); }
.page-ico svg { width: 46px; height: 46px; filter: drop-shadow(0 0 14px rgba(245,158,11,.45)); }

/* ===================== 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: #161616; 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: #161616; }
.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; color: var(--accent); }
.info-list .ico svg { width: 22px; height: 22px; }
.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; max-height: none; overflow: visible; }
    .mm-cols { grid-template-columns: 1fr; gap: 22px; padding: 0; }
    .mm-col { gap: 22px; }
    .nav-phone { margin: 8px 0 0; justify-content: center; }
    .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; }
}

/* ===== Ovebi: kayan şerit + hero italik accent ===== */
.marquee { background: var(--accent); overflow: hidden; }
.marquee-track { display: flex; white-space: nowrap; animation: ovmarq 32s linear infinite; }
.marquee-track span { display: inline-flex; align-items: center; gap: 10px; padding: 14px 26px; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: .04em; color: #161616; }
.marquee-track span b { color: rgba(0,0,0,.4); font-size: 10px; }
@keyframes ovmarq { to { transform: translateX(-50%); } }
.hero-italic { font-style: italic; font-weight: 600; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ===== Kategori sayfası: diğer kategoriler ===== */
.kat-diger { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 46px; justify-content: center; }
.kat-diger .muted { margin-right: 4px; }
.kat-chip { display: inline-flex; align-items: center; padding: 9px 18px; border: 1px solid var(--line-2); border-radius: 999px; color: var(--muted); font-size: .9rem; font-weight: 500; transition: all .2s; }
.kat-chip:hover { border-color: var(--accent); color: #fff; background: var(--grad-soft); }

/* ===================== MEGA FOOTER ===================== */
.mega-footer { background: #080808; border-top: 1px solid var(--line); padding: 66px 0 26px; position: relative; z-index: 1; }
.mf-cols { display: grid; grid-template-columns: repeat(5, 1fr); gap: 30px 26px; padding-bottom: 40px; }
.mf-col { display: flex; flex-direction: column; gap: 34px; }
.mf-group h5 { font-family: 'Inter', sans-serif; font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #fff; margin: 0 0 16px; position: relative; }
.mf-group h5 a { color: #fff; }
.mf-group h5 a:hover { color: var(--accent); }
.mf-badge { display: inline-block; background: #DC2626; color: #fff; font-size: .58rem; font-weight: 700; letter-spacing: .06em; padding: 2px 7px; border-radius: 5px; margin-bottom: 6px; }
.mf-pop { display: flex; flex-direction: column; align-items: flex-start; }
.mf-group ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.mf-group ul a { color: var(--muted); font-size: .9rem; transition: color .18s, padding .18s; }
.mf-group ul a:hover { color: #fff; padding-left: 4px; }

.mf-promo { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
    background: var(--bg-card); border: 1px solid var(--line); border-left: 3px solid var(--accent);
    border-radius: 14px; padding: 20px 26px; margin: 6px 0 34px; }
.mf-promo strong { display: block; color: #fff; font-family: 'Inter', sans-serif; font-size: 1.02rem; margin-bottom: 3px; }
.mf-promo span { color: var(--muted); font-size: .9rem; }
.mf-promo-btn { display: inline-flex; align-items: center; background: #fff; color: #17181c; font-weight: 700;
    font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; padding: 13px 24px; border-radius: 8px; transition: all .2s; }
.mf-promo-btn:hover { background: var(--accent); color: #17181c; transform: translateY(-2px); }

.mf-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
    border-top: 1px solid var(--line); padding-top: 24px; }
.mf-logo img { max-height: 40px; width: auto; }
.mf-logo span { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: #fff; }
.mf-legal { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; font-size: .82rem; color: var(--muted-2); }
.mf-legal a { color: var(--muted); }
.mf-legal a:hover { color: var(--accent); }
.mf-social { display: flex; align-items: center; gap: 10px; }
.mf-social > a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: #17181c;
    background: #fff; border: 1px solid #fff; transition: all .2s; box-shadow: 0 6px 16px -8px rgba(0,0,0,.6); }
.mf-social > a svg { display: block; }
.mf-social > a:hover { background: var(--accent); border-color: var(--accent); color: #161616; transform: translateY(-2px); }
.mf-credit { width: auto !important; padding: 0 10px; border-radius: 999px !important;
    background: rgba(255,255,255,.06) !important; border-color: var(--line-2) !important; }
.mf-credit img { height: 16px; filter: brightness(0) invert(.9); opacity: .8; }
.mf-credit:hover { background: var(--accent) !important; }
.mf-credit:hover img { filter: brightness(0); }

@media (max-width: 1000px) { .mf-cols { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .mf-cols { grid-template-columns: repeat(2, 1fr); } .mf-bottom { flex-direction: column; align-items: flex-start; } }

/* ===================== KATEGORİ SAYFASI (zengin) ===================== */
.kat-hero { position: relative; text-align: center; padding: 80px 0 66px; overflow: hidden; border-bottom: 1px solid var(--line); }
.kat-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.055) 1px,transparent 1px); background-size: 46px 46px; mask-image: radial-gradient(70% 60% at 50% 30%,#000,transparent 75%); }
.kat-hero-in { position: relative; }
.kat-hero-ico { width: 92px; height: 92px; margin: 0 auto 22px; display: grid; place-items: center; font-size: 42px; border: 1px solid rgba(245,158,11,.4); border-radius: 22px; background: var(--grad-soft); box-shadow: 0 0 40px -8px rgba(245,158,11,.5); }
.kat-pill { display: inline-block; border: 1px solid rgba(245,158,11,.4); color: var(--accent); font-weight: 700; font-size: .74rem; letter-spacing: .12em; padding: 8px 18px; border-radius: 999px; margin-bottom: 20px; }
.kat-hero h1 { font-size: clamp(30px,5vw,54px); margin: 0 0 16px; }
.kat-hero p { color: var(--muted); max-width: 640px; margin: 0 auto; font-size: 1.05rem; }

.kat-svc-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.kat-svc { position: relative; display: block; background: var(--bg-card); border: 1px solid var(--line); border-radius: 18px; padding: 30px 30px 26px; overflow: hidden; transition: transform .25s, border-color .25s; }
.kat-svc:hover { transform: translateY(-5px); border-color: rgba(245,158,11,.5); }
.kat-svc-wm { position: absolute; right: 18px; bottom: -14px; font-family: 'Playfair Display',serif; font-size: 130px; font-weight: 800; color: rgba(255,255,255,.03); line-height: 1; pointer-events: none; }
.kat-svc-ico { width: 56px; height: 56px; display: grid; place-items: center; font-size: 28px; border-radius: 14px; background: var(--grad-soft); border: 1px solid rgba(245,158,11,.25); margin-bottom: 18px; color: var(--accent); }
.kat-svc-ico svg { width: 27px; height: 27px; }
.sec-light .kat-svc-ico { color: var(--accent-3); }
.kat-svc h3 { font-size: 1.4rem; margin: 0 0 8px; }
.kat-svc > p { color: var(--muted); font-size: .95rem; margin: 0 0 16px; max-width: 90%; }
.kat-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.kat-tag { font-size: .74rem; font-weight: 600; padding: 5px 12px; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid var(--line); color: var(--muted); }

/* kalite / teknoloji split */
.kat-feat { display: grid; grid-template-columns: .85fr 1.15fr; gap: 50px; align-items: center; }
.feat-visual { position: relative; aspect-ratio: 4/3.6; border-radius: 20px; background: linear-gradient(160deg,#242424,#141414); border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: flex-end; padding: 26px; overflow: hidden; }
.feat-emoji { position: absolute; inset: 0; display: grid; place-items: center; font-size: 96px; opacity: .18; color: var(--accent); }
.feat-emoji svg { width: 130px; height: 130px; }
.feat-badge { align-self: flex-start; background: var(--accent); color: #161616; font-weight: 700; font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; margin-bottom: 10px; position: relative; }
.feat-visual strong { font-family: 'Playfair Display',serif; font-size: 1.5rem; color: #fff; position: relative; }
.feat-text h2 { font-size: clamp(26px,3.4vw,40px); }
.feat-text > p { color: var(--muted); margin-bottom: 24px; }
.feat-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.feat-box { background: var(--bg-card); border: 1px solid var(--line); border-radius: 14px; padding: 20px; display: flex; gap: 12px; }
.fb-ico { font-size: 22px; flex: 0 0 auto; color: var(--accent); }
.fb-ico svg { width: 24px; height: 24px; }
.feat-box strong { display: block; color: #fff; font-family: 'Inter',sans-serif; font-size: .98rem; margin-bottom: 4px; }
.feat-box p { color: var(--muted); font-size: .86rem; margin: 0; line-height: 1.5; }

/* süreç */
.kat-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.kat-step { position: relative; text-align: center; padding: 0 20px; }
.kat-step::before { content: ""; position: absolute; top: 30px; left: 50%; width: 100%; height: 1px; background: var(--line); }
.kat-step:last-child::before { display: none; }
.ks-no { display: block; font-family: 'Playfair Display',serif; font-weight: 800; font-size: 1rem; color: var(--muted-2); }
.ks-ico { position: relative; z-index: 1; display: inline-grid; place-items: center; width: 60px; height: 60px; margin: 6px 0 16px; border-radius: 50%; background: var(--bg); border: 1px solid rgba(245,158,11,.4); font-size: 24px; color: var(--accent-3); }
.ks-ico svg { width: 26px; height: 26px; }
.kat-step h4 { font-size: 1.15rem; margin: 0 0 6px; }
.kat-step p { color: var(--muted); font-size: .9rem; margin: 0; }

/* sss akordeon */
.kat-faq { display: grid; gap: 12px; }
.kfaq { background: var(--bg-card); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.kfaq[open] { border-color: rgba(245,158,11,.4); }
.kfaq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; font-family: 'Inter',sans-serif; font-weight: 600; font-size: 1.02rem; color: #fff; }
.kfaq summary::-webkit-details-marker { display: none; }
.kfaq summary i { font-style: normal; font-size: 24px; color: var(--accent); transition: transform .2s; flex: 0 0 auto; }
.kfaq[open] summary i { transform: rotate(45deg); }
.kfaq-body { padding: 0 24px 22px; color: var(--muted); }

@media (max-width: 860px) {
    .kat-svc-grid, .feat-boxes { grid-template-columns: 1fr; }
    .kat-feat { grid-template-columns: 1fr; gap: 30px; }
    .kat-steps { grid-template-columns: 1fr 1fr; gap: 30px 0; }
    .kat-step::before { display: none; }
}

/* ===== servis detay: avantaj + mini süreç ===== */
.prose .lead-p { font-size: 1.12rem; color: var(--text); }
.prose h3 { margin-top: 34px; }
.svc-benefits { list-style: none; padding: 0; margin: 0 0 10px; display: grid; gap: 12px; }
.svc-benefits li { position: relative; padding-left: 30px; color: var(--muted); }
.svc-benefits li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border-radius: 6px; background: var(--grad-soft); color: var(--accent); display: grid; place-items: center; font-size: .72rem; font-weight: 800; }
.svc-benefits strong { color: #fff; font-weight: 600; }
.svc-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 8px; }
.svc-steps > div { background: var(--bg-card); border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; }
.svc-steps span { font-family: 'Playfair Display', serif; font-weight: 800; color: var(--accent); font-size: 1rem; }
.svc-steps strong { display: block; color: #fff; font-family: 'Inter', sans-serif; margin: 4px 0 4px; }
.svc-steps p { color: var(--muted); font-size: .88rem; margin: 0; }
@media (max-width: 560px) { .svc-steps { grid-template-columns: 1fr; } }

/* ===================== AÇIK ZEMİNLİ BÖLÜM (referans birebir) ===================== */
.sec-light { background: #f6f7f9; color: #4a5058; }
.sec-light .section-head h2, .sec-light h2, .sec-light h3, .sec-light h4 { color: #17181c; }
.sec-light .section-head p, .sec-light .muted { color: #6b7178; }
.sec-light .grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
/* hizmet kartları (açık) */
.sec-light .kat-svc { background: #fff; border-color: #e7e9ee; box-shadow: 0 10px 30px -18px rgba(20,22,30,.18); }
.sec-light .kat-svc:hover { border-color: var(--accent); box-shadow: 0 20px 44px -22px rgba(20,22,30,.28); }
.sec-light .kat-svc-wm { color: rgba(20,22,30,.045); }
.sec-light .kat-svc h3 { color: #17181c; }
.sec-light .kat-svc > p { color: #6b7178; }
.sec-light .kat-svc-ico { background: rgba(245,158,11,.12); border-color: rgba(245,158,11,.3); }
.sec-light .kat-tag { background: #f1f2f5; border-color: #e7e9ee; color: #5b616a; }
/* süreç (açık) */
.sec-light .ks-no { color: #cfd3da; }
.sec-light .ks-ico { background: #fff; border-color: rgba(245,158,11,.5); box-shadow: 0 6px 18px -8px rgba(20,22,30,.15); }
.sec-light .kat-step::before { background: #e2e5ea; }
.sec-light .kat-step h4 { color: #17181c; }
.sec-light .kat-step p { color: #6b7178; }
/* sss (açık) */
.sec-light .kfaq { background: #fff; border-color: #e7e9ee; }
.sec-light .kfaq[open] { border-color: rgba(245,158,11,.5); box-shadow: 0 12px 30px -18px rgba(20,22,30,.2); }
.sec-light .kfaq summary { color: #17181c; }
.sec-light .kfaq-body { color: #6b7178; }

/* ===== Kategori sayfası: sans başlıklar (Poppins) — referans ===== */
.kat-hero h1, .sec-light .section-head h2, .sec-light h3, .sec-light h4,
.feat-text h2, .kat-svc h3, .kat-step h4, .kfaq summary, .ov-cta strong, .ov-cta-txt h2 {
    font-family: 'Poppins', sans-serif; letter-spacing: -.01em;
}
.kat-hero h1 { font-weight: 800; }

/* ===== CTA: koyu yuvarlak kart (açık zeminde) ===== */
.ov-cta { display: grid; grid-template-columns: 360px 1fr; gap: 44px; align-items: center;
    background: #131313; border: 1px solid #202020; border-radius: 28px; padding: 46px; }
.ov-cta-box { background: #1f1f1f; border: 1px solid rgba(255,255,255,.07); border-radius: 20px; padding: 34px 28px; text-align: center; }
.ov-cta-ico { font-size: 34px; display: block; margin-bottom: 12px; }
.ov-cta-box strong { display: block; font-weight: 700; font-size: 1.2rem; color: #fff; margin-bottom: 22px; }
.ov-cta-box .btn { width: 100%; justify-content: center; }
.ov-cta-txt h2 { font-weight: 800; color: #fff; font-size: clamp(28px,3.6vw,46px); margin: 0 0 14px; }
.ov-cta-txt p { color: var(--muted); font-size: 1.04rem; margin: 0; max-width: 540px; }
@media (max-width: 760px) { .ov-cta { grid-template-columns: 1fr; padding: 26px; gap: 26px; } }

/* ===== Kategori hero ikonu: amber çizgi-SVG + giriş animasyonu ===== */
.kat-hero-ico { width: 92px; height: 92px; margin: 0 auto 24px; display: grid; place-items: center; position: relative; border: 0; background: none; box-shadow: none; font-size: 0;
    animation: katIcoIn .85s cubic-bezier(.2,.75,.2,1) both, katIcoFloat 3.6s ease-in-out .9s infinite; }
.kat-hero-ico::before { content: ""; position: absolute; width: 150px; height: 150px; border-radius: 50%; background: radial-gradient(circle, rgba(245,158,11,.32), transparent 62%); z-index: -1; }
.kat-hero-ico svg { width: 80px; height: 80px; color: var(--accent); filter: drop-shadow(0 0 16px rgba(245,158,11,.55)); }
@keyframes katIcoIn { from { opacity: 0; transform: translateY(28px) scale(.8); } to { opacity: 1; transform: none; } }
@keyframes katIcoFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* üst şerit kaldırıldı (referansta yok) */
.topbar { display: none !important; }

/* ==================================================================
 * ZENGİN HİZMET SAYFASI (hizmet.php — tip: zengin)
 * ================================================================== */

/* Hero: fotoğraf + koyu perde + ızgara */
.hz-hero { position: relative; text-align: center; padding: 110px 0 96px; overflow: hidden;
    background-size: cover; background-position: center; background-color: var(--bg); border-bottom: 1px solid var(--line); }
.hz-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,8,8,.82) 0%, rgba(8,8,8,.66) 45%, rgba(11,11,11,.94) 100%); }
.hz-hero .kat-hero-grid { z-index: 1; }
.hz-hero-in { position: relative; z-index: 2; }
.hz-hero .crumb { margin-bottom: 26px; }
.hz-hero h1 { font-size: clamp(34px, 5.4vw, 60px); margin: 0 0 18px; line-height: 1.12; }
.hz-hero h1 .italik-accent { font-weight: 600; }
.hz-hero p { color: #cfc9c0; max-width: 640px; margin: 0 auto 30px; font-size: 1.08rem; }
.hz-hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Süreç: 6'lı şerit */
.hz-flow { display: grid; grid-template-columns: repeat(6, 1fr); gap: 26px 18px; }
.hz-flow-item { position: relative; text-align: center; padding-top: 6px; }
.hz-flow-item::before { content: ""; position: absolute; top: 38px; left: 50%; width: 100%; height: 1px; background: #e2e5ea; }
.hz-flow-item:last-child::before { display: none; }
.hz-flow-no { display: block; font-family: 'Playfair Display', serif; font-style: italic; color: var(--accent); font-size: .95rem; margin-bottom: 8px; }
.hz-flow-ico { position: relative; z-index: 1; width: 64px; height: 64px; margin: 0 auto 14px; display: grid; place-items: center; font-size: 26px;
    background: #fff; border: 1px solid rgba(245,158,11,.45); border-radius: 50%; box-shadow: 0 8px 22px -10px rgba(20,22,30,.2); color: var(--accent-3); }
.hz-flow-ico svg { width: 28px; height: 28px; }
.hz-cta-ico { display: grid; place-items: center; color: var(--accent); }
.hz-cta-ico svg { width: 40px; height: 40px; filter: drop-shadow(0 0 12px rgba(245,158,11,.45)); }
.hz-flow-item h4 { font-size: 1rem; margin: 0 0 6px; }
.hz-flow-item p { color: #6b7178; font-size: .85rem; margin: 0; }

/* Galeri: fotoğraf kartları */
.hz-gal { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.hz-gal-item { position: relative; margin: 0; border-radius: 18px; overflow: hidden; border: 1px solid var(--line);
    aspect-ratio: 4 / 3; background: var(--bg-card); }
.hz-gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.2,.75,.2,1); }
.hz-gal-item:hover img { transform: scale(1.06); }
.hz-gal-item figcaption { position: absolute; inset: auto 0 0 0; padding: 44px 20px 18px;
    background: linear-gradient(180deg, transparent, rgba(5,5,5,.88)); }
.hz-gal-item figcaption strong { display: block; color: #fff; font-family: 'Poppins', sans-serif; font-size: 1.04rem; }
.hz-gal-tag { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: var(--accent-2); margin-bottom: 6px; }

/* Avantaj kartları (3'lü ya da 4'lü otomatik sığar) */
.hz-adv { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; max-width: 1140px; margin: 0 auto; }
.hz-adv-tag { display: inline-block; margin-top: 14px; padding: 6px 14px; border: 1px solid #e7e9ee; background: #f6f7f9;
    border-radius: 8px; font-size: .78rem; font-weight: 600; color: #5b616a; }
.hz-adv-card { background: #fff; border: 1px solid #e7e9ee; border-radius: 18px; padding: 30px 24px; text-align: center;
    box-shadow: 0 10px 30px -18px rgba(20,22,30,.18); transition: all .25s; }
.hz-adv-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 22px 44px -22px rgba(20,22,30,.3); }
.hz-adv-ico { display: inline-grid; place-items: center; width: 58px; height: 58px; font-size: 25px; margin-bottom: 16px;
    background: rgba(245,158,11,.12); border: 1px solid rgba(245,158,11,.3); border-radius: 16px; color: var(--accent-3); }
.hz-adv-ico svg { width: 28px; height: 28px; }
.hz-adv-card h4 { font-size: 1.08rem; margin: 0 0 8px; }
.hz-adv-card p { color: #6b7178; font-size: .9rem; margin: 0; }

/* Açıklama: metin + çerçeveli görsel */
.hz-desc { display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: center; }
.hz-desc-txt h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin: 0 0 16px; font-family: 'Poppins', sans-serif; color: #fff; }
.hz-desc-txt > p { color: var(--muted); font-size: 1.04rem; margin: 0 0 22px; }
.hz-checks { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 12px; }
.hz-checks li { position: relative; padding-left: 34px; color: var(--text); font-size: .98rem; }
.hz-checks li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 22px; height: 22px; display: grid; place-items: center;
    font-size: 13px; font-weight: 800; color: #0b0b0b; background: var(--accent); border-radius: 50%; }
.hz-desc-vis { position: relative; }
.hz-desc-vis::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid rgba(245,158,11,.4); border-radius: 22px; }
.hz-desc-vis img { position: relative; width: 100%; border-radius: 20px; display: block; border: 1px solid var(--line-2); }

/* Uygulama adımları: fotoğraflı kartlar */
.hz-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hz-step { background: #fff; border: 1px solid #e7e9ee; border-radius: 18px; overflow: hidden;
    box-shadow: 0 10px 30px -18px rgba(20,22,30,.18); transition: all .25s; }
.hz-step:hover { transform: translateY(-4px); border-color: var(--accent); }
.hz-step-img { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.hz-step-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hz-step-img span { position: absolute; left: 14px; top: 14px; background: rgba(11,11,11,.82); color: var(--accent);
    font-family: 'Playfair Display', serif; font-style: italic; font-size: .92rem; padding: 4px 12px; border-radius: 999px; }
.hz-step h4 { font-size: 1.02rem; margin: 16px 18px 6px; }
.hz-step p { color: #6b7178; font-size: .87rem; margin: 0 18px 18px; }

/* Geniş bant görseli */
.hz-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hz-band img { width: 100%; max-height: 340px; object-fit: cover; display: block; }

/* Makro / büyüteç: gezinen mercekli detay kutusu */
.hz-makro { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 21 / 8.5;
    background-size: cover; background-position: center; border: 1px solid var(--line-2); cursor: crosshair; }
.hz-lens { position: absolute; top: 32%; left: 55%; width: 180px; height: 180px; transform: translate(-50%, -50%);
    border: 4px solid var(--accent); border-radius: 50%; pointer-events: none;
    background-size: 300%; background-position: 55% 32%;
    box-shadow: 0 0 50px rgba(0,0,0,.55), 0 0 0 7px rgba(245,158,11,.14);
    animation: hzLens 9s ease-in-out infinite alternate; }
@keyframes hzLens {
    0%   { top: 30%; left: 18%; background-position: 18% 30%; }
    45%  { top: 62%; left: 48%; background-position: 48% 62%; }
    100% { top: 26%; left: 80%; background-position: 80% 26%; }
}
@media (max-width: 760px) {
    .hz-makro { aspect-ratio: 4 / 3; }
    .hz-lens { width: 120px; height: 120px; border-width: 3px; }
}

/* Giriş animasyonu (IntersectionObserver ile .rv-on eklenir) */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.75,.2,1), transform .7s cubic-bezier(.2,.75,.2,1); }
.rv-d1 { transition-delay: .1s; } .rv-d2 { transition-delay: .2s; } .rv-d3 { transition-delay: .3s; }
.rv-d4 { transition-delay: .4s; } .rv-d5 { transition-delay: .5s; }
.rv-on { opacity: 1; transform: none; }

/* Duyarlılık */
@media (max-width: 1060px) {
    .hz-flow { grid-template-columns: repeat(3, 1fr); }
    .hz-flow-item:nth-child(3n)::before { display: none; }
    .hz-adv, .hz-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
    .hz-hero { padding: 84px 0 70px; }
    .hz-gal { grid-template-columns: 1fr; }
    .hz-desc { grid-template-columns: 1fr; gap: 40px; }
    .hz-desc-vis::before { display: none; }
}
@media (max-width: 520px) {
    .hz-flow { grid-template-columns: repeat(2, 1fr); }
    .hz-flow-item::before { display: none; }
    .hz-adv, .hz-steps { grid-template-columns: 1fr; }
}
