/* ─── Apple-style Design System ─────────────────────────────────────── */

:root {
    --bg: #fbfbfd;
    --surface: #fff;
    --text: #1d1d1f;
    --muted: #86868b;
    --accent: #0071e3;
    --border: rgba(0, 0, 0, .08);
    --radius: 18px;
    --shadow: 0 1px 3px rgba(0, 0, 0, .04), 0 8px 24px rgba(0, 0, 0, .06);

    /* Font sistemi — TEK kaynak. Görünüm (Ayarlar → Görünüm) font çifti seçilirse
       GorunumKatalogu bu iki token'ı ezer; tüm ön yüz bunlardan türer. */
    --font-govde: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
    --font-baslik: var(--font-govde);

    --bs-primary: var(--accent);
    --bs-body-bg: var(--bg);
    --bs-body-color: var(--text);
    --bs-font-sans-serif: var(--font-govde);
    --bs-border-radius: var(--radius);
    --bs-card-border-color: var(--border);
    --bs-card-bg: var(--surface);
}

[data-theme="dark"] {
    --bg: #000;
    --surface: #1d1d1f;
    --text: #f5f5f7;
    --muted: #a1a1a6;
    --accent: #2997ff;
    --border: rgba(255, 255, 255, .1);
    --shadow: 0 1px 3px rgba(0, 0, 0, .5);

    --bs-body-bg: var(--bg);
    --bs-body-color: var(--text);
}

/* ─── Base ───────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-govde);
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background .3s cubic-bezier(.4, 0, .2, 1), color .3s cubic-bezier(.4, 0, .2, 1);
}

/* Form öğeleri tarayıcı varsayılan fontuna düşmesin — sistem fontunu miras alsın */
button, input, select, textarea { font-family: inherit; }

a {
    color: var(--accent);
    text-decoration: none;
    transition: color .25s cubic-bezier(.4, 0, .2, 1);
}

a:hover { color: var(--accent); opacity: .8; }

img { max-width: 100%; display: block; }

/* ─── Glass effect ───────────────────────────────────────────────────── */

.glass {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--border);
}

[data-theme="dark"] .glass {
    background: rgba(0, 0, 0, .6);
}

/* ─── Bootstrap overrides ────────────────────────────────────────────── */

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: box-shadow .3s cubic-bezier(.4, 0, .2, 1), transform .3s cubic-bezier(.4, 0, .2, 1);
}

.card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, .06), 0 16px 40px rgba(0, 0, 0, .1);
    transform: translateY(-2px);
}

[data-theme="dark"] .card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, .6), 0 16px 40px rgba(0, 0, 0, .7);
}

.card-body { padding: 1.75rem; }

.btn {
    border-radius: 999px;
    font-weight: 500;
    letter-spacing: -.01em;
    padding: .55rem 1.4rem;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1), box-shadow .3s cubic-bezier(.4, 0, .2, 1), background .2s, border-color .2s;
}

.btn:hover { transform: scale(1.02); }
.btn:active { transform: scale(.98); }

.btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    border-radius: 999px;
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    opacity: .88;
    box-shadow: 0 4px 16px rgba(0, 113, 227, .35);
}

[data-theme="dark"] .btn-primary:hover {
    box-shadow: 0 4px 16px rgba(41, 151, 255, .4);
}

.btn-outline-primary {
    color: var(--accent);
    border-color: var(--accent);
    border-radius: 999px;
}

.btn-outline-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.02);
}

.btn-secondary {
    background: var(--surface);
    border-color: var(--border);
    color: var(--text);
    border-radius: 999px;
}

.btn-secondary:hover {
    background: var(--bg);
    border-color: var(--muted);
    color: var(--text);
    transform: scale(1.02);
}

/* ─── Form controls ──────────────────────────────────────────────────── */

.form-control,
.form-select {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    transition: border-color .25s, box-shadow .25s;
}

.form-control:focus,
.form-select:focus {
    background: var(--surface);
    border-color: var(--accent);
    color: var(--text);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, .15);
}

[data-theme="dark"] .form-control:focus,
[data-theme="dark"] .form-select:focus {
    box-shadow: 0 0 0 3px rgba(41, 151, 255, .2);
}

.form-control::placeholder { color: var(--muted); }

/* ─── Navbar ─────────────────────────────────────────────────────────── */

.navbar {
    background: rgba(255, 255, 255, .8) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: background .3s;
}

[data-theme="dark"] .navbar {
    background: rgba(0, 0, 0, .75) !important;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--text) !important;
}

.nav-link {
    color: var(--text) !important;
    font-weight: 400;
    opacity: .85;
    transition: opacity .2s;
    border-radius: 8px;
    padding: .4rem .75rem !important;
}

.nav-link:hover { opacity: 1; background: var(--border); }
.nav-link.active { opacity: 1; font-weight: 600; }

/* ─── Dropdown ───────────────────────────────────────────────────────── */

.dropdown-menu {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: .5rem;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.dropdown-item {
    color: var(--text);
    border-radius: 8px;
    padding: .45rem .85rem;
    font-size: .9375rem;
    transition: background .15s;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: var(--bg);
    color: var(--text);
}

/* ─── Section / Container helpers ───────────────────────────────────── */
/* NOT: global `section { padding }` kuralı kaldırıldı (2026-07-27) — py-5 ile
   çift boşluk üretiyordu; dikey ritim artık .bolum-dikey / --bolum-py üzerinden. */

.section-sm { padding: 3rem 0; }
.section-lg { padding: 8rem 0; }

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.15;
    color: var(--text);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ─── Typography ─────────────────────────────────────────────────────── */

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-baslik);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.2;
    color: var(--text);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); letter-spacing: -.04em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); letter-spacing: -.03em; }
h3 { font-size: clamp(1.375rem, 2.5vw, 2rem); }
h4 { font-size: 1.375rem; }

p { line-height: 1.75; }

.text-muted { color: var(--muted) !important; }

/* ─── Hero ───────────────────────────────────────────────────────────── */

.hero {
    padding: 7rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0, 113, 227, .12) 0%, transparent 70%);
    pointer-events: none;
}

[data-theme="dark"] .hero::before {
    background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(41, 151, 255, .15) 0%, transparent 70%);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -.05em;
    line-height: 1.05;
}

.hero-lead {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--muted);
    max-width: 640px;
    margin: 1.25rem auto 2.5rem;
    line-height: 1.6;
}

/* ─── Product card ───────────────────────────────────────────────────── */

.product-card {
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow .3s cubic-bezier(.4, 0, .2, 1), transform .3s cubic-bezier(.4, 0, .2, 1);
}

.product-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, .06), 0 16px 40px rgba(0, 0, 0, .12) !important;
    transform: translateY(-4px);
}

.product-card img {
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.product-card:hover img { transform: scale(1.04); }

/* ─── Category card ──────────────────────────────────────────────────── */

.category-card {
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1), box-shadow .3s cubic-bezier(.4, 0, .2, 1);
}

.category-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .14) !important;
}

/* ─── Badge ──────────────────────────────────────────────────────────── */

.badge {
    border-radius: 999px;
    font-weight: 500;
    letter-spacing: .01em;
    padding: .35em .75em;
}

.badge-accent {
    background: rgba(0, 113, 227, .1);
    color: var(--accent);
}

[data-theme="dark"] .badge-accent {
    background: rgba(41, 151, 255, .15);
}

/* ─── Blog ───────────────────────────────────────────────────────────── */

