/* =====================================================================
   Zhop — Kurumsal tanıtım sitesi tasarım sistemi (landing.css)
   landing/index.php (anasayfa) + landing/modules.php (Modüller & Entegrasyonlar)
   Self-contained: kendi token'ları, fontları, bileşenleri. Bootstrap grid'i
   ile birlikte kullanılır (row/col), ama görsel sistem buradan gelir.
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
    /* Marka — Zhop logosunun mor→mavi gradienti */
    --z-violet:   #7c3aed;
    --z-indigo:   #4f46e5;
    --z-blue:     #2563eb;
    --z-sky:      #38bdf8;
    --z-grad:     linear-gradient(120deg, #7c3aed 0%, #4f46e5 45%, #2563eb 100%);
    --z-grad-soft:linear-gradient(120deg, rgba(124,58,237,.12), rgba(37,99,235,.12));

    /* Mürekkep / lacivert */
    --ink:        #0e1730;   /* en koyu — koyu bölümler */
    --ink-2:      #16213c;
    --ink-3:      #1f2b48;

    /* Metin */
    --tx:         #141d33;   /* başlık/birincil */
    --tx-2:       #4a566f;   /* gövde/ikincil */
    --tx-3:       #8693ac;   /* silik */

    /* Yüzeyler */
    --bg:         #ffffff;
    --paper:      #f6f8fd;   /* açık tuval */
    --paper-2:    #eef2fb;
    --line:       #e6ebf4;   /* kenarlık */
    --line-2:     #d9e1ef;

    --accent:     #f59e0b;   /* sıcak vurgu (az kullan) */
    --ok:         #16b364;   /* canlı/başarı */

    --ff-display: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --ff-body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

    --r-sm: 12px;
    --r:    16px;
    --r-lg: 22px;
    --r-xl: 30px;

    --sh-sm: 0 1px 2px rgba(16,23,48,.05), 0 1px 3px rgba(16,23,48,.06);
    --sh:    0 8px 24px rgba(16,23,48,.07);
    --sh-lg: 0 24px 60px rgba(16,23,48,.13);
    --sh-brand: 0 16px 40px rgba(79,70,229,.28);

    --maxw: 1200px;
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--ff-body);
    color: var(--tx);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--ff-display); color: var(--tx); margin: 0; letter-spacing: -.02em; line-height: 1.12; }
p { margin: 0; }
::selection { background: rgba(79,70,229,.18); }

