@import url("fonts.css");

/* =========================================================================
   ProMenu — Tasarım Sistemi
   Marka mercanı #E55038 · sıcak-beyaz zemin · net grotesk tipografi
   Boldness tek yerde: mercan vurgu + tek orkestre hareket (AI slider)
   ========================================================================= */

:root {
    /* Renk */
    --ground:       #FAF9F7;   /* sıcak near-white (krem klişesi DEĞİL) */
    --surface:      #FFFFFF;
    --surface-2:    #F4F1ED;   /* hafif gri-bej panel */
    --text:         #1C1A19;
    --muted:        #6E655F;
    --faint:        #9A918B;
    --line:         #ECE7E2;
    --line-strong:  #DED7D0;

    --accent:       #E55038;   /* marka mercanı */
    --accent-ink:   #C13E29;   /* hover / koyu */
    --accent-soft:  #FCE9E4;   /* açık mercan wash */
    --accent-tint:  #FBF3F0;

    --ink:          #1E1815;   /* koyu bantlar (footer/CTA) */
    --on-ink:       #F3EEEA;
    --on-ink-muted: #B5A89F;

    /* Tipografi */
    --font-display: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
    --font-body:    "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-mono:    "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

    /* Ölçek */
    --step--1: clamp(0.82rem, 0.8rem + 0.1vw, 0.88rem);
    --step-0:  clamp(1rem, 0.97rem + 0.15vw, 1.075rem);
    --step-1:  clamp(1.2rem, 1.12rem + 0.4vw, 1.4rem);
    --step-2:  clamp(1.45rem, 1.3rem + 0.7vw, 1.85rem);
    --step-3:  clamp(1.8rem, 1.55rem + 1.2vw, 2.6rem);
    --step-4:  clamp(1.95rem, 1.4rem + 2.4vw, 3.6rem);
    --step-5:  clamp(2.1rem, 1.4rem + 3.4vw, 4.6rem);

    /* Boşluk / yapı */
    --container: 1180px;
    --container-narrow: 760px;
    --radius:    18px;
    --radius-sm: 12px;
    --radius-lg: 28px;
    --shadow-sm: 0 1px 2px rgba(28,26,25,.04), 0 2px 6px rgba(28,26,25,.04);
    --shadow:    0 4px 16px rgba(28,26,25,.06), 0 12px 32px rgba(28,26,25,.06);
    --shadow-lg: 0 18px 50px rgba(28,26,25,.12);
    --ring:      0 0 0 3px rgba(229,80,56,.28);

    --ease: cubic-bezier(.22,.61,.36,1);
}