.blog-content h1,
.blog-content h2,
.blog-content h3 {
    margin-top: 2rem;
    margin-bottom: .75rem;
}

.blog-content p { line-height: 1.85; }

.blog-content img { border-radius: 14px; margin: 1.5rem 0; }

.blog-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ─── Prose ──────────────────────────────────────────────────────────── */

.prose img { border-radius: 14px; }

/* ─── Footer ─────────────────────────────────────────────────────────── */

footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 3.5rem 0 2rem;
    color: var(--muted);
    font-size: .9375rem;
}

footer a { color: var(--muted); transition: color .2s; }
footer a:hover { color: var(--text); }

/* ─── Divider ────────────────────────────────────────────────────────── */

hr {
    border: none;
    border-top: 1px solid var(--border);
    opacity: 1;
}

/* ─── Scrollbar (webkit) ─────────────────────────────────────────────── */

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted); }

/* ─── Utilities ──────────────────────────────────────────────────────── */

.surface { background: var(--surface); }
.bg-surface { background: var(--surface) !important; }
.text-accent { color: var(--accent) !important; }
.border-subtle { border-color: var(--border) !important; }
.radius { border-radius: var(--radius) !important; }
.radius-sm { border-radius: 10px !important; }
.radius-xs { border-radius: 6px !important; }
.shadow-card { box-shadow: var(--shadow) !important; }

/* ─── Alert ──────────────────────────────────────────────────────────── */

.alert {
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--surface);
}

/* ─── Table ──────────────────────────────────────────────────────────── */

.table {
    color: var(--text);
}

.table > :not(caption) > * > * {
    background-color: transparent;
    border-bottom-color: var(--border);
    color: var(--text);
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    background-color: rgba(0, 0, 0, .02);
    color: var(--text);
}

[data-theme="dark"] .table-striped > tbody > tr:nth-of-type(odd) > * {
    background-color: rgba(255, 255, 255, .03);
}

/* ─── Modal ──────────────────────────────────────────────────────────── */

.modal-content {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
}

.modal-header {
    border-bottom-color: var(--border);
}

.modal-footer {
    border-top-color: var(--border);
}

/* ─── Pagination ─────────────────────────────────────────────────────── */

.page-link {
    background: var(--surface);
    border-color: var(--border);
    color: var(--text);
    border-radius: 8px !important;
    margin: 0 2px;
    transition: background .2s, color .2s;
}

.page-link:hover {
    background: var(--bg);
    border-color: var(--accent);
    color: var(--accent);
}

.page-item.active .page-link {
    background: var(--accent);
    border-color: var(--accent);
}

/* ─── Responsive grid helpers ────────────────────────────────────────── */

@media (max-width: 575.98px) {
    section { padding: 3rem 0; }
    .hero { padding: 4rem 0 3rem; }
    .card-body { padding: 1.25rem; }
    h1 { letter-spacing: -.03em; }
}

@media (max-width: 767.98px) {
    .section-lg { padding: 5rem 0; }
    .navbar .btn { display: none; }
}

@media (min-width: 992px) {
    .hero { padding: 9rem 0 7rem; }
}

/* ─── Smooth page transition ─────────────────────────────────────────── */

@media (prefers-reduced-motion: no-preference) {
    .fade-up {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity .5s cubic-bezier(.4, 0, .2, 1), transform .5s cubic-bezier(.4, 0, .2, 1);
    }

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }
}

/* ─── Header: iki satırlı düzen (üst bar + logo/menü satırı) ─────────── */

:root { --header-h: 64px; --ann-h: 0px; }
@media (min-width: 992px) { :root { --header-h: 116px; } }

/* --ann-h: header üstü duyuru çubuğu yüksekliği. Çubuk yoksa 0 (DuyuruCubugu bileşeni aktifken
   :root'u 44px'e çeker; kapatılınca JS 0'a döndürür). Header ve body bu değişkenle kayar. */
body { padding-top: calc(var(--header-h) + var(--ann-h)); }

.site-header-float {
    position: fixed;
    top: var(--ann-h);
    left: 0;
    right: 0;
    z-index: 1040;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .25s;
}
.site-header-float.scrolled { box-shadow: 0 6px 24px rgba(0,0,0,.06); }
[data-theme="dark"] .site-header-float.scrolled { box-shadow: 0 6px 24px rgba(0,0,0,.4); }

.site-header-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
@media (min-width: 992px) { .site-header-inner { padding: 0 3rem; } }

/* ── Üst bar (yalnız lg+; markup'ta d-none d-lg-flex) ── */
.site-topbar {
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 13px;
    border-bottom: 1px solid var(--border);
    max-height: 60px;
    opacity: 1;
    transition: max-height .2s cubic-bezier(.4,0,.2,1), opacity .15s;
}
/* Scroll'da üst bar kapanır; ana satır sticky kalır */
.site-header-float.scrolled .site-topbar {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    border-bottom-color: transparent;
    pointer-events: none;
}

.site-topbar-left,
.site-topbar-right { display: flex; align-items: center; min-width: 0; }

.site-topbar-link {
    color: color-mix(in srgb, var(--text) 50%, transparent);
    text-decoration: none !important;
    padding: 12px 25px;
    border-inline-end: 1px solid var(--border);
    white-space: nowrap;
    transition: color .15s;
}
.site-topbar-link:first-child { padding-inline-start: 0; }
.site-topbar-link:hover { color: var(--accent); opacity: 1; }

.site-topbar-mail {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-inline-start: 20px;
    color: color-mix(in srgb, var(--text) 50%, transparent);
    white-space: nowrap;
}
.site-topbar-mail a { color: var(--accent); font-weight: 500; text-decoration: none !important; }
.site-topbar-mail a:hover { opacity: .8; }

.site-topbar-lang .dropdown-toggle {
    background: none;
    border: none;
    font-size: 13px;
    color: color-mix(in srgb, var(--text) 65%, transparent);
    padding: 4px 8px;
    cursor: pointer;
}
.site-topbar-lang .dropdown-toggle:hover { color: var(--accent); }

.site-topbar-social {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px 20px;
    margin-inline: 20px;
    border-inline: 1px solid var(--border);
}
.site-topbar-social a {
    color: color-mix(in srgb, var(--text) 65%, transparent);
    font-size: 18px;
    line-height: 1;
    text-decoration: none !important;
    transition: color .15s;
}
.site-topbar-social a:hover { color: var(--accent); opacity: 1; }

/* ── Ana satır: logo + menü + telefon ── */
.site-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .75rem 0;
}
@media (min-width: 992px) { .site-header-row { padding: 0; gap: 1.5rem; } }

.site-header-logo { flex-shrink: 0; text-decoration: none !important; }
@media (min-width: 992px) { .site-header-logo { padding-block: 15px; } }

.site-header-menu {
    list-style: none;
    margin: 0;
    margin-inline-start: auto; /* menü sağa (RTL'de sola) yaslanır */
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.site-header-link {
    display: inline-block;
    position: relative;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: color-mix(in srgb, var(--text) 65%, transparent);
    text-decoration: none !important;
    white-space: nowrap;
    padding: 10px 15px;
    transition: color .15s;
}
/* Hover'da soldan büyüyen 2px alt çizgi */
.site-header-link::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 4px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s cubic-bezier(.4,0,.2,1);
}
[dir="rtl"] .site-header-link::after { transform-origin: right; }
.site-header-link:hover { color: var(--accent); opacity: 1; }
.site-header-link:hover::after { transform: scaleX(1); }

