/* ═══════════════════════════════════════════════════════════════════
   AFATECH Oto Servis — VİTRİN tasarım sistemi ("Sanayi Gecesi")
   Bağımsız dosya: uygulama.css'e dokunmaz, yalnız tanıtım sayfası kullanır.
   İlke: içerik ASLA animasyona rehin bırakılmaz (scroll-reveal yok);
   hareket yalnız süs (nabız, tarama, kayan şerit) — reduced-motion'da durur.
   ═══════════════════════════════════════════════════════════════════ */

@font-face {
    font-family: 'Caveat';
    src: url('/fonts/caveat-600-latin.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
    unicode-range: U+0000-00FF, U+2013-2014, U+2019;
}
@font-face {
    font-family: 'Caveat';
    src: url('/fonts/caveat-600-latin-ext.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
    unicode-range: U+0100-024F, U+011E-011F, U+0130-0131, U+015E-015F;
}

:root {
    --gece: #081221;
    --gece-2: #0C1A2C;
    --lacivert: #122A46;
    --lacivert-2: #17334F;
    --altin: #E3A912;
    --altin-2: #F6C445;
    --altin-koyu: #8A6508;
    --kagit: #F4F7FB;
    --beyaz: #FFFFFF;
    --murekkep: #13233B;
    --kul: #5D6C80;
    --cizgi: #E4EAF2;
    --yesil: #18A05A;
    --kirmizi: #E2483C;
    --mavi: #2F6FED;
    --r: 18px;
    --golge: 0 18px 50px rgba(8, 18, 33, .10);
    --gecis: .22s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.v-govde {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--murekkep);
    background: var(--beyaz);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, svg { display: block; }
a { color: inherit; }

.v-ic { max-width: 1180px; margin: 0 auto; padding: 0 22px; }

/* ── Kayan ilerleme çizgisi ── */
.v-ilerleme {
    position: fixed; top: 0; left: 0; height: 3px; width: 0;
    background: linear-gradient(90deg, var(--altin), var(--altin-2));
    z-index: 90;
}

/* ═══════════ NAV ═══════════ */
.v-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 80;
    padding: 14px 0;
    transition: background var(--gecis), box-shadow var(--gecis), padding var(--gecis);
}
.v-nav.kati {
    background: rgba(8, 18, 33, .88);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
    padding: 9px 0;
}
.v-nav-ic { display: flex; align-items: center; gap: 26px; max-width: 1180px; margin: 0 auto; padding: 0 22px; }
.v-marka { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.v-marka-blok { display: flex; flex-direction: column; justify-content: center; gap: 4px; }
.v-marka-yazi { font-weight: 900; font-size: 17px; color: #fff; letter-spacing: .2px; line-height: 1; white-space: nowrap; }
.v-marka-yazi b { color: var(--altin-2); }
.v-imza { font-family: 'Caveat', cursive; font-size: 15px; color: rgba(255, 255, 255, .6); line-height: 1; letter-spacing: .4px; white-space: nowrap; }
.v-imza b { color: var(--altin-2); }
.v-nav-menu { display: flex; gap: 4px; margin-left: auto; }
.v-nav-link {
    color: rgba(255, 255, 255, .78); text-decoration: none; font-size: 14px; font-weight: 600;
    padding: 8px 13px; border-radius: 10px; transition: color var(--gecis), background var(--gecis);
}
.v-nav-link:hover { color: #fff; background: rgba(255, 255, 255, .07); }
.v-nav-link.etkin { color: var(--altin-2); }
.v-nav-sag { display: flex; gap: 9px; align-items: center; }
.v-hamburger {
    display: none; background: none; border: 1px solid rgba(255, 255, 255, .25); color: #fff;
    font-size: 19px; border-radius: 10px; width: 42px; height: 40px; cursor: pointer;
}

/* ═══════════ BUTONLAR ═══════════ */
.v-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-weight: 800; font-size: 15px; text-decoration: none; cursor: pointer;
    padding: 14px 26px; border-radius: 14px; border: 0; line-height: 1.2;
    transition: transform var(--gecis), box-shadow var(--gecis), background var(--gecis), color var(--gecis);
    position: relative; overflow: hidden; white-space: nowrap;
}
.v-btn:hover { transform: translateY(-2px); }
.v-btn-altin {
    background: linear-gradient(135deg, var(--altin-2), var(--altin));
    color: #241A02;
    box-shadow: 0 10px 26px rgba(227, 169, 18, .38);
}
.v-btn-altin::after {
    content: ""; position: absolute; top: 0; bottom: 0; width: 42px; left: -70px;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .55), transparent);
    transform: skewX(-18deg);
    transition: left .55s ease;
}
.v-btn-altin:hover::after { left: 115%; }
.v-btn-altin:hover { box-shadow: 0 14px 34px rgba(227, 169, 18, .5); }
.v-btn-ghost { background: rgba(255, 255, 255, .06); color: #fff; border: 1.4px solid rgba(255, 255, 255, .3); }
.v-btn-ghost:hover { border-color: rgba(255, 255, 255, .6); background: rgba(255, 255, 255, .1); }
.v-btn-koyu { background: var(--lacivert); color: #fff; box-shadow: 0 10px 24px rgba(18, 42, 70, .28); }
.v-btn-koyu:hover { background: var(--lacivert-2); }
.v-btn-cizgili { background: #fff; color: var(--lacivert); border: 1.6px solid var(--cizgi); }
.v-btn-cizgili:hover { border-color: var(--lacivert); }
.v-btn-kucuk { padding: 9px 16px; font-size: 13.5px; border-radius: 11px; }
.v-btn-buyuk { padding: 17px 34px; font-size: 16.5px; }
.v-tam { width: 100%; }

/* ═══════════ HERO — Sanayi Gecesi ═══════════ */
.v-hero {
    position: relative; color: #fff;
    background:
        radial-gradient(1100px 520px at 78% -10%, rgba(227, 169, 18, .16), transparent 60%),
        radial-gradient(900px 500px at -12% 110%, rgba(47, 111, 237, .12), transparent 55%),
        linear-gradient(168deg, var(--gece) 0%, var(--gece-2) 55%, var(--lacivert) 100%);
    padding: 148px 0 150px;
    overflow: hidden;
}
/* mühendislik-çizim ızgarası */
.v-hero::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, .033) 0 1px, transparent 1px 44px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .033) 0 1px, transparent 1px 44px);
    mask-image: radial-gradient(900px 640px at 60% 30%, #000 30%, transparent 78%);
    -webkit-mask-image: radial-gradient(900px 640px at 60% 30%, #000 30%, transparent 78%);
}
/* altın ışık huzmesi */
.v-hero::after {
    content: ""; position: absolute; top: -30%; right: -6%; width: 46%; height: 160%;
    background: linear-gradient(115deg, transparent 42%, rgba(227, 169, 18, .07) 50%, transparent 58%);
    pointer-events: none;
}
.v-hero-izgara {
    display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: center;
    position: relative; z-index: 2;
}
.v-rozet-yeni {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(227, 169, 18, .13); border: 1px solid rgba(227, 169, 18, .38);
    color: var(--altin-2); font-size: 12.5px; font-weight: 800; letter-spacing: .6px;
    padding: 7px 14px; border-radius: 100px; margin-bottom: 20px; text-transform: uppercase;
}
.v-rozet-yeni .nokta {
    width: 8px; height: 8px; border-radius: 50%; background: var(--altin-2);
    animation: vNabiz 2.2s infinite;
}
.v-hero h1 {
    font-size: clamp(34px, 4.6vw, 56px); line-height: 1.08; font-weight: 900; letter-spacing: -1.2px;
}
.v-hero h1 em {
    font-style: normal;
    background: linear-gradient(100deg, var(--altin-2), var(--altin) 70%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.v-hero-alt {
    margin-top: 18px; font-size: 17px; color: rgba(255, 255, 255, .72); max-width: 560px; line-height: 1.75;
}
.v-hero-alt b { color: #fff; }
.v-cta { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.v-mikro { margin-top: 18px; font-size: 13px; color: rgba(255, 255, 255, .55); font-weight: 600; }
.v-guven { display: flex; gap: 20px; margin-top: 26px; flex-wrap: wrap; }
.v-guven span { font-size: 12.5px; color: rgba(255, 255, 255, .5); }
.v-guven b { color: rgba(255, 255, 255, .85); display: block; font-size: 13.5px; }

/* ── Hero sahnesi: yaşayan iş emri ──
   Parçalar (toast + barkod) .vm-sargi'ya yani KARTA göre konumlanır:
   ekran büyüse de küçülse de kompozisyon hep beraber durur, dağılmaz. */
.v-sahne { display: flex; justify-content: flex-end; }
/* Sahne ızgarası: SOL iş emri kartı · SAĞ bildirim sütunu · ALTA çivili barkod */
.vm-sargi {
    position: relative; width: 100%; max-width: 636px;
    display: grid; grid-template-columns: minmax(0, 1fr) 218px;
    grid-template-rows: auto auto; gap: 14px;
}
.vm-isik {
    position: absolute; inset: -56px -64px; z-index: 0; pointer-events: none;
    background: radial-gradient(circle at 55% 38%, rgba(227, 169, 18, .26), rgba(227, 169, 18, .05) 45%, transparent 68%);
}
.vm-kart {
    grid-column: 1; grid-row: 1;
    position: relative; z-index: 3;
    background: #fff; color: var(--murekkep);
    border-radius: 22px; padding: 22px 22px 18px;
    box-shadow: 0 40px 90px rgba(0, 0, 0, .5), 0 0 0 1px rgba(255, 255, 255, .06);
}
.vm-ust { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.vm-etiket { font-size: 11px; font-weight: 900; letter-spacing: 1.4px; color: var(--kul); text-transform: uppercase; display: flex; align-items: center; gap: 8px; }
.vm-canli {
    font-size: 9.5px; letter-spacing: 1px; color: var(--yesil); font-weight: 900;
    background: rgba(24, 160, 90, .1); border: 1px solid rgba(24, 160, 90, .3);
    padding: 2.5px 8px; border-radius: 100px;
    animation: vCanli 1.6s ease-in-out infinite;
}
@keyframes vCanli { 0%, 100% { opacity: 1; } 50% { opacity: .45; } }
.vm-no { font-size: 11.5px; color: var(--kul); font-weight: 700; }
.vm-plaka {
    display: inline-flex; align-items: center; gap: 9px; margin-top: 10px;
    border: 2.4px solid var(--murekkep); border-radius: 11px;
    padding: 4px; /* TR kutusu çerçeveye DEĞMEZ */
    font-weight: 900; font-size: 23px; letter-spacing: 1.8px;
}
.vm-plaka .tr {
    background: #2F6FED; color: #fff; font-size: 11px; padding: 8px 8px;
    font-weight: 800; border-radius: 7px;
}
.vm-plaka .no { padding: 0 10px 0 2px; }
.vm-arac { margin-top: 6px; font-size: 13.5px; color: var(--kul); font-weight: 600; }
.vm-akis { margin-top: 16px; display: flex; flex-direction: column; gap: 0; }
.vm-adim { display: flex; gap: 12px; align-items: flex-start; position: relative; padding-bottom: 14px; }
.vm-adim::before {
    content: ""; position: absolute; left: 10px; top: 22px; bottom: 0; width: 2px;
    background: var(--cizgi);
}
.vm-adim:last-child::before { display: none; }
.vm-nokta {
    width: 22px; height: 22px; border-radius: 50%; flex: 0 0 22px; z-index: 1;
    display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 900;
}
.vm-adim.oldu .vm-nokta { background: var(--yesil); color: #fff; }
.vm-adim.aktif .vm-nokta {
    background: #fff; border: 3px solid var(--altin); color: var(--altin);
    animation: vNabiz 2s infinite;
}
.vm-adim.bekliyor .vm-nokta { background: var(--cizgi); color: var(--kul); }
.vm-adim b { font-size: 13.5px; display: block; line-height: 1.3; }
.vm-adim span { font-size: 11.5px; color: var(--kul); }
.vm-adim.bekliyor b { color: var(--kul); font-weight: 700; }
.vm-dip {
    margin-top: 4px; padding-top: 13px; border-top: 1.5px dashed var(--cizgi);
    display: flex; align-items: center; justify-content: space-between;
}
.vm-dip .tutar { font-weight: 900; font-size: 27px; color: var(--yesil); line-height: 1.05; }
.vm-dip .tutar small { font-size: 11px; color: var(--kul); font-weight: 800; display: block; letter-spacing: .8px; }
.vm-cip {
    font-size: 11.5px; font-weight: 800; padding: 5px 11px; border-radius: 100px;
    background: rgba(227, 169, 18, .14); color: var(--altin-koyu);
}

/* Bildirim sütunu — servisin hikâyesi kartın SAĞINDA akar (usta → kontrol → fatura → müşteri) */
.vm-bildirimler {
    grid-column: 2; grid-row: 1; z-index: 3;
    display: flex; flex-direction: column; gap: 11px; justify-content: space-between;
    position: relative;
}
.vm-bildirimler::before {
    content: ""; position: absolute; left: 25px; top: 30px; bottom: 30px;
    border-left: 2px dashed rgba(246, 196, 69, .3); z-index: 0;
}
.vm-toast {
    position: relative; z-index: 1;
    background: rgba(13, 27, 46, .96); border: 1.8px solid rgba(255, 255, 255, .3);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    color: #fff; border-radius: 14px; padding: 10px 12px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .45);
    font-size: 12px; display: flex; gap: 9px; align-items: flex-start;
}
.vm-toast .halka {
    width: 30px; height: 30px; border-radius: 50%; flex: 0 0 30px; background: rgba(24, 160, 90, .18);
    color: #4ADE80; display: flex; align-items: center; justify-content: center; font-size: 13px;
    border: 1px solid rgba(74, 222, 128, .35);
}
.vm-toast b { display: flex; align-items: center; flex-wrap: wrap; gap: 3px 7px; font-size: 12.5px; line-height: 1.3; }
.vm-toast span { color: rgba(255, 255, 255, .58); font-size: 11px; line-height: 1.45; display: block; margin-top: 1px; }
.vm-toast.mor b { font-size: 15px; } /* Şahin Oto — işveren duyurusu daha iri */
.vm-toast.altin .halka { background: rgba(227, 169, 18, .16); color: var(--altin-2); border-color: rgba(227, 169, 18, .4); }
.vm-toast.mavi .halka { background: rgba(47, 111, 237, .18); color: #7FA6F8; border-color: rgba(47, 111, 237, .42); }
.vm-toast.turkuaz .halka { background: rgba(45, 212, 191, .14); color: #2DD4BF; border-color: rgba(45, 212, 191, .38); }
.vm-toast.mor .halka { background: rgba(167, 139, 250, .16); color: #C4B5FD; border-color: rgba(167, 139, 250, .45); }
.vm-rol {
    display: inline-flex; align-items: center; white-space: nowrap;
    font-size: 9px; font-weight: 900; letter-spacing: .8px; line-height: 1;
    background: rgba(227, 169, 18, .14); color: var(--altin-2);
    border: 1px solid rgba(227, 169, 18, .5);
    padding: 3.5px 8px; border-radius: 100px;
}
.vm-yakinda {
    display: inline-block; font-size: 8.5px; font-weight: 900; letter-spacing: .8px;
    background: rgba(246, 196, 69, .14); color: var(--altin-2);
    border: 1px solid rgba(246, 196, 69, .35);
    padding: 1.5px 6px; border-radius: 100px; margin-left: 5px; vertical-align: 1px;
}

/* barkod kalası — sahnenin EN ALTINA ÇİVİLİ (iki çivi başıyla 🔨) */
.vm-barkod {
    grid-column: 1 / -1; grid-row: 2; z-index: 3;
    background: #fff; border: 1.8px solid #D7DFEC; border-radius: 16px;
    padding: 12px 18px 12px 16px;
    box-shadow: 0 26px 60px rgba(0, 0, 0, .45);
    color: var(--murekkep);
    display: flex; align-items: center; gap: 18px; position: relative;
}
.vm-barkod::before, .vm-barkod::after {
    content: ""; position: absolute; top: 9px; width: 9px; height: 9px; border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #C9D3E0, #7C8DA3 60%, #5B6B7F);
    box-shadow: inset 0 -1px 2px rgba(0, 0, 0, .35), 0 1px 2px rgba(0, 0, 0, .2);
}
.vm-barkod::before { left: 10px; }
.vm-barkod::after { right: 10px; }
.vmb-sol { flex: 1; min-width: 0; }
.vmb-sag { text-align: center; flex: 0 0 auto; }
.vm-barkod .bas { font-size: 10px; font-weight: 900; letter-spacing: 1.6px; color: var(--kul); display: flex; justify-content: space-between; }
.vm-barkod .vmb-alan { margin-top: 6px; padding: 6px 8px 5px; }
.vm-barkod .vmb-cizgiler { height: 30px; }
.vm-barkod .vmb-kod { margin-top: 3px; }
.vmb-alan { position: relative; margin-top: 9px; border: 1.5px solid var(--cizgi); border-radius: 10px; padding: 9px 10px 7px; overflow: hidden; }
.vmb-cizgiler {
    height: 46px;
    background:
        repeating-linear-gradient(90deg, var(--gece) 0 3px, transparent 3px 6px),
        repeating-linear-gradient(90deg, var(--gece) 0 1px, transparent 1px 9px),
        repeating-linear-gradient(90deg, var(--gece) 0 2px, transparent 2px 13px);
}
.vmb-kod { text-align: center; font-size: 10.5px; letter-spacing: 3.5px; color: var(--kul); font-weight: 800; margin-top: 5px; }
.vmb-tarama {
    position: absolute; left: 4px; right: 4px; top: 4px; height: 22px; border-radius: 6px;
    background: linear-gradient(180deg, rgba(227, 169, 18, 0), rgba(227, 169, 18, .38), rgba(227, 169, 18, 0));
    animation: vTarama 2.5s ease-in-out infinite alternate;
}
.vm-barkod .kilit { margin-top: 8px; font-size: 10.5px; font-weight: 800; color: var(--altin-koyu); text-align: center; }

@keyframes vNabiz {
    0% { box-shadow: 0 0 0 0 rgba(227, 169, 18, .55); }
    70% { box-shadow: 0 0 0 12px rgba(227, 169, 18, 0); }
    100% { box-shadow: 0 0 0 0 rgba(227, 169, 18, 0); }
}
/* translate ayrı özellik: rotate transform'unu ezmez */
@keyframes vSuzul { from { translate: 0 0; } to { translate: 0 -11px; } }
@keyframes vTarama { from { top: 4px; } to { top: 44px; } }

/* ═══════════ STAT ŞERİDİ (hero'ya bindirme) ═══════════ */
.v-statbar { position: relative; z-index: 5; margin-top: -66px; }
.v-statbar-ic {
    display: grid; grid-template-columns: repeat(4, 1fr);
    background: #fff; border-radius: 20px; box-shadow: var(--golge);
    border: 1px solid var(--cizgi); overflow: hidden;
}
.v-stat { padding: 24px 20px; text-align: center; position: relative; }
.v-stat + .v-stat::before {
    content: ""; position: absolute; left: 0; top: 22%; bottom: 22%; width: 1px; background: var(--cizgi);
}
.v-stat b { display: block; font-size: 27px; font-weight: 900; color: var(--lacivert); letter-spacing: -.5px; }
.v-stat b em { font-style: normal; color: var(--altin); }
.v-stat span { font-size: 12.5px; color: var(--kul); font-weight: 600; }

/* ═══════════ BÖLÜM İSKELETİ ═══════════ */
.v-bolum { padding: 92px 0; }
.v-bolum.kagit { background: var(--kagit); }
.v-kicker {
    display: inline-block; font-size: 12px; font-weight: 900; letter-spacing: 2.2px;
    color: var(--altin-koyu); text-transform: uppercase; margin-bottom: 12px;
}
.v-kicker::before { content: "— "; color: var(--altin); }
.v-bolum h2 { font-size: clamp(26px, 3.2vw, 38px); font-weight: 900; letter-spacing: -.8px; line-height: 1.15; }
.v-bolum-alt { margin-top: 12px; color: var(--kul); font-size: 16px; max-width: 660px; }
.v-ortala { text-align: center; }
.v-ortala .v-bolum-alt { margin-left: auto; margin-right: auto; }

/* ═══════════ KAYAN SEKTÖR ŞERİDİ ═══════════ */
.v-serit-sargi { padding: 40px 0 8px; }
.v-serit { overflow: hidden; position: relative; padding: 8px 0 26px;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.v-serit-ic { display: flex; gap: 12px; width: max-content; animation: vKay 38s linear infinite; }
.v-serit:hover .v-serit-ic { animation-play-state: paused; }
@keyframes vKay { to { transform: translateX(-50%); } }
.v-cip-sektor {
    display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
    background: #fff; border: 1.4px solid var(--cizgi); border-radius: 100px;
    padding: 11px 20px; font-size: 14.5px; font-weight: 700; color: var(--lacivert);
    box-shadow: 0 6px 16px rgba(8, 18, 33, .05);
}
.v-sektor-not { text-align: center; color: var(--kul); font-size: 13.5px; margin-top: 4px; }

/* ═══════════ BENTO ÖZELLİKLER ═══════════ */
.v-bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 15px; margin-top: 42px; }
.v-ozel {
    grid-column: span 2;
    background: #fff; border: 1px solid var(--cizgi); border-radius: var(--r);
    padding: 22px; transition: transform var(--gecis), box-shadow var(--gecis), border-color var(--gecis);
}
.v-ozel:hover { transform: translateY(-4px); box-shadow: var(--golge); border-color: #D5DEEA; }
.v-ozel-bas { display: flex; align-items: center; gap: 11px; font-weight: 900; font-size: 16px; color: var(--lacivert); }
.v-ozel-ikon {
    width: 42px; height: 42px; border-radius: 13px; flex: 0 0 42px;
    background: linear-gradient(140deg, rgba(227, 169, 18, .16), rgba(227, 169, 18, .05));
    display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.v-ozel ul { margin: 13px 0 0; padding: 0; list-style: none; }
.v-ozel li {
    font-size: 13.5px; color: #44546B; padding: 4.5px 0 4.5px 22px; position: relative; line-height: 1.5;
}
.v-ozel li::before { content: "✓"; position: absolute; left: 2px; color: var(--altin); font-weight: 900; }
.v-ozel .mini-cip {
    font-size: 10px; font-weight: 900; letter-spacing: .8px; padding: 3.5px 9px; border-radius: 100px;
    background: rgba(227, 169, 18, .15); color: var(--altin-koyu); margin-left: auto;
}
.v-ozel .mini-cip.gri { background: #EDF1F7; color: var(--kul); }
.v-ozel-genis { grid-column: span 3; }

/* Bento yıldızı: barkod vitrini (koyu, 4 sütun) */
.v-ozel-yildiz {
    grid-column: span 4; display: grid; grid-template-columns: 1.25fr .75fr; gap: 20px; align-items: center;
    background:
        radial-gradient(500px 260px at 90% -20%, rgba(227, 169, 18, .2), transparent 60%),
        linear-gradient(150deg, var(--lacivert), var(--gece) 90%);
    color: #fff; border: 0; border-radius: var(--r); padding: 30px;
    position: relative; overflow: hidden;
}
.v-ozel-yildiz::before {
    content: ""; position: absolute; inset: 0;
    background:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, .028) 0 1px, transparent 1px 36px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .028) 0 1px, transparent 1px 36px);
    pointer-events: none;
}
.v-ozel-yildiz:hover { transform: translateY(-4px); box-shadow: 0 26px 60px rgba(8, 18, 33, .4); }
.v-yildiz-kicker { font-size: 11px; letter-spacing: 2px; font-weight: 900; color: var(--altin-2); text-transform: uppercase; }
.v-ozel-yildiz h3 { font-size: 23px; font-weight: 900; margin-top: 8px; line-height: 1.25; letter-spacing: -.4px; }
.v-ozel-yildiz p { margin-top: 10px; font-size: 14px; color: rgba(255, 255, 255, .72); line-height: 1.7; }
.v-ozel-yildiz p b { color: #fff; }
.v-yildiz-rozetler { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.v-yildiz-rozetler span {
    font-size: 11.5px; font-weight: 800; padding: 6px 12px; border-radius: 100px;
    background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16);
}
.v-yildiz-barkod {
    background: #fff; border-radius: 15px; padding: 15px 16px 11px; color: var(--murekkep);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .4); position: relative; z-index: 1;
}
.v-yildiz-barkod .bas { font-size: 9.5px; font-weight: 900; letter-spacing: 1.6px; color: var(--kul); display: flex; justify-content: space-between; }

/* ═══════════ AKIŞ (nasıl çalışır) ═══════════ */
.v-akis { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 52px; position: relative; }
.v-akis::before {
    content: ""; position: absolute; top: 27px; left: 9%; right: 9%; height: 2px;
    background: repeating-linear-gradient(90deg, var(--cizgi) 0 8px, transparent 8px 16px);
}
.v-adim { text-align: center; padding: 0 14px; position: relative; }
.v-adim-no {
    width: 54px; height: 54px; margin: 0 auto; border-radius: 50%;
    background: #fff; border: 2.5px solid var(--cizgi);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; position: relative; z-index: 1;
    transition: border-color var(--gecis), transform var(--gecis), box-shadow var(--gecis);
}
.v-adim:hover .v-adim-no {
    border-color: var(--altin); transform: scale(1.1);
    box-shadow: 0 10px 26px rgba(227, 169, 18, .28);
}
.v-adim-sira {
    position: absolute; top: -7px; right: calc(50% - 39px);
    width: 22px; height: 22px; border-radius: 50%; z-index: 2;
    background: linear-gradient(135deg, var(--altin-2), var(--altin)); color: #241A02;
    font-size: 11.5px; font-weight: 900; display: flex; align-items: center; justify-content: center;
}
.v-adim h3 { font-size: 15.5px; font-weight: 900; margin-top: 15px; color: var(--lacivert); }
.v-adim p { font-size: 12.8px; color: var(--kul); margin-top: 6px; line-height: 1.6; }

/* ═══════════ WEB + MOBİL SAHNE ═══════════ */
.v-heryerde {
    position: relative; color: #fff; overflow: hidden;
    background:
        radial-gradient(800px 420px at 12% 0%, rgba(227, 169, 18, .12), transparent 55%),
        linear-gradient(160deg, var(--lacivert) 0%, var(--gece) 100%);
    padding: 96px 0;
}
.v-heryerde .v-kicker { color: var(--altin-2); }
.v-heryerde h2 { color: #fff; }
.v-heryerde h2 em {
    font-style: normal;
    background: linear-gradient(100deg, var(--altin-2), var(--altin));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.v-hy-izgara { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.v-hy-alt { margin-top: 14px; color: rgba(255, 255, 255, .7); font-size: 15.5px; line-height: 1.75; }
.v-hy-alt b { color: #fff; }
.v-hy-maddeler { margin-top: 24px; display: flex; flex-direction: column; gap: 15px; }
.v-hy-madde { display: flex; gap: 14px; align-items: flex-start; }
.v-hy-madde .ikon {
    width: 44px; height: 44px; flex: 0 0 44px; border-radius: 13px; font-size: 20px;
    background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .13);
    display: flex; align-items: center; justify-content: center;
}
.v-hy-madde b { display: block; font-size: 15px; }
.v-hy-madde span { font-size: 13px; color: rgba(255, 255, 255, .62); line-height: 1.6; }
.v-hy-madde .mujde { color: var(--altin-2); font-weight: 800; }

/* CSS cihaz maketleri */
.v-cihazlar { position: relative; min-height: 420px; }
.v-tarayici {
    position: absolute; left: 0; top: 18px; right: 84px;
    background: #fff; border-radius: 15px; overflow: hidden;
    box-shadow: 0 34px 80px rgba(0, 0, 0, .5);
}
.v-tarayici .bar { background: #E9EEF5; padding: 9px 12px; display: flex; gap: 6px; align-items: center; }
.v-tarayici .bar i { width: 10px; height: 10px; border-radius: 50%; background: #CBD5E1; }
.v-tarayici .bar i:first-child { background: #F87171; }
.v-tarayici .bar i:nth-child(2) { background: #FBBF24; }
.v-tarayici .bar i:nth-child(3) { background: #34D399; }
.v-tarayici .adres {
    flex: 1; background: #fff; border-radius: 7px; font-size: 10.5px; color: var(--kul);
    padding: 4px 10px; font-weight: 700;
}
.v-tarayici .gov { display: grid; grid-template-columns: 88px 1fr; min-height: 240px; }
.v-tarayici .yan { background: var(--lacivert); padding: 12px 9px; display: flex; flex-direction: column; gap: 7px; }
.v-tarayici .yan i { display: block; height: 9px; border-radius: 4px; background: rgba(255, 255, 255, .16); }
.v-tarayici .yan i.a { background: var(--altin); }
.v-tarayici .icerik { padding: 13px; background: var(--kagit); }
.v-tarayici .kpi { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.v-tarayici .kpi i {
    display: block; height: 44px; background: #fff; border-radius: 9px; border: 1px solid var(--cizgi);
    position: relative; overflow: hidden;
}
.v-tarayici .kpi i::after {
    content: ""; position: absolute; left: 8px; top: 8px; width: 16px; height: 16px; border-radius: 6px;
    background: rgba(227, 169, 18, .3);
}
.v-tarayici .liste { margin-top: 9px; display: flex; flex-direction: column; gap: 7px; }
.v-tarayici .liste i { display: block; height: 26px; background: #fff; border: 1px solid var(--cizgi); border-radius: 8px; }
.v-telefon {
    position: absolute; right: 0; bottom: -6px; width: 168px; z-index: 2;
    background: var(--gece); border-radius: 26px; padding: 9px;
    box-shadow: 0 34px 80px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 255, 255, .09);
    animation: vSuzul 5.4s ease-in-out infinite alternate;
}
.v-telefon .ekran { background: #fff; border-radius: 19px; overflow: hidden; }
.v-telefon .ust { background: var(--lacivert); height: 44px; display: flex; align-items: flex-end; padding: 7px 10px; }
.v-telefon .ust i { display: block; width: 60%; height: 8px; border-radius: 4px; background: rgba(255, 255, 255, .35); }
.v-telefon .gov { padding: 10px; background: var(--kagit); display: flex; flex-direction: column; gap: 7px; min-height: 170px; }
.v-telefon .gov i { display: block; height: 30px; border-radius: 8px; background: #fff; border: 1px solid var(--cizgi); }
.v-telefon .gov i.altin { background: linear-gradient(135deg, var(--altin-2), var(--altin)); border: 0; height: 34px; }

/* ═══════════ HİKÂYE ═══════════ */
.v-hikaye-izgara { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; margin-top: 34px; align-items: start; }
.v-hikaye p { color: #44546B; font-size: 15.5px; line-height: 1.85; margin-bottom: 14px; }
.v-hikaye p b { color: var(--murekkep); }
.v-imza-buyuk {
    font-family: 'Caveat', cursive; font-size: 34px; color: var(--lacivert); margin-top: 6px;
}
.v-imza-buyuk b { color: var(--altin); }
.v-firma {
    background: linear-gradient(160deg, var(--lacivert), var(--gece));
    color: #fff; border-radius: var(--r); padding: 26px;
    box-shadow: var(--golge); position: relative; overflow: hidden;
}
.v-firma::before {
    content: ""; position: absolute; top: -40px; right: -40px; width: 150px; height: 150px; border-radius: 50%;
    background: radial-gradient(circle, rgba(227, 169, 18, .2), transparent 70%);
}
.v-firma-ad { font-weight: 900; font-size: 17px; }
.v-firma-ad span { color: var(--altin-2); }
.v-firma-tuzel { font-size: 12px; color: rgba(255, 255, 255, .55); margin: 6px 0 14px; letter-spacing: .3px; }
.v-firma-satir { font-size: 13.5px; margin: 7px 0; color: rgba(255, 255, 255, .82); }
.v-firma-satir a { color: var(--altin-2); text-decoration: none; font-weight: 700; }
.v-firma-rozet {
    margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: 12px; color: rgba(255, 255, 255, .6); line-height: 1.8;
}

/* ═══════════ PLANLAR ═══════════ */
.v-planlar { display: grid; grid-template-columns: repeat(2, minmax(0, 430px)); gap: 22px; justify-content: center; margin-top: 46px; }
.v-plan {
    background: #fff; border: 1.6px solid var(--cizgi); border-radius: 22px; padding: 30px;
    position: relative; transition: transform var(--gecis), box-shadow var(--gecis);
}
.v-plan:hover { transform: translateY(-5px); box-shadow: var(--golge); }
.v-plan h3 { font-size: 20px; font-weight: 900; }
.v-plan .p-alt { color: var(--kul); font-size: 13.5px; margin-top: 5px; }
.v-fiyat { margin-top: 18px; font-size: 44px; font-weight: 900; letter-spacing: -1.5px; color: var(--lacivert); line-height: 1; }
.v-fiyat span { font-size: 14px; font-weight: 700; color: var(--kul); letter-spacing: 0; margin-left: 5px; }
.v-fiyat-yil {
    margin-top: 9px; display: inline-block; font-size: 13px; color: var(--altin-koyu); font-weight: 700;
    background: rgba(227, 169, 18, .1); padding: 6px 13px; border-radius: 100px;
}
.v-plan ul { list-style: none; margin: 20px 0 24px; padding: 0; }
.v-plan li { padding: 7px 0 7px 26px; position: relative; font-size: 14px; color: #3A4A61; }
.v-plan li::before { content: "✓"; position: absolute; left: 2px; color: var(--altin); font-weight: 900; }
.v-plan.parlak {
    background: linear-gradient(165deg, var(--lacivert), var(--gece));
    border-color: var(--altin); color: #fff;
    box-shadow: 0 28px 70px rgba(18, 42, 70, .45);
}
.v-plan.parlak:hover { box-shadow: 0 34px 84px rgba(18, 42, 70, .55); }
.v-plan.parlak .v-fiyat { color: #fff; }
.v-plan.parlak .p-alt, .v-plan.parlak .v-fiyat span { color: rgba(255, 255, 255, .62); }
.v-plan.parlak li { color: rgba(255, 255, 255, .84); }
.v-plan.parlak li::before { color: var(--altin-2); }
.v-plan.parlak .v-fiyat-yil { background: rgba(227, 169, 18, .16); color: var(--altin-2); }
.v-rozet-plan {
    position: absolute; top: -14px; right: 24px;
    background: linear-gradient(135deg, var(--altin-2), var(--altin)); color: #241A02;
    font-size: 11px; font-weight: 900; letter-spacing: 1.2px;
    padding: 7px 16px; border-radius: 100px; box-shadow: 0 8px 20px rgba(227, 169, 18, .4);
}
.v-plan-not { text-align: center; color: var(--kul); font-size: 13.5px; margin-top: 26px; }
.v-plan-not a { color: var(--altin-koyu); font-weight: 800; }
.v-guven-satiri { text-align: center; color: var(--kul); font-size: 13px; margin-top: 10px; font-weight: 600; }

/* ═══════════ SSS ═══════════ */
.v-sss { max-width: 780px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 11px; }
.v-sss details {
    background: #fff; border: 1.4px solid var(--cizgi); border-radius: 15px;
    padding: 0 22px; transition: border-color var(--gecis), box-shadow var(--gecis);
}
.v-sss details[open] { border-color: rgba(227, 169, 18, .55); box-shadow: var(--golge); }
.v-sss summary {
    cursor: pointer; list-style: none; font-weight: 800; font-size: 15px; color: var(--lacivert);
    padding: 17px 30px 17px 0; position: relative; user-select: none;
}
.v-sss summary::-webkit-details-marker { display: none; }
.v-sss summary::after {
    content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
    width: 26px; height: 26px; border-radius: 50%; background: rgba(227, 169, 18, .13); color: var(--altin-koyu);
    display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 900;
    transition: transform var(--gecis);
}
.v-sss details[open] summary::after { content: "−"; transform: translateY(-50%) rotate(180deg); }
.v-sss details p { padding: 0 0 18px; color: #44546B; font-size: 14px; line-height: 1.75; }
.v-sss details p b { color: var(--murekkep); }

/* ═══════════ FİNAL CTA ═══════════ */
.v-final {
    position: relative; overflow: hidden; text-align: center; color: #fff;
    background:
        radial-gradient(700px 340px at 50% -30%, rgba(227, 169, 18, .22), transparent 60%),
        linear-gradient(170deg, var(--gece), var(--lacivert));
    padding: 100px 0;
}
.v-final::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 40px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 40px);
}
.v-final h2 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 900; letter-spacing: -1px; position: relative; }
.v-final h2 em {
    font-style: normal;
    background: linear-gradient(100deg, var(--altin-2), var(--altin));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.v-final p { margin-top: 14px; color: rgba(255, 255, 255, .68); font-size: 16px; position: relative; }
.v-final .v-cta { justify-content: center; margin-top: 34px; position: relative; }
.v-final-iletisim { margin-top: 26px !important; font-size: 13.5px !important; }
.v-final-iletisim a { color: var(--altin-2); text-decoration: none; font-weight: 800; }

/* ═══════════ FOOTER ═══════════ */
.v-dip { background: #060D18; color: rgba(255, 255, 255, .6); padding: 50px 0 40px; }
.v-dip-ic { max-width: 1180px; margin: 0 auto; padding: 0 22px; text-align: center; }
.v-dip .v-marka { justify-content: center; margin-bottom: 14px; }
.v-dip-firma { font-size: 12.5px; letter-spacing: .5px; }
.v-dip-adres { font-size: 12.5px; margin-top: 5px; }
.v-dip-iletisim { display: flex; gap: 22px; justify-content: center; margin-top: 15px; flex-wrap: wrap; }
.v-dip-iletisim a { color: rgba(255, 255, 255, .75); text-decoration: none; font-size: 13px; font-weight: 600; }
.v-dip-iletisim a:hover { color: var(--altin-2); }
.v-telif { margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .08); font-size: 12px; }

/* yukarı çık */
.v-yukari {
    position: fixed; right: 22px; bottom: 22px; z-index: 70;
    width: 46px; height: 46px; border-radius: 14px; border: 0; cursor: pointer;
    background: var(--lacivert); color: #fff; font-size: 18px;
    box-shadow: 0 14px 30px rgba(8, 18, 33, .35);
    opacity: 0; pointer-events: none; transform: translateY(8px);
    transition: opacity var(--gecis), transform var(--gecis);
}
.v-yukari.gorunur { opacity: 1; pointer-events: auto; transform: none; }
.v-yukari:hover { background: var(--lacivert-2); }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1040px) {
    .v-hero-izgara { grid-template-columns: 1fr; gap: 64px; }
    .v-sahne { justify-content: center; padding: 40px 0 64px; }
    .v-hy-izgara { grid-template-columns: 1fr; gap: 54px; }
    .v-ozel-yildiz { grid-column: span 6; }
    .v-ozel { grid-column: span 3; }
    .v-akis { grid-template-columns: repeat(3, 1fr); gap: 26px 0; }
    .v-akis::before { display: none; }
}
@media (max-width: 900px) {
    .v-nav-menu {
        position: fixed; top: 62px; left: 14px; right: 14px; z-index: 85;
        background: rgba(8, 18, 33, .97); border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 16px; flex-direction: column; padding: 10px; display: none;
        box-shadow: 0 30px 60px rgba(0, 0, 0, .5);
    }
    .v-nav-menu.acik { display: flex; }
    .v-hamburger { display: block; }
    .v-statbar-ic { grid-template-columns: repeat(2, 1fr); }
    .v-stat:nth-child(3)::before { display: none; }
    .v-hikaye-izgara { grid-template-columns: 1fr; }
    .v-planlar { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    /* Telefon nav: altın buton HERO'da zaten koca — üstte gizle, taşma biter */
    .v-nav-sag .v-btn-altin { display: none; }
    .v-nav-sag .v-btn-ghost { padding: 8px 11px; font-size: 12.5px; }
    .v-nav-ic { gap: 12px; padding: 0 14px; }
    .v-marka-yazi { font-size: 15px; }
    .v-imza { font-size: 12px; }
    .v-hero { padding: 124px 0 110px; }
    .v-cta .v-btn { flex: 1 1 100%; }
    .v-ozel { grid-column: span 6; }
    .v-akis { grid-template-columns: 1fr 1fr; }
    .v-statbar { margin-top: -50px; }
    .v-stat b { font-size: 21px; }
    .v-bolum { padding: 68px 0; }
    /* Telefonda sahne DÜZ DİZİLİR: kart → bildirimler → çivili barkod (binme yok) */
    .vm-sargi { grid-template-columns: 1fr; }
    .vm-isik { inset: -30px -10px; }
    .vm-kart { grid-column: 1; grid-row: 1; }
    .vm-bildirimler { grid-column: 1; grid-row: 2; gap: 10px; }
    .vm-bildirimler::before { display: none; }
    .vm-barkod { grid-column: 1; grid-row: 3; flex-wrap: wrap; }
    /* Cihaz maketleri telefonda: tarayıcı üstte, telefon köşesine biner (taşma yok) */
    .v-cihazlar { min-height: 0; }
    .v-tarayici { position: static; margin-right: 30px; }
    .v-telefon { position: static; width: 142px; margin: -52px 4px 0 auto; animation: none; }
}

/* içerik rehin olmasın: hareket istemeyene hepsi durur */
@media (prefers-reduced-motion: reduce) {
    .v-serit-ic, .vm-toast, .vm-barkod, .v-telefon, .vmb-tarama,
    .vm-adim.aktif .vm-nokta, .v-rozet-yeni .nokta, .vm-canli { animation: none !important; }
    html { scroll-behavior: auto; }
}