/* ----------------------------- Reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
    font-family: var(--font-body);
    font-size: var(--step-0);
    line-height: 1.6;
    color: var(--text);
    background: var(--ground);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--accent); color: #fff; }

/* ----------------------------- Tipografi ----------------------------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -.02em; color: var(--text); overflow-wrap: break-word; }
h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); letter-spacing: -.015em; }
h4 { font-size: var(--step-1); letter-spacing: -.01em; }
p { text-wrap: pretty; }
strong { font-weight: 700; }

.eyebrow {
    font-family: var(--font-mono);
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent-ink);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}
.eyebrow::before {
    content: "";
    width: 1.6rem; height: 1px;
    background: var(--accent);
}
.eyebrow.is-plain::before { display: none; }

.lead { font-size: var(--step-1); color: var(--muted); line-height: 1.55; max-width: 60ch; }

/* ----------------------------- Düzen ----------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }
.container.narrow { max-width: var(--container-narrow); }
.section { padding-block: clamp(3.5rem, 2rem + 7vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }
.section-head { max-width: 64ch; margin-bottom: clamp(2rem, 1rem + 3vw, 3.25rem); display: grid; gap: 1rem; }
.section-head.center { margin-inline: auto; text-align: center; justify-items: center; }
.section-head.center .lead { margin-inline: auto; }

.grid { display: grid; gap: 1.5rem; }
.grid > * { min-width: 0; }
/* İki sütunlu, mobilde tek sütuna düşen blok */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: center; }
.split > * { min-width: 0; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
/* Fiyat planları — sayıdan bağımsız responsive */
.plan-grid { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
.plan-grid > * { flex: 1 1 300px; max-width: 440px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

/* ----------------------------- Butonlar ----------------------------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
    padding: .8rem 1.4rem; border-radius: 999px;
    font-weight: 600; font-size: var(--step-0); line-height: 1;
    transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease);
    white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(229,80,56,.28); }
.btn--primary:hover { background: var(--accent-ink); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(229,80,56,.34); }
.btn--ghost { background: var(--surface); color: var(--text); border: 1px solid var(--line-strong); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-ink); transform: translateY(-2px); }
.btn--ink { background: var(--ink); color: var(--on-ink); }
.btn--ink:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--lg { padding: 1rem 1.7rem; font-size: var(--step-1); }
.btn--block { width: 100%; }

/* Dikkat çekici CTA — periyodik ışıltı + çok hafif nabız (hover'da durur) */
.btn--cta { position: relative; overflow: hidden; isolation: isolate; animation: ctaBreath 4.8s ease-in-out infinite; }
.btn--cta::after {
    content: ""; position: absolute; top: 0; bottom: 0; left: -80%; width: 55%; z-index: 1;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,.5), transparent);
    transform: skewX(-18deg); pointer-events: none;
    animation: ctaShine 4.8s ease-in-out infinite;
}
.btn--cta:hover { animation: none; }
@keyframes ctaBreath { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.035); } }
@keyframes ctaShine { 0% { left: -80%; } 22% { left: 135%; } 100% { left: 135%; } }
@media (prefers-reduced-motion: reduce) {
    .btn--cta { animation: none; }
    .btn--cta::after { display: none; }
}
.btn--on-ink { background: #fff; color: var(--ink); }
.btn--on-ink:hover { background: var(--accent); color: #fff; }

/* ----------------------------- Rozetler ----------------------------- */
.badge {
    display: inline-flex; align-items: center; gap: .45rem;
    padding: .4rem .8rem; border-radius: 999px;
    font-size: var(--step--1); font-weight: 600;
    background: var(--accent-soft); color: var(--accent-ink);
}
.badge--line { background: var(--surface); border: 1px solid var(--line-strong); color: var(--muted); }
.badge--ink { background: rgba(255,255,255,.1); color: var(--on-ink); }
.pill-dot { width: .5rem; height: .5rem; border-radius: 50%; background: var(--accent); }

/* Yönetmelik uyum rozeti — yeşil (onay/güven), canlı nabız: yeşil hale + noktada radar pingi */
.badge--compliance {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, #E7F7EC, #D4EEDE);
    color: #15703C; border: 1px solid #BBE3C8; font-weight: 700;
    animation: compGlow 2.8s ease-in-out infinite;
}
.badge--compliance .pill-dot { position: relative; background: #1EA85A; }
.badge--compliance .pill-dot::after {
    content: ""; position: absolute; inset: 0; border-radius: 50%; background: #1EA85A;
    animation: compPing 2s ease-out infinite;
}
@keyframes compPing { 0% { transform: scale(1); opacity: .5; } 70% { transform: scale(2.4); opacity: 0; } 100% { opacity: 0; } }
@keyframes compGlow { 0%, 100% { box-shadow: 0 0 0 0 rgba(30,168,90,0); } 50% { box-shadow: 0 0 0 5px rgba(30,168,90,.16); } }
@media (prefers-reduced-motion: reduce) {
    .badge--compliance { animation: none; }
    .badge--compliance .pill-dot::after { display: none; }
}

/* ----------------------------- Header ----------------------------- */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: color-mix(in srgb, var(--ground) 86%, transparent);
    backdrop-filter: saturate(160%) blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); background: color-mix(in srgb, var(--ground) 94%, transparent); }
.nav { display: flex; align-items: center; gap: 2rem; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; letter-spacing: -.03em; flex: none; }
.brand-mark { width: 32px; height: 32px; }
.brand-logo { height: 38px; width: auto; flex: none; display: block; }
.ver-badge { font-family: var(--font-mono); font-size: .68rem; font-weight: 600; letter-spacing: .02em; color: var(--accent-ink); background: var(--accent-soft); padding: .2rem .5rem; border-radius: 999px; line-height: 1; transition: background .2s, color .2s; align-self: center; }
.ver-badge:hover { background: var(--accent); color: #fff; }
@media (max-width: 980px) { .ver-badge { display: none; } }
.site-footer .brand-logo { height: 42px; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; margin-left: auto; }
.nav-links a { font-size: .98rem; font-weight: 500; color: var(--muted); transition: color .2s; position: relative; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: .75rem; }
.nav-toggle { display: none; }

/* Açılır menü (Özellikler) */
.nav-dd { position: relative; align-self: stretch; display: flex; align-items: center; }
.nav-dd-trigger { display: inline-flex; align-items: center; gap: .32rem; font-size: .98rem; font-weight: 500; color: var(--muted); transition: color .2s; cursor: pointer; }
.nav-dd-trigger:hover, .nav-dd-trigger[aria-current="page"], .nav-dd:hover .nav-dd-trigger, .nav-dd:focus-within .nav-dd-trigger { color: var(--text); }
.nav-dd-chev { transition: transform .2s var(--ease); }
.nav-dd:hover .nav-dd-chev, .nav-dd:focus-within .nav-dd-chev { transform: rotate(180deg); }
.nav-dd-menu {
    position: absolute; top: 100%; left: 50%;
    min-width: 264px; padding: .4rem;
    background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius-sm); box-shadow: var(--shadow);
    display: flex; flex-direction: column; gap: .1rem;
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateX(-50%) translateY(-4px);
    transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
    z-index: 60;
}
.nav-dd:hover .nav-dd-menu, .nav-dd:focus-within .nav-dd-menu {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.nav-dd-menu a { display: flex; align-items: flex-start; gap: .65rem; padding: .6rem .7rem; border-radius: 10px; transition: background .15s var(--ease); }
.nav-dd-menu a:hover { background: var(--accent-soft); }
.nav-dd-menu a strong { display: block; font-weight: 600; font-size: .92rem; color: var(--text); }
.nav-dd-menu a small { display: block; font-size: .78rem; color: var(--faint); margin-top: .12rem; line-height: 1.35; }
.nav-dd-ic { width: 20px; height: 20px; flex: none; color: var(--accent); margin-top: .15rem; }
@media (max-width: 980px) {
    .nav { gap: 1rem; }
    .nav-links, .nav-cta .btn--ghost { display: none; }
    .nav-toggle { display: inline-flex; margin-left: auto; padding: .5rem; }
    .nav-toggle svg { width: 26px; height: 26px; }
}
/* Küçük telefonlarda header CTA'yı gizle (logo + hamburger sade kalsın; CTA mobil menü + alt barda mevcut) */
@media (max-width: 560px) {
    .nav-cta { display: none; }
}
/* Mobil menü */
.mobile-menu { display: none; }
.mobile-menu.is-open { display: block; }
.mobile-menu {
    position: fixed; inset: 72px 0 0; z-index: 49;
    background: var(--ground); padding: 1.5rem;
    overflow-y: auto;
}
.mobile-menu a:not(.btn) { display: block; padding: .9rem 0; font-size: 1.15rem; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-menu a.mm-sub { padding-left: 1.1rem; font-size: 1rem; font-weight: 500; color: var(--muted); }
.mobile-menu a.mm-sub::before { content: "↳"; margin-right: .5rem; color: var(--accent); }
.mobile-menu .btn { display: flex; margin-top: 1.25rem; }

/* ----------------------------- Hero ----------------------------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(1.25rem, 0.5rem + 3vw, 2.75rem) clamp(1.5rem, 1rem + 2vw, 2.75rem); }
/* Hero hemen ardındaki AI showcase ile araları çok açılmasın */
#ai { padding-top: clamp(2rem, 1rem + 3vw, 3.5rem); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; column-gap: clamp(2rem, 1rem + 4vw, 4rem); align-items: center; }
.hero-grid > * { min-width: 0; }
/* Masaüstü: metin (üst) + CTA (alt) solda; telefon sağda iki satırı kaplar */
.hero-copy { grid-column: 1; grid-row: 1; }
.hero-phone-wrap { grid-column: 2; grid-row: 1 / 3; align-self: center; }
.hero-cta { grid-column: 1; grid-row: 2; }
/* Mobil: başlık → telefon → CTA sırası (dikkat çeken görsel başlığın hemen altında) */
@media (max-width: 920px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy, .hero-phone-wrap, .hero-cta { grid-column: 1; grid-row: auto; }
    .hero-phone-wrap { margin-block: 1.25rem; }
    .hero-cta .hero-actions { margin-top: 0; }
}
.hero h1 { margin-block: 1.25rem 1.5rem; }
.hero h1 .hl { color: var(--accent); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; margin-top: 2.25rem; padding-top: 1.75rem; border-top: 1px solid var(--line); }
.hero-trust .stat { display: grid; }
.hero-trust .stat b { font-family: var(--font-display); font-size: var(--step-2); line-height: 1; }
.hero-trust .stat span { font-size: var(--step--1); color: var(--muted); }
.hero-trust .divider { width: 1px; height: 2.4rem; background: var(--line-strong); }

/* "2 yıldır aynı fiyat / Zam yok" — yıldızlı, dikkat çekici fiyat rozeti */
.price-lock {
    display: inline-flex; align-items: center; gap: .55rem;
    margin-top: 1.5rem; padding: .45rem .75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #FFF6DD, #FBE9B8);
    border: 1px solid #EFD485; color: #8A5A06; font-size: var(--step--1);
    box-shadow: 0 5px 16px rgba(212,154,40,.22);
}
.price-lock .pl-text { display: inline-flex; align-items: center; gap: .5rem; }
.price-lock strong { font-weight: 800; color: #6E4604; }
.price-lock .pl-tag {
    padding: .14rem .5rem; border-radius: 999px; background: #E8930F; color: #fff;
    font-weight: 800; font-size: .66rem; text-transform: uppercase; letter-spacing: .04em;
    box-shadow: 0 2px 6px rgba(232,147,15,.4);
}
.price-lock .pl-star { display: inline-flex; color: #EBA50C; }
.price-lock .pl-star svg { width: 17px; height: 17px; fill: currentColor; }
.price-lock .pl-star--1 { animation: plTwinkle 2.4s ease-in-out infinite; }
.price-lock .pl-star--2 { animation: plTwinkle 2.4s ease-in-out .8s infinite; }
@keyframes plTwinkle { 0%, 100% { transform: scale(.82) rotate(0); opacity: .6; } 50% { transform: scale(1.2) rotate(18deg); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .price-lock .pl-star { animation: none; } }

/* Telefon maketi */
.phone {
    position: relative; width: min(300px, 78%); margin-inline: auto;
    aspect-ratio: 300 / 610;
    background: var(--ink); border-radius: 44px; padding: 11px;
    box-shadow: var(--shadow-lg);
}
.phone::before { content: ""; position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 92px; height: 22px; background: var(--ink); border-radius: 999px; z-index: 3; }
.phone-screen { position: relative; height: 100%; width: 100%; border-radius: 34px; overflow: hidden; background: var(--surface); }
.phone-glow { position: absolute; inset: -12% -20% auto; height: 60%; background: radial-gradient(closest-side, rgba(229,80,56,.18), transparent); filter: blur(20px); z-index: -1; }

/* Hazır iPhone mockup görseli (çerçeve görselin içinde) */
.phone-shot { position: relative; width: min(300px, 78%); margin-inline: auto; }
.phone-shot-img { display: block; width: 100%; height: auto; filter: drop-shadow(0 20px 42px rgba(28,26,25,.18)); }

/* MacBook mockup (yönetim paneli ekran görüntüsü) */
.macbook { width: 100%; max-width: 560px; margin-inline: auto; }
.macbook-screen { background: #1E1815; border-radius: 16px 16px 6px 6px; padding: 11px; box-shadow: var(--shadow-lg); }
.macbook-screen img { display: block; width: 100%; border-radius: 5px; }
.macbook-base { position: relative; height: 13px; margin: 0 -7%; background: linear-gradient(180deg, #d2ccc5 0%, #b4ada5 55%, #9a938b 100%); border-radius: 0 0 13px 13px; box-shadow: inset 0 2px 4px rgba(255,255,255,.45); }
.macbook-base::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 16%; height: 6px; background: #8d867e; border-radius: 0 0 7px 7px; }

/* Tarayıcı çerçeveli ekran görüntüsü (özellik detay) */
.shot { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-lg); background: var(--surface); }
.shot-bar { display: flex; align-items: center; gap: .45rem; padding: .6rem .85rem; background: var(--surface-2); border-bottom: 1px solid var(--line); }
.shot-bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-strong); }
.shot-bar i:nth-child(1) { background: #FF5F57; }
.shot-bar i:nth-child(2) { background: #FEBC2E; }
.shot-bar i:nth-child(3) { background: #28C840; }
.shot-url { margin-left: .55rem; flex: 1; height: 17px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); }
.shot-img { display: block; width: 100%; max-height: 460px; object-fit: cover; object-position: top; }

/* Süzülen QR demo kartı — önizlemenin sağ alt köşesi */
.hero-qr {
    position: absolute; right: -42px; bottom: 4px; z-index: 4;
    width: 140px; padding: .7rem .7rem .6rem; text-align: center;
    background: #fff; border: 1px solid var(--line); border-radius: 16px;
    box-shadow: var(--shadow-lg);
    animation: heroQrFloat 4s ease-in-out infinite;
    transition: box-shadow .25s var(--ease);
}
.hero-qr img { display: block; width: 100%; height: auto; border-radius: 8px; margin-bottom: .5rem; }
.hero-qr-text { display: block; font-size: .72rem; line-height: 1.3; color: var(--muted); }
.hero-qr-text strong { color: var(--text); font-weight: 700; }
.hero-qr-link { display: inline-flex; align-items: center; gap: .2rem; justify-content: center; margin-top: .3rem; font-size: .72rem; font-weight: 700; color: var(--accent-ink); }
.hero-qr:hover { box-shadow: 0 24px 60px rgba(28,26,25,.2); }
@keyframes heroQrFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (max-width: 920px) { .hero-qr { right: -10px; bottom: 6px; width: 124px; } }
@media (prefers-reduced-motion: reduce) { .hero-qr { animation: none; } }

/* ----------------------------- Önce/Sonra slider (AI) ----------------------------- */
.ba {
    position: relative; border-radius: var(--radius); overflow: hidden;
    aspect-ratio: 4 / 3; user-select: none; box-shadow: var(--shadow); background: var(--surface-2);
    touch-action: none;
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba .after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba-label { position: absolute; bottom: .8rem; padding: .3rem .7rem; border-radius: 999px; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; background: rgba(30,24,21,.72); color: #fff; backdrop-filter: blur(4px); }
.ba-label.is-before { left: .8rem; }
.ba-label.is-after { right: .8rem; background: var(--accent); }
@media (max-width: 600px) { .ba-note { display: none; } }
.ba-handle { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 2px; background: #fff; transform: translateX(-1px); box-shadow: 0 0 0 1px rgba(0,0,0,.08); }
.ba-handle::after { content: "⟺"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 38px; height: 38px; display: grid; place-items: center; background: #fff; color: var(--accent); border-radius: 50%; box-shadow: var(--shadow); font-size: .9rem; }

/* ----------------------------- AI özellik kolonları + menü tarayıcı ----------------------------- */
.ai-feature-title { font-size: var(--step-2); line-height: 1.15; margin-block: .75rem .6rem; }

/* ===== Anasayfa AI showcase — koyu, vurucu band ===== */
.ai-show { position: relative; overflow: hidden; background: var(--ink); color: var(--on-ink-muted); padding-block: clamp(3.25rem, 2rem + 6vw, 6.5rem); }
.ai-show-glow { position: absolute; top: -22%; left: 50%; transform: translateX(-50%); width: 900px; max-width: 135%; height: 620px; background: radial-gradient(closest-side, rgba(229,80,56,.30), transparent 70%); pointer-events: none; }
.ai-show .container { position: relative; z-index: 1; }
.ai-show-head { max-width: 62ch; margin-inline: auto; text-align: center; }
.ai-show-head .eyebrow { justify-content: center; color: var(--accent); }
.ai-show-head h2 { color: #fff; font-size: var(--step-4); line-height: 1.08; margin-block: 1rem .85rem; }
.ai-show-head h2 .hl { background: linear-gradient(90deg, #FF8064, var(--accent)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.ai-show-head p { color: var(--on-ink-muted); font-size: var(--step-1); margin-inline: auto; max-width: 56ch; }

.ai-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem; margin-top: 1.85rem; }
.ai-chip { display: inline-flex; align-items: center; gap: .45rem; padding: .5rem .85rem; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.13); color: var(--on-ink); font-size: var(--step--1); font-weight: 600; }
.ai-chip svg { color: var(--accent); flex: none; }

.ai-show-demos { margin-top: clamp(2.5rem, 1.5rem + 3vw, 3.75rem); }
.ai-show .ai-feature .eyebrow { color: var(--accent); }
.ai-show .ai-feature-title { color: #fff; }
.ai-show .ai-feature > p { color: var(--on-ink-muted); margin-bottom: 1.5rem; }
.ai-show-cta { text-align: center; margin-top: clamp(2.5rem, 1.5rem + 3vw, 3.5rem); }

.scan {
    position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius);
    background: linear-gradient(155deg, var(--accent-tint) 0%, var(--surface) 72%);
    border: 1px solid var(--line); box-shadow: var(--shadow);
    display: flex; align-items: center; gap: clamp(.7rem, 2.5%, 1.3rem);
    padding: clamp(.9rem, 4%, 1.6rem);
}
.scan-paper { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: .7rem; }
.scan-cap { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--accent-ink); }
.scan-sheet { position: relative; overflow: hidden; background: #FBF6E9; border: 1px solid #EEE4CC; border-radius: 12px; padding: .9rem; display: flex; flex-direction: column; gap: .6rem; box-shadow: inset 0 1px 0 rgba(255,255,255,.6); }
.scan-line { display: flex; align-items: baseline; gap: .35rem; font-size: clamp(.68rem, 1.5vw, .82rem); }
.scan-name { min-width: 0; font-weight: 600; color: #5C4A2C; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.scan-dots { flex: 1 1 auto; min-width: 10px; align-self: center; border-bottom: 1.5px dotted #C9B589; height: .7em; }
.scan-price { flex: none; font-weight: 700; color: #876A2C; font-variant-numeric: tabular-nums; }
.scan-beam { position: absolute; left: 0; right: 0; top: -38%; height: 38%; pointer-events: none;
    background: linear-gradient(180deg, rgba(229,80,56,0), rgba(229,80,56,.14) 55%, rgba(229,80,56,.34));
    border-bottom: 2px solid var(--accent); box-shadow: 0 0 18px 3px rgba(229,80,56,.4);
    animation: scanBeam 5.5s cubic-bezier(.45,0,.55,1) infinite; }
@keyframes scanBeam { 0% { top: -38%; opacity: 0; } 7% { opacity: 1; } 40% { top: 100%; opacity: 1; } 47%, 100% { top: 100%; opacity: 0; } }
.scan-btn { align-self: flex-start; display: inline-flex; align-items: center; gap: .4rem; padding: .5rem .85rem; border-radius: 9px; background: var(--accent); color: #fff; font-size: clamp(.68rem, 1.5vw, .8rem); font-weight: 700; box-shadow: 0 5px 14px rgba(229,80,56,.32); }

.scan-phone { flex: 0 0 39%; max-width: 178px; align-self: center; }
.scan-screen { background: #15171C; border: 5px solid #0B0C0F; border-radius: 22px; padding: .7rem .55rem .6rem; box-shadow: 0 16px 34px rgba(11,12,15,.32); }
.scan-top { display: flex; justify-content: center; padding-bottom: .55rem; }
.scan-brand { font-family: var(--font-display); font-weight: 800; font-size: .9rem; color: #fff; letter-spacing: -.01em; }
.scan-brand span { color: var(--accent); }
.scan-tab { display: inline-block; margin-bottom: .55rem; padding: .15rem .65rem; border-radius: 999px; background: var(--accent); color: #fff; font-size: .58rem; font-weight: 700; }
.scan-items { display: flex; flex-direction: column; gap: .42rem; }
.scan-item { display: flex; align-items: center; gap: .5rem; min-width: 0; background: #1E2128; border: 1px solid #2A2F38; border-radius: 11px; padding: .38rem .45rem; opacity: 0; transform: translateY(9px); animation: scanItem 5.5s ease-in-out infinite; animation-delay: var(--d); }
.scan-thumb { flex: none; width: 27px; height: 27px; border-radius: 7px; background: #2A2F38; display: grid; place-items: center; font-size: .95rem; }
.scan-meta { display: flex; flex-direction: column; line-height: 1.18; min-width: 0; }
.scan-item-name { font-size: .64rem; font-weight: 600; color: #E9E7E4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.scan-item-price { font-size: .64rem; font-weight: 700; color: #34D17A; }
@keyframes scanItem { 0%, 12% { opacity: 0; transform: translateY(9px); } 21% { opacity: 1; transform: none; } 82% { opacity: 1; transform: none; } 92%, 100% { opacity: 0; transform: translateY(9px); } }

@media (max-width: 560px) {
    .scan { aspect-ratio: auto; gap: .55rem; padding: .85rem; }
    .scan-phone { flex-basis: 34%; }
    .scan-sheet { padding: .7rem; }
    .scan-dots { display: none; }
    .scan-price { margin-left: auto; padding-left: .4rem; }
}
@media (prefers-reduced-motion: reduce) {
    .scan-beam { display: none; }
    .scan-item { opacity: 1; transform: none; animation: none; }
}

/* ----------------------------- Kartlar ----------------------------- */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.card .ico { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; background: var(--accent-soft); color: var(--accent-ink); margin-bottom: 1.1rem; }
.card .ico svg { width: 24px; height: 24px; }
.card h3 { font-size: var(--step-1); margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .98rem; }
.card--ai .ico { background: linear-gradient(135deg, var(--accent), #F0805F); color: #fff; }
.feature-card { display: flex; flex-direction: column; }
.feat-top { display: flex; align-items: flex-start; justify-content: space-between; gap: .5rem; margin-bottom: 1.1rem; }
.feature-card .feat-top .ico { margin-bottom: 0; }
.feat-tags { display: flex; flex-direction: column; align-items: flex-end; gap: .3rem; }
.feat-tag { display: inline-flex; align-items: center; gap: .25rem; padding: .2rem .5rem; border-radius: 999px; font-size: .66rem; font-weight: 700; letter-spacing: .01em; white-space: nowrap; line-height: 1.1; }
.feat-tag svg { flex: none; }
.feat-tag--ai { background: linear-gradient(135deg, var(--accent-soft), #FBE3DC); color: var(--accent-ink); }
.feat-tag--ok { background: #ECF7EF; color: #1E6B3A; }
/* Özellik filtre çipleri gizleme */
.feature-card.is-hidden { display: none; }
.feature-more { margin-top: auto; padding-top: .9rem; display: inline-flex; align-items: center; gap: .35rem; font-weight: 600; font-size: .9rem; color: var(--accent-ink); opacity: 0; transform: translateX(-4px); transition: opacity .2s var(--ease), transform .2s var(--ease); }
.feature-card:hover .feature-more { opacity: 1; transform: none; }
@media (hover: none) { .feature-more { opacity: 1; } }

/* ----------------------------- Menü "fiyat satırı" motifi ----------------------------- */
.leader { display: flex; align-items: baseline; gap: .5rem; padding: .55rem 0; }
.leader .name { font-weight: 500; }
.leader .dots { flex: 1; border-bottom: 1px dotted var(--line-strong); transform: translateY(-.25rem); }
.leader .val { font-family: var(--font-mono); font-size: .9rem; color: var(--muted); }
.leader .val.check { color: var(--accent-ink); }

/* ----------------------------- Fiyat kartı ----------------------------- */
.price-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 1rem + 1.6vw, 2.4rem); box-shadow: var(--shadow); position: relative; }
.price-card.is-featured { border-color: var(--accent-soft); box-shadow: 0 22px 60px rgba(229,80,56,.16); }
.price-card.is-featured::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; background: linear-gradient(90deg, var(--accent), #F0805F); }
.price-card .plan-badge { position: absolute; top: -.8rem; left: clamp(1.6rem, 1rem + 1.6vw, 2.4rem); }
.price-amount { display: flex; align-items: baseline; gap: .35rem; margin-block: 1rem 1.25rem; }
.price-amount .num { font-family: var(--font-display); font-size: var(--step-5); line-height: 1; letter-spacing: -.04em; }
.price-amount .cur { font-family: var(--font-display); font-size: var(--step-2); }
.price-amount .per { color: var(--muted); font-size: var(--step-0); }
.price-features { display: grid; gap: .15rem; margin-block: 1.5rem; }
.price-features .leader .val.check::before { content: "✓"; }

/* Fiyat kutusu özellik listesi (ikon + başlık + açıklama, tek renk ikon) */
.plan-feats { display: grid; gap: .85rem; margin-block: 1.4rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.plan-feats .pf-item { display: flex; gap: .7rem; align-items: flex-start; }
.pf-ico { flex: none; width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent-ink); }
.pf-ico svg { width: 18px; height: 18px; }
.pf-text { display: flex; flex-direction: column; gap: .12rem; min-width: 0; }
.pf-title { font-weight: 700; font-size: .92rem; line-height: 1.25; color: var(--text); }
.pf-desc { font-size: .8rem; color: var(--muted); line-height: 1.4; }
.pf-tag { display: inline-block; margin-left: .15rem; padding: .04rem .42rem; border-radius: 999px; background: var(--accent); color: #fff; font-family: var(--font-mono); font-size: .58rem; font-weight: 700; letter-spacing: .03em; vertical-align: middle; }

/* Dahil özellik listesi (fiyat bölümü sol kolon) + AI kredi notu */
.incl-list { display: grid; gap: .6rem; margin-top: 1.25rem; }
.incl-list li { display: flex; align-items: center; gap: .55rem; font-weight: 600; }
.incl-list li svg { width: 20px; height: 20px; color: var(--accent-ink); flex: none; }
.incl-note { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.1rem; padding: .55rem .8rem; border-radius: 12px; background: var(--accent-tint); border: 1px solid var(--accent-soft); color: var(--muted); font-size: .82rem; line-height: 1.4; }
.incl-note svg { color: var(--accent-ink); flex: none; }
.incl-note strong { color: var(--text); }

/* ===== Yapay Zeka özellikleri sayfası ===== */
.ai-hero { position: relative; overflow: hidden; text-align: center; padding-block: clamp(2.5rem, 1.5rem + 5vw, 5.5rem) clamp(2.5rem, 1.5rem + 4vw, 4.5rem); background: linear-gradient(180deg, var(--accent-tint) 0%, var(--ground) 78%); }
.ai-hero-glow { position: absolute; top: -34%; left: 50%; transform: translateX(-50%); width: 760px; max-width: 130%; height: 540px; background: radial-gradient(closest-side, rgba(229,80,56,.16), transparent 72%); pointer-events: none; z-index: 0; }
.ai-hero .container { position: relative; z-index: 1; }
.ai-hero-inner { max-width: 58ch; margin-inline: auto; }
.ai-hero-inner h1 { font-size: var(--step-5); line-height: 1.05; margin-block: 1rem .9rem; }
.ai-hero-inner .lead { margin-inline: auto; }
.ai-hero .hero-actions { margin-top: 1.75rem; }
.ai-hero-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin-top: 1.85rem; }
.ai-hero-chips span { display: inline-flex; align-items: center; gap: .4rem; padding: .42rem .85rem; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font-size: var(--step--1); font-weight: 600; box-shadow: var(--shadow-sm); }
.ai-hero-chips svg { color: var(--accent-ink); flex: none; }

.ai-steps .step-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.85rem 1.75rem; box-shadow: var(--shadow-sm); }
.ai-steps .step-num { font-family: var(--font-mono); font-size: .82rem; font-weight: 700; letter-spacing: .08em; color: var(--accent-ink); }
.ai-steps .step-ico { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(135deg, var(--accent), #F0805F); color: #fff; margin: .75rem 0 1.1rem; }
.ai-steps .step-card h3 { font-size: var(--step-1); }
.ai-steps .step-card p { color: var(--muted); margin-top: .45rem; }

/* Fiyat süre seçici (1/2/3 yıl) */
.price-toggle { display: flex; gap: .3rem; background: var(--surface-2); border-radius: 999px; padding: .3rem; margin-bottom: 1.5rem; }
.price-toggle-btn { flex: 1; padding: .55rem .4rem; border-radius: 999px; font-weight: 600; font-size: var(--step-0); color: var(--muted); cursor: pointer; transition: background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease); }
.price-toggle-btn.is-active { background: var(--surface); color: var(--accent-ink); box-shadow: var(--shadow-sm); }
.price-panel[hidden] { display: none; }

/* Fiyat sayfası galerisi */
.gallery { display: flex; flex-direction: column; gap: .85rem; }
.gallery-main { border-radius: var(--radius-lg); overflow: hidden; background: var(--surface-2); border: 1px solid var(--line); aspect-ratio: 4 / 3; box-shadow: var(--shadow); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-empty { display: grid; place-items: center; color: var(--faint); text-align: center; font-size: var(--step--1); }
.gallery-empty span { display: grid; justify-items: center; gap: .4rem; }
.gallery-empty svg { color: var(--accent); opacity: .4; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: .55rem; }
.gthumb { border: 2px solid transparent; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1; background: var(--surface-2); cursor: pointer; padding: 0; transition: border-color .2s; }
.gthumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gthumb.is-active, .gthumb:hover { border-color: var(--accent); }
/* Galeri ana görseli MacBook mockup içinde (fullscreen panel görselleri) */
.gallery-macbook { width: 100%; }
.gallery-macbook .macbook-screen { padding: 9px; }
.gallery-macbook .macbook-screen img { display: block; width: 100%; height: auto; border-radius: 4px; cursor: zoom-in; }
.gallery-macbook .macbook-base { margin-inline: 0; }

/* Görsel büyütme (lightbox) */
.lightbox { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: clamp(1rem, 3vw, 2.5rem); background: rgba(20,16,14,.86); backdrop-filter: blur(5px); animation: fadeIn .2s var(--ease); }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 94vw; max-height: 90vh; border-radius: 12px; box-shadow: 0 30px 90px rgba(0,0,0,.55); }
.lightbox-close { position: absolute; top: 1.1rem; right: 1.3rem; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.16); color: #fff; font-size: 1.7rem; line-height: 1; display: grid; place-items: center; transition: background .2s var(--ease); }
.lightbox-close:hover { background: rgba(255,255,255,.3); }

/* ----------------------------- Temalar sayfası ----------------------------- */
.theme-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: clamp(1.5rem, 1rem + 2vw, 2.5rem) 1.5rem; }
.theme-grid > * { min-width: 0; }
.theme-card { display: flex; flex-direction: column; margin: 0; }
.theme-shot { position: relative; display: block; width: 100%; padding: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface-2); cursor: zoom-in; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.theme-shot img { display: block; width: 100%; height: auto; }
.theme-shot:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.theme-zoom { position: absolute; left: 50%; bottom: .8rem; transform: translateX(-50%) translateY(6px); display: inline-flex; align-items: center; gap: .35rem; padding: .4rem .8rem; border-radius: 999px; background: rgba(20,16,14,.72); color: #fff; font-size: .78rem; font-weight: 600; backdrop-filter: blur(4px); opacity: 0; transition: opacity .2s var(--ease), transform .2s var(--ease); pointer-events: none; }
.theme-shot:hover .theme-zoom, .theme-shot:focus-visible .theme-zoom { opacity: 1; transform: translateX(-50%) translateY(0); }
.theme-meta { display: flex; align-items: center; justify-content: space-between; gap: .75rem; margin-top: .9rem; }
.theme-name { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; }
.theme-view { padding: .45rem .85rem; font-size: .85rem; }
@media (hover: none) { .theme-zoom { opacity: 1; transform: translateX(-50%); } }

/* ----------------------------- Referans — telefon maketi ----------------------------- */
.ref-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 1rem + 2vw, 3rem) 1.5rem; }
.ref-grid > * { min-width: 0; }
@media (max-width: 900px) { .ref-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .ref-grid { grid-template-columns: 1fr; } }
/* Referanslar sayfası: daha küçük telefonlar, kategori yok */
.ref-grid--compact { grid-template-columns: repeat(auto-fill, minmax(165px, 1fr)); gap: clamp(1.75rem, 2.5vw, 2.75rem) 1.25rem; justify-items: center; }
.ref-grid--compact .ref-device { max-width: 196px; }

.ref-phone { display: flex; flex-direction: column; align-items: center; text-align: center; }
.ref-device {
    position: relative; width: 100%; max-width: 260px;
    aspect-ratio: 260 / 500;
    background: var(--ink); border-radius: 34px; padding: 9px;
    box-shadow: var(--shadow-lg);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.ref-phone:hover .ref-device { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(28,26,25,.18); }
.ref-screen { position: relative; height: 100%; border-radius: 26px; overflow: hidden; background: var(--surface-2); }
.ref-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.ref-screen-fallback { height: 100%; display: grid; place-items: center; background: linear-gradient(150deg, var(--accent-tint), var(--surface-2)); }
.ref-screen-fallback span { font-family: var(--font-display); font-weight: 800; font-size: 3rem; color: var(--accent); }
/* alt yarıda hafif okunurluk gölgesi */
.ref-screen::after { content: ""; position: absolute; inset: auto 0 0; height: 28%; background: linear-gradient(to top, rgba(20,16,14,.10), transparent); pointer-events: none; }
.ref-phone-name { font-family: var(--font-display); font-size: var(--step-2); letter-spacing: -.02em; margin-top: 1.4rem; }
.ref-phone-meta { font-size: var(--step--1); color: var(--faint); margin-top: .3rem; }
.ref-phone-link { display: inline-flex; align-items: center; gap: .4rem; color: var(--accent-ink); font-weight: 700; font-size: var(--step-0); margin-top: .6rem; transition: gap .2s var(--ease); }
.ref-phone:hover .ref-phone-link { gap: .7rem; }

/* Anasayfa otomatik referans slider'ı */
.full-bleed { width: 100vw; max-width: 100vw; margin-inline: calc(50% - 50vw); }
.ref-slider-wrap { position: relative; margin-top: clamp(2rem, 1rem + 2vw, 3rem); }
.ref-slider {
    display: flex; gap: clamp(1rem, 2vw, 1.75rem);
    overflow-x: auto; overflow-y: hidden;
    padding: .75rem clamp(1rem, 5vw, 4rem);
    scrollbar-width: none; -ms-overflow-style: none;
    cursor: grab;
}
.ref-slider::-webkit-scrollbar { display: none; }
.ref-slider > .ref-phone { flex: 0 0 auto; width: clamp(140px, 38vw, 188px); }
/* compact: daha küçük isim, gizli meta */
.ref-phone--sm .ref-phone-name { font-size: var(--step-0); margin-top: 1rem; }
.ref-phone--sm .ref-phone-link { font-size: var(--step--1); margin-top: .4rem; }
.ref-nav {
    position: absolute; top: calc(50% - 1.2rem); transform: translateY(-50%); z-index: 5;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--surface); color: var(--text);
    border: 1px solid var(--line-strong); box-shadow: var(--shadow);
    display: grid; place-items: center;
    transition: background .2s, color .2s, transform .2s;
}
.ref-nav svg { width: 20px; height: 20px; }
.ref-nav--prev { left: clamp(.5rem, 2vw, 1.5rem); }
.ref-nav--next { right: clamp(.5rem, 2vw, 1.5rem); }
.ref-nav:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
@media (max-width: 640px) { .ref-nav { display: none; } }

/* ----------------------------- SSS akordeon ----------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 0; text-align: left; font-family: var(--font-display); font-weight: 600; font-size: var(--step-1); letter-spacing: -.01em; }
.faq-q .chev { flex: none; width: 1.5rem; height: 1.5rem; display: grid; place-items: center; border-radius: 50%; background: var(--surface-2); transition: transform .25s var(--ease), background .25s; }
.faq-item[open] .faq-q .chev { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-q::-webkit-details-marker { display: none; }
.faq-a { padding-bottom: 1.4rem; color: var(--muted); max-width: 72ch; }

/* ----------------------------- Changelog zaman tüneli ----------------------------- */
.timeline { position: relative; display: grid; gap: 2.5rem; padding-left: 2rem; }
.timeline::before { content: ""; position: absolute; left: 5px; top: .4rem; bottom: .4rem; width: 2px; background: var(--line-strong); }
.tl-item { position: relative; }
.tl-item::before { content: ""; position: absolute; left: -2rem; top: .35rem; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.tl-head { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; margin-bottom: .5rem; }
.tl-ver { font-family: var(--font-mono); font-size: .82rem; font-weight: 600; padding: .2rem .6rem; border-radius: 6px; background: var(--ink); color: var(--on-ink); }
.tl-date { font-size: var(--step--1); color: var(--faint); }

/* ----------------------------- Blog kartı ----------------------------- */
.post-card { display: grid; gap: 1rem; }
.post-card .thumb { aspect-ratio: 16/9; border-radius: var(--radius); object-fit: cover; width: 100%; background: var(--surface-2); }
.post-card .cat { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-ink); }
.post-card h3 { font-size: var(--step-1); }
.post-card:hover h3 { color: var(--accent-ink); }
.post-card .date { font-size: var(--step--1); color: var(--faint); }

/* ----------------------------- Dar içerik (blog/yasal) ----------------------------- */
.prose { max-width: 70ch; }
.prose > * + * { margin-top: 1.15rem; }
.prose h2 { font-size: var(--step-2); margin-top: 2.5rem; }
.prose h3 { font-size: var(--step-1); margin-top: 2rem; }
.prose p, .prose li { color: #36302C; line-height: 1.75; }
.prose ul, .prose ol { padding-left: 1.3rem; display: grid; gap: .4rem; }
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose a { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 3px; }
.prose img { border-radius: var(--radius); margin-block: 1.5rem; }
.prose blockquote { border-left: 3px solid var(--accent); padding-left: 1.25rem; color: var(--muted); font-style: italic; }

/* ----------------------------- Breadcrumb ----------------------------- */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; font-size: var(--step--1); color: var(--faint); margin-bottom: 1.25rem; }
.crumbs a:hover { color: var(--accent-ink); }
.crumbs .sep { opacity: .5; }

/* ----------------------------- Formlar ----------------------------- */
.field { display: grid; gap: .45rem; margin-bottom: 1.1rem; }
.field label { font-weight: 600; font-size: .92rem; }
.field input, .field textarea, .field select {
    width: 100%; padding: .8rem 1rem; border-radius: var(--radius-sm);
    border: 1px solid var(--line-strong); background: var(--surface);
    transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: var(--ring); }
.field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: var(--step--1); color: var(--faint); }

/* Uyarı kutuları */
.alert { padding: .9rem 1.1rem; border-radius: var(--radius-sm); font-size: .95rem; margin-bottom: 1.25rem; }
.alert--ok { background: #ECF7EF; color: #1E6B3A; border: 1px solid #CDE9D5; }
.alert--err { background: #FCEDEA; color: var(--accent-ink); border: 1px solid #F6D2CA; }

/* ----------------------------- Koyu CTA bandı ----------------------------- */
.cta-band { background: var(--ink); color: var(--on-ink); border-radius: var(--radius-lg); padding: clamp(2.5rem, 1.5rem + 4vw, 4.5rem); text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--on-ink-muted); max-width: 56ch; margin-inline: auto; margin-top: 1rem; }
.cta-band .hero-actions { justify-content: center; }
.cta-band::after { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(closest-side, rgba(229,80,56,.35), transparent); bottom: -60%; left: 50%; transform: translateX(-50%); pointer-events: none; z-index: 0; }
.cta-band > * { position: relative; z-index: 1; }

/* ----------------------------- Footer ----------------------------- */
.site-footer { background: var(--ink); color: var(--on-ink-muted); padding-block: clamp(3rem, 2rem + 4vw, 4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 2.5rem; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand { color: var(--on-ink); }
.footer-col h5 { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--on-ink); margin-bottom: 1rem; }
.footer-col a { display: block; padding: .35rem 0; color: var(--on-ink-muted); transition: color .2s; }
.footer-col a:hover { color: var(--on-ink); }
.footer-bottom { margin-top: 3rem; padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: var(--step--1); }
.social { display: flex; gap: .6rem; }
.social a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.06); color: var(--on-ink); transition: background .2s, transform .2s; }
.social a:hover { background: var(--accent); transform: translateY(-2px); }
.footer-col a.etbis-badge { display: inline-block; width: auto; margin-top: 1.5rem; padding: 6px; background: #fff; border-radius: 10px; line-height: 0; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease); }
.footer-col a.etbis-badge:hover { transform: translateY(-2px); }
.etbis-badge img { width: 92px; height: auto; border-radius: 4px; }
.social svg { width: 18px; height: 18px; }

/* ----------------------------- Yardımcılar ----------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.flow > * + * { margin-top: 1.1rem; }
.muted { color: var(--muted); }
.bg-surface-2 { background: var(--surface-2); }
.divider-line { height: 1px; background: var(--line); border: 0; }
.tag-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip { padding: .35rem .8rem; border-radius: 999px; border: 1px solid var(--line-strong); font-size: var(--step--1); color: var(--muted); transition: all .2s; }
.chip:hover, .chip[aria-current="page"] { background: var(--accent); border-color: var(--accent); color: #fff; }
.chip[aria-current="page"] .muted { color: rgba(255,255,255,.82); }
.feature-filter .chip { cursor: pointer; display: inline-flex; align-items: center; gap: .35rem; }

/* ----------------------------- Telefon mini-menü ----------------------------- */
.pm { display: flex; flex-direction: column; height: 100%; background: var(--ground); font-size: 13px; }
.pm-top { display: flex; align-items: center; justify-content: space-between; padding: 2.6rem .9rem .7rem; background: var(--surface); }
.pm-brand { display: flex; align-items: center; gap: .55rem; }
.pm-logo { width: 34px; height: 34px; border-radius: 9px; background: var(--accent); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: .85rem; }
.pm-brand b { display: block; font-size: .9rem; }
.pm-brand small { color: var(--faint); font-size: .68rem; }
.pm-qr { color: var(--muted); }
.pm-chips { display: flex; gap: .35rem; padding: .6rem .9rem; overflow: hidden; background: var(--surface); border-bottom: 1px solid var(--line); }
.pm-chip { font-size: .68rem; padding: .25rem .55rem; border-radius: 999px; background: var(--surface-2); color: var(--muted); white-space: nowrap; }
.pm-chip.is-on { background: var(--accent); color: #fff; }
.pm-item { display: flex; align-items: center; gap: .65rem; padding: .6rem .9rem; border-bottom: 1px solid var(--line); }
.pm-thumb { width: 42px; height: 42px; border-radius: 9px; flex: none; }
.pm-info { flex: 1; }
.pm-info b { display: block; font-size: .8rem; }
.pm-info small { color: var(--faint); font-size: .66rem; }
.pm-price { font-family: var(--font-mono); font-weight: 600; font-size: .8rem; color: var(--accent-ink); }
.pm-bar { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: .5rem; padding: .7rem .9rem; background: var(--surface); border-top: 1px solid var(--line); font-size: .72rem; color: var(--muted); }
.pm-bar span { display: inline-flex; align-items: center; gap: .3rem; }
.pm-bar-cta { background: var(--accent); color: #fff; padding: .4rem .8rem; border-radius: 999px; font-weight: 600; }

/* Reveal animasyonu */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* =========================================================================
   Lead toplama widget'ları (WhatsApp balonu, lead modal, mobil CTA bar)
   ========================================================================= */

/* C) Mobil yapışkan CTA bar */
.mobile-cta { display: none; }
@media (max-width: 768px) {
    .mobile-cta {
        display: flex; gap: .6rem;
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
        padding: .7rem .9rem calc(.7rem + env(safe-area-inset-bottom, 0px));
        background: color-mix(in srgb, var(--ground) 94%, transparent);
        backdrop-filter: saturate(160%) blur(12px);
        border-top: 1px solid var(--line);
    }
    .mobile-cta .btn { flex: 1; justify-content: center; }
    .mobile-cta-wa { background: #25D366; color: #fff; }
    body { padding-bottom: 72px; }
}

/* A) WhatsApp balonu */
.wa-widget { position: fixed; right: clamp(1rem, 3vw, 1.75rem); bottom: clamp(1rem, 3vw, 1.75rem); z-index: 61; display: flex; flex-direction: column; align-items: flex-end; gap: .85rem; }
@media (max-width: 768px) { .wa-widget { bottom: 82px; } }

/* FAB — dikkat çekici, tıklamaya davet eden buton */
.wa-fab {
    position: relative; display: inline-flex; align-items: center;
    height: 60px; border-radius: 999px;
    background: linear-gradient(145deg, #2EE06E 0%, #25D366 45%, #1FBB58 100%);
    color: #fff;
    box-shadow: 0 14px 30px rgba(37,211,102,.45), 0 2px 6px rgba(0,0,0,.12);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
    animation: waNudge 5s ease-in-out 4s infinite;
}
.wa-fab-ic { width: 60px; height: 60px; display: grid; place-items: center; flex: none; }
.wa-fab-ic svg { filter: drop-shadow(0 1px 1px rgba(0,0,0,.15)); }
.wa-fab-label { max-width: 0; opacity: 0; overflow: hidden; white-space: nowrap; font-weight: 700; font-size: .95rem; letter-spacing: -.01em; transition: max-width .35s var(--ease), opacity .25s var(--ease), padding .35s var(--ease); }
.wa-fab:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 18px 40px rgba(37,211,102,.55), 0 3px 8px rgba(0,0,0,.14); animation: none; }
.wa-fab:hover .wa-fab-label { max-width: 180px; opacity: 1; padding-left: 1.15rem; }
.wa-fab:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

/* Okunmamış mesaj rozeti (marka mercanı — yeşil üstünde sıçrar) */
.wa-fab-badge {
    position: absolute; top: -3px; right: -3px;
    min-width: 22px; height: 22px; padding: 0 5px; box-sizing: border-box;
    border-radius: 999px; border: 2px solid var(--surface);
    background: var(--accent); color: #fff;
    font: 800 .72rem/18px var(--font-mono, inherit); text-align: center;
    box-shadow: 0 3px 8px rgba(229,80,56,.5);
    animation: waBadge 5s ease-in-out 4s infinite;
}

/* Çift dalga (ripple) — biri gecikmeli */
.wa-fab-pulse, .wa-fab::after { content: ""; position: absolute; inset: 0; border-radius: 999px; background: #25D366; z-index: -1; pointer-events: none; }
.wa-fab-pulse { opacity: .45; animation: waPulse 2.8s ease-out infinite; }
.wa-fab::after { opacity: .3; animation: waPulse 2.8s ease-out 1s infinite; }
@keyframes waPulse { 0% { transform: scale(1); opacity: .45; } 70% { transform: scale(1.75); opacity: 0; } 100% { opacity: 0; } }
@keyframes waNudge { 0%, 85%, 100% { transform: translateY(0) rotate(0); } 88% { transform: translateY(-7px) rotate(-8deg); } 92% { transform: translateY(0) rotate(7deg); } 96% { transform: translateY(-3px) rotate(-3deg); } }
@keyframes waBadge { 0%, 84%, 100% { transform: scale(1); } 89% { transform: scale(1.3); } 94% { transform: scale(.95); } }

/* Teaser — sohbet kartı görünümü */
.wa-teaser { position: relative; width: 272px; max-width: calc(100vw - 2rem); background: var(--surface); border: 1px solid var(--line); border-radius: 20px 20px 5px 20px; padding: 1.1rem 1.15rem 1.2rem; box-shadow: var(--shadow-lg); transform-origin: bottom right; animation: waTeaserIn .35s var(--ease); }
@keyframes waTeaserIn { from { opacity: 0; transform: translateY(12px) scale(.94); } to { opacity: 1; transform: none; } }
.wa-teaser-head { display: flex; align-items: center; gap: .6rem; margin-bottom: .75rem; padding-right: 1.2rem; }
.wa-teaser-av { position: relative; width: 40px; height: 40px; flex: none; border-radius: 50%; background: linear-gradient(145deg, #2EE06E, #1FBB58); color: #fff; display: grid; place-items: center; }
.wa-teaser-dot { position: absolute; right: -1px; bottom: -1px; width: 12px; height: 12px; border-radius: 50%; background: #31D95B; border: 2px solid var(--surface); animation: waOnline 2s ease-in-out infinite; }
@keyframes waOnline { 0%, 100% { box-shadow: 0 0 0 0 rgba(49,217,91,.6); } 70% { box-shadow: 0 0 0 6px rgba(49,217,91,0); } }
.wa-teaser-id { display: flex; flex-direction: column; line-height: 1.25; }
.wa-teaser-name { font-size: .92rem; font-weight: 700; color: var(--text); }
.wa-teaser-status { display: inline-flex; align-items: center; font-size: .76rem; font-weight: 600; color: #1A8A4A; }
.wa-teaser-msg { font-size: .92rem; font-weight: 500; line-height: 1.5; color: var(--text); }
.wa-teaser-reply { display: block; font-size: .75rem; color: var(--faint); margin-top: .4rem; }
.wa-teaser-btn { display: flex; align-items: center; justify-content: center; gap: .45rem; margin-top: .95rem; padding: .72rem 1rem; border-radius: 12px; background: linear-gradient(145deg, #25D366, #1FBB58); color: #fff; font-weight: 700; font-size: .9rem; box-shadow: 0 6px 16px rgba(37,211,102,.35); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.wa-teaser-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(37,211,102,.5); color: #fff; }
.wa-teaser-x { position: absolute; top: .55rem; right: .55rem; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; color: var(--faint); background: var(--surface); }
.wa-teaser-x:hover { background: var(--surface-2); color: var(--text); }

@media (prefers-reduced-motion: reduce) {
    .wa-fab, .wa-fab-badge, .wa-fab-pulse, .wa-fab::after, .wa-teaser-dot, .wa-teaser { animation: none; }
}

/* B) "Sizi arayalım" lead modal */
.lead-modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 1.5rem; }
.lead-modal[hidden] { display: none; }
.lead-backdrop { position: absolute; inset: 0; background: rgba(20,16,14,.55); animation: fadeIn .25s var(--ease); }
.lead-card { position: relative; z-index: 1; width: 100%; max-width: 440px; background: var(--surface); border-radius: var(--radius-lg); padding: clamp(1.75rem, 1rem + 3vw, 2.5rem); box-shadow: var(--shadow-lg); animation: leadIn .3s var(--ease); }
@keyframes leadIn { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lead-close { position: absolute; top: 1rem; right: 1rem; width: 38px; height: 38px; border-radius: 50%; background: var(--surface-2); display: grid; place-items: center; color: var(--muted); }
.lead-close:hover { background: var(--accent-soft); color: var(--accent-ink); }
.lead-card .field { margin-bottom: .85rem; }
.lead-card .field input { padding: .85rem 1rem; }
.lead-err { color: var(--accent-ink); font-size: .88rem; margin-top: .75rem; }
.lead-dismiss { display: block; margin: 1.1rem auto 0; color: var(--faint); font-size: .9rem; }
.lead-dismiss:hover { color: var(--text); }
.lead-check { width: 66px; height: 66px; border-radius: 50%; background: #ECF7EF; color: #1E6B3A; display: grid; place-items: center; margin: 0 auto; }