/* ── Telefon bloğu (yalnız lg+; markup'ta d-none d-lg-flex) ── */
.site-header-phone {
    align-items: center;
    gap: 10px;
    margin-inline-start: 38px;
    flex-shrink: 0;
    text-decoration: none !important;
}
.site-header-phone-icon { font-size: 22px; color: var(--accent); }
.site-header-phone-label {
    display: block;
    font-size: 11px;
    line-height: 1.2;
    color: color-mix(in srgb, var(--text) 35%, transparent);
}
.site-header-phone-number {
    display: block;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--accent);
}
.site-header-phone:hover .site-header-phone-number { opacity: .8; }

.site-header-burger {
    background: none;
    border: none;
    padding: .25rem .375rem;
    cursor: pointer;
    color: var(--text);
    line-height: 1;
    border-radius: 6px;
}
.site-header-burger:hover { background: var(--border); }

.site-header-mobile-panel {
    overflow: hidden;
    max-height: 0;
    border-top: 1px solid transparent;
    transition: max-height .35s cubic-bezier(.4,0,.2,1), border-color .35s;
}
.site-header-mobile-panel.open {
    max-height: 640px;
    border-top-color: var(--border);
}

.site-header-mobile-menu {
    list-style: none;
    padding: .75rem 0 .25rem;
    margin: 0;
}
.site-header-mobile-link {
    display: block;
    color: var(--muted);
    font-size: .9375rem;
    padding: .625rem 0;
    text-decoration: none !important;
    border-bottom: 1px solid var(--border);
    transition: color .15s;
}
.site-header-mobile-link:hover { color: var(--text); opacity: 1; }

.site-header-mobile-auth { padding: .75rem 0 .25rem; }

/* ── Mobil panel: dil + AI arama satırı ── */
.site-header-mobile-extras {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .75rem 0 .5rem;
}
.site-header-mobile-lang { display: flex; flex-wrap: wrap; gap: .5rem; }
.site-header-mobile-lang a {
    font-size: .875rem;
    color: var(--muted);
    text-decoration: none !important;
    padding: .25rem .5rem;
    border-radius: 8px;
}
.site-header-mobile-lang a.aktif { background: var(--border); color: var(--text); }

/* ─── Hero v2 (video / image background) ────────────────────────────── */

.hero-v2 {
    position: relative;
    overflow: hidden;
    background: var(--bg);
    margin-top: calc(-1 * var(--header-h));
    padding-top: calc(var(--header-h) + 3rem);
    padding-bottom: 3rem;
    min-height: 100vh;
    min-height: 100dvh;
    /* İçerik alta yaslanır (inşaat hero deseni: alt-sol metin) */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

@media (min-width: 768px)  { .hero-v2 { padding-bottom: 4rem; } }
@media (min-width: 992px)  { .hero-v2 { padding-bottom: 5rem; } }

.hero-v2-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 0;
    border: 1px solid rgba(0,0,0,.08);
}
[data-theme="dark"] .hero-v2-bg { border-color: rgba(255,255,255,.05); }

.hero-v2-bg video {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
[data-theme="dark"] .hero-v2-bg video { opacity: .35; filter: invert(0); }
@media (min-width: 992px) { [data-theme="dark"] .hero-v2-bg video { opacity: .75; } }

.hero-v2-bg img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Medya (video/görsel) varken: altta koyu degrade scrim → beyaz metin her karede okunur (4.5:1). */
.hero-v2-has-media .hero-v2-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(0,0,0,.74) 0%,
        rgba(0,0,0,.42) 40%,
        rgba(0,0,0,.08) 72%,
        rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.hero-v2-content {
    position: relative;
    z-index: 10;
    /* Flex kolonda auto margin stretch'i iptal eder; width:100% olmadan kutu
       içerik genişliğine büzülüp ortalanır ve header hizasından kayar. */
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
@media (min-width: 992px) { .hero-v2-content { padding: 0 3rem; } }

.hero-v2-text { max-width: 42rem; text-align: center; margin: 0 auto; }
@media (min-width: 992px) { .hero-v2-text { text-align: left; margin: 0; max-width: 100%; } }

.hero-v2-h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -.05em;
    line-height: 1.05;
    max-width: 32rem;
    margin: 0 auto 1.25rem;
    color: var(--text);
}
@media (min-width: 992px) { .hero-v2-h1 { margin: 0 0 1.25rem; } }

.hero-v2-lead {
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--muted);
    max-width: 36rem;
    margin: 0 auto 2rem;
}
@media (min-width: 992px) { .hero-v2-lead { margin: 0 0 2rem; } }

/* Ek açıklama satırı (lead'in küçük varyantı) */
.hero-v2-sub { font-size: 1rem; margin-top: -1.25rem; }

/* Medya üzerinde metinler beyaza döner (scrim ile birlikte okunur) */
.hero-v2-has-media .hero-v2-h1 { color: #fff; }
.hero-v2-has-media .hero-v2-lead { color: rgba(255,255,255,.88); }
.hero-v2-has-media .hero-v2-sub { color: rgba(255,255,255,.72); }

.hero-v2-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    margin-bottom: 0;
}
@media (min-width: 576px) { .hero-v2-btns { flex-direction: row; justify-content: center; } }
@media (min-width: 992px) { .hero-v2-btns { justify-content: flex-start; } }

/* ── Hero CTA butonları: header menüsüyle aynı dil (bold, büyük harf, letter-spacing) ── */
.hero-v2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 10px;
    text-decoration: none !important;
    transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.hero-v2-btn:active { transform: scale(.97); }