.z-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.z-grad-text {
    background: var(--z-grad); -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.z-eyebrow {
    display: inline-flex; align-items: center; gap: .45rem;
    font-family: var(--ff-display); font-weight: 700; font-size: .8rem;
    letter-spacing: .12em; text-transform: uppercase; color: var(--z-indigo);
}
.z-section { padding: 5.5rem 0; position: relative; }
.z-section--tight { padding: 3.5rem 0; }

.z-sec-head { max-width: 760px; margin: 0 auto 3.25rem; text-align: center; }
.z-sec-head h2 { font-weight: 800; font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin: .7rem 0 .85rem; }
.z-sec-head p { color: var(--tx-2); font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.z-btn {
    display: inline-flex; align-items: center; gap: .55rem;
    font-family: var(--ff-display); font-weight: 700; font-size: .95rem;
    padding: .8rem 1.4rem; border-radius: 999px; border: 1.5px solid transparent;
    cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
    white-space: nowrap; line-height: 1;
}
.z-btn i { font-size: 1.05em; }
.z-btn-primary { background: var(--z-grad); color: #fff; box-shadow: var(--sh-brand); }
.z-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 50px rgba(79,70,229,.36); color: #fff; }
.z-btn-ghost { background: #fff; color: var(--tx); border-color: var(--line-2); }
.z-btn-ghost:hover { border-color: var(--z-indigo); color: var(--z-indigo); transform: translateY(-2px); }
.z-btn-light { background: #fff; color: var(--ink); }
.z-btn-light:hover { background: var(--accent); color: var(--ink); transform: translateY(-2px); }
.z-btn-sm { padding: .55rem 1rem; font-size: .85rem; }
.z-btn-block { width: 100%; justify-content: center; }

/* ---------- NAV ---------- */
.z-nav {
    position: sticky; top: 0; z-index: 200;
    background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line);
}
.z-nav .inner { max-width: var(--maxw); margin: 0 auto; padding: .5rem 1.5rem; display: flex; align-items: center; gap: 1.25rem; }
.z-nav__logo { height: 40px; width: auto; }
.z-nav__links { display: flex; align-items: center; gap: 1.6rem; margin-left: 1rem; }
.z-nav__links a { color: var(--tx-2); font-weight: 600; font-size: .94rem; position: relative; transition: color .15s ease; }
.z-nav__links a:hover { color: var(--z-indigo); }
.z-nav__spacer { flex: 1; }
.z-nav__cta { display: flex; align-items: center; gap: .6rem; }
.z-nav__burger {
    display: none; width: 44px; height: 44px; border: 1px solid var(--line-2);
    background: #fff; border-radius: 12px; color: var(--tx); font-size: 1.4rem;
    align-items: center; justify-content: center; cursor: pointer;
}
.z-nav__mobile { display: none; }

/* ---------- HERO (dark, centered, stacked) ---------- */
.z-hero {
    position: relative; overflow-x: clip;
    padding: 5.5rem 0 0; margin-bottom: 0;
    color: #fff; text-align: center; isolation: isolate;
}
/* Dark brand surface + radial glows (REUSE .z-rt-hero treatment) */
.z-hero__bg {
    position: absolute; inset: 0; z-index: -2;
    background:
        radial-gradient(1200px 520px at 78% 16%, rgba(56,189,248,.18), transparent 60%),
        radial-gradient(900px 520px at 18% 86%, rgba(139,92,246,.22), transparent 60%),
        radial-gradient(700px 380px at 50% -8%, rgba(99,102,241,.20), transparent 65%),
        linear-gradient(135deg, #0b1120 0%, #131a30 45%, #1a1340 100%);
}
/* faint grid texture for depth */
.z-hero__bg::after {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 0%, transparent 72%);
            mask-image: radial-gradient(120% 90% at 50% 0%, #000 0%, transparent 72%);
}
.z-hero__copy { max-width: 880px; margin: 0 auto; }
.z-hero .pill {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(255,255,255,.06); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.14); border-radius: 999px;
    padding: .4rem .95rem .4rem .45rem;
    font-size: .82rem; font-weight: 600; color: rgba(233,238,251,.82);
    box-shadow: 0 8px 24px -12px rgba(0,0,0,.6); margin-bottom: 1.7rem;
}
.z-hero .pill b { background: var(--z-grad); color: #fff; border-radius: 999px; padding: .18rem .65rem; font-size: .72rem; font-weight: 700; letter-spacing: .01em; }
.z-hero h1 {
    color: #fff; font-weight: 800;
    font-size: clamp(2.4rem, 6.2vw, 4.6rem); line-height: 1.04;
    letter-spacing: -.035em; margin: 0 auto 1.35rem; max-width: 16ch;
}
.z-hero h1 .z-grad-text {
    background: linear-gradient(120deg, #a78bfa 0%, #818cf8 45%, #60a5fa 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.z-hero .sub {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: rgba(233,238,251,.7);
    max-width: 60ch; margin: 0 auto 2.2rem; line-height: 1.6;
}
.z-hero .cta-row { display: flex; gap: .85rem; flex-wrap: wrap; justify-content: center; }
.z-hero .z-btn-primary { box-shadow: 0 16px 40px rgba(79,70,229,.45); }
/* dark-aware ghost / outline CTA */
.z-hero__ghost {
    display: inline-flex; align-items: center; gap: .55rem;
    font-family: var(--ff-display); font-weight: 700; font-size: .95rem;
    padding: .8rem 1.4rem; border-radius: 999px; line-height: 1; white-space: nowrap;
    color: #fff; background: rgba(255,255,255,.05);
    border: 1.5px solid rgba(255,255,255,.2);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.z-hero__ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.4); transform: translateY(-2px); color: #fff; }
.z-hero__ghost i { font-size: 1.05em; }
.z-hero .z-btn:focus-visible,
.z-hero__ghost:focus-visible { outline: 2px solid #a78bfa; outline-offset: 3px; }

/* social proof: decorative avatars + truthful pills */
.z-hero__proof {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: 1rem 1.4rem; margin-top: 2.4rem;
}
/* who: business-type icon cluster + truthful design-intent label (no customer/metric claim) */
.z-hero__who { display: inline-flex; align-items: center; gap: .7rem; }
.z-hero__avatars { display: inline-flex; flex-shrink: 0; }
.z-hero__avatars span {
    width: 38px; height: 38px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; border: 2px solid #11162a; box-shadow: 0 4px 12px rgba(0,0,0,.35);
}
.z-hero__avatars span i { font-size: 1rem; line-height: 1; }
.z-hero__avatars span + span { margin-left: -12px; }
.z-hero__wholabel { font-size: .82rem; font-weight: 600; color: rgba(233,238,251,.68); max-width: 24ch; text-align: left; line-height: 1.32; }
.z-hero__pills { display: flex; flex-wrap: wrap; gap: .5rem .7rem; justify-content: center; }
.z-hero__pills span {
    display: inline-flex; align-items: center; gap: .4rem;
    font-size: .8rem; font-weight: 600; color: rgba(233,238,251,.78);
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px; padding: .35rem .8rem;
}
.z-hero__pills i { color: #34d399; font-size: 1rem; }

/* hero görsel — dashboard mock: centered, large, glow, bleeds into next section */
.z-hero__visual {
    max-width: 940px; margin: 3.4rem auto -56px; position: relative; z-index: 1;
}
.z-hero__visual::before {
    content: ''; position: absolute; left: 50%; top: 8%; transform: translateX(-50%);
    width: 80%; height: 70%; z-index: -1; border-radius: 50%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(124,92,246,.55), rgba(56,189,248,.18) 55%, transparent 75%);
    filter: blur(70px);
}
.z-mock {
    background: #fff; border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--r-lg); overflow: hidden; position: relative;
    box-shadow: 0 50px 120px -30px rgba(2,6,23,.85), 0 0 0 1px rgba(255,255,255,.04);
}
.z-mock__bar { background: #0b1220; padding: .75rem 1rem; display: flex; align-items: center; gap: .45rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.z-mock__bar i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.z-mock__bar .u { margin-left: .6rem; color: rgba(255,255,255,.55); font-size: .78rem; }
.z-mock__body { padding: 1.15rem; background: var(--paper); }
.z-mrow { display: flex; align-items: center; gap: .8rem; padding: .75rem; border-radius: 14px; border: 1px solid var(--line); background: #fff; margin-bottom: .65rem; }
.z-mrow .av { width: 40px; height: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--ff-display); font-weight: 700; font-size: .92rem; }
.z-mrow .grow { flex: 1; min-width: 0; }
.z-mrow .grow strong { display: block; font-size: .92rem; color: var(--tx); }
.z-mrow .grow small { color: var(--tx-3); font-size: .78rem; }
.z-tag-ok { font-size: .68rem; font-weight: 700; color: var(--ok); background: rgba(22,179,100,.12); border-radius: 999px; padding: .22rem .6rem; }
.z-float { position: absolute; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--sh); padding: .65rem .9rem; font-weight: 700; font-size: .82rem; display: flex; align-items: center; gap: .5rem; }
.z-float i { font-size: 1.15rem; }
.z-float.f1 { top: 14%; left: -26px; }
.z-float.f1 i { color: var(--z-indigo); }
.z-float.f2 { bottom: 9%; right: -22px; }
.z-float.f2 i { color: var(--ok); }
.z-float .up { color: var(--ok); }

/* hero — (eski yetenek çipleri kaldırıldı; merkezi/stacked düzene geçildi) */

/* hero görsel — GERÇEKÇİ Manager admin paneli replikası (manager-ui.css "Atelier Commerce" paritesi) */
.z-adm { display: grid; grid-template-columns: 134px minmax(0, 1fr); background: #f4f6fb; text-align: left; }
.z-adm__side { background: radial-gradient(120% 90% at 0% 0%, #16335f 0%, #0e1830 55%, #0a1124 100%); padding: .85rem .5rem 1rem; }
.z-adm__brand { padding: .1rem .4rem .7rem; }
.z-adm__brand img { width: 88px; height: auto; display: block; }
.z-adm__nav { display: flex; flex-direction: column; gap: .1rem; }
.z-adm__link { display: flex; align-items: center; gap: .4rem; padding: .4rem .45rem; border-radius: 9px; color: rgba(255,255,255,.72); font-weight: 600; font-size: .68rem; white-space: nowrap; }
.z-adm__link i { font-size: .9rem; width: 15px; text-align: center; flex-shrink: 0; }
.z-adm__link.active { background: #4f93ff; color: #0e1830; font-weight: 700; }
.z-adm__sec { font-size: .54rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.34); font-weight: 700; padding: .55rem .5rem .22rem; }
.z-adm__main { padding: .7rem .8rem .85rem; display: grid; gap: .55rem; align-content: start; min-width: 0; }
.z-adm__top { display: flex; align-items: center; justify-content: space-between; }
.z-adm__crumb { display: inline-flex; align-items: center; gap: .35rem; font-weight: 700; color: var(--tx); font-size: .8rem; }
.z-adm__crumb i { color: #2d7ff9; font-size: .9rem; }
.z-adm__top-r { display: inline-flex; align-items: center; gap: .45rem; }
.z-adm__newbtn { display: inline-flex; align-items: center; gap: .25rem; background: var(--ink); color: #fff; border-radius: 999px; padding: .28rem .55rem; font-size: .64rem; font-weight: 700; white-space: nowrap; }
.z-adm__ava { width: 25px; height: 25px; border-radius: 50%; background: linear-gradient(135deg, #2d7ff9, #1b5fd0); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: .72rem; flex-shrink: 0; }
.z-adm__welcome { position: relative; overflow: hidden; border-radius: 13px; padding: .8rem .95rem; color: #fff; background: radial-gradient(130% 130% at 100% 0%, #5aa0ff 0%, #2d7ff9 30%, #0e1830 78%); }
.z-adm__wpill { display: inline-flex; align-items: center; gap: .3rem; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.22); border-radius: 999px; padding: .16rem .5rem; font-size: .6rem; font-weight: 700; margin-bottom: .45rem; }
.z-adm__welcome strong { display: block; font-family: var(--ff-display); font-weight: 800; font-size: 1rem; line-height: 1.1; }
.z-adm__wsub { color: rgba(255,255,255,.82); font-size: .7rem; }
.z-adm__metrics { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .4rem; }
.z-adm__metric { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: .5rem .45rem .55rem; display: flex; flex-direction: column; gap: .12rem; min-width: 0; }
.z-adm__chip { width: 25px; height: 25px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; font-size: .82rem; margin-bottom: .12rem; }
.z-adm__chip.cg { background: rgba(45,127,249,.12); color: #1b5fd0; }
.z-adm__chip.cs { background: rgba(47,128,237,.12); color: #36b9f0; }
.z-adm__chip.ca { background: rgba(240,145,58,.14); color: #c9701f; }
.z-adm__chip.cb { background: rgba(214,72,107,.12); color: #ef5d7a; }
.z-adm__metric b { font-family: var(--ff-display); font-weight: 800; font-size: 1.02rem; color: var(--tx); line-height: 1; }
.z-adm__metric small { color: var(--tx-3); font-size: .56rem; font-weight: 600; line-height: 1.18; }
.z-adm__card { background: #fff; border: 1px solid var(--line); border-radius: 13px; padding: .55rem .7rem .6rem; }
.z-adm__card-h { display: flex; align-items: center; justify-content: space-between; margin-bottom: .35rem; }
.z-adm__card-h > span:first-child { font-family: var(--ff-display); font-weight: 700; font-size: .76rem; color: var(--tx); }
.z-adm__all { color: #2d7ff9; font-size: .64rem; font-weight: 700; display: inline-flex; align-items: center; gap: .2rem; }
.z-adm__srow { display: flex; align-items: center; gap: .5rem; padding: .35rem 0; }
.z-adm__srow + .z-adm__srow { border-top: 1px solid var(--line); }
.z-adm__sav { width: 30px; height: 30px; border-radius: 9px; color: #fff; display: inline-flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-weight: 700; font-size: .68rem; flex-shrink: 0; }
.z-adm__sg { flex: 1; min-width: 0; display: flex; flex-direction: column; line-height: 1.2; }
.z-adm__sg strong { font-size: .72rem; color: var(--tx); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.z-adm__sg small { color: var(--tx-3); font-size: .62rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.z-adm__lic { font-size: .56rem; font-weight: 700; border-radius: 999px; padding: .14rem .45rem; color: #fff; white-space: nowrap; }
.z-adm__lic.pro { background: #2d7ff9; color: #06245e; }
.z-adm__lic.starter { background: #36b9f0; }
.z-adm__sst { display: inline-flex; align-items: center; gap: .3rem; font-size: .62rem; font-weight: 700; color: #1b5fd0; background: rgba(45,127,249,.14); border-radius: 999px; padding: .18rem .42rem; white-space: nowrap; }
.z-adm__sst i { width: 5px; height: 5px; border-radius: 50%; background: currentColor; display: inline-block; }
@media (max-width: 575px) {
    .z-adm { grid-template-columns: 104px minmax(0, 1fr); }
    .z-adm__brand img { width: 70px; }
    .z-adm__link { font-size: .62rem; padding: .38rem .4rem; }
    .z-adm__sec { font-size: .5rem; }
    .z-adm__metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .z-adm__newbtn, .z-adm__sst { display: none; }
}

/* ---------- TRUST / marka şeridi ---------- */
.z-trust { padding: 5.5rem 0 1rem; } /* üst boşluk: hero mockup taşma payı + nefes */
.z-trust p { text-align: center; color: var(--tx-3); font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 1.5rem; }
.z-trust__logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2.75rem; }
.z-trust__logos img { height: 26px; opacity: .55; filter: grayscale(1); transition: opacity .2s ease, filter .2s ease, transform .2s ease; }
.z-trust__logos img:hover { opacity: 1; filter: none; transform: translateY(-2px); }

/* ---------- STATS şeridi ---------- */
.z-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.z-stat { text-align: center; padding: 1.6rem 1rem; border-radius: var(--r); border: 1px solid var(--line); background: var(--paper); }
.z-stat .n { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.9rem, 3vw, 2.6rem); line-height: 1; }
.z-stat .l { color: var(--tx-2); font-size: .92rem; font-weight: 500; margin-top: .45rem; }

/* ---------- FEATURES (bento) ---------- */
.z-bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.25rem; }
.z-feat {
    grid-column: span 2; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
    padding: 1.7rem; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; position: relative; overflow: hidden;
}
.z-feat:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: transparent; }
.z-feat.span3 { grid-column: span 3; }
.z-feat__ico { width: 52px; height: 52px; border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 1.55rem; flex-shrink: 0; }
.z-feat__head { display: flex; align-items: center; gap: .9rem; margin-bottom: .8rem; }
.z-feat__head h3 { margin-bottom: 0; }
.z-feat h3 { font-size: 1.22rem; font-weight: 700; margin-bottom: .45rem; }
.z-feat p { color: var(--tx-2); font-size: .95rem; }
/* ikon tonları */
.ic-violet { background: rgba(124,58,237,.12); color: var(--z-violet); }
.ic-indigo { background: rgba(79,70,229,.12); color: var(--z-indigo); }
.ic-blue   { background: rgba(37,99,235,.12); color: var(--z-blue); }
.ic-sky    { background: rgba(56,189,248,.16); color: #0ea5cf; }
.ic-amber  { background: rgba(245,158,11,.16); color: #d97f0a; }
.ic-ok     { background: rgba(22,179,100,.14); color: var(--ok); }
.ic-ink    { background: rgba(14,23,48,.07); color: var(--ink); }
/* features — modern bento varyantları */
.z-feat--hero { grid-column: span 3; background: var(--ink); border-color: transparent; color: #fff; }
.z-feat--hero h3 { color: #fff; }
.z-feat--hero p { color: rgba(255,255,255,.74); }
.z-feat--hero .z-feat__ico { background: rgba(255,255,255,.12); color: #fff; }
.z-feat--hero:hover { box-shadow: var(--sh-lg); }
.z-feat__glow { position: absolute; width: 300px; height: 300px; right: -70px; top: -90px; border-radius: 50%; z-index: 0; background: radial-gradient(circle, rgba(124,58,237,.55), transparent 68%); pointer-events: none; }
.z-feat--hero > *:not(.z-feat__glow) { position: relative; z-index: 1; }
.z-feat--wide { grid-column: span 3; }
.z-feat--half { grid-column: span 3; }
.z-feat__mock { display: flex; gap: .5rem; align-items: flex-end; height: 62px; margin-top: 1.3rem; }
.z-feat__mock .b { flex: 1; height: 55%; border-radius: 8px; background: rgba(255,255,255,.14); }
.z-feat__mock .b.on { background: var(--z-grad); height: 100%; }
.z-feat__mock .b.lg { height: 78%; }
.z-feat__rows { display: grid; gap: .55rem; margin-top: 1.3rem; }
.z-feat__rows span { height: 16px; border-radius: 7px; background: var(--paper-2); }
.z-feat__rows span:nth-child(1) { width: 100%; }
.z-feat__rows span:nth-child(2) { width: 78%; }
.z-feat__rows span:nth-child(3) { width: 56%; }

/* ---------- EDITOR showcase (Site Tasarımı) ---------- */
.z-editor { background: var(--ink); border-radius: var(--r-xl); color: #fff; padding: clamp(2.5rem, 5vw, 4.5rem); position: relative; overflow: hidden; clip-path: polygon(0 0, 100% 6%, 100% 94%, 0 100%); }
.z-editor::after { content: ''; position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px); background-size: 26px 26px; }
.z-editor__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 3rem; align-items: center; position: relative; z-index: 1; }
.z-editor h2 { color: #fff; font-weight: 800; font-size: clamp(1.8rem, 3.4vw, 2.7rem); margin: .7rem 0 1rem; }
.z-editor p { color: rgba(255,255,255,.74); font-size: 1.05rem; margin-bottom: 1.5rem; }
.z-editor .z-eyebrow { color: var(--z-sky); }
.z-editor__list { list-style: none; padding: 0; margin: 0 0 1.75rem; display: grid; gap: .7rem; }
.z-editor__list li { display: flex; gap: .65rem; align-items: flex-start; color: rgba(255,255,255,.9); font-weight: 500; }
.z-editor__list li i { color: var(--z-sky); margin-top: .15rem; font-size: 1.15rem; flex-shrink: 0; }
/* editör görsel — GERÇEKÇİ Site Tasarımı editörü replikası (deploy /admin/site-design paritesi) */
.z-edm { background: #fff; border-radius: var(--r); box-shadow: var(--sh-lg); overflow: hidden; text-align: left; color: #1f2430; }
.z-edm__top { display: flex; align-items: center; justify-content: space-between; gap: .5rem; height: 38px; padding: 0 .7rem; background: #fff; border-bottom: 1px solid #e7e8ee; }
.z-edm__brand { display: inline-flex; align-items: center; gap: .35rem; font-weight: 800; font-size: .76rem; color: #4f46e5; white-space: nowrap; }
.z-edm__brand i { font-size: .95rem; }
.z-edm__dev { display: inline-flex; align-items: center; gap: .12rem; }
.z-edm__dev i { width: 22px; height: 22px; border-radius: 6px; display: inline-flex; align-items: center; justify-content: center; color: #9aa1ad; font-size: .82rem; }
.z-edm__dev i.active { background: #eef2ff; color: #4f46e5; }
.z-edm__save { display: inline-flex; align-items: center; gap: .25rem; background: #4f46e5; color: #fff; border-radius: 8px; padding: .3rem .6rem; font-size: .68rem; font-weight: 700; white-space: nowrap; }
.z-edm__body { display: grid; grid-template-columns: 108px minmax(0, 1fr) 116px; height: 272px; }
/* sol panel — blok ağacı */
.z-edm__left { background: #fff; border-right: 1px solid #e7e8ee; display: flex; flex-direction: column; min-width: 0; }
.z-edm__ltabs { display: flex; border-bottom: 1px solid #e7e8ee; }
.z-edm__ltabs span { flex: 1; text-align: center; padding: .45rem 0; font-size: .64rem; font-weight: 700; color: #9aa1ad; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.z-edm__ltabs span.active { color: #4f46e5; border-bottom-color: #4f46e5; }
.z-edm__tree { padding: .5rem; display: flex; flex-direction: column; gap: .28rem; overflow: hidden; }
.z-edm__node { display: flex; align-items: center; gap: .32rem; padding: .32rem .38rem; border: 1px solid #e7e8ee; border-radius: 8px; background: #fff; font-size: .6rem; font-weight: 600; color: #1f2430; white-space: nowrap; overflow: hidden; }
.z-edm__node i { font-size: .74rem; color: #6b7280; flex-shrink: 0; }
.z-edm__node.sec { background: #eef2ff; border-color: #dfe3f5; color: #4338ca; font-weight: 700; }
.z-edm__node.sec i { color: #4f46e5; }
.z-edm__node.col { background: #f6f7fb; border-style: dashed; margin-left: .3rem; }
.z-edm__node.sel { border-color: #4f46e5; box-shadow: 0 0 0 2px rgba(79,70,229,.18); margin-left: .3rem; }
.z-edm__node.sel i { color: #4f46e5; }
/* orta panel — canvas */
.z-edm__canvas { background: #eef1f6; padding: .65rem; min-width: 0; overflow: hidden; }
.z-edm__page { background: #fff; border-radius: 8px; box-shadow: 0 4px 14px rgba(15,23,42,.08); padding: .5rem; height: 100%; overflow: hidden; }
.z-edm__hero { position: relative; border-radius: 8px; background: linear-gradient(120deg, #4f46e5, #2563eb); color: #fff; padding: .85rem .7rem; display: flex; flex-direction: column; align-items: flex-start; gap: .1rem; outline: 2px solid #4f46e5; outline-offset: 2px; }
.z-edm__badge { position: absolute; top: -9px; left: 8px; background: #4f46e5; color: #fff; font-size: .54rem; font-weight: 700; padding: .1rem .4rem; border-radius: 5px; }
.z-edm__hero strong { font-family: var(--ff-display); font-weight: 800; font-size: .9rem; line-height: 1.1; }
.z-edm__hero .sub { font-size: .6rem; opacity: .9; }
.z-edm__hero .cbtn { margin-top: .35rem; background: #fff; color: #4f46e5; border-radius: 999px; padding: .18rem .55rem; font-size: .56rem; font-weight: 700; }
.z-edm__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: .4rem; margin-top: .5rem; }
.z-edm__cols .pc { height: 46px; border-radius: 6px; background: #f1f3f8; border: 1px solid #e7e8ee; position: relative; }
.z-edm__cols .pc::after { content: ''; position: absolute; left: .3rem; right: .3rem; bottom: .3rem; height: 5px; border-radius: 3px; background: #dfe3f5; }
/* sağ panel — ayarlar */
.z-edm__right { background: #fff; border-left: 1px solid #e7e8ee; display: flex; flex-direction: column; min-width: 0; }
.z-edm__rtabs { display: flex; border-bottom: 1px solid #e7e8ee; padding: 0 2px; }
.z-edm__rtabs span { flex: 0 0 auto; padding: .45rem .28rem; font-size: .55rem; font-weight: 700; color: #9aa1ad; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.z-edm__rtabs span.active { color: #4f46e5; border-bottom-color: #4f46e5; }
.z-edm__set { padding: .55rem .5rem; display: flex; flex-direction: column; gap: .48rem; }
.z-edm__f label { display: block; font-size: .55rem; font-weight: 700; color: #6b7280; margin-bottom: .18rem; }
.z-edm__f .inp { border: 1px solid #e7e8ee; border-radius: 7px; padding: .3rem .4rem; font-size: .58rem; color: #1f2430; background: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.z-edm__f .seg { display: flex; border: 1px solid #e7e8ee; border-radius: 7px; overflow: hidden; }
.z-edm__f .seg i { flex: 1; text-align: center; padding: .28rem 0; font-size: .72rem; color: #9aa1ad; }
.z-edm__f .seg i.active { background: #eef2ff; color: #4f46e5; }
.z-edm__f .clr { display: flex; align-items: center; gap: .3rem; border: 1px solid #e7e8ee; border-radius: 7px; padding: .26rem .4rem; font-size: .56rem; color: #6b7280; }
.z-edm__f .clr span { width: 14px; height: 14px; border-radius: 4px; background: #4f46e5; flex-shrink: 0; }
.z-edm__f .rng { height: 5px; border-radius: 999px; background: #e7e8ee; position: relative; margin-top: .35rem; }
.z-edm__f .rng span { position: absolute; left: 0; top: 0; bottom: 0; width: 58%; border-radius: 999px; background: #4f46e5; }
.z-edm__f .rng::after { content: ''; position: absolute; left: 58%; top: 50%; transform: translate(-50%, -50%); width: 11px; height: 11px; border-radius: 50%; background: #fff; border: 2px solid #4f46e5; box-shadow: 0 1px 3px rgba(0,0,0,.2); }
@media (max-width: 575px) {
    .z-edm__body { grid-template-columns: 102px minmax(0, 1fr); height: 244px; }
    .z-edm__right { display: none; }
}

/* ---------- SHOWCASE mock (analytics + chatbot) ---------- */
.z-show .row + .row { margin-top: 4rem; }
.z-show__text .z-eyebrow { margin-bottom: .5rem; }
.z-show__text h2 { font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.3rem); margin: .4rem 0 .8rem; }
.z-show__text p { color: var(--tx-2); margin-bottom: 1.1rem; }
.z-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.z-list li { display: flex; gap: .6rem; align-items: flex-start; font-weight: 500; color: var(--tx); }
.z-list li i { color: var(--z-indigo); margin-top: .2rem; font-size: 1.1rem; flex-shrink: 0; }
.z-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh); overflow: hidden; }
.z-card__head { background: var(--ink); color: #fff; padding: .85rem 1.1rem; display: flex; align-items: center; gap: .6rem; font-weight: 600; font-size: .95rem; }
.z-live { display: inline-flex; align-items: center; gap: .35rem; margin-left: auto; background: rgba(22,179,100,.18); color: #34d27f; border-radius: 999px; padding: .18rem .55rem; font-size: .72rem; font-weight: 700; }
.z-live i { width: 7px; height: 7px; border-radius: 50%; background: #34d27f; display: inline-block; animation: zblink 1.4s infinite; }
@keyframes zblink { 50% { opacity: .3; } }
.z-an__body { padding: 1.25rem; }
.z-an__big { display: flex; align-items: baseline; gap: .6rem; margin-bottom: 1.1rem; }
.z-an__big .n { font-family: var(--ff-display); font-weight: 800; font-size: 3rem; color: var(--tx); line-height: 1; }
.z-an__big .l { color: var(--tx-3); font-weight: 600; }
.z-an__bar { margin-bottom: .65rem; }
.z-an__bar .t { display: flex; justify-content: space-between; font-size: .82rem; color: var(--tx-2); font-weight: 600; margin-bottom: .25rem; }
.z-an__bar .track { height: 8px; background: var(--paper-2); border-radius: 99px; overflow: hidden; }
.z-an__bar .fill { height: 100%; border-radius: 99px; background: var(--z-grad); }
.z-an__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.1rem; }
.z-an__c { border: 1px solid var(--line); border-radius: 12px; padding: .8rem; }
.z-an__c .h { font-size: .68rem; text-transform: uppercase; letter-spacing: .07em; color: var(--tx-3); font-weight: 700; margin-bottom: .5rem; }
.z-an__c .r { display: flex; justify-content: space-between; font-size: .82rem; padding: .16rem 0; color: var(--tx); }
.z-an__c .r b { color: var(--z-indigo); }
.z-chat { max-width: 390px; margin: 0 auto; }
.z-chat__head { background: var(--z-grad); color: #fff; padding: .85rem 1.1rem; display: flex; align-items: center; gap: .7rem; }
.z-chat__head .av { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.22); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.z-chat__head .nm { font-weight: 700; font-size: .95rem; line-height: 1.1; }
.z-chat__head .on { font-size: .72rem; color: #d6e8ff; display: flex; align-items: center; gap: .3rem; }
.z-chat__head .on::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #34d27f; display: inline-block; }
.z-chat__body { padding: 1rem; background: var(--paper); display: flex; flex-direction: column; gap: .55rem; }
.z-msg { max-width: 82%; padding: .6rem .85rem; border-radius: 16px; font-size: .86rem; line-height: 1.45; }
.z-msg.bot { background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 4px; align-self: flex-start; }
.z-msg.user { background: var(--z-indigo); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.z-chprod { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: .65rem; display: flex; gap: .7rem; align-items: center; align-self: flex-start; width: 92%; }
.z-chprod .img { width: 48px; height: 48px; border-radius: 10px; background: var(--z-grad-soft); display: flex; align-items: center; justify-content: center; color: var(--z-indigo); font-size: 1.3rem; flex-shrink: 0; }
.z-chprod .grow { flex: 1; }
.z-chprod .nm { font-weight: 700; font-size: .85rem; color: var(--tx); }
.z-chprod .pr { color: var(--z-indigo); font-weight: 700; font-size: .88rem; }
.z-chprod .add { background: var(--z-grad); color: #fff; border: none; border-radius: 999px; padding: .35rem .75rem; font-size: .72rem; font-weight: 700; white-space: nowrap; }
.z-chat__input { display: flex; gap: .5rem; padding: .7rem; background: #fff; border-top: 1px solid var(--line); align-items: center; }
.z-chat__input .box { flex: 1; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: .5rem .9rem; color: var(--tx-3); font-size: .84rem; }
.z-chat__input .snd { width: 38px; height: 38px; border-radius: 50%; background: var(--z-grad); color: #fff; border: none; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ---------- ANALİTİK: Gerçek-zamanlı hero (deploy /admin/analytics/realtime paritesi) ---------- */
.z-rt-hero {
    position: relative; border-radius: 24px; overflow: hidden; color: #e9eefb;
    background:
        radial-gradient(1200px 500px at 78% 20%, rgba(56,189,248,.18), transparent 60%),
        radial-gradient(900px 500px at 20% 90%, rgba(139,92,246,.20), transparent 60%),
        linear-gradient(135deg, #0b1120 0%, #131a30 45%, #1a1340 100%);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 24px 60px -20px rgba(15,23,42,.55);
}
.z-rt-glow { position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(600px 300px at 80% 30%, rgba(99,102,241,.10), transparent 70%); }
.z-rt-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .8fr; align-items: center; }
.z-rt-body { padding: 2rem 1.2rem 2rem 2rem; }
.z-rt-chip { display: inline-flex; align-items: center; gap: 7px; font-size: .72rem; font-weight: 700; letter-spacing: .12em;
    color: #bbf7d0; background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.30); padding: .3rem .7rem; border-radius: 999px; }
.z-rt-chip-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; display: inline-block; animation: zblink 1.8s infinite; }
.z-rt-label { font-size: .92rem; color: rgba(233,238,251,.65); margin: 1rem 0 0; }
.z-rt-count {
    font-family: var(--ff-display); font-size: clamp(2.6rem, 6vw, 4.2rem); font-weight: 800; line-height: 1; letter-spacing: -.04em;
    background: linear-gradient(180deg, #ffffff 0%, #b9c6ff 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    font-variant-numeric: tabular-nums; margin-top: .15rem;
}
.z-rt-sub { color: rgba(233,238,251,.55); font-size: .88rem; margin: .35rem 0 0; }
.z-rt-spark { height: 64px; margin-top: 1rem; }
.z-rt-spark svg { width: 100%; height: 100%; display: block; }
.z-rt-spark-label { font-size: .7rem; color: rgba(233,238,251,.45); margin: .35rem 0 0; }
.z-rt-mini { display: grid; grid-template-columns: repeat(3, 1fr); gap: .55rem; margin-top: 1.3rem; }
.z-rt-m { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: .7rem .7rem; }
.z-rt-m .v { font-size: 1.2rem; font-weight: 700; line-height: 1; color: #fff; font-variant-numeric: tabular-nums; }
.z-rt-m .l { font-size: .6rem; color: rgba(233,238,251,.5); margin-top: .35rem; text-transform: uppercase; letter-spacing: .05em; }
.z-rt-globe-wrap {
    position: relative; aspect-ratio: 1 / 1; width: 100%; max-width: 300px; margin: 0 auto;
    display: flex; align-items: center; justify-content: center; padding: 1rem 1.4rem 1rem 0;
}
.z-rt-globe { width: 100%; height: 100%; aspect-ratio: 1; opacity: 0; transition: opacity .7s ease; touch-action: none; cursor: grab; }
.z-rt-globe.ready { opacity: 1; }
.z-rt-globe-fallback {
    position: absolute; inset: 1rem 1.4rem 1rem 0; border-radius: 50%; display: none;
    align-items: center; justify-content: center; color: rgba(255,255,255,.5); font-size: 2.4rem;
    background:
        radial-gradient(120px 120px at 35% 30%, rgba(96,165,250,.35), transparent 60%),
        radial-gradient(circle at 50% 50%, #1e2a4a 0%, #111a30 70%, #0b1120 100%);
    box-shadow: inset 0 0 60px rgba(56,189,248,.18), 0 0 70px rgba(56,189,248,.10);
}
.z-rt-globe-badge {
    position: absolute; bottom: .15rem; left: 50%; transform: translateX(-50%);
    display: inline-flex; align-items: center; gap: .3rem; white-space: nowrap;
    font-size: .68rem; font-weight: 600; color: #cdd7f5;
    background: rgba(13,20,38,.6); border: 1px solid rgba(255,255,255,.10);
    padding: .26rem .62rem; border-radius: 999px; backdrop-filter: blur(6px);
}
@media (max-width: 767px) {
    .z-rt-grid { grid-template-columns: 1fr; }
    .z-rt-globe-wrap { max-width: 250px; padding: .5rem 0 0; order: -1; }
    .z-rt-body { padding: 1.6rem 1.5rem; }
}

/* ---------- STEPS ---------- */
.z-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; counter-reset: zstep; }
.z-step { padding: 1.5rem; border-radius: var(--r-lg); border: 1px solid var(--line); background: #fff; position: relative; display: flex; align-items: flex-start; gap: 1.15rem; }
.z-step .num { width: 52px; height: 52px; border-radius: 15px; background: var(--z-grad); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-weight: 800; font-size: 1.4rem; flex-shrink: 0; box-shadow: var(--sh-brand); }
.z-step__c { min-width: 0; }
.z-step h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .4rem; }
.z-step p { color: var(--tx-2); font-size: .95rem; }

/* ---------- PRICING ---------- */
.z-plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; align-items: stretch; }
.z-plan { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.75rem; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.z-plan:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.z-plan--feat { border: 2px solid transparent; background:
    linear-gradient(#fff, #fff) padding-box,
    var(--z-grad) border-box; position: relative; box-shadow: var(--sh-lg); }
.z-plan--feat .tagpop { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--z-grad); color: #fff; font-size: .66rem; font-weight: 800; letter-spacing: .08em; padding: .28rem .85rem; border-radius: 999px; }
.z-plan h3 { font-size: 1.22rem; font-weight: 700; margin-bottom: .2rem; }
.z-plan .d { color: var(--tx-3); font-size: .85rem; margin-bottom: 1rem; }
.z-plan .pr { font-family: var(--ff-display); font-weight: 800; font-size: 2.4rem; line-height: 1; }
.z-plan .pr small { font-size: .9rem; color: var(--tx-3); font-weight: 500; }
.z-plan ul { list-style: none; padding: 0; margin: 1.25rem 0; flex: 1; display: grid; gap: .55rem; }
.z-plan ul li { display: flex; gap: .55rem; align-items: flex-start; color: var(--tx-2); font-size: .9rem; }
.z-plan ul li i { color: var(--z-indigo); margin-top: .15rem; }
/* fiyatlandırma — promo + çizik + ilk-5-ücretsiz rozeti */
.z-pricing-promo { display: flex; align-items: center; gap: .85rem; max-width: 760px; margin: 0 auto 2.5rem; padding: 1rem 1.4rem; border-radius: var(--r); background: var(--z-grad-soft); border: 1px solid var(--line-2); color: var(--tx); font-size: .98rem; }
.z-pricing-promo i { font-size: 1.7rem; color: var(--z-indigo); flex-shrink: 0; }
.z-plan .pr s { color: var(--tx-3); text-decoration-thickness: 2px; }
.z-plan__free { display: inline-flex; align-items: center; gap: .4rem; align-self: flex-start; margin-top: .65rem; background: rgba(22,179,100,.12); color: var(--ok); font-weight: 700; font-size: .8rem; padding: .34rem .72rem; border-radius: 999px; }
.z-plan__free--muted { background: var(--paper-2); color: var(--tx-2); }
.z-pricing-note { max-width: 760px; margin: 2.25rem auto 0; text-align: center; color: var(--tx-3); font-size: .86rem; display: flex; gap: .5rem; align-items: flex-start; justify-content: center; }
.z-pricing-note i { color: var(--z-indigo); margin-top: .15rem; flex-shrink: 0; }

/* ---------- FAQ ---------- */
.z-faq { max-width: 800px; margin: 0 auto; display: grid; gap: .85rem; }
.z-faq details { border: 1px solid var(--line); border-radius: var(--r); background: #fff; overflow: hidden; transition: border-color .15s ease; }
.z-faq details[open] { border-color: var(--line-2); box-shadow: var(--sh-sm); }
.z-faq summary { list-style: none; cursor: pointer; padding: 1.1rem 1.25rem; font-family: var(--ff-display); font-weight: 700; font-size: 1.02rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.z-faq summary::-webkit-details-marker { display: none; }
.z-faq summary i { color: var(--z-indigo); transition: transform .2s ease; flex-shrink: 0; }
.z-faq details[open] summary i { transform: rotate(45deg); }
.z-faq .a { padding: 0 1.25rem 1.2rem; color: var(--tx-2); }

/* ---------- CTA band ---------- */
.z-cta { border-radius: var(--r-xl); padding: clamp(2.75rem, 5vw, 4rem) 2rem; text-align: center; position: relative; overflow: hidden;
    background: radial-gradient(130% 150% at 0% 0%, #4f46e5 0%, #4338ca 38%, var(--ink) 85%); color: #fff; }
.z-cta::after { content: ''; position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px); background-size: 24px 24px; }
.z-cta h2 { color: #fff; font-weight: 800; font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: .8rem; position: relative; }
.z-cta p { color: rgba(255,255,255,.85); margin-bottom: 1.9rem; position: relative; font-size: 1.05rem; }
.z-cta .z-btn { position: relative; }

/* ---------- FOOTER ---------- */
.z-foot { background: var(--ink); color: rgba(255,255,255,.66); padding: 3.5rem 0 2rem; }
.z-foot__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.z-foot__brand img { height: 30px; margin-bottom: 1rem; }
.z-foot__brand p { color: rgba(255,255,255,.5); font-size: .9rem; max-width: 30ch; }
.z-foot h5 { color: #fff; font-family: var(--ff-display); font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; font-weight: 700; }
.z-foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.z-foot ul a { color: rgba(255,255,255,.66); font-size: .92rem; transition: color .15s ease; }
.z-foot ul a:hover { color: #fff; }
.z-foot__social { display: flex; gap: .6rem; margin-top: 1rem; }
.z-foot__social a { width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.05rem; transition: background .15s ease, transform .15s ease; }
.z-foot__social a:hover { background: var(--z-indigo); transform: translateY(-2px); }
.z-foot__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .85rem; }

/* =====================================================================
   MODULES & INTEGRATIONS sayfası
   ===================================================================== */
.zm-hero { padding: 4.5rem 0 1rem; text-align: center; position: relative; overflow: hidden; }
.zm-hero::before { content: ''; position: absolute; inset: -30% 0 auto 0; height: 520px; z-index: -1;
    background: radial-gradient(50% 60% at 50% 0%, rgba(79,70,229,.12), transparent 65%); }
.zm-hero h1 { font-weight: 800; font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin: .8rem auto 1rem; max-width: 18ch; }
.zm-hero p { color: var(--tx-2); font-size: 1.12rem; max-width: 54ch; margin: 0 auto; }

/* segment tabs (Modüller / Entegrasyonlar) */
.zm-tabs { display: inline-flex; background: var(--paper-2); border-radius: 999px; padding: .35rem; gap: .25rem; margin: 2.25rem auto 0; }
.zm-tab { border: none; background: transparent; font-family: var(--ff-display); font-weight: 700; font-size: .92rem; color: var(--tx-2); padding: .6rem 1.4rem; border-radius: 999px; cursor: pointer; transition: all .18s ease; display: inline-flex; align-items: center; gap: .5rem; }
.zm-tab .cnt { font-size: .72rem; background: rgba(0,0,0,.06); border-radius: 999px; padding: .05rem .5rem; font-weight: 700; }
.zm-tab.active { background: #fff; color: var(--z-indigo); box-shadow: var(--sh-sm); }
.zm-tab.active .cnt { background: var(--z-grad-soft); color: var(--z-indigo); }

/* category filter chips */
.zm-filter { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin: 2rem auto 2.5rem; max-width: 900px; }
.zm-chip { border: 1px solid var(--line-2); background: #fff; color: var(--tx-2); border-radius: 999px; padding: .45rem 1rem; font-size: .85rem; font-weight: 600; cursor: pointer; transition: all .15s ease; }
.zm-chip:hover { border-color: var(--z-indigo); color: var(--z-indigo); }
.zm-chip.active { background: var(--z-grad); color: #fff; border-color: transparent; }

/* card grid */
.zm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.35rem; }
.zm-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; display: flex; flex-direction: column; height: 100%; }
.zm-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: transparent; }
.zm-card__top { display: flex; align-items: flex-start; gap: .9rem; margin-bottom: 1rem; }
.zm-card__ico { width: 54px; height: 54px; border-radius: 15px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.65rem; background: var(--z-grad-soft); color: var(--z-indigo); }
.zm-card__t { flex: 1; min-width: 0; }
.zm-card__t h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: .15rem; }
.zm-card__cat { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--tx-3); }
.zm-card__core { font-size: .64rem; font-weight: 800; letter-spacing: .04em; color: var(--z-indigo); background: var(--z-grad-soft); border-radius: 999px; padding: .18rem .5rem; }
.zm-card__desc { color: var(--tx-2); font-size: .92rem; flex: 1; }
.zm-card__feats { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .4rem; }
.zm-card__feats li { display: flex; gap: .5rem; align-items: flex-start; font-size: .85rem; color: var(--tx-2); }
.zm-card__feats li i { color: var(--ok); margin-top: .18rem; flex-shrink: 0; }
.zm-card__prov { margin-top: 1rem; padding-top: .9rem; border-top: 1px solid var(--line); font-size: .8rem; color: var(--tx-3); display: flex; align-items: center; gap: .4rem; }

/* skeleton + states */
.zm-skel { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem; }
.zm-skel .l { height: 12px; border-radius: 6px; background: linear-gradient(90deg, var(--paper-2) 25%, #f4f7fc 50%, var(--paper-2) 75%); background-size: 200% 100%; animation: zsh 1.3s infinite; margin-bottom: .7rem; }
.zm-skel .l.ico { height: 54px; width: 54px; border-radius: 15px; margin-bottom: 1rem; }
.zm-skel .l.w60 { width: 60%; } .zm-skel .l.w90 { width: 90%; } .zm-skel .l.w40 { width: 40%; }
@keyframes zsh { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.zm-state { text-align: center; padding: 4rem 1rem; color: var(--tx-2); grid-column: 1 / -1; }
.zm-state i { font-size: 2.6rem; color: var(--tx-3); display: block; margin-bottom: .8rem; }
.zm-hidden { display: none !important; }

/* ---------- reveal anim ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 991px) {
    .z-hero { padding-top: 4rem; }
    .z-hero__visual { max-width: 680px; margin: 2.6rem auto -48px; }
    .z-editor__grid { grid-template-columns: 1fr; gap: 2rem; }
    .z-editor { clip-path: none; }
    .z-bento { grid-template-columns: repeat(4, 1fr); }
    .z-feat, .z-feat--hero, .z-feat--wide, .z-feat--half { grid-column: span 2; }
    .z-foot__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
    .z-nav__links, .z-nav__cta { display: none; }
    .z-nav__burger { display: flex; }
    .z-nav__mobile { display: none; border-top: 1px solid var(--line); background: #fff; }
    .z-nav__mobile.open { display: block; animation: zdrop .2s ease; }
    .z-nav__mobile .inner { display: flex; flex-direction: column; gap: .25rem; padding: 1rem 1.5rem 1.5rem; }
    .z-nav__mobile a { padding: .7rem .25rem; font-weight: 600; color: var(--tx); border-bottom: 1px solid var(--line); }
    .z-nav__mobile .z-btn { margin-top: .75rem; }
    @keyframes zdrop { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; } }
    .z-section { padding: 4rem 0; }
    .z-stats { grid-template-columns: repeat(2, 1fr); }
    .z-steps { grid-template-columns: 1fr; }
    .z-plans { grid-template-columns: 1fr 1fr; }
    .zm-grid { grid-template-columns: 1fr 1fr; }
    .z-float { display: none; }
}
@media (max-width: 560px) {
    .z-bento { grid-template-columns: 1fr; }
    .z-feat, .z-feat--hero, .z-feat--wide, .z-feat--half { grid-column: span 1; }
    .z-stats { grid-template-columns: 1fr 1fr; }
    .z-plans { grid-template-columns: 1fr; }
    .zm-grid { grid-template-columns: 1fr; }
    .z-foot__grid { grid-template-columns: 1fr; }
    .z-hero { padding-top: 3rem; }
    .z-hero .sub { font-size: 1.02rem; }
    .z-hero .cta-row .z-btn-primary,
    .z-hero .cta-row .z-hero__ghost { width: 100%; justify-content: center; }
    .z-hero__visual { margin: 2.2rem auto -40px; }
    .z-hero__proof { flex-direction: column; gap: .9rem; }
}
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; }
    .z-live i { animation: none; }
    html { scroll-behavior: auto; }
}
