/* VassSite — public marketing site */

:root {
    --ink:        #0A1628;
    --ink-soft:   #1E293B;
    --text:       #334155;
    --text-soft:  #64748B;
    --text-mute:  #94A3B8;
    --bg:         #FFFFFF;
    --surface:    #F8FAFC;
    --surface-2:  #F1F5F9;
    --border:     #E2E8F0;
    --border-soft:#EEF2F6;
    --accent:     #0066FF;
    --accent-hi:  #0052CC;
    --accent-lo:  #EFF6FF;
    --success:    #10B981;

    --container: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 999px;

    --shadow-sm: 0 1px 2px rgba(15,23,42,0.04);
    --shadow-md: 0 8px 24px rgba(15,23,42,0.06), 0 2px 6px rgba(15,23,42,0.04);
    --shadow-lg: 0 24px 60px rgba(15,23,42,0.10), 0 8px 20px rgba(15,23,42,0.06);

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --ease: cubic-bezier(0.16,1,0.3,1);
    --dur: 220ms;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: clip; }
body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { color: var(--ink); margin: 0; line-height: 1.15; letter-spacing: -0.02em; font-weight: 700; }
p { margin: 0; }
a { color: var(--accent); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--accent-hi); }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; height: auto; display: block; }

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

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 20px;
    font-size: 0.9375rem; font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--dur) var(--ease);
    text-decoration: none;
    line-height: 1;
}
.btn svg { width: 16px; height: 16px; stroke-width: 2; }
.btn-lg { padding: 14px 26px; font-size: 1rem; }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--ink-soft); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { background: var(--surface); color: var(--ink); border-color: var(--ink); }
.btn-quiet { background: transparent; color: var(--accent); padding: 8px 14px; }
.btn-quiet:hover { background: var(--accent-lo); color: var(--accent-hi); }

/* Header */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-soft);
}
.site-header-inner {
    display: flex; align-items: center; gap: 32px;
    height: 72px;
}
.site-brand {
    font-size: 1.25rem; font-weight: 800;
    color: var(--ink); text-decoration: none;
    letter-spacing: -0.02em;
    display: inline-flex; align-items: center;
}
.site-brand-logo { height: 36px; max-width: 200px; object-fit: contain; display: block; }
.site-nav {
    display: flex; gap: 28px;
    flex: 1;
}
.site-nav a {
    color: var(--text);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 8px 0;
    text-decoration: none;
    transition: color var(--dur) var(--ease);
}
/* TR/EN switch — pill toggle */
.lang-switch {
    display: inline-flex; align-items: center; gap: 2px;
    background: var(--surface, #f1f5f9);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 3px;
    margin-left: auto;
}
.lang-switch a {
    padding: 5px 12px;
    font-size: 0.72rem; font-weight: 700;
    color: var(--text-soft);
    border-radius: 999px;
    text-decoration: none;
    letter-spacing: .02em;
    transition: background .15s, color .15s;
    line-height: 1;
}
.lang-switch a.is-active {
    background: var(--accent);
    color: #fff;
}
.lang-switch a:not(.is-active):hover { color: var(--ink); background: rgba(0,0,0,0.04); }

.site-nav-head { display: none; }
.site-nav-brand { display: inline-flex; align-items: center; color: var(--ink); text-decoration: none; font-weight: 800; font-size: 1.1rem; }
.site-nav-brand img { height: 36px; max-width: 200px; object-fit: contain; display: block; }
.site-nav-close { background: transparent; border: 0; font-size: 28px; line-height: 1; padding: 4px 8px; color: var(--text-soft); cursor: pointer; border-radius: 8px; }
.site-nav-close:hover { background: rgba(0,0,0,0.05); color: var(--ink); }
.site-nav a:hover { color: var(--ink); }

/* Dropdown */
.nav-dd { position: relative; padding-bottom: 24px; margin-bottom: -24px; }
.nav-dd-trigger {
    display: inline-flex; align-items: center; gap: 4px;
    background: transparent; border: 0; padding: 8px 0;
    color: var(--text); font-size: 0.9375rem; font-weight: 500; cursor: pointer;
    font-family: inherit;
    transition: color var(--dur) var(--ease);
}
.nav-dd-trigger:hover { color: var(--ink); }
.nav-dd-trigger svg { transition: transform var(--dur) var(--ease); }
.nav-dd:hover .nav-dd-trigger svg,
.nav-dd:focus-within .nav-dd-trigger svg { transform: rotate(180deg); }

/* Apple-style geniş açılır panel — header'ın hemen altında, sayfa genişliği, tek kolon */
.nav-dd-menu {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 30px 60px -15px rgba(15,23,42,0.18);
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-width: var(--container);
    margin: 0 auto;
    left: 50%; right: auto; transform: translateX(-50%);
    width: calc(100% - 48px);
    opacity: 0; pointer-events: none;
    transform: translateX(-50%) translateY(-8px);
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear .3s;
    visibility: hidden;
    z-index: 60;
}
.nav-dd-menu--cols { /* legacy class, artık tek kolon */
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.nav-dd-col { display: contents; }
.nav-dd:hover .nav-dd-menu,
.nav-dd:focus-within .nav-dd-menu {
    opacity: 1; pointer-events: auto; visibility: visible;
    transform: translateX(-50%) translateY(0);
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear 0s;
}

.nav-dd-menu a {
    display: block;
    padding: 10px 16px;
    border-radius: 10px;
    color: var(--ink);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background .15s, color .15s, transform .15s;
}
.nav-dd-menu a:hover {
    background: var(--accent-lo);
    color: var(--accent);
    transform: translateX(4px);
}

/* Üst menü linklerinde belirgin hover */
.site-nav > a:hover, .nav-dd-trigger:hover { color: var(--accent); }

/* Apple tarzı arkaplan blur — dropdown açıkken */
.nav-backdrop {
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(15,23,42,0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0; pointer-events: none;
    transition: opacity .25s var(--ease);
    z-index: 45;
}
body:has(.nav-dd:hover) .nav-backdrop,
body:has(.nav-dd:focus-within) .nav-backdrop {
    opacity: 1;
}

@media (max-width: 900px) {
    .nav-dd { position: relative; padding-bottom: 0; margin-bottom: 0; }
    .nav-dd::after { display: none; }
    /* Varsayılan: dropdown kapalı (mobilde) */
    .nav-dd-menu,
    .nav-dd:hover .nav-dd-menu,
    .nav-dd:focus-within .nav-dd-menu {
        position: static; transform: none;
        box-shadow: none; border: 0;
        background: transparent; backdrop-filter: none;
        max-width: none; width: auto;
        max-height: 0; overflow: hidden;
        padding: 0 0 0 16px;
        opacity: 1; pointer-events: auto; visibility: visible;
        transition: max-height .25s ease, padding .25s ease;
    }
    /* Sadece is-open ise aç */
    .nav-dd.is-open > .nav-dd-menu {
        max-height: 600px;
        padding: 6px 0 6px 16px;
    }
    .nav-dd-trigger {
        width: 100%; text-align: left;
        display: flex; align-items: center; justify-content: space-between;
        cursor: pointer;
    }
    .nav-dd-trigger svg { transition: transform .25s ease; }
    .nav-dd.is-open > .nav-dd-trigger svg { transform: rotate(180deg); }
    .nav-dd-menu a { font-size: 0.9375rem; padding: 10px 14px; display: block; }
    .nav-dd-menu a:hover { transform: none; }
    .nav-backdrop { display: none; }
}

.nav-toggle {
    display: none;
    background: transparent; border: 1px solid var(--border);
    border-radius: 10px; padding: 8px;
    color: var(--ink);
}
@media (max-width: 900px) {
    /* CRITICAL: header'ın backdrop-filter'ı yeni bir containing block oluşturur ve
       içindeki position:fixed öğeleri (drawer) header bounds'una sıkıştırır → kaldır. */
    .site-header {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(255, 255, 255, 0.96) !important;
    }
    .site-header-inner { gap: 10px; }
    .site-brand { display: none; }
    .nav-toggle { display: inline-flex; align-items: center; order: 0; }
    .lang-switch { order: 1; margin: 0 auto; }
    .site-cta { order: 2; padding: 8px 14px; font-size: 0.8125rem; }

    /* Side drawer — soldan kayan tam yükseklik */
    .site-nav {
        display: flex !important;
        position: fixed !important;
        top: 0 !important; left: 0 !important; right: auto !important; bottom: 0 !important;
        width: min(280px, 80vw) !important;
        max-width: 80vw;
        background: #fff !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        transform: translateX(-105%);
        transition: transform .28s cubic-bezier(.2, .7, .3, 1);
        box-shadow: 6px 0 24px rgba(0, 0, 0, .2);
        z-index: 1001;
        overflow-y: auto;
        flex: none !important;
        border: 0;
    }
    .site-nav { z-index: 100001 !important; }
    .site-nav.is-open { transform: translateX(0) !important; }
    .site-nav > a, .site-nav > .nav-dd { padding: 14px 20px; border-bottom: 1px solid var(--border-soft); }
    .site-nav-head {
        display: flex !important; align-items: center; justify-content: space-between;
        padding: 14px 18px;
        border-bottom: 1px solid var(--border);
        background: var(--surface, #f8fafc);
    }
    .nav-backdrop {
        position: fixed !important;
        top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
        z-index: 100000 !important;
        background: rgba(0, 0, 0, .45) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        opacity: 0;
        pointer-events: none;
        transition: opacity .25s ease;
        display: block !important;
    }
    .nav-backdrop.is-visible { opacity: 1; pointer-events: auto; }
    body.nav-open { overflow: hidden; }
}

/* Hero */
.hero {
    position: relative;
    padding: 80px 0 60px;
    background:
        radial-gradient(ellipse 1200px 600px at 50% -10%, rgba(0,102,255,0.12) 0%, transparent 60%),
        linear-gradient(180deg, #fff 0%, var(--surface) 100%);
    overflow: hidden;
}
@media (min-width: 768px) { .hero { padding: 120px 0 80px; } }
.hero-inner { text-align: center; max-width: 860px; margin: 0 auto; }
.hero-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: var(--accent-lo);
    color: var(--accent);
    font-size: 0.8125rem; font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.01em;
}
.hero-title {
    font-size: clamp(2.25rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.035em;
    margin-bottom: 20px;
    text-wrap: balance;
}
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-soft);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.6;
}
.hero-cta-row {
    display: flex; gap: 12px;
    justify-content: center; flex-wrap: wrap;
    margin-bottom: 60px;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 24px;
    max-width: 720px; margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid var(--border-soft);
}
.hero-stats > div { display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800; color: var(--ink);
    letter-spacing: -0.02em;
}
.hero-stats span { font-size: 0.8125rem; color: var(--text-mute); }

/* ===================== Slider (modern) ===================== */
.slider {
    position: relative;
    height: clamp(620px, 86vh, 880px);
    overflow: hidden;
    background: #050B17;
    --slide-duration: 7000ms;
}
.slider-track { position: relative; width: 100%; height: 100%; }

.slide {
    position: absolute; inset: 0;
    display: flex; align-items: center;
    padding: 96px 0 140px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}
.slide.is-active { opacity: 1; pointer-events: auto; z-index: 1; }

.slide-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; background: #050B17; }
.slide-img, .slide-video {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.08);
    transition: transform 9s cubic-bezier(0.22, 1, 0.36, 1);
    filter: saturate(1.05);
}
.slide.is-active .slide-img,
.slide.is-active .slide-video { transform: scale(1.14); }

/* YouTube — inline background, sessiz, döngülü */
.slide-yt-wrap {
    position: absolute;
    /* iframe'i ekran oranı 16:9 olarak ortala; sayfa daha kareyse iframe daha geniş olsun ki kenarları kırpılsın */
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw; height: 56.25vw;
    min-height: 100%; min-width: 177.78vh;
    pointer-events: none;
}
.slide-yt-frame {
    width: 100%; height: 100%; border: 0; display: block;
    transform: scale(1.04);
    transition: transform 9s cubic-bezier(0.22, 1, 0.36, 1);
}
.slide.is-active .slide-yt-frame { transform: scale(1.12); }

/* Karartma + grain */
.slide-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 0% 100%, rgba(0,102,255,0.18) 0%, transparent 60%),
        linear-gradient(110deg, rgba(5,11,23,0.85) 0%, rgba(5,11,23,0.55) 45%, rgba(5,11,23,0.30) 100%),
        linear-gradient(180deg, rgba(5,11,23,0.10) 0%, rgba(5,11,23,0.80) 100%);
    z-index: 1;
}
.slide[data-theme="light"] .slide-overlay {
    background:
        radial-gradient(ellipse 80% 60% at 0% 100%, rgba(0,102,255,0.10) 0%, transparent 60%),
        linear-gradient(110deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.60) 45%, rgba(255,255,255,0.25) 100%);
}
.slide-grain {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.10 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.55; mix-blend-mode: overlay;
    pointer-events: none; z-index: 2;
}

.slide-content {
    position: relative; z-index: 3;
    color: #fff;
    max-width: 720px;
}
.slide[data-theme="light"] .slide-content { color: var(--ink); }

/* Stagger animation — slide aktif olunca tetiklenir */
.slide-eyebrow,
.slide-title,
.slide-sub,
.slide-cta-row { opacity: 0; transform: translateY(28px); }
.slide.is-active .slide-eyebrow { animation: slIn 900ms cubic-bezier(0.22,1,0.36,1) 200ms forwards; }
.slide.is-active .slide-title   { animation: slIn 900ms cubic-bezier(0.22,1,0.36,1) 350ms forwards; }
.slide.is-active .slide-sub     { animation: slIn 900ms cubic-bezier(0.22,1,0.36,1) 500ms forwards; }
.slide.is-active .slide-cta-row { animation: slIn 900ms cubic-bezier(0.22,1,0.36,1) 650ms forwards; }
@keyframes slIn { to { opacity: 1; transform: none; } }

.slide-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    color: #fff;
    font-size: 0.8125rem; font-weight: 600;
    margin-bottom: 28px;
    border: 1px solid rgba(255,255,255,0.20);
    letter-spacing: 0.02em;
}
.slide-eyebrow::before {
    content: ''; width: 6px; height: 6px;
    border-radius: 50%; background: #34D399;
    box-shadow: 0 0 0 4px rgba(52,211,153,0.20);
}
.slide[data-theme="light"] .slide-eyebrow {
    background: rgba(0,102,255,0.10);
    color: var(--accent);
    border-color: rgba(0,102,255,0.20);
}

.slide-title {
    font-size: clamp(2.5rem, 7vw, 4.75rem);
    font-weight: 800;
    color: inherit;
    letter-spacing: -0.04em;
    line-height: 1.02;
    margin-bottom: 22px;
    text-wrap: balance;
    text-shadow: 0 4px 30px rgba(0,0,0,0.30);
    background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.85) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.slide[data-theme="light"] .slide-title {
    text-shadow: none;
    background: linear-gradient(180deg, var(--ink) 0%, var(--ink-soft) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide-sub {
    font-size: clamp(1.0625rem, 1.6vw, 1.3125rem);
    color: rgba(255,255,255,0.82);
    max-width: 580px;
    line-height: 1.55;
    margin-bottom: 36px;
    font-weight: 400;
}
.slide[data-theme="light"] .slide-sub { color: var(--text-soft); }

.slide-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.slide[data-theme="dark"] .slide-cta-row .btn-primary {
    background: #fff; color: var(--ink); border-color: #fff;
    box-shadow: 0 8px 28px rgba(255,255,255,0.18);
}
.slide[data-theme="dark"] .slide-cta-row .btn-primary:hover { background: var(--surface); color: var(--ink); }
.slide[data-theme="dark"] .slide-cta-row .btn-ghost {
    color: #fff; border-color: rgba(255,255,255,0.30);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}
.slide[data-theme="dark"] .slide-cta-row .btn-ghost:hover {
    background: rgba(255,255,255,0.18); color: #fff; border-color: rgba(255,255,255,0.55);
}

/* Oklar */
.slider-arrow {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 240ms var(--ease);
}
.slider-arrow:hover {
    background: rgba(255,255,255,0.16);
    border-color: rgba(255,255,255,0.40);
    transform: translateY(-50%) scale(1.06);
}
.slider-arrow svg { width: 22px; height: 22px; }
.slider-prev { left: 28px; }
.slider-next { right: 28px; }
@media (max-width: 768px) {
    .slider-arrow { width: 44px; height: 44px; }
    .slider-prev { left: 14px; } .slider-next { right: 14px; }
}

/* Noktalar + progress */
.slider-dots {
    position: absolute;
    bottom: 36px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 10px;
    z-index: 5;
}
.slider-dot {
    position: relative;
    width: 36px; height: 4px;
    border-radius: 999px;
    background: rgba(255,255,255,0.20);
    border: 0;
    cursor: pointer;
    padding: 0;
    overflow: hidden;
    transition: background 220ms var(--ease);
}
.slider-dot:hover { background: rgba(255,255,255,0.40); }
.slider-dot.is-active { background: rgba(255,255,255,0.28); }
.slider-dot-progress {
    position: absolute; inset: 0;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
    border-radius: inherit;
}
.slider.is-playing .slider-dot.is-active .slider-dot-progress {
    animation: dotFill var(--slide-duration) linear forwards;
}
@keyframes dotFill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* Sayaç (01 / 03) */
.slider-counter {
    position: absolute;
    right: 32px; bottom: 36px;
    z-index: 5;
    display: inline-flex; align-items: center; gap: 12px;
    color: rgba(255,255,255,0.75);
    font-size: 0.875rem; font-weight: 600;
    letter-spacing: 0.08em;
    font-variant-numeric: tabular-nums;
}
.slider-counter #sliderCurrent {
    color: #fff;
    font-size: 2rem; font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
}
.slider-counter-sep {
    display: inline-block;
    width: 60px; height: 1px;
    background: rgba(255,255,255,0.30);
}
.slider-counter-total { color: rgba(255,255,255,0.55); }
@media (max-width: 768px) { .slider-counter { display: none; } }

/* Stats strip (slider'dan sonra) */
.stats-strip {
    background: #fff;
    border-bottom: 1px solid var(--border-soft);
    padding: 40px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 32px;
    text-align: center;
}
.stats-grid > div { display: flex; flex-direction: column; gap: 4px; }
.stats-grid strong {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800; color: var(--ink); letter-spacing: -0.02em;
}
.stats-grid span { font-size: 0.875rem; color: var(--text-mute); }
.stats-live-note {
    margin: 14px 0 0; text-align: center;
    font-size: 0.78rem; font-weight: 500; color: var(--text-mute);
    letter-spacing: 0.02em; line-height: 1.4;
    display: inline-flex; align-items: center; gap: 6px;
    width: 100%; justify-content: center;
}
.stats-live-note::before {
    content: ''; width: 7px; height: 7px; border-radius: 50%;
    background: #10b981; box-shadow: 0 0 0 4px rgba(16,185,129,0.18);
    animation: stats-live-pulse 1.8s ease-in-out infinite;
}
@keyframes stats-live-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.45); }
    50%      { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

/* Sections */
.section { padding: 80px 0; }
.section-tint { background: var(--surface); }
.section-head {
    display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
    margin-bottom: 48px; flex-wrap: wrap;
}
.section-eyebrow {
    font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--accent); margin-bottom: 8px;
}
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.025em;
}