.hero-v2-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.hero-v2-btn-primary { background: var(--accent); color: #fff; }
.hero-v2-btn-primary:hover {
    background: color-mix(in srgb, var(--accent) 85%, #000);
    color: #fff;
    opacity: 1;
}
.hero-v2-btn-primary .bi { transition: transform .2s; }
.hero-v2-btn-primary:hover .bi { transform: translateX(4px); }

.hero-v2-btn-ghost {
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
}
.hero-v2-btn-ghost:hover { border-color: var(--accent); color: var(--accent); opacity: 1; }

/* Ghost buton medya üzerinde beyaz çerçeveli olur */
.hero-v2-has-media .hero-v2-btn-ghost { border-color: rgba(255,255,255,.45); color: #fff; }
.hero-v2-has-media .hero-v2-btn-ghost:hover {
    border-color: #fff;
    background: rgba(255,255,255,.12);
    color: #fff;
}

@media (prefers-reduced-motion: reduce) {
    .hero-v2-btn, .hero-v2-btn .bi { transition: none; }
    .hero-v2-btn:active { transform: none; }
}

/* ─── Logo Slider ────────────────────────────────────────────────────── */

.logo-slider-section {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: .25rem 0 .75rem;
}

.logo-slider-wrap {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}
@media (min-width: 768px) {
    .logo-slider-wrap { flex-direction: row; padding: 0 3rem; }
}

.logo-slider-label {
    font-size: .8125rem;
    color: var(--muted);
    white-space: nowrap;
    flex-shrink: 0;
}
@media (min-width: 768px) {
    .logo-slider-label { min-width: 8rem; text-align: right; padding-right: 1.5rem; border-right: 1px solid var(--border); }
}

.logo-slider-track-wrap {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 1.25rem 0;
    min-width: 0;
}

.logo-slider-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: max-content;
    animation: logo-scroll 36s linear infinite;
}
.logo-slider-track:hover { animation-play-state: paused; }

@keyframes logo-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.logo-slider-track img {
    height: 20px;
    width: auto;
    flex-shrink: 0;
    display: inline-block;
    opacity: .55;
    filter: grayscale(1);
    transition: opacity .2s, filter .2s;
}
[data-theme="dark"] .logo-slider-track img { filter: grayscale(1) invert(1); }
.logo-slider-track img:hover { opacity: 1; filter: none; }

.logo-slider-fade-l {
    position: absolute; inset-y: 0; left: 0; width: 4rem;
    background: linear-gradient(to right, var(--bg), transparent);
    pointer-events: none; z-index: 1;
}
.logo-slider-fade-r {
    position: absolute; inset-y: 0; right: 0; width: 4rem;
    background: linear-gradient(to left, var(--bg), transparent);
    pointer-events: none; z-index: 1;
}

/* ─── Faz 8.5: Accessibility (WCAG AA) ─────────────────────────── */
/* Focus ring — keyboard kullanıcıları için belirgin */
:focus-visible {
    outline: 3px solid #0071e3;
    outline-offset: 2px;
    border-radius: 2px;
}
/* Mouse click'te outline gözükmesin */
:focus:not(:focus-visible) {
    outline: none;
}
/* Skip-link odaklanınca görünür */
.visually-hidden-focusable:focus,
.visually-hidden-focusable:focus-within {
    position: fixed !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
}
/* Reduced motion — kullanıcı animasyon istemiyorsa kapat */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
/* Form input renk kontrastı — light mode */
input::placeholder, textarea::placeholder {
    color: #6c757d;
    opacity: 1;
}

/* ── Proje detay (pd-*): rozet + künye kartı + galeri küçük resim vurgusu ──
   (Eski sabit sağ ray .urun-fixed-actions kaldırıldı — CTA'lar künye altında inline.) */
.proje-rozet {
    display: inline-flex;
    align-items: center;
    padding: .3rem .8rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    background: color-mix(in srgb, var(--accent) 12%, transparent);
    color: var(--accent);
    border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
}
.pd-kunye .il-satir { padding: .6rem 0; border-bottom: 1px solid var(--border); }
.pd-kunye .il-satir:last-child { border-bottom: 0; padding-bottom: 0; }
.pd-kunye .il-satir:first-child { padding-top: 0; }
.thumb-img.thumb-aktif { border-color: var(--accent) !important; }

/* Proje detay sekmeleri — filtre pilleriyle aynı dil (Bootstrap tab JS'i .nav-link.active yönetir) */
.pd-sekmeler { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; border: 0; }
.pd-sekmeler .nav-link {
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    color: var(--text);
    font-size: .85rem;
    font-weight: 600;
    padding: .5rem 1.3rem;
    transition: border-color .2s, color .2s, background .2s;
}
.pd-sekmeler .nav-link:hover { border-color: var(--accent); color: var(--accent); }
.pd-sekmeler .nav-link.active,
.pd-sekmeler .nav-link.active:hover { background: var(--accent); border-color: var(--accent); color: var(--bg); }

/* Uzun proje metni — okunabilir satır uzunluğu (~75 karakter) */
.pd-detay-icerik { max-width: 52rem; }

/* ── WhatsApp yüzen buton efekti (SET projesindeki .wa-fab'dan) ──
   Hafif yukarı-aşağı süzülme + yeşil nabız halkası */
.wa-fab { animation: waFloat 3s ease-in-out infinite; }
.wa-fab::before {
    content: ''; position: absolute; inset: 0; border-radius: 50%;
    border: 2px solid #25d366; animation: waPulse 2.4s ease-out infinite; pointer-events: none;
}
@keyframes waFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes waPulse { 0% { transform: scale(1); opacity: .65; } 100% { transform: scale(1.75); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .wa-fab, .wa-fab::before { animation: none; } }

/* ─── Banner Bölümleri: ortak ─────────────────────────────────────────── */

/* Bölüm dikey ritmi (8pt ızgara, iki katman): ana bölüm 64/96px, ara bant 32px.
   Tüm ana sayfa bölümleri bu token'ları kullanır — tek yerden ayarlanır. */
:root {
    --bolum-py: 4rem;      /* ana bölüm, mobil */
    --bolum-py-lg: 6rem;   /* ana bölüm, masaüstü */
    --bant-py: 2rem;       /* ince ara bant (Adımlar) */
}

/* Eski bileşenlerin (ProductGrid, CategoryGrid, About, Hizmetler) ortak dikey ritmi */
.bolum-dikey { padding: var(--bolum-py) 0; }
@media (min-width: 992px) { .bolum-dikey { padding: var(--bolum-py-lg) 0; } }

.bolum-ic {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
@media (min-width: 992px) { .bolum-ic { padding: 0 3rem; } }

.bolum-bas { margin-bottom: 2.5rem; }

/* Eyebrow: gri çipli hap (referans aile stili — açık zeminde gri, koyu bölümlerde override) */
.eyebrow {
    display: inline-block;
    font-size: 13px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--text) 55%, transparent);
    background: color-mix(in srgb, var(--text) 5%, var(--bg));
    border-radius: 2px;
    padding: 4px 15px;
    margin-bottom: 20px;
}

.bolum-h2 {
    font-size: clamp(1.75rem, 3.4vw, 2.875rem);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.15;
    color: var(--text);
    margin: 0;
    max-width: 34rem;
}

/* **kelime** vurgusu: kelimenin alt yarısına oturan kalın accent şerit.
   ::after yerine gradient + box-decoration-break: vurgu birden çok satıra
   sarınca şerit her satırda kendi alt yarısına klonlanır (eski mutlak ::after
   sarmada metnin üstünden geçip "üstü çizili" görünüyordu). */
mark.vurgu {
    color: inherit;
    padding: 0 .06em;
    background-image: linear-gradient(
        to top,
        transparent .08em,
        color-mix(in srgb, var(--accent) 60%, transparent) .08em,
        color-mix(in srgb, var(--accent) 60%, transparent) .47em,
        transparent .47em
    );
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

/* Görünüme girince yumuşak yukarı kayma (theme.js IntersectionObserver) */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .4s ease-out, transform .4s ease-out;
}
.fade-up.gorunur { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .fade-up { opacity: 1; transform: none; transition: none; }
}

/* Alt not: çerçeveli hap (referans: 1px sınır + 99px radius + 1em iç boşluk) */
.banner-alt-not {
    display: table;
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
    margin: 3rem auto 0;
    max-width: 44rem;
    border: 1px solid var(--border);
    border-radius: 99px;
    padding: 1em 1.75em;
}
.banner-alt-not a {
    color: var(--accent);
    text-decoration: underline !important;
    font-weight: 500;
}

/* ─── Kurumsal 3'lü (ku-) — ortalı başlık + çerçeveli kartlar ─────────── */

.ku-bolum { padding: var(--bolum-py) 0; background: var(--bg); }
@media (min-width: 992px) { .ku-bolum { padding: var(--bolum-py-lg) 0; } }

/* Başlık bloğu ortalı: gri çipli eyebrow + büyük H2 (vurgulu) */
.ku-bas { text-align: center; }
.ku-eyebrow {
    display: inline-block;
    font-size: 13px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--text) 55%, transparent);
    background: color-mix(in srgb, var(--text) 5%, var(--bg));
    border-radius: 2px;
    padding: 4px 15px;
    margin-bottom: 20px;
}
.ku-h2 {
    font-size: clamp(2rem, 3.6vw, 2.875rem);
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.15;
    color: var(--text);
    margin: 0 auto 50px;
    max-width: 40rem;
}

.ku-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 768px)  { .ku-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px)  { .ku-grid { grid-template-columns: repeat(3, 1fr); } }

/* Kart: 1px çerçeve + 10px köşe; altta çizgiyle ayrılmış "Daha Fazla" satırı */
.ku-kutu {
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--bg);
}

.ku-rozet {
    position: absolute;
    top: 14px;
    inset-inline-end: 14px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: color-mix(in srgb, var(--text) 5%, var(--bg));
    color: color-mix(in srgb, var(--text) 60%, transparent);
    border-radius: 999px;
    padding: 6px 14px;
}

.ku-kutu-ic { padding: 35px 35px 45px; flex: 1; }

.ku-ikon { margin-bottom: 28px; }
.ku-ikon img { height: 60px; width: auto; max-width: 100%; object-fit: contain; }

.ku-baslik { font-size: 20px; font-weight: 700; line-height: 1.35; margin: 0 0 .75rem; }
.ku-baslik a { color: var(--text); text-decoration: none !important; }
.ku-baslik a:hover { color: var(--accent); opacity: 1; }
.ku-baslik-ok {
    font-size: .85em;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity .2s, transform .2s;
    display: inline-block;
}
.ku-baslik a:hover .ku-baslik-ok { opacity: 1; transform: none; }

.ku-metin { font-size: 15px; line-height: 1.55; color: var(--muted); margin: 0; }

.ku-kutu-alt { border-top: 1px solid var(--border); padding: 15px 35px 20px; }

.ku-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none !important;
    transition: color .15s;
}
.ku-link:hover { color: var(--accent); opacity: 1; }
.ku-link .bi { transition: transform .2s; }
.ku-link:hover .bi { transform: translateX(4px); }

/* ─── Projeler (pj-) — ters yüzey (koyu) + blueprint çizgi dokusu ────── */

.pj-bolum {
    position: relative;
    padding: var(--bolum-py) 0;
    background: var(--accent);
    color: var(--bg);
    overflow: hidden;
}
@media (min-width: 992px) { .pj-bolum { padding: var(--bolum-py-lg) 0; } }

/* Arka plan dokusu: düzensiz aralıklı soluk dikey çizgiler + üstte iki yatay çizgi
   (referanstaki çizgi dokusunun CSS ile üretilmiş karşılığı — harici görsel yok) */
.pj-bolum::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(90deg, color-mix(in srgb, var(--bg) 7%, transparent) 1px, transparent 1px),
        linear-gradient(90deg, color-mix(in srgb, var(--bg) 5%, transparent) 1px, transparent 1px),
        linear-gradient(90deg, color-mix(in srgb, var(--bg) 6%, transparent) 1px, transparent 1px),
        linear-gradient(90deg, color-mix(in srgb, var(--bg) 5%, transparent) 1px, transparent 1px),
        linear-gradient(90deg, color-mix(in srgb, var(--bg) 7%, transparent) 1px, transparent 1px),
        linear-gradient(0deg,  color-mix(in srgb, var(--bg) 5%, transparent) 1px, transparent 1px),
        linear-gradient(0deg,  color-mix(in srgb, var(--bg) 4%, transparent) 1px, transparent 1px);
    background-repeat: no-repeat;
    background-size: 1px 100%, 1px 100%, 1px 100%, 1px 100%, 1px 100%, 100% 1px, 100% 1px;
    background-position: 16% 0, 33% 0, 50% 0, 73% 0, 90% 0, 0 9%, 0 19%;
}
.pj-bolum > .bolum-ic { position: relative; z-index: 1; }

.pj-bolum .bolum-h2 {
    color: var(--bg);
    font-size: clamp(2.5rem, 4vw, 3.4375rem);
    line-height: .95;
    letter-spacing: -.03em;
    max-width: none;
}
/* Koyu zeminde eyebrow çipi: yarı saydam beyaz hap */
.pj-bolum .eyebrow {
    color: var(--bg);
    background: color-mix(in srgb, var(--bg) 6%, transparent);
}

.pj-ust {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
@media (min-width: 992px) {
    .pj-ust {
        display: grid;
        grid-template-columns: 40fr 40fr 20fr;
        align-items: center;
        gap: 1.5rem;
    }
}

.pj-aciklama {
    font-size: 19px;
    line-height: 1.5;
    color: color-mix(in srgb, var(--bg) 58%, transparent);
    margin: 0 2em 0 0;
}

.pj-oklar { display: flex; gap: .75rem; }
@media (min-width: 992px) { .pj-oklar { justify-self: end; } }
.pj-ok {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid var(--bg);
    background: transparent;
    color: var(--bg);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: background .2s, color .2s;
}
.pj-ok:hover { background: var(--bg); color: var(--text); }
.pj-ok:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.pj-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: .5rem;
}
.pj-track::-webkit-scrollbar { display: none; }

.pj-kart {
    flex: 0 0 86vw;
    scroll-snap-align: start;
}
@media (min-width: 768px) { .pj-kart { flex-basis: calc((100% - 20px) / 2); } }
@media (min-width: 992px) { .pj-kart { flex-basis: calc((100% - 40px) / 3); } }

.pj-kart-link {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none !important;
    height: 360px;
    background: color-mix(in srgb, var(--bg) 8%, transparent);
}
.pj-kart-resim { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease-out; }
.pj-kart-link:hover .pj-kart-resim { transform: scale(1.04); }

/* Kart alt degrade — referans: %30'a kadar saydam, alta doğru bölüm rengine koyulaşır */
.pj-kart-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        transparent 30%,
        color-mix(in srgb, var(--accent) 55%, #000) 96%);
    pointer-events: none;
}

.pj-kart-icerik {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    z-index: 1;
    padding: 1.5rem;
    display: block;
}
.pj-kart-pil {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    background: var(--bg);
    color: var(--accent);
    border-radius: 2px;
    padding: 4px 12px;
    margin-bottom: .625rem;
}
.pj-kart-baslik {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.17;
    color: var(--bg);
    margin: 0;
    padding-inline-end: 1em;
}

/* ─── Kentsel Dönüşüm (kd-) — solda metin, sağda accent çerçeveli görsel ─ */

.kd-bolum { position: relative; padding: var(--bolum-py) 0; background: var(--bg); overflow: hidden; }
@media (min-width: 992px) { .kd-bolum { padding: var(--bolum-py-lg) 0; } }

/* Dekoratif arka plan görseli: ortada, 660px, soluk (referans düzeni) */
.kd-arkaplan {
    position: absolute;
    inset: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 660px auto;
    opacity: .5;
    pointer-events: none;
}
.kd-bolum > .bolum-ic { position: relative; z-index: 1; }

.kd-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 992px) { .kd-grid { grid-template-columns: 1fr 1fr; gap: 5.5rem; } }

.kd-bolum .bolum-bas { margin-bottom: 0; }
.kd-bolum .bolum-h2 { margin-bottom: 45px; }

.kd-kutu {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 50px;
}
.kd-kutu-ikon img { width: 96px; height: 96px; object-fit: contain; }
.kd-kutu-baslik { font-size: 20px; font-weight: 700; margin-bottom: .5rem; }
.kd-kutu-metin { font-size: 17px; line-height: 1.35; color: var(--muted); margin: 0; }

.kd-maddeler {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem 2rem;
}
@media (min-width: 576px) { .kd-maddeler { grid-template-columns: 1fr 1fr; } }