/* Product grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
    gap: 24px;
}

/* Product marquee — tek sıra sonsuz kayma */
.product-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 60px, #000 calc(100% - 60px), transparent);
            mask-image: linear-gradient(to right, transparent, #000 60px, #000 calc(100% - 60px), transparent);
}
.product-marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: productMarqueeScroll var(--marquee-duration, 40s) linear infinite;
}
.section.section-head-only { padding-bottom: 0; }

/* Page-level search box module */
.page-searchbox-wrap { max-width: 720px; margin: 0 auto; text-align: center; }
.page-searchbox-title { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 16px; color: var(--ink); }
.page-searchbox { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: #fff;
    border: 1px solid var(--border); border-radius: 999px; box-shadow: var(--shadow-sm); }
.page-searchbox svg { color: var(--text-soft); flex-shrink: 0; }
.page-searchbox input { flex: 1; border: 0; outline: none; background: transparent; font-size: 1rem; color: var(--ink); font-family: inherit; }
.page-searchbox kbd { font-family: ui-monospace, Consolas, monospace; font-size: 0.7rem; padding: 2px 8px; background: var(--bg); color: var(--text-mute); border: 1px solid var(--border); border-radius: 4px; }

/* News list varyantları */
.nl-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr)); gap: 20px; }
.nl-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; text-decoration: none; color: inherit; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.nl-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.nl-card-img { aspect-ratio: 16/9; background: var(--surface); overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 12px; }
.nl-card-img img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; display: block; }
.nl-card-img-empty { width: 100%; height: 100%; background: linear-gradient(135deg, var(--surface), var(--bg)); }
.nl-card-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 6px; }
.nl-card-date { font-size: 0.75rem; color: var(--text-mute); font-variant-numeric: tabular-nums; }
.nl-card-title { font-size: 1.0625rem; font-weight: 700; line-height: 1.3; margin: 0; color: var(--ink); }
.nl-card-sub { font-size: 0.875rem; color: var(--text-soft); line-height: 1.5; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.nl-compact { display: flex; flex-direction: column; }
.nl-compact-row { display: grid; grid-template-columns: 110px 1fr 20px; gap: 16px; align-items: center; padding: 12px 14px; border-bottom: 1px solid var(--border); text-decoration: none; color: inherit; transition: background var(--dur) var(--ease); }
.nl-compact-row:hover { background: var(--surface); }

/* Sahibinden tarzı kompakt ürün satırı (resim · ad+açıklama · fiyat · ok) */
.prod-compact-row {
    display: grid !important;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 12px 14px;
    border-bottom: 1px solid var(--border-soft);
    text-decoration: none; color: inherit;
    transition: background .15s, border-color .15s;
}
.prod-compact-row:hover { background: var(--surface); border-color: var(--accent); }
.prod-compact-row:last-child { border-bottom: 0; }
.prod-compact-img {
    position: relative;
    width: 72px; height: 56px;
    background: var(--surface, #f1f5f9);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    overflow: hidden;
    color: var(--text-mute);
    flex: 0 0 auto;
    box-sizing: border-box;
}
.prod-compact-img img {
    position: absolute !important;
    top: 0 !important; left: 0 !important;
    width: 100% !important; height: 100% !important;
    max-width: 100% !important; max-height: 100% !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 !important;
    padding: 3px !important;
    box-sizing: border-box !important;
}
.prod-compact-img > svg {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.prod-compact-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.prod-compact-title {
    font-size: 0.9375rem; font-weight: 600; color: var(--ink);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    line-height: 1.3;
}
.prod-compact-desc {
    font-size: 0.8125rem; color: var(--text-soft);
    line-height: 1.35;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.prod-compact-price {
    display: flex; align-items: center; gap: 8px;
    flex: 0 0 auto;
    min-width: 0;
}
.prod-compact-price-prefix {
    font-size: 0.7rem; color: var(--text-mute); font-weight: 500;
    text-transform: lowercase;
}
.prod-compact-price-val {
    font-size: 0.95rem; font-weight: 700; color: var(--accent);
    white-space: nowrap;
}
.prod-compact-arrow {
    color: var(--text-mute); font-size: 1.1rem;
    transition: transform .15s, color .15s;
    flex: 0 0 auto;
}
.prod-compact-row:hover .prod-compact-arrow {
    color: var(--accent);
    transform: translateX(3px);
}
@media (max-width: 600px) {
    .prod-compact-row { grid-template-columns: 48px minmax(0, 1fr) auto !important; gap: 10px; padding: 10px 12px; }
    .prod-compact-img { width: 48px !important; height: 40px !important; }
    .prod-compact-title { font-size: 0.875rem; }
    .prod-compact-desc { font-size: 0.7rem; }
    .prod-compact-price-prefix { display: none; }
    .prod-compact-price-val { font-size: 0.85rem; }
}

/* Sahibinden tarzı kompakt hizmet satırı */
.svc-compact-row {
    display: grid !important;
    grid-template-columns: 72px minmax(0, 1fr) 22px;
    gap: 14px;
    align-items: center;
    padding: 12px 14px;
    border-bottom: 1px solid var(--border-soft);
    text-decoration: none;
    color: inherit;
    transition: background .15s, border-color .15s;
}
.svc-compact-row:hover { background: var(--surface); border-color: var(--accent); }
.svc-compact-row:last-child { border-bottom: 0; }
.svc-compact-img {
    position: relative;
    width: 72px; height: 56px;
    background: var(--surface, #f1f5f9);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    overflow: hidden;
    color: var(--text-mute);
    flex: 0 0 auto;
    box-sizing: border-box;
}
.svc-compact-img img {
    position: absolute !important;
    top: 0 !important; left: 0 !important;
    width: 100% !important; height: 100% !important;
    max-width: 100% !important; max-height: 100% !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 !important;
    padding: 3px !important;
    box-sizing: border-box !important;
}
.svc-compact-img > svg {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.svc-compact-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.svc-compact-title {
    font-size: 0.9375rem; font-weight: 600; color: var(--ink);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    line-height: 1.3;
}
.svc-compact-desc {
    font-size: 0.8125rem; color: var(--text-soft);
    line-height: 1.35;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.svc-compact-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.svc-compact-tag {
    font-size: 0.7rem; font-weight: 600;
    color: var(--text-soft);
    background: var(--surface, #f1f5f9);
    border: 1px solid var(--border);
    padding: 2px 8px; border-radius: 4px;
    line-height: 1.3;
}
.svc-compact-arrow {
    color: var(--text-mute); font-size: 1.1rem;
    transition: transform .15s, color .15s;
    flex: 0 0 auto;
}
.svc-compact-row:hover .svc-compact-arrow {
    color: var(--accent);
    transform: translateX(3px);
}
@media (max-width: 600px) {
    .svc-compact-row { grid-template-columns: 48px minmax(0, 1fr) 18px !important; gap: 10px; padding: 10px 12px; }
    .svc-compact-img { width: 48px !important; height: 40px !important; }
    .svc-compact-title { font-size: 0.875rem; }
    .svc-compact-desc { font-size: 0.7rem; }
    .svc-compact-tag { font-size: 0.65rem; padding: 1px 6px; }
}
.nl-compact-date { font-size: 0.8125rem; color: var(--text-mute); font-variant-numeric: tabular-nums; }
.nl-compact-title { font-size: 0.9375rem; font-weight: 500; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nl-compact-arrow { color: var(--text-mute); font-size: 1rem; }

.nl-large { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(420px, 100%), 1fr)); gap: 24px; }
.nl-hero { position: relative; aspect-ratio: 16/9; border-radius: 16px; overflow: hidden; text-decoration: none; color: #fff; display: flex; align-items: flex-end; }
.nl-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.nl-hero-bg--placeholder { background: linear-gradient(135deg, #0F172A, #1E293B); }
.nl-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.78) 100%); }
.nl-hero-body { position: relative; padding: 32px; display: flex; flex-direction: column; gap: 6px; z-index: 1; }
.nl-hero-date { font-size: 0.8125rem; color: rgba(255,255,255,0.78); font-variant-numeric: tabular-nums; }
.nl-hero-title { font-size: 1.5rem; font-weight: 700; line-height: 1.25; margin: 0; color: #fff; }
.nl-hero-sub { font-size: 0.9375rem; color: rgba(255,255,255,0.82); line-height: 1.5; margin: 4px 0 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.nl-hero-cta { font-size: 0.875rem; font-weight: 600; color: #fff; margin-top: 6px; }

/* ===== Patlama Efekti Modülü ===== */
.burst {
    position: relative;
    overflow: hidden;
    padding: 120px 24px;
    background: radial-gradient(ellipse at center, #0F172A 0%, #020617 100%);
    color: #fff;
    text-align: center;
    isolation: isolate;
}
.burst-inner {
    position: relative;
    z-index: 3;
    display: flex; flex-direction: column; align-items: center;
    max-width: 760px;
    margin: 0 auto;
    gap: 22px;
}
.burst-eyebrow {
    display: inline-block;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    opacity: 0; transform: translateY(20px);
    transition: opacity .8s .1s ease, transform .8s .1s cubic-bezier(.2,.8,.2,1);
}
.burst-visual {
    width: 220px; height: 220px;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transform: scale(0.2) rotate(-12deg);
    transition: opacity .9s .2s ease, transform 1.2s .2s cubic-bezier(.18,.9,.25,1.4);
    filter: drop-shadow(0 20px 50px rgba(0,102,255,0.45));
}
.burst-visual img { width: 100%; height: 100%; object-fit: contain; }
.burst-title {
    font-size: clamp(2rem, 5vw, 4rem); font-weight: 800;
    letter-spacing: -0.025em; line-height: 1.05;
    margin: 0;
    color: #fff;
    opacity: 0; transform: translateY(40px) scale(0.92);
    transition: opacity .9s .35s ease, transform 1s .35s cubic-bezier(.2,.8,.2,1);
    background: linear-gradient(135deg, #fff 0%, #B8D4FF 60%, #fff 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.burst-body {
    font-size: 1.0625rem; line-height: 1.65; color: rgba(255,255,255,0.78);
    opacity: 0; transform: translateY(30px);
    transition: opacity .9s .55s ease, transform .9s .55s cubic-bezier(.2,.8,.2,1);
}
.burst-body p { margin: 0 0 12px; }
.burst-cta {
    opacity: 0; transform: translateY(30px);
    transition: opacity .9s .7s ease, transform .9s .7s cubic-bezier(.2,.8,.2,1);
}

/* Radial rays */
.burst-rays { position: absolute; inset: 0; z-index: 1; pointer-events: none;
    display: flex; align-items: center; justify-content: center; }
.burst-ray {
    position: absolute; top: 50%; left: 50%;
    width: 3px; height: 60vh;
    background: linear-gradient(180deg, rgba(0,102,255,0.55), transparent 70%);
    transform-origin: 50% 0%;
    transform: translate(-50%, 0) rotate(calc(var(--i) * 30deg)) scaleY(0);
    transition: transform 1.4s cubic-bezier(.2,.8,.2,1), opacity 1.4s ease;
    opacity: 0;
}

/* Particles */
.burst-particles { position: absolute; inset: 0; z-index: 2; pointer-events: none;
    display: flex; align-items: center; justify-content: center; }
.burst-particle {
    position: absolute; top: 50%; left: 50%;
    width: 6px; height: 6px; border-radius: 50%;
    background: radial-gradient(circle, #70A300 0%, rgba(112,163,0,0) 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 1.6s cubic-bezier(.18,.9,.25,1.05), opacity 1.6s ease;
    opacity: 0;
}
.burst-particle:nth-child(odd) { background: radial-gradient(circle, #0066FF 0%, rgba(0,102,255,0) 70%); width: 8px; height: 8px; }
.burst-particle:nth-child(3n) { background: radial-gradient(circle, #fff 0%, rgba(255,255,255,0) 70%); width: 5px; height: 5px; }

/* TRIGGERED — IntersectionObserver eklediği class */
.burst.is-burst .burst-eyebrow { opacity: 1; transform: translateY(0); }
.burst.is-burst .burst-visual  { opacity: 1; transform: scale(1) rotate(0); }
.burst.is-burst .burst-title   { opacity: 1; transform: translateY(0) scale(1); }
.burst.is-burst .burst-body    { opacity: 1; transform: translateY(0); }
.burst.is-burst .burst-cta     { opacity: 1; transform: translateY(0); }
.burst.is-burst .burst-ray     {
    opacity: 1;
    transform: translate(-50%, 0) rotate(calc(var(--i) * 30deg)) scaleY(1);
    transition-delay: calc(var(--i) * 0.05s);
}
.burst.is-burst .burst-particle {
    opacity: 1;
    transform: translate(-50%, -50%)
               rotate(var(--a))
               translateY(calc(var(--d) * -1));
    transition-delay: calc(var(--i) * 0.04s);
}

@media (prefers-reduced-motion: reduce) {
    .burst-eyebrow, .burst-visual, .burst-title, .burst-body, .burst-cta,
    .burst-ray, .burst-particle {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Scroll Story — Apple tarzı sticky görsel + scroll animasyonu */
.scroll-story {
    position: relative;
    min-height: 200vh;
    padding: 0;
    background: #0A1628;
    color: #fff;
    overflow: clip;
}
.scroll-story-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(0,102,255,0.18), transparent 60%),
                radial-gradient(ellipse at 30% 80%, rgba(112,163,0,0.12), transparent 55%);
    pointer-events: none;
}
.scroll-story-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    padding: 100px 24px;
}
.scroll-story-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-bottom: 100px;
}
.scroll-story-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #fff;
    margin: 0;
}
.scroll-story-body {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.78);
}
.scroll-story-body :is(h2,h3,h4) { color: #fff; margin: 32px 0 12px; }
.scroll-story-body p { margin: 0 0 18px; }
.scroll-story-visual {
    position: relative;
    min-height: 100vh;
}
.scroll-story-sticky {
    position: sticky;
    top: 6vh;
    height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1400px;
}
.scroll-story-img {
    width: 100%;
    height: 100%;
    max-width: 600px;
    object-fit: contain;
    transform-style: preserve-3d;
    transition: transform 0.08s linear;
    will-change: transform;
    filter: drop-shadow(0 30px 80px rgba(0,0,0,0.45));
}
@media (max-width: 900px) {
    .scroll-story { min-height: auto; }
    .scroll-story-inner { grid-template-columns: 1fr; gap: 24px; padding: 60px 16px; }
    .scroll-story-sticky { position: static; height: 60vh; }
}
@media (prefers-reduced-motion: reduce) {
    .scroll-story-img { transition: none; transform: none !important; }
}

.product-marquee-track.is-reverse { animation-direction: reverse; }
.product-marquee:hover .product-marquee-track { animation-play-state: paused; }
.product-marquee .product-card {
    flex: 0 0 320px;
    width: 320px;
}
@keyframes productMarqueeScroll {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
    .product-marquee-track { animation: none; }
    .product-marquee { overflow: auto; }
}
.product-card {
    display: flex; flex-direction: column;
    padding: 32px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none; color: inherit;
    transition: all var(--dur) var(--ease);
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--ink);
    color: inherit;
}
.product-card-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--accent-lo); color: var(--accent);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.product-card-icon svg { width: 24px; height: 24px; }
.product-card-img {
    width: 100%; aspect-ratio: 16/10;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface);
    margin-bottom: 20px;
    display: flex; align-items: center; justify-content: center;
    padding: 12px;
}
.product-card-img img {
    max-width: 100%; max-height: 100%;
    width: auto; height: auto;
    object-fit: contain;
    transition: transform .6s var(--ease);
}
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-eyebrow {
    font-size: 0.75rem; color: var(--text-mute);
    text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600;
    margin-bottom: 8px;
}
.product-card-title {
    font-size: 1.375rem; font-weight: 700; color: var(--ink);
    margin-bottom: 12px;
}
.product-card-text { color: var(--text-soft); font-size: 0.9375rem; margin-bottom: 20px; }
.product-card-link {
    margin-top: auto; display: inline-flex; align-items: center; gap: 6px;
    color: var(--accent); font-weight: 600; font-size: 0.875rem;
}
.product-card-link svg { width: 14px; height: 14px; stroke-width: 2; transition: transform var(--dur) var(--ease); }
.product-card:hover .product-card-link svg { transform: translateX(4px); }

/* Service grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
    gap: 24px;
}

/* Service marquee — iki sıra, aynı hız, ters yön */
.service-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 60px, #000 calc(100% - 60px), transparent);
            mask-image: linear-gradient(to right, transparent, #000 60px, #000 calc(100% - 60px), transparent);
}
.service-marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: serviceMarqueeScroll var(--marquee-duration, 40s) linear infinite;
}
.service-marquee-track.is-reverse {
    animation-direction: reverse;
}
.service-marquee:hover .service-marquee-track { animation-play-state: paused; }
.service-marquee .service-card {
    flex: 0 0 280px;
    width: 280px;
}
@keyframes serviceMarqueeScroll {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
    .service-marquee-track { animation: none; }
    .service-marquee { overflow: auto; }
}
.service-card {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    transition: all var(--dur) var(--ease);
}
.service-card:hover {
    border-color: var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.service-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--accent-lo); color: var(--accent);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.service-icon svg { width: 22px; height: 22px; }
.service-title { font-size: 1.125rem; font-weight: 650; margin-bottom: 8px; }
.service-text { color: var(--text-soft); font-size: 0.9375rem; }

/* CTA card */
.cta-card {
    background: linear-gradient(135deg, var(--ink) 0%, #1a3a6e 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 64px 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.cta-title {
    color: #fff;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 12px;
}
.cta-text {
    color: rgba(255,255,255,0.8);
    font-size: 1.125rem;
    margin-bottom: 28px;
}
.cta-card .btn-primary { background: #fff; color: var(--ink); }
.cta-card .btn-primary:hover { background: var(--surface); color: var(--ink); }

/* News */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
    gap: 24px;
}
.news-card {
    padding: 0;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    text-decoration: none; color: inherit;
    transition: all var(--dur) var(--ease);
    display: block;
    overflow: hidden;
}
.news-card:hover {
    border-color: var(--border);
    box-shadow: var(--shadow-md);
    color: inherit;
}
.news-card-img { width: 100%; aspect-ratio: 16/10; overflow: hidden; background: var(--surface); }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.news-card:hover .news-card-img img { transform: scale(1.04); }
.news-card-body { padding: 20px 24px 24px; }
.news-date { font-size: 0.8125rem; color: var(--text-mute); margin-bottom: 8px; }
.news-title { font-size: 1.125rem; font-weight: 650; margin-bottom: 8px; }
.news-text { color: var(--text-soft); font-size: 0.9375rem; }

/* Footer */
.site-footer {
    background: #0A1628;
    color: rgba(255,255,255,0.7);
    padding: 64px 0 24px;
    margin-top: 80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 48px;
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.footer-brand { font-size: 1.25rem; font-weight: 800; color: #fff; margin-bottom: 12px; letter-spacing: -0.02em; }
.footer-text { font-size: 0.875rem; line-height: 1.6; }
.footer-h { color: #fff; font-weight: 650; font-size: 0.875rem; margin-bottom: 16px; }
.site-footer a { display: block; color: rgba(255,255,255,0.7); padding: 6px 0; font-size: 0.875rem; }
.site-footer a:hover { color: #fff; }
.social-row { display: flex; gap: 12px; margin-top: 16px; }
.social-row a {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0;
}
.social-row a:hover { background: rgba(255,255,255,0.16); }
.social-row svg { width: 18px; height: 18px; }
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
/* Form */
.form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 560px;
    margin: 0 auto;
}
.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.form-row input, .form-row textarea, .form-row select {
    width: 100%; padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: inherit; font-size: 0.9375rem;
    color: var(--ink); background: #fff;
    transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.form-row textarea { min-height: 140px; resize: vertical; }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-lo);
}

.notice {
    padding: 14px 18px;
    border-radius: 12px;
    background: var(--accent-lo);
    color: var(--accent-hi);
    border: 1px solid #BFDBFE;
    font-size: 0.9375rem;
    margin-bottom: 20px;
}
.notice.success { background: #ECFDF5; color: #047857; border-color: #A7F3D0; }
.notice.error   { background: #FEF2F2; color: #B91C1C; border-color: #FECACA; }

/* Page head (alt sayfalar) */
.page-hero {
    padding: 80px 0 40px;
    background: var(--surface);
    text-align: center;
    border-bottom: 1px solid var(--border-soft);
}
.page-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 12px;
}
.page-hero-sub {
    font-size: 1.125rem; color: var(--text-soft); max-width: 640px; margin: 0 auto;
}
.prose {
    max-width: 760px; margin: 0 auto; padding: 60px 24px;
    font-size: 1.0625rem; line-height: 1.75; color: var(--text);
}

/* Page split (sol/sağ pane'li sayfa layout'u) */
.page-split { display: grid; gap: 32px; align-items: start; }
.page-split-l  { grid-template-columns: 280px 1fr; }
.page-split-r  { grid-template-columns: 1fr 280px; }
.page-split-3  { grid-template-columns: 240px 1fr 240px; }
.page-pane { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 20px; position: sticky; top: 100px; }
.page-pane .prose { padding: 0; max-width: 100%; font-size: 0.9375rem; }
.page-main { min-width: 0; }
@media (max-width: 900px) {
    .page-split, .page-split-l, .page-split-r, .page-split-3 { grid-template-columns: 1fr; }
    .page-pane { position: static; }
}

/* Site-level pane wrapper (_Layout) — sistem sayfa ve normal sayfaları sarar */
.site-pane-wrap { display: grid; gap: 24px; align-items: start; padding-top: 32px; padding-bottom: 32px; }
.site-pane-wrap.split-l  { grid-template-columns: 280px 1fr; }
.site-pane-wrap.split-r  { grid-template-columns: 1fr 280px; }
.site-pane-wrap.split-3  { grid-template-columns: 260px 1fr 260px; }
.site-pane { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 20px; position: sticky; top: 100px; }
.site-pane .prose { padding: 0; max-width: 100%; font-size: 0.9375rem; }
.site-pane-main { min-width: 0; }
.site-pane-main > section:first-child,
.site-pane-main > article:first-child > section:first-child { padding-top: 0; }
@media (max-width: 1024px) {
    .site-pane-wrap, .site-pane-wrap.split-l, .site-pane-wrap.split-r, .site-pane-wrap.split-3 { grid-template-columns: 1fr; }
    .site-pane { position: static; }
}
.prose h2 { font-size: 1.5rem; margin: 32px 0 12px; }
.prose h3 { font-size: 1.25rem; margin: 24px 0 10px; }
.prose p { margin: 0 0 16px; }
.prose a { color: var(--accent); }
.prose img { border-radius: 12px; margin: 24px 0; }

/* ===================== Referanslar ===================== */
.ref-hero {
    padding: 80px 0 40px;
    background: linear-gradient(180deg, var(--surface) 0%, #fff 100%);
    text-align: center;
}

.ref-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 32px;
    align-items: start;
}
@media (max-width: 900px) { .ref-layout { grid-template-columns: 1fr; } }

/* Sol sidebar */
.ref-sidebar {
    position: sticky; top: 96px;
    max-height: calc(100vh - 120px);
    display: flex; flex-direction: column;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}
@media (max-width: 900px) { .ref-sidebar { position: static; max-height: 480px; } }
.ref-search {
    position: relative;
    padding: 14px;
    border-bottom: 1px solid var(--border-soft);
}
.ref-search svg {
    position: absolute; left: 26px; top: 50%; transform: translateY(-50%);
    width: 16px; height: 16px; color: var(--text-mute);
    pointer-events: none;
}
.ref-search input {
    width: 100%; padding: 10px 12px 10px 38px;
    border: 1px solid var(--border); border-radius: 10px;
    font-size: 0.875rem; font-family: inherit;
    background: var(--surface);
}
.ref-search input:focus { outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 3px var(--accent-lo); }

.ref-list {
    flex: 1;
    overflow-y: auto;
    padding: 8px;
}
.ref-list-item {
    display: flex; align-items: center; gap: 10px;
    padding: 8px;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: background var(--dur) var(--ease);
    cursor: pointer;
}
.ref-list-item:hover { background: var(--surface); color: inherit; }
.ref-list-item img,
.ref-list-logo-fallback {
    width: 40px; height: 40px;
    border-radius: 8px;
    object-fit: contain;
    background: var(--surface-2);
    border: 1px solid var(--border-soft);
    padding: 4px;
    flex-shrink: 0;
}
.ref-list-logo-fallback {
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.875rem; color: var(--accent);
    padding: 0;
}
.ref-list-body { min-width: 0; }
.ref-list-name {
    font-size: 0.875rem; font-weight: 600; color: var(--ink);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ref-list-city { font-size: 0.75rem; color: var(--text-mute); margin-top: 2px; }

.ref-list-empty {
    padding: 24px; text-align: center;
    color: var(--text-mute); font-size: 0.875rem;
}

/* Identity card (üst hero) */
.ref-identity {
    background: linear-gradient(135deg, #0A1628 0%, #1a3a6e 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.ref-identity::after {
    content: '';
    position: absolute;
    right: -100px; top: -100px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(0,102,255,0.30) 0%, transparent 60%);
    pointer-events: none;
}
.ref-identity-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.8125rem; font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}
.ref-identity-eyebrow .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #34D399; box-shadow: 0 0 0 4px rgba(52,211,153,0.30);
}
.ref-identity-title {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}
.ref-identity-sub {
    color: rgba(255,255,255,0.78);
    font-size: 1.0625rem;
    margin-bottom: 32px;
    max-width: 560px;
}
.ref-identity-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.12);
    position: relative; z-index: 1;
}
.ref-identity-stats > div { display: flex; flex-direction: column; gap: 4px; }
.ref-identity-stats strong {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800; color: #fff; letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}
.ref-identity-stats span { font-size: 0.8125rem; color: rgba(255,255,255,0.6); }

/* HEX (arı peteği) grid */
.hex-grid {
    --hex-w: 170px;
    --hex-h: 196px;
    --hex-gap: 14px;
    --hex-row-step: calc(var(--hex-h) * 0.75 + var(--hex-gap) / 2);
    --hex-shift: calc(var(--hex-h) * 0.375);
    display: grid;
    grid-template-columns: repeat(auto-fill, calc(var(--hex-w) + var(--hex-gap)));
    grid-auto-rows: var(--hex-row-step);
    justify-content: center;
    padding-bottom: var(--hex-shift); /* offset edilen son satır için yer */
}
.hex.hex-shift { transform: translateY(var(--hex-shift)); }
.hex {
    width: var(--hex-w); height: var(--hex-h);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--border);
    transition: transform var(--dur) var(--ease);
    text-decoration: none;
    overflow: hidden;
    position: relative;
}
.hex::before {
    content: '';
    position: absolute; inset: 2px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(180deg, #fff 0%, #FAFBFC 100%);
    pointer-events: none;
    z-index: 0;
}
.hex:hover { transform: scale(1.06); z-index: 5; }
.hex:hover { background: var(--accent); }
.hex-inner {
    position: relative; z-index: 1;
    width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 28px 18px 22px;
    gap: 8px;
}
.hex-logo {
    max-width: 80%; max-height: 56px;
    object-fit: contain;
    filter: saturate(0.85);
    transition: filter var(--dur) var(--ease);
}
.hex:hover .hex-logo { filter: saturate(1.15); }
.hex-logo-fallback {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--accent-lo);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9375rem; font-weight: 800; letter-spacing: -0.01em;
}
.hex-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.2;
    text-align: center;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-width: 92%;
}
.hex[style*="display: none"], .hex[style*="display:none"] { display: none !important; }

@media (max-width: 600px) {
    .hex-grid { --hex-w: 140px; --hex-h: 162px; }
}

/* Türkiye SVG haritası (gerçek il path'leri) */
.tr-map-wrap {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    position: relative;
}
.tr-svg-wrap {
    position: relative;
    width: 100%;
}
.tr-svg {
    width: 100%; height: auto;
    display: block;
    max-height: 75vh;
}
.tr-province path,
.tr-province polygon {
    fill: #F8FAFC;
    stroke: #94A3B8;
    stroke-width: 0.6;
    transition: fill var(--dur) var(--ease), stroke var(--dur) var(--ease);
}
.tr-province.has-data path,
.tr-province.has-data polygon {
    fill: rgba(0, 102, 255, var(--p-alpha, 0.5));
    stroke: #fff;
    stroke-width: 0.8;
}
.tr-province:hover path,
.tr-province:hover polygon {
    fill: var(--accent-hi);
    stroke: #fff;
}
.tr-province.is-active path,
.tr-province.is-active polygon {
    fill: var(--ink);
    stroke: var(--accent);
    stroke-width: 1.4;
}
.tr-il-label {
    fill: #475569;
    font-size: 7.5px;
    font-weight: 600;
    pointer-events: none;
    font-family: var(--font);
    paint-order: stroke;
    stroke: rgba(255,255,255,0.9);
    stroke-width: 1.4;
    letter-spacing: 0;
}
.tr-province.has-data .tr-il-label {
    fill: #fff;
    stroke: rgba(10, 22, 40, 0.4);
    stroke-width: 1.2;
}
.tr-province:hover .tr-il-label,
.tr-province.is-active .tr-il-label {
    fill: #fff;
    stroke: rgba(10, 22, 40, 0.5);
    stroke-width: 1.4;
}
.tr-il-count {
    fill: #800020;
    font-size: 11px;
    font-weight: 800;
    pointer-events: none;
    font-family: var(--font);
    paint-order: stroke;
    stroke: rgba(255, 255, 255, 0.95);
    stroke-width: 1.6;
    letter-spacing: -0.01em;
}
.tr-province.is-active .tr-il-count {
    fill: #5c0019;
}
.tr-tooltip {
    position: absolute;
    display: none;
    padding: 6px 12px;
    background: var(--ink);
    color: #fff;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    pointer-events: none;
    z-index: 20;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

/* ---------- REFERANS DETAY ---------- */
.ref-back-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--text-soft); font-size: 0.875rem; font-weight: 500;
    margin-bottom: 20px; transition: color var(--dur) var(--ease);
}
.ref-back-link:hover { color: var(--ink); }

.ref-detail-hero {
    display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center;
    padding: 28px; background: var(--bg); border: 1px solid var(--border);
    border-radius: 18px; box-shadow: var(--shadow-sm);
}
.ref-detail-logo {
    width: 120px; height: 120px; border-radius: 16px; overflow: hidden;
    background: var(--surface); display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border-soft);
}
.ref-detail-logo img { max-width: 80%; max-height: 80%; object-fit: contain; }
.ref-detail-logo-fallback {
    font-size: 2.25rem; font-weight: 700; color: var(--ink); letter-spacing: -0.02em;
}
.ref-detail-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--accent); font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
    margin-bottom: 8px;
}
.ref-detail-eyebrow .dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}
.ref-detail-title {
    font-size: clamp(1.5rem, 3vw, 2rem); color: var(--ink); margin-bottom: 10px;
}
.ref-detail-city {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--text-soft); font-size: 0.9375rem; font-weight: 500;
}

.ref-detail-grid {
    display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: start;
}
@media (max-width: 900px) {
    .ref-detail-hero { grid-template-columns: 1fr; text-align: center; }
    .ref-detail-logo { margin: 0 auto; }
    .ref-detail-grid { grid-template-columns: 1fr; }
}

.ref-detail-main { min-width: 0; }
.ref-detail-quote {
    background: var(--surface); border-left: 4px solid var(--accent);
    border-radius: 12px; padding: 24px 28px; margin: 0 0 24px; color: var(--ink);
}
.ref-detail-quote p {
    font-size: 1.0625rem; line-height: 1.6; margin: 8px 0 12px;
    color: var(--ink-soft); font-style: italic;
}
.ref-detail-quote footer {
    font-size: 0.875rem; color: var(--text-soft); font-weight: 500;
}

.ref-detail-placeholder {
    padding: 28px; border: 1px dashed var(--border); border-radius: 16px; background: var(--bg);
}
.ref-detail-placeholder h2 {
    font-size: 1.25rem; margin-bottom: 8px;
}
.ref-detail-placeholder > p {
    color: var(--text-soft); font-size: 0.9375rem; margin-bottom: 20px;
}
.ref-detail-placeholder-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 14px;
}
.ref-detail-placeholder-grid > div {
    padding: 14px; background: var(--surface); border-radius: 10px;
    display: flex; flex-direction: column; gap: 4px;
}
.ref-detail-placeholder-grid strong {
    font-size: 0.75rem; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600;
}
.ref-detail-placeholder-grid span {
    font-size: 1rem; color: var(--ink); font-weight: 600;
}

.ref-detail-card {
    padding: 24px; background: var(--bg); border: 1px solid var(--border);
    border-radius: 16px; box-shadow: var(--shadow-sm); position: sticky; top: 88px;
}
.ref-detail-card h3 {
    font-size: 1.125rem; margin-bottom: 10px;
}
.ref-detail-card p {
    color: var(--text-soft); font-size: 0.9375rem; line-height: 1.55; margin: 0;
}

.ref-contact-row {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 8px 0; border-bottom: 1px solid var(--border-soft);
    color: var(--ink); font-size: 0.9375rem;
}
.ref-contact-row:last-of-type { border-bottom: 0; }
.ref-contact-row svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.ref-contact-row a { color: var(--ink); }
.ref-contact-row a:hover { color: var(--accent); }
.ref-contact-row span { color: var(--ink-soft); line-height: 1.45; }

.ref-detail-comments {
    margin-top: 24px; padding: 28px;
    background: var(--bg); border: 1px solid var(--border); border-radius: 16px;
    box-shadow: var(--shadow-sm);
}
.ref-detail-comments h2 { font-size: 1.25rem; margin-bottom: 16px; }
.ref-comment-list { display: flex; flex-direction: column; gap: 12px; }
.ref-comment {
    padding: 16px 18px; background: var(--surface); border-left: 3px solid var(--accent);
    border-radius: 10px;
}
.ref-comment p { margin: 0 0 6px; color: var(--ink-soft); font-size: 0.9375rem; line-height: 1.55; }
.ref-comment footer { color: var(--text-soft); font-size: 0.8125rem; font-weight: 500; }

.ref-detail-map-wrap {
    margin-top: 24px; padding: 28px;
    background: var(--bg); border: 1px solid var(--border); border-radius: 16px;
    box-shadow: var(--shadow-sm);
}
.ref-detail-map-wrap h2 { font-size: 1.25rem; margin-bottom: 16px; }
.ref-detail-map {
    border-radius: 12px; overflow: hidden; border: 1px solid var(--border); height: 360px;
}
.ref-detail-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- LOGO MARQUEE ---------- */
.logo-marquee {
    position: relative;
    overflow: hidden;
    padding: 18px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.logo-marquee-track {
    display: flex;
    gap: 72px;
    width: max-content;
    animation: logo-marquee-scroll 60s linear infinite;
}
.logo-marquee:hover .logo-marquee-track { animation-play-state: paused; }
.logo-marquee-item {
    flex: 0 0 auto;
    width: 220px; height: 110px;
    display: flex; align-items: center; justify-content: center;
    padding: 14px 20px;
    background: transparent;
    border: 0;
    transition: transform var(--dur) var(--ease);
}
.logo-marquee-item:hover {
    transform: translateY(-3px);
}
.logo-marquee-item img {
    max-width: 100%; max-height: 100%;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .75;
    transition: filter var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.logo-marquee-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}
/* ---------- HABER SLIDER (full-bleed) ---------- */
.news-slider-full {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    background: var(--ink);
}
.news-slider {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    width: 100%;
    height: clamp(220px, 30vw, 380px);
}
@media (max-width: 700px) { .news-slider { height: 55vh; max-height: 380px; } }
.news-slider--compact {
    height: clamp(155px, 21vw, 266px);
    background: linear-gradient(135deg, #0A1628 0%, #1a3a6e 100%);
}
.news-slider--compact .news-slider-track { padding: 0; }
.news-slider--compact .news-slide {
    flex: 0 0 60%;
    transform: scale(0.85);
    opacity: 0.4;
    filter: blur(2px);
    pointer-events: none;
    transition: transform .5s var(--ease), opacity .5s var(--ease), filter .5s var(--ease);
}
.news-slider--compact .news-slide.is-active {
    transform: scale(1);
    opacity: 1;
    filter: none;
    pointer-events: auto;
}
.news-slider--compact .news-slide-content {
    left: 50%; transform: translateX(-50%);
    text-align: center; padding: 24px 32px 28px;
}
@media (max-width: 700px) {
    .news-slider--compact { height: 38vh; max-height: 266px; }
    .news-slider--compact .news-slide { flex-basis: 78%; }
}
.news-slider-track { display: flex; height: 100%; transition: transform .55s cubic-bezier(.22,.61,.36,1); }
.news-slide {
    flex: 0 0 100%; position: relative; display: block;
    color: #fff; text-decoration: none; overflow: hidden;
}
.news-slide-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; background: var(--ink); transition: transform 8s linear; }
.news-slide-bg--placeholder { background: linear-gradient(135deg, var(--ink) 0%, var(--accent-hi) 100%); }
.news-slide:hover .news-slide-bg { transform: scale(1.04); }
.news-slide::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(15,23,42,0.0) 0%, rgba(15,23,42,0.45) 45%, rgba(15,23,42,0.9) 100%);
}
.news-slide-content {
    position: absolute; left: 50%; right: auto; bottom: 0;
    transform: translateX(-50%);
    padding: 36px 24px 40px;
    z-index: 1;
    width: 100%;
    max-width: 820px;
    text-align: center;
}
@media (max-width: 700px) { .news-slide-content { padding: 24px 18px 28px; } }
.news-slide-date {
    display: inline-block;
    font-size: 0.8125rem; font-weight: 600; letter-spacing: .04em;
    background: rgba(255,255,255,0.18); color: #fff;
    padding: 4px 10px; border-radius: 999px; backdrop-filter: blur(4px);
    margin-bottom: 12px;
}
.news-slide-title {
    color: #fff; font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    margin: 0 0 12px; line-height: 1.15;
}
.news-slide-sub {
    color: rgba(255,255,255,0.85); font-size: 1rem; line-height: 1.5;
    margin: 0 0 16px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.news-slide-cta {
    display: inline-block;
    padding: 10px 18px; background: #fff; color: var(--ink);
    border-radius: 999px; font-weight: 600; font-size: 0.875rem;
    transition: transform .2s, box-shadow .2s;
}
.news-slide:hover .news-slide-cta { transform: translateX(4px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }

.news-slider-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.18); color: #fff; border: 0;
    font-size: 24px; line-height: 1; cursor: pointer; z-index: 2;
    backdrop-filter: blur(6px);
    transition: background .15s, transform .15s;
}
.news-slider-nav:hover { background: rgba(255,255,255,0.35); transform: translateY(-50%) scale(1.06); }
.news-slider-nav.prev { left: 18px; }
.news-slider-nav.next { right: 18px; }
.news-slider-dots {
    position: absolute; bottom: 16px; right: 24px;
    display: flex; gap: 6px; z-index: 2;
}
.news-slider-dots button {
    width: 8px; height: 8px; border-radius: 50%;
    border: 0; background: rgba(255,255,255,0.4); cursor: pointer;
    padding: 0; transition: width .2s, background .2s;
}
.news-slider-dots button:hover { background: rgba(255,255,255,0.7); }
.news-slider-dots button.is-active { background: #fff; width: 22px; border-radius: 4px; }

/* Yardım sayfasında SSS bölümü (komple açılır/kapanır) */
.docs-faq-wrap {
    max-width: 860px; margin: 28px auto 0;
    background: var(--surface, #f8fafc);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 8px 16px;
    transition: background .15s, border-color .15s;
}
.docs-faq-wrap[open] { background: #fff; border-color: var(--accent); padding-bottom: 18px; }
.docs-faq-wrap-summary {
    list-style: none;
    cursor: pointer;
    padding: 10px 4px;
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    font-size: 1.05rem; font-weight: 700; color: var(--ink);
    user-select: none;
}
.docs-faq-wrap-summary::-webkit-details-marker { display: none; }
.docs-faq-wrap-icon { color: var(--accent); transition: transform .25s ease; flex: 0 0 auto; }
.docs-faq-wrap[open] .docs-faq-wrap-icon { transform: rotate(180deg); }

/* ---------- SSS (FAQ) ---------- */
.faq-section { padding: 60px 0; background: var(--bg, #fff); }
.faq-head { text-align: center; max-width: 760px; margin: 0 auto 32px; }
.faq-head .section-title { margin: 6px 0; }
.faq-sub { color: var(--text-soft); font-size: 1rem; line-height: 1.55; margin: 6px 0 0; }
.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .15s, box-shadow .15s;
}
.faq-item:hover { border-color: var(--accent); }
.faq-item[open] {
    border-color: var(--accent);
    box-shadow: 0 8px 24px -10px rgba(0, 102, 255, 0.18);
}
.faq-q {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 20px;
    cursor: pointer;
    list-style: none;
    font-weight: 600; font-size: 1rem; color: var(--ink);
    line-height: 1.4;
    user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q-text { flex: 1; }
.faq-q-icon {
    flex: 0 0 auto;
    color: var(--accent);
    transition: transform .25s ease;
}
.faq-item[open] .faq-q-icon { transform: rotate(180deg); }
.faq-a {
    padding: 0 20px 18px;
    color: var(--text-soft);
    font-size: 0.9375rem;
    line-height: 1.6;
    border-top: 1px solid var(--border-soft);
    padding-top: 14px;
}
.faq-a p { margin: 0 0 10px; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a ul, .faq-a ol { margin: 8px 0; padding-left: 22px; }
.faq-a a { color: var(--accent); }

.faq-more {
    margin: 32px auto 0;
    padding: 24px 28px;
    background: linear-gradient(135deg, var(--accent-lo, rgba(0,102,255,0.08)) 0%, transparent 100%);
    border: 1px solid var(--border);
    border-radius: 14px;
    max-width: 860px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 18px; flex-wrap: wrap;
}
.faq-more-text { font-weight: 600; color: var(--ink); font-size: 1.0625rem; }
@media (max-width: 600px) {
    .faq-q { padding: 14px 16px; font-size: 0.95rem; }
    .faq-a { padding: 0 16px 14px; padding-top: 12px; font-size: 0.875rem; }
    .faq-more { padding: 18px 20px; text-align: center; justify-content: center; }
}

/* ---------- DİL GEÇİŞ BLUR+DALGA (sol üstten sağ alta) ---------- */
.lang-wave {
    position: fixed; inset: 0;
    z-index: 100002;
    background: transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    clip-path: circle(0% at 0% 0%);
    pointer-events: none;
    opacity: 1;
}
.lang-wave.is-active {
    animation: lang-wave-anim .75s cubic-bezier(.55, 0, .25, 1) forwards;
}
.lang-wave-text {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(.6);
    color: var(--ink, #0a1628); font-weight: 800; letter-spacing: .12em;
    font-size: clamp(2.2rem, 6vw, 4rem);
    opacity: 0;
    text-shadow: 0 4px 30px rgba(255,255,255,0.6);
}
.lang-wave.is-active .lang-wave-text {
    animation: lang-wave-text .55s cubic-bezier(.34, 1.56, .64, 1) .1s forwards;
}
@keyframes lang-wave-anim {
    0%   { clip-path: circle(0% at 0% 0%);   backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%); }
    100% { clip-path: circle(170% at 0% 0%); backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%); }
}
@keyframes lang-wave-text {
    0%   { transform: translate(-50%, -50%) scale(.6); opacity: 0; }
    60%  { transform: translate(-50%, -50%) scale(1.05); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

/* ---------- GLOBAL LOADER (sayfa geçişi · form gönderim) ---------- */
.global-loader {
    position: fixed; inset: 0; z-index: 99999;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(3px) saturate(120%);
    -webkit-backdrop-filter: blur(3px) saturate(120%);
    display: none;
    align-items: center; justify-content: center;
    animation: gl-fade .18s ease both;
}
.global-loader.is-on { display: flex; }
.global-loader-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    padding: 26px 36px;
    box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.25),
                0 12px 24px -10px rgba(15, 23, 42, 0.12);
    display: flex; flex-direction: column; align-items: center; gap: 14px;
    min-width: 200px;
}
.global-loader-spinner {
    width: 44px; height: 44px;
    border: 3px solid rgba(0, 102, 255, 0.12);
    border-top-color: var(--accent, #0066ff);
    border-right-color: var(--accent, #0066ff);
    border-radius: 50%;
    animation: gl-spin .85s cubic-bezier(.45, .05, .55, .95) infinite;
}
.global-loader-text {
    color: var(--ink, #0f172a);
    font-size: 13px; font-weight: 500;
    letter-spacing: 0.02em;
}
@keyframes gl-spin { to { transform: rotate(360deg); } }
@keyframes gl-fade { from { opacity: 0; } to { opacity: 1; } }

/* ---------- REFERANSLAR ÜST HERO (full-bleed, minimalist) ---------- */
.ref-hero--full {
    background: linear-gradient(135deg, #0A1628 0%, #1a3a6e 100%);
    color: #fff;
    margin: 0;
    width: 100%;
    min-height: 130px;
    position: relative;
    overflow: hidden;
}
.ref-hero--full::after {
    content: ''; position: absolute; right: -60px; top: -60px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(0,102,255,0.35) 0%, transparent 60%);
    pointer-events: none; z-index: 0;
}
.ref-hero-inner {
    max-width: 1280px; margin: 0 auto;
    padding: 14px 24px;
    text-align: center;
    position: relative; z-index: 1;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 4px;
    min-height: 130px;
}
.ref-hero-title {
    font-size: clamp(1.3rem, 1.6vw + .6rem, 1.7rem);
    line-height: 1.2; font-weight: 700;
    color: #fff;
    margin: 0;
}
.ref-hero-sub {
    font-size: 0.9375rem; line-height: 1.5;
    color: rgba(255,255,255,0.88);
    margin: 0; max-width: 80ch;
}
.ref-hero-stats {
    display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
    margin-top: 8px;
}
.ref-hero-stats > div {
    display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.ref-hero-stats strong { font-size: 1.35rem; font-weight: 800; line-height: 1; color: #fff; }
.ref-hero-stats span {
    font-size: 0.68rem; text-transform: uppercase; letter-spacing: .08em;
    color: rgba(255,255,255,0.7);
}
@media (max-width: 600px) {
    .ref-hero-inner { padding: 12px 18px; min-height: 120px; }
    .ref-hero-stats { gap: 22px; margin-top: 4px; }
    .ref-hero-stats strong { font-size: 1.15rem; }
}

/* ---------- HİZMET DETAY (sol liste + ana içerik) ---------- */
.hizmet-page { padding: 28px 0 60px; background: var(--bg, #fff); }
.hizmet-hero--full + .hizmet-page { padding-top: 28px; }
/* main içeride hero ek margin yaratmasın */
main > .hizmet-hero--full:first-child { margin-top: 0; }
.hizmet-layout { display: grid; grid-template-columns: 280px 1fr; gap: 28px; align-items: start; }
@media (max-width: 980px) { .hizmet-layout { display: block; gap: 0; } }

.hizmet-side { position: sticky; top: 100px; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 14px; max-height: calc(100vh - 130px); display: flex; flex-direction: column; }
.hizmet-side-head { display: none; }
.hizmet-side-fab { display: none; }
.hizmet-side-backdrop { display: none; }
@media (max-width: 980px) {
    /* Mobil: sidebar drawer */
    .hizmet-side {
        position: fixed !important;
        top: 0 !important; left: 0 !important; bottom: 0 !important;
        width: min(320px, 88vw);
        max-height: none;
        z-index: 100001;
        border: 0;
        border-radius: 0;
        box-shadow: 8px 0 32px rgba(0,0,0,.18);
        transform: translateX(-105%);
        transition: transform .28s cubic-bezier(.2,.7,.3,1);
        padding: 0;
    }
    .hizmet-side.is-open { transform: translateX(0); }
    .hizmet-side-head {
        display: flex !important; align-items: center; justify-content: space-between;
        padding: 14px 18px;
        border-bottom: 1px solid var(--border);
        background: var(--surface, #f8fafc);
        font-size: 0.95rem;
    }
    .hizmet-side-close {
        display: inline-flex; align-items: center; justify-content: center;
        width: 34px; height: 34px;
        background: transparent; color: var(--text);
        border: 0; border-radius: 8px; cursor: pointer;
    }
    .hizmet-side-close:hover { background: rgba(0,0,0,0.05); }
    .hizmet-side-search { padding: 12px 14px 6px; margin-bottom: 0; }
    .hizmet-side-list { padding: 6px 10px 16px; flex: 1; overflow-y: auto; }
    .hizmet-side-backdrop {
        display: block;
        position: fixed; inset: 0; z-index: 100000;
        background: rgba(0,0,0,.45);
        opacity: 0;
        pointer-events: none;
        transition: opacity .25s ease;
    }
    .hizmet-side-backdrop.is-visible { opacity: 1; pointer-events: auto; }
    .hizmet-side-fab {
        display: inline-flex; align-items: center; gap: 8px;
        position: fixed; left: 50%; bottom: 18px;
        transform: translateX(-50%);
        z-index: 998;
        padding: 12px 20px;
        background: var(--accent, #0066ff); color: #fff;
        border: 0; border-radius: 999px;
        font-weight: 600; font-size: 14px; font-family: inherit;
        cursor: pointer;
        box-shadow: 0 10px 28px rgba(0,102,255,0.38), 0 2px 6px rgba(0,0,0,.12);
        transition: transform .15s ease, box-shadow .15s ease, opacity .2s ease;
    }
    .hizmet-side-fab:hover { transform: translateX(-50%) translateY(-1px); }
    body.hizmet-drawer-open .hizmet-side-fab { opacity: 0; pointer-events: none; transform: translate(-50%, 16px); }
    body.hizmet-drawer-open { overflow: hidden; }
}
.hizmet-side-search { position: relative; margin-bottom: 10px; }
.hizmet-side-search svg { position: absolute; left: 11px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.hizmet-side-search input { width: 100%; padding: 9px 12px 9px 34px; border: 1px solid var(--border); border-radius: 10px; font-size: 0.875rem; font-family: inherit; background: var(--surface, #f8fafc); }
.hizmet-side-search input:focus { outline: 0; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 3px var(--accent-lo); }
.hizmet-side-list { list-style: none; padding: 0; margin: 0; flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 2px; }
.hizmet-side-list li a { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 8px; color: var(--ink); text-decoration: none; font-size: 0.875rem; line-height: 1.3; transition: background .12s; }
.hizmet-side-list li a:hover { background: var(--surface, #f1f5f9); color: var(--accent); }
.hizmet-side-list li.is-active a { background: var(--accent-lo); color: var(--accent); font-weight: 600; }
.hizmet-side-list li img { width: 32px; height: 32px; object-fit: contain; background: var(--surface, #f8fafc); border-radius: 6px; padding: 3px; flex: 0 0 auto; }
.hizmet-side-list-dot { width: 8px; height: 8px; background: var(--border); border-radius: 50%; margin: 0 12px 0 4px; }
.hizmet-side-list li.is-active .hizmet-side-list-dot { background: var(--accent); }
.hizmet-side-list-name { word-break: break-word; }
.hizmet-side-empty { color: var(--muted); font-size: 0.8125rem; padding: 12px 6px 0; text-align: center; }

.hizmet-main { min-width: 0; }
.hizmet-hero {
    background: linear-gradient(135deg, #0A1628 0%, #1a3a6e 100%);
    color: #fff;
    border-radius: 18px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: stretch;
    min-height: 240px;
    position: relative;
}
/* Full-bleed varyant: kenardan kenara, üstte sıfır, oval'siz */
.hizmet-hero--full {
    border-radius: 0;
    margin: 0;
    width: 100%;
    grid-template-columns: 1fr;
    min-height: 180px;
}
.hizmet-hero--full .hizmet-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 240px 1fr;
    align-items: center;
    position: relative; z-index: 1;
    padding: 8px 0;
}
.hizmet-hero--full .hizmet-hero-icon {
    padding: 14px 18px;
    background: transparent;
    border-right: 0;
    align-items: center;
    text-align: center;
}
.hizmet-hero--full .hizmet-hero-text  {
    padding: 18px 32px;
    text-align: center;
    align-items: center;
}
.hizmet-hero--full .hizmet-hero-sub { max-width: 80ch; margin-left: auto; margin-right: auto; }
.hizmet-hero--full .hizmet-hero-actions { justify-content: center; }
.hizmet-hero--full .hizmet-hero-icon > img {
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
    max-height: 100px;
}
.hizmet-hero--full .hizmet-hero-title {
    font-size: clamp(1.3rem, 1.6vw + .6rem, 1.7rem);
    margin-bottom: 8px;
    color: #fff !important;
}
.hizmet-hero--full .hizmet-hero-sub   { font-size: 0.9375rem; line-height: 1.5; color: rgba(255,255,255,0.88); }
.hizmet-hero--full .hizmet-hero-actions { margin-top: 12px; }
@media (max-width: 720px) {
    .hizmet-hero--full .hizmet-hero-inner { grid-template-columns: 1fr; }
}
.hizmet-hero::after {
    content: ''; position: absolute; right: -60px; top: -60px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(0,102,255,0.35) 0%, transparent 60%);
    pointer-events: none; z-index: 0;
}
.hizmet-hero-icon {
    background: rgba(255,255,255,0.08);
    padding: 28px 24px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 14px;
    position: relative; z-index: 1;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.hizmet-hero-icon > img { max-width: 100%; max-height: 140px; object-fit: contain; background: #fff; padding: 14px; border-radius: 12px; box-shadow: 0 6px 20px rgba(0,0,0,0.18); }
.hizmet-hero-icon > svg { color: rgba(255,255,255,0.55); }
.hizmet-hero-doc-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px;
    background: var(--accent, #0066ff); color: #fff;
    border-radius: 999px; font-size: 0.8125rem; font-weight: 600;
    text-decoration: none; white-space: nowrap;
    transition: background .12s, transform .12s;
}
.hizmet-hero-doc-btn:hover { background: var(--accent-hi, #0052cc); transform: translateY(-1px); }
.hizmet-hero-text {
    padding: 32px 36px;
    display: flex; flex-direction: column; justify-content: center;
    position: relative; z-index: 1;
    min-width: 0;
}
.hizmet-hero-title {
    font-size: clamp(1.5rem, 2vw + .8rem, 2.1rem);
    line-height: 1.18; font-weight: 700;
    margin: 0 0 12px;
}
.hizmet-hero-sub { font-size: 1rem; line-height: 1.6; opacity: 0.88; margin: 0; }
.hizmet-hero-actions { margin-top: 18px; display: flex; gap: 10px; flex-wrap: wrap; }
.hizmet-hero-watch {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 18px;
    background: rgba(255,255,255,0.12); color: #fff;
    border: 1px solid rgba(255,255,255,0.2); border-radius: 999px;
    font-size: 0.875rem; font-weight: 600;
    text-decoration: none;
    transition: background .12s;
}
.hizmet-hero-watch:hover { background: rgba(255,255,255,0.2); }
@media (max-width: 720px) {
    .hizmet-hero { grid-template-columns: 1fr; }
    .hizmet-hero-icon { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 24px; }
    .hizmet-hero-icon > img { max-height: 110px; }
    .hizmet-hero-text { padding: 24px 22px; }
}

.hizmet-body { margin: 32px 0; }
.hizmet-section { margin: 36px 0; }
.hizmet-section h2 { font-size: 1.25rem; margin: 0 0 14px; color: var(--ink); }

/* ---------- HİZMET DETAY KART (eski hero card stil — backward compat) ---------- */
.service-hero-card {
    background: linear-gradient(135deg, #0A1628 0%, #1a3a6e 100%);
    color: #fff;
    padding: 0;
    overflow: hidden;
}
.service-hero-card::after {
    content: '';
    position: absolute;
    left: -80px; top: -80px;
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(0,102,255,0.35) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}
.service-hero-card-grid {
    grid-template-columns: 1fr 360px;
    gap: 0;
    align-items: stretch;
    min-height: 320px;
    position: relative; z-index: 1;
}
.service-hero-card-text {
    padding: 40px 44px;
    display: flex; flex-direction: column; justify-content: center;
    background: transparent;
}

.service-hero-card-img {
    width: auto; height: auto;
    background: #fff;
    padding: 32px;
    border-radius: 0;
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.service-hero-card-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
@media (max-width: 800px) {
    .service-hero-card-grid { grid-template-columns: 1fr; min-height: 0; }
    .service-hero-card-img { min-height: 220px; }
    .service-hero-card-text { padding: 28px 24px; }
}

.service-hero-actions {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-top: 4px;
}
.service-hero-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px; border-radius: 999px;
    font-weight: 600; font-size: 0.9375rem; text-decoration: none;
    background: rgba(255,255,255,0.12); color: #fff;
    border: 1px solid rgba(255,255,255,0.22);
    transition: background .15s, transform .15s, border-color .15s, color .15s;
}
.service-hero-btn:hover { background: rgba(255,255,255,0.24); color: #fff; border-color: rgba(255,255,255,0.4); transform: translateY(-1px); }
.service-hero-btn--primary { background: #fff; color: var(--ink); border-color: #fff; }
.service-hero-btn--primary:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ---------- HABER LİSTE ---------- */
.news-list-head {
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    flex-wrap: wrap; margin-bottom: 24px;
}
.news-search {
    position: relative; display: flex; align-items: center;
    background: var(--bg); border: 1px solid var(--border); border-radius: 999px;
    padding: 0 14px 0 14px; min-width: 280px;
    transition: border-color .15s, box-shadow .15s;
}
.news-search:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-lo); }
.news-search svg { color: var(--text-soft); flex-shrink: 0; }
.news-search input {
    flex: 1; border: 0; background: transparent; padding: 10px 8px; outline: none;
    font-size: 0.9375rem; color: var(--ink); font-family: inherit;
}

.news-list { display: flex; flex-direction: column; }
.news-row {
    display: grid; grid-template-columns: 180px 1fr 32px; gap: 22px; align-items: center;
    padding: 18px 20px;
    text-decoration: none; color: var(--ink);
    border-bottom: 1px solid var(--border-soft);
    border-left: 3px solid transparent;
    transition: background .15s, border-left-color .15s, padding-left .15s;
}
.news-row:hover { background: var(--surface); border-left-color: var(--accent); padding-left: 24px; }
.news-row:last-child { border-bottom: 0; }
@media (max-width: 700px) {
    .news-row { grid-template-columns: 90px 1fr; gap: 14px; padding: 14px 12px; }
    .news-row-arrow { display: none; }
}
.news-row-img {
    aspect-ratio: 16 / 10; overflow: hidden; border-radius: 10px;
    background: var(--surface); flex-shrink: 0;
}
.news-row-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.news-row:hover .news-row-img img { transform: scale(1.05); }
.news-row-img-empty { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--text-soft); }
.news-row-body { min-width: 0; }
.news-row-meta { display: flex; gap: 10px; align-items: center; margin-bottom: 6px; }
.news-row-date { font-size: 0.8125rem; color: var(--text-soft); font-weight: 500; }
.news-row-ext { font-size: 0.6875rem; padding: 2px 8px; background: var(--accent-lo); color: var(--accent); border-radius: 999px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.news-row-title { font-size: 1.0625rem; margin: 0 0 4px; color: var(--ink); line-height: 1.3; }
.news-row-sub {
    font-size: 0.9375rem; color: var(--text-soft); margin: 0; line-height: 1.5;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.news-row-arrow { color: var(--text-soft); font-size: 18px; transition: transform .2s, color .2s; }
.news-row:hover .news-row-arrow { color: var(--accent); transform: translateX(4px); }

/* Hizmet listesi — beyaz arkaplanlı, kare çerçeveli, köşeleri yuvarlak */
.news-list--services .news-row { grid-template-columns: 120px 1fr 32px; align-items: center; }
.news-list--services .news-row-img {
    aspect-ratio: 1 / 1;
    width: 120px; height: 120px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.news-list--services .news-row-img img { object-fit: contain; padding: 14px; transition: transform .3s; }
.news-list--services .news-row:hover .news-row-img { border-color: var(--accent); }
.news-list--services .news-row:hover .news-row-img img { transform: scale(1.06); }
.news-list--services .news-row-img-empty { background: #fff; }
@media (max-width: 700px) {
    .news-list--services .news-row { grid-template-columns: 88px 1fr; }
    .news-list--services .news-row-img { width: 88px; height: 88px; border-radius: 14px; }
    .news-list--services .news-row-img img { padding: 10px; }
}

/* ---------- HABER DETAY ---------- */
.news-detail {}
.news-detail-hero {
    padding: 80px 0 60px;
    color: #fff;
    background-color: var(--ink);
    background-size: cover; background-position: center;
}
.news-detail-hero.no-img { background: linear-gradient(135deg, var(--ink) 0%, var(--accent-hi) 100%); }
.news-detail-hero-top {
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
    margin-bottom: 20px;
}
.news-detail-back {
    display: inline-block; color: rgba(255,255,255,0.85);
    font-size: 0.875rem; text-decoration: none;
}
.news-detail-back:hover { color: #fff; }
.news-detail-hero-link {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    background: #fff; color: var(--ink);
    border-radius: 999px; font-weight: 600; font-size: 0.9375rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    transition: transform .15s, box-shadow .15s, background .15s;
}
.news-detail-hero-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.35);
    background: var(--accent); color: #fff;
}
.news-detail-hero-link svg { flex-shrink: 0; }
.news-detail-date { font-size: 0.875rem; color: rgba(255,255,255,0.85); margin-bottom: 12px; font-weight: 500; }
.news-detail-title { font-size: clamp(1.75rem, 4vw, 3rem); color: #fff; margin: 0 0 16px; max-width: 900px; line-height: 1.15; }
.news-detail-sub { font-size: 1.125rem; color: rgba(255,255,255,0.9); max-width: 720px; margin: 0; line-height: 1.5; }

.news-detail-wrap { padding-top: 48px; padding-bottom: 64px; }
.news-detail-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
@media (max-width: 900px) { .news-detail-layout { grid-template-columns: 1fr; } }
.news-detail-main { min-width: 0; }
.news-detail-side { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 88px; }
@media (max-width: 900px) { .news-detail-side { position: static; } }

.news-side-card {
    background: var(--bg); border: 1px solid var(--border); border-radius: 14px;
    padding: 18px 20px; box-shadow: var(--shadow-sm);
}
.news-side-label {
    font-size: 0.6875rem; color: var(--text-soft); font-weight: 600;
    text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px;
}
.news-side-link {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 16px; background: var(--accent); color: #fff;
    border-radius: 8px; font-weight: 600; font-size: 0.9375rem;
    text-decoration: none; transition: background .15s, transform .15s;
}
.news-side-link:hover { background: var(--accent-hi); color: #fff; transform: translateY(-1px); }
.news-side-link svg { flex-shrink: 0; }
.news-side-url {
    font-size: 0.75rem; color: var(--text-soft); margin-top: 8px;
    word-break: break-all;
}
.news-side-date { font-size: 1.0625rem; font-weight: 600; color: var(--ink); }
.news-side-time { font-size: 0.875rem; color: var(--text-soft); margin-top: 2px; }

.news-detail-body { font-size: 1.0625rem; line-height: 1.75; color: var(--ink); }
.news-detail-body h2 { margin-top: 32px; margin-bottom: 14px; font-size: 1.5rem; }
.news-detail-body h3 { margin-top: 24px; margin-bottom: 10px; font-size: 1.25rem; }
.news-detail-body p  { margin: 0 0 16px; }
.news-detail-body img { max-width: 100%; height: auto; border-radius: 10px; margin: 20px 0; }
.news-detail-body ul, .news-detail-body ol { padding-left: 22px; }
.news-detail-body li { margin: 6px 0; }

.news-detail-eyebrow {
    display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
    color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.15); padding: 4px 12px; border-radius: 999px;
    margin-bottom: 14px; backdrop-filter: blur(4px);
}
.news-detail-video { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border); }
.news-detail-video h2 { font-size: 1.25rem; margin-bottom: 16px; }
.video-embed {
    position: relative; aspect-ratio: 16 / 9; background: #000;
    border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-md);
}
.video-embed iframe, .video-embed video { width: 100%; height: 100%; border: 0; display: block; }
.news-detail-gallery { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border); }
.news-detail-gallery h2 { font-size: 1.25rem; margin-bottom: 16px; }
.news-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.news-gallery-item {
    position: relative; aspect-ratio: 4/3;
    background: var(--surface); border-radius: 10px; overflow: hidden;
    display: block;
}
.news-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.news-gallery-item:hover img { transform: scale(1.06); }
.news-gallery-caption {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 16px 10px 8px; color: #fff; font-size: 0.75rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.news-detail-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border); }
@media (max-width: 600px) { .news-detail-nav { grid-template-columns: 1fr; } }
.news-nav-card {
    display: flex; flex-direction: column; gap: 6px;
    padding: 18px 20px; border: 1px solid var(--border); border-radius: 12px;
    background: var(--bg); text-decoration: none; color: var(--ink);
    transition: border-color .15s, transform .15s;
}
.news-nav-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.news-nav-card.next { text-align: right; }
.news-nav-card-label { font-size: 0.75rem; color: var(--text-soft); font-weight: 500; text-transform: uppercase; letter-spacing: .04em; }
.news-nav-card-title { font-size: 0.9375rem; font-weight: 600; color: var(--ink); }

/* ---------- İNDİRME MERKEZİ ---------- */
.download-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px;
}
.download-card {
    background: #fff; border: 1px solid var(--border); border-radius: 16px;
    padding: 28px; display: flex; flex-direction: column; gap: 18px;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.download-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--ink); }
.download-card-img {
    width: 80px; height: 80px; border-radius: 16px;
    background: var(--surface); display: flex; align-items: center; justify-content: center;
    color: var(--accent);
}
.download-card-img img { max-width: 70%; max-height: 70%; object-fit: contain; }
.download-card-body { flex: 1; }
.download-card-title { font-size: 1.125rem; margin: 0 0 8px; color: var(--ink); }
.download-card-desc { font-size: 0.9375rem; color: var(--text-soft); margin: 0; line-height: 1.55; }
.download-card-foot {}

.doc-search-wrap { display: flex; justify-content: center; margin-bottom: 20px; }
.doc-search {
    position: relative; display: flex; align-items: center;
    background: #fff; border: 1px solid var(--border); border-radius: 999px;
    padding: 0 14px; min-width: 280px;
    transition: border-color .15s, box-shadow .15s;
}
.doc-search:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-lo); }
.doc-search svg { color: var(--text-soft); flex-shrink: 0; }
.doc-search input { flex: 1; border: 0; background: transparent; padding: 9px 8px; outline: none; font-size: 0.9375rem; color: var(--ink); font-family: inherit; }
.doc-empty { text-align: center; color: var(--text-soft); padding: 30px 0; }

.doc-list { display: flex; flex-direction: column; gap: 8px; }
.doc-item {
    display: grid; grid-template-columns: 44px 1fr auto 22px; gap: 14px; align-items: center;
    padding: 14px 18px;
    background: #fff; border: 1px solid var(--border); border-radius: 12px;
    text-decoration: none; color: var(--ink);
    transition: border-color .15s, transform .15s, background .15s;
}
.doc-item:hover { border-color: var(--accent); transform: translateY(-1px); }
.doc-icon {
    width: 44px; height: 44px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: var(--surface); color: var(--text-soft);
    flex-shrink: 0;
}
.doc-icon--img { background: #fff !important; border: 1px solid var(--border); padding: 4px; }
.doc-icon--img img { width: 100%; height: 100%; object-fit: contain; }
.doc-pdf .doc-icon { background: #FEE2E2; color: #B91C1C; }
.doc-xls .doc-icon { background: #DCFCE7; color: #047857; }
.doc-doc .doc-icon { background: #DBEAFE; color: #1D4ED8; }
.doc-ppt .doc-icon { background: #FED7AA; color: #C2410C; }
.doc-zip .doc-icon { background: #FEF3C7; color: #B45309; }
.doc-body { min-width: 0; }
.doc-title { font-weight: 600; color: var(--ink); }
.doc-desc { font-size: 0.875rem; color: var(--text-soft); margin-top: 2px; line-height: 1.4; }
.doc-ext {
    font-size: 0.6875rem; font-weight: 700; letter-spacing: .05em;
    background: var(--bg); color: var(--text-soft);
    padding: 4px 10px; border-radius: 999px; text-transform: uppercase;
}
.doc-pdf .doc-ext { background: #FEE2E2; color: #B91C1C; }
.doc-xls .doc-ext { background: #DCFCE7; color: #047857; }
.doc-doc .doc-ext { background: #DBEAFE; color: #1D4ED8; }
.doc-dl { color: var(--text-soft); }
.doc-item:hover .doc-dl { color: var(--accent); }

/* ---------- E-TİCARET: ÜRÜN LİSTE ---------- */
.ec-toolbar { padding: 40px 0 16px; background: var(--surface); border-bottom: 1px solid var(--border); }
.ec-toolbar-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.ec-title { font-size: clamp(1.5rem, 3vw, 2.25rem); margin: 0; color: var(--ink); }
.ec-count { color: var(--text-soft); font-size: 0.9375rem; margin-top: 4px; }
.ec-search {
    position: relative; display: flex; align-items: center;
    background: #fff; border: 1px solid var(--border); border-radius: 999px;
    padding: 0 14px; min-width: 300px;
    transition: border-color .15s, box-shadow .15s;
}
.ec-search:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-lo); }
.ec-search svg { color: var(--text-soft); flex-shrink: 0; }
.ec-search input { flex: 1; border: 0; background: transparent; padding: 11px 8px; outline: none; font-size: 0.9375rem; color: var(--ink); font-family: inherit; }

.ec-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px;
}
.ec-card {
    display: flex; flex-direction: column;
    background: #fff; border: 1px solid var(--border); border-radius: 14px;
    overflow: hidden; text-decoration: none; color: var(--ink);
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.ec-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--ink); }
.ec-card-img { aspect-ratio: 4 / 3; background: var(--surface); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.ec-card-img img { max-width: 100%; max-height: 100%; object-fit: contain; padding: 14px; transition: transform .4s var(--ease); }
.ec-card:hover .ec-card-img img { transform: scale(1.05); }
.ec-card-img-empty { color: var(--text-soft); }
.ec-card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.ec-card-eyebrow { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--accent); }
.ec-card-title { font-size: 1rem; margin: 0; line-height: 1.3; color: var(--ink); }
.ec-card-sub {
    font-size: 0.875rem; color: var(--text-soft); margin: 0; line-height: 1.5;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ec-card-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; margin-top: auto; border-top: 1px solid var(--border-soft); }
.ec-card-price { font-weight: 700; color: var(--ink); font-size: 1rem; }
.ec-card-cta { color: var(--accent); font-weight: 600; font-size: 0.8125rem; }

/* ---------- E-TİCARET: ÜRÜN DETAY ---------- */
.ec-detail { padding: 40px 0 60px; }
.ec-back { display: inline-flex; align-items: center; color: var(--text-soft); font-size: 0.875rem; text-decoration: none; margin-bottom: 24px; }
.ec-back:hover { color: var(--ink); }
.ec-detail-header { margin-bottom: 24px; }
.ec-detail-header .ec-eyebrow { margin-bottom: 12px; }
.ec-detail-header .ec-name { margin: 0 0 12px; }
.ec-detail-header .ec-desc { margin: 0; max-width: 880px; }

.ec-detail-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
    margin-bottom: 48px;
}
@media (max-width: 900px) { .ec-detail-grid { grid-template-columns: 1fr; gap: 28px; } }

.ec-gallery {}
.ec-gallery-main {
    aspect-ratio: 4 / 3; background: var(--surface);
    border: 1px solid var(--border); border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; margin-bottom: 12px;
    padding: 16px; box-sizing: border-box;
}
.ec-gallery-main img { display: block; width: 100%; height: 100%; max-width: 100%; max-height: 100%; object-fit: contain; transition: transform .3s; }
@media (max-width: 640px) { .ec-gallery-main { padding: 10px; } }
.ec-gallery-empty { color: var(--text-soft); }
.ec-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.ec-thumb {
    width: 72px; height: 72px; padding: 4px;
    background: #fff; border: 2px solid var(--border); border-radius: 10px;
    overflow: hidden; cursor: pointer;
    transition: border-color .15s, transform .15s;
}
.ec-thumb img { width: 100%; height: 100%; object-fit: contain; }
.ec-thumb:hover { transform: translateY(-2px); }
.ec-thumb.is-active { border-color: var(--accent); }

.ec-info {}
.ec-eyebrow {
    display: inline-block;
    background: var(--accent-lo); color: var(--accent);
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
    padding: 4px 12px; border-radius: 999px; margin-bottom: 10px;
}
.ec-name { font-size: clamp(1.5rem, 3vw, 2.25rem); margin: 0 0 12px; color: var(--ink); line-height: 1.15; }
.ec-desc { font-size: 1.0625rem; color: var(--text-soft); margin: 0 0 24px; line-height: 1.55; }

.ec-price-block { padding: 24px; background: var(--surface); border-radius: 14px; margin-bottom: 20px; }
.ec-price-label { font-size: 0.8125rem; color: var(--text-soft); font-weight: 500; margin-bottom: 6px; }
.ec-price { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.ec-price-na { font-size: 0.9375rem; color: var(--text-soft); font-style: italic; }
.ec-vat {
    display: inline-block;
    font-size: 0.75rem; font-weight: 600; letter-spacing: .04em;
    color: var(--accent); background: var(--accent-lo);
    padding: 3px 10px; border-radius: 999px;
    vertical-align: middle;
}

.ec-packages {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 6px;
    max-height: 360px;
    overflow-y: auto;
    padding: 2px;
}
.ec-package {
    display: grid; grid-template-columns: 18px 1fr auto; gap: 10px; align-items: center;
    padding: 8px 12px; background: #fff; border: 1px solid var(--border);
    border-radius: 8px; cursor: pointer;
    transition: border-color .12s, background .12s;
    min-width: 0;
}
.ec-package input { accent-color: var(--accent); width: 14px; height: 14px; cursor: pointer; margin: 0; }
.ec-package:hover { border-color: var(--accent); }
.ec-package:has(input:checked) { border-color: var(--accent); background: var(--accent-lo); }
.ec-package-name { font-weight: 600; color: var(--ink); font-size: 0.875rem; line-height: 1.25; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ec-package-desc { font-size: 0.72rem; color: var(--text-soft); margin-top: 1px; line-height: 1.2; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ec-package-price { font-weight: 700; color: var(--ink); font-size: 0.9rem; white-space: nowrap; }
@media (max-width: 600px) {
    .ec-packages { grid-template-columns: 1fr; max-height: 320px; }
}

.ec-meta { padding: 0 4px; margin-bottom: 24px; }
.ec-meta-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border-soft); font-size: 0.9375rem; }
.ec-meta-row:last-child { border-bottom: 0; }
.ec-meta-label { color: var(--text-soft); min-width: 80px; }
.ec-meta-val { color: var(--ink); font-weight: 500; }

.ec-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Tabs */
.ec-tabs { border-top: 1px solid var(--border); padding-top: 32px; }
.ec-tab-nav { display: flex; gap: 4px; border-bottom: 2px solid var(--border); margin-bottom: 24px; flex-wrap: wrap; justify-content: center; }
.ec-tab-btn {
    background: transparent; border: 0; padding: 12px 18px;
    font-size: 0.9375rem; font-weight: 600; color: var(--text-soft);
    cursor: pointer; position: relative; bottom: -2px;
    border-bottom: 2px solid transparent;
    transition: color .15s, border-color .15s;
}
.ec-tab-btn:hover { color: var(--ink); }
.ec-tab-btn.is-active { color: var(--accent); border-bottom-color: var(--accent); }
.ec-tab-panel { display: none; text-align: left; }
.ec-tab-panel.is-active { display: block; }
.ec-tab-panel.prose { text-align: left; }
.ec-tab-panel.prose h1, .ec-tab-panel.prose h2, .ec-tab-panel.prose h3, .ec-tab-panel.prose h4, .ec-tab-panel.prose p, .ec-tab-panel.prose ul, .ec-tab-panel.prose ol, .ec-tab-panel.prose table { text-align: left; }

.ec-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.ec-feature { display: flex; gap: 12px; padding: 16px 18px; background: var(--surface); border-radius: 10px; }
.ec-feature-check { width: 28px; height: 28px; border-radius: 50%; background: var(--accent-lo); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ec-feature-title { font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.ec-feature-desc { font-size: 0.875rem; color: var(--text-soft); line-height: 1.5; }

/* ---------- ÜRÜN GALERİSİ ---------- */
.product-gallery {
    display: grid; gap: 12px;
    background: var(--surface); border-radius: 18px; padding: 18px;
    border: 1px solid var(--border);
}
.product-gallery-main {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--bg);
    border-radius: 14px;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.product-gallery-main img {
    max-width: 100%; max-height: 100%;
    object-fit: contain;
    transition: opacity .25s var(--ease);
}
.g-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(0,0,0,0.55); color: #fff; border: 0;
    font-size: 22px; line-height: 1; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .15s, transform .15s;
}
.g-nav:hover { background: rgba(0,0,0,0.8); transform: translateY(-50%) scale(1.06); }
.g-prev { left: 14px; }
.g-next { right: 14px; }
.product-gallery-thumbs {
    display: flex; gap: 10px; overflow-x: auto;
    padding: 4px 2px;
    scrollbar-width: thin;
}
.g-thumb {
    flex: 0 0 100px; height: 70px;
    background: var(--bg); border: 2px solid transparent; border-radius: 10px;
    overflow: hidden; cursor: pointer; padding: 0;
    transition: border-color .15s, transform .15s;
}
.g-thumb img { width: 100%; height: 100%; object-fit: contain; }
.g-thumb:hover { transform: translateY(-2px); }
.g-thumb.is-active { border-color: var(--accent); }
.product-gallery-caption {
    color: var(--text-soft); font-size: 0.9375rem; text-align: center;
    min-height: 22px; padding: 0 12px;
}

@keyframes logo-marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .logo-marquee-track { animation: none; }
}

/* ===================== Docs / Yardım ===================== */
.docs-shell { padding: 32px 0 64px; }
.docs-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}
.docs-sidebar { position: sticky; top: 92px; max-height: calc(100vh - 110px); overflow-y: auto; padding-right: 8px; }
.docs-search {
    display: flex; align-items: center; gap: 8px;
    background: var(--surface); border: 1px solid var(--border); border-radius: 999px;
    padding: 6px 14px; margin-bottom: 16px;
}
.docs-search svg { color: var(--text-soft); flex-shrink: 0; }
.docs-search input { flex: 1; border: 0; background: transparent; outline: none; font-size: 0.875rem; color: var(--ink); font-family: inherit; }

.docs-tree { font-size: 0.9375rem; }
.docs-tree-group { margin: 0; border-bottom: 1px solid var(--border-soft); }
.docs-tree-group:last-child { border-bottom: 0; }

.docs-tree-cat-row {
    display: flex; align-items: center; gap: 8px;
    width: 100%; padding: 12px 4px;
    background: transparent; border: 0; cursor: pointer;
    text-align: left;
    color: var(--ink);
    font-family: inherit;
    transition: color .15s;
}
.docs-tree-cat-row:hover { color: var(--ink); }
.docs-tree-cat-row:hover .docs-tree-cat { color: var(--ink); }
.docs-tree-chevron {
    flex-shrink: 0;
    color: var(--text-mute);
    transition: transform .2s var(--ease);
}
.docs-tree-group.is-open > .docs-tree-cat-row > .docs-tree-chevron { transform: rotate(90deg); color: var(--ink); }
.docs-tree-cat {
    flex: 1;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: -0.005em;
    color: var(--ink);
}
.docs-tree-count {
    flex-shrink: 0;
    font-size: 0.75rem;
    color: var(--text-mute);
    background: var(--surface);
    padding: 1px 8px;
    border-radius: 999px;
    font-weight: 500;
    min-width: 22px;
    text-align: center;
}

.docs-tree-list { list-style: none; padding: 4px 0 12px 18px; margin: 0 0 0 8px; border-left: 1px solid var(--border-soft); }
.docs-tree-group:not(.is-open) > .docs-tree-list { display: none; }
.docs-tree-list li {
    position: relative;
    border-bottom: 1px solid var(--border-soft);
}
.docs-tree-list li:last-child { border-bottom: 0; }

.docs-tree-item {
    display: block;
    padding: 8px 10px;
    color: var(--text-soft);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.45;
    transition: color .15s, padding-left .15s;
}
.docs-tree-item:hover { color: var(--ink); padding-left: 14px; }
.docs-tree-item.is-active {
    color: var(--ink);
    font-weight: 500;
    position: relative;
}
.docs-tree-item.is-active::before {
    content: "";
    position: absolute;
    left: -19px;
    top: 8px; bottom: 8px;
    width: 2px;
    background: var(--ink);
    border-radius: 2px;
}

.docs-content { min-width: 0; }
.docs-header { padding-bottom: 24px; margin-bottom: 28px; border-bottom: 1px solid var(--border); }
.docs-header-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 12px; }
.docs-eyebrow { color: var(--accent); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.docs-eyebrow-link {
    display: inline-flex; align-items: center; gap: 6px;
    text-decoration: none;
    transition: gap .15s, color .15s;
}
.docs-eyebrow-link:hover { color: var(--accent-hi); gap: 10px; }
.docs-eyebrow-link svg { flex-shrink: 0; transition: transform .15s; }
.docs-eyebrow-link:hover svg { transform: translateX(-2px); }
.docs-header h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin: 0 0 12px; color: var(--ink); }
.docs-summary { font-size: 1.0625rem; color: var(--text-soft); margin: 0; }
.docs-meta { font-size: 0.8125rem; color: var(--text-mute); font-variant-numeric: tabular-nums; }

/* Hero search (main doc) */
.docs-hero {
    text-align: center;
    padding: 24px 0 32px;
    max-width: 720px;
    margin: 0 auto 32px;
}
.docs-hero-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0 0 12px;
}
.docs-hero-sub {
    color: var(--text-soft);
    font-size: 1.0625rem;
    margin: 0 0 28px;
}
.docs-hero-search-wrap { position: relative; }
.docs-hero-search {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: border-color .15s, box-shadow .15s;
}
.docs-hero-search:focus-within { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-lo); }
.docs-hero-search svg { color: var(--text-soft); flex-shrink: 0; }
.docs-hero-search input {
    flex: 1; border: 0; background: transparent; outline: none;
    font-size: 1rem; color: var(--ink); font-family: inherit;
}
.docs-hero-search input::placeholder { color: var(--text-mute); }
.docs-hero-kbd {
    font-family: ui-monospace, Consolas, monospace;
    font-size: 0.7rem;
    padding: 3px 7px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-mute);
}

.docs-hero-results {
    position: absolute;
    top: calc(100% + 6px); left: 0; right: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: 0 16px 48px -8px rgba(15,23,42,0.16);
    max-height: 60vh; overflow-y: auto;
    z-index: 30;
    padding: 6px;
    text-align: left;
}
.docs-hero-result {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--ink);
    transition: background .12s;
}
.docs-hero-result:hover { background: var(--surface); }
.docs-hero-result-meta {
    font-size: 0.7rem;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
    margin-bottom: 2px;
}
.docs-hero-result-title { font-weight: 600; font-size: 0.9375rem; color: var(--ink); }
.docs-hero-result-sub {
    font-size: 0.8125rem;
    color: var(--text-soft);
    margin-top: 2px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.docs-hero-empty {
    padding: 16px;
    color: var(--text-soft);
    font-size: 0.875rem;
    text-align: center;
    font-style: italic;
}

.docs-body { max-width: 820px; margin-bottom: 48px; }
.docs-body h2, .docs-body h3 { color: var(--ink); margin-top: 32px; }
.docs-body img { max-width: 100%; height: auto; border-radius: 10px; margin: 12px 0; }
.docs-body iframe { max-width: 100%; border-radius: 10px; aspect-ratio: 16/9; width: 100%; border: 0; }
.docs-body pre { background: var(--ink); color: #e0e7ff; padding: 16px; border-radius: 10px; overflow-x: auto; font-size: 0.875rem; }
.docs-body code { background: var(--surface); padding: 2px 6px; border-radius: 4px; font-size: 0.875em; }
.docs-body pre code { background: transparent; padding: 0; }
.docs-body a { color: var(--accent); }
.docs-body blockquote { border-left: 4px solid var(--accent); padding: 8px 16px; background: var(--accent-lo); border-radius: 0 8px 8px 0; margin: 16px 0; color: var(--ink); }

.docs-related { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); }
.docs-related h3 { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 12px; color: var(--text-soft); font-weight: 600; }
.docs-related-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.docs-related-list li { padding: 2px 0; }
.docs-related-list a {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color .15s;
}
.docs-related-list a:hover { color: var(--accent-hi); text-decoration: underline; }

/* Masaüstünde drawer ile alakalı elemanlar gizli */
.docs-sidebar-head    { display: none; }
.docs-sidebar-close   { display: none; }
.docs-sidebar-fab     { display: none; }
.docs-sidebar-backdrop{ display: none; }

@media (max-width: 900px) {
    .docs-layout { grid-template-columns: 1fr; gap: 16px; }

    /* Sidebar -> off-canvas yan panel (soldan açılır) */
    .docs-sidebar {
        position: fixed;
        top: 0; left: 0; bottom: 0;
        width: min(340px, 88vw);
        max-height: none;
        z-index: 1001;
        padding: 16px 16px 24px;
        background: var(--surface);
        border-right: 1px solid var(--border);
        box-shadow: 8px 0 32px rgba(0,0,0,.18);
        transform: translateX(-105%);
        transition: transform .32s cubic-bezier(.2,.7,.3,1);
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }
    .docs-sidebar.is-open { transform: translateX(0); }

    /* Drawer başlığı (sidebar üstü) */
    .docs-sidebar-head {
        display: flex; align-items: center; gap: 10px;
        padding: 4px 0 14px;
        margin-bottom: 12px;
        border-bottom: 1px solid var(--border);
    }
    .docs-sidebar-head-title { font-weight: 700; font-size: 15px; color: var(--ink, var(--text)); flex: 1; }
    .docs-sidebar-head-count {
        background: color-mix(in srgb, var(--accent, #2563eb) 14%, transparent);
        color: var(--accent, #2563eb);
        font-size: 12px; font-weight: 700;
        padding: 2px 8px; border-radius: 999px;
    }
    .docs-sidebar-close {
        display: inline-flex; align-items: center; justify-content: center;
        width: 36px; height: 36px;
        background: transparent; color: var(--text);
        border: 0; border-radius: 8px; cursor: pointer;
        transition: background .15s ease;
    }
    .docs-sidebar-close:hover { background: color-mix(in srgb, var(--ink, #000) 6%, transparent); }

    /* Sayfa altı sabit "Belgeler" butonu */
    .docs-sidebar-fab {
        display: inline-flex; align-items: center; gap: 10px;
        position: fixed;
        left: 50%;
        bottom: 18px;
        transform: translateX(-50%);
        z-index: 998;
        padding: 12px 20px;
        background: var(--accent, #2563eb);
        color: #fff;
        border: 0; border-radius: 999px;
        font-weight: 600; font-size: 14px;
        cursor: pointer;
        box-shadow: 0 10px 28px color-mix(in srgb, var(--accent, #2563eb) 38%, transparent),
                    0 2px 6px rgba(0,0,0,.12);
        transition: transform .15s ease, box-shadow .15s ease;
    }
    .docs-sidebar-fab:hover  { transform: translateX(-50%) translateY(-1px); }
    .docs-sidebar-fab:active { transform: translateX(-50%) translateY(0); }
    .docs-sidebar-fab-count {
        background: rgba(255,255,255,.22);
        color: #fff;
        font-size: 12px; font-weight: 700;
        padding: 2px 8px; border-radius: 999px;
    }
    /* Drawer açıkken FAB'ı gizle */
    body.docs-drawer-open .docs-sidebar-fab { opacity: 0; pointer-events: none; transform: translate(-50%, 16px); }

    /* Karartma */
    .docs-sidebar-backdrop {
        display: block;
        position: fixed; inset: 0;
        background: rgba(0,0,0,.5);
        z-index: 1000;
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s ease;
    }
    .docs-sidebar-backdrop.is-visible { opacity: 1; pointer-events: auto; }

    /* Drawer açıkken arka plan kaydırmasını kilitle */
    body.docs-drawer-open { overflow: hidden; }
}

/* ===================== Kurumsal — sidebar + content ===================== */
.corp-layout {
    display: grid;
    grid-template-columns: minmax(220px, 280px) 1fr;
    gap: 48px;
    align-items: start;
}
.corp-sidebar { position: sticky; top: 92px; }
.corp-nav { display: flex; flex-direction: column; gap: 4px; }
.corp-nav-item {
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--text);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: background .15s, color .15s, transform .15s;
}
.corp-nav-item:hover {
    background: var(--accent-lo);
    color: var(--accent);
    transform: translateX(2px);
}
.corp-nav-item.is-active {
    background: var(--ink);
    color: #fff;
    font-weight: 600;
}
.corp-nav-item.is-active svg { color: #fff; }
.corp-content { min-width: 0; }
.corp-content-head { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.corp-content-head h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 0 0 8px; color: var(--ink); }
.corp-content-head p { color: var(--text-soft); margin: 0; font-size: 1rem; }
@media (max-width: 900px) {
    .corp-layout { grid-template-columns: 1fr; gap: 24px; }
    .corp-sidebar { position: static; }
    .corp-nav { flex-direction: row; flex-wrap: wrap; gap: 6px; }
    .corp-nav-item { padding: 8px 14px; font-size: 0.875rem; background: var(--surface); }
}

/* ===================== Yatay rail (ürün kaydırıcı) ===================== */
.rail-head {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 20px; gap: 12px; flex-wrap: wrap;
}
.rail-nav { display: inline-flex; gap: 8px; }
.rail-btn {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--surface); border: 1px solid var(--border);
    color: var(--ink); font-size: 20px; line-height: 1; cursor: pointer;
    transition: background .15s, border-color .15s, transform .15s;
    display: inline-flex; align-items: center; justify-content: center;
}
.rail-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-1px); }
.rail {
    display: flex; gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 4px 16px;
    margin: 0 -4px;
    scrollbar-width: thin;
}
.rail::-webkit-scrollbar { height: 8px; }
.rail::-webkit-scrollbar-track { background: transparent; }
.rail::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.rail::-webkit-scrollbar-thumb:hover { background: var(--text-mute); }
.rail-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex; flex-direction: column;
    transition: border-color .15s, box-shadow .15s, transform .15s;
}
.rail-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.rail-card-img {
    width: 100%; aspect-ratio: 16/10;
    background: var(--surface);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    padding: 12px;
}
.rail-card-img img {
    max-width: 100%; max-height: 100%;
    width: auto; height: auto;
    object-fit: contain;
}
.rail-card-img-empty { color: var(--text-mute); }
.rail-card-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.rail-card-eyebrow { font-size: 0.75rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.rail-card-title { font-size: 1rem; font-weight: 700; color: var(--ink); margin: 0; line-height: 1.3; }
.rail-card-sub {
    font-size: 0.8125rem; color: var(--text-soft); margin: 0; line-height: 1.5;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.rail-card-cta { font-size: 0.8125rem; font-weight: 600; color: var(--accent); margin-top: auto; padding-top: 4px; }
@media (max-width: 600px) {
    .rail-card { flex-basis: 75vw; max-width: 280px; }
}

/* Sürekli kayan hizmet/ürün marquee */
.svc-marquee {
    width: 100%;
    overflow: hidden;
    padding: 4px 0 16px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.svc-marquee-track {
    display: flex; gap: 16px;
    width: max-content;
    animation: svc-marquee-scroll 35s linear infinite;
}
.svc-marquee:hover .svc-marquee-track,
.svc-marquee:focus-within .svc-marquee-track { animation-play-state: paused; }
.svc-marquee-card { flex: 0 0 280px; }
@keyframes svc-marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .svc-marquee-track { animation: none; }
}

/* ===================== İletişim sayfası ===================== */
.contact-hero-section {
    padding: 40px 0 20px;
    background: linear-gradient(180deg, var(--surface) 0%, #fff 100%);
}
.contact-hero {
    background: linear-gradient(135deg, #0A1628 0%, #1a3a6e 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.contact-hero::after {
    content: '';
    position: absolute;
    right: -100px; top: -100px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(0,102,255,0.30) 0%, transparent 60%);
    pointer-events: none;
}
.contact-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.8125rem; font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}
.contact-hero-eyebrow .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #34D399; box-shadow: 0 0 0 4px rgba(52,211,153,0.30);
}
.contact-hero-title {
    color: #fff;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 8px;
}
.contact-hero-sub {
    color: rgba(255,255,255,0.78);
    font-size: 1rem;
    margin: 0;
    max-width: 600px;
    position: relative; z-index: 1;
}
.contact-hero-row {
    display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap;
    position: relative; z-index: 1;
}
.contact-hero-search {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 999px;
    padding: 4px 14px;
    min-width: 280px;
    transition: background .15s, border-color .15s;
    backdrop-filter: blur(8px);
}
.contact-hero-search:focus-within {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.45);
}
.contact-hero-search svg { color: rgba(255,255,255,0.7); flex-shrink: 0; }
.contact-hero-search input {
    flex: 1; border: 0; background: transparent;
    padding: 9px 4px; outline: none;
    font-size: 0.9375rem; color: #fff; font-family: inherit;
}
.contact-hero-search input::placeholder { color: rgba(255,255,255,0.55); }
@media (max-width: 700px) {
    .contact-hero { padding: 24px 22px; }
    .contact-hero-search { width: 100%; min-width: 0; }
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(280px, 380px) 1fr;
    gap: 40px;
    align-items: stretch;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info > .contact-card { flex: 1 1 auto; }
.contact-form-wrap { height: 100%; }
.contact-form { height: 100%; display: flex; flex-direction: column; }
.contact-form .form-row:last-of-type { flex: 1 1 auto; display: flex; flex-direction: column; }
.contact-form textarea { flex: 1 1 auto; min-height: 140px; }
.contact-form button[type="submit"] { align-self: center; margin-top: 8px; }
.contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
}
.contact-card-title {
    font-size: 1.0625rem;
    margin: 0 0 16px;
    color: var(--ink);
    font-weight: 700;
}
.contact-list { display: flex; flex-direction: column; gap: 12px; }
.contact-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 12px;
    font-size: 0.9375rem;
    line-height: 1.5;
}
.contact-label { color: var(--text-soft); font-size: 0.8125rem; padding-top: 1px; }
.contact-item a { color: var(--ink); text-decoration: none; font-weight: 500; }
.contact-item a:hover { color: var(--accent); }

.contact-form-wrap { display: flex; flex-direction: column; gap: 16px; }
.contact-form { max-width: none; margin: 0; }

.section--map { padding-top: 0; }
.contact-map {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 6;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
}
.contact-map iframe {
    width: 100%; height: 100%; border: 0; display: block;
}
.map-directions-row {
    display: flex; justify-content: center;
    margin-bottom: 16px;
}
.map-directions-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 20px;
    background: var(--ink);
    color: #fff;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(15,23,42,0.15), 0 1px 3px rgba(15,23,42,0.10);
    transition: background .15s, color .15s, transform .15s, box-shadow .15s;
}
.map-directions-btn:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0,102,255,0.25), 0 2px 4px rgba(15,23,42,0.08);
}
.map-directions-btn svg { flex-shrink: 0; }

.dealer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 24px;
}
.dealer-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex; flex-direction: column; gap: 10px;
    transition: border-color .15s, box-shadow .15s, transform .15s;
}
.dealer-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.dealer-card-head { display: flex; justify-content: space-between; align-items: start; gap: 12px; }
.dealer-name { font-size: 1rem; font-weight: 700; color: var(--ink); margin: 0; line-height: 1.3; }
.dealer-city {
    background: var(--accent-lo); color: var(--accent);
    padding: 3px 10px; border-radius: 999px;
    font-size: 0.75rem; font-weight: 600; white-space: nowrap;
}
.dealer-address { color: var(--text-soft); font-size: 0.8125rem; line-height: 1.5; margin: 0; }
.dealer-meta { display: flex; flex-direction: column; gap: 6px; margin-top: auto; }
.dealer-link {
    color: var(--text); text-decoration: none; font-size: 0.875rem;
    transition: color .15s;
}
.dealer-link:hover { color: var(--accent); }

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 24px; }
    .contact-map { aspect-ratio: 4 / 3; }
}

/* ============ Feature Showcase (resim + özellikler) ============ */
.feature-showcase { padding: 80px 0; background: var(--bg, #fff); }
.feature-showcase-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}
.feature-showcase.is-reversed .feature-showcase-inner { direction: rtl; }
.feature-showcase.is-reversed .feature-showcase-visual,
.feature-showcase.is-reversed .feature-showcase-text { direction: ltr; }

.feature-showcase-visual {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    min-height: 360px;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    box-shadow: 0 24px 60px rgba(15, 23, 42, .18);
}
.feature-showcase-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity .35s ease, transform .6s cubic-bezier(.2,.7,.3,1); transform-origin: center; }
video.feature-showcase-img { object-fit: contain; background: #0f172a; }
/* Hover zoom — kapsayıcı overflow:hidden olduğundan büyüyen medya temiz kırpılır */
.feature-showcase-visual:hover .feature-showcase-img { transform: scale(1.06); }
@media (hover: none) {
    .feature-showcase-visual:hover .feature-showcase-img { transform: none; }
}
/* Yükleniyor efekti */
.feature-showcase-visual.is-loading .feature-showcase-img { opacity: 0; }
.feature-showcase-visual.is-loading::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.08) 50%, rgba(255,255,255,0) 100%);
    background-size: 200% 100%;
    animation: fs-shimmer 1.5s linear infinite;
    z-index: 3; pointer-events: none;
}
.feature-showcase-visual.is-loading::after {
    content: ""; position: absolute; top: 50%; left: 50%;
    width: 36px; height: 36px; margin: -18px 0 0 -18px;
    border: 3px solid rgba(255,255,255,.2);
    border-top-color: rgba(255,255,255,.85);
    border-radius: 50%;
    animation: fs-spin .8s linear infinite;
    z-index: 4; pointer-events: none;
}
@keyframes fs-spin    { to { transform: rotate(360deg); } }
@keyframes fs-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.feature-showcase-visual::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(2,6,23,0) 35%, rgba(2,6,23,.55) 100%);
    pointer-events: none;
}
.feature-showcase-badge {
    position: absolute; left: 18px; bottom: 18px; z-index: 2;
    display: flex; align-items: center; gap: 12px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 14px;
    color: #fff;
}
.feature-showcase-badge-ico {
    width: 42px; height: 42px; border-radius: 10px;
    background: var(--accent, #2563eb);
    display: flex; align-items: center; justify-content: center;
    color: #fff; flex: 0 0 auto;
}
.feature-showcase-badge-title { font-weight: 700; font-size: 1.05rem; line-height: 1.1; }
.feature-showcase-badge-sub   { font-size: 0.72rem; letter-spacing: .14em; text-transform: uppercase; opacity: .82; margin-top: 4px; }

.feature-showcase-eyebrow {
    color: var(--accent, #2563eb);
    letter-spacing: .14em; font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; margin-bottom: 12px;
}
.feature-showcase-title {
    font-size: clamp(1.6rem, 2.2vw + .6rem, 2.4rem);
    line-height: 1.18; font-weight: 700; margin: 0 0 14px;
    color: var(--ink, #0f172a);
}
.feature-showcase-sub {
    color: var(--muted, #64748b); font-size: 1rem; line-height: 1.6;
    margin: 0 0 22px; max-width: 56ch;
}
.feature-showcase-list {
    list-style: none; padding: 0; margin: 0;
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px;
}
.feature-showcase-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.92rem; color: var(--ink, #0f172a); line-height: 1.4;
}
.feature-showcase-check { color: var(--accent, #2563eb); flex: 0 0 auto; margin-top: 3px; }
.feature-showcase-cross { color: #dc2626; }
.feature-showcase-security { color: #059669; }

@media (max-width: 880px) {
    .feature-showcase { padding: 56px 0; }
    .feature-showcase-inner { grid-template-columns: 1fr; gap: 28px; }
    .feature-showcase.is-reversed .feature-showcase-inner { direction: ltr; }
    .feature-showcase-visual { aspect-ratio: 16 / 11; min-height: 220px; }
    .feature-showcase-list { grid-template-columns: 1fr; gap: 8px; }
    .feature-showcase-badge { left: 12px; bottom: 12px; padding: 10px 14px; }
    .feature-showcase-badge-ico { width: 36px; height: 36px; }
    .feature-showcase-badge-title { font-size: .95rem; }
}

/* ---------- ÜRÜN DETAY: Sol sidebar (hizmet detay ile aynı pattern) ---------- */
.urun-layout { display: grid; grid-template-columns: 280px 1fr; gap: 28px; align-items: start; }
@media (max-width: 980px) { .urun-layout { display: block; gap: 0; } }

.urun-side { position: sticky; top: 100px; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 14px; max-height: calc(100vh - 130px); display: flex; flex-direction: column; }
.urun-side-head { display: none; }
.urun-side-fab { display: none; }
.urun-side-backdrop { display: none; }
@media (max-width: 980px) {
    .urun-side {
        position: fixed !important;
        top: 0 !important; left: 0 !important; bottom: 0 !important;
        width: min(320px, 88vw);
        max-height: none;
        z-index: 100001;
        border: 0;
        border-radius: 0;
        box-shadow: 8px 0 32px rgba(0,0,0,.18);
        transform: translateX(-105%);
        transition: transform .28s cubic-bezier(.2,.7,.3,1);
        padding: 0;
    }
    .urun-side.is-open { transform: translateX(0); }
    .urun-side-head {
        display: flex !important; align-items: center; justify-content: space-between;
        padding: 14px 18px;
        border-bottom: 1px solid var(--border);
        background: var(--surface, #f8fafc);
        font-size: 0.95rem;
    }
    .urun-side-close {
        display: inline-flex; align-items: center; justify-content: center;
        width: 34px; height: 34px;
        background: transparent; color: var(--text);
        border: 0; border-radius: 8px; cursor: pointer;
    }
    .urun-side-close:hover { background: rgba(0,0,0,0.05); }
    .urun-side-search { padding: 12px 14px 6px; margin-bottom: 0; }
    .urun-side-list { padding: 6px 10px 16px; flex: 1; overflow-y: auto; }
    .urun-side-backdrop {
        display: block;
        position: fixed; inset: 0; z-index: 100000;
        background: rgba(0,0,0,.45);
        opacity: 0;
        pointer-events: none;
        transition: opacity .25s ease;
    }
    .urun-side-backdrop.is-visible { opacity: 1; pointer-events: auto; }
    .urun-side-fab {
        display: inline-flex; align-items: center; gap: 8px;
        position: fixed; left: 50%; bottom: 18px;
        transform: translateX(-50%);
        z-index: 998;
        padding: 12px 20px;
        background: var(--accent, #0066ff); color: #fff;
        border: 0; border-radius: 999px;
        font-weight: 600; font-size: 14px; font-family: inherit;
        cursor: pointer;
        box-shadow: 0 10px 28px rgba(0,102,255,0.38), 0 2px 6px rgba(0,0,0,.12);
        transition: transform .15s ease, box-shadow .15s ease, opacity .2s ease;
    }
    .urun-side-fab:hover { transform: translateX(-50%) translateY(-1px); }
    body.urun-drawer-open .urun-side-fab { opacity: 0; pointer-events: none; transform: translate(-50%, 16px); }
    body.urun-drawer-open { overflow: hidden; }
}
.urun-side-search { position: relative; margin-bottom: 10px; }
.urun-side-search svg { position: absolute; left: 11px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.urun-side-search input { width: 100%; padding: 9px 12px 9px 34px; border: 1px solid var(--border); border-radius: 10px; font-size: 0.875rem; font-family: inherit; background: var(--surface, #f8fafc); }
.urun-side-search input:focus { outline: 0; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 3px var(--accent-lo); }
.urun-side-list { list-style: none; padding: 0; margin: 0; flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 2px; }
.urun-side-list li a { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 8px; color: var(--ink); text-decoration: none; font-size: 0.875rem; line-height: 1.3; transition: background .12s; }
.urun-side-list li a:hover { background: var(--surface, #f1f5f9); color: var(--accent); }
.urun-side-list li.is-active a { background: var(--accent-lo); color: var(--accent); font-weight: 600; }
.urun-side-list li img { width: 32px; height: 32px; object-fit: contain; background: var(--surface, #f8fafc); border-radius: 6px; padding: 3px; flex: 0 0 auto; }
.urun-side-list-dot { width: 8px; height: 8px; background: var(--border); border-radius: 50%; margin: 0 12px 0 4px; }
.urun-side-list li.is-active .urun-side-list-dot { background: var(--accent); }
.urun-side-list-name { word-break: break-word; }
.urun-side-empty { color: var(--muted); font-size: 0.8125rem; padding: 12px 6px 0; text-align: center; }

.urun-main { min-width: 0; }

/* ============ SEPET / CHECKOUT ============ */
.cart-page, .checkout-page { padding: 40px 0 80px; }
.cart-title { font-size: clamp(1.5rem, 3vw, 2.25rem); margin: 0 0 24px; color: var(--ink); letter-spacing: -0.02em; }
.cart-flash { padding: 12px 16px; border-radius: 10px; margin-bottom: 16px; font-size: 0.9375rem; }
.cart-flash--ok   { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.cart-flash--err  { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.cart-flash--warn { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.cart-empty { text-align: center; padding: 80px 20px; color: var(--text-soft); }
.cart-empty svg { color: var(--border); margin-bottom: 12px; }
.cart-empty p { margin: 8px 0 16px; font-size: 1.0625rem; }

.cart-grid { display: grid; grid-template-columns: 1fr 340px; gap: 28px; align-items: start; }
@media (max-width: 900px) { .cart-grid { grid-template-columns: 1fr; } }

.cart-list { display: flex; flex-direction: column; gap: 10px; }
.cart-item { display: grid; grid-template-columns: 80px 1fr 140px 110px 36px; gap: 14px; align-items: center; padding: 14px; background: #fff; border: 1px solid var(--border); border-radius: 12px; }
.cart-item-img { display: flex; align-items: center; justify-content: center; width: 80px; height: 80px; background: var(--surface, #f8fafc); border: 1px solid var(--border-soft); border-radius: 8px; color: var(--text-mute); overflow: hidden; }
.cart-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.cart-item-body { min-width: 0; }
.cart-item-name { font-weight: 600; color: var(--ink); text-decoration: none; font-size: 0.9375rem; display: block; }
.cart-item-name:hover { color: var(--accent); }
.cart-item-pkg { color: var(--text-soft); font-size: 0.8125rem; margin-top: 2px; }
.cart-item-qty { text-align: center; }
.cart-qty-stepper { display: inline-flex; align-items: stretch; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.cart-qty-stepper button { background: #fff; border: 0; padding: 0 12px; font-size: 1rem; color: var(--ink); cursor: pointer; font-family: inherit; transition: background .12s, color .12s; }
.cart-qty-stepper button:hover { background: var(--accent-lo); color: var(--accent); }
.cart-qty-input { width: 48px; text-align: center; border: 0; border-left: 1px solid var(--border-soft); border-right: 1px solid var(--border-soft); padding: 8px 0; font-size: 0.9375rem; font-weight: 600; color: var(--ink); background: #fff; font-family: inherit; outline: 0; }
.cart-qty-input::-webkit-outer-spin-button, .cart-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.cart-qty-input { -moz-appearance: textfield; }
.cart-item-price { font-weight: 700; color: var(--ink); text-align: right; font-size: 1rem; }
.cart-item-remove { background: transparent; border: 0; color: var(--text-mute); cursor: pointer; font-size: 22px; padding: 0; line-height: 1; transition: color .15s; }
.cart-item-remove:hover { color: #b91c1c; }
@media (max-width: 640px) {
    .cart-item { grid-template-columns: 64px 1fr 32px; gap: 10px; padding: 12px; }
    .cart-item-img { width: 64px; height: 64px; }
    .cart-item-qty, .cart-item-price { grid-column: 1 / -1; text-align: left; padding-top: 8px; border-top: 1px solid var(--border-soft); margin-top: 4px; }
    .cart-item-price { text-align: right; padding-top: 4px; border-top: 0; }
}

.cart-summary { position: sticky; top: 100px; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 18px 20px; }
.cart-summary h3 { font-size: 1rem; margin: 0 0 14px; padding-bottom: 12px; border-bottom: 1px solid var(--border-soft); }
.cart-summary-row { display: flex; justify-content: space-between; align-items: baseline; padding: 6px 0; color: var(--text-soft); font-size: 0.9375rem; }
.cart-summary-row strong { color: var(--ink); }
.cart-summary-total { padding-top: 14px; margin-top: 6px; border-top: 1px solid var(--border-soft); font-size: 1.0625rem; }
.cart-summary-total strong { font-size: 1.25rem; color: var(--accent); font-weight: 800; }
.cart-checkout-btn { display: block; width: 100%; margin-top: 16px; text-align: center; }
.cart-continue { display: block; width: 100%; margin-top: 8px; text-align: center; }

/* Checkout (Customer) */
.checkout-grid { display: grid; grid-template-columns: 1fr 340px; gap: 28px; align-items: start; }
@media (max-width: 900px) { .checkout-grid { grid-template-columns: 1fr; } }
.checkout-form { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 22px 24px; }
.checkout-section-title { font-size: 0.875rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-soft); margin: 0 0 14px; }
.checkout-form .form-row { margin-bottom: 14px; }
.checkout-form label { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.checkout-form input, .checkout-form textarea { width: 100%; padding: 10px 12px; border: 1px solid var(--border); border-radius: 8px; font-family: inherit; font-size: 0.9375rem; background: #fff; box-sizing: border-box; }
.checkout-form input:focus, .checkout-form textarea:focus { outline: 0; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-lo); }

.checkout-line { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border-soft); }
.checkout-line:last-of-type { border-bottom: 0; }
.checkout-line-name { font-size: 0.875rem; font-weight: 600; color: var(--ink); }
.checkout-line-pkg { font-size: 0.75rem; color: var(--text-soft); margin-top: 2px; }
.checkout-line-qty { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }
.checkout-line-price { font-size: 0.9375rem; font-weight: 700; color: var(--ink); white-space: nowrap; }
.checkout-info { font-size: 0.75rem; color: var(--text-soft); margin-top: 14px; padding: 10px 12px; background: var(--surface, #f8fafc); border-radius: 8px; }
.checkout-actions { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border); }
.firma-row { display: grid; grid-template-columns: 110px 1fr; gap: 8px; padding: 4px 0; font-size: 0.875rem; align-items: baseline; }
.firma-row span { color: var(--text-soft); font-size: 0.8125rem; }
.firma-row strong { color: var(--ink); word-break: break-word; }
@media (max-width: 480px) { .checkout-actions { flex-direction: column-reverse; gap: 8px; } .checkout-actions .btn { width: 100%; text-align: center; } }

/* Ürün detay — Sepete Ekle */
.ec-buy-form { margin: 0; }
.ec-buy-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.ec-buy-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; font-size: 1rem; font-weight: 600; border-radius: 10px; }

/* Header — sepet ikonu + panel */
.cart-wrap { position: relative; display: inline-flex; }
.cart-icon { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 10px; color: var(--ink); cursor: pointer; border: 1px solid var(--border); background: #fff; transition: background .15s, color .15s; padding: 0; font-family: inherit; }
.cart-icon:hover { background: var(--accent-lo); color: var(--accent); }
.cart-icon-badge { position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px; background: var(--accent); color: #fff; font-size: 0.6875rem; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 0 0 2px #fff; }
@media (max-width: 900px) {
    .cart-icon { order: 3; }
}

/* Cart panel — desktop dropdown / mobile fullscreen sheet — body root'ta, en üstte */
.cart-panel {
    position: fixed; top: 78px; right: 24px;
    width: min(380px, calc(100vw - 32px));
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 20px 50px -12px rgba(15,23,42,0.25);
    z-index: 200001;
    display: flex; flex-direction: column;
    max-height: calc(100vh - 100px);
    opacity: 0; transform: translateY(-8px); pointer-events: none;
    transition: opacity .18s var(--ease), transform .18s var(--ease);
}
.cart-panel[hidden] { display: none; }
.cart-panel.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }

.cart-panel-head { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border-bottom: 1px solid var(--border-soft); }
.cart-panel-head strong { font-size: 1rem; color: var(--ink); }
.cart-panel-close { background: transparent; border: 0; cursor: pointer; color: var(--text-soft); font-size: 24px; line-height: 1; padding: 4px 8px; border-radius: 6px; }
.cart-panel-close:hover { background: rgba(0,0,0,0.05); color: var(--ink); }

.cart-panel-body { flex: 1; overflow-y: auto; padding: 6px 8px; max-height: 50vh; }
.cart-panel-loading, .cart-panel-empty { padding: 36px 16px; text-align: center; color: var(--text-soft); font-size: 0.9375rem; }
.cart-panel-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 200px; }

.cart-panel-item { display: grid; grid-template-columns: 48px 1fr auto; gap: 10px; padding: 10px 8px; border-bottom: 1px solid var(--border-soft); align-items: center; }
.cart-panel-item:last-child { border-bottom: 0; }
.cart-panel-item-img { width: 48px; height: 48px; border: 1px solid var(--border-soft); border-radius: 6px; background: var(--surface, #f8fafc); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.cart-panel-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.cart-panel-item-body { min-width: 0; }
.cart-panel-item-name { font-weight: 600; font-size: 0.875rem; color: var(--ink); margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-panel-item-pkg { font-size: 0.75rem; color: var(--text-soft); margin-top: 2px; }
.cart-panel-item-meta { display: flex; align-items: center; gap: 10px; margin-top: 6px; }
.cart-panel-qty { display: inline-flex; align-items: center; gap: 2px; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.cart-panel-qty button { background: transparent; border: 0; padding: 4px 8px; cursor: pointer; color: var(--ink); font-size: 0.875rem; font-family: inherit; }
.cart-panel-qty button:hover { background: var(--accent-lo); color: var(--accent); }
.cart-panel-qty .qty-val { padding: 0 6px; font-size: 0.875rem; font-weight: 600; min-width: 18px; text-align: center; }
.cart-panel-item-price { font-size: 0.875rem; font-weight: 700; color: var(--ink); text-align: right; }
.cart-panel-item-remove { background: transparent; border: 0; color: var(--text-mute); cursor: pointer; padding: 2px 4px; font-size: 0.75rem; }
.cart-panel-item-remove:hover { color: #b91c1c; }

.cart-panel-foot { padding: 14px 16px; border-top: 1px solid var(--border-soft); background: var(--surface, #f8fafc); border-radius: 0 0 14px 14px; }
.cart-panel-foot[hidden] { display: none; }
.cart-panel-summary { padding-bottom: 10px; margin-bottom: 10px; border-bottom: 1px solid var(--border-soft); }
.cart-panel-row { display: flex; justify-content: space-between; align-items: baseline; padding: 3px 0; font-size: 0.8125rem; color: var(--text-soft); }
.cart-panel-row strong { color: var(--ink); font-weight: 600; }
.cart-panel-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; font-size: 0.9375rem; color: var(--text-soft); }
.cart-panel-total strong { color: var(--accent); font-size: 1.25rem; font-weight: 800; }
.cart-panel-pay { display: block; width: 100%; text-align: center; }
.cart-panel-detail { display: block; text-align: center; color: var(--text-soft); font-size: 0.8125rem; margin-top: 10px; text-decoration: none; }
.cart-panel-detail:hover { color: var(--accent); }

.cart-panel-backdrop { position: fixed; inset: 0; background: rgba(15,23,42,0.18); backdrop-filter: blur(4px); z-index: 200000; opacity: 0; transition: opacity .2s ease; }
.cart-panel-backdrop.is-visible { opacity: 1; }
.cart-panel-backdrop[hidden] { display: none; }

@media (max-width: 640px) {
    .cart-panel {
        position: fixed; top: auto; bottom: 0; left: 0; right: 0;
        width: 100%; max-height: 85vh; max-width: none;
        border-radius: 16px 16px 0 0;
        transform: translateY(20px);
    }
    .cart-panel.is-open { transform: translateY(0); }
    .cart-panel-foot { border-radius: 0; }
}

/* Sepet açıldığında: ürün/hizmet listesi FAB'larını gizle, başka drawer'lar üstüne çıkmasın */
body.cart-open .urun-side-fab,
body.cart-open .hizmet-side-fab {
    opacity: 0; pointer-events: none; transform: translate(-50%, 16px);
}
body.cart-open { overflow: hidden; }