.kd-madde { display: flex; align-items: center; gap: 16px; }
.kd-madde-ikon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent) 10%, transparent);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.kd-madde-baslik { font-size: 17px; font-weight: 400; color: var(--text); margin: 0; }

.kd-sag { min-width: 0; }
/* Görsel: 6px köşe + sol-üstten taşan accent ofset çerçeve (referans imzası) */
.kd-gorsel {
    position: sticky;
    top: calc(var(--header-h) + 30px);
    width: min(411px, calc(100% - 24px));
    margin: 24px auto 0;
    border-radius: 6px;
    overflow: visible;
    box-shadow: -24px -24px 0 0 var(--accent);
}
.kd-gorsel img, .kd-gorsel picture { border-radius: 6px; overflow: hidden; }
.kd-gorsel img { width: 100%; height: auto; display: block; }

/* ─── Adımlar (ad-) — hap şeklinde çerçeveli bant ────────────────────── */

.ad-bolum { padding: var(--bant-py) 0; background: var(--bg); }

.ad-liste {
    list-style: none;
    margin: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border: 1px solid var(--border);
    border-radius: 28px;
}
@media (min-width: 992px) {
    .ad-liste {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        border-radius: 99px;
    }
}

.ad-adim { display: flex; align-items: center; gap: 1rem; flex: 1; }

.ad-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-size: 1.25rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ad-baslik { font-size: 15px; font-weight: 700; line-height: 1.15; color: var(--text); margin: 0; }

.ad-ok {
    display: none;
    color: color-mix(in srgb, var(--text) 30%, transparent);
    font-size: 1.25rem;
    margin-inline-start: auto;
}
@media (min-width: 992px) { .ad-ok { display: inline-flex; } }

/* ─── SSS (sss-) — kart tipi akordeon + accent ofset çerçeveli görsel ── */

.sss-bolum { padding: var(--bolum-py) 0; background: var(--bg); }
@media (min-width: 992px) { .sss-bolum { padding: var(--bolum-py-lg) 0; } }

.sss-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 992px) { .sss-grid { grid-template-columns: 1fr 1fr; gap: 50px; } }

.sss-bolum .bolum-h2 { margin-bottom: .75em; }

.sss-sol { min-width: 0; }
/* Görsel: 6px köşe + sol-üstten taşan accent ofset çerçeve (referans imzası) */
.sss-gorsel {
    position: sticky;
    top: calc(var(--header-h) + 30px);
    width: min(420px, calc(100% - 24px));
    margin: 24px auto 0;
    border-radius: 6px;
    overflow: visible;
    box-shadow: -24px -24px 0 0 var(--accent);
}
.sss-gorsel img, .sss-gorsel picture { border-radius: 6px; overflow: hidden; }
.sss-gorsel img { width: 100%; height: auto; display: block; }

.sss-akordeon { margin-top: .5rem; }

/* Her soru gölgeli yüzen kart; açık olanın başlığı accent zemine döner */
.sss-madde { margin-bottom: 30px; }
.sss-soru { margin: 0; }
.sss-soru-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1em 1.5em;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text);
    text-align: start;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    transition: background .2s, color .2s, box-shadow .2s;
}
.sss-soru-btn:hover { color: var(--accent); }
.sss-soru-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
/* Açık madde: accent zemin + beyaz metin, gölge kalkar */
.sss-soru-btn:not(.collapsed) {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: none;
}
.sss-soru-btn:not(.collapsed):hover { color: #fff; }

.sss-arti { position: relative; width: 20px; height: 20px; flex-shrink: 0; color: var(--accent); }
.sss-soru-btn:not(.collapsed) .sss-arti { color: #fff; }
.sss-arti .bi { position: absolute; inset: 0; font-size: 20px; line-height: 1; transition: opacity .2s; }
.sss-soru-btn .bi-dash-lg { opacity: 1; }
.sss-soru-btn .bi-plus-lg { opacity: 0; }
.sss-soru-btn.collapsed .bi-dash-lg { opacity: 0; }
.sss-soru-btn.collapsed .bi-plus-lg { opacity: 1; }

.sss-cevap {
    font-size: 15px;
    line-height: 1.67;
    color: var(--muted);
    margin: 0;
    padding: 2em 2.5em 1em;
}

/* ─── Blog bölümü (bl-) ──────────────────────────────────────────────── */

.bl-bolum { padding: var(--bolum-py) 0; background: var(--bg); }
@media (min-width: 992px) { .bl-bolum { padding: var(--bolum-py-lg) 0; } }

.bl-ust {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
@media (min-width: 992px) {
    .bl-ust { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.bl-aciklama {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--muted);
    max-width: 26rem;
    margin: 0;
}

.bl-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) { .bl-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .bl-grid { grid-template-columns: repeat(3, 1fr); } }

.bl-kart-link { display: block; text-decoration: none !important; color: inherit; }

.bl-kart-resim {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 420 / 264;
    margin-bottom: 1rem;
    background: color-mix(in srgb, var(--text) 6%, transparent);
}
.bl-kart-resim img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease-out; }
.bl-kart-link:hover .bl-kart-resim img { transform: scale(1.04); }

.bl-kart-icerik { display: block; }
.bl-tarih {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .8125rem;
    color: var(--muted);
    margin-bottom: .5rem;
}
.bl-baslik {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 .5rem;
    color: var(--text);
    transition: color .15s;
}
.bl-kart-link:hover .bl-baslik { color: var(--accent); }
.bl-ozet {
    display: block;
    font-size: .9375rem;
    line-height: 1.6;
    color: var(--muted);
}

.bl-cta { text-align: center; margin-top: 3rem; }

/* ─── Footer üstü form bölümü (fb-) ──────────────────────────────────── */

/* Form bölümü footer'ın üstüne 150px biner: kart, footer'ın accent zemini önünde durur.
   Bindirme YALNIZ bu bölüme uygulanır (global .bolum-ic'e değil). */
.fb-bolum {
    position: relative;
    z-index: 2;
    padding: var(--bolum-py) 0 0;
    background: transparent;
    margin-bottom: -150px;
}
@media (min-width: 992px) { .fb-bolum { padding: var(--bolum-py-lg) 0 0; } }

/* Form bölümü varsa footer içeriği bindirme kadar aşağıdan başlar
   (~ seçici: bölüm boşken footer normal boşlukla kalır; +60px kullanıcı ayarı) */
.fb-bolum ~ .ft-footer .ft-ic { padding-top: calc(var(--bolum-py) + 60px); }
@media (min-width: 992px) {
    .fb-bolum ~ .ft-footer .ft-ic { padding-top: calc(var(--bolum-py-lg) + 60px); }
}

.fb-grid {
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 24px;
    overflow: hidden;
    background: color-mix(in srgb, var(--text) 4%, var(--bg));
/*    border: 1px solid var(--border);
*/}
@media (min-width: 992px) { .fb-grid { grid-template-columns: 1fr 1fr; } }

.fb-kart { padding: 2.5rem 1.5rem; }
@media (min-width: 992px) {
    .fb-kart {
        padding: 4rem 3.5rem;
        /* Kart fotoğrafın önünde yuvarlak sağ kenarla biter (RTL'de sol kenar) */
        position: relative;
        z-index: 1;
        background: color-mix(in srgb, var(--text) 4%, var(--bg));
        border-start-end-radius: 24px;
        border-end-end-radius: 24px;
        margin-inline-end: -24px;
    }
}

.fb-rozet {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 8px 16px;
    margin-bottom: 1.5rem;
    background: var(--bg);
}

.fb-baslik {
    font-size: clamp(2rem, 3.6vw, 3rem);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.1;
    color: var(--text);
    margin: 0 0 1rem;
}

.fb-aciklama {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--muted);
    max-width: 30rem;
    margin: 0 0 2rem;
}

.fb-alanlar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}
@media (min-width: 576px) { .fb-alanlar { grid-template-columns: 1fr 1fr; } }
.fb-alan-genis { grid-column: 1 / -1; }

.fb-alan label {
    display: block;
    font-size: .875rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: .375rem;
}
.fb-alan input,
.fb-alan textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    font-size: 1rem;
    color: var(--text);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: border-color .15s;
}
.fb-alan textarea { min-height: 110px; resize: vertical; }
.fb-alan input:focus,
.fb-alan textarea:focus {
    outline: none;
    border-color: var(--accent);
}
.fb-alan input::placeholder,
.fb-alan textarea::placeholder { color: color-mix(in srgb, var(--text) 35%, transparent); }

.fb-gonder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: var(--accent);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background .2s, transform .2s;
}
.fb-gonder:hover { background: color-mix(in srgb, var(--accent) 85%, #000); }
.fb-gonder:active { transform: scale(.97); }
.fb-gonder:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.fb-sonuc { margin-top: 1rem; font-size: .9375rem; }
.fb-sonuc-ok { color: var(--accent); }
.fb-sonuc-hata { color: #d63333; }

.fb-gorsel-panel { position: relative; min-height: 320px; }
.fb-gorsel-panel picture { position: absolute; inset: 0; }
.fb-gorsel, .fb-gorsel-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
}

.fb-bilgi {
    position: absolute;
    inset-inline: 3rem 2rem;
    bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg);
    border-radius: 999px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}
.fb-bilgi-ikon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.fb-bilgi-metin { font-size: .9375rem; line-height: 1.5; color: var(--text); margin: 0; }
.fb-bilgi-metin a { color: var(--accent); font-weight: 700; text-decoration: underline !important; }

@media (prefers-reduced-motion: reduce) {
    .fb-gonder:active { transform: none; }
}

/* ─── Footer (ft-) — ters yüzey + pattern kaplaması ──────────────────── */

.ft-footer {
    position: relative;
    /* Üst marj yok: ayrım önceki bölümün alt boşluğundan gelir; yüzey değişimi kesintisiz. */
    margin-top: 0;
    background: var(--accent);
    color: color-mix(in srgb, var(--bg) 65%, transparent);
    /*overflow: hidden;*/
}
/* Desen kaplaması: /img/pattern.svg mask olarak kullanılır — SVG'nin kendi rengi
   ne olursa olsun desen token renginde (açık) boyanır. Dosya değiştirilebilir. */
.ft-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--bg);
    -webkit-mask: url('/img/pattern.svg') repeat;
    mask: url('/img/pattern.svg') repeat;
    opacity: .06;
    pointer-events: none;
}

.ft-ic { position: relative; padding-top: var(--bolum-py); padding-bottom: 1rem; }
@media (min-width: 992px) { .ft-ic { padding-top: var(--bolum-py-lg); } }

.ft-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 4rem;
}
@media (min-width: 768px) { .ft-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .ft-grid { grid-template-columns: 35fr 30fr 17.5fr 17.5fr; gap: 3rem; } }

.ft-eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--bg);
    margin-bottom: 1.75rem;
}
/* 2. menü kolonu eyebrow hizasında başlasın */
.ft-kolon-menu2 { padding-top: calc(11px * 1.5 + 1.75rem); }
@media (max-width: 991.98px) { .ft-kolon-menu2 { padding-top: 0; } }

.ft-metin { font-size: .9375rem; line-height: 1.7; margin: 0 0 1.5rem; }
.ft-metin-kucuk { margin-bottom: .375rem; }
.ft-metin-ust-bosluk { margin-top: 1.75rem; }

.ft-buyuk-link {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--bg);
    text-decoration: none !important;
    transition: opacity .15s;
}
.ft-buyuk-link:hover { opacity: .75; color: var(--bg); }

.ft-menu { list-style: none; margin: 0; padding: 0; }
.ft-menu li { margin-bottom: 10px; }
.ft-menu a {
    font-size: 1rem;
    color: color-mix(in srgb, var(--bg) 65%, transparent);
    text-decoration: none !important;
    transition: color .15s;
}
.ft-menu a:hover { color: var(--bg); opacity: 1; }

/* Bülten formu: alt çizgili giriş + yuvarlak ok buton */
.ft-bulten-form { position: relative; }
.ft-bulten-satir { display: flex; align-items: center; gap: .75rem; }
.ft-bulten-input {
    flex: 1;
    min-height: 48px;
    background: transparent;
    border: none;
    border-bottom: 1px solid color-mix(in srgb, var(--bg) 20%, transparent);
    color: var(--bg);
    font-size: .9375rem;
    padding: 8px 2px;
    transition: border-color .15s;
}
.ft-bulten-input::placeholder { color: color-mix(in srgb, var(--bg) 45%, transparent); }
.ft-bulten-input:focus { outline: none; border-bottom-color: var(--bg); }

.ft-bulten-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--bg) 20%, transparent);
    background: transparent;
    color: var(--bg);
    font-size: 17px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, color .2s, border-color .2s;
}
.ft-bulten-btn:hover { background: var(--bg); color: var(--text); border-color: var(--bg); }
.ft-bulten-btn:focus-visible { outline: 2px solid var(--bg); outline-offset: 2px; }

.ft-bulten-sonuc { margin-top: .75rem; font-size: .875rem; }
.ft-sonuc-ok { color: var(--bg); }
.ft-sonuc-uyari { color: color-mix(in srgb, var(--bg) 80%, transparent); }
.ft-sonuc-hata { color: #ff8080; }

/* Alt bant */
.ft-alt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    border-top: 1px solid color-mix(in srgb, var(--bg) 12%, transparent);
    /* Alt boşluk: sabit sohbet/WhatsApp balonları son satırı (yasal linkler) kapatmasın */
    padding: 1.5rem 0 5rem;
    text-align: center;
}
@media (min-width: 992px) {
    .ft-alt { flex-direction: row; justify-content: space-between; text-align: start; }
}

.ft-alt-logo img { display: block; height: 40px; width: auto; opacity: .9; }
.ft-alt-firma { font-size: 1.125rem; font-weight: 700; color: var(--bg); letter-spacing: -.02em; }

.ft-alt-orta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem 1.25rem;
    font-size: .8125rem;
}
.ft-alt-orta a {
    color: color-mix(in srgb, var(--bg) 50%, transparent);
    text-decoration: none !important;
    transition: color .15s;
}
.ft-alt-orta a:hover { color: var(--bg); opacity: 1; }
.ft-copy { color: color-mix(in srgb, var(--bg) 35%, transparent); }

.ft-alt-sosyal { display: flex; gap: .75rem; }
.ft-sosyal {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--bg) 18%, transparent);
    color: color-mix(in srgb, var(--bg) 65%, transparent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none !important;
    transition: background .2s, color .2s, border-color .2s;
}
.ft-sosyal:hover { background: var(--bg); color: var(--text); border-color: var(--bg); opacity: 1; }

/* ═══ İÇ SAYFALAR — ortak parçalar (2026-07-27 iç sayfa portu) ═══════════ */

/* ── Breadcrumb hero (bc-*): varsayılan accent + pattern; medya atanırsa üstüne ── */
.bc-hero { position: relative; background: var(--accent); overflow: hidden; }
.bc-hero::before {
    content: ""; position: absolute; inset: 0; z-index: 0;
    background-color: var(--bg); opacity: .06;
    -webkit-mask: url("/img/pattern.svg") repeat; mask: url("/img/pattern.svg") repeat;
    pointer-events: none;
}
.bc-hero-medya { position: absolute; inset: 0; z-index: 1; }
.bc-hero-medya img, .bc-hero-medya video { width: 100%; height: 100%; object-fit: cover; display: block; }
.bc-hero-overlay { position: absolute; inset: 0; z-index: 2; background: #000; } /* opaklık inline style ile */
.bc-hero-ic { position: relative; z-index: 3; display: flex; flex-direction: column; justify-content: flex-end; padding-top: 2.5rem; padding-bottom: 2.25rem; }
.bc-hero-kisa .bc-hero-ic { min-height: 180px; }
.bc-hero-orta .bc-hero-ic { min-height: 280px; }
.bc-hero-uzun .bc-hero-ic { min-height: 420px; }
.bc-hiza-sol  .bc-hero-ic { align-items: flex-start; text-align: left; }
.bc-hiza-orta .bc-hero-ic { align-items: center; text-align: center; }
.bc-hiza-sag  .bc-hero-ic { align-items: flex-end; text-align: right; }
.bc-iz {
    display: flex; flex-wrap: wrap; align-items: center; gap: .5rem;
    padding-top: .9rem; margin-bottom: .8rem; font-size: .9rem; font-weight: 500;
    border-top: 1px solid color-mix(in srgb, var(--bg) 25%, transparent);
    color: color-mix(in srgb, var(--bg) 75%, transparent);
}
.bc-iz a { color: inherit; text-decoration: none; }
.bc-iz a:hover { color: var(--bg); }
.bc-iz-ayrac { opacity: .55; }
.bc-hero-baslik {
    font-family: var(--font-baslik); font-weight: 700; letter-spacing: -.03em; line-height: 1.05;
    font-size: clamp(2rem, 4.5vw, 3.25rem); color: var(--bg); margin: 0;
}
.bc-hero-alt { margin: .4rem 0 0; font-size: 1rem; color: color-mix(in srgb, var(--bg) 75%, transparent); }
/* Medya (görsel/video) varken metin overlay üstünde — her temada beyaz */
.bc-hero-medyali .bc-hero-baslik { color: #fff; }
.bc-hero-medyali .bc-hero-alt,
.bc-hero-medyali .bc-iz { color: rgba(255, 255, 255, .8); border-top-color: rgba(255, 255, 255, .25); }
.bc-hero-medyali .bc-iz a:hover { color: #fff; }
.bc-hero-medyali::before { display: none; } /* medya varken pattern gereksiz */

/* ── Dar okuma kolonu (prose sayfaları) ── */
.bolum-dar { max-width: 46rem; margin-inline: auto; }

/* ── Küçük bölüm başlığı (detay sayfası ara başlıkları) ── */
.bolum-h2-kucuk { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.bolum-aciklama { color: var(--muted); font-size: 1.05rem; max-width: 40rem; margin: 0; }

/* ── Filtre pilleri (İnşaat Projeleri + Blog kategorileri) ── */
.filtre-cubuk { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; margin-bottom: 2rem; }
.filtre-pil {
    display: inline-flex; align-items: center; padding: .45rem 1.1rem;
    border: 1px solid var(--border); border-radius: 999px; background: var(--surface);
    font-size: .85rem; font-weight: 600; color: var(--text); text-decoration: none;
    transition: border-color .2s, color .2s, background .2s;
}
.filtre-pil:hover { border-color: var(--accent); color: var(--accent); }
.filtre-pil.aktif { background: var(--accent); border-color: var(--accent); color: var(--bg); }

/* ── Proje kart gridi (anasayfa .pj-kart dilinin grid hali) ── */
.pj-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px)  { .pj-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .pj-grid { grid-template-columns: repeat(3, 1fr); } }
.pj-kart-resim-bos {
    display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100%; font-size: 3rem;
    color: var(--muted); background: var(--bs-tertiary-bg, var(--surface));
}

/* ── Belge / sertifika gridi ── */
.belge-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (min-width: 768px)  { .belge-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .belge-grid { grid-template-columns: repeat(4, 1fr); } }
.belge-kart {
    display: flex; flex-direction: column; text-align: center;
    background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
    box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s;
}
.belge-kart:hover { transform: translateY(-3px); }
.belge-kart-resim { display: block; padding: 1rem; }
.belge-kart-resim img { width: 100%; height: 200px; object-fit: contain; }
.belge-kart-metin { padding: 0 1rem 1rem; font-size: .85rem; color: var(--muted); }

/* ── İletişim bilgi satırları ── */
.il-bilgi { display: flex; flex-direction: column; gap: 1rem; }
.il-satir { display: flex; gap: .9rem; align-items: flex-start; color: var(--muted); }
.il-satir a { color: inherit; text-decoration: none; }
.il-satir a:hover { color: var(--accent); }
.il-ikon { color: var(--accent); font-size: 1.15rem; flex-shrink: 0; line-height: 1.5; }

/* ── Genel içerik kartı (Hakkımızda bölümleri, yasal firma bilgisi vb.) ── */
.icerik-kart { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow); padding: 1.5rem; }

/* ── İletişim: tam genişlik harita ── */
.il-harita { border-radius: 14px; overflow: hidden; border: 1px solid var(--border); }
.il-harita iframe { display: block; width: 100%; height: 440px; border: 0; }

/* ═══ Responsive incelikler (2026-07-27 mobil/tablet denetimi) ═══════════ */

/* Form bölümü telefon rozeti: dar ekranda hap daralıp metin taşıyordu */
@media (max-width: 575px) {
    .fb-bilgi {
        inset-inline: 1rem;
        bottom: 1rem;
        border-radius: 16px;
        padding: .8rem 1rem;
    }
    .fb-bilgi-metin { font-size: .85rem; }
    .il-harita iframe { height: 300px; }

    /* Filtre çubuğu: arama + sıralama ikinci satıra tam genişlik iner */
    .filtre-cubuk > .ms-auto { margin-inline-start: 0 !important; width: 100%; }
    .filtre-cubuk > .ms-auto input[type="search"] { flex: 1 1 auto; min-width: 0; }

    /* Breadcrumb izi mobilde daha kompakt */
    .bc-iz { font-size: .8rem; }

    /* Footer yasal linkleri: dokunma hedefleri arası dikey nefes */
    .ft-alt-orta { gap: .75rem 1.25rem; }
}

/* Kısa (yatay telefon) viewport: breadcrumb hero ilk ekranı yutmasın */
@media (max-height: 500px) {
    .bc-hero-kisa .bc-hero-ic { min-height: 110px; }
    .bc-hero-orta .bc-hero-ic { min-height: 140px; }
    .bc-hero-uzun .bc-hero-ic { min-height: 170px; }
    .bc-hero-ic { padding-top: 1rem; padding-bottom: 1rem; }
    .bc-hero-baslik { font-size: clamp(1.4rem, 4vw, 2rem); }
}

/* Tablet (2 sütun) aralığında 3'üncü/tek kalan kart tam genişliğe yayılır —
   çerçeveli kartların yanında boş hücre kalmasın */
@media (min-width: 768px) and (max-width: 1199px) {
    .ku-grid > :last-child:nth-child(odd),
    .bl-grid > :last-child:nth-child(odd) { grid-column: 1 / -1; }
}
